Commit 3b8ce4f12a75b34d890cb061a721e1a1240cddd1

Authored by Jay Berkenbilt
1 parent 95d6b17a

Annotation flattening including form fields

Flatten annotations by integrating their appearance streams into the
content stream of the containing page. In the case of form fields,
only flatten if /NeedAppearance is false (or equivalently absent). If
flattening form fields, also remove /AcroForm from the document
catalog.
ChangeLog
1 1 2018-12-31 Jay Berkenbilt <ejb@ql.org>
2 2  
  3 + * Add several methods for flattening form fields and annotations:
  4 + - QPDFPageDocumentHelper::flattenAnnotations - integrate
  5 + annotation appearance streams into page contents with special
  6 + handling for form fields: if appearance streams are up to date
  7 + (/NeedAppearances is false in /AcroForm), the /AcroForm key of
  8 + the document catalog is removed. Otherwise, a warning is
  9 + issued, and form fields are ignored. Non-form-field
  10 + annotations are always flattened if an appearance stream can
  11 + be found.
  12 + - QPDFAnnotationObjectHelper::getPageContentForAppearance -
  13 + generate the content stream fragment to render an appearance
  14 + stream in a page's content stream. Called by flattenAnnotations.
  15 + - QPDFAnnotationObjectHelper::getAnnotationAppearanceMatrix -
  16 + calculate the matrix that will transform from the appearance
  17 + stream coordinates to the page coordinates. Called by
  18 + getPageContentForAppearance.
  19 +
3 20 * Add method QPDFObjectHandle::mergeDictionary(), which
4 21 recursively merges dictionaries with semantics designed for
5 22 merging resource dictionaries. See detailed description in
... ...
include/qpdf/QPDFPageDocumentHelper.hh
... ... @@ -31,6 +31,8 @@
31 31  
32 32 #include <qpdf/QPDF.hh>
33 33  
  34 +class QPDFAcroFormDocumentHelper;
  35 +
34 36 class QPDFPageDocumentHelper: public QPDFDocumentHelper
35 37 {
36 38 public:
... ... @@ -84,7 +86,21 @@ class QPDFPageDocumentHelper: public QPDFDocumentHelper
84 86 QPDF_DLL
85 87 void removePage(QPDFPageObjectHelper page);
86 88  
  89 + // For every annotation, integrate the annotation's appearance
  90 + // stream into the containing page's content streams, merge the
  91 + // annotation's resources with the page's resources, and remove
  92 + // the annotation from the page. Handles widget annotations
  93 + // associated with interactive form fields as a special case,
  94 + // including removing the /AcroForm key from the document catalog.
  95 + QPDF_DLL
  96 + void flattenAnnotations();
  97 +
87 98 private:
  99 + void flattenAnnotationsForPage(
  100 + QPDFPageObjectHelper& page,
  101 + QPDFObjectHandle& resources,
  102 + QPDFAcroFormDocumentHelper& afdh);
  103 +
88 104 class Members
89 105 {
90 106 friend class QPDFPageDocumentHelper;
... ...
libqpdf/QPDFAnnotationObjectHelper.cc
... ... @@ -149,12 +149,12 @@ QPDFAnnotationObjectHelper::getAnnotationAppearanceMatrix(int rotate)
149 149 QPDFMatrix matrix;
150 150 if (matrix_obj.isMatrix())
151 151 {
152   -/// QTC::TC("qpdf", "QPDFAnnotationObjectHelper explicit matrix");
  152 + QTC::TC("qpdf", "QPDFAnnotationObjectHelper explicit matrix");
153 153 matrix = QPDFMatrix(matrix_obj.getArrayAsMatrix());
154 154 }
155 155 else
156 156 {
157   -/// QTC::TC("qpdf", "QPDFAnnotationObjectHelper default matrix");
  157 + QTC::TC("qpdf", "QPDFAnnotationObjectHelper default matrix");
158 158 }
159 159 QPDFObjectHandle::Rectangle rect = rect_obj.getArrayAsRectangle();
160 160 if (rotate && flags.isInteger() && (flags.getIntValue() & 16))
... ... @@ -176,7 +176,7 @@ QPDFAnnotationObjectHelper::getAnnotationAppearanceMatrix(int rotate)
176 176 switch (rotate)
177 177 {
178 178 case 90:
179   -/// QTC::TC("qpdf", "QPDFAnnotationObjectHelper rotate 90");
  179 + QTC::TC("qpdf", "QPDFAnnotationObjectHelper rotate 90");
180 180 rect = QPDFObjectHandle::Rectangle(
181 181 rect.llx,
182 182 rect.ury,
... ... @@ -184,7 +184,7 @@ QPDFAnnotationObjectHelper::getAnnotationAppearanceMatrix(int rotate)
184 184 rect.ury + rect_w);
185 185 break;
186 186 case 180:
187   -/// QTC::TC("qpdf", "QPDFAnnotationObjectHelper rotate 180");
  187 + QTC::TC("qpdf", "QPDFAnnotationObjectHelper rotate 180");
188 188 rect = QPDFObjectHandle::Rectangle(
189 189 rect.llx - rect_w,
190 190 rect.ury,
... ... @@ -192,7 +192,7 @@ QPDFAnnotationObjectHelper::getAnnotationAppearanceMatrix(int rotate)
192 192 rect.ury + rect_h);
193 193 break;
194 194 case 270:
195   -/// QTC::TC("qpdf", "QPDFAnnotationObjectHelper rotate 270");
  195 + QTC::TC("qpdf", "QPDFAnnotationObjectHelper rotate 270");
196 196 rect = QPDFObjectHandle::Rectangle(
197 197 rect.llx - rect_h,
198 198 rect.ury - rect_w,
... ...
libqpdf/QPDFPageDocumentHelper.cc
1 1 #include <qpdf/QPDFPageDocumentHelper.hh>
  2 +#include <qpdf/QPDFAcroFormDocumentHelper.hh>
  3 +#include <qpdf/QTC.hh>
2 4  
3 5 QPDFPageDocumentHelper::Members::~Members()
4 6 {
... ... @@ -62,3 +64,128 @@ QPDFPageDocumentHelper::removePage(QPDFPageObjectHelper page)
62 64 {
63 65 this->qpdf.removePage(page.getObjectHandle());
64 66 }
  67 +
  68 +
  69 +void
  70 +QPDFPageDocumentHelper::flattenAnnotations()
  71 +{
  72 + QPDFAcroFormDocumentHelper afdh(this->qpdf);
  73 + if (afdh.getNeedAppearances())
  74 + {
  75 + this->qpdf.getRoot().getKey("/AcroForm").warnIfPossible(
  76 + "document does not have updated appearance streams,"
  77 + " so form fields will not be flattened");
  78 + }
  79 + pushInheritedAttributesToPage();
  80 + std::vector<QPDFPageObjectHelper> pages = getAllPages();
  81 + for (std::vector<QPDFPageObjectHelper>::iterator iter = pages.begin();
  82 + iter != pages.end(); ++iter)
  83 + {
  84 + QPDFPageObjectHelper ph(*iter);
  85 + QPDFObjectHandle page_oh = ph.getObjectHandle();
  86 + if (page_oh.getKey("/Resources").isIndirect())
  87 + {
  88 + QTC::TC("qpdf", "QPDFPageDocumentHelper indirect resources");
  89 + page_oh.replaceKey("/Resources",
  90 + page_oh.getKey("/Resources").shallowCopy());
  91 + }
  92 + QPDFObjectHandle resources = ph.getObjectHandle().getKey("/Resources");
  93 + if (! resources.isDictionary())
  94 + {
  95 + // This should never happen and is not exercised in the
  96 + // test suite
  97 + resources = QPDFObjectHandle::newDictionary();
  98 + }
  99 + flattenAnnotationsForPage(ph, resources, afdh);
  100 + }
  101 + if (! afdh.getNeedAppearances())
  102 + {
  103 + this->qpdf.getRoot().removeKey("/AcroForm");
  104 + }
  105 +}
  106 +
  107 +void
  108 +QPDFPageDocumentHelper::flattenAnnotationsForPage(
  109 + QPDFPageObjectHelper& page,
  110 + QPDFObjectHandle& resources,
  111 + QPDFAcroFormDocumentHelper& afdh)
  112 +{
  113 + bool need_appearances = afdh.getNeedAppearances();
  114 + std::vector<QPDFAnnotationObjectHelper> annots = page.getAnnotations();
  115 + std::vector<QPDFObjectHandle> new_annots;
  116 + std::string new_content;
  117 + int rotate = 0;
  118 + QPDFObjectHandle rotate_obj =
  119 + page.getObjectHandle().getKey("/Rotate");
  120 + if (rotate_obj.isInteger() && rotate_obj.getIntValue())
  121 + {
  122 + rotate = rotate_obj.getIntValue();
  123 + }
  124 + for (std::vector<QPDFAnnotationObjectHelper>::iterator iter =
  125 + annots.begin();
  126 + iter != annots.end(); ++iter)
  127 + {
  128 + QPDFAnnotationObjectHelper& aoh(*iter);
  129 + QPDFObjectHandle as = aoh.getAppearanceStream("/N");
  130 + bool is_widget = (aoh.getSubtype() == "/Widget");
  131 + bool process = true;
  132 + if (need_appearances && is_widget)
  133 + {
  134 + QTC::TC("qpdf", "QPDFPageDocumentHelper skip widget need appearances");
  135 + process = false;
  136 + }
  137 + if (process && (! as.isStream()))
  138 + {
  139 + process = false;
  140 + }
  141 + if (process)
  142 + {
  143 + resources.mergeDictionary(as.getDict().getKey("/Resources"));
  144 + if (is_widget)
  145 + {
  146 + QTC::TC("qpdf", "QPDFPageDocumentHelper merge DR");
  147 + QPDFFormFieldObjectHelper ff = afdh.getFieldForAnnotation(aoh);
  148 + resources.mergeDictionary(ff.getInheritableFieldValue("/DR"));
  149 + }
  150 + else
  151 + {
  152 + QTC::TC("qpdf", "QPDFPageDocumentHelper non-widget annotation");
  153 + }
  154 + new_content += aoh.getPageContentForAppearance(rotate);
  155 + }
  156 + else
  157 + {
  158 + new_annots.push_back(aoh.getObjectHandle());
  159 + }
  160 + }
  161 + if (new_annots.size() != annots.size())
  162 + {
  163 + QPDFObjectHandle page_oh = page.getObjectHandle();
  164 + if (new_annots.empty())
  165 + {
  166 + QTC::TC("qpdf", "QPDFPageDocumentHelper remove annots");
  167 + page_oh.removeKey("/Annots");
  168 + }
  169 + else
  170 + {
  171 + QPDFObjectHandle old_annots = page_oh.getKey("/Annots");
  172 + QPDFObjectHandle new_annots_oh =
  173 + QPDFObjectHandle::newArray(new_annots);
  174 + if (old_annots.isIndirect())
  175 + {
  176 + QTC::TC("qpdf", "QPDFPageDocumentHelper replace indirect annots");
  177 + this->qpdf.replaceObject(
  178 + old_annots.getObjGen(), new_annots_oh);
  179 + }
  180 + else
  181 + {
  182 + QTC::TC("qpdf", "QPDFPageDocumentHelper replace direct annots");
  183 + page_oh.replaceKey("/Annots", new_annots_oh);
  184 + }
  185 + }
  186 + page.addPageContents(
  187 + QPDFObjectHandle::newStream(&qpdf, "q\n"), true);
  188 + page.addPageContents(
  189 + QPDFObjectHandle::newStream(&qpdf, "\nQ\n" + new_content), false);
  190 + }
  191 +}
... ...
qpdf/qpdf.cc
... ... @@ -102,6 +102,7 @@ struct Options
102 102 keep_files_open_set(false),
103 103 newline_before_endstream(false),
104 104 coalesce_contents(false),
  105 + flatten_annotations(false),
105 106 show_npages(false),
106 107 deterministic_id(false),
107 108 static_id(false),
... ... @@ -174,6 +175,7 @@ struct Options
174 175 bool newline_before_endstream;
175 176 std::string linearize_pass1;
176 177 bool coalesce_contents;
  178 + bool flatten_annotations;
177 179 std::string min_version;
178 180 std::string force_version;
179 181 bool show_npages;
... ... @@ -473,6 +475,7 @@ class ArgParser
473 475 void argNewlineBeforeEndstream();
474 476 void argLinearizePass1(char* parameter);
475 477 void argCoalesceContents();
  478 + void argFlattenAnnotations();
476 479 void argMinVersion(char* parameter);
477 480 void argForceVersion(char* parameter);
478 481 void argSplitPages(char* parameter);
... ... @@ -670,6 +673,7 @@ ArgParser::initOptionTable()
670 673 (*t)["linearize-pass1"] = oe_requiredParameter(
671 674 &ArgParser::argLinearizePass1, "filename");
672 675 (*t)["coalesce-contents"] = oe_bare(&ArgParser::argCoalesceContents);
  676 + (*t)["flatten-annotations"] = oe_bare(&ArgParser::argFlattenAnnotations);
673 677 (*t)["min-version"] = oe_requiredParameter(
674 678 &ArgParser::argMinVersion, "version");
675 679 (*t)["force-version"] = oe_requiredParameter(
... ... @@ -1119,6 +1123,12 @@ ArgParser::argCoalesceContents()
1119 1123 }
1120 1124  
1121 1125 void
  1126 +ArgParser::argFlattenAnnotations()
  1127 +{
  1128 + o.flatten_annotations = true;
  1129 +}
  1130 +
  1131 +void
1122 1132 ArgParser::argMinVersion(char* parameter)
1123 1133 {
1124 1134 o.min_version = parameter;
... ... @@ -1759,6 +1769,9 @@ familiar with the PDF file format or who are PDF developers.\n\
1759 1769 preserve unreferenced page resources\n\
1760 1770 --newline-before-endstream always put a newline before endstream\n\
1761 1771 --coalesce-contents force all pages' content to be a single stream\n\
  1772 +--flatten-annotations incorporate rendering of annotations into page\n\
  1773 + contents including those for interactive form\n\
  1774 + fields\n\
1762 1775 --qdf turns on \"QDF mode\" (below)\n\
1763 1776 --linearize-pass1=file write intermediate pass of linearized file\n\
1764 1777 for debugging\n\
... ... @@ -3124,6 +3137,10 @@ static void do_inspection(QPDF&amp; pdf, Options&amp; o)
3124 3137 static void handle_transformations(QPDF& pdf, Options& o)
3125 3138 {
3126 3139 QPDFPageDocumentHelper dh(pdf);
  3140 + if (o.flatten_annotations)
  3141 + {
  3142 + dh.flattenAnnotations();
  3143 + }
3127 3144 if (o.coalesce_contents)
3128 3145 {
3129 3146 std::vector<QPDFPageObjectHelper> pages = dh.getAllPages();
... ...
qpdf/qpdf.testcov
... ... @@ -377,3 +377,15 @@ QPDFObjectHandle merge array dup 0
377 377 QPDFObjectHandle merge copy from other 0
378 378 QPDFObjectHandle merge loop 0
379 379 QPDFObjectHandle merge equal indirect 0
  380 +QPDFAnnotationObjectHelper explicit matrix 0
  381 +QPDFAnnotationObjectHelper default matrix 0
  382 +QPDFAnnotationObjectHelper rotate 90 0
  383 +QPDFAnnotationObjectHelper rotate 180 0
  384 +QPDFAnnotationObjectHelper rotate 270 0
  385 +QPDFPageDocumentHelper indirect resources 0
  386 +QPDFPageDocumentHelper skip widget need appearances 0
  387 +QPDFPageDocumentHelper merge DR 0
  388 +QPDFPageDocumentHelper non-widget annotation 0
  389 +QPDFPageDocumentHelper remove annots 0
  390 +QPDFPageDocumentHelper replace indirect annots 0
  391 +QPDFPageDocumentHelper replace direct annots 0
... ...
qpdf/qtest/qpdf.test
... ... @@ -1447,6 +1447,62 @@ $td-&gt;runtest(&quot;check output&quot;,
1447 1447  
1448 1448 show_ntests();
1449 1449 # ----------
  1450 +$td->notify("--- Flatten Form/Annotations ---");
  1451 +
  1452 +# manual-appearances was created by hand-coding appearance streams
  1453 +# with graphics that make it easy to test matrix calculations. The
  1454 +# result of flattening the annotations was compared visually with
  1455 +# okular. Some PDF viewers don't actually display the original version
  1456 +# correctly. The pages are as follows:
  1457 +# - page 1: normal
  1458 +# - page 2: rotate 90 with /F 20 (NoRotate)
  1459 +# - page 3: non-trivial matrix
  1460 +# - page 4: non-trivial matrix, rotate
  1461 +# - page 5: rotate 180 with /F 20
  1462 +# - page 6: rotate 90, /F 20, non-trivial matrix
  1463 +# - page 7: normal -- available for additional testing
  1464 +# - page 8: rotate 270 with /F 20
  1465 +# - page 9: normal -- available for additional testing
  1466 +#
  1467 +# form-filled-by-acrobat was filled in using the Acrobat Reader
  1468 +# android app. One of its appearance streams is actually an image.
  1469 +#
  1470 +# need-appearances is based on form-field-types with manual edits to
  1471 +# turn on NeedAppearances, change /V for a field, and add the comment
  1472 +# annotation from comment-annotation.pdf. The test output includes a
  1473 +# flattened version of the comment annotation but not of the form
  1474 +# fields.
  1475 +my @annotation_files = (
  1476 + 'manual-appearances',
  1477 + 'form-filled-by-acrobat',
  1478 + 'comment-annotation',
  1479 + 'comment-annotation-direct',
  1480 + 'form-field-types',
  1481 + 'need-appearances',
  1482 + );
  1483 +$n_tests += 2 * scalar(@annotation_files);
  1484 +
  1485 +foreach my $f (@annotation_files)
  1486 +{
  1487 + my $exp_out = {$td->STRING => "", $td->EXIT_STATUS => 0};
  1488 + if (-f "$f-warn.out")
  1489 + {
  1490 + $exp_out = {$td->FILE => "$f-warn.out", $td->EXIT_STATUS => 3};
  1491 + }
  1492 + $td->runtest("flatten $f",
  1493 + {$td->COMMAND =>
  1494 + "qpdf --qdf --static-id --no-original-object-ids" .
  1495 + " --flatten-annotations $f.pdf a.pdf"},
  1496 + $exp_out,
  1497 + $td->NORMALIZE_NEWLINES);
  1498 + copy("a.pdf", "$f-out.pdf");
  1499 + $td->runtest("check output",
  1500 + {$td->FILE => "a.pdf"},
  1501 + {$td->FILE => "$f-out.pdf"});
  1502 +}
  1503 +
  1504 +show_ntests();
  1505 +# ----------
1450 1506 $td->notify("--- Merging and Splitting ---");
1451 1507 $n_tests += 18;
1452 1508  
... ...
qpdf/qtest/qpdf/comment-annotation-direct-out.pdf 0 โ†’ 100644
  1 +%PDF-1.3
  2 +%ยฟรทยขรพ
  3 +%QDF-1.0
  4 +
  5 +1 0 obj
  6 +<<
  7 + /Pages 2 0 R
  8 + /Type /Catalog
  9 +>>
  10 +endobj
  11 +
  12 +2 0 obj
  13 +<<
  14 + /Count 1
  15 + /Kids [
  16 + 3 0 R
  17 + ]
  18 + /Type /Pages
  19 +>>
  20 +endobj
  21 +
  22 +%% Page 1
  23 +3 0 obj
  24 +<<
  25 + /Annots [
  26 + 4 0 R
  27 + ]
  28 + /Contents [
  29 + 5 0 R
  30 + 7 0 R
  31 + 9 0 R
  32 + ]
  33 + /MediaBox [
  34 + 0
  35 + 0
  36 + 612
  37 + 792
  38 + ]
  39 + /Parent 2 0 R
  40 + /Resources <<
  41 + /ExtGState <<
  42 + /GS0 <<
  43 + /AIS false
  44 + /BM /Normal
  45 + /CA .6
  46 + /Type /ExtGState
  47 + /ca .6
  48 + >>
  49 + >>
  50 + /Font <<
  51 + /F1 11 0 R
  52 + >>
  53 + /ProcSet 12 0 R
  54 + >>
  55 + /Type /Page
  56 +>>
  57 +endobj
  58 +
  59 +4 0 obj
  60 +<<
  61 + /F 28
  62 + /Open false
  63 + /Parent 13 0 R
  64 + /Rect [
  65 + 612
  66 + 601
  67 + 792
  68 + 721
  69 + ]
  70 + /Subtype /Popup
  71 + /Type /Annot
  72 +>>
  73 +endobj
  74 +
  75 +%% Contents for page 1
  76 +5 0 obj
  77 +<<
  78 + /Length 6 0 R
  79 +>>
  80 +stream
  81 +q
  82 +endstream
  83 +endobj
  84 +
  85 +6 0 obj
  86 +2
  87 +endobj
  88 +
  89 +%% Contents for page 1
  90 +7 0 obj
  91 +<<
  92 + /Length 8 0 R
  93 +>>
  94 +stream
  95 +BT
  96 + /F1 24 Tf
  97 + 72 720 Td
  98 + (Potato) Tj
  99 +ET
  100 +endstream
  101 +endobj
  102 +
  103 +8 0 obj
  104 +44
  105 +endobj
  106 +
  107 +%% Contents for page 1
  108 +9 0 obj
  109 +<<
  110 + /Length 10 0 R
  111 +>>
  112 +stream
  113 +
  114 +Q
  115 +q
  116 +1.00000 0.00000 0.00000 1.00000 235.00000 703.00000 cm
  117 +0.00000 0.00000 18.00000 18.00000 re W n
  118 +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b
  119 +Q
  120 +endstream
  121 +endobj
  122 +
  123 +10 0 obj
  124 +1032
  125 +endobj
  126 +
  127 +11 0 obj
  128 +<<
  129 + /BaseFont /Helvetica
  130 + /Encoding /WinAnsiEncoding
  131 + /Name /F1
  132 + /Subtype /Type1
  133 + /Type /Font
  134 +>>
  135 +endobj
  136 +
  137 +12 0 obj
  138 +[
  139 + /PDF
  140 + /Text
  141 +]
  142 +endobj
  143 +
  144 +13 0 obj
  145 +<<
  146 + /AP <<
  147 + /N 14 0 R
  148 + >>
  149 + /C [
  150 + 1
  151 + 1
  152 + 0
  153 + ]
  154 + /CA 1
  155 + /Contents (Salad)
  156 + /CreationDate (D:20181231235455Z00'00)
  157 + /F 28
  158 + /M (D:20181231235455Z00'00)
  159 + /Name /Comment
  160 + /P 3 0 R
  161 + /Popup 4 0 R
  162 + /Rect [
  163 + 235
  164 + 703
  165 + 253
  166 + 721
  167 + ]
  168 + /Subtype /Text
  169 + /T (Jay Berkenbilt)
  170 + /Type /Annot
  171 +>>
  172 +endobj
  173 +
  174 +14 0 obj
  175 +<<
  176 + /BBox [
  177 + 0
  178 + 0
  179 + 18
  180 + 18
  181 + ]
  182 + /Resources <<
  183 + /ExtGState <<
  184 + /GS0 <<
  185 + /AIS false
  186 + /BM /Normal
  187 + /CA .6
  188 + /Type /ExtGState
  189 + /ca .6
  190 + >>
  191 + >>
  192 + >>
  193 + /Subtype /Form
  194 + /Type /XObject
  195 + /Length 15 0 R
  196 +>>
  197 +stream
  198 +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b
  199 +endstream
  200 +endobj
  201 +
  202 +%QDF: ignore_newline
  203 +15 0 obj
  204 +928
  205 +endobj
  206 +
  207 +xref
  208 +0 16
  209 +0000000000 65535 f
  210 +0000000025 00000 n
  211 +0000000079 00000 n
  212 +0000000161 00000 n
  213 +0000000553 00000 n
  214 +0000000716 00000 n
  215 +0000000773 00000 n
  216 +0000000814 00000 n
  217 +0000000913 00000 n
  218 +0000000955 00000 n
  219 +0000002043 00000 n
  220 +0000002065 00000 n
  221 +0000002184 00000 n
  222 +0000002220 00000 n
  223 +0000002550 00000 n
  224 +0000003794 00000 n
  225 +trailer <<
  226 + /Root 1 0 R
  227 + /Size 16
  228 + /ID [<c5b1999a07a3fdcd0c04cfeed299c25a><31415926535897932384626433832795>]
  229 +>>
  230 +startxref
  231 +3815
  232 +%%EOF
... ...
qpdf/qtest/qpdf/comment-annotation-direct.pdf 0 โ†’ 100644
  1 +%PDF-1.3
  2 +%ยฟรทยขรพ
  3 +%QDF-1.0
  4 +
  5 +1 0 obj
  6 +<<
  7 + /Pages 2 0 R
  8 + /Type /Catalog
  9 +>>
  10 +endobj
  11 +
  12 +2 0 obj
  13 +<<
  14 + /Count 1
  15 + /Kids [
  16 + 3 0 R
  17 + ]
  18 + /Type /Pages
  19 +>>
  20 +endobj
  21 +
  22 +%% Page 1
  23 +3 0 obj
  24 +<<
  25 + /Annots [
  26 + 4 0 R
  27 + 5 0 R
  28 + ]
  29 + /Contents 6 0 R
  30 + /MediaBox [
  31 + 0
  32 + 0
  33 + 612
  34 + 792
  35 + ]
  36 + /Parent 2 0 R
  37 + /Resources <<
  38 + /Font <<
  39 + /F1 8 0 R
  40 + >>
  41 + /ProcSet 9 0 R
  42 + >>
  43 + /Type /Page
  44 +>>
  45 +endobj
  46 +
  47 +4 0 obj
  48 +<<
  49 + /AP <<
  50 + /N 10 0 R
  51 + >>
  52 + /C [
  53 + 1
  54 + 1
  55 + 0
  56 + ]
  57 + /CA 1
  58 + /Contents (Salad)
  59 + /CreationDate (D:20181231235455Z00'00)
  60 + /F 28
  61 + /M (D:20181231235455Z00'00)
  62 + /Name /Comment
  63 + /P 3 0 R
  64 + /Popup 5 0 R
  65 + /Rect [
  66 + 235
  67 + 703
  68 + 253
  69 + 721
  70 + ]
  71 + /Subtype /Text
  72 + /T (Jay Berkenbilt)
  73 + /Type /Annot
  74 +>>
  75 +endobj
  76 +
  77 +5 0 obj
  78 +<<
  79 + /F 28
  80 + /Open false
  81 + /Parent 4 0 R
  82 + /Rect [
  83 + 612
  84 + 601
  85 + 792
  86 + 721
  87 + ]
  88 + /Subtype /Popup
  89 + /Type /Annot
  90 +>>
  91 +endobj
  92 +
  93 +%% Contents for page 1
  94 +6 0 obj
  95 +<<
  96 + /Length 7 0 R
  97 +>>
  98 +stream
  99 +BT
  100 + /F1 24 Tf
  101 + 72 720 Td
  102 + (Potato) Tj
  103 +ET
  104 +endstream
  105 +endobj
  106 +
  107 +7 0 obj
  108 +44
  109 +endobj
  110 +
  111 +8 0 obj
  112 +<<
  113 + /BaseFont /Helvetica
  114 + /Encoding /WinAnsiEncoding
  115 + /Name /F1
  116 + /Subtype /Type1
  117 + /Type /Font
  118 +>>
  119 +endobj
  120 +
  121 +9 0 obj
  122 +[
  123 + /PDF
  124 + /Text
  125 +]
  126 +endobj
  127 +
  128 +10 0 obj
  129 +<<
  130 + /BBox [
  131 + 0
  132 + 0
  133 + 18
  134 + 18
  135 + ]
  136 + /Resources <<
  137 + /ExtGState <<
  138 + /GS0 <<
  139 + /AIS false
  140 + /BM /Normal
  141 + /CA .6
  142 + /Type /ExtGState
  143 + /ca .6
  144 + >>
  145 + >>
  146 + >>
  147 + /Subtype /Form
  148 + /Type /XObject
  149 + /Length 11 0 R
  150 +>>
  151 +stream
  152 +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b
  153 +endstream
  154 +endobj
  155 +
  156 +%QDF: ignore_newline
  157 +11 0 obj
  158 +928
  159 +endobj
  160 +
  161 +xref
  162 +0 12
  163 +0000000000 65535 f
  164 +0000000025 00000 n
  165 +0000000079 00000 n
  166 +0000000161 00000 n
  167 +0000000389 00000 n
  168 +0000000718 00000 n
  169 +0000000880 00000 n
  170 +0000000979 00000 n
  171 +0000000998 00000 n
  172 +0000001116 00000 n
  173 +0000001151 00000 n
  174 +0000002395 00000 n
  175 +trailer <<
  176 + /Root 1 0 R
  177 + /Size 12
  178 + /ID [<c5b1999a07a3fdcd0c04cfeed299c25a><0ddac86998f1552ce51b2c402848bd8e>]
  179 +>>
  180 +startxref
  181 +2416
  182 +%%EOF
... ...
qpdf/qtest/qpdf/comment-annotation-out.pdf 0 โ†’ 100644
  1 +%PDF-1.3
  2 +%ยฟรทยขรพ
  3 +%QDF-1.0
  4 +
  5 +1 0 obj
  6 +<<
  7 + /Pages 2 0 R
  8 + /Type /Catalog
  9 +>>
  10 +endobj
  11 +
  12 +2 0 obj
  13 +<<
  14 + /Count 1
  15 + /Kids [
  16 + 3 0 R
  17 + ]
  18 + /Type /Pages
  19 +>>
  20 +endobj
  21 +
  22 +%% Page 1
  23 +3 0 obj
  24 +<<
  25 + /Annots 4 0 R
  26 + /Contents [
  27 + 5 0 R
  28 + 7 0 R
  29 + 9 0 R
  30 + ]
  31 + /MediaBox [
  32 + 0
  33 + 0
  34 + 612
  35 + 792
  36 + ]
  37 + /Parent 2 0 R
  38 + /Resources <<
  39 + /ExtGState <<
  40 + /GS0 <<
  41 + /AIS false
  42 + /BM /Normal
  43 + /CA .6
  44 + /Type /ExtGState
  45 + /ca .6
  46 + >>
  47 + >>
  48 + /Font <<
  49 + /F1 11 0 R
  50 + >>
  51 + /ProcSet 12 0 R
  52 + >>
  53 + /Type /Page
  54 +>>
  55 +endobj
  56 +
  57 +4 0 obj
  58 +[
  59 + 13 0 R
  60 +]
  61 +endobj
  62 +
  63 +%% Contents for page 1
  64 +5 0 obj
  65 +<<
  66 + /Length 6 0 R
  67 +>>
  68 +stream
  69 +q
  70 +endstream
  71 +endobj
  72 +
  73 +6 0 obj
  74 +2
  75 +endobj
  76 +
  77 +%% Contents for page 1
  78 +7 0 obj
  79 +<<
  80 + /Length 8 0 R
  81 +>>
  82 +stream
  83 +BT
  84 + /F1 24 Tf
  85 + 72 720 Td
  86 + (Potato) Tj
  87 +ET
  88 +endstream
  89 +endobj
  90 +
  91 +8 0 obj
  92 +44
  93 +endobj
  94 +
  95 +%% Contents for page 1
  96 +9 0 obj
  97 +<<
  98 + /Length 10 0 R
  99 +>>
  100 +stream
  101 +
  102 +Q
  103 +q
  104 +1.00000 0.00000 0.00000 1.00000 235.00000 703.00000 cm
  105 +0.00000 0.00000 18.00000 18.00000 re W n
  106 +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b
  107 +Q
  108 +endstream
  109 +endobj
  110 +
  111 +10 0 obj
  112 +1032
  113 +endobj
  114 +
  115 +11 0 obj
  116 +<<
  117 + /BaseFont /Helvetica
  118 + /Encoding /WinAnsiEncoding
  119 + /Name /F1
  120 + /Subtype /Type1
  121 + /Type /Font
  122 +>>
  123 +endobj
  124 +
  125 +12 0 obj
  126 +[
  127 + /PDF
  128 + /Text
  129 +]
  130 +endobj
  131 +
  132 +13 0 obj
  133 +<<
  134 + /F 28
  135 + /Open false
  136 + /Parent 14 0 R
  137 + /Rect [
  138 + 612
  139 + 601
  140 + 792
  141 + 721
  142 + ]
  143 + /Subtype /Popup
  144 + /Type /Annot
  145 +>>
  146 +endobj
  147 +
  148 +14 0 obj
  149 +<<
  150 + /AP <<
  151 + /N 15 0 R
  152 + >>
  153 + /C [
  154 + 1
  155 + 1
  156 + 0
  157 + ]
  158 + /CA 1
  159 + /Contents (Salad)
  160 + /CreationDate (D:20181231235455Z00'00)
  161 + /F 28
  162 + /M (D:20181231235455Z00'00)
  163 + /Name /Comment
  164 + /P 3 0 R
  165 + /Popup 13 0 R
  166 + /Rect [
  167 + 235
  168 + 703
  169 + 253
  170 + 721
  171 + ]
  172 + /Subtype /Text
  173 + /T (Jay Berkenbilt)
  174 + /Type /Annot
  175 +>>
  176 +endobj
  177 +
  178 +15 0 obj
  179 +<<
  180 + /BBox [
  181 + 0
  182 + 0
  183 + 18
  184 + 18
  185 + ]
  186 + /Resources <<
  187 + /ExtGState <<
  188 + /GS0 <<
  189 + /AIS false
  190 + /BM /Normal
  191 + /CA .6
  192 + /Type /ExtGState
  193 + /ca .6
  194 + >>
  195 + >>
  196 + >>
  197 + /Subtype /Form
  198 + /Type /XObject
  199 + /Length 16 0 R
  200 +>>
  201 +stream
  202 +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b
  203 +endstream
  204 +endobj
  205 +
  206 +%QDF: ignore_newline
  207 +16 0 obj
  208 +928
  209 +endobj
  210 +
  211 +xref
  212 +0 17
  213 +0000000000 65535 f
  214 +0000000025 00000 n
  215 +0000000079 00000 n
  216 +0000000161 00000 n
  217 +0000000543 00000 n
  218 +0000000595 00000 n
  219 +0000000652 00000 n
  220 +0000000693 00000 n
  221 +0000000792 00000 n
  222 +0000000834 00000 n
  223 +0000001922 00000 n
  224 +0000001944 00000 n
  225 +0000002063 00000 n
  226 +0000002099 00000 n
  227 +0000002240 00000 n
  228 +0000002571 00000 n
  229 +0000003815 00000 n
  230 +trailer <<
  231 + /Root 1 0 R
  232 + /Size 17
  233 + /ID [<c5b1999a07a3fdcd0c04cfeed299c25a><31415926535897932384626433832795>]
  234 +>>
  235 +startxref
  236 +3836
  237 +%%EOF
... ...
qpdf/qtest/qpdf/comment-annotation.pdf 0 โ†’ 100644
  1 +%PDF-1.3
  2 +%ยฟรทยขรพ
  3 +%QDF-1.0
  4 +
  5 +1 0 obj
  6 +<<
  7 + /Pages 2 0 R
  8 + /Type /Catalog
  9 +>>
  10 +endobj
  11 +
  12 +2 0 obj
  13 +<<
  14 + /Count 1
  15 + /Kids [
  16 + 3 0 R
  17 + ]
  18 + /Type /Pages
  19 +>>
  20 +endobj
  21 +
  22 +%% Page 1
  23 +3 0 obj
  24 +<<
  25 + /Annots 4 0 R
  26 + /Contents 5 0 R
  27 + /MediaBox [
  28 + 0
  29 + 0
  30 + 612
  31 + 792
  32 + ]
  33 + /Parent 2 0 R
  34 + /Resources <<
  35 + /Font <<
  36 + /F1 7 0 R
  37 + >>
  38 + /ProcSet 8 0 R
  39 + >>
  40 + /Type /Page
  41 +>>
  42 +endobj
  43 +
  44 +4 0 obj
  45 +[
  46 + 9 0 R
  47 + 10 0 R
  48 +]
  49 +endobj
  50 +
  51 +%% Contents for page 1
  52 +5 0 obj
  53 +<<
  54 + /Length 6 0 R
  55 +>>
  56 +stream
  57 +BT
  58 + /F1 24 Tf
  59 + 72 720 Td
  60 + (Potato) Tj
  61 +ET
  62 +endstream
  63 +endobj
  64 +
  65 +6 0 obj
  66 +44
  67 +endobj
  68 +
  69 +7 0 obj
  70 +<<
  71 + /BaseFont /Helvetica
  72 + /Encoding /WinAnsiEncoding
  73 + /Name /F1
  74 + /Subtype /Type1
  75 + /Type /Font
  76 +>>
  77 +endobj
  78 +
  79 +8 0 obj
  80 +[
  81 + /PDF
  82 + /Text
  83 +]
  84 +endobj
  85 +
  86 +9 0 obj
  87 +<<
  88 + /AP <<
  89 + /N 11 0 R
  90 + >>
  91 + /C [
  92 + 1
  93 + 1
  94 + 0
  95 + ]
  96 + /CA 1
  97 + /Contents (Salad)
  98 + /CreationDate (D:20181231235455Z00'00)
  99 + /F 28
  100 + /M (D:20181231235455Z00'00)
  101 + /Name /Comment
  102 + /P 3 0 R
  103 + /Popup 10 0 R
  104 + /Rect [
  105 + 235
  106 + 703
  107 + 253
  108 + 721
  109 + ]
  110 + /Subtype /Text
  111 + /T (Jay Berkenbilt)
  112 + /Type /Annot
  113 +>>
  114 +endobj
  115 +
  116 +10 0 obj
  117 +<<
  118 + /F 28
  119 + /Open false
  120 + /Parent 9 0 R
  121 + /Rect [
  122 + 612
  123 + 601
  124 + 792
  125 + 721
  126 + ]
  127 + /Subtype /Popup
  128 + /Type /Annot
  129 +>>
  130 +endobj
  131 +
  132 +11 0 obj
  133 +<<
  134 + /BBox [
  135 + 0
  136 + 0
  137 + 18
  138 + 18
  139 + ]
  140 + /Resources <<
  141 + /ExtGState <<
  142 + /GS0 <<
  143 + /AIS false
  144 + /BM /Normal
  145 + /CA .6
  146 + /Type /ExtGState
  147 + /ca .6
  148 + >>
  149 + >>
  150 + >>
  151 + /Subtype /Form
  152 + /Type /XObject
  153 + /Length 12 0 R
  154 +>>
  155 +stream
  156 +q 1 1 1 rg 0 i 1 w 4 M 1 j 0 J []0 d /GS0 gs 1 0 0 1 9 5.0908 cm 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c h f Q 0 G 1 1 0 rg 0 i 0.60 w 4 M 1 j 0 J []0 d 1 1 0 rg 0 G 0 i 0.59 w 4 M 1 j 0 J []0 d 1 0 0 1 9 5.0908 cm 0 0 m -0.142 0 -0.28 0.008 -0.418 0.015 c -2.199 -1.969 -5.555 -2.242 -4.642 -1.42 c -4.024 -0.862 -3.916 0.111 -3.954 0.916 c -5.658 1.795 -6.772 3.222 -6.772 4.839 c -6.772 7.509 -3.74 9.674 0 9.674 c 3.74 9.674 6.772 7.509 6.772 4.839 c 6.772 2.167 3.74 0 0 0 c 7.74 12.616 m -7.74 12.616 l -8.274 12.616 -8.707 12.184 -8.707 11.649 c -8.707 -3.831 l -8.707 -4.365 -8.274 -4.798 -7.74 -4.798 c 7.74 -4.798 l 8.274 -4.798 8.707 -4.365 8.707 -3.831 c 8.707 11.649 l 8.707 12.184 8.274 12.616 7.74 12.616 c b
  157 +endstream
  158 +endobj
  159 +
  160 +%QDF: ignore_newline
  161 +12 0 obj
  162 +928
  163 +endobj
  164 +
  165 +xref
  166 +0 13
  167 +0000000000 65535 f
  168 +0000000025 00000 n
  169 +0000000079 00000 n
  170 +0000000161 00000 n
  171 +0000000369 00000 n
  172 +0000000429 00000 n
  173 +0000000528 00000 n
  174 +0000000547 00000 n
  175 +0000000665 00000 n
  176 +0000000700 00000 n
  177 +0000001030 00000 n
  178 +0000001170 00000 n
  179 +0000002414 00000 n
  180 +trailer <<
  181 + /Root 1 0 R
  182 + /Size 13
  183 + /ID [<c5b1999a07a3fdcd0c04cfeed299c25a><c5b1999a07a3fdcd0c04cfeed299c25a>]
  184 +>>
  185 +startxref
  186 +2435
  187 +%%EOF
... ...
qpdf/qtest/qpdf/form-field-types-out.pdf 0 โ†’ 100644
No preview for this file type
qpdf/qtest/qpdf/form-field-types.pdf 0 โ†’ 100644
No preview for this file type
qpdf/qtest/qpdf/form-filled-by-acrobat-out.pdf 0 โ†’ 100644
No preview for this file type
qpdf/qtest/qpdf/form-filled-by-acrobat.pdf 0 โ†’ 100644
No preview for this file type
qpdf/qtest/qpdf/manual-appearances-out.pdf 0 โ†’ 100644
  1 +%PDF-1.5
  2 +%ยฟรทยขรพ
  3 +%QDF-1.0
  4 +
  5 +1 0 obj
  6 +<<
  7 + /Lang (en-US)
  8 + /MarkInfo <<
  9 + /Marked true
  10 + >>
  11 + /OpenAction [
  12 + 3 0 R
  13 + /XYZ
  14 + null
  15 + null
  16 + 0
  17 + ]
  18 + /Pages 4 0 R
  19 + /StructTreeRoot 5 0 R
  20 + /Type /Catalog
  21 +>>
  22 +endobj
  23 +
  24 +2 0 obj
  25 +<<
  26 + /CreationDate (D:20181224113354-05'00')
  27 + /Creator <feff005700720069007400650072>
  28 + /Producer <feff004c0069006200720065004f0066006600690063006500200036002e0031>
  29 +>>
  30 +endobj
  31 +
  32 +%% Page 1
  33 +3 0 obj
  34 +<<
  35 + /Contents [
  36 + 6 0 R
  37 + 8 0 R
  38 + 10 0 R
  39 + ]
  40 + /Group <<
  41 + /CS /DeviceRGB
  42 + /I true
  43 + /S /Transparency
  44 + >>
  45 + /MediaBox [
  46 + 0
  47 + 0
  48 + 612
  49 + 792
  50 + ]
  51 + /Parent 4 0 R
  52 + /Resources <<
  53 + /Font 12 0 R
  54 + /ProcSet [
  55 + /PDF
  56 + /Text
  57 + ]
  58 + >>
  59 + /StructParents 0
  60 + /Type /Page
  61 +>>
  62 +endobj
  63 +
  64 +4 0 obj
  65 +<<
  66 + /Count 9
  67 + /Kids [
  68 + 3 0 R
  69 + 13 0 R
  70 + 14 0 R
  71 + 15 0 R
  72 + 16 0 R
  73 + 17 0 R
  74 + 18 0 R
  75 + 19 0 R
  76 + 20 0 R
  77 + ]
  78 + /Type /Pages
  79 +>>
  80 +endobj
  81 +
  82 +5 0 obj
  83 +<<
  84 + /K [
  85 + 21 0 R
  86 + ]
  87 + /ParentTree 22 0 R
  88 + /RoleMap <<
  89 + /Document /Document
  90 + /Standard /P
  91 + >>
  92 + /Type /StructTreeRoot
  93 +>>
  94 +endobj
  95 +
  96 +%% Contents for page 1
  97 +6 0 obj
  98 +<<
  99 + /Length 7 0 R
  100 +>>
  101 +stream
  102 +q
  103 +endstream
  104 +endobj
  105 +
  106 +7 0 obj
  107 +2
  108 +endobj
  109 +
  110 +%% Contents for page 1
  111 +8 0 obj
  112 +<<
  113 + /Length 9 0 R
  114 +>>
  115 +stream
  116 +0.1 w
  117 +/Artifact BMC
  118 +q 0 0.028 611.971 791.971 re
  119 +W* n
  120 +EMC
  121 +/Form<</MCID 0>>BDC
  122 +0 0 0 RG
  123 +1 1 1 rg
  124 +127.35 648.65 72.3 55.95 re B*
  125 +EMC
  126 +/Form<</MCID 1>>BDC
  127 +127.35 540.25 108.45 58 re B*
  128 +EMC
  129 +/Form<</MCID 2>>BDC
  130 +291.65 427.75 77.8 103 re B*
  131 +EMC
  132 +Q
  133 +endstream
  134 +endobj
  135 +
  136 +%QDF: ignore_newline
  137 +9 0 obj
  138 +240
  139 +endobj
  140 +
  141 +%% Contents for page 1
  142 +10 0 obj
  143 +<<
  144 + /Length 11 0 R
  145 +>>
  146 +stream
  147 +
  148 +Q
  149 +q
  150 +1.00003 0.00000 0.00000 0.99996 129.84900 651.15100 cm
  151 +0.00000 0.00000 67.30000 50.95000 re W n
  152 +q
  153 +60 r
  154 +1 0 0 RG
  155 +5 w
  156 +0 0 67.3 50.95 re s
  157 +0 1 0 RG
  158 +5 5 15 15 re s
  159 +Q
  160 +
  161 +Q
  162 +q
  163 +1.00002 0.00000 0.00000 0.99996 129.84900 542.75100 cm
  164 +0.00000 0.00000 103.45000 53.00000 re W n
  165 +q
  166 +0 1 0 RG
  167 +5 w
  168 +0 0 103.45 53 re s
  169 +0 0 1 RG
  170 +5 5 15 15 re s
  171 +Q
  172 +
  173 +Q
  174 +q
  175 +1.00003 0.00000 0.00000 0.99998 294.14900 430.25100 cm
  176 +0.00000 0.00000 72.80000 98.00000 re W n
  177 +q
  178 +0 0 1 RG
  179 +5 w
  180 +0 0 72.8 98 re s
  181 +1 0 0 RG
  182 +5 5 15 15 re s
  183 +Q
  184 +
  185 +Q
  186 +endstream
  187 +endobj
  188 +
  189 +11 0 obj
  190 +491
  191 +endobj
  192 +
  193 +12 0 obj
  194 +<<
  195 +>>
  196 +endobj
  197 +
  198 +%% Page 2
  199 +13 0 obj
  200 +<<
  201 + /Contents [
  202 + 23 0 R
  203 + 25 0 R
  204 + 27 0 R
  205 + ]
  206 + /Group <<
  207 + /CS /DeviceRGB
  208 + /I true
  209 + /S /Transparency
  210 + >>
  211 + /MediaBox [
  212 + 0
  213 + 0
  214 + 612
  215 + 792
  216 + ]
  217 + /Parent 4 0 R
  218 + /Resources <<
  219 + /Font 29 0 R
  220 + /ProcSet [
  221 + /PDF
  222 + /Text
  223 + ]
  224 + >>
  225 + /Rotate 90
  226 + /StructParents 0
  227 + /Type /Page
  228 +>>
  229 +endobj
  230 +
  231 +%% Page 3
  232 +14 0 obj
  233 +<<
  234 + /Contents [
  235 + 30 0 R
  236 + 32 0 R
  237 + 34 0 R
  238 + ]
  239 + /Group <<
  240 + /CS /DeviceRGB
  241 + /I true
  242 + /S /Transparency
  243 + >>
  244 + /MediaBox [
  245 + 0
  246 + 0
  247 + 612
  248 + 792
  249 + ]
  250 + /Parent 4 0 R
  251 + /Resources <<
  252 + /Font 36 0 R
  253 + /ProcSet [
  254 + /PDF
  255 + /Text
  256 + ]
  257 + >>
  258 + /StructParents 0
  259 + /Type /Page
  260 +>>
  261 +endobj
  262 +
  263 +%% Page 4
  264 +15 0 obj
  265 +<<
  266 + /Contents [
  267 + 37 0 R
  268 + 39 0 R
  269 + 41 0 R
  270 + ]
  271 + /Group <<
  272 + /CS /DeviceRGB
  273 + /I true
  274 + /S /Transparency
  275 + >>
  276 + /MediaBox [
  277 + 0
  278 + 0
  279 + 612
  280 + 792
  281 + ]
  282 + /Parent 4 0 R
  283 + /Resources <<
  284 + /Font 43 0 R
  285 + /ProcSet [
  286 + /PDF
  287 + /Text
  288 + ]
  289 + >>
  290 + /Rotate 90
  291 + /StructParents 0
  292 + /Type /Page
  293 +>>
  294 +endobj
  295 +
  296 +%% Page 5
  297 +16 0 obj
  298 +<<
  299 + /Contents [
  300 + 44 0 R
  301 + 46 0 R
  302 + 48 0 R
  303 + ]
  304 + /Group <<
  305 + /CS /DeviceRGB
  306 + /I true
  307 + /S /Transparency
  308 + >>
  309 + /MediaBox [
  310 + 0
  311 + 0
  312 + 612
  313 + 792
  314 + ]
  315 + /Parent 4 0 R
  316 + /Resources <<
  317 + /Font 50 0 R
  318 + /ProcSet [
  319 + /PDF
  320 + /Text
  321 + ]
  322 + >>
  323 + /Rotate 180
  324 + /StructParents 0
  325 + /Type /Page
  326 +>>
  327 +endobj
  328 +
  329 +%% Page 6
  330 +17 0 obj
  331 +<<
  332 + /Contents [
  333 + 51 0 R
  334 + 53 0 R
  335 + 55 0 R
  336 + ]
  337 + /Group <<
  338 + /CS /DeviceRGB
  339 + /I true
  340 + /S /Transparency
  341 + >>
  342 + /MediaBox [
  343 + 0
  344 + 0
  345 + 612
  346 + 792
  347 + ]
  348 + /Parent 4 0 R
  349 + /Resources <<
  350 + /Font 57 0 R
  351 + /ProcSet [
  352 + /PDF
  353 + /Text
  354 + ]
  355 + >>
  356 + /Rotate 90
  357 + /StructParents 0
  358 + /Type /Page
  359 +>>
  360 +endobj
  361 +
  362 +%% Page 7
  363 +18 0 obj
  364 +<<
  365 + /Contents [
  366 + 58 0 R
  367 + 60 0 R
  368 + 62 0 R
  369 + ]
  370 + /Group <<
  371 + /CS /DeviceRGB
  372 + /I true
  373 + /S /Transparency
  374 + >>
  375 + /MediaBox [
  376 + 0
  377 + 0
  378 + 612
  379 + 792
  380 + ]
  381 + /Parent 4 0 R
  382 + /Resources <<
  383 + /Font 64 0 R
  384 + /ProcSet [
  385 + /PDF
  386 + /Text
  387 + ]
  388 + >>
  389 + /StructParents 0
  390 + /Type /Page
  391 +>>
  392 +endobj
  393 +
  394 +%% Page 8
  395 +19 0 obj
  396 +<<
  397 + /Contents [
  398 + 65 0 R
  399 + 67 0 R
  400 + 69 0 R
  401 + ]
  402 + /Group <<
  403 + /CS /DeviceRGB
  404 + /I true
  405 + /S /Transparency
  406 + >>
  407 + /MediaBox [
  408 + 0
  409 + 0
  410 + 612
  411 + 792
  412 + ]
  413 + /Parent 4 0 R
  414 + /Resources <<
  415 + /Font 71 0 R
  416 + /ProcSet [
  417 + /PDF
  418 + /Text
  419 + ]
  420 + >>
  421 + /Rotate 270
  422 + /StructParents 0
  423 + /Type /Page
  424 +>>
  425 +endobj
  426 +
  427 +%% Page 9
  428 +20 0 obj
  429 +<<
  430 + /Contents [
  431 + 72 0 R
  432 + 74 0 R
  433 + 76 0 R
  434 + ]
  435 + /Group <<
  436 + /CS /DeviceRGB
  437 + /I true
  438 + /S /Transparency
  439 + >>
  440 + /MediaBox [
  441 + 0
  442 + 0
  443 + 612
  444 + 792
  445 + ]
  446 + /Parent 4 0 R
  447 + /Resources <<
  448 + /Font 78 0 R
  449 + /ProcSet [
  450 + /PDF
  451 + /Text
  452 + ]
  453 + >>
  454 + /StructParents 0
  455 + /Type /Page
  456 +>>
  457 +endobj
  458 +
  459 +21 0 obj
  460 +<<
  461 + /K [
  462 + 79 0 R
  463 + 80 0 R
  464 + 81 0 R
  465 + 82 0 R
  466 + ]
  467 + /P 5 0 R
  468 + /Pg 3 0 R
  469 + /S /Document
  470 + /Type /StructElem
  471 +>>
  472 +endobj
  473 +
  474 +22 0 obj
  475 +<<
  476 + /Nums [
  477 + 0
  478 + [
  479 + 80 0 R
  480 + 81 0 R
  481 + 82 0 R
  482 + ]
  483 + ]
  484 +>>
  485 +endobj
  486 +
  487 +%% Contents for page 2
  488 +23 0 obj
  489 +<<
  490 + /Length 24 0 R
  491 +>>
  492 +stream
  493 +q
  494 +endstream
  495 +endobj
  496 +
  497 +24 0 obj
  498 +2
  499 +endobj
  500 +
  501 +%% Contents for page 2
  502 +25 0 obj
  503 +<<
  504 + /Length 26 0 R
  505 +>>
  506 +stream
  507 +0.1 w
  508 +/Artifact BMC
  509 +q 0 0.028 611.971 791.971 re
  510 +W* n
  511 +EMC
  512 +/Form<</MCID 0>>BDC
  513 +0 0 0 RG
  514 +1 1 1 rg
  515 +127.35 648.65 72.3 55.95 re B*
  516 +EMC
  517 +/Form<</MCID 1>>BDC
  518 +127.35 540.25 108.45 58 re B*
  519 +EMC
  520 +/Form<</MCID 2>>BDC
  521 +291.65 427.75 77.8 103 re B*
  522 +EMC
  523 +Q
  524 +endstream
  525 +endobj
  526 +
  527 +%QDF: ignore_newline
  528 +26 0 obj
  529 +240
  530 +endobj
  531 +
  532 +%% Contents for page 2
  533 +27 0 obj
  534 +<<
  535 + /Length 28 0 R
  536 +>>
  537 +stream
  538 +
  539 +Q
  540 +q
  541 +1.00003 0.00000 0.00000 0.99996 129.84900 651.15100 cm
  542 +0.00000 0.00000 67.30000 50.95000 re W n
  543 +q
  544 +1 0 0 RG
  545 +5 w
  546 +0 0 67.3 50.95 re s
  547 +0 1 0 RG
  548 +5 5 15 15 re s
  549 +Q
  550 +
  551 +Q
  552 +q
  553 +1.00002 0.00000 0.00000 0.99996 129.84900 542.75100 cm
  554 +0.00000 0.00000 103.45000 53.00000 re W n
  555 +q
  556 +0 1 0 RG
  557 +5 w
  558 +0 0 103.45 53 re s
  559 +0 0 1 RG
  560 +5 5 15 15 re s
  561 +Q
  562 +
  563 +Q
  564 +q
  565 +0.00000 1.00003 -0.99998 0.00000 392.14700 528.24900 cm
  566 +0.00000 0.00000 72.80000 98.00000 re W n
  567 +q
  568 +0 0 1 RG
  569 +5 w
  570 +0 0 72.8 98 re s
  571 +1 0 0 RG
  572 +5 5 15 15 re s
  573 +Q
  574 +
  575 +Q
  576 +endstream
  577 +endobj
  578 +
  579 +28 0 obj
  580 +487
  581 +endobj
  582 +
  583 +29 0 obj
  584 +<<
  585 +>>
  586 +endobj
  587 +
  588 +%% Contents for page 3
  589 +30 0 obj
  590 +<<
  591 + /Length 31 0 R
  592 +>>
  593 +stream
  594 +q
  595 +endstream
  596 +endobj
  597 +
  598 +31 0 obj
  599 +2
  600 +endobj
  601 +
  602 +%% Contents for page 3
  603 +32 0 obj
  604 +<<
  605 + /Length 33 0 R
  606 +>>
  607 +stream
  608 +0.1 w
  609 +/Artifact BMC
  610 +q 0 0.028 611.971 791.971 re
  611 +W* n
  612 +EMC
  613 +/Form<</MCID 0>>BDC
  614 +0 0 0 RG
  615 +1 1 1 rg
  616 +127.35 648.65 72.3 55.95 re B*
  617 +EMC
  618 +/Form<</MCID 1>>BDC
  619 +127.35 540.25 108.45 58 re B*
  620 +EMC
  621 +/Form<</MCID 2>>BDC
  622 +291.65 427.75 77.8 103 re B*
  623 +EMC
  624 +Q
  625 +endstream
  626 +endobj
  627 +
  628 +%QDF: ignore_newline
  629 +33 0 obj
  630 +240
  631 +endobj
  632 +
  633 +%% Contents for page 3
  634 +34 0 obj
  635 +<<
  636 + /Length 35 0 R
  637 +>>
  638 +stream
  639 +
  640 +Q
  641 +q
  642 +0.65131 0.36563 -0.46062 0.51700 153.31752 651.15100 cm
  643 +0.00000 0.00000 67.30000 50.95000 re W n
  644 +q
  645 +1 0 0 RG
  646 +5 w
  647 +0 0 67.3 50.95 re s
  648 +0 1 0 RG
  649 +5 5 15 15 re s
  650 +Q
  651 +
  652 +Q
  653 +q
  654 +0.88367 0.26685 0.22710 0.47909 129.84900 542.75100 cm
  655 +0.00000 0.00000 103.45000 53.00000 re W n
  656 +q
  657 +0 1 0 RG
  658 +5 w
  659 +0 0 103.45 53 re s
  660 +0 0 1 RG
  661 +5 5 15 15 re s
  662 +Q
  663 +
  664 +Q
  665 +q
  666 +1.00003 0.00000 0.00000 0.99998 294.14900 430.25100 cm
  667 +0.00000 0.00000 72.80000 98.00000 re W n
  668 +q
  669 +0 0 1 RG
  670 +5 w
  671 +0 0 72.8 98 re s
  672 +1 0 0 RG
  673 +5 5 15 15 re s
  674 +Q
  675 +
  676 +Q
  677 +endstream
  678 +endobj
  679 +
  680 +35 0 obj
  681 +487
  682 +endobj
  683 +
  684 +36 0 obj
  685 +<<
  686 +>>
  687 +endobj
  688 +
  689 +%% Contents for page 4
  690 +37 0 obj
  691 +<<
  692 + /Length 38 0 R
  693 +>>
  694 +stream
  695 +q
  696 +endstream
  697 +endobj
  698 +
  699 +38 0 obj
  700 +2
  701 +endobj
  702 +
  703 +%% Contents for page 4
  704 +39 0 obj
  705 +<<
  706 + /Length 40 0 R
  707 +>>
  708 +stream
  709 +0.1 w
  710 +/Artifact BMC
  711 +q 0 0.028 611.971 791.971 re
  712 +W* n
  713 +EMC
  714 +/Form<</MCID 0>>BDC
  715 +0 0 0 RG
  716 +1 1 1 rg
  717 +127.35 648.65 72.3 55.95 re B*
  718 +EMC
  719 +/Form<</MCID 1>>BDC
  720 +127.35 540.25 108.45 58 re B*
  721 +EMC
  722 +/Form<</MCID 2>>BDC
  723 +291.65 427.75 77.8 103 re B*
  724 +EMC
  725 +Q
  726 +endstream
  727 +endobj
  728 +
  729 +%QDF: ignore_newline
  730 +40 0 obj
  731 +240
  732 +endobj
  733 +
  734 +%% Contents for page 4
  735 +41 0 obj
  736 +<<
  737 + /Length 42 0 R
  738 +>>
  739 +stream
  740 +
  741 +Q
  742 +q
  743 +0.65131 0.36563 -0.46062 0.51700 153.31752 651.15100 cm
  744 +0.00000 0.00000 67.30000 50.95000 re W n
  745 +q
  746 +60 r
  747 +1 0 0 RG
  748 +5 w
  749 +0 0 67.3 50.95 re s
  750 +0 1 0 RG
  751 +5 5 15 15 re s
  752 +Q
  753 +
  754 +Q
  755 +q
  756 +0.88367 0.26685 0.22710 0.47909 129.84900 542.75100 cm
  757 +0.00000 0.00000 103.45000 53.00000 re W n
  758 +q
  759 +0 1 0 RG
  760 +5 w
  761 +0 0 103.45 53 re s
  762 +0 0 1 RG
  763 +5 5 15 15 re s
  764 +Q
  765 +
  766 +Q
  767 +q
  768 +1.00003 0.00000 0.00000 0.99998 294.14900 430.25100 cm
  769 +0.00000 0.00000 72.80000 98.00000 re W n
  770 +q
  771 +0 0 1 RG
  772 +5 w
  773 +0 0 72.8 98 re s
  774 +1 0 0 RG
  775 +5 5 15 15 re s
  776 +Q
  777 +
  778 +Q
  779 +endstream
  780 +endobj
  781 +
  782 +42 0 obj
  783 +492
  784 +endobj
  785 +
  786 +43 0 obj
  787 +<<
  788 +>>
  789 +endobj
  790 +
  791 +%% Contents for page 5
  792 +44 0 obj
  793 +<<
  794 + /Length 45 0 R
  795 +>>
  796 +stream
  797 +q
  798 +endstream
  799 +endobj
  800 +
  801 +45 0 obj
  802 +2
  803 +endobj
  804 +
  805 +%% Contents for page 5
  806 +46 0 obj
  807 +<<
  808 + /Length 47 0 R
  809 +>>
  810 +stream
  811 +0.1 w
  812 +/Artifact BMC
  813 +q 0 0.028 611.971 791.971 re
  814 +W* n
  815 +EMC
  816 +/Form<</MCID 0>>BDC
  817 +0 0 0 RG
  818 +1 1 1 rg
  819 +127.35 648.65 72.3 55.95 re B*
  820 +EMC
  821 +/Form<</MCID 1>>BDC
  822 +127.35 540.25 108.45 58 re B*
  823 +EMC
  824 +/Form<</MCID 2>>BDC
  825 +291.65 427.75 77.8 103 re B*
  826 +EMC
  827 +Q
  828 +endstream
  829 +endobj
  830 +
  831 +%QDF: ignore_newline
  832 +47 0 obj
  833 +240
  834 +endobj
  835 +
  836 +%% Contents for page 5
  837 +48 0 obj
  838 +<<
  839 + /Length 49 0 R
  840 +>>
  841 +stream
  842 +
  843 +Q
  844 +q
  845 +1.00003 0.00000 0.00000 0.99996 129.84900 651.15100 cm
  846 +0.00000 0.00000 67.30000 50.95000 re W n
  847 +q
  848 +1 0 0 RG
  849 +5 w
  850 +0 0 67.3 50.95 re s
  851 +0 1 0 RG
  852 +5 5 15 15 re s
  853 +Q
  854 +
  855 +Q
  856 +q
  857 +1.00002 0.00000 0.00000 0.99996 129.84900 542.75100 cm
  858 +0.00000 0.00000 103.45000 53.00000 re W n
  859 +q
  860 +0 1 0 RG
  861 +5 w
  862 +0 0 103.45 53 re s
  863 +0 0 1 RG
  864 +5 5 15 15 re s
  865 +Q
  866 +
  867 +Q
  868 +q
  869 +-1.00003 0.00000 0.00000 -0.99998 294.14900 626.24700 cm
  870 +0.00000 0.00000 72.80000 98.00000 re W n
  871 +q
  872 +0 0 1 RG
  873 +5 w
  874 +0 0 72.8 98 re s
  875 +1 0 0 RG
  876 +5 5 15 15 re s
  877 +Q
  878 +
  879 +Q
  880 +endstream
  881 +endobj
  882 +
  883 +49 0 obj
  884 +488
  885 +endobj
  886 +
  887 +50 0 obj
  888 +<<
  889 +>>
  890 +endobj
  891 +
  892 +%% Contents for page 6
  893 +51 0 obj
  894 +<<
  895 + /Length 52 0 R
  896 +>>
  897 +stream
  898 +q
  899 +endstream
  900 +endobj
  901 +
  902 +52 0 obj
  903 +2
  904 +endobj
  905 +
  906 +%% Contents for page 6
  907 +53 0 obj
  908 +<<
  909 + /Length 54 0 R
  910 +>>
  911 +stream
  912 +0.1 w
  913 +/Artifact BMC
  914 +q 0 0.028 611.971 791.971 re
  915 +W* n
  916 +EMC
  917 +/Form<</MCID 0>>BDC
  918 +0 0 0 RG
  919 +1 1 1 rg
  920 +127.35 648.65 72.3 55.95 re B*
  921 +EMC
  922 +/Form<</MCID 1>>BDC
  923 +127.35 540.25 108.45 58 re B*
  924 +EMC
  925 +/Form<</MCID 2>>BDC
  926 +291.65 427.75 77.8 103 re B*
  927 +EMC
  928 +Q
  929 +endstream
  930 +endobj
  931 +
  932 +%QDF: ignore_newline
  933 +54 0 obj
  934 +240
  935 +endobj
  936 +
  937 +%% Contents for page 6
  938 +55 0 obj
  939 +<<
  940 + /Length 56 0 R
  941 +>>
  942 +stream
  943 +
  944 +Q
  945 +q
  946 +-0.36563 0.65131 -0.51700 -0.46062 180.79700 725.56752 cm
  947 +0.00000 0.00000 67.30000 50.95000 re W n
  948 +q
  949 +1 0 0 RG
  950 +5 w
  951 +0 0 67.3 50.95 re s
  952 +0 1 0 RG
  953 +5 5 15 15 re s
  954 +Q
  955 +
  956 +Q
  957 +q
  958 +-0.26685 0.88387 -0.47909 0.22671 182.84700 595.74900 cm
  959 +0.00000 0.00000 103.45000 53.00000 re W n
  960 +q
  961 +0 1 0 RG
  962 +5 w
  963 +0 0 103.45 53 re s
  964 +0 0 1 RG
  965 +5 5 15 15 re s
  966 +Q
  967 +
  968 +Q
  969 +q
  970 +0.00000 1.00003 -0.99998 0.00000 392.14700 528.24900 cm
  971 +0.00000 0.00000 72.80000 98.00000 re W n
  972 +q
  973 +0 0 1 RG
  974 +5 w
  975 +0 0 72.8 98 re s
  976 +1 0 0 RG
  977 +5 5 15 15 re s
  978 +Q
  979 +
  980 +Q
  981 +endstream
  982 +endobj
  983 +
  984 +56 0 obj
  985 +492
  986 +endobj
  987 +
  988 +57 0 obj
  989 +<<
  990 +>>
  991 +endobj
  992 +
  993 +%% Contents for page 7
  994 +58 0 obj
  995 +<<
  996 + /Length 59 0 R
  997 +>>
  998 +stream
  999 +q
  1000 +endstream
  1001 +endobj
  1002 +
  1003 +59 0 obj
  1004 +2
  1005 +endobj
  1006 +
  1007 +%% Contents for page 7
  1008 +60 0 obj
  1009 +<<
  1010 + /Length 61 0 R
  1011 +>>
  1012 +stream
  1013 +0.1 w
  1014 +/Artifact BMC
  1015 +q 0 0.028 611.971 791.971 re
  1016 +W* n
  1017 +EMC
  1018 +/Form<</MCID 0>>BDC
  1019 +0 0 0 RG
  1020 +1 1 1 rg
  1021 +127.35 648.65 72.3 55.95 re B*
  1022 +EMC
  1023 +/Form<</MCID 1>>BDC
  1024 +127.35 540.25 108.45 58 re B*
  1025 +EMC
  1026 +/Form<</MCID 2>>BDC
  1027 +291.65 427.75 77.8 103 re B*
  1028 +EMC
  1029 +Q
  1030 +endstream
  1031 +endobj
  1032 +
  1033 +%QDF: ignore_newline
  1034 +61 0 obj
  1035 +240
  1036 +endobj
  1037 +
  1038 +%% Contents for page 7
  1039 +62 0 obj
  1040 +<<
  1041 + /Length 63 0 R
  1042 +>>
  1043 +stream
  1044 +
  1045 +Q
  1046 +q
  1047 +1.00003 0.00000 0.00000 0.99996 129.84900 651.15100 cm
  1048 +0.00000 0.00000 67.30000 50.95000 re W n
  1049 +q
  1050 +60 r
  1051 +1 0 0 RG
  1052 +5 w
  1053 +0 0 67.3 50.95 re s
  1054 +0 1 0 RG
  1055 +5 5 15 15 re s
  1056 +Q
  1057 +
  1058 +Q
  1059 +q
  1060 +1.00002 0.00000 0.00000 0.99996 129.84900 542.75100 cm
  1061 +0.00000 0.00000 103.45000 53.00000 re W n
  1062 +q
  1063 +0 1 0 RG
  1064 +5 w
  1065 +0 0 103.45 53 re s
  1066 +0 0 1 RG
  1067 +5 5 15 15 re s
  1068 +Q
  1069 +
  1070 +Q
  1071 +q
  1072 +1.00003 0.00000 0.00000 0.99998 294.14900 430.25100 cm
  1073 +0.00000 0.00000 72.80000 98.00000 re W n
  1074 +q
  1075 +0 0 1 RG
  1076 +5 w
  1077 +0 0 72.8 98 re s
  1078 +1 0 0 RG
  1079 +5 5 15 15 re s
  1080 +Q
  1081 +
  1082 +Q
  1083 +endstream
  1084 +endobj
  1085 +
  1086 +63 0 obj
  1087 +491
  1088 +endobj
  1089 +
  1090 +64 0 obj
  1091 +<<
  1092 +>>
  1093 +endobj
  1094 +
  1095 +%% Contents for page 8
  1096 +65 0 obj
  1097 +<<
  1098 + /Length 66 0 R
  1099 +>>
  1100 +stream
  1101 +q
  1102 +endstream
  1103 +endobj
  1104 +
  1105 +66 0 obj
  1106 +2
  1107 +endobj
  1108 +
  1109 +%% Contents for page 8
  1110 +67 0 obj
  1111 +<<
  1112 + /Length 68 0 R
  1113 +>>
  1114 +stream
  1115 +0.1 w
  1116 +/Artifact BMC
  1117 +q 0 0.028 611.971 791.971 re
  1118 +W* n
  1119 +EMC
  1120 +/Form<</MCID 0>>BDC
  1121 +0 0 0 RG
  1122 +1 1 1 rg
  1123 +127.35 648.65 72.3 55.95 re B*
  1124 +EMC
  1125 +/Form<</MCID 1>>BDC
  1126 +127.35 540.25 108.45 58 re B*
  1127 +EMC
  1128 +/Form<</MCID 2>>BDC
  1129 +291.65 427.75 77.8 103 re B*
  1130 +EMC
  1131 +Q
  1132 +endstream
  1133 +endobj
  1134 +
  1135 +%QDF: ignore_newline
  1136 +68 0 obj
  1137 +240
  1138 +endobj
  1139 +
  1140 +%% Contents for page 8
  1141 +69 0 obj
  1142 +<<
  1143 + /Length 70 0 R
  1144 +>>
  1145 +stream
  1146 +
  1147 +Q
  1148 +q
  1149 +1.00003 0.00000 0.00000 0.99996 129.84900 651.15100 cm
  1150 +0.00000 0.00000 67.30000 50.95000 re W n
  1151 +q
  1152 +1 0 0 RG
  1153 +5 w
  1154 +0 0 67.3 50.95 re s
  1155 +0 1 0 RG
  1156 +5 5 15 15 re s
  1157 +Q
  1158 +
  1159 +Q
  1160 +q
  1161 +1.00002 0.00000 0.00000 0.99996 129.84900 542.75100 cm
  1162 +0.00000 0.00000 103.45000 53.00000 re W n
  1163 +q
  1164 +0 1 0 RG
  1165 +5 w
  1166 +0 0 103.45 53 re s
  1167 +0 0 1 RG
  1168 +5 5 15 15 re s
  1169 +Q
  1170 +
  1171 +Q
  1172 +q
  1173 +0.00000 -1.00003 0.99998 0.00000 196.15100 528.24900 cm
  1174 +0.00000 0.00000 72.80000 98.00000 re W n
  1175 +q
  1176 +0 0 1 RG
  1177 +5 w
  1178 +0 0 72.8 98 re s
  1179 +1 0 0 RG
  1180 +5 5 15 15 re s
  1181 +Q
  1182 +
  1183 +Q
  1184 +endstream
  1185 +endobj
  1186 +
  1187 +70 0 obj
  1188 +487
  1189 +endobj
  1190 +
  1191 +71 0 obj
  1192 +<<
  1193 +>>
  1194 +endobj
  1195 +
  1196 +%% Contents for page 9
  1197 +72 0 obj
  1198 +<<
  1199 + /Length 73 0 R
  1200 +>>
  1201 +stream
  1202 +q
  1203 +endstream
  1204 +endobj
  1205 +
  1206 +73 0 obj
  1207 +2
  1208 +endobj
  1209 +
  1210 +%% Contents for page 9
  1211 +74 0 obj
  1212 +<<
  1213 + /Length 75 0 R
  1214 +>>
  1215 +stream
  1216 +0.1 w
  1217 +/Artifact BMC
  1218 +q 0 0.028 611.971 791.971 re
  1219 +W* n
  1220 +EMC
  1221 +/Form<</MCID 0>>BDC
  1222 +0 0 0 RG
  1223 +1 1 1 rg
  1224 +127.35 648.65 72.3 55.95 re B*
  1225 +EMC
  1226 +/Form<</MCID 1>>BDC
  1227 +127.35 540.25 108.45 58 re B*
  1228 +EMC
  1229 +/Form<</MCID 2>>BDC
  1230 +291.65 427.75 77.8 103 re B*
  1231 +EMC
  1232 +Q
  1233 +endstream
  1234 +endobj
  1235 +
  1236 +%QDF: ignore_newline
  1237 +75 0 obj
  1238 +240
  1239 +endobj
  1240 +
  1241 +%% Contents for page 9
  1242 +76 0 obj
  1243 +<<
  1244 + /Length 77 0 R
  1245 +>>
  1246 +stream
  1247 +
  1248 +Q
  1249 +q
  1250 +1.00003 0.00000 0.00000 0.99996 129.84900 651.15100 cm
  1251 +0.00000 0.00000 67.30000 50.95000 re W n
  1252 +q
  1253 +1 0 0 RG
  1254 +5 w
  1255 +0 0 67.3 50.95 re s
  1256 +0 1 0 RG
  1257 +5 5 15 15 re s
  1258 +Q
  1259 +
  1260 +Q
  1261 +q
  1262 +1.00002 0.00000 0.00000 0.99996 129.84900 542.75100 cm
  1263 +0.00000 0.00000 103.45000 53.00000 re W n
  1264 +q
  1265 +0 1 0 RG
  1266 +5 w
  1267 +0 0 103.45 53 re s
  1268 +0 0 1 RG
  1269 +5 5 15 15 re s
  1270 +Q
  1271 +
  1272 +Q
  1273 +q
  1274 +1.00003 0.00000 0.00000 0.99998 294.14900 430.25100 cm
  1275 +0.00000 0.00000 72.80000 98.00000 re W n
  1276 +q
  1277 +0 0 1 RG
  1278 +5 w
  1279 +0 0 72.8 98 re s
  1280 +1 0 0 RG
  1281 +5 5 15 15 re s
  1282 +Q
  1283 +
  1284 +Q
  1285 +endstream
  1286 +endobj
  1287 +
  1288 +77 0 obj
  1289 +486
  1290 +endobj
  1291 +
  1292 +78 0 obj
  1293 +<<
  1294 +>>
  1295 +endobj
  1296 +
  1297 +79 0 obj
  1298 +<<
  1299 + /A 83 0 R
  1300 + /P 21 0 R
  1301 + /Pg 3 0 R
  1302 + /S /Standard
  1303 + /Type /StructElem
  1304 +>>
  1305 +endobj
  1306 +
  1307 +80 0 obj
  1308 +<<
  1309 + /K [
  1310 + 0
  1311 + ]
  1312 + /P 21 0 R
  1313 + /Pg 3 0 R
  1314 + /S /Form
  1315 + /Type /StructElem
  1316 +>>
  1317 +endobj
  1318 +
  1319 +81 0 obj
  1320 +<<
  1321 + /K [
  1322 + 1
  1323 + ]
  1324 + /P 21 0 R
  1325 + /Pg 3 0 R
  1326 + /S /Form
  1327 + /Type /StructElem
  1328 +>>
  1329 +endobj
  1330 +
  1331 +82 0 obj
  1332 +<<
  1333 + /K [
  1334 + 2
  1335 + ]
  1336 + /P 21 0 R
  1337 + /Pg 3 0 R
  1338 + /S /Form
  1339 + /Type /StructElem
  1340 +>>
  1341 +endobj
  1342 +
  1343 +83 0 obj
  1344 +<<
  1345 + /O /Layout
  1346 + /Placement /Block
  1347 +>>
  1348 +endobj
  1349 +
  1350 +xref
  1351 +0 84
  1352 +0000000000 65535 f
  1353 +0000000025 00000 n
  1354 +0000000219 00000 n
  1355 +0000000414 00000 n
  1356 +0000000731 00000 n
  1357 +0000000891 00000 n
  1358 +0000001063 00000 n
  1359 +0000001120 00000 n
  1360 +0000001161 00000 n
  1361 +0000001478 00000 n
  1362 +0000001521 00000 n
  1363 +0000002069 00000 n
  1364 +0000002090 00000 n
  1365 +0000002123 00000 n
  1366 +0000002466 00000 n
  1367 +0000002796 00000 n
  1368 +0000003139 00000 n
  1369 +0000003483 00000 n
  1370 +0000003826 00000 n
  1371 +0000004156 00000 n
  1372 +0000004500 00000 n
  1373 +0000004820 00000 n
  1374 +0000004956 00000 n
  1375 +0000005073 00000 n
  1376 +0000005132 00000 n
  1377 +0000005174 00000 n
  1378 +0000005493 00000 n
  1379 +0000005537 00000 n
  1380 +0000006081 00000 n
  1381 +0000006102 00000 n
  1382 +0000006148 00000 n
  1383 +0000006207 00000 n
  1384 +0000006249 00000 n
  1385 +0000006568 00000 n
  1386 +0000006612 00000 n
  1387 +0000007156 00000 n
  1388 +0000007177 00000 n
  1389 +0000007223 00000 n
  1390 +0000007282 00000 n
  1391 +0000007324 00000 n
  1392 +0000007643 00000 n
  1393 +0000007687 00000 n
  1394 +0000008236 00000 n
  1395 +0000008257 00000 n
  1396 +0000008303 00000 n
  1397 +0000008362 00000 n
  1398 +0000008404 00000 n
  1399 +0000008723 00000 n
  1400 +0000008767 00000 n
  1401 +0000009312 00000 n
  1402 +0000009333 00000 n
  1403 +0000009379 00000 n
  1404 +0000009438 00000 n
  1405 +0000009480 00000 n
  1406 +0000009799 00000 n
  1407 +0000009843 00000 n
  1408 +0000010392 00000 n
  1409 +0000010413 00000 n
  1410 +0000010459 00000 n
  1411 +0000010518 00000 n
  1412 +0000010560 00000 n
  1413 +0000010879 00000 n
  1414 +0000010923 00000 n
  1415 +0000011471 00000 n
  1416 +0000011492 00000 n
  1417 +0000011538 00000 n
  1418 +0000011597 00000 n
  1419 +0000011639 00000 n
  1420 +0000011958 00000 n
  1421 +0000012002 00000 n
  1422 +0000012546 00000 n
  1423 +0000012567 00000 n
  1424 +0000012613 00000 n
  1425 +0000012672 00000 n
  1426 +0000012714 00000 n
  1427 +0000013033 00000 n
  1428 +0000013077 00000 n
  1429 +0000013620 00000 n
  1430 +0000013641 00000 n
  1431 +0000013664 00000 n
  1432 +0000013758 00000 n
  1433 +0000013853 00000 n
  1434 +0000013948 00000 n
  1435 +0000014043 00000 n
  1436 +trailer <<
  1437 + /DocChecksum /DA785F789D02970D387C264D0A6C8CB0
  1438 + /Info 2 0 R
  1439 + /Root 1 0 R
  1440 + /Size 84
  1441 + /ID [<976442cb303b8d5e88a36a127de2a19f><31415926535897932384626433832795>]
  1442 +>>
  1443 +startxref
  1444 +14099
  1445 +%%EOF
... ...
qpdf/qtest/qpdf/manual-appearances.pdf 0 โ†’ 100644
  1 +%PDF-1.5
  2 +%ยฟรทยขรพ
  3 +%QDF-1.0
  4 +
  5 +%% Original object ID: 1 0
  6 +1 0 obj
  7 +<<
  8 + /AcroForm <<
  9 + /DR 3 0 R
  10 + /Fields [
  11 + 4 0 R
  12 + 5 0 R
  13 + 6 0 R
  14 + 7 0 R
  15 + 8 0 R
  16 + 9 0 R
  17 + 10 0 R
  18 + 11 0 R
  19 + 12 0 R
  20 + 13 0 R
  21 + 14 0 R
  22 + 15 0 R
  23 + 16 0 R
  24 + 17 0 R
  25 + 18 0 R
  26 + 19 0 R
  27 + 20 0 R
  28 + 21 0 R
  29 + 22 0 R
  30 + 23 0 R
  31 + 24 0 R
  32 + 25 0 R
  33 + 26 0 R
  34 + 27 0 R
  35 + 28 0 R
  36 + 29 0 R
  37 + 30 0 R
  38 + ]
  39 + /NeedAppearances false
  40 + >>
  41 + /Lang (en-US)
  42 + /MarkInfo <<
  43 + /Marked true
  44 + >>
  45 + /OpenAction [
  46 + 31 0 R
  47 + /XYZ
  48 + null
  49 + null
  50 + 0
  51 + ]
  52 + /Pages 32 0 R
  53 + /StructTreeRoot 33 0 R
  54 + /Type /Catalog
  55 +>>
  56 +endobj
  57 +
  58 +%% Original object ID: 2 0
  59 +2 0 obj
  60 +<<
  61 + /CreationDate (D:20181224113354-05'00')
  62 + /Creator <feff005700720069007400650072>
  63 + /Producer <feff004c0069006200720065004f0066006600690063006500200036002e0031>
  64 +>>
  65 +endobj
  66 +
  67 +%% Original object ID: 3 0
  68 +3 0 obj
  69 +<<
  70 + /Font 34 0 R
  71 + /ProcSet [
  72 + /PDF
  73 + /Text
  74 + ]
  75 +>>
  76 +endobj
  77 +
  78 +%% Original object ID: 4 0
  79 +4 0 obj
  80 +<<
  81 + /AP <<
  82 + /N 35 0 R
  83 + >>
  84 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  85 + /DR <<
  86 + /Font 34 0 R
  87 + >>
  88 + /DV <feff>
  89 + /F 4
  90 + /FT /Tx
  91 + /Ff 4096
  92 + /P 31 0 R
  93 + /Rect [
  94 + 129.849
  95 + 651.151
  96 + 197.151
  97 + 702.099
  98 + ]
  99 + /Subtype /Widget
  100 + /T (Text Box 1)
  101 + /Type /Annot
  102 + /V <feff>
  103 +>>
  104 +endobj
  105 +
  106 +%% Original object ID: 5 0
  107 +5 0 obj
  108 +<<
  109 + /AP <<
  110 + /N 37 0 R
  111 + >>
  112 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  113 + /DR <<
  114 + /Font 34 0 R
  115 + >>
  116 + /DV <feff>
  117 + /F 4
  118 + /FT /Tx
  119 + /Ff 4096
  120 + /P 31 0 R
  121 + /Rect [
  122 + 129.849
  123 + 542.751
  124 + 233.301
  125 + 595.749
  126 + ]
  127 + /Subtype /Widget
  128 + /T (Text Box 2)
  129 + /Type /Annot
  130 + /V <feff>
  131 +>>
  132 +endobj
  133 +
  134 +%% Original object ID: 6 0
  135 +6 0 obj
  136 +<<
  137 + /AP <<
  138 + /N 39 0 R
  139 + >>
  140 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  141 + /DR <<
  142 + /Font 34 0 R
  143 + >>
  144 + /DV <feff>
  145 + /F 4
  146 + /FT /Tx
  147 + /Ff 4096
  148 + /P 31 0 R
  149 + /Rect [
  150 + 294.149
  151 + 430.251
  152 + 366.951
  153 + 528.249
  154 + ]
  155 + /Subtype /Widget
  156 + /T (Text Box 3)
  157 + /Type /Annot
  158 + /V <feff>
  159 +>>
  160 +endobj
  161 +
  162 +%% Original object ID: 7 0
  163 +7 0 obj
  164 +<<
  165 + /AP <<
  166 + /N 41 0 R
  167 + >>
  168 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  169 + /DR <<
  170 + /Font 43 0 R
  171 + >>
  172 + /DV <feff>
  173 + /F 4
  174 + /FT /Tx
  175 + /Ff 4096
  176 + /P 44 0 R
  177 + /Rect [
  178 + 129.849
  179 + 651.151
  180 + 197.151
  181 + 702.099
  182 + ]
  183 + /Subtype /Widget
  184 + /T (Text Box 1)
  185 + /Type /Annot
  186 + /V <feff>
  187 +>>
  188 +endobj
  189 +
  190 +%% Original object ID: 8 0
  191 +8 0 obj
  192 +<<
  193 + /AP <<
  194 + /N 45 0 R
  195 + >>
  196 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  197 + /DR <<
  198 + /Font 43 0 R
  199 + >>
  200 + /DV <feff>
  201 + /F 4
  202 + /FT /Tx
  203 + /Ff 4096
  204 + /P 44 0 R
  205 + /Rect [
  206 + 129.849
  207 + 542.751
  208 + 233.301
  209 + 595.749
  210 + ]
  211 + /Subtype /Widget
  212 + /T (Text Box 2)
  213 + /Type /Annot
  214 + /V <feff>
  215 +>>
  216 +endobj
  217 +
  218 +%% Original object ID: 9 0
  219 +9 0 obj
  220 +<<
  221 + /AP <<
  222 + /N 47 0 R
  223 + >>
  224 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  225 + /DR <<
  226 + /Font 43 0 R
  227 + >>
  228 + /DV <feff>
  229 + /F 20
  230 + /FT /Tx
  231 + /Ff 4096
  232 + /P 44 0 R
  233 + /Rect [
  234 + 294.149
  235 + 430.251
  236 + 366.951
  237 + 528.249
  238 + ]
  239 + /Subtype /Widget
  240 + /T (Text Box 3)
  241 + /Type /Annot
  242 + /V <feff>
  243 +>>
  244 +endobj
  245 +
  246 +%% Original object ID: 10 0
  247 +10 0 obj
  248 +<<
  249 + /AP <<
  250 + /N 49 0 R
  251 + >>
  252 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  253 + /DR <<
  254 + /Font 51 0 R
  255 + >>
  256 + /DV <feff>
  257 + /F 4
  258 + /FT /Tx
  259 + /Ff 4096
  260 + /P 52 0 R
  261 + /Rect [
  262 + 129.849
  263 + 651.151
  264 + 197.151
  265 + 702.099
  266 + ]
  267 + /Subtype /Widget
  268 + /T (Text Box 1)
  269 + /Type /Annot
  270 + /V <feff>
  271 +>>
  272 +endobj
  273 +
  274 +%% Original object ID: 11 0
  275 +11 0 obj
  276 +<<
  277 + /AP <<
  278 + /N 53 0 R
  279 + >>
  280 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  281 + /DR <<
  282 + /Font 51 0 R
  283 + >>
  284 + /DV <feff>
  285 + /F 4
  286 + /FT /Tx
  287 + /Ff 4096
  288 + /P 52 0 R
  289 + /Rect [
  290 + 129.849
  291 + 542.751
  292 + 233.301
  293 + 595.749
  294 + ]
  295 + /Subtype /Widget
  296 + /T (Text Box 2)
  297 + /Type /Annot
  298 + /V <feff>
  299 +>>
  300 +endobj
  301 +
  302 +%% Original object ID: 12 0
  303 +12 0 obj
  304 +<<
  305 + /AP <<
  306 + /N 55 0 R
  307 + >>
  308 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  309 + /DR <<
  310 + /Font 51 0 R
  311 + >>
  312 + /DV <feff>
  313 + /F 4
  314 + /FT /Tx
  315 + /Ff 4096
  316 + /P 52 0 R
  317 + /Rect [
  318 + 294.149
  319 + 430.251
  320 + 366.951
  321 + 528.249
  322 + ]
  323 + /Subtype /Widget
  324 + /T (Text Box 3)
  325 + /Type /Annot
  326 + /V <feff>
  327 +>>
  328 +endobj
  329 +
  330 +%% Original object ID: 13 0
  331 +13 0 obj
  332 +<<
  333 + /AP <<
  334 + /N 57 0 R
  335 + >>
  336 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  337 + /DR <<
  338 + /Font 59 0 R
  339 + >>
  340 + /DV <feff>
  341 + /F 4
  342 + /FT /Tx
  343 + /Ff 4096
  344 + /P 60 0 R
  345 + /Rect [
  346 + 129.849
  347 + 651.151
  348 + 197.151
  349 + 702.099
  350 + ]
  351 + /Subtype /Widget
  352 + /T (Text Box 1)
  353 + /Type /Annot
  354 + /V <feff>
  355 +>>
  356 +endobj
  357 +
  358 +%% Original object ID: 14 0
  359 +14 0 obj
  360 +<<
  361 + /AP <<
  362 + /N 61 0 R
  363 + >>
  364 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  365 + /DR <<
  366 + /Font 59 0 R
  367 + >>
  368 + /DV <feff>
  369 + /F 4
  370 + /FT /Tx
  371 + /Ff 4096
  372 + /P 60 0 R
  373 + /Rect [
  374 + 129.849
  375 + 542.751
  376 + 233.301
  377 + 595.749
  378 + ]
  379 + /Subtype /Widget
  380 + /T (Text Box 2)
  381 + /Type /Annot
  382 + /V <feff>
  383 +>>
  384 +endobj
  385 +
  386 +%% Original object ID: 15 0
  387 +15 0 obj
  388 +<<
  389 + /AP <<
  390 + /N 63 0 R
  391 + >>
  392 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  393 + /DR <<
  394 + /Font 59 0 R
  395 + >>
  396 + /DV <feff>
  397 + /F 4
  398 + /FT /Tx
  399 + /Ff 4096
  400 + /P 60 0 R
  401 + /Rect [
  402 + 294.149
  403 + 430.251
  404 + 366.951
  405 + 528.249
  406 + ]
  407 + /Subtype /Widget
  408 + /T (Text Box 3)
  409 + /Type /Annot
  410 + /V <feff>
  411 +>>
  412 +endobj
  413 +
  414 +%% Original object ID: 16 0
  415 +16 0 obj
  416 +<<
  417 + /AP <<
  418 + /N 65 0 R
  419 + >>
  420 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  421 + /DR <<
  422 + /Font 67 0 R
  423 + >>
  424 + /DV <feff>
  425 + /F 4
  426 + /FT /Tx
  427 + /Ff 4096
  428 + /P 68 0 R
  429 + /Rect [
  430 + 129.849
  431 + 651.151
  432 + 197.151
  433 + 702.099
  434 + ]
  435 + /Subtype /Widget
  436 + /T (Text Box 1)
  437 + /Type /Annot
  438 + /V <feff>
  439 +>>
  440 +endobj
  441 +
  442 +%% Original object ID: 17 0
  443 +17 0 obj
  444 +<<
  445 + /AP <<
  446 + /N 69 0 R
  447 + >>
  448 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  449 + /DR <<
  450 + /Font 67 0 R
  451 + >>
  452 + /DV <feff>
  453 + /F 4
  454 + /FT /Tx
  455 + /Ff 4096
  456 + /P 68 0 R
  457 + /Rect [
  458 + 129.849
  459 + 542.751
  460 + 233.301
  461 + 595.749
  462 + ]
  463 + /Subtype /Widget
  464 + /T (Text Box 2)
  465 + /Type /Annot
  466 + /V <feff>
  467 +>>
  468 +endobj
  469 +
  470 +%% Original object ID: 18 0
  471 +18 0 obj
  472 +<<
  473 + /AP <<
  474 + /N 71 0 R
  475 + >>
  476 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  477 + /DR <<
  478 + /Font 67 0 R
  479 + >>
  480 + /DV <feff>
  481 + /F 20
  482 + /FT /Tx
  483 + /Ff 4096
  484 + /P 68 0 R
  485 + /Rect [
  486 + 294.149
  487 + 430.251
  488 + 366.951
  489 + 528.249
  490 + ]
  491 + /Subtype /Widget
  492 + /T (Text Box 3)
  493 + /Type /Annot
  494 + /V <feff>
  495 +>>
  496 +endobj
  497 +
  498 +%% Original object ID: 19 0
  499 +19 0 obj
  500 +<<
  501 + /AP <<
  502 + /N 73 0 R
  503 + >>
  504 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  505 + /DR <<
  506 + /Font 75 0 R
  507 + >>
  508 + /DV <feff>
  509 + /F 20
  510 + /FT /Tx
  511 + /Ff 4096
  512 + /P 76 0 R
  513 + /Rect [
  514 + 129.849
  515 + 651.151
  516 + 197.151
  517 + 702.099
  518 + ]
  519 + /Subtype /Widget
  520 + /T (Text Box 1)
  521 + /Type /Annot
  522 + /V <feff>
  523 +>>
  524 +endobj
  525 +
  526 +%% Original object ID: 20 0
  527 +20 0 obj
  528 +<<
  529 + /AP <<
  530 + /N 77 0 R
  531 + >>
  532 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  533 + /DR <<
  534 + /Font 75 0 R
  535 + >>
  536 + /DV <feff>
  537 + /F 20
  538 + /FT /Tx
  539 + /Ff 4096
  540 + /P 76 0 R
  541 + /Rect [
  542 + 129.849
  543 + 542.751
  544 + 233.301
  545 + 595.749
  546 + ]
  547 + /Subtype /Widget
  548 + /T (Text Box 2)
  549 + /Type /Annot
  550 + /V <feff>
  551 +>>
  552 +endobj
  553 +
  554 +%% Original object ID: 21 0
  555 +21 0 obj
  556 +<<
  557 + /AP <<
  558 + /N 79 0 R
  559 + >>
  560 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  561 + /DR <<
  562 + /Font 75 0 R
  563 + >>
  564 + /DV <feff>
  565 + /F 20
  566 + /FT /Tx
  567 + /Ff 4096
  568 + /P 76 0 R
  569 + /Rect [
  570 + 294.149
  571 + 430.251
  572 + 366.951
  573 + 528.249
  574 + ]
  575 + /Subtype /Widget
  576 + /T (Text Box 3)
  577 + /Type /Annot
  578 + /V <feff>
  579 +>>
  580 +endobj
  581 +
  582 +%% Original object ID: 22 0
  583 +22 0 obj
  584 +<<
  585 + /AP <<
  586 + /N 81 0 R
  587 + >>
  588 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  589 + /DR <<
  590 + /Font 83 0 R
  591 + >>
  592 + /DV <feff>
  593 + /F 4
  594 + /FT /Tx
  595 + /Ff 4096
  596 + /P 84 0 R
  597 + /Rect [
  598 + 129.849
  599 + 651.151
  600 + 197.151
  601 + 702.099
  602 + ]
  603 + /Subtype /Widget
  604 + /T (Text Box 1)
  605 + /Type /Annot
  606 + /V <feff>
  607 +>>
  608 +endobj
  609 +
  610 +%% Original object ID: 23 0
  611 +23 0 obj
  612 +<<
  613 + /AP <<
  614 + /N 85 0 R
  615 + >>
  616 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  617 + /DR <<
  618 + /Font 83 0 R
  619 + >>
  620 + /DV <feff>
  621 + /F 4
  622 + /FT /Tx
  623 + /Ff 4096
  624 + /P 84 0 R
  625 + /Rect [
  626 + 129.849
  627 + 542.751
  628 + 233.301
  629 + 595.749
  630 + ]
  631 + /Subtype /Widget
  632 + /T (Text Box 2)
  633 + /Type /Annot
  634 + /V <feff>
  635 +>>
  636 +endobj
  637 +
  638 +%% Original object ID: 24 0
  639 +24 0 obj
  640 +<<
  641 + /AP <<
  642 + /N 87 0 R
  643 + >>
  644 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  645 + /DR <<
  646 + /Font 83 0 R
  647 + >>
  648 + /DV <feff>
  649 + /F 4
  650 + /FT /Tx
  651 + /Ff 4096
  652 + /P 84 0 R
  653 + /Rect [
  654 + 294.149
  655 + 430.251
  656 + 366.951
  657 + 528.249
  658 + ]
  659 + /Subtype /Widget
  660 + /T (Text Box 3)
  661 + /Type /Annot
  662 + /V <feff>
  663 +>>
  664 +endobj
  665 +
  666 +%% Original object ID: 25 0
  667 +25 0 obj
  668 +<<
  669 + /AP <<
  670 + /N 89 0 R
  671 + >>
  672 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  673 + /DR <<
  674 + /Font 91 0 R
  675 + >>
  676 + /DV <feff>
  677 + /F 4
  678 + /FT /Tx
  679 + /Ff 4096
  680 + /P 92 0 R
  681 + /Rect [
  682 + 129.849
  683 + 651.151
  684 + 197.151
  685 + 702.099
  686 + ]
  687 + /Subtype /Widget
  688 + /T (Text Box 1)
  689 + /Type /Annot
  690 + /V <feff>
  691 +>>
  692 +endobj
  693 +
  694 +%% Original object ID: 26 0
  695 +26 0 obj
  696 +<<
  697 + /AP <<
  698 + /N 93 0 R
  699 + >>
  700 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  701 + /DR <<
  702 + /Font 91 0 R
  703 + >>
  704 + /DV <feff>
  705 + /F 4
  706 + /FT /Tx
  707 + /Ff 4096
  708 + /P 92 0 R
  709 + /Rect [
  710 + 129.849
  711 + 542.751
  712 + 233.301
  713 + 595.749
  714 + ]
  715 + /Subtype /Widget
  716 + /T (Text Box 2)
  717 + /Type /Annot
  718 + /V <feff>
  719 +>>
  720 +endobj
  721 +
  722 +%% Original object ID: 27 0
  723 +27 0 obj
  724 +<<
  725 + /AP <<
  726 + /N 95 0 R
  727 + >>
  728 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  729 + /DR <<
  730 + /Font 91 0 R
  731 + >>
  732 + /DV <feff>
  733 + /F 20
  734 + /FT /Tx
  735 + /Ff 4096
  736 + /P 92 0 R
  737 + /Rect [
  738 + 294.149
  739 + 430.251
  740 + 366.951
  741 + 528.249
  742 + ]
  743 + /Subtype /Widget
  744 + /T (Text Box 3)
  745 + /Type /Annot
  746 + /V <feff>
  747 +>>
  748 +endobj
  749 +
  750 +%% Original object ID: 28 0
  751 +28 0 obj
  752 +<<
  753 + /AP <<
  754 + /N 97 0 R
  755 + >>
  756 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  757 + /DR <<
  758 + /Font 99 0 R
  759 + >>
  760 + /DV <feff>
  761 + /F 4
  762 + /FT /Tx
  763 + /Ff 4096
  764 + /P 100 0 R
  765 + /Rect [
  766 + 129.849
  767 + 651.151
  768 + 197.151
  769 + 702.099
  770 + ]
  771 + /Subtype /Widget
  772 + /T (Text Box 1)
  773 + /Type /Annot
  774 + /V <feff>
  775 +>>
  776 +endobj
  777 +
  778 +%% Original object ID: 29 0
  779 +29 0 obj
  780 +<<
  781 + /AP <<
  782 + /N 101 0 R
  783 + >>
  784 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  785 + /DR <<
  786 + /Font 99 0 R
  787 + >>
  788 + /DV <feff>
  789 + /F 4
  790 + /FT /Tx
  791 + /Ff 4096
  792 + /P 100 0 R
  793 + /Rect [
  794 + 129.849
  795 + 542.751
  796 + 233.301
  797 + 595.749
  798 + ]
  799 + /Subtype /Widget
  800 + /T (Text Box 2)
  801 + /Type /Annot
  802 + /V <feff>
  803 +>>
  804 +endobj
  805 +
  806 +%% Original object ID: 30 0
  807 +30 0 obj
  808 +<<
  809 + /AP <<
  810 + /N 103 0 R
  811 + >>
  812 + /DA (0.18039 0.20392 0.21176 rg /F1 10 Tf)
  813 + /DR <<
  814 + /Font 99 0 R
  815 + >>
  816 + /DV <feff>
  817 + /F 4
  818 + /FT /Tx
  819 + /Ff 4096
  820 + /P 100 0 R
  821 + /Rect [
  822 + 294.149
  823 + 430.251
  824 + 366.951
  825 + 528.249
  826 + ]
  827 + /Subtype /Widget
  828 + /T (Text Box 3)
  829 + /Type /Annot
  830 + /V <feff>
  831 +>>
  832 +endobj
  833 +
  834 +%% Page 1
  835 +%% Original object ID: 31 0
  836 +31 0 obj
  837 +<<
  838 + /Annots [
  839 + 4 0 R
  840 + 5 0 R
  841 + 6 0 R
  842 + ]
  843 + /Contents 105 0 R
  844 + /Group <<
  845 + /CS /DeviceRGB
  846 + /I true
  847 + /S /Transparency
  848 + >>
  849 + /MediaBox [
  850 + 0
  851 + 0
  852 + 612
  853 + 792
  854 + ]
  855 + /Parent 32 0 R
  856 + /Resources <<
  857 + /Font 34 0 R
  858 + /ProcSet [
  859 + /PDF
  860 + /Text
  861 + ]
  862 + >>
  863 + /StructParents 0
  864 + /Type /Page
  865 +>>
  866 +endobj
  867 +
  868 +%% Original object ID: 32 0
  869 +32 0 obj
  870 +<<
  871 + /Count 9
  872 + /Kids [
  873 + 31 0 R
  874 + 44 0 R
  875 + 52 0 R
  876 + 60 0 R
  877 + 68 0 R
  878 + 76 0 R
  879 + 84 0 R
  880 + 92 0 R
  881 + 100 0 R
  882 + ]
  883 + /Type /Pages
  884 +>>
  885 +endobj
  886 +
  887 +%% Original object ID: 33 0
  888 +33 0 obj
  889 +<<
  890 + /K [
  891 + 107 0 R
  892 + ]
  893 + /ParentTree 108 0 R
  894 + /RoleMap <<
  895 + /Document /Document
  896 + /Standard /P
  897 + >>
  898 + /Type /StructTreeRoot
  899 +>>
  900 +endobj
  901 +
  902 +%% Original object ID: 34 0
  903 +34 0 obj
  904 +<<
  905 +>>
  906 +endobj
  907 +
  908 +%% Original object ID: 35 0
  909 +35 0 obj
  910 +<<
  911 + /BBox [
  912 + 0
  913 + 0
  914 + 67.3
  915 + 50.95
  916 + ]
  917 + /Resources 3 0 R
  918 + /Subtype /Form
  919 + /Type /XObject
  920 + /Length 36 0 R
  921 +>>
  922 +stream
  923 +q
  924 +60 r
  925 +1 0 0 RG
  926 +5 w
  927 +0 0 67.3 50.95 re s
  928 +0 1 0 RG
  929 +5 5 15 15 re s
  930 +Q
  931 +endstream
  932 +endobj
  933 +
  934 +36 0 obj
  935 +66
  936 +endobj
  937 +
  938 +%% Original object ID: 37 0
  939 +37 0 obj
  940 +<<
  941 + /BBox [
  942 + 0
  943 + 0
  944 + 103.45
  945 + 53
  946 + ]
  947 + /Resources 3 0 R
  948 + /Subtype /Form
  949 + /Type /XObject
  950 + /Length 38 0 R
  951 +>>
  952 +stream
  953 +q
  954 +0 1 0 RG
  955 +5 w
  956 +0 0 103.45 53 re s
  957 +0 0 1 RG
  958 +5 5 15 15 re s
  959 +Q
  960 +endstream
  961 +endobj
  962 +
  963 +38 0 obj
  964 +60
  965 +endobj
  966 +
  967 +%% Original object ID: 39 0
  968 +39 0 obj
  969 +<<
  970 + /BBox [
  971 + 0
  972 + 0
  973 + 72.8
  974 + 98
  975 + ]
  976 + /Resources 3 0 R
  977 + /Subtype /Form
  978 + /Type /XObject
  979 + /Length 40 0 R
  980 +>>
  981 +stream
  982 +q
  983 +0 0 1 RG
  984 +5 w
  985 +0 0 72.8 98 re s
  986 +1 0 0 RG
  987 +5 5 15 15 re s
  988 +Q
  989 +endstream
  990 +endobj
  991 +
  992 +40 0 obj
  993 +58
  994 +endobj
  995 +
  996 +%% Original object ID: 41 0
  997 +41 0 obj
  998 +<<
  999 + /BBox [
  1000 + 0
  1001 + 0
  1002 + 67.3
  1003 + 50.95
  1004 + ]
  1005 + /Resources 109 0 R
  1006 + /Subtype /Form
  1007 + /Type /XObject
  1008 + /Length 42 0 R
  1009 +>>
  1010 +stream
  1011 +q
  1012 +1 0 0 RG
  1013 +5 w
  1014 +0 0 67.3 50.95 re s
  1015 +0 1 0 RG
  1016 +5 5 15 15 re s
  1017 +Q
  1018 +endstream
  1019 +endobj
  1020 +
  1021 +42 0 obj
  1022 +61
  1023 +endobj
  1024 +
  1025 +%% Original object ID: 43 0
  1026 +43 0 obj
  1027 +<<
  1028 +>>
  1029 +endobj
  1030 +
  1031 +%% Page 2
  1032 +%% Original object ID: 44 0
  1033 +44 0 obj
  1034 +<<
  1035 + /Annots [
  1036 + 7 0 R
  1037 + 8 0 R
  1038 + 9 0 R
  1039 + ]
  1040 + /Contents 110 0 R
  1041 + /Group <<
  1042 + /CS /DeviceRGB
  1043 + /I true
  1044 + /S /Transparency
  1045 + >>
  1046 + /MediaBox [
  1047 + 0
  1048 + 0
  1049 + 612
  1050 + 792
  1051 + ]
  1052 + /Parent 32 0 R
  1053 + /Resources <<
  1054 + /Font 43 0 R
  1055 + /ProcSet [
  1056 + /PDF
  1057 + /Text
  1058 + ]
  1059 + >>
  1060 + /Rotate 90
  1061 + /StructParents 0
  1062 + /Type /Page
  1063 +>>
  1064 +endobj
  1065 +
  1066 +%% Original object ID: 45 0
  1067 +45 0 obj
  1068 +<<
  1069 + /BBox [
  1070 + 0
  1071 + 0
  1072 + 103.45
  1073 + 53
  1074 + ]
  1075 + /Resources 109 0 R
  1076 + /Subtype /Form
  1077 + /Type /XObject
  1078 + /Length 46 0 R
  1079 +>>
  1080 +stream
  1081 +q
  1082 +0 1 0 RG
  1083 +5 w
  1084 +0 0 103.45 53 re s
  1085 +0 0 1 RG
  1086 +5 5 15 15 re s
  1087 +Q
  1088 +endstream
  1089 +endobj
  1090 +
  1091 +46 0 obj
  1092 +60
  1093 +endobj
  1094 +
  1095 +%% Original object ID: 47 0
  1096 +47 0 obj
  1097 +<<
  1098 + /BBox [
  1099 + 0
  1100 + 0
  1101 + 72.8
  1102 + 98
  1103 + ]
  1104 + /Resources 109 0 R
  1105 + /Subtype /Form
  1106 + /Type /XObject
  1107 + /Length 48 0 R
  1108 +>>
  1109 +stream
  1110 +q
  1111 +0 0 1 RG
  1112 +5 w
  1113 +0 0 72.8 98 re s
  1114 +1 0 0 RG
  1115 +5 5 15 15 re s
  1116 +Q
  1117 +endstream
  1118 +endobj
  1119 +
  1120 +48 0 obj
  1121 +58
  1122 +endobj
  1123 +
  1124 +%% Original object ID: 49 0
  1125 +49 0 obj
  1126 +<<
  1127 + /BBox [
  1128 + 0
  1129 + 0
  1130 + 67.3
  1131 + 50.95
  1132 + ]
  1133 + /Matrix [
  1134 + .707
  1135 + .5
  1136 + -.5
  1137 + .707
  1138 + 0
  1139 + 0
  1140 + ]
  1141 + /Resources 112 0 R
  1142 + /Subtype /Form
  1143 + /Type /XObject
  1144 + /Length 50 0 R
  1145 +>>
  1146 +stream
  1147 +q
  1148 +1 0 0 RG
  1149 +5 w
  1150 +0 0 67.3 50.95 re s
  1151 +0 1 0 RG
  1152 +5 5 15 15 re s
  1153 +Q
  1154 +endstream
  1155 +endobj
  1156 +
  1157 +50 0 obj
  1158 +61
  1159 +endobj
  1160 +
  1161 +%% Original object ID: 51 0
  1162 +51 0 obj
  1163 +<<
  1164 +>>
  1165 +endobj
  1166 +
  1167 +%% Page 3
  1168 +%% Original object ID: 52 0
  1169 +52 0 obj
  1170 +<<
  1171 + /Annots [
  1172 + 10 0 R
  1173 + 11 0 R
  1174 + 12 0 R
  1175 + ]
  1176 + /Contents 113 0 R
  1177 + /Group <<
  1178 + /CS /DeviceRGB
  1179 + /I true
  1180 + /S /Transparency
  1181 + >>
  1182 + /MediaBox [
  1183 + 0
  1184 + 0
  1185 + 612
  1186 + 792
  1187 + ]
  1188 + /Parent 32 0 R
  1189 + /Resources <<
  1190 + /Font 51 0 R
  1191 + /ProcSet [
  1192 + /PDF
  1193 + /Text
  1194 + ]
  1195 + >>
  1196 + /StructParents 0
  1197 + /Type /Page
  1198 +>>
  1199 +endobj
  1200 +
  1201 +%% Original object ID: 53 0
  1202 +53 0 obj
  1203 +<<
  1204 + /BBox [
  1205 + 0
  1206 + 0
  1207 + 103.45
  1208 + 53
  1209 + ]
  1210 + /Matrix [
  1211 + 1
  1212 + .557
  1213 + .257
  1214 + 1
  1215 + 0
  1216 + 0
  1217 + ]
  1218 + /Resources 112 0 R
  1219 + /Subtype /Form
  1220 + /Type /XObject
  1221 + /Length 54 0 R
  1222 +>>
  1223 +stream
  1224 +q
  1225 +0 1 0 RG
  1226 +5 w
  1227 +0 0 103.45 53 re s
  1228 +0 0 1 RG
  1229 +5 5 15 15 re s
  1230 +Q
  1231 +endstream
  1232 +endobj
  1233 +
  1234 +54 0 obj
  1235 +60
  1236 +endobj
  1237 +
  1238 +%% Original object ID: 55 0
  1239 +55 0 obj
  1240 +<<
  1241 + /BBox [
  1242 + 0
  1243 + 0
  1244 + 72.8
  1245 + 98
  1246 + ]
  1247 + /Resources 112 0 R
  1248 + /Subtype /Form
  1249 + /Type /XObject
  1250 + /Length 56 0 R
  1251 +>>
  1252 +stream
  1253 +q
  1254 +0 0 1 RG
  1255 +5 w
  1256 +0 0 72.8 98 re s
  1257 +1 0 0 RG
  1258 +5 5 15 15 re s
  1259 +Q
  1260 +endstream
  1261 +endobj
  1262 +
  1263 +56 0 obj
  1264 +58
  1265 +endobj
  1266 +
  1267 +%% Original object ID: 57 0
  1268 +57 0 obj
  1269 +<<
  1270 + /BBox [
  1271 + 0
  1272 + 0
  1273 + 67.3
  1274 + 50.95
  1275 + ]
  1276 + /Matrix [
  1277 + .707
  1278 + .5
  1279 + -.5
  1280 + .707
  1281 + 0
  1282 + 0
  1283 + ]
  1284 + /Resources 115 0 R
  1285 + /Subtype /Form
  1286 + /Type /XObject
  1287 + /Length 58 0 R
  1288 +>>
  1289 +stream
  1290 +q
  1291 +60 r
  1292 +1 0 0 RG
  1293 +5 w
  1294 +0 0 67.3 50.95 re s
  1295 +0 1 0 RG
  1296 +5 5 15 15 re s
  1297 +Q
  1298 +endstream
  1299 +endobj
  1300 +
  1301 +58 0 obj
  1302 +66
  1303 +endobj
  1304 +
  1305 +%% Original object ID: 59 0
  1306 +59 0 obj
  1307 +<<
  1308 +>>
  1309 +endobj
  1310 +
  1311 +%% Page 4
  1312 +%% Original object ID: 60 0
  1313 +60 0 obj
  1314 +<<
  1315 + /Annots [
  1316 + 13 0 R
  1317 + 14 0 R
  1318 + 15 0 R
  1319 + ]
  1320 + /Contents 116 0 R
  1321 + /Group <<
  1322 + /CS /DeviceRGB
  1323 + /I true
  1324 + /S /Transparency
  1325 + >>
  1326 + /MediaBox [
  1327 + 0
  1328 + 0
  1329 + 612
  1330 + 792
  1331 + ]
  1332 + /Parent 32 0 R
  1333 + /Resources <<
  1334 + /Font 59 0 R
  1335 + /ProcSet [
  1336 + /PDF
  1337 + /Text
  1338 + ]
  1339 + >>
  1340 + /Rotate 90
  1341 + /StructParents 0
  1342 + /Type /Page
  1343 +>>
  1344 +endobj
  1345 +
  1346 +%% Original object ID: 61 0
  1347 +61 0 obj
  1348 +<<
  1349 + /BBox [
  1350 + 0
  1351 + 0
  1352 + 103.45
  1353 + 53
  1354 + ]
  1355 + /Matrix [
  1356 + 1
  1357 + .557
  1358 + .257
  1359 + 1
  1360 + 0
  1361 + 0
  1362 + ]
  1363 + /Resources 115 0 R
  1364 + /Subtype /Form
  1365 + /Type /XObject
  1366 + /Length 62 0 R
  1367 +>>
  1368 +stream
  1369 +q
  1370 +0 1 0 RG
  1371 +5 w
  1372 +0 0 103.45 53 re s
  1373 +0 0 1 RG
  1374 +5 5 15 15 re s
  1375 +Q
  1376 +endstream
  1377 +endobj
  1378 +
  1379 +62 0 obj
  1380 +60
  1381 +endobj
  1382 +
  1383 +%% Original object ID: 63 0
  1384 +63 0 obj
  1385 +<<
  1386 + /BBox [
  1387 + 0
  1388 + 0
  1389 + 72.8
  1390 + 98
  1391 + ]
  1392 + /Resources 115 0 R
  1393 + /Subtype /Form
  1394 + /Type /XObject
  1395 + /Length 64 0 R
  1396 +>>
  1397 +stream
  1398 +q
  1399 +0 0 1 RG
  1400 +5 w
  1401 +0 0 72.8 98 re s
  1402 +1 0 0 RG
  1403 +5 5 15 15 re s
  1404 +Q
  1405 +endstream
  1406 +endobj
  1407 +
  1408 +64 0 obj
  1409 +58
  1410 +endobj
  1411 +
  1412 +%% Original object ID: 65 0
  1413 +65 0 obj
  1414 +<<
  1415 + /BBox [
  1416 + 0
  1417 + 0
  1418 + 67.3
  1419 + 50.95
  1420 + ]
  1421 + /Resources 118 0 R
  1422 + /Subtype /Form
  1423 + /Type /XObject
  1424 + /Length 66 0 R
  1425 +>>
  1426 +stream
  1427 +q
  1428 +1 0 0 RG
  1429 +5 w
  1430 +0 0 67.3 50.95 re s
  1431 +0 1 0 RG
  1432 +5 5 15 15 re s
  1433 +Q
  1434 +endstream
  1435 +endobj
  1436 +
  1437 +66 0 obj
  1438 +61
  1439 +endobj
  1440 +
  1441 +%% Original object ID: 67 0
  1442 +67 0 obj
  1443 +<<
  1444 +>>
  1445 +endobj
  1446 +
  1447 +%% Page 5
  1448 +%% Original object ID: 68 0
  1449 +68 0 obj
  1450 +<<
  1451 + /Annots [
  1452 + 16 0 R
  1453 + 17 0 R
  1454 + 18 0 R
  1455 + ]
  1456 + /Contents 119 0 R
  1457 + /Group <<
  1458 + /CS /DeviceRGB
  1459 + /I true
  1460 + /S /Transparency
  1461 + >>
  1462 + /MediaBox [
  1463 + 0
  1464 + 0
  1465 + 612
  1466 + 792
  1467 + ]
  1468 + /Parent 32 0 R
  1469 + /Resources <<
  1470 + /Font 67 0 R
  1471 + /ProcSet [
  1472 + /PDF
  1473 + /Text
  1474 + ]
  1475 + >>
  1476 + /Rotate 180
  1477 + /StructParents 0
  1478 + /Type /Page
  1479 +>>
  1480 +endobj
  1481 +
  1482 +%% Original object ID: 69 0
  1483 +69 0 obj
  1484 +<<
  1485 + /BBox [
  1486 + 0
  1487 + 0
  1488 + 103.45
  1489 + 53
  1490 + ]
  1491 + /Resources 118 0 R
  1492 + /Subtype /Form
  1493 + /Type /XObject
  1494 + /Length 70 0 R
  1495 +>>
  1496 +stream
  1497 +q
  1498 +0 1 0 RG
  1499 +5 w
  1500 +0 0 103.45 53 re s
  1501 +0 0 1 RG
  1502 +5 5 15 15 re s
  1503 +Q
  1504 +endstream
  1505 +endobj
  1506 +
  1507 +70 0 obj
  1508 +60
  1509 +endobj
  1510 +
  1511 +%% Original object ID: 71 0
  1512 +71 0 obj
  1513 +<<
  1514 + /BBox [
  1515 + 0
  1516 + 0
  1517 + 72.8
  1518 + 98
  1519 + ]
  1520 + /Resources 118 0 R
  1521 + /Subtype /Form
  1522 + /Type /XObject
  1523 + /Length 72 0 R
  1524 +>>
  1525 +stream
  1526 +q
  1527 +0 0 1 RG
  1528 +5 w
  1529 +0 0 72.8 98 re s
  1530 +1 0 0 RG
  1531 +5 5 15 15 re s
  1532 +Q
  1533 +endstream
  1534 +endobj
  1535 +
  1536 +72 0 obj
  1537 +58
  1538 +endobj
  1539 +
  1540 +%% Original object ID: 73 0
  1541 +73 0 obj
  1542 +<<
  1543 + /BBox [
  1544 + 0
  1545 + 0
  1546 + 67.3
  1547 + 50.95
  1548 + ]
  1549 + /Matrix [
  1550 + .707
  1551 + .5
  1552 + -.5
  1553 + .707
  1554 + 0
  1555 + 0
  1556 + ]
  1557 + /Resources 121 0 R
  1558 + /Subtype /Form
  1559 + /Type /XObject
  1560 + /Length 74 0 R
  1561 +>>
  1562 +stream
  1563 +q
  1564 +1 0 0 RG
  1565 +5 w
  1566 +0 0 67.3 50.95 re s
  1567 +0 1 0 RG
  1568 +5 5 15 15 re s
  1569 +Q
  1570 +endstream
  1571 +endobj
  1572 +
  1573 +74 0 obj
  1574 +61
  1575 +endobj
  1576 +
  1577 +%% Original object ID: 75 0
  1578 +75 0 obj
  1579 +<<
  1580 +>>
  1581 +endobj
  1582 +
  1583 +%% Page 6
  1584 +%% Original object ID: 76 0
  1585 +76 0 obj
  1586 +<<
  1587 + /Annots [
  1588 + 19 0 R
  1589 + 20 0 R
  1590 + 21 0 R
  1591 + ]
  1592 + /Contents 122 0 R
  1593 + /Group <<
  1594 + /CS /DeviceRGB
  1595 + /I true
  1596 + /S /Transparency
  1597 + >>
  1598 + /MediaBox [
  1599 + 0
  1600 + 0
  1601 + 612
  1602 + 792
  1603 + ]
  1604 + /Parent 32 0 R
  1605 + /Resources <<
  1606 + /Font 75 0 R
  1607 + /ProcSet [
  1608 + /PDF
  1609 + /Text
  1610 + ]
  1611 + >>
  1612 + /Rotate 90
  1613 + /StructParents 0
  1614 + /Type /Page
  1615 +>>
  1616 +endobj
  1617 +
  1618 +%% Original object ID: 77 0
  1619 +77 0 obj
  1620 +<<
  1621 + /BBox [
  1622 + 0
  1623 + 0
  1624 + 103.45
  1625 + 53
  1626 + ]
  1627 + /Matrix [
  1628 + 2
  1629 + 1.114
  1630 + .513
  1631 + 2
  1632 + 100
  1633 + 300
  1634 + ]
  1635 + /Resources 121 0 R
  1636 + /Subtype /Form
  1637 + /Type /XObject
  1638 + /Length 78 0 R
  1639 +>>
  1640 +stream
  1641 +q
  1642 +0 1 0 RG
  1643 +5 w
  1644 +0 0 103.45 53 re s
  1645 +0 0 1 RG
  1646 +5 5 15 15 re s
  1647 +Q
  1648 +endstream
  1649 +endobj
  1650 +
  1651 +78 0 obj
  1652 +60
  1653 +endobj
  1654 +
  1655 +%% Original object ID: 79 0
  1656 +79 0 obj
  1657 +<<
  1658 + /BBox [
  1659 + 0
  1660 + 0
  1661 + 72.8
  1662 + 98
  1663 + ]
  1664 + /Resources 121 0 R
  1665 + /Subtype /Form
  1666 + /Type /XObject
  1667 + /Length 80 0 R
  1668 +>>
  1669 +stream
  1670 +q
  1671 +0 0 1 RG
  1672 +5 w
  1673 +0 0 72.8 98 re s
  1674 +1 0 0 RG
  1675 +5 5 15 15 re s
  1676 +Q
  1677 +endstream
  1678 +endobj
  1679 +
  1680 +80 0 obj
  1681 +58
  1682 +endobj
  1683 +
  1684 +%% Original object ID: 81 0
  1685 +81 0 obj
  1686 +<<
  1687 + /BBox [
  1688 + 0
  1689 + 0
  1690 + 67.3
  1691 + 50.95
  1692 + ]
  1693 + /Resources 124 0 R
  1694 + /Subtype /Form
  1695 + /Type /XObject
  1696 + /Length 82 0 R
  1697 +>>
  1698 +stream
  1699 +q
  1700 +60 r
  1701 +1 0 0 RG
  1702 +5 w
  1703 +0 0 67.3 50.95 re s
  1704 +0 1 0 RG
  1705 +5 5 15 15 re s
  1706 +Q
  1707 +endstream
  1708 +endobj
  1709 +
  1710 +82 0 obj
  1711 +66
  1712 +endobj
  1713 +
  1714 +%% Original object ID: 83 0
  1715 +83 0 obj
  1716 +<<
  1717 +>>
  1718 +endobj
  1719 +
  1720 +%% Page 7
  1721 +%% Original object ID: 84 0
  1722 +84 0 obj
  1723 +<<
  1724 + /Annots [
  1725 + 22 0 R
  1726 + 23 0 R
  1727 + 24 0 R
  1728 + ]
  1729 + /Contents 125 0 R
  1730 + /Group <<
  1731 + /CS /DeviceRGB
  1732 + /I true
  1733 + /S /Transparency
  1734 + >>
  1735 + /MediaBox [
  1736 + 0
  1737 + 0
  1738 + 612
  1739 + 792
  1740 + ]
  1741 + /Parent 32 0 R
  1742 + /Resources <<
  1743 + /Font 83 0 R
  1744 + /ProcSet [
  1745 + /PDF
  1746 + /Text
  1747 + ]
  1748 + >>
  1749 + /StructParents 0
  1750 + /Type /Page
  1751 +>>
  1752 +endobj
  1753 +
  1754 +%% Original object ID: 85 0
  1755 +85 0 obj
  1756 +<<
  1757 + /BBox [
  1758 + 0
  1759 + 0
  1760 + 103.45
  1761 + 53
  1762 + ]
  1763 + /Resources 124 0 R
  1764 + /Subtype /Form
  1765 + /Type /XObject
  1766 + /Length 86 0 R
  1767 +>>
  1768 +stream
  1769 +q
  1770 +0 1 0 RG
  1771 +5 w
  1772 +0 0 103.45 53 re s
  1773 +0 0 1 RG
  1774 +5 5 15 15 re s
  1775 +Q
  1776 +endstream
  1777 +endobj
  1778 +
  1779 +86 0 obj
  1780 +60
  1781 +endobj
  1782 +
  1783 +%% Original object ID: 87 0
  1784 +87 0 obj
  1785 +<<
  1786 + /BBox [
  1787 + 0
  1788 + 0
  1789 + 72.8
  1790 + 98
  1791 + ]
  1792 + /Resources 124 0 R
  1793 + /Subtype /Form
  1794 + /Type /XObject
  1795 + /Length 88 0 R
  1796 +>>
  1797 +stream
  1798 +q
  1799 +0 0 1 RG
  1800 +5 w
  1801 +0 0 72.8 98 re s
  1802 +1 0 0 RG
  1803 +5 5 15 15 re s
  1804 +Q
  1805 +endstream
  1806 +endobj
  1807 +
  1808 +88 0 obj
  1809 +58
  1810 +endobj
  1811 +
  1812 +%% Original object ID: 89 0
  1813 +89 0 obj
  1814 +<<
  1815 + /BBox [
  1816 + 0
  1817 + 0
  1818 + 67.3
  1819 + 50.95
  1820 + ]
  1821 + /Resources 127 0 R
  1822 + /Subtype /Form
  1823 + /Type /XObject
  1824 + /Length 90 0 R
  1825 +>>
  1826 +stream
  1827 +q
  1828 +1 0 0 RG
  1829 +5 w
  1830 +0 0 67.3 50.95 re s
  1831 +0 1 0 RG
  1832 +5 5 15 15 re s
  1833 +Q
  1834 +endstream
  1835 +endobj
  1836 +
  1837 +90 0 obj
  1838 +61
  1839 +endobj
  1840 +
  1841 +%% Original object ID: 91 0
  1842 +91 0 obj
  1843 +<<
  1844 +>>
  1845 +endobj
  1846 +
  1847 +%% Page 8
  1848 +%% Original object ID: 92 0
  1849 +92 0 obj
  1850 +<<
  1851 + /Annots [
  1852 + 25 0 R
  1853 + 26 0 R
  1854 + 27 0 R
  1855 + ]
  1856 + /Contents 128 0 R
  1857 + /Group <<
  1858 + /CS /DeviceRGB
  1859 + /I true
  1860 + /S /Transparency
  1861 + >>
  1862 + /MediaBox [
  1863 + 0
  1864 + 0
  1865 + 612
  1866 + 792
  1867 + ]
  1868 + /Parent 32 0 R
  1869 + /Resources <<
  1870 + /Font 91 0 R
  1871 + /ProcSet [
  1872 + /PDF
  1873 + /Text
  1874 + ]
  1875 + >>
  1876 + /Rotate 270
  1877 + /StructParents 0
  1878 + /Type /Page
  1879 +>>
  1880 +endobj
  1881 +
  1882 +%% Original object ID: 93 0
  1883 +93 0 obj
  1884 +<<
  1885 + /BBox [
  1886 + 0
  1887 + 0
  1888 + 103.45
  1889 + 53
  1890 + ]
  1891 + /Resources 127 0 R
  1892 + /Subtype /Form
  1893 + /Type /XObject
  1894 + /Length 94 0 R
  1895 +>>
  1896 +stream
  1897 +q
  1898 +0 1 0 RG
  1899 +5 w
  1900 +0 0 103.45 53 re s
  1901 +0 0 1 RG
  1902 +5 5 15 15 re s
  1903 +Q
  1904 +endstream
  1905 +endobj
  1906 +
  1907 +94 0 obj
  1908 +60
  1909 +endobj
  1910 +
  1911 +%% Original object ID: 95 0
  1912 +95 0 obj
  1913 +<<
  1914 + /BBox [
  1915 + 0
  1916 + 0
  1917 + 72.8
  1918 + 98
  1919 + ]
  1920 + /Resources 127 0 R
  1921 + /Subtype /Form
  1922 + /Type /XObject
  1923 + /Length 96 0 R
  1924 +>>
  1925 +stream
  1926 +q
  1927 +0 0 1 RG
  1928 +5 w
  1929 +0 0 72.8 98 re s
  1930 +1 0 0 RG
  1931 +5 5 15 15 re s
  1932 +Q
  1933 +endstream
  1934 +endobj
  1935 +
  1936 +96 0 obj
  1937 +58
  1938 +endobj
  1939 +
  1940 +%% Original object ID: 97 0
  1941 +97 0 obj
  1942 +<<
  1943 + /BBox [
  1944 + 0
  1945 + 0
  1946 + 67.3
  1947 + 50.95
  1948 + ]
  1949 + /Resources 130 0 R
  1950 + /Subtype /Form
  1951 + /Type /XObject
  1952 + /Length 98 0 R
  1953 +>>
  1954 +stream
  1955 +q
  1956 +1 0 0 RG
  1957 +5 w
  1958 +0 0 67.3 50.95 re s
  1959 +0 1 0 RG
  1960 +5 5 15 15 re s
  1961 +Q
  1962 +endstream
  1963 +endobj
  1964 +
  1965 +98 0 obj
  1966 +61
  1967 +endobj
  1968 +
  1969 +%% Original object ID: 99 0
  1970 +99 0 obj
  1971 +<<
  1972 +>>
  1973 +endobj
  1974 +
  1975 +%% Page 9
  1976 +%% Original object ID: 100 0
  1977 +100 0 obj
  1978 +<<
  1979 + /Annots [
  1980 + 28 0 R
  1981 + 29 0 R
  1982 + 30 0 R
  1983 + ]
  1984 + /Contents 131 0 R
  1985 + /Group <<
  1986 + /CS /DeviceRGB
  1987 + /I true
  1988 + /S /Transparency
  1989 + >>
  1990 + /MediaBox [
  1991 + 0
  1992 + 0
  1993 + 612
  1994 + 792
  1995 + ]
  1996 + /Parent 32 0 R
  1997 + /Resources <<
  1998 + /Font 99 0 R
  1999 + /ProcSet [
  2000 + /PDF
  2001 + /Text
  2002 + ]
  2003 + >>
  2004 + /StructParents 0
  2005 + /Type /Page
  2006 +>>
  2007 +endobj
  2008 +
  2009 +%% Original object ID: 101 0
  2010 +101 0 obj
  2011 +<<
  2012 + /BBox [
  2013 + 0
  2014 + 0
  2015 + 103.45
  2016 + 53
  2017 + ]
  2018 + /Resources 130 0 R
  2019 + /Subtype /Form
  2020 + /Type /XObject
  2021 + /Length 102 0 R
  2022 +>>
  2023 +stream
  2024 +q
  2025 +0 1 0 RG
  2026 +5 w
  2027 +0 0 103.45 53 re s
  2028 +0 0 1 RG
  2029 +5 5 15 15 re s
  2030 +Q
  2031 +endstream
  2032 +endobj
  2033 +
  2034 +102 0 obj
  2035 +60
  2036 +endobj
  2037 +
  2038 +%% Original object ID: 103 0
  2039 +103 0 obj
  2040 +<<
  2041 + /BBox [
  2042 + 0
  2043 + 0
  2044 + 72.8
  2045 + 98
  2046 + ]
  2047 + /Resources 130 0 R
  2048 + /Subtype /Form
  2049 + /Type /XObject
  2050 + /Length 104 0 R
  2051 +>>
  2052 +stream
  2053 +q
  2054 +0 0 1 RG
  2055 +5 w
  2056 +0 0 72.8 98 re s
  2057 +1 0 0 RG
  2058 +5 5 15 15 re s
  2059 +Q
  2060 +endstream
  2061 +endobj
  2062 +
  2063 +104 0 obj
  2064 +58
  2065 +endobj
  2066 +
  2067 +%% Contents for page 1
  2068 +%% Original object ID: 105 0
  2069 +105 0 obj
  2070 +<<
  2071 + /Length 106 0 R
  2072 +>>
  2073 +stream
  2074 +0.1 w
  2075 +/Artifact BMC
  2076 +q 0 0.028 611.971 791.971 re
  2077 +W* n
  2078 +EMC
  2079 +/Form<</MCID 0>>BDC
  2080 +0 0 0 RG
  2081 +1 1 1 rg
  2082 +127.35 648.65 72.3 55.95 re B*
  2083 +EMC
  2084 +/Form<</MCID 1>>BDC
  2085 +127.35 540.25 108.45 58 re B*
  2086 +EMC
  2087 +/Form<</MCID 2>>BDC
  2088 +291.65 427.75 77.8 103 re B*
  2089 +EMC
  2090 +Q
  2091 +endstream
  2092 +endobj
  2093 +
  2094 +%QDF: ignore_newline
  2095 +106 0 obj
  2096 +240
  2097 +endobj
  2098 +
  2099 +%% Original object ID: 107 0
  2100 +107 0 obj
  2101 +<<
  2102 + /K [
  2103 + 133 0 R
  2104 + 134 0 R
  2105 + 135 0 R
  2106 + 136 0 R
  2107 + ]
  2108 + /P 33 0 R
  2109 + /Pg 31 0 R
  2110 + /S /Document
  2111 + /Type /StructElem
  2112 +>>
  2113 +endobj
  2114 +
  2115 +%% Original object ID: 108 0
  2116 +108 0 obj
  2117 +<<
  2118 + /Nums [
  2119 + 0
  2120 + [
  2121 + 134 0 R
  2122 + 135 0 R
  2123 + 136 0 R
  2124 + ]
  2125 + ]
  2126 +>>
  2127 +endobj
  2128 +
  2129 +%% Original object ID: 109 0
  2130 +109 0 obj
  2131 +<<
  2132 + /Font 43 0 R
  2133 + /ProcSet [
  2134 + /PDF
  2135 + /Text
  2136 + ]
  2137 +>>
  2138 +endobj
  2139 +
  2140 +%% Contents for page 2
  2141 +%% Original object ID: 110 0
  2142 +110 0 obj
  2143 +<<
  2144 + /Length 111 0 R
  2145 +>>
  2146 +stream
  2147 +0.1 w
  2148 +/Artifact BMC
  2149 +q 0 0.028 611.971 791.971 re
  2150 +W* n
  2151 +EMC
  2152 +/Form<</MCID 0>>BDC
  2153 +0 0 0 RG
  2154 +1 1 1 rg
  2155 +127.35 648.65 72.3 55.95 re B*
  2156 +EMC
  2157 +/Form<</MCID 1>>BDC
  2158 +127.35 540.25 108.45 58 re B*
  2159 +EMC
  2160 +/Form<</MCID 2>>BDC
  2161 +291.65 427.75 77.8 103 re B*
  2162 +EMC
  2163 +Q
  2164 +endstream
  2165 +endobj
  2166 +
  2167 +%QDF: ignore_newline
  2168 +111 0 obj
  2169 +240
  2170 +endobj
  2171 +
  2172 +%% Original object ID: 112 0
  2173 +112 0 obj
  2174 +<<
  2175 + /Font 51 0 R
  2176 + /ProcSet [
  2177 + /PDF
  2178 + /Text
  2179 + ]
  2180 +>>
  2181 +endobj
  2182 +
  2183 +%% Contents for page 3
  2184 +%% Original object ID: 113 0
  2185 +113 0 obj
  2186 +<<
  2187 + /Length 114 0 R
  2188 +>>
  2189 +stream
  2190 +0.1 w
  2191 +/Artifact BMC
  2192 +q 0 0.028 611.971 791.971 re
  2193 +W* n
  2194 +EMC
  2195 +/Form<</MCID 0>>BDC
  2196 +0 0 0 RG
  2197 +1 1 1 rg
  2198 +127.35 648.65 72.3 55.95 re B*
  2199 +EMC
  2200 +/Form<</MCID 1>>BDC
  2201 +127.35 540.25 108.45 58 re B*
  2202 +EMC
  2203 +/Form<</MCID 2>>BDC
  2204 +291.65 427.75 77.8 103 re B*
  2205 +EMC
  2206 +Q
  2207 +endstream
  2208 +endobj
  2209 +
  2210 +%QDF: ignore_newline
  2211 +114 0 obj
  2212 +240
  2213 +endobj
  2214 +
  2215 +%% Original object ID: 115 0
  2216 +115 0 obj
  2217 +<<
  2218 + /Font 59 0 R
  2219 + /ProcSet [
  2220 + /PDF
  2221 + /Text
  2222 + ]
  2223 +>>
  2224 +endobj
  2225 +
  2226 +%% Contents for page 4
  2227 +%% Original object ID: 116 0
  2228 +116 0 obj
  2229 +<<
  2230 + /Length 117 0 R
  2231 +>>
  2232 +stream
  2233 +0.1 w
  2234 +/Artifact BMC
  2235 +q 0 0.028 611.971 791.971 re
  2236 +W* n
  2237 +EMC
  2238 +/Form<</MCID 0>>BDC
  2239 +0 0 0 RG
  2240 +1 1 1 rg
  2241 +127.35 648.65 72.3 55.95 re B*
  2242 +EMC
  2243 +/Form<</MCID 1>>BDC
  2244 +127.35 540.25 108.45 58 re B*
  2245 +EMC
  2246 +/Form<</MCID 2>>BDC
  2247 +291.65 427.75 77.8 103 re B*
  2248 +EMC
  2249 +Q
  2250 +endstream
  2251 +endobj
  2252 +
  2253 +%QDF: ignore_newline
  2254 +117 0 obj
  2255 +240
  2256 +endobj
  2257 +
  2258 +%% Original object ID: 118 0
  2259 +118 0 obj
  2260 +<<
  2261 + /Font 67 0 R
  2262 + /ProcSet [
  2263 + /PDF
  2264 + /Text
  2265 + ]
  2266 +>>
  2267 +endobj
  2268 +
  2269 +%% Contents for page 5
  2270 +%% Original object ID: 119 0
  2271 +119 0 obj
  2272 +<<
  2273 + /Length 120 0 R
  2274 +>>
  2275 +stream
  2276 +0.1 w
  2277 +/Artifact BMC
  2278 +q 0 0.028 611.971 791.971 re
  2279 +W* n
  2280 +EMC
  2281 +/Form<</MCID 0>>BDC
  2282 +0 0 0 RG
  2283 +1 1 1 rg
  2284 +127.35 648.65 72.3 55.95 re B*
  2285 +EMC
  2286 +/Form<</MCID 1>>BDC
  2287 +127.35 540.25 108.45 58 re B*
  2288 +EMC
  2289 +/Form<</MCID 2>>BDC
  2290 +291.65 427.75 77.8 103 re B*
  2291 +EMC
  2292 +Q
  2293 +endstream
  2294 +endobj
  2295 +
  2296 +%QDF: ignore_newline
  2297 +120 0 obj
  2298 +240
  2299 +endobj
  2300 +
  2301 +%% Original object ID: 121 0
  2302 +121 0 obj
  2303 +<<
  2304 + /Font 75 0 R
  2305 + /ProcSet [
  2306 + /PDF
  2307 + /Text
  2308 + ]
  2309 +>>
  2310 +endobj
  2311 +
  2312 +%% Contents for page 6
  2313 +%% Original object ID: 122 0
  2314 +122 0 obj
  2315 +<<
  2316 + /Length 123 0 R
  2317 +>>
  2318 +stream
  2319 +0.1 w
  2320 +/Artifact BMC
  2321 +q 0 0.028 611.971 791.971 re
  2322 +W* n
  2323 +EMC
  2324 +/Form<</MCID 0>>BDC
  2325 +0 0 0 RG
  2326 +1 1 1 rg
  2327 +127.35 648.65 72.3 55.95 re B*
  2328 +EMC
  2329 +/Form<</MCID 1>>BDC
  2330 +127.35 540.25 108.45 58 re B*
  2331 +EMC
  2332 +/Form<</MCID 2>>BDC
  2333 +291.65 427.75 77.8 103 re B*
  2334 +EMC
  2335 +Q
  2336 +endstream
  2337 +endobj
  2338 +
  2339 +%QDF: ignore_newline
  2340 +123 0 obj
  2341 +240
  2342 +endobj
  2343 +
  2344 +%% Original object ID: 124 0
  2345 +124 0 obj
  2346 +<<
  2347 + /Font 83 0 R
  2348 + /ProcSet [
  2349 + /PDF
  2350 + /Text
  2351 + ]
  2352 +>>
  2353 +endobj
  2354 +
  2355 +%% Contents for page 7
  2356 +%% Original object ID: 125 0
  2357 +125 0 obj
  2358 +<<
  2359 + /Length 126 0 R
  2360 +>>
  2361 +stream
  2362 +0.1 w
  2363 +/Artifact BMC
  2364 +q 0 0.028 611.971 791.971 re
  2365 +W* n
  2366 +EMC
  2367 +/Form<</MCID 0>>BDC
  2368 +0 0 0 RG
  2369 +1 1 1 rg
  2370 +127.35 648.65 72.3 55.95 re B*
  2371 +EMC
  2372 +/Form<</MCID 1>>BDC
  2373 +127.35 540.25 108.45 58 re B*
  2374 +EMC
  2375 +/Form<</MCID 2>>BDC
  2376 +291.65 427.75 77.8 103 re B*
  2377 +EMC
  2378 +Q
  2379 +endstream
  2380 +endobj
  2381 +
  2382 +%QDF: ignore_newline
  2383 +126 0 obj
  2384 +240
  2385 +endobj
  2386 +
  2387 +%% Original object ID: 127 0
  2388 +127 0 obj
  2389 +<<
  2390 + /Font 91 0 R
  2391 + /ProcSet [
  2392 + /PDF
  2393 + /Text
  2394 + ]
  2395 +>>
  2396 +endobj
  2397 +
  2398 +%% Contents for page 8
  2399 +%% Original object ID: 128 0
  2400 +128 0 obj
  2401 +<<
  2402 + /Length 129 0 R
  2403 +>>
  2404 +stream
  2405 +0.1 w
  2406 +/Artifact BMC
  2407 +q 0 0.028 611.971 791.971 re
  2408 +W* n
  2409 +EMC
  2410 +/Form<</MCID 0>>BDC
  2411 +0 0 0 RG
  2412 +1 1 1 rg
  2413 +127.35 648.65 72.3 55.95 re B*
  2414 +EMC
  2415 +/Form<</MCID 1>>BDC
  2416 +127.35 540.25 108.45 58 re B*
  2417 +EMC
  2418 +/Form<</MCID 2>>BDC
  2419 +291.65 427.75 77.8 103 re B*
  2420 +EMC
  2421 +Q
  2422 +endstream
  2423 +endobj
  2424 +
  2425 +%QDF: ignore_newline
  2426 +129 0 obj
  2427 +240
  2428 +endobj
  2429 +
  2430 +%% Original object ID: 130 0
  2431 +130 0 obj
  2432 +<<
  2433 + /Font 99 0 R
  2434 + /ProcSet [
  2435 + /PDF
  2436 + /Text
  2437 + ]
  2438 +>>
  2439 +endobj
  2440 +
  2441 +%% Contents for page 9
  2442 +%% Original object ID: 131 0
  2443 +131 0 obj
  2444 +<<
  2445 + /Length 132 0 R
  2446 +>>
  2447 +stream
  2448 +0.1 w
  2449 +/Artifact BMC
  2450 +q 0 0.028 611.971 791.971 re
  2451 +W* n
  2452 +EMC
  2453 +/Form<</MCID 0>>BDC
  2454 +0 0 0 RG
  2455 +1 1 1 rg
  2456 +127.35 648.65 72.3 55.95 re B*
  2457 +EMC
  2458 +/Form<</MCID 1>>BDC
  2459 +127.35 540.25 108.45 58 re B*
  2460 +EMC
  2461 +/Form<</MCID 2>>BDC
  2462 +291.65 427.75 77.8 103 re B*
  2463 +EMC
  2464 +Q
  2465 +endstream
  2466 +endobj
  2467 +
  2468 +%QDF: ignore_newline
  2469 +132 0 obj
  2470 +240
  2471 +endobj
  2472 +
  2473 +%% Original object ID: 133 0
  2474 +133 0 obj
  2475 +<<
  2476 + /A 137 0 R
  2477 + /P 107 0 R
  2478 + /Pg 31 0 R
  2479 + /S /Standard
  2480 + /Type /StructElem
  2481 +>>
  2482 +endobj
  2483 +
  2484 +%% Original object ID: 134 0
  2485 +134 0 obj
  2486 +<<
  2487 + /K [
  2488 + 0
  2489 + ]
  2490 + /P 107 0 R
  2491 + /Pg 31 0 R
  2492 + /S /Form
  2493 + /Type /StructElem
  2494 +>>
  2495 +endobj
  2496 +
  2497 +%% Original object ID: 135 0
  2498 +135 0 obj
  2499 +<<
  2500 + /K [
  2501 + 1
  2502 + ]
  2503 + /P 107 0 R
  2504 + /Pg 31 0 R
  2505 + /S /Form
  2506 + /Type /StructElem
  2507 +>>
  2508 +endobj
  2509 +
  2510 +%% Original object ID: 136 0
  2511 +136 0 obj
  2512 +<<
  2513 + /K [
  2514 + 2
  2515 + ]
  2516 + /P 107 0 R
  2517 + /Pg 31 0 R
  2518 + /S /Form
  2519 + /Type /StructElem
  2520 +>>
  2521 +endobj
  2522 +
  2523 +%% Original object ID: 137 0
  2524 +137 0 obj
  2525 +<<
  2526 + /O /Layout
  2527 + /Placement /Block
  2528 +>>
  2529 +endobj
  2530 +
  2531 +xref
  2532 +0 138
  2533 +0000000000 65535 f
  2534 +0000000052 00000 n
  2535 +0000000702 00000 n
  2536 +0000000914 00000 n
  2537 +0000001014 00000 n
  2538 +0000001346 00000 n
  2539 +0000001678 00000 n
  2540 +0000002010 00000 n
  2541 +0000002342 00000 n
  2542 +0000002674 00000 n
  2543 +0000003008 00000 n
  2544 +0000003342 00000 n
  2545 +0000003676 00000 n
  2546 +0000004010 00000 n
  2547 +0000004344 00000 n
  2548 +0000004678 00000 n
  2549 +0000005012 00000 n
  2550 +0000005346 00000 n
  2551 +0000005680 00000 n
  2552 +0000006015 00000 n
  2553 +0000006350 00000 n
  2554 +0000006685 00000 n
  2555 +0000007020 00000 n
  2556 +0000007354 00000 n
  2557 +0000007688 00000 n
  2558 +0000008022 00000 n
  2559 +0000008356 00000 n
  2560 +0000008690 00000 n
  2561 +0000009025 00000 n
  2562 +0000009360 00000 n
  2563 +0000009696 00000 n
  2564 +0000010042 00000 n
  2565 +0000010406 00000 n
  2566 +0000010597 00000 n
  2567 +0000010777 00000 n
  2568 +0000010828 00000 n
  2569 +0000011049 00000 n
  2570 +0000011097 00000 n
  2571 +0000011311 00000 n
  2572 +0000011359 00000 n
  2573 +0000011569 00000 n
  2574 +0000011617 00000 n
  2575 +0000011835 00000 n
  2576 +0000011883 00000 n
  2577 +0000011944 00000 n
  2578 +0000012321 00000 n
  2579 +0000012537 00000 n
  2580 +0000012585 00000 n
  2581 +0000012797 00000 n
  2582 +0000012845 00000 n
  2583 +0000013124 00000 n
  2584 +0000013172 00000 n
  2585 +0000013233 00000 n
  2586 +0000013600 00000 n
  2587 +0000013874 00000 n
  2588 +0000013922 00000 n
  2589 +0000014134 00000 n
  2590 +0000014182 00000 n
  2591 +0000014466 00000 n
  2592 +0000014514 00000 n
  2593 +0000014575 00000 n
  2594 +0000014955 00000 n
  2595 +0000015229 00000 n
  2596 +0000015277 00000 n
  2597 +0000015489 00000 n
  2598 +0000015537 00000 n
  2599 +0000015755 00000 n
  2600 +0000015803 00000 n
  2601 +0000015864 00000 n
  2602 +0000016245 00000 n
  2603 +0000016461 00000 n
  2604 +0000016509 00000 n
  2605 +0000016721 00000 n
  2606 +0000016769 00000 n
  2607 +0000017048 00000 n
  2608 +0000017096 00000 n
  2609 +0000017157 00000 n
  2610 +0000017537 00000 n
  2611 +0000017816 00000 n
  2612 +0000017864 00000 n
  2613 +0000018076 00000 n
  2614 +0000018124 00000 n
  2615 +0000018347 00000 n
  2616 +0000018395 00000 n
  2617 +0000018456 00000 n
  2618 +0000018823 00000 n
  2619 +0000019039 00000 n
  2620 +0000019087 00000 n
  2621 +0000019299 00000 n
  2622 +0000019347 00000 n
  2623 +0000019565 00000 n
  2624 +0000019613 00000 n
  2625 +0000019674 00000 n
  2626 +0000020055 00000 n
  2627 +0000020271 00000 n
  2628 +0000020319 00000 n
  2629 +0000020531 00000 n
  2630 +0000020579 00000 n
  2631 +0000020797 00000 n
  2632 +0000020845 00000 n
  2633 +0000020907 00000 n
  2634 +0000021276 00000 n
  2635 +0000021494 00000 n
  2636 +0000021544 00000 n
  2637 +0000021758 00000 n
  2638 +0000021831 00000 n
  2639 +0000022152 00000 n
  2640 +0000022203 00000 n
  2641 +0000022375 00000 n
  2642 +0000022502 00000 n
  2643 +0000022629 00000 n
  2644 +0000022950 00000 n
  2645 +0000023001 00000 n
  2646 +0000023128 00000 n
  2647 +0000023449 00000 n
  2648 +0000023500 00000 n
  2649 +0000023627 00000 n
  2650 +0000023948 00000 n
  2651 +0000023999 00000 n
  2652 +0000024126 00000 n
  2653 +0000024447 00000 n
  2654 +0000024498 00000 n
  2655 +0000024625 00000 n
  2656 +0000024946 00000 n
  2657 +0000024997 00000 n
  2658 +0000025124 00000 n
  2659 +0000025445 00000 n
  2660 +0000025496 00000 n
  2661 +0000025623 00000 n
  2662 +0000025944 00000 n
  2663 +0000025995 00000 n
  2664 +0000026122 00000 n
  2665 +0000026443 00000 n
  2666 +0000026494 00000 n
  2667 +0000026621 00000 n
  2668 +0000026748 00000 n
  2669 +0000026875 00000 n
  2670 +0000027002 00000 n
  2671 +trailer <<
  2672 + /DocChecksum /DA785F789D02970D387C264D0A6C8CB0
  2673 + /Info 2 0 R
  2674 + /Root 1 0 R
  2675 + /Size 138
  2676 + /ID [<976442cb303b8d5e88a36a127de2a19f><1f7f023bcea1641cee1f72048a9d0676>]
  2677 +>>
  2678 +startxref
  2679 +27059
  2680 +%%EOF
... ...
qpdf/qtest/qpdf/need-appearances-out.pdf 0 โ†’ 100644
No preview for this file type
qpdf/qtest/qpdf/need-appearances-warn.out 0 โ†’ 100644
  1 +WARNING: need-appearances.pdf object stream 1, object 2 0 at offset 438: document does not have updated appearance streams, so form fields will not be flattened
  2 +qpdf: operation succeeded with warnings; resulting file may have some problems
... ...
qpdf/qtest/qpdf/need-appearances.pdf 0 โ†’ 100644
No preview for this file type