From 78f7dc9fe81d6d10edaa620a0319ab9d0dce84ff Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Sat, 25 Feb 2023 12:55:47 -0500 Subject: Overlay/underlay: capture origial page as form XObject (fixes #904) --- ChangeLog | 9 + libqpdf/QPDFJob.cc | 39 +- manual/release-notes.rst | 5 + qpdf/qpdf.testcov | 1 - .../qpdf/job-json-underlay-overlay-password.pdf | Bin 2098 -> 1939 bytes qpdf/qtest/qpdf/job-json-underlay-overlay.pdf | Bin 17541 -> 15843 bytes qpdf/qtest/qpdf/overlay-copy-annotations-p1.pdf | 342 +- qpdf/qtest/qpdf/overlay-copy-annotations-p2.pdf | 350 +- qpdf/qtest/qpdf/overlay-copy-annotations-p5.pdf | 350 +- qpdf/qtest/qpdf/overlay-copy-annotations-p6.pdf | 350 +- qpdf/qtest/qpdf/overlay-copy-annotations.pdf | 4804 ++++++++++---------- qpdf/qtest/qpdf/overlay-no-resources.pdf | Bin 1130 -> 1179 bytes qpdf/qtest/qpdf/uo-1.pdf | 2090 ++++----- qpdf/qtest/qpdf/uo-2.pdf | 2038 ++++----- qpdf/qtest/qpdf/uo-3.pdf | 1492 ++++-- qpdf/qtest/qpdf/uo-4.pdf | 990 ++-- qpdf/qtest/qpdf/uo-5.pdf | 527 ++- qpdf/qtest/qpdf/uo-6.pdf | 202 +- qpdf/qtest/qpdf/uo-7.pdf | 1624 ++++--- 19 files changed, 7563 insertions(+), 7650 deletions(-) diff --git a/ChangeLog b/ChangeLog index db242032..05697027 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2023-02-25 Jay Berkenbilt + + * When performing overlay or underlay operations, convert the + origianal page to a form XObject instead of simply isolating its + contents with q/Q operators. This prevents unbalanced q/Q + operators in any of the original pages from messing up the + graphics state of anything that is overlaid on top of it. Fixes + #904. + 2023-02-18 Jay Berkenbilt * Treat all linearization errors and warnings as warnings, and diff --git a/libqpdf/QPDFJob.cc b/libqpdf/QPDFJob.cc index 06d93fd7..dabbf2ea 100644 --- a/libqpdf/QPDFJob.cc +++ b/libqpdf/QPDFJob.cc @@ -2082,11 +2082,6 @@ QPDFJob::doUnderOverlayForPage( std::string content; int min_suffix = 1; QPDFObjectHandle resources = dest_page.getAttribute("/Resources", true); - if (!resources.isDictionary()) { - QTC::TC("qpdf", "QPDFJob overlay page with no resources"); - resources = dest_page.getObjectHandle().replaceKeyAndGetNew( - "/Resources", QPDFObjectHandle::newDictionary()); - } for (int from_pageno: pagenos[pageno]) { doIfVerbose([&](Pipeline& v, std::string const& prefix) { v << " " << uo.which << " " << from_pageno << "\n"; @@ -2179,7 +2174,24 @@ QPDFJob::handleUnderOverlay(QPDF& pdf) overlay_pagenos.count(pageno))) { continue; } + // This code converts the original page, any underlays, and + // any overlays to form XObjects. Then it concatenates display + // of all underlays, the original page, and all overlays. + // Prior to 11.3.0, the original page contents were wrapped in + // q/Q, but this didin't work if the original page had + // unbalanced q/Q operators. See github issue #904. auto& dest_page = main_pages.at(i); + auto dest_page_oh = dest_page.getObjectHandle(); + auto this_page_fo = dest_page.getFormXObjectForPage(); + // The resulting form xobject lazily reads the content from + // the original page, which we are going to replace. Therefore + // we have to explicitly copy it. + auto content_data = this_page_fo.getRawStreamData(); + this_page_fo.replaceStreamData( + content_data, QPDFObjectHandle(), QPDFObjectHandle()); + auto resources = dest_page_oh.replaceKeyAndGetNew( + "/Resources", "<< /XObject << >> >>"_qpdf); + resources.getKey("/XObject").replaceKeyAndGetNew("/Fx0", this_page_fo); auto content = doUnderOverlayForPage( pdf, m->underlay, @@ -2188,15 +2200,16 @@ QPDFJob::handleUnderOverlay(QPDF& pdf) underlay_fo, upages, dest_page); - if (!content.empty()) { - dest_page.addPageContents(pdf.newStream(content), true); - } - content = doUnderOverlayForPage( + content += dest_page.placeFormXObject( + this_page_fo, + "/Fx0", + dest_page.getMediaBox().getArrayAsRectangle(), + true, + false, + false); + content += doUnderOverlayForPage( pdf, m->overlay, overlay_pagenos, i, overlay_fo, opages, dest_page); - if (!content.empty()) { - dest_page.addPageContents(pdf.newStream("q\n"), true); - dest_page.addPageContents(pdf.newStream("\nQ\n" + content), false); - } + dest_page_oh.replaceKey("/Contents", pdf.newStream(content)); } } diff --git a/manual/release-notes.rst b/manual/release-notes.rst index a038005a..4ccb1f0d 100644 --- a/manual/release-notes.rst +++ b/manual/release-notes.rst @@ -14,6 +14,11 @@ For a detailed list of changes, please see the file - New option :qpdf:ref:`--remove-restrictions` removes security restrictions from digitally signed files. + - Improve overlay/underlay so that the content a page with + unbalanced graphics state operators (``q``/``Q``) doesn't affect + the way subsequent pages are displayed. This changes the output + of all overlay/underlay operations. + - Library enhancements - New method ``QPDF::removeSecurityRestrictions`` removes security diff --git a/qpdf/qpdf.testcov b/qpdf/qpdf.testcov index 7d8890e9..cad67565 100644 --- a/qpdf/qpdf.testcov +++ b/qpdf/qpdf.testcov @@ -593,7 +593,6 @@ QPDF resolve duplicated page in insert 0 QPDFWriter preserve object streams 1 QPDFWriter exclude from object stream 0 QPDF_pages findPage not found 0 -QPDFJob overlay page with no resources 0 QPDFObjectHandle check ownership 0 QPDFJob weak crypto error 0 qpdf-c called qpdf_oh_is_initialized 0 diff --git a/qpdf/qtest/qpdf/job-json-underlay-overlay-password.pdf b/qpdf/qtest/qpdf/job-json-underlay-overlay-password.pdf index 8296bd3d..8dedc7a0 100644 Binary files a/qpdf/qtest/qpdf/job-json-underlay-overlay-password.pdf and b/qpdf/qtest/qpdf/job-json-underlay-overlay-password.pdf differ diff --git a/qpdf/qtest/qpdf/job-json-underlay-overlay.pdf b/qpdf/qtest/qpdf/job-json-underlay-overlay.pdf index d0327ab4..3b78acb8 100644 Binary files a/qpdf/qtest/qpdf/job-json-underlay-overlay.pdf and b/qpdf/qtest/qpdf/job-json-underlay-overlay.pdf differ diff --git a/qpdf/qtest/qpdf/overlay-copy-annotations-p1.pdf b/qpdf/qtest/qpdf/overlay-copy-annotations-p1.pdf index f1907117..ca13a022 100644 --- a/qpdf/qtest/qpdf/overlay-copy-annotations-p1.pdf +++ b/qpdf/qtest/qpdf/overlay-copy-annotations-p1.pdf @@ -116,11 +116,7 @@ endobj 15 0 R 16 0 R ] - /Contents [ - 23 0 R - 25 0 R - 27 0 R - ] + /Contents 23 0 R /MediaBox [ 0 0 @@ -129,12 +125,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 29 0 R - >> - /ProcSet 30 0 R /XObject << - /Fx1 31 0 R + /Fx0 25 0 R + /Fx1 27 0 R >> >> /Type /Page @@ -158,7 +151,7 @@ endobj 118.8 11.322 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject /Length 11 0 R @@ -195,7 +188,7 @@ endobj 0 0 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject /Length 13 0 R @@ -220,8 +213,8 @@ endobj << /AP << /N << - /1 34 0 R - /Off 36 0 R + /1 30 0 R + /Off 32 0 R >> >> /AS /1 @@ -248,8 +241,8 @@ endobj << /AP << /N << - /2 38 0 R - /Off 40 0 R + /2 34 0 R + /Off 36 0 R >> >> /AS /2 @@ -276,8 +269,8 @@ endobj << /AP << /N << - /3 42 0 R - /Off 44 0 R + /3 38 0 R + /Off 40 0 R >> >> /AS /3 @@ -331,10 +324,10 @@ endobj 18 0 obj << /AP << - /N 46 0 R + /N 42 0 R >> /Contents (attachment1.txt) - /FS 48 0 R + /FS 44 0 R /NM (attachment1.txt) /Rect [ 72 @@ -350,7 +343,7 @@ endobj 19 0 obj << /AP << - /N 49 0 R + /N 45 0 R >> /DA () /Rect [ @@ -367,7 +360,7 @@ endobj 20 0 obj << /AP << - /N 51 0 R + /N 47 0 R >> /DA () /Rect [ @@ -384,7 +377,7 @@ endobj 21 0 obj << /AP << - /N 53 0 R + /N 49 0 R >> /DA () /Rect [ @@ -401,7 +394,7 @@ endobj 22 0 obj << /AP << - /N 55 0 R + /N 51 0 R >> /DA () /Rect [ @@ -422,16 +415,36 @@ endobj >> stream q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +1 0 0 1 0 0 cm +/Fx1 Do +Q endstream endobj 24 0 obj -2 +54 endobj -%% Contents for page 1 25 0 obj << + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 53 0 R + >> + /ProcSet 54 0 R + >> + /Subtype /Form + /Type /XObject /Length 26 0 R >> stream @@ -452,43 +465,7 @@ endobj 108 endobj -%% Contents for page 1 27 0 obj -<< - /Length 28 0 R ->> -stream - -Q -q -1 0 0 1 0 0 cm -/Fx1 Do -Q -endstream -endobj - -28 0 obj -30 -endobj - -29 0 obj -<< - /BaseFont /Helvetica - /Encoding /WinAnsiEncoding - /Name /F1 - /Subtype /Type1 - /Type /Font ->> -endobj - -30 0 obj -[ - /PDF - /Text -] -endobj - -31 0 obj << /BBox [ 0 @@ -503,7 +480,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 32 0 R + /Length 28 0 R >> stream q @@ -571,11 +548,11 @@ ET endstream endobj -32 0 obj +28 0 obj 874 endobj -33 0 obj +29 0 obj << /Font << /F1 9 0 R @@ -583,7 +560,7 @@ endobj >> endobj -34 0 obj +30 0 obj << /BBox [ 0 @@ -591,10 +568,10 @@ endobj 12.05 12.05 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 35 0 R + /Length 31 0 R >> stream /Tx BMC @@ -613,11 +590,11 @@ EMC endstream endobj -35 0 obj +31 0 obj 202 endobj -36 0 obj +32 0 obj << /BBox [ 0 @@ -625,10 +602,10 @@ endobj 12.05 12.05 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 37 0 R + /Length 33 0 R >> stream /Tx BMC @@ -636,11 +613,11 @@ EMC endstream endobj -37 0 obj +33 0 obj 12 endobj -38 0 obj +34 0 obj << /BBox [ 0 @@ -648,10 +625,10 @@ endobj 12.05 12.05 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 39 0 R + /Length 35 0 R >> stream /Tx BMC @@ -670,11 +647,11 @@ EMC endstream endobj -39 0 obj +35 0 obj 202 endobj -40 0 obj +36 0 obj << /BBox [ 0 @@ -682,10 +659,10 @@ endobj 12.05 12.05 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 41 0 R + /Length 37 0 R >> stream /Tx BMC @@ -693,11 +670,11 @@ EMC endstream endobj -41 0 obj +37 0 obj 12 endobj -42 0 obj +38 0 obj << /BBox [ 0 @@ -705,10 +682,10 @@ endobj 12.05 12.05 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 43 0 R + /Length 39 0 R >> stream /Tx BMC @@ -727,11 +704,11 @@ EMC endstream endobj -43 0 obj +39 0 obj 202 endobj -44 0 obj +40 0 obj << /BBox [ 0 @@ -739,10 +716,10 @@ endobj 12.05 12.05 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 45 0 R + /Length 41 0 R >> stream /Tx BMC @@ -750,11 +727,11 @@ EMC endstream endobj -45 0 obj +41 0 obj 12 endobj -46 0 obj +42 0 obj << /BBox [ 0 @@ -766,7 +743,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 47 0 R + /Length 43 0 R >> stream 0 10 m @@ -779,15 +756,15 @@ S endstream endobj -47 0 obj +43 0 obj 52 endobj -48 0 obj +44 0 obj << /EF << - /F 58 0 R - /UF 58 0 R + /F 56 0 R + /UF 56 0 R >> /F (attachment1.txt) /Type /Filespec @@ -795,7 +772,7 @@ endobj >> endobj -49 0 obj +45 0 obj << /BBox [ 0 @@ -803,10 +780,10 @@ endobj 20 10 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 50 0 R + /Length 46 0 R >> stream 1 0 0 RG @@ -816,11 +793,11 @@ S endstream endobj -50 0 obj +46 0 obj 36 endobj -51 0 obj +47 0 obj << /BBox [ 0 @@ -836,10 +813,10 @@ endobj 0 0 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 52 0 R + /Length 48 0 R >> stream 0 1 0 RG @@ -849,11 +826,11 @@ S endstream endobj -52 0 obj +48 0 obj 36 endobj -53 0 obj +49 0 obj << /BBox [ 0 @@ -869,10 +846,10 @@ endobj 0 0 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 54 0 R + /Length 50 0 R >> stream 0 0 1 RG @@ -882,11 +859,11 @@ S endstream endobj -54 0 obj +50 0 obj 36 endobj -55 0 obj +51 0 obj << /BBox [ 0 @@ -902,10 +879,10 @@ endobj 0 0 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 56 0 R + /Length 52 0 R >> stream 0.5 0 1 RG @@ -915,13 +892,30 @@ S endstream endobj -56 0 obj +52 0 obj 38 endobj -57 0 obj +53 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +54 0 obj +[ + /PDF + /Text +] +endobj + +55 0 obj << - /Font 60 0 R + /Font 58 0 R /ProcSet [ /PDF /Text @@ -929,7 +923,7 @@ endobj >> endobj -58 0 obj +56 0 obj << /Params << /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc> @@ -937,24 +931,24 @@ endobj /Subtype /text#2fplain >> /Type /EmbeddedFile - /Length 59 0 R + /Length 57 0 R >> stream content of attachment endstream endobj -59 0 obj +57 0 obj 22 endobj -60 0 obj +58 0 obj << - /ZaDi 61 0 R + /ZaDi 59 0 R >> endobj -61 0 obj +59 0 obj << /BaseFont /ZapfDingbats /Subtype /Type1 @@ -963,7 +957,7 @@ endobj endobj xref -0 62 +0 60 0000000000 65535 f 0000000025 00000 n 0000000097 00000 n @@ -973,64 +967,62 @@ xref 0000000545 00000 n 0000000794 00000 n 0000000923 00000 n -0000001326 00000 n -0000001430 00000 n -0000001646 00000 n -0000001666 00000 n -0000001937 00000 n -0000001957 00000 n -0000002268 00000 n -0000002579 00000 n -0000002890 00000 n -0000003134 00000 n -0000003338 00000 n -0000003478 00000 n -0000003620 00000 n -0000003762 00000 n -0000003927 00000 n -0000003986 00000 n -0000004028 00000 n -0000004193 00000 n -0000004237 00000 n -0000004324 00000 n -0000004344 00000 n -0000004463 00000 n -0000004499 00000 n -0000005563 00000 n -0000005584 00000 n -0000005637 00000 n -0000005996 00000 n -0000006017 00000 n -0000006186 00000 n -0000006206 00000 n -0000006565 00000 n -0000006586 00000 n -0000006755 00000 n -0000006775 00000 n -0000007134 00000 n -0000007155 00000 n -0000007324 00000 n -0000007344 00000 n -0000007548 00000 n -0000007568 00000 n -0000007699 00000 n -0000007886 00000 n -0000007906 00000 n -0000008146 00000 n -0000008166 00000 n -0000008407 00000 n -0000008427 00000 n -0000008669 00000 n -0000008689 00000 n -0000008763 00000 n -0000008971 00000 n -0000008991 00000 n -0000009029 00000 n +0000001255 00000 n +0000001359 00000 n +0000001575 00000 n +0000001595 00000 n +0000001866 00000 n +0000001886 00000 n +0000002197 00000 n +0000002508 00000 n +0000002819 00000 n +0000003063 00000 n +0000003267 00000 n +0000003407 00000 n +0000003549 00000 n +0000003691 00000 n +0000003856 00000 n +0000003967 00000 n +0000003987 00000 n +0000004306 00000 n +0000004327 00000 n +0000005391 00000 n +0000005412 00000 n +0000005465 00000 n +0000005824 00000 n +0000005845 00000 n +0000006014 00000 n +0000006034 00000 n +0000006393 00000 n +0000006414 00000 n +0000006583 00000 n +0000006603 00000 n +0000006962 00000 n +0000006983 00000 n +0000007152 00000 n +0000007172 00000 n +0000007376 00000 n +0000007396 00000 n +0000007527 00000 n +0000007714 00000 n +0000007734 00000 n +0000007974 00000 n +0000007994 00000 n +0000008235 00000 n +0000008255 00000 n +0000008497 00000 n +0000008517 00000 n +0000008636 00000 n +0000008672 00000 n +0000008746 00000 n +0000008954 00000 n +0000008974 00000 n +0000009012 00000 n trailer << /Root 1 0 R - /Size 62 + /Size 60 /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] >> startxref -9110 +9093 %%EOF diff --git a/qpdf/qtest/qpdf/overlay-copy-annotations-p2.pdf b/qpdf/qtest/qpdf/overlay-copy-annotations-p2.pdf index 4ed2c002..203e92e7 100644 --- a/qpdf/qtest/qpdf/overlay-copy-annotations-p2.pdf +++ b/qpdf/qtest/qpdf/overlay-copy-annotations-p2.pdf @@ -116,11 +116,7 @@ endobj 15 0 R 16 0 R ] - /Contents [ - 23 0 R - 25 0 R - 27 0 R - ] + /Contents 23 0 R /MediaBox [ 0 0 @@ -129,12 +125,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 29 0 R - >> - /ProcSet 30 0 R /XObject << - /Fx1 31 0 R + /Fx0 25 0 R + /Fx1 27 0 R >> >> /Type /Page @@ -167,7 +160,7 @@ endobj 153 198 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject /Length 11 0 R @@ -204,7 +197,7 @@ endobj -198 153 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject /Length 13 0 R @@ -229,8 +222,8 @@ endobj << /AP << /N << - /1 34 0 R - /Off 36 0 R + /1 30 0 R + /Off 32 0 R >> >> /AS /1 @@ -257,8 +250,8 @@ endobj << /AP << /N << - /2 38 0 R - /Off 40 0 R + /2 34 0 R + /Off 36 0 R >> >> /AS /2 @@ -285,8 +278,8 @@ endobj << /AP << /N << - /3 42 0 R - /Off 44 0 R + /3 38 0 R + /Off 40 0 R >> >> /AS /3 @@ -340,10 +333,10 @@ endobj 18 0 obj << /AP << - /N 46 0 R + /N 42 0 R >> /Contents (attachment1.txt) - /FS 48 0 R + /FS 44 0 R /NM (attachment1.txt) /Rect [ 189 @@ -359,7 +352,7 @@ endobj 19 0 obj << /AP << - /N 49 0 R + /N 45 0 R >> /DA () /Rect [ @@ -376,7 +369,7 @@ endobj 20 0 obj << /AP << - /N 51 0 R + /N 47 0 R >> /DA () /Rect [ @@ -393,7 +386,7 @@ endobj 21 0 obj << /AP << - /N 53 0 R + /N 49 0 R >> /DA () /Rect [ @@ -410,7 +403,7 @@ endobj 22 0 obj << /AP << - /N 55 0 R + /N 51 0 R >> /DA () /Rect [ @@ -431,16 +424,44 @@ endobj >> stream q +0.5 0 0 0.5 0 0 cm +/Fx0 Do +Q +q +0.5 0 0 0.5 153 198 cm +/Fx1 Do +Q endstream endobj 24 0 obj -2 +66 endobj -%% Contents for page 1 25 0 obj << + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 2 + 0 + 0 + 2 + 0 + 0 + ] + /Resources << + /Font << + /F1 53 0 R + >> + /ProcSet 54 0 R + >> + /Subtype /Form + /Type /XObject /Length 26 0 R >> stream @@ -461,43 +482,7 @@ endobj 117 endobj -%% Contents for page 1 27 0 obj -<< - /Length 28 0 R ->> -stream - -Q -q -0.5 0 0 0.5 153 198 cm -/Fx1 Do -Q -endstream -endobj - -28 0 obj -38 -endobj - -29 0 obj -<< - /BaseFont /Helvetica - /Encoding /WinAnsiEncoding - /Name /F1 - /Subtype /Type1 - /Type /Font ->> -endobj - -30 0 obj -[ - /PDF - /Text -] -endobj - -31 0 obj << /BBox [ 0 @@ -512,7 +497,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 32 0 R + /Length 28 0 R >> stream q @@ -580,11 +565,11 @@ ET endstream endobj -32 0 obj +28 0 obj 874 endobj -33 0 obj +29 0 obj << /Font << /F1 9 0 R @@ -592,7 +577,7 @@ endobj >> endobj -34 0 obj +30 0 obj << /BBox [ 0 @@ -608,10 +593,10 @@ endobj 153 198 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 35 0 R + /Length 31 0 R >> stream /Tx BMC @@ -630,11 +615,11 @@ EMC endstream endobj -35 0 obj +31 0 obj 202 endobj -36 0 obj +32 0 obj << /BBox [ 0 @@ -650,10 +635,10 @@ endobj 153 198 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 37 0 R + /Length 33 0 R >> stream /Tx BMC @@ -661,11 +646,11 @@ EMC endstream endobj -37 0 obj +33 0 obj 12 endobj -38 0 obj +34 0 obj << /BBox [ 0 @@ -681,10 +666,10 @@ endobj 153 198 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 39 0 R + /Length 35 0 R >> stream /Tx BMC @@ -703,11 +688,11 @@ EMC endstream endobj -39 0 obj +35 0 obj 202 endobj -40 0 obj +36 0 obj << /BBox [ 0 @@ -723,10 +708,10 @@ endobj 153 198 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 41 0 R + /Length 37 0 R >> stream /Tx BMC @@ -734,11 +719,11 @@ EMC endstream endobj -41 0 obj +37 0 obj 12 endobj -42 0 obj +38 0 obj << /BBox [ 0 @@ -754,10 +739,10 @@ endobj 153 198 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 43 0 R + /Length 39 0 R >> stream /Tx BMC @@ -776,11 +761,11 @@ EMC endstream endobj -43 0 obj +39 0 obj 202 endobj -44 0 obj +40 0 obj << /BBox [ 0 @@ -796,10 +781,10 @@ endobj 153 198 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 45 0 R + /Length 41 0 R >> stream /Tx BMC @@ -807,11 +792,11 @@ EMC endstream endobj -45 0 obj +41 0 obj 12 endobj -46 0 obj +42 0 obj << /BBox [ 0 @@ -831,7 +816,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 47 0 R + /Length 43 0 R >> stream 0 10 m @@ -844,15 +829,15 @@ S endstream endobj -47 0 obj +43 0 obj 52 endobj -48 0 obj +44 0 obj << /EF << - /F 58 0 R - /UF 58 0 R + /F 56 0 R + /UF 56 0 R >> /F (attachment1.txt) /Type /Filespec @@ -860,7 +845,7 @@ endobj >> endobj -49 0 obj +45 0 obj << /BBox [ 0 @@ -876,10 +861,10 @@ endobj 153 198 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 50 0 R + /Length 46 0 R >> stream 1 0 0 RG @@ -889,11 +874,11 @@ S endstream endobj -50 0 obj +46 0 obj 36 endobj -51 0 obj +47 0 obj << /BBox [ 0 @@ -909,10 +894,10 @@ endobj -198 153 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 52 0 R + /Length 48 0 R >> stream 0 1 0 RG @@ -922,11 +907,11 @@ S endstream endobj -52 0 obj +48 0 obj 36 endobj -53 0 obj +49 0 obj << /BBox [ 0 @@ -942,10 +927,10 @@ endobj -153 -198 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 54 0 R + /Length 50 0 R >> stream 0 0 1 RG @@ -955,11 +940,11 @@ S endstream endobj -54 0 obj +50 0 obj 36 endobj -55 0 obj +51 0 obj << /BBox [ 0 @@ -975,10 +960,10 @@ endobj 198 -153 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 56 0 R + /Length 52 0 R >> stream 0.5 0 1 RG @@ -988,13 +973,30 @@ S endstream endobj -56 0 obj +52 0 obj 38 endobj -57 0 obj +53 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +54 0 obj +[ + /PDF + /Text +] +endobj + +55 0 obj << - /Font 60 0 R + /Font 58 0 R /ProcSet [ /PDF /Text @@ -1002,7 +1004,7 @@ endobj >> endobj -58 0 obj +56 0 obj << /Params << /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc> @@ -1010,24 +1012,24 @@ endobj /Subtype /text#2fplain >> /Type /EmbeddedFile - /Length 59 0 R + /Length 57 0 R >> stream content of attachment endstream endobj -59 0 obj +57 0 obj 22 endobj -60 0 obj +58 0 obj << - /ZaDi 61 0 R + /ZaDi 59 0 R >> endobj -61 0 obj +59 0 obj << /BaseFont /ZapfDingbats /Subtype /Type1 @@ -1036,7 +1038,7 @@ endobj endobj xref -0 62 +0 60 0000000000 65535 f 0000000025 00000 n 0000000097 00000 n @@ -1046,64 +1048,62 @@ xref 0000000546 00000 n 0000000795 00000 n 0000000924 00000 n -0000001341 00000 n -0000001445 00000 n -0000001721 00000 n -0000001741 00000 n -0000002021 00000 n -0000002041 00000 n -0000002356 00000 n -0000002671 00000 n -0000002986 00000 n -0000003231 00000 n -0000003437 00000 n -0000003579 00000 n -0000003721 00000 n -0000003863 00000 n -0000004028 00000 n -0000004087 00000 n -0000004129 00000 n -0000004303 00000 n -0000004347 00000 n -0000004442 00000 n -0000004462 00000 n -0000004581 00000 n -0000004617 00000 n -0000005681 00000 n -0000005702 00000 n -0000005755 00000 n -0000006174 00000 n -0000006195 00000 n -0000006424 00000 n -0000006444 00000 n -0000006863 00000 n -0000006884 00000 n -0000007113 00000 n -0000007133 00000 n -0000007552 00000 n -0000007573 00000 n -0000007802 00000 n -0000007822 00000 n -0000008086 00000 n -0000008106 00000 n -0000008237 00000 n -0000008484 00000 n -0000008504 00000 n -0000008753 00000 n -0000008773 00000 n -0000009024 00000 n -0000009044 00000 n -0000009295 00000 n -0000009315 00000 n -0000009389 00000 n -0000009597 00000 n -0000009617 00000 n -0000009655 00000 n +0000001270 00000 n +0000001374 00000 n +0000001650 00000 n +0000001670 00000 n +0000001950 00000 n +0000001970 00000 n +0000002285 00000 n +0000002600 00000 n +0000002915 00000 n +0000003160 00000 n +0000003366 00000 n +0000003508 00000 n +0000003650 00000 n +0000003792 00000 n +0000003957 00000 n +0000004080 00000 n +0000004100 00000 n +0000004480 00000 n +0000004501 00000 n +0000005565 00000 n +0000005586 00000 n +0000005639 00000 n +0000006058 00000 n +0000006079 00000 n +0000006308 00000 n +0000006328 00000 n +0000006747 00000 n +0000006768 00000 n +0000006997 00000 n +0000007017 00000 n +0000007436 00000 n +0000007457 00000 n +0000007686 00000 n +0000007706 00000 n +0000007970 00000 n +0000007990 00000 n +0000008121 00000 n +0000008368 00000 n +0000008388 00000 n +0000008637 00000 n +0000008657 00000 n +0000008908 00000 n +0000008928 00000 n +0000009179 00000 n +0000009199 00000 n +0000009318 00000 n +0000009354 00000 n +0000009428 00000 n +0000009636 00000 n +0000009656 00000 n +0000009694 00000 n trailer << /Root 1 0 R - /Size 62 + /Size 60 /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] >> startxref -9736 +9775 %%EOF diff --git a/qpdf/qtest/qpdf/overlay-copy-annotations-p5.pdf b/qpdf/qtest/qpdf/overlay-copy-annotations-p5.pdf index fac19fb2..6337dd05 100644 --- a/qpdf/qtest/qpdf/overlay-copy-annotations-p5.pdf +++ b/qpdf/qtest/qpdf/overlay-copy-annotations-p5.pdf @@ -116,11 +116,7 @@ endobj 15 0 R 16 0 R ] - /Contents [ - 23 0 R - 25 0 R - 27 0 R - ] + /Contents 23 0 R /MediaBox [ 0 0 @@ -129,12 +125,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 29 0 R - >> - /ProcSet 30 0 R /XObject << - /Fx1 31 0 R + /Fx0 25 0 R + /Fx1 27 0 R >> >> /Rotate 90 @@ -167,7 +160,7 @@ endobj 612 159.545455 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject /Length 11 0 R @@ -204,7 +197,7 @@ endobj -159.545455 612 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject /Length 13 0 R @@ -229,8 +222,8 @@ endobj << /AP << /N << - /1 34 0 R - /Off 36 0 R + /1 30 0 R + /Off 32 0 R >> >> /AS /1 @@ -257,8 +250,8 @@ endobj << /AP << /N << - /2 38 0 R - /Off 40 0 R + /2 34 0 R + /Off 36 0 R >> >> /AS /2 @@ -285,8 +278,8 @@ endobj << /AP << /N << - /3 42 0 R - /Off 44 0 R + /3 38 0 R + /Off 40 0 R >> >> /AS /3 @@ -340,10 +333,10 @@ endobj 18 0 obj << /AP << - /N 46 0 R + /N 42 0 R >> /Contents (attachment1.txt) - /FS 48 0 R + /FS 44 0 R /NM (attachment1.txt) /Rect [ 287.454545 @@ -359,7 +352,7 @@ endobj 19 0 obj << /AP << - /N 49 0 R + /N 45 0 R >> /DA () /Rect [ @@ -376,7 +369,7 @@ endobj 20 0 obj << /AP << - /N 51 0 R + /N 47 0 R >> /DA () /Rect [ @@ -393,7 +386,7 @@ endobj 21 0 obj << /AP << - /N 53 0 R + /N 49 0 R >> /DA () /Rect [ @@ -410,7 +403,7 @@ endobj 22 0 obj << /AP << - /N 55 0 R + /N 51 0 R >> /DA () /Rect [ @@ -431,16 +424,44 @@ endobj >> stream q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 0.77273 -0.77273 0 612 159.54545 cm +/Fx1 Do +Q endstream endobj 24 0 obj -2 +80 endobj -%% Contents for page 1 25 0 obj << + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 53 0 R + >> + /ProcSet 54 0 R + >> + /Subtype /Form + /Type /XObject /Length 26 0 R >> stream @@ -461,43 +482,7 @@ endobj 112 endobj -%% Contents for page 1 27 0 obj -<< - /Length 28 0 R ->> -stream - -Q -q -0 0.77273 -0.77273 0 612 159.54545 cm -/Fx1 Do -Q -endstream -endobj - -28 0 obj -53 -endobj - -29 0 obj -<< - /BaseFont /Helvetica - /Encoding /WinAnsiEncoding - /Name /F1 - /Subtype /Type1 - /Type /Font ->> -endobj - -30 0 obj -[ - /PDF - /Text -] -endobj - -31 0 obj << /BBox [ 0 @@ -512,7 +497,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 32 0 R + /Length 28 0 R >> stream q @@ -580,11 +565,11 @@ ET endstream endobj -32 0 obj +28 0 obj 874 endobj -33 0 obj +29 0 obj << /Font << /F1 9 0 R @@ -592,7 +577,7 @@ endobj >> endobj -34 0 obj +30 0 obj << /BBox [ 0 @@ -608,10 +593,10 @@ endobj 612 159.545455 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 35 0 R + /Length 31 0 R >> stream /Tx BMC @@ -630,11 +615,11 @@ EMC endstream endobj -35 0 obj +31 0 obj 202 endobj -36 0 obj +32 0 obj << /BBox [ 0 @@ -650,10 +635,10 @@ endobj 612 159.545455 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 37 0 R + /Length 33 0 R >> stream /Tx BMC @@ -661,11 +646,11 @@ EMC endstream endobj -37 0 obj +33 0 obj 12 endobj -38 0 obj +34 0 obj << /BBox [ 0 @@ -681,10 +666,10 @@ endobj 612 159.545455 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 39 0 R + /Length 35 0 R >> stream /Tx BMC @@ -703,11 +688,11 @@ EMC endstream endobj -39 0 obj +35 0 obj 202 endobj -40 0 obj +36 0 obj << /BBox [ 0 @@ -723,10 +708,10 @@ endobj 612 159.545455 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 41 0 R + /Length 37 0 R >> stream /Tx BMC @@ -734,11 +719,11 @@ EMC endstream endobj -41 0 obj +37 0 obj 12 endobj -42 0 obj +38 0 obj << /BBox [ 0 @@ -754,10 +739,10 @@ endobj 612 159.545455 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 43 0 R + /Length 39 0 R >> stream /Tx BMC @@ -776,11 +761,11 @@ EMC endstream endobj -43 0 obj +39 0 obj 202 endobj -44 0 obj +40 0 obj << /BBox [ 0 @@ -796,10 +781,10 @@ endobj 612 159.545455 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 45 0 R + /Length 41 0 R >> stream /Tx BMC @@ -807,11 +792,11 @@ EMC endstream endobj -45 0 obj +41 0 obj 12 endobj -46 0 obj +42 0 obj << /BBox [ 0 @@ -831,7 +816,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 47 0 R + /Length 43 0 R >> stream 0 10 m @@ -844,15 +829,15 @@ S endstream endobj -47 0 obj +43 0 obj 52 endobj -48 0 obj +44 0 obj << /EF << - /F 58 0 R - /UF 58 0 R + /F 56 0 R + /UF 56 0 R >> /F (attachment1.txt) /Type /Filespec @@ -860,7 +845,7 @@ endobj >> endobj -49 0 obj +45 0 obj << /BBox [ 0 @@ -876,10 +861,10 @@ endobj 612 159.545455 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 50 0 R + /Length 46 0 R >> stream 1 0 0 RG @@ -889,11 +874,11 @@ S endstream endobj -50 0 obj +46 0 obj 36 endobj -51 0 obj +47 0 obj << /BBox [ 0 @@ -909,10 +894,10 @@ endobj -159.545455 612 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 52 0 R + /Length 48 0 R >> stream 0 1 0 RG @@ -922,11 +907,11 @@ S endstream endobj -52 0 obj +48 0 obj 36 endobj -53 0 obj +49 0 obj << /BBox [ 0 @@ -942,10 +927,10 @@ endobj -612 -159.545455 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 54 0 R + /Length 50 0 R >> stream 0 0 1 RG @@ -955,11 +940,11 @@ S endstream endobj -54 0 obj +50 0 obj 36 endobj -55 0 obj +51 0 obj << /BBox [ 0 @@ -975,10 +960,10 @@ endobj 159.545455 -612 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 56 0 R + /Length 52 0 R >> stream 0.5 0 1 RG @@ -988,13 +973,30 @@ S endstream endobj -56 0 obj +52 0 obj 38 endobj -57 0 obj +53 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +54 0 obj +[ + /PDF + /Text +] +endobj + +55 0 obj << - /Font 60 0 R + /Font 58 0 R /ProcSet [ /PDF /Text @@ -1002,7 +1004,7 @@ endobj >> endobj -58 0 obj +56 0 obj << /Params << /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc> @@ -1010,24 +1012,24 @@ endobj /Subtype /text#2fplain >> /Type /EmbeddedFile - /Length 59 0 R + /Length 57 0 R >> stream content of attachment endstream endobj -59 0 obj +57 0 obj 22 endobj -60 0 obj +58 0 obj << - /ZaDi 61 0 R + /ZaDi 59 0 R >> endobj -61 0 obj +59 0 obj << /BaseFont /ZapfDingbats /Subtype /Type1 @@ -1036,7 +1038,7 @@ endobj endobj xref -0 62 +0 60 0000000000 65535 f 0000000025 00000 n 0000000097 00000 n @@ -1046,64 +1048,62 @@ xref 0000000564 00000 n 0000000822 00000 n 0000000951 00000 n -0000001367 00000 n -0000001471 00000 n -0000001765 00000 n -0000001785 00000 n -0000002084 00000 n -0000002104 00000 n -0000002427 00000 n -0000002750 00000 n -0000003071 00000 n -0000003331 00000 n -0000003565 00000 n -0000003735 00000 n -0000003905 00000 n -0000004075 00000 n -0000004261 00000 n -0000004320 00000 n -0000004362 00000 n -0000004531 00000 n -0000004575 00000 n -0000004685 00000 n -0000004705 00000 n -0000004824 00000 n -0000004860 00000 n -0000005924 00000 n -0000005945 00000 n -0000005998 00000 n -0000006435 00000 n -0000006456 00000 n -0000006703 00000 n -0000006723 00000 n -0000007160 00000 n -0000007181 00000 n -0000007428 00000 n -0000007448 00000 n -0000007885 00000 n -0000007906 00000 n -0000008153 00000 n -0000008173 00000 n -0000008455 00000 n -0000008475 00000 n -0000008606 00000 n -0000008871 00000 n -0000008891 00000 n -0000009159 00000 n -0000009179 00000 n -0000009447 00000 n -0000009467 00000 n -0000009734 00000 n -0000009754 00000 n -0000009828 00000 n -0000010036 00000 n -0000010056 00000 n -0000010094 00000 n +0000001296 00000 n +0000001400 00000 n +0000001694 00000 n +0000001714 00000 n +0000002013 00000 n +0000002033 00000 n +0000002356 00000 n +0000002679 00000 n +0000003000 00000 n +0000003260 00000 n +0000003494 00000 n +0000003664 00000 n +0000003834 00000 n +0000004004 00000 n +0000004190 00000 n +0000004327 00000 n +0000004347 00000 n +0000004725 00000 n +0000004746 00000 n +0000005810 00000 n +0000005831 00000 n +0000005884 00000 n +0000006321 00000 n +0000006342 00000 n +0000006589 00000 n +0000006609 00000 n +0000007046 00000 n +0000007067 00000 n +0000007314 00000 n +0000007334 00000 n +0000007771 00000 n +0000007792 00000 n +0000008039 00000 n +0000008059 00000 n +0000008341 00000 n +0000008361 00000 n +0000008492 00000 n +0000008757 00000 n +0000008777 00000 n +0000009045 00000 n +0000009065 00000 n +0000009333 00000 n +0000009353 00000 n +0000009620 00000 n +0000009640 00000 n +0000009759 00000 n +0000009795 00000 n +0000009869 00000 n +0000010077 00000 n +0000010097 00000 n +0000010135 00000 n trailer << /Root 1 0 R - /Size 62 + /Size 60 /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] >> startxref -10175 +10216 %%EOF diff --git a/qpdf/qtest/qpdf/overlay-copy-annotations-p6.pdf b/qpdf/qtest/qpdf/overlay-copy-annotations-p6.pdf index 2e661246..e3f66f69 100644 --- a/qpdf/qtest/qpdf/overlay-copy-annotations-p6.pdf +++ b/qpdf/qtest/qpdf/overlay-copy-annotations-p6.pdf @@ -116,11 +116,7 @@ endobj 15 0 R 16 0 R ] - /Contents [ - 23 0 R - 25 0 R - 27 0 R - ] + /Contents 23 0 R /MediaBox [ 0 0 @@ -129,12 +125,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 29 0 R - >> - /ProcSet 30 0 R /XObject << - /Fx1 31 0 R + /Fx0 25 0 R + /Fx1 27 0 R >> >> /Rotate 90 @@ -168,7 +161,7 @@ endobj 570 192 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject /Length 11 0 R @@ -205,7 +198,7 @@ endobj -192 570 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject /Length 13 0 R @@ -230,8 +223,8 @@ endobj << /AP << /N << - /1 34 0 R - /Off 36 0 R + /1 30 0 R + /Off 32 0 R >> >> /AS /1 @@ -258,8 +251,8 @@ endobj << /AP << /N << - /2 38 0 R - /Off 40 0 R + /2 34 0 R + /Off 36 0 R >> >> /AS /2 @@ -286,8 +279,8 @@ endobj << /AP << /N << - /3 42 0 R - /Off 44 0 R + /3 38 0 R + /Off 40 0 R >> >> /AS /3 @@ -341,10 +334,10 @@ endobj 18 0 obj << /AP << - /N 46 0 R + /N 42 0 R >> /Contents (attachment1.txt) - /FS 48 0 R + /FS 44 0 R /NM (attachment1.txt) /Rect [ 290 @@ -360,7 +353,7 @@ endobj 19 0 obj << /AP << - /N 49 0 R + /N 45 0 R >> /DA () /Rect [ @@ -377,7 +370,7 @@ endobj 20 0 obj << /AP << - /N 51 0 R + /N 47 0 R >> /DA () /Rect [ @@ -394,7 +387,7 @@ endobj 21 0 obj << /AP << - /N 53 0 R + /N 49 0 R >> /DA () /Rect [ @@ -411,7 +404,7 @@ endobj 22 0 obj << /AP << - /N 55 0 R + /N 51 0 R >> /DA () /Rect [ @@ -432,16 +425,44 @@ endobj >> stream q +0 0.66667 -0.66667 0 612 0 cm +/Fx0 Do +Q +q +0 0.66667 -0.66667 0 570 192 cm +/Fx1 Do +Q endstream endobj 24 0 obj -2 +86 endobj -%% Contents for page 1 25 0 obj << + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1.5 + 1.5 + 0 + 0 + 918 + ] + /Resources << + /Font << + /F1 53 0 R + >> + /ProcSet 54 0 R + >> + /Subtype /Form + /Type /XObject /Length 26 0 R >> stream @@ -462,43 +483,7 @@ endobj 123 endobj -%% Contents for page 1 27 0 obj -<< - /Length 28 0 R ->> -stream - -Q -q -0 0.66667 -0.66667 0 570 192 cm -/Fx1 Do -Q -endstream -endobj - -28 0 obj -47 -endobj - -29 0 obj -<< - /BaseFont /Helvetica - /Encoding /WinAnsiEncoding - /Name /F1 - /Subtype /Type1 - /Type /Font ->> -endobj - -30 0 obj -[ - /PDF - /Text -] -endobj - -31 0 obj << /BBox [ 0 @@ -513,7 +498,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 32 0 R + /Length 28 0 R >> stream q @@ -581,11 +566,11 @@ ET endstream endobj -32 0 obj +28 0 obj 874 endobj -33 0 obj +29 0 obj << /Font << /F1 9 0 R @@ -593,7 +578,7 @@ endobj >> endobj -34 0 obj +30 0 obj << /BBox [ 0 @@ -609,10 +594,10 @@ endobj 570 192 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 35 0 R + /Length 31 0 R >> stream /Tx BMC @@ -631,11 +616,11 @@ EMC endstream endobj -35 0 obj +31 0 obj 202 endobj -36 0 obj +32 0 obj << /BBox [ 0 @@ -651,10 +636,10 @@ endobj 570 192 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 37 0 R + /Length 33 0 R >> stream /Tx BMC @@ -662,11 +647,11 @@ EMC endstream endobj -37 0 obj +33 0 obj 12 endobj -38 0 obj +34 0 obj << /BBox [ 0 @@ -682,10 +667,10 @@ endobj 570 192 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 39 0 R + /Length 35 0 R >> stream /Tx BMC @@ -704,11 +689,11 @@ EMC endstream endobj -39 0 obj +35 0 obj 202 endobj -40 0 obj +36 0 obj << /BBox [ 0 @@ -724,10 +709,10 @@ endobj 570 192 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 41 0 R + /Length 37 0 R >> stream /Tx BMC @@ -735,11 +720,11 @@ EMC endstream endobj -41 0 obj +37 0 obj 12 endobj -42 0 obj +38 0 obj << /BBox [ 0 @@ -755,10 +740,10 @@ endobj 570 192 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 43 0 R + /Length 39 0 R >> stream /Tx BMC @@ -777,11 +762,11 @@ EMC endstream endobj -43 0 obj +39 0 obj 202 endobj -44 0 obj +40 0 obj << /BBox [ 0 @@ -797,10 +782,10 @@ endobj 570 192 ] - /Resources 57 0 R + /Resources 55 0 R /Subtype /Form /Type /XObject - /Length 45 0 R + /Length 41 0 R >> stream /Tx BMC @@ -808,11 +793,11 @@ EMC endstream endobj -45 0 obj +41 0 obj 12 endobj -46 0 obj +42 0 obj << /BBox [ 0 @@ -832,7 +817,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 47 0 R + /Length 43 0 R >> stream 0 10 m @@ -845,15 +830,15 @@ S endstream endobj -47 0 obj +43 0 obj 52 endobj -48 0 obj +44 0 obj << /EF << - /F 58 0 R - /UF 58 0 R + /F 56 0 R + /UF 56 0 R >> /F (attachment1.txt) /Type /Filespec @@ -861,7 +846,7 @@ endobj >> endobj -49 0 obj +45 0 obj << /BBox [ 0 @@ -877,10 +862,10 @@ endobj 570 192 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 50 0 R + /Length 46 0 R >> stream 1 0 0 RG @@ -890,11 +875,11 @@ S endstream endobj -50 0 obj +46 0 obj 36 endobj -51 0 obj +47 0 obj << /BBox [ 0 @@ -910,10 +895,10 @@ endobj -192 570 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 52 0 R + /Length 48 0 R >> stream 0 1 0 RG @@ -923,11 +908,11 @@ S endstream endobj -52 0 obj +48 0 obj 36 endobj -53 0 obj +49 0 obj << /BBox [ 0 @@ -943,10 +928,10 @@ endobj -570 -192 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 54 0 R + /Length 50 0 R >> stream 0 0 1 RG @@ -956,11 +941,11 @@ S endstream endobj -54 0 obj +50 0 obj 36 endobj -55 0 obj +51 0 obj << /BBox [ 0 @@ -976,10 +961,10 @@ endobj 192 -570 ] - /Resources 33 0 R + /Resources 29 0 R /Subtype /Form /Type /XObject - /Length 56 0 R + /Length 52 0 R >> stream 0.5 0 1 RG @@ -989,13 +974,30 @@ S endstream endobj -56 0 obj +52 0 obj 38 endobj -57 0 obj +53 0 obj << - /Font 60 0 R + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +54 0 obj +[ + /PDF + /Text +] +endobj + +55 0 obj +<< + /Font 58 0 R /ProcSet [ /PDF /Text @@ -1003,7 +1005,7 @@ endobj >> endobj -58 0 obj +56 0 obj << /Params << /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc> @@ -1011,24 +1013,24 @@ endobj /Subtype /text#2fplain >> /Type /EmbeddedFile - /Length 59 0 R + /Length 57 0 R >> stream content of attachment endstream endobj -59 0 obj +57 0 obj 22 endobj -60 0 obj +58 0 obj << - /ZaDi 61 0 R + /ZaDi 59 0 R >> endobj -61 0 obj +59 0 obj << /BaseFont /ZapfDingbats /Subtype /Type1 @@ -1037,7 +1039,7 @@ endobj endobj xref -0 62 +0 60 0000000000 65535 f 0000000025 00000 n 0000000097 00000 n @@ -1047,64 +1049,62 @@ xref 0000000552 00000 n 0000000804 00000 n 0000000933 00000 n -0000001365 00000 n -0000001469 00000 n -0000001756 00000 n -0000001776 00000 n -0000002068 00000 n -0000002088 00000 n -0000002405 00000 n -0000002728 00000 n -0000003045 00000 n -0000003296 00000 n -0000003516 00000 n -0000003672 00000 n -0000003835 00000 n -0000003998 00000 n -0000004184 00000 n -0000004243 00000 n -0000004285 00000 n -0000004465 00000 n -0000004509 00000 n -0000004613 00000 n -0000004633 00000 n -0000004752 00000 n -0000004788 00000 n -0000005852 00000 n -0000005873 00000 n -0000005926 00000 n -0000006356 00000 n -0000006377 00000 n -0000006617 00000 n -0000006637 00000 n -0000007067 00000 n -0000007088 00000 n -0000007328 00000 n -0000007348 00000 n -0000007778 00000 n -0000007799 00000 n -0000008039 00000 n -0000008059 00000 n -0000008334 00000 n -0000008354 00000 n -0000008485 00000 n -0000008743 00000 n -0000008763 00000 n -0000009024 00000 n -0000009044 00000 n -0000009305 00000 n -0000009325 00000 n -0000009585 00000 n -0000009605 00000 n -0000009679 00000 n -0000009887 00000 n -0000009907 00000 n -0000009945 00000 n +0000001294 00000 n +0000001398 00000 n +0000001685 00000 n +0000001705 00000 n +0000001997 00000 n +0000002017 00000 n +0000002334 00000 n +0000002657 00000 n +0000002974 00000 n +0000003225 00000 n +0000003445 00000 n +0000003601 00000 n +0000003764 00000 n +0000003927 00000 n +0000004113 00000 n +0000004256 00000 n +0000004276 00000 n +0000004669 00000 n +0000004690 00000 n +0000005754 00000 n +0000005775 00000 n +0000005828 00000 n +0000006258 00000 n +0000006279 00000 n +0000006519 00000 n +0000006539 00000 n +0000006969 00000 n +0000006990 00000 n +0000007230 00000 n +0000007250 00000 n +0000007680 00000 n +0000007701 00000 n +0000007941 00000 n +0000007961 00000 n +0000008236 00000 n +0000008256 00000 n +0000008387 00000 n +0000008645 00000 n +0000008665 00000 n +0000008926 00000 n +0000008946 00000 n +0000009207 00000 n +0000009227 00000 n +0000009487 00000 n +0000009507 00000 n +0000009626 00000 n +0000009662 00000 n +0000009736 00000 n +0000009944 00000 n +0000009964 00000 n +0000010002 00000 n trailer << /Root 1 0 R - /Size 62 + /Size 60 /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] >> startxref -10026 +10083 %%EOF diff --git a/qpdf/qtest/qpdf/overlay-copy-annotations.pdf b/qpdf/qtest/qpdf/overlay-copy-annotations.pdf index 4a5c19d5..3684f44b 100644 --- a/qpdf/qtest/qpdf/overlay-copy-annotations.pdf +++ b/qpdf/qtest/qpdf/overlay-copy-annotations.pdf @@ -1091,11 +1091,7 @@ endobj 75 0 R 76 0 R ] - /Contents [ - 188 0 R - 190 0 R - 192 0 R - ] + /Contents 188 0 R /MediaBox [ 0 0 @@ -1104,12 +1100,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 190 0 R + /Fx1 192 0 R >> >> /Type /Page @@ -1120,23 +1113,19 @@ endobj 54 0 obj << /Annots [ - 198 0 R + 194 0 R 8 0 R - 199 0 R + 195 0 R 9 0 R - 200 0 R - 201 0 R - 202 0 R - 203 0 R + 196 0 R + 197 0 R + 198 0 R + 199 0 R 81 0 R 82 0 R 83 0 R ] - /Contents [ - 204 0 R - 206 0 R - 208 0 R - ] + /Contents 200 0 R /MediaBox [ 0 0 @@ -1145,12 +1134,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 202 0 R + /Fx1 192 0 R >> >> /Type /Page @@ -1162,24 +1148,19 @@ endobj 55 0 obj << /Annots [ - 210 0 R + 204 0 R 11 0 R - 211 0 R + 205 0 R 12 0 R - 212 0 R - 213 0 R - 214 0 R - 215 0 R + 206 0 R + 207 0 R + 208 0 R + 209 0 R 88 0 R 89 0 R 90 0 R ] - /Contents [ - 216 0 R - 218 0 R - 220 0 R - 222 0 R - ] + /Contents 210 0 R /MediaBox [ 0 0 @@ -1188,12 +1169,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 212 0 R + /Fx1 192 0 R >> >> /Type /Page @@ -1204,23 +1182,19 @@ endobj 56 0 obj << /Annots [ - 224 0 R + 214 0 R 14 0 R - 225 0 R + 215 0 R 15 0 R - 226 0 R - 227 0 R - 228 0 R - 229 0 R + 216 0 R + 217 0 R + 218 0 R + 219 0 R 95 0 R 96 0 R 97 0 R ] - /Contents [ - 230 0 R - 232 0 R - 234 0 R - ] + /Contents 220 0 R /MediaBox [ 0 0 @@ -1229,12 +1203,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 222 0 R + /Fx1 192 0 R >> >> /Type /Page @@ -1245,23 +1216,19 @@ endobj 57 0 obj << /Annots [ - 236 0 R + 224 0 R 17 0 R - 237 0 R + 225 0 R 18 0 R - 238 0 R - 239 0 R - 240 0 R - 241 0 R + 226 0 R + 227 0 R + 228 0 R + 229 0 R 102 0 R 103 0 R 104 0 R ] - /Contents [ - 242 0 R - 244 0 R - 246 0 R - ] + /Contents 230 0 R /MediaBox [ 0 0 @@ -1270,12 +1237,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 232 0 R + /Fx1 192 0 R >> >> /Rotate 90 @@ -1287,23 +1251,19 @@ endobj 58 0 obj << /Annots [ - 248 0 R + 234 0 R 20 0 R - 249 0 R + 235 0 R 21 0 R - 250 0 R - 251 0 R - 252 0 R - 253 0 R + 236 0 R + 237 0 R + 238 0 R + 239 0 R 109 0 R 110 0 R 111 0 R ] - /Contents [ - 254 0 R - 256 0 R - 258 0 R - ] + /Contents 240 0 R /MediaBox [ 0 0 @@ -1312,12 +1272,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 242 0 R + /Fx1 192 0 R >> >> /Rotate 90 @@ -1330,23 +1287,19 @@ endobj 59 0 obj << /Annots [ - 260 0 R + 244 0 R 23 0 R - 261 0 R + 245 0 R 24 0 R - 262 0 R - 263 0 R - 264 0 R - 265 0 R + 246 0 R + 247 0 R + 248 0 R + 249 0 R 116 0 R 117 0 R 118 0 R ] - /Contents [ - 266 0 R - 268 0 R - 270 0 R - ] + /Contents 250 0 R /MediaBox [ 0 0 @@ -1355,12 +1308,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 252 0 R + /Fx1 192 0 R >> >> /Rotate 90 @@ -1372,23 +1322,19 @@ endobj 60 0 obj << /Annots [ - 272 0 R + 254 0 R 26 0 R - 273 0 R + 255 0 R 27 0 R - 274 0 R - 275 0 R - 276 0 R - 277 0 R + 256 0 R + 257 0 R + 258 0 R + 259 0 R 123 0 R 124 0 R 125 0 R ] - /Contents [ - 278 0 R - 280 0 R - 282 0 R - ] + /Contents 260 0 R /MediaBox [ 0 0 @@ -1397,12 +1343,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 262 0 R + /Fx1 192 0 R >> >> /Rotate 90 @@ -1414,23 +1357,19 @@ endobj 61 0 obj << /Annots [ - 284 0 R + 264 0 R 29 0 R - 285 0 R + 265 0 R 30 0 R - 286 0 R - 287 0 R - 288 0 R - 289 0 R + 266 0 R + 267 0 R + 268 0 R + 269 0 R 130 0 R 131 0 R 132 0 R ] - /Contents [ - 290 0 R - 292 0 R - 294 0 R - ] + /Contents 270 0 R /MediaBox [ 0 0 @@ -1439,12 +1378,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 272 0 R + /Fx1 192 0 R >> >> /Rotate 180 @@ -1456,23 +1392,19 @@ endobj 62 0 obj << /Annots [ - 296 0 R + 274 0 R 32 0 R - 297 0 R + 275 0 R 33 0 R - 298 0 R - 299 0 R - 300 0 R - 301 0 R + 276 0 R + 277 0 R + 278 0 R + 279 0 R 137 0 R 138 0 R 139 0 R ] - /Contents [ - 302 0 R - 304 0 R - 306 0 R - ] + /Contents 280 0 R /MediaBox [ 0 0 @@ -1481,12 +1413,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 282 0 R + /Fx1 192 0 R >> >> /Rotate 180 @@ -1499,23 +1428,19 @@ endobj 63 0 obj << /Annots [ - 308 0 R + 284 0 R 35 0 R - 309 0 R + 285 0 R 36 0 R - 310 0 R - 311 0 R - 312 0 R - 313 0 R + 286 0 R + 287 0 R + 288 0 R + 289 0 R 144 0 R 145 0 R 146 0 R ] - /Contents [ - 314 0 R - 316 0 R - 318 0 R - ] + /Contents 290 0 R /MediaBox [ 0 0 @@ -1524,12 +1449,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 292 0 R + /Fx1 192 0 R >> >> /Rotate 180 @@ -1541,23 +1463,19 @@ endobj 64 0 obj << /Annots [ - 320 0 R + 294 0 R 38 0 R - 321 0 R + 295 0 R 39 0 R - 322 0 R - 323 0 R - 324 0 R - 325 0 R + 296 0 R + 297 0 R + 298 0 R + 299 0 R 151 0 R 152 0 R 153 0 R ] - /Contents [ - 326 0 R - 328 0 R - 330 0 R - ] + /Contents 300 0 R /MediaBox [ 0 0 @@ -1566,12 +1484,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 302 0 R + /Fx1 192 0 R >> >> /Rotate 180 @@ -1583,23 +1498,19 @@ endobj 65 0 obj << /Annots [ - 332 0 R + 304 0 R 41 0 R - 333 0 R + 305 0 R 42 0 R - 334 0 R - 335 0 R - 336 0 R - 337 0 R + 306 0 R + 307 0 R + 308 0 R + 309 0 R 158 0 R 159 0 R 160 0 R ] - /Contents [ - 338 0 R - 340 0 R - 342 0 R - ] + /Contents 310 0 R /MediaBox [ 0 0 @@ -1608,12 +1519,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 312 0 R + /Fx1 192 0 R >> >> /Rotate 270 @@ -1625,23 +1533,19 @@ endobj 66 0 obj << /Annots [ - 344 0 R + 314 0 R 44 0 R - 345 0 R + 315 0 R 45 0 R - 346 0 R - 347 0 R - 348 0 R - 349 0 R + 316 0 R + 317 0 R + 318 0 R + 319 0 R 165 0 R 166 0 R 167 0 R ] - /Contents [ - 350 0 R - 352 0 R - 354 0 R - ] + /Contents 320 0 R /MediaBox [ 0 0 @@ -1650,12 +1554,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 322 0 R + /Fx1 192 0 R >> >> /Rotate 270 @@ -1668,23 +1569,19 @@ endobj 67 0 obj << /Annots [ - 356 0 R + 324 0 R 47 0 R - 357 0 R + 325 0 R 48 0 R - 358 0 R - 359 0 R - 360 0 R - 361 0 R + 326 0 R + 327 0 R + 328 0 R + 329 0 R 172 0 R 173 0 R 174 0 R ] - /Contents [ - 362 0 R - 364 0 R - 366 0 R - ] + /Contents 330 0 R /MediaBox [ 0 0 @@ -1693,12 +1590,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 332 0 R + /Fx1 192 0 R >> >> /Rotate 270 @@ -1710,23 +1604,19 @@ endobj 68 0 obj << /Annots [ - 368 0 R + 334 0 R 50 0 R - 369 0 R + 335 0 R 51 0 R - 370 0 R - 371 0 R - 372 0 R - 373 0 R + 336 0 R + 337 0 R + 338 0 R + 339 0 R 179 0 R 180 0 R 181 0 R ] - /Contents [ - 374 0 R - 376 0 R - 378 0 R - ] + /Contents 340 0 R /MediaBox [ 0 0 @@ -1735,12 +1625,9 @@ endobj ] /Parent 3 0 R /Resources << - /Font << - /F1 194 0 R - >> - /ProcSet 195 0 R /XObject << - /Fx1 196 0 R + /Fx0 342 0 R + /Fx1 192 0 R >> >> /Rotate 270 @@ -1765,7 +1652,7 @@ endobj 118.8 11.322 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 71 0 R @@ -1802,7 +1689,7 @@ endobj 0 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 73 0 R @@ -1827,8 +1714,8 @@ endobj << /AP << /N << - /1 381 0 R - /Off 383 0 R + /1 345 0 R + /Off 347 0 R >> >> /AS /1 @@ -1855,8 +1742,8 @@ endobj << /AP << /N << - /2 385 0 R - /Off 387 0 R + /2 349 0 R + /Off 351 0 R >> >> /AS /2 @@ -1883,8 +1770,8 @@ endobj << /AP << /N << - /3 389 0 R - /Off 391 0 R + /3 353 0 R + /Off 355 0 R >> >> /AS /3 @@ -1923,7 +1810,7 @@ endobj 153 198 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 78 0 R @@ -1960,7 +1847,7 @@ endobj -198 153 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 80 0 R @@ -1985,8 +1872,8 @@ endobj << /AP << /N << - /1 393 0 R - /Off 395 0 R + /1 357 0 R + /Off 359 0 R >> >> /AS /1 @@ -2013,8 +1900,8 @@ endobj << /AP << /N << - /2 397 0 R - /Off 399 0 R + /2 361 0 R + /Off 363 0 R >> >> /AS /2 @@ -2041,8 +1928,8 @@ endobj << /AP << /N << - /3 401 0 R - /Off 403 0 R + /3 365 0 R + /Off 367 0 R >> >> /AS /3 @@ -2073,7 +1960,7 @@ endobj 118.8 11.322 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 85 0 R @@ -2110,7 +1997,7 @@ endobj 0 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 87 0 R @@ -2135,8 +2022,8 @@ endobj << /AP << /N << - /1 405 0 R - /Off 407 0 R + /1 369 0 R + /Off 371 0 R >> >> /AS /1 @@ -2163,8 +2050,8 @@ endobj << /AP << /N << - /2 409 0 R - /Off 411 0 R + /2 373 0 R + /Off 375 0 R >> >> /AS /2 @@ -2191,8 +2078,8 @@ endobj << /AP << /N << - /3 413 0 R - /Off 415 0 R + /3 377 0 R + /Off 379 0 R >> >> /AS /3 @@ -2223,7 +2110,7 @@ endobj 118.8 11.322 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 92 0 R @@ -2260,7 +2147,7 @@ endobj 0 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 94 0 R @@ -2285,8 +2172,8 @@ endobj << /AP << /N << - /1 417 0 R - /Off 419 0 R + /1 381 0 R + /Off 383 0 R >> >> /AS /1 @@ -2313,8 +2200,8 @@ endobj << /AP << /N << - /2 421 0 R - /Off 423 0 R + /2 385 0 R + /Off 387 0 R >> >> /AS /2 @@ -2341,8 +2228,8 @@ endobj << /AP << /N << - /3 425 0 R - /Off 427 0 R + /3 389 0 R + /Off 391 0 R >> >> /AS /3 @@ -2381,7 +2268,7 @@ endobj 612 159.545455 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 99 0 R @@ -2418,7 +2305,7 @@ endobj -159.545455 612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 101 0 R @@ -2443,8 +2330,8 @@ endobj << /AP << /N << - /1 429 0 R - /Off 431 0 R + /1 393 0 R + /Off 395 0 R >> >> /AS /1 @@ -2471,8 +2358,8 @@ endobj << /AP << /N << - /2 433 0 R - /Off 435 0 R + /2 397 0 R + /Off 399 0 R >> >> /AS /2 @@ -2499,8 +2386,8 @@ endobj << /AP << /N << - /3 437 0 R - /Off 439 0 R + /3 401 0 R + /Off 403 0 R >> >> /AS /3 @@ -2539,7 +2426,7 @@ endobj 570 192 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 106 0 R @@ -2576,7 +2463,7 @@ endobj -192 570 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 108 0 R @@ -2601,8 +2488,8 @@ endobj << /AP << /N << - /1 441 0 R - /Off 443 0 R + /1 405 0 R + /Off 407 0 R >> >> /AS /1 @@ -2629,8 +2516,8 @@ endobj << /AP << /N << - /2 445 0 R - /Off 447 0 R + /2 409 0 R + /Off 411 0 R >> >> /AS /2 @@ -2657,8 +2544,8 @@ endobj << /AP << /N << - /3 449 0 R - /Off 451 0 R + /3 413 0 R + /Off 415 0 R >> >> /AS /3 @@ -2697,7 +2584,7 @@ endobj 612 159.545455 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 113 0 R @@ -2734,7 +2621,7 @@ endobj -159.545455 612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 115 0 R @@ -2759,8 +2646,8 @@ endobj << /AP << /N << - /1 453 0 R - /Off 455 0 R + /1 417 0 R + /Off 419 0 R >> >> /AS /1 @@ -2787,8 +2674,8 @@ endobj << /AP << /N << - /2 457 0 R - /Off 459 0 R + /2 421 0 R + /Off 423 0 R >> >> /AS /2 @@ -2815,8 +2702,8 @@ endobj << /AP << /N << - /3 461 0 R - /Off 463 0 R + /3 425 0 R + /Off 427 0 R >> >> /AS /3 @@ -2855,7 +2742,7 @@ endobj 612 159.545455 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 120 0 R @@ -2892,7 +2779,7 @@ endobj -159.545455 612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 122 0 R @@ -2917,8 +2804,8 @@ endobj << /AP << /N << - /1 465 0 R - /Off 467 0 R + /1 429 0 R + /Off 431 0 R >> >> /AS /1 @@ -2945,8 +2832,8 @@ endobj << /AP << /N << - /2 469 0 R - /Off 471 0 R + /2 433 0 R + /Off 435 0 R >> >> /AS /2 @@ -2973,8 +2860,8 @@ endobj << /AP << /N << - /3 473 0 R - /Off 475 0 R + /3 437 0 R + /Off 439 0 R >> >> /AS /3 @@ -3013,7 +2900,7 @@ endobj 612 792 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 127 0 R @@ -3050,7 +2937,7 @@ endobj -792 612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 129 0 R @@ -3075,8 +2962,8 @@ endobj << /AP << /N << - /1 477 0 R - /Off 479 0 R + /1 441 0 R + /Off 443 0 R >> >> /AS /1 @@ -3103,8 +2990,8 @@ endobj << /AP << /N << - /2 481 0 R - /Off 483 0 R + /2 445 0 R + /Off 447 0 R >> >> /AS /2 @@ -3131,8 +3018,8 @@ endobj << /AP << /N << - /3 485 0 R - /Off 487 0 R + /3 449 0 R + /Off 451 0 R >> >> /AS /3 @@ -3171,7 +3058,7 @@ endobj 612 792 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 134 0 R @@ -3208,7 +3095,7 @@ endobj -792 612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 136 0 R @@ -3233,8 +3120,8 @@ endobj << /AP << /N << - /1 489 0 R - /Off 491 0 R + /1 453 0 R + /Off 455 0 R >> >> /AS /1 @@ -3261,8 +3148,8 @@ endobj << /AP << /N << - /2 493 0 R - /Off 495 0 R + /2 457 0 R + /Off 459 0 R >> >> /AS /2 @@ -3289,8 +3176,8 @@ endobj << /AP << /N << - /3 497 0 R - /Off 499 0 R + /3 461 0 R + /Off 463 0 R >> >> /AS /3 @@ -3329,7 +3216,7 @@ endobj 612 792 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 141 0 R @@ -3366,7 +3253,7 @@ endobj -792 612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 143 0 R @@ -3391,8 +3278,8 @@ endobj << /AP << /N << - /1 501 0 R - /Off 503 0 R + /1 465 0 R + /Off 467 0 R >> >> /AS /1 @@ -3419,8 +3306,8 @@ endobj << /AP << /N << - /2 505 0 R - /Off 507 0 R + /2 469 0 R + /Off 471 0 R >> >> /AS /2 @@ -3447,8 +3334,8 @@ endobj << /AP << /N << - /3 509 0 R - /Off 511 0 R + /3 473 0 R + /Off 475 0 R >> >> /AS /3 @@ -3487,7 +3374,7 @@ endobj 612 792 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 148 0 R @@ -3524,7 +3411,7 @@ endobj -792 612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 150 0 R @@ -3549,8 +3436,8 @@ endobj << /AP << /N << - /1 513 0 R - /Off 515 0 R + /1 477 0 R + /Off 479 0 R >> >> /AS /1 @@ -3577,8 +3464,8 @@ endobj << /AP << /N << - /2 517 0 R - /Off 519 0 R + /2 481 0 R + /Off 483 0 R >> >> /AS /2 @@ -3605,8 +3492,8 @@ endobj << /AP << /N << - /3 521 0 R - /Off 523 0 R + /3 485 0 R + /Off 487 0 R >> >> /AS /3 @@ -3645,7 +3532,7 @@ endobj 0 632.454545 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 155 0 R @@ -3682,7 +3569,7 @@ endobj -632.454545 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 157 0 R @@ -3707,8 +3594,8 @@ endobj << /AP << /N << - /1 525 0 R - /Off 527 0 R + /1 489 0 R + /Off 491 0 R >> >> /AS /1 @@ -3735,8 +3622,8 @@ endobj << /AP << /N << - /2 529 0 R - /Off 531 0 R + /2 493 0 R + /Off 495 0 R >> >> /AS /2 @@ -3763,8 +3650,8 @@ endobj << /AP << /N << - /3 533 0 R - /Off 535 0 R + /3 497 0 R + /Off 499 0 R >> >> /AS /3 @@ -3803,7 +3690,7 @@ endobj 0 632.454545 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 162 0 R @@ -3840,7 +3727,7 @@ endobj -632.454545 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 164 0 R @@ -3865,8 +3752,8 @@ endobj << /AP << /N << - /1 537 0 R - /Off 539 0 R + /1 501 0 R + /Off 503 0 R >> >> /AS /1 @@ -3893,8 +3780,8 @@ endobj << /AP << /N << - /2 541 0 R - /Off 543 0 R + /2 505 0 R + /Off 507 0 R >> >> /AS /2 @@ -3921,8 +3808,8 @@ endobj << /AP << /N << - /3 545 0 R - /Off 547 0 R + /3 509 0 R + /Off 511 0 R >> >> /AS /3 @@ -3961,7 +3848,7 @@ endobj 0 632.454545 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 169 0 R @@ -3998,7 +3885,7 @@ endobj -632.454545 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 171 0 R @@ -4023,8 +3910,8 @@ endobj << /AP << /N << - /1 549 0 R - /Off 551 0 R + /1 513 0 R + /Off 515 0 R >> >> /AS /1 @@ -4051,8 +3938,8 @@ endobj << /AP << /N << - /2 553 0 R - /Off 555 0 R + /2 517 0 R + /Off 519 0 R >> >> /AS /2 @@ -4079,8 +3966,8 @@ endobj << /AP << /N << - /3 557 0 R - /Off 559 0 R + /3 521 0 R + /Off 523 0 R >> >> /AS /3 @@ -4119,7 +4006,7 @@ endobj 0 632.454545 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 176 0 R @@ -4156,7 +4043,7 @@ endobj -632.454545 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject /Length 178 0 R @@ -4181,8 +4068,8 @@ endobj << /AP << /N << - /1 561 0 R - /Off 563 0 R + /1 525 0 R + /Off 527 0 R >> >> /AS /1 @@ -4209,8 +4096,8 @@ endobj << /AP << /N << - /2 565 0 R - /Off 567 0 R + /2 529 0 R + /Off 531 0 R >> >> /AS /2 @@ -4237,8 +4124,8 @@ endobj << /AP << /N << - /3 569 0 R - /Off 571 0 R + /3 533 0 R + /Off 535 0 R >> >> /AS /3 @@ -4292,10 +4179,10 @@ endobj 183 0 obj << /AP << - /N 573 0 R + /N 537 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 72 @@ -4311,7 +4198,7 @@ endobj 184 0 obj << /AP << - /N 576 0 R + /N 540 0 R >> /DA () /Rect [ @@ -4328,7 +4215,7 @@ endobj 185 0 obj << /AP << - /N 578 0 R + /N 542 0 R >> /DA () /Rect [ @@ -4345,7 +4232,7 @@ endobj 186 0 obj << /AP << - /N 580 0 R + /N 544 0 R >> /DA () /Rect [ @@ -4362,7 +4249,7 @@ endobj 187 0 obj << /AP << - /N 582 0 R + /N 546 0 R >> /DA () /Rect [ @@ -4383,16 +4270,36 @@ endobj >> stream q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +1 0 0 1 0 0 cm +/Fx1 Do +Q endstream endobj 189 0 obj -2 +54 endobj -%% Contents for page 1 190 0 obj << + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject /Length 191 0 R >> stream @@ -4413,43 +4320,7 @@ endobj 108 endobj -%% Contents for page 1 192 0 obj -<< - /Length 193 0 R ->> -stream - -Q -q -1 0 0 1 0 0 cm -/Fx1 Do -Q -endstream -endobj - -193 0 obj -30 -endobj - -194 0 obj -<< - /BaseFont /Helvetica - /Encoding /WinAnsiEncoding - /Name /F1 - /Subtype /Type1 - /Type /Font ->> -endobj - -195 0 obj -[ - /PDF - /Text -] -endobj - -196 0 obj << /BBox [ 0 @@ -4464,7 +4335,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 197 0 R + /Length 193 0 R >> stream q @@ -4532,11 +4403,11 @@ ET endstream endobj -197 0 obj +193 0 obj 874 endobj -198 0 obj +194 0 obj << /A << /S /URI @@ -4564,13 +4435,13 @@ endobj >> endobj -199 0 obj +195 0 obj << /AP << - /N 584 0 R + /N 550 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 189 @@ -4583,10 +4454,10 @@ endobj >> endobj -200 0 obj +196 0 obj << /AP << - /N 586 0 R + /N 552 0 R >> /DA () /Rect [ @@ -4600,10 +4471,10 @@ endobj >> endobj -201 0 obj +197 0 obj << /AP << - /N 588 0 R + /N 554 0 R >> /DA () /Rect [ @@ -4617,10 +4488,10 @@ endobj >> endobj -202 0 obj +198 0 obj << /AP << - /N 590 0 R + /N 556 0 R >> /DA () /Rect [ @@ -4634,10 +4505,10 @@ endobj >> endobj -203 0 obj +199 0 obj << /AP << - /N 592 0 R + /N 558 0 R >> /DA () /Rect [ @@ -4652,23 +4523,51 @@ endobj endobj %% Contents for page 2 -204 0 obj +200 0 obj << - /Length 205 0 R + /Length 201 0 R >> stream q +0.5 0 0 0.5 0 0 cm +/Fx0 Do +Q +q +0.5 0 0 0.5 153 198 cm +/Fx1 Do +Q endstream endobj -205 0 obj -2 +201 0 obj +66 endobj -%% Contents for page 2 -206 0 obj +202 0 obj << - /Length 207 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 2 + 0 + 0 + 2 + 0 + 0 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 203 0 R >> stream 1 0 0 RG @@ -4684,30 +4583,11 @@ ET endstream endobj -207 0 obj +203 0 obj 117 endobj -%% Contents for page 2 -208 0 obj -<< - /Length 209 0 R ->> -stream - -Q -q -0.5 0 0 0.5 153 198 cm -/Fx1 Do -Q -endstream -endobj - -209 0 obj -38 -endobj - -210 0 obj +204 0 obj << /A << /S /URI @@ -4735,13 +4615,13 @@ endobj >> endobj -211 0 obj +205 0 obj << /AP << - /N 594 0 R + /N 560 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 72 @@ -4754,10 +4634,10 @@ endobj >> endobj -212 0 obj +206 0 obj << /AP << - /N 596 0 R + /N 562 0 R >> /DA () /Rect [ @@ -4771,10 +4651,10 @@ endobj >> endobj -213 0 obj +207 0 obj << /AP << - /N 598 0 R + /N 564 0 R >> /DA () /Rect [ @@ -4788,10 +4668,10 @@ endobj >> endobj -214 0 obj +208 0 obj << /AP << - /N 600 0 R + /N 566 0 R >> /DA () /Rect [ @@ -4805,10 +4685,10 @@ endobj >> endobj -215 0 obj +209 0 obj << /AP << - /N 602 0 R + /N 568 0 R >> /DA () /Rect [ @@ -4823,23 +4703,43 @@ endobj endobj %% Contents for page 3 -216 0 obj +210 0 obj << - /Length 217 0 R + /Length 211 0 R >> stream q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +1 0 0 1 0 0 cm +/Fx1 Do +Q endstream endobj -217 0 obj -2 +211 0 obj +54 endobj -%% Contents for page 3 -218 0 obj +212 0 obj << - /Length 219 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 213 0 R >> stream 1 0 0 RG @@ -4847,19 +4747,6 @@ stream BT /F1 24 Tf 72 720 Td -endstream -endobj - -219 0 obj -45 -endobj - -%% Contents for page 3 -220 0 obj -<< - /Length 221 0 R ->> -stream (Page 3 - red) Tj ET 5 w @@ -4868,30 +4755,11 @@ ET endstream endobj -221 0 obj -63 -endobj - -%% Contents for page 3 -222 0 obj -<< - /Length 223 0 R ->> -stream - -Q -q -1 0 0 1 0 0 cm -/Fx1 Do -Q -endstream -endobj - -223 0 obj -30 +213 0 obj +108 endobj -224 0 obj +214 0 obj << /A << /S /URI @@ -4919,13 +4787,13 @@ endobj >> endobj -225 0 obj +215 0 obj << /AP << - /N 604 0 R + /N 570 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 72 @@ -4938,10 +4806,10 @@ endobj >> endobj -226 0 obj +216 0 obj << /AP << - /N 606 0 R + /N 572 0 R >> /DA () /Rect [ @@ -4955,10 +4823,10 @@ endobj >> endobj -227 0 obj +217 0 obj << /AP << - /N 608 0 R + /N 574 0 R >> /DA () /Rect [ @@ -4972,10 +4840,10 @@ endobj >> endobj -228 0 obj +218 0 obj << /AP << - /N 610 0 R + /N 576 0 R >> /DA () /Rect [ @@ -4989,10 +4857,10 @@ endobj >> endobj -229 0 obj +219 0 obj << /AP << - /N 612 0 R + /N 578 0 R >> /DA () /Rect [ @@ -5007,23 +4875,43 @@ endobj endobj %% Contents for page 4 -230 0 obj +220 0 obj << - /Length 231 0 R + /Length 221 0 R >> stream q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +1 0 0 1 0 0 cm +/Fx1 Do +Q endstream endobj -231 0 obj -2 +221 0 obj +54 endobj -%% Contents for page 4 -232 0 obj +222 0 obj << - /Length 233 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 223 0 R >> stream 1 0 0 RG @@ -5039,30 +4927,11 @@ ET endstream endobj -233 0 obj +223 0 obj 108 endobj -%% Contents for page 4 -234 0 obj -<< - /Length 235 0 R ->> -stream - -Q -q -1 0 0 1 0 0 cm -/Fx1 Do -Q -endstream -endobj - -235 0 obj -30 -endobj - -236 0 obj +224 0 obj << /A << /S /URI @@ -5090,13 +4959,13 @@ endobj >> endobj -237 0 obj +225 0 obj << /AP << - /N 614 0 R + /N 580 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 287.454545 @@ -5109,10 +4978,10 @@ endobj >> endobj -238 0 obj +226 0 obj << /AP << - /N 616 0 R + /N 582 0 R >> /DA () /Rect [ @@ -5126,10 +4995,10 @@ endobj >> endobj -239 0 obj +227 0 obj << /AP << - /N 618 0 R + /N 584 0 R >> /DA () /Rect [ @@ -5143,10 +5012,10 @@ endobj >> endobj -240 0 obj +228 0 obj << /AP << - /N 620 0 R + /N 586 0 R >> /DA () /Rect [ @@ -5160,10 +5029,10 @@ endobj >> endobj -241 0 obj +229 0 obj << /AP << - /N 622 0 R + /N 588 0 R >> /DA () /Rect [ @@ -5178,23 +5047,51 @@ endobj endobj %% Contents for page 5 -242 0 obj +230 0 obj << - /Length 243 0 R + /Length 231 0 R >> stream q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 0.77273 -0.77273 0 612 159.54545 cm +/Fx1 Do +Q endstream endobj -243 0 obj -2 +231 0 obj +80 endobj -%% Contents for page 5 -244 0 obj +232 0 obj << - /Length 245 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 233 0 R >> stream 1 0 0 RG @@ -5210,30 +5107,11 @@ ET endstream endobj -245 0 obj +233 0 obj 112 endobj -%% Contents for page 5 -246 0 obj -<< - /Length 247 0 R ->> -stream - -Q -q -0 0.77273 -0.77273 0 612 159.54545 cm -/Fx1 Do -Q -endstream -endobj - -247 0 obj -53 -endobj - -248 0 obj +234 0 obj << /A << /S /URI @@ -5261,13 +5139,13 @@ endobj >> endobj -249 0 obj +235 0 obj << /AP << - /N 624 0 R + /N 590 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 290 @@ -5280,10 +5158,10 @@ endobj >> endobj -250 0 obj +236 0 obj << /AP << - /N 626 0 R + /N 592 0 R >> /DA () /Rect [ @@ -5297,10 +5175,10 @@ endobj >> endobj -251 0 obj +237 0 obj << /AP << - /N 628 0 R + /N 594 0 R >> /DA () /Rect [ @@ -5314,10 +5192,10 @@ endobj >> endobj -252 0 obj +238 0 obj << /AP << - /N 630 0 R + /N 596 0 R >> /DA () /Rect [ @@ -5331,10 +5209,10 @@ endobj >> endobj -253 0 obj +239 0 obj << /AP << - /N 632 0 R + /N 598 0 R >> /DA () /Rect [ @@ -5349,23 +5227,51 @@ endobj endobj %% Contents for page 6 -254 0 obj +240 0 obj << - /Length 255 0 R + /Length 241 0 R >> stream q +0 0.66667 -0.66667 0 612 0 cm +/Fx0 Do +Q +q +0 0.66667 -0.66667 0 570 192 cm +/Fx1 Do +Q endstream endobj -255 0 obj -2 +241 0 obj +86 endobj -%% Contents for page 6 -256 0 obj +242 0 obj << - /Length 257 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1.5 + 1.5 + 0 + 0 + 918 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 243 0 R >> stream 1 0 0 RG @@ -5381,30 +5287,11 @@ ET endstream endobj -257 0 obj +243 0 obj 123 endobj -%% Contents for page 6 -258 0 obj -<< - /Length 259 0 R ->> -stream - -Q -q -0 0.66667 -0.66667 0 570 192 cm -/Fx1 Do -Q -endstream -endobj - -259 0 obj -47 -endobj - -260 0 obj +244 0 obj << /A << /S /URI @@ -5432,13 +5319,13 @@ endobj >> endobj -261 0 obj +245 0 obj << /AP << - /N 634 0 R + /N 600 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 287.454545 @@ -5451,10 +5338,10 @@ endobj >> endobj -262 0 obj +246 0 obj << /AP << - /N 636 0 R + /N 602 0 R >> /DA () /Rect [ @@ -5468,10 +5355,10 @@ endobj >> endobj -263 0 obj +247 0 obj << /AP << - /N 638 0 R + /N 604 0 R >> /DA () /Rect [ @@ -5485,10 +5372,10 @@ endobj >> endobj -264 0 obj +248 0 obj << /AP << - /N 640 0 R + /N 606 0 R >> /DA () /Rect [ @@ -5502,10 +5389,10 @@ endobj >> endobj -265 0 obj +249 0 obj << /AP << - /N 642 0 R + /N 608 0 R >> /DA () /Rect [ @@ -5520,23 +5407,51 @@ endobj endobj %% Contents for page 7 -266 0 obj +250 0 obj << - /Length 267 0 R + /Length 251 0 R >> stream q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 0.77273 -0.77273 0 612 159.54545 cm +/Fx1 Do +Q endstream endobj -267 0 obj -2 +251 0 obj +80 endobj -%% Contents for page 7 -268 0 obj +252 0 obj << - /Length 269 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 253 0 R >> stream 1 0 0 RG @@ -5552,30 +5467,11 @@ ET endstream endobj -269 0 obj +253 0 obj 112 endobj -%% Contents for page 7 -270 0 obj -<< - /Length 271 0 R ->> -stream - -Q -q -0 0.77273 -0.77273 0 612 159.54545 cm -/Fx1 Do -Q -endstream -endobj - -271 0 obj -53 -endobj - -272 0 obj +254 0 obj << /A << /S /URI @@ -5603,13 +5499,13 @@ endobj >> endobj -273 0 obj +255 0 obj << /AP << - /N 644 0 R + /N 610 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 287.454545 @@ -5622,10 +5518,10 @@ endobj >> endobj -274 0 obj +256 0 obj << /AP << - /N 646 0 R + /N 612 0 R >> /DA () /Rect [ @@ -5639,10 +5535,10 @@ endobj >> endobj -275 0 obj +257 0 obj << /AP << - /N 648 0 R + /N 614 0 R >> /DA () /Rect [ @@ -5656,10 +5552,10 @@ endobj >> endobj -276 0 obj +258 0 obj << /AP << - /N 650 0 R + /N 616 0 R >> /DA () /Rect [ @@ -5673,10 +5569,10 @@ endobj >> endobj -277 0 obj +259 0 obj << /AP << - /N 652 0 R + /N 618 0 R >> /DA () /Rect [ @@ -5691,23 +5587,51 @@ endobj endobj %% Contents for page 8 -278 0 obj +260 0 obj << - /Length 279 0 R + /Length 261 0 R >> stream q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 0.77273 -0.77273 0 612 159.54545 cm +/Fx1 Do +Q endstream endobj -279 0 obj -2 +261 0 obj +80 endobj -%% Contents for page 8 -280 0 obj +262 0 obj << - /Length 281 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 263 0 R >> stream 1 0 0 RG @@ -5723,30 +5647,11 @@ ET endstream endobj -281 0 obj +263 0 obj 112 endobj -%% Contents for page 8 -282 0 obj -<< - /Length 283 0 R ->> -stream - -Q -q -0 0.77273 -0.77273 0 612 159.54545 cm -/Fx1 Do -Q -endstream -endobj - -283 0 obj -53 -endobj - -284 0 obj +264 0 obj << /A << /S /URI @@ -5774,13 +5679,13 @@ endobj >> endobj -285 0 obj +265 0 obj << /AP << - /N 654 0 R + /N 620 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 520 @@ -5793,10 +5698,10 @@ endobj >> endobj -286 0 obj +266 0 obj << /AP << - /N 656 0 R + /N 622 0 R >> /DA () /Rect [ @@ -5810,10 +5715,10 @@ endobj >> endobj -287 0 obj +267 0 obj << /AP << - /N 658 0 R + /N 624 0 R >> /DA () /Rect [ @@ -5827,10 +5732,10 @@ endobj >> endobj -288 0 obj +268 0 obj << /AP << - /N 660 0 R + /N 626 0 R >> /DA () /Rect [ @@ -5844,10 +5749,10 @@ endobj >> endobj -289 0 obj +269 0 obj << /AP << - /N 662 0 R + /N 628 0 R >> /DA () /Rect [ @@ -5862,23 +5767,51 @@ endobj endobj %% Contents for page 9 -290 0 obj +270 0 obj << - /Length 291 0 R + /Length 271 0 R >> stream q +-1 0 0 -1 612 792 cm +/Fx0 Do +Q +q +-1 0 0 -1 612 792 cm +/Fx1 Do +Q endstream endobj -291 0 obj -2 +271 0 obj +66 endobj -%% Contents for page 9 -292 0 obj +272 0 obj << - /Length 293 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 273 0 R >> stream 1 0 0 RG @@ -5894,30 +5827,11 @@ ET endstream endobj -293 0 obj +273 0 obj 113 endobj -%% Contents for page 9 -294 0 obj -<< - /Length 295 0 R ->> -stream - -Q -q --1 0 0 -1 612 792 cm -/Fx1 Do -Q -endstream -endobj - -295 0 obj -36 -endobj - -296 0 obj +274 0 obj << /A << /S /URI @@ -5945,13 +5859,13 @@ endobj >> endobj -297 0 obj +275 0 obj << /AP << - /N 664 0 R + /N 630 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 520 @@ -5964,10 +5878,10 @@ endobj >> endobj -298 0 obj +276 0 obj << /AP << - /N 666 0 R + /N 632 0 R >> /DA () /Rect [ @@ -5981,10 +5895,10 @@ endobj >> endobj -299 0 obj +277 0 obj << /AP << - /N 668 0 R + /N 634 0 R >> /DA () /Rect [ @@ -5998,10 +5912,10 @@ endobj >> endobj -300 0 obj +278 0 obj << /AP << - /N 670 0 R + /N 636 0 R >> /DA () /Rect [ @@ -6015,10 +5929,10 @@ endobj >> endobj -301 0 obj +279 0 obj << /AP << - /N 672 0 R + /N 638 0 R >> /DA () /Rect [ @@ -6033,23 +5947,51 @@ endobj endobj %% Contents for page 10 -302 0 obj +280 0 obj << - /Length 303 0 R + /Length 281 0 R >> stream q +-1.33333 0 0 -1.33333 612 792 cm +/Fx0 Do +Q +q +-1 0 0 -1 612 792 cm +/Fx1 Do +Q endstream endobj -303 0 obj -2 +281 0 obj +78 endobj -%% Contents for page 10 -304 0 obj +282 0 obj << - /Length 305 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -0.75 + 0 + 0 + -0.75 + 459 + 594 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 283 0 R >> stream 1 0 0 RG @@ -6065,30 +6007,11 @@ ET endstream endobj -305 0 obj +283 0 obj 126 endobj -%% Contents for page 10 -306 0 obj -<< - /Length 307 0 R ->> -stream - -Q -q --1 0 0 -1 612 792 cm -/Fx1 Do -Q -endstream -endobj - -307 0 obj -36 -endobj - -308 0 obj +284 0 obj << /A << /S /URI @@ -6116,13 +6039,13 @@ endobj >> endobj -309 0 obj +285 0 obj << /AP << - /N 674 0 R + /N 640 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 520 @@ -6135,10 +6058,10 @@ endobj >> endobj -310 0 obj +286 0 obj << /AP << - /N 676 0 R + /N 642 0 R >> /DA () /Rect [ @@ -6152,10 +6075,10 @@ endobj >> endobj -311 0 obj +287 0 obj << /AP << - /N 678 0 R + /N 644 0 R >> /DA () /Rect [ @@ -6169,10 +6092,10 @@ endobj >> endobj -312 0 obj +288 0 obj << /AP << - /N 680 0 R + /N 646 0 R >> /DA () /Rect [ @@ -6186,10 +6109,10 @@ endobj >> endobj -313 0 obj +289 0 obj << /AP << - /N 682 0 R + /N 648 0 R >> /DA () /Rect [ @@ -6204,23 +6127,51 @@ endobj endobj %% Contents for page 11 -314 0 obj +290 0 obj << - /Length 315 0 R + /Length 291 0 R >> stream q +-1 0 0 -1 612 792 cm +/Fx0 Do +Q +q +-1 0 0 -1 612 792 cm +/Fx1 Do +Q endstream endobj -315 0 obj -2 +291 0 obj +66 endobj -%% Contents for page 11 -316 0 obj +292 0 obj << - /Length 317 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 293 0 R >> stream 1 0 0 RG @@ -6236,30 +6187,11 @@ ET endstream endobj -317 0 obj +293 0 obj 114 endobj -%% Contents for page 11 -318 0 obj -<< - /Length 319 0 R ->> -stream - -Q -q --1 0 0 -1 612 792 cm -/Fx1 Do -Q -endstream -endobj - -319 0 obj -36 -endobj - -320 0 obj +294 0 obj << /A << /S /URI @@ -6287,13 +6219,13 @@ endobj >> endobj -321 0 obj +295 0 obj << /AP << - /N 684 0 R + /N 650 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 520 @@ -6306,10 +6238,10 @@ endobj >> endobj -322 0 obj +296 0 obj << /AP << - /N 686 0 R + /N 652 0 R >> /DA () /Rect [ @@ -6323,10 +6255,10 @@ endobj >> endobj -323 0 obj +297 0 obj << /AP << - /N 688 0 R + /N 654 0 R >> /DA () /Rect [ @@ -6340,10 +6272,10 @@ endobj >> endobj -324 0 obj +298 0 obj << /AP << - /N 690 0 R + /N 656 0 R >> /DA () /Rect [ @@ -6357,10 +6289,10 @@ endobj >> endobj -325 0 obj +299 0 obj << /AP << - /N 692 0 R + /N 658 0 R >> /DA () /Rect [ @@ -6375,62 +6307,71 @@ endobj endobj %% Contents for page 12 -326 0 obj +300 0 obj << - /Length 327 0 R + /Length 301 0 R >> stream q +-1 0 0 -1 612 792 cm +/Fx0 Do +Q +q +-1 0 0 -1 612 792 cm +/Fx1 Do +Q endstream endobj -327 0 obj -2 -endobj - -%% Contents for page 12 -328 0 obj -<< - /Length 329 0 R ->> -stream -1 0 0 RG -1 0 0 rg -BT - /F1 24 Tf - 72 720 Td - (Page 12 - red, 180) Tj -ET -5 w -0 0 612 792 re s -271 371 60 60 re f -endstream -endobj - -329 0 obj -114 +301 0 obj +66 endobj -%% Contents for page 12 -330 0 obj +302 0 obj << - /Length 331 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 303 0 R >> stream - -Q -q --1 0 0 -1 612 792 cm -/Fx1 Do -Q +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 12 - red, 180) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f endstream endobj -331 0 obj -36 +303 0 obj +114 endobj -332 0 obj +304 0 obj << /A << /S /URI @@ -6458,13 +6399,13 @@ endobj >> endobj -333 0 obj +305 0 obj << /AP << - /N 694 0 R + /N 660 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 309.090909 @@ -6477,10 +6418,10 @@ endobj >> endobj -334 0 obj +306 0 obj << /AP << - /N 696 0 R + /N 662 0 R >> /DA () /Rect [ @@ -6494,10 +6435,10 @@ endobj >> endobj -335 0 obj +307 0 obj << /AP << - /N 698 0 R + /N 664 0 R >> /DA () /Rect [ @@ -6511,10 +6452,10 @@ endobj >> endobj -336 0 obj +308 0 obj << /AP << - /N 700 0 R + /N 666 0 R >> /DA () /Rect [ @@ -6528,10 +6469,10 @@ endobj >> endobj -337 0 obj +309 0 obj << /AP << - /N 702 0 R + /N 668 0 R >> /DA () /Rect [ @@ -6546,23 +6487,51 @@ endobj endobj %% Contents for page 13 -338 0 obj +310 0 obj << - /Length 339 0 R + /Length 311 0 R >> stream q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -0.77273 0.77273 0 0 632.45455 cm +/Fx1 Do +Q endstream endobj -339 0 obj -2 +311 0 obj +78 endobj -%% Contents for page 13 -340 0 obj +312 0 obj << - /Length 341 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 313 0 R >> stream 1 0 0 RG @@ -6578,30 +6547,11 @@ ET endstream endobj -341 0 obj +313 0 obj 114 endobj -%% Contents for page 13 -342 0 obj -<< - /Length 343 0 R ->> -stream - -Q -q -0 -0.77273 0.77273 0 0 632.45455 cm -/Fx1 Do -Q -endstream -endobj - -343 0 obj -51 -endobj - -344 0 obj +314 0 obj << /A << /S /URI @@ -6629,13 +6579,13 @@ endobj >> endobj -345 0 obj +315 0 obj << /AP << - /N 704 0 R + /N 670 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 309.090909 @@ -6648,10 +6598,10 @@ endobj >> endobj -346 0 obj +316 0 obj << /AP << - /N 706 0 R + /N 672 0 R >> /DA () /Rect [ @@ -6665,10 +6615,10 @@ endobj >> endobj -347 0 obj +317 0 obj << /AP << - /N 708 0 R + /N 674 0 R >> /DA () /Rect [ @@ -6682,10 +6632,10 @@ endobj >> endobj -348 0 obj +318 0 obj << /AP << - /N 710 0 R + /N 676 0 R >> /DA () /Rect [ @@ -6699,10 +6649,10 @@ endobj >> endobj -349 0 obj +319 0 obj << /AP << - /N 712 0 R + /N 678 0 R >> /DA () /Rect [ @@ -6717,23 +6667,51 @@ endobj endobj %% Contents for page 14 -350 0 obj +320 0 obj << - /Length 351 0 R + /Length 321 0 R >> stream q +0 -0.8 0.8 0 0 792 cm +/Fx0 Do +Q +q +0 -0.77273 0.77273 0 0 632.45455 cm +/Fx1 Do +Q endstream endobj -351 0 obj -2 +321 0 obj +82 endobj -%% Contents for page 14 -352 0 obj +322 0 obj << - /Length 353 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1.25 + -1.25 + 0 + 990 + 0 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 323 0 R >> stream 1 0 0 RG @@ -6749,30 +6727,11 @@ ET endstream endobj -353 0 obj +323 0 obj 126 endobj -%% Contents for page 14 -354 0 obj -<< - /Length 355 0 R ->> -stream - -Q -q -0 -0.77273 0.77273 0 0 632.45455 cm -/Fx1 Do -Q -endstream -endobj - -355 0 obj -51 -endobj - -356 0 obj +324 0 obj << /A << /S /URI @@ -6800,13 +6759,13 @@ endobj >> endobj -357 0 obj +325 0 obj << /AP << - /N 714 0 R + /N 680 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 309.090909 @@ -6819,10 +6778,10 @@ endobj >> endobj -358 0 obj +326 0 obj << /AP << - /N 716 0 R + /N 682 0 R >> /DA () /Rect [ @@ -6836,10 +6795,10 @@ endobj >> endobj -359 0 obj +327 0 obj << /AP << - /N 718 0 R + /N 684 0 R >> /DA () /Rect [ @@ -6853,10 +6812,10 @@ endobj >> endobj -360 0 obj +328 0 obj << /AP << - /N 720 0 R + /N 686 0 R >> /DA () /Rect [ @@ -6870,10 +6829,10 @@ endobj >> endobj -361 0 obj +329 0 obj << /AP << - /N 722 0 R + /N 688 0 R >> /DA () /Rect [ @@ -6888,23 +6847,51 @@ endobj endobj %% Contents for page 15 -362 0 obj +330 0 obj << - /Length 363 0 R + /Length 331 0 R >> stream q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -0.77273 0.77273 0 0 632.45455 cm +/Fx1 Do +Q endstream endobj -363 0 obj -2 +331 0 obj +78 endobj -%% Contents for page 15 -364 0 obj +332 0 obj << - /Length 365 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 333 0 R >> stream 1 0 0 RG @@ -6920,30 +6907,11 @@ ET endstream endobj -365 0 obj +333 0 obj 114 endobj -%% Contents for page 15 -366 0 obj -<< - /Length 367 0 R ->> -stream - -Q -q -0 -0.77273 0.77273 0 0 632.45455 cm -/Fx1 Do -Q -endstream -endobj - -367 0 obj -51 -endobj - -368 0 obj +334 0 obj << /A << /S /URI @@ -6971,13 +6939,13 @@ endobj >> endobj -369 0 obj +335 0 obj << /AP << - /N 724 0 R + /N 690 0 R >> /Contents (attachment1.txt) - /FS 575 0 R + /FS 539 0 R /NM (attachment1.txt) /Rect [ 309.090909 @@ -6990,10 +6958,10 @@ endobj >> endobj -370 0 obj +336 0 obj << /AP << - /N 726 0 R + /N 692 0 R >> /DA () /Rect [ @@ -7007,10 +6975,10 @@ endobj >> endobj -371 0 obj +337 0 obj << /AP << - /N 728 0 R + /N 694 0 R >> /DA () /Rect [ @@ -7024,10 +6992,10 @@ endobj >> endobj -372 0 obj +338 0 obj << /AP << - /N 730 0 R + /N 696 0 R >> /DA () /Rect [ @@ -7041,10 +7009,10 @@ endobj >> endobj -373 0 obj +339 0 obj << /AP << - /N 732 0 R + /N 698 0 R >> /DA () /Rect [ @@ -7059,23 +7027,51 @@ endobj endobj %% Contents for page 16 -374 0 obj +340 0 obj << - /Length 375 0 R + /Length 341 0 R >> stream q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -0.77273 0.77273 0 0 632.45455 cm +/Fx1 Do +Q endstream endobj -375 0 obj -2 +341 0 obj +78 endobj -%% Contents for page 16 -376 0 obj +342 0 obj << - /Length 377 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 548 0 R + >> + /ProcSet 549 0 R + >> + /Subtype /Form + /Type /XObject + /Length 343 0 R >> stream 1 0 0 RG @@ -7091,30 +7087,11 @@ ET endstream endobj -377 0 obj +343 0 obj 114 endobj -%% Contents for page 16 -378 0 obj -<< - /Length 379 0 R ->> -stream - -Q -q -0 -0.77273 0.77273 0 0 632.45455 cm -/Fx1 Do -Q -endstream -endobj - -379 0 obj -51 -endobj - -380 0 obj +344 0 obj << /Font << /F1 69 0 R @@ -7122,7 +7099,7 @@ endobj >> endobj -381 0 obj +345 0 obj << /BBox [ 0 @@ -7130,10 +7107,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 382 0 R + /Length 346 0 R >> stream /Tx BMC @@ -7152,11 +7129,11 @@ EMC endstream endobj -382 0 obj +346 0 obj 202 endobj -383 0 obj +347 0 obj << /BBox [ 0 @@ -7164,10 +7141,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 384 0 R + /Length 348 0 R >> stream /Tx BMC @@ -7175,11 +7152,11 @@ EMC endstream endobj -384 0 obj +348 0 obj 12 endobj -385 0 obj +349 0 obj << /BBox [ 0 @@ -7187,10 +7164,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 386 0 R + /Length 350 0 R >> stream /Tx BMC @@ -7209,11 +7186,11 @@ EMC endstream endobj -386 0 obj +350 0 obj 202 endobj -387 0 obj +351 0 obj << /BBox [ 0 @@ -7221,10 +7198,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 388 0 R + /Length 352 0 R >> stream /Tx BMC @@ -7232,11 +7209,11 @@ EMC endstream endobj -388 0 obj +352 0 obj 12 endobj -389 0 obj +353 0 obj << /BBox [ 0 @@ -7244,10 +7221,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 390 0 R + /Length 354 0 R >> stream /Tx BMC @@ -7266,11 +7243,11 @@ EMC endstream endobj -390 0 obj +354 0 obj 202 endobj -391 0 obj +355 0 obj << /BBox [ 0 @@ -7278,10 +7255,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 392 0 R + /Length 356 0 R >> stream /Tx BMC @@ -7289,11 +7266,11 @@ EMC endstream endobj -392 0 obj +356 0 obj 12 endobj -393 0 obj +357 0 obj << /BBox [ 0 @@ -7309,10 +7286,10 @@ endobj 153 198 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 394 0 R + /Length 358 0 R >> stream /Tx BMC @@ -7331,11 +7308,11 @@ EMC endstream endobj -394 0 obj +358 0 obj 202 endobj -395 0 obj +359 0 obj << /BBox [ 0 @@ -7351,10 +7328,10 @@ endobj 153 198 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 396 0 R + /Length 360 0 R >> stream /Tx BMC @@ -7362,11 +7339,11 @@ EMC endstream endobj -396 0 obj +360 0 obj 12 endobj -397 0 obj +361 0 obj << /BBox [ 0 @@ -7382,10 +7359,10 @@ endobj 153 198 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 398 0 R + /Length 362 0 R >> stream /Tx BMC @@ -7404,11 +7381,11 @@ EMC endstream endobj -398 0 obj +362 0 obj 202 endobj -399 0 obj +363 0 obj << /BBox [ 0 @@ -7424,10 +7401,10 @@ endobj 153 198 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 400 0 R + /Length 364 0 R >> stream /Tx BMC @@ -7435,11 +7412,11 @@ EMC endstream endobj -400 0 obj +364 0 obj 12 endobj -401 0 obj +365 0 obj << /BBox [ 0 @@ -7455,10 +7432,10 @@ endobj 153 198 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 402 0 R + /Length 366 0 R >> stream /Tx BMC @@ -7477,11 +7454,11 @@ EMC endstream endobj -402 0 obj +366 0 obj 202 endobj -403 0 obj +367 0 obj << /BBox [ 0 @@ -7497,10 +7474,10 @@ endobj 153 198 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 404 0 R + /Length 368 0 R >> stream /Tx BMC @@ -7508,11 +7485,11 @@ EMC endstream endobj -404 0 obj +368 0 obj 12 endobj -405 0 obj +369 0 obj << /BBox [ 0 @@ -7520,10 +7497,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 406 0 R + /Length 370 0 R >> stream /Tx BMC @@ -7542,11 +7519,11 @@ EMC endstream endobj -406 0 obj +370 0 obj 202 endobj -407 0 obj +371 0 obj << /BBox [ 0 @@ -7554,10 +7531,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 408 0 R + /Length 372 0 R >> stream /Tx BMC @@ -7565,11 +7542,11 @@ EMC endstream endobj -408 0 obj +372 0 obj 12 endobj -409 0 obj +373 0 obj << /BBox [ 0 @@ -7577,10 +7554,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 410 0 R + /Length 374 0 R >> stream /Tx BMC @@ -7599,11 +7576,11 @@ EMC endstream endobj -410 0 obj +374 0 obj 202 endobj -411 0 obj +375 0 obj << /BBox [ 0 @@ -7611,10 +7588,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 412 0 R + /Length 376 0 R >> stream /Tx BMC @@ -7622,11 +7599,11 @@ EMC endstream endobj -412 0 obj +376 0 obj 12 endobj -413 0 obj +377 0 obj << /BBox [ 0 @@ -7634,10 +7611,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 414 0 R + /Length 378 0 R >> stream /Tx BMC @@ -7656,11 +7633,11 @@ EMC endstream endobj -414 0 obj +378 0 obj 202 endobj -415 0 obj +379 0 obj << /BBox [ 0 @@ -7668,10 +7645,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 416 0 R + /Length 380 0 R >> stream /Tx BMC @@ -7679,11 +7656,11 @@ EMC endstream endobj -416 0 obj +380 0 obj 12 endobj -417 0 obj +381 0 obj << /BBox [ 0 @@ -7691,10 +7668,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 418 0 R + /Length 382 0 R >> stream /Tx BMC @@ -7713,11 +7690,11 @@ EMC endstream endobj -418 0 obj +382 0 obj 202 endobj -419 0 obj +383 0 obj << /BBox [ 0 @@ -7725,10 +7702,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 420 0 R + /Length 384 0 R >> stream /Tx BMC @@ -7736,11 +7713,11 @@ EMC endstream endobj -420 0 obj +384 0 obj 12 endobj -421 0 obj +385 0 obj << /BBox [ 0 @@ -7748,10 +7725,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 422 0 R + /Length 386 0 R >> stream /Tx BMC @@ -7770,11 +7747,11 @@ EMC endstream endobj -422 0 obj +386 0 obj 202 endobj -423 0 obj +387 0 obj << /BBox [ 0 @@ -7782,10 +7759,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 424 0 R + /Length 388 0 R >> stream /Tx BMC @@ -7793,11 +7770,11 @@ EMC endstream endobj -424 0 obj +388 0 obj 12 endobj -425 0 obj +389 0 obj << /BBox [ 0 @@ -7805,10 +7782,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 426 0 R + /Length 390 0 R >> stream /Tx BMC @@ -7827,11 +7804,11 @@ EMC endstream endobj -426 0 obj +390 0 obj 202 endobj -427 0 obj +391 0 obj << /BBox [ 0 @@ -7839,10 +7816,10 @@ endobj 12.05 12.05 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 428 0 R + /Length 392 0 R >> stream /Tx BMC @@ -7850,11 +7827,11 @@ EMC endstream endobj -428 0 obj +392 0 obj 12 endobj -429 0 obj +393 0 obj << /BBox [ 0 @@ -7870,10 +7847,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 430 0 R + /Length 394 0 R >> stream /Tx BMC @@ -7892,11 +7869,11 @@ EMC endstream endobj -430 0 obj +394 0 obj 202 endobj -431 0 obj +395 0 obj << /BBox [ 0 @@ -7912,10 +7889,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 432 0 R + /Length 396 0 R >> stream /Tx BMC @@ -7923,11 +7900,11 @@ EMC endstream endobj -432 0 obj +396 0 obj 12 endobj -433 0 obj +397 0 obj << /BBox [ 0 @@ -7943,10 +7920,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 434 0 R + /Length 398 0 R >> stream /Tx BMC @@ -7965,11 +7942,11 @@ EMC endstream endobj -434 0 obj +398 0 obj 202 endobj -435 0 obj +399 0 obj << /BBox [ 0 @@ -7985,10 +7962,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 436 0 R + /Length 400 0 R >> stream /Tx BMC @@ -7996,11 +7973,11 @@ EMC endstream endobj -436 0 obj +400 0 obj 12 endobj -437 0 obj +401 0 obj << /BBox [ 0 @@ -8016,10 +7993,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 438 0 R + /Length 402 0 R >> stream /Tx BMC @@ -8038,11 +8015,11 @@ EMC endstream endobj -438 0 obj +402 0 obj 202 endobj -439 0 obj +403 0 obj << /BBox [ 0 @@ -8058,10 +8035,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 440 0 R + /Length 404 0 R >> stream /Tx BMC @@ -8069,11 +8046,11 @@ EMC endstream endobj -440 0 obj +404 0 obj 12 endobj -441 0 obj +405 0 obj << /BBox [ 0 @@ -8089,10 +8066,10 @@ endobj 570 192 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 442 0 R + /Length 406 0 R >> stream /Tx BMC @@ -8111,11 +8088,11 @@ EMC endstream endobj -442 0 obj +406 0 obj 202 endobj -443 0 obj +407 0 obj << /BBox [ 0 @@ -8131,10 +8108,10 @@ endobj 570 192 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 444 0 R + /Length 408 0 R >> stream /Tx BMC @@ -8142,11 +8119,11 @@ EMC endstream endobj -444 0 obj +408 0 obj 12 endobj -445 0 obj +409 0 obj << /BBox [ 0 @@ -8162,10 +8139,10 @@ endobj 570 192 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 446 0 R + /Length 410 0 R >> stream /Tx BMC @@ -8184,11 +8161,11 @@ EMC endstream endobj -446 0 obj +410 0 obj 202 endobj -447 0 obj +411 0 obj << /BBox [ 0 @@ -8204,10 +8181,10 @@ endobj 570 192 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 448 0 R + /Length 412 0 R >> stream /Tx BMC @@ -8215,11 +8192,11 @@ EMC endstream endobj -448 0 obj +412 0 obj 12 endobj -449 0 obj +413 0 obj << /BBox [ 0 @@ -8235,10 +8212,10 @@ endobj 570 192 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 450 0 R + /Length 414 0 R >> stream /Tx BMC @@ -8257,11 +8234,11 @@ EMC endstream endobj -450 0 obj +414 0 obj 202 endobj -451 0 obj +415 0 obj << /BBox [ 0 @@ -8277,10 +8254,10 @@ endobj 570 192 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 452 0 R + /Length 416 0 R >> stream /Tx BMC @@ -8288,11 +8265,11 @@ EMC endstream endobj -452 0 obj +416 0 obj 12 endobj -453 0 obj +417 0 obj << /BBox [ 0 @@ -8308,10 +8285,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 454 0 R + /Length 418 0 R >> stream /Tx BMC @@ -8330,11 +8307,11 @@ EMC endstream endobj -454 0 obj +418 0 obj 202 endobj -455 0 obj +419 0 obj << /BBox [ 0 @@ -8350,10 +8327,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 456 0 R + /Length 420 0 R >> stream /Tx BMC @@ -8361,11 +8338,11 @@ EMC endstream endobj -456 0 obj +420 0 obj 12 endobj -457 0 obj +421 0 obj << /BBox [ 0 @@ -8381,10 +8358,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 458 0 R + /Length 422 0 R >> stream /Tx BMC @@ -8403,11 +8380,11 @@ EMC endstream endobj -458 0 obj +422 0 obj 202 endobj -459 0 obj +423 0 obj << /BBox [ 0 @@ -8423,10 +8400,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 460 0 R + /Length 424 0 R >> stream /Tx BMC @@ -8434,11 +8411,11 @@ EMC endstream endobj -460 0 obj +424 0 obj 12 endobj -461 0 obj +425 0 obj << /BBox [ 0 @@ -8454,10 +8431,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 462 0 R + /Length 426 0 R >> stream /Tx BMC @@ -8476,11 +8453,11 @@ EMC endstream endobj -462 0 obj +426 0 obj 202 endobj -463 0 obj +427 0 obj << /BBox [ 0 @@ -8496,10 +8473,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 464 0 R + /Length 428 0 R >> stream /Tx BMC @@ -8507,11 +8484,11 @@ EMC endstream endobj -464 0 obj +428 0 obj 12 endobj -465 0 obj +429 0 obj << /BBox [ 0 @@ -8527,10 +8504,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 466 0 R + /Length 430 0 R >> stream /Tx BMC @@ -8549,11 +8526,11 @@ EMC endstream endobj -466 0 obj +430 0 obj 202 endobj -467 0 obj +431 0 obj << /BBox [ 0 @@ -8569,10 +8546,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 468 0 R + /Length 432 0 R >> stream /Tx BMC @@ -8580,11 +8557,11 @@ EMC endstream endobj -468 0 obj +432 0 obj 12 endobj -469 0 obj +433 0 obj << /BBox [ 0 @@ -8600,10 +8577,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 470 0 R + /Length 434 0 R >> stream /Tx BMC @@ -8622,11 +8599,11 @@ EMC endstream endobj -470 0 obj +434 0 obj 202 endobj -471 0 obj +435 0 obj << /BBox [ 0 @@ -8642,10 +8619,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 472 0 R + /Length 436 0 R >> stream /Tx BMC @@ -8653,11 +8630,11 @@ EMC endstream endobj -472 0 obj +436 0 obj 12 endobj -473 0 obj +437 0 obj << /BBox [ 0 @@ -8673,10 +8650,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 474 0 R + /Length 438 0 R >> stream /Tx BMC @@ -8695,11 +8672,11 @@ EMC endstream endobj -474 0 obj +438 0 obj 202 endobj -475 0 obj +439 0 obj << /BBox [ 0 @@ -8715,10 +8692,10 @@ endobj 612 159.545455 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 476 0 R + /Length 440 0 R >> stream /Tx BMC @@ -8726,11 +8703,11 @@ EMC endstream endobj -476 0 obj +440 0 obj 12 endobj -477 0 obj +441 0 obj << /BBox [ 0 @@ -8746,10 +8723,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 478 0 R + /Length 442 0 R >> stream /Tx BMC @@ -8768,11 +8745,11 @@ EMC endstream endobj -478 0 obj +442 0 obj 202 endobj -479 0 obj +443 0 obj << /BBox [ 0 @@ -8788,10 +8765,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 480 0 R + /Length 444 0 R >> stream /Tx BMC @@ -8799,11 +8776,11 @@ EMC endstream endobj -480 0 obj +444 0 obj 12 endobj -481 0 obj +445 0 obj << /BBox [ 0 @@ -8819,10 +8796,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 482 0 R + /Length 446 0 R >> stream /Tx BMC @@ -8841,11 +8818,11 @@ EMC endstream endobj -482 0 obj +446 0 obj 202 endobj -483 0 obj +447 0 obj << /BBox [ 0 @@ -8861,10 +8838,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 484 0 R + /Length 448 0 R >> stream /Tx BMC @@ -8872,11 +8849,11 @@ EMC endstream endobj -484 0 obj +448 0 obj 12 endobj -485 0 obj +449 0 obj << /BBox [ 0 @@ -8892,10 +8869,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 486 0 R + /Length 450 0 R >> stream /Tx BMC @@ -8914,11 +8891,11 @@ EMC endstream endobj -486 0 obj +450 0 obj 202 endobj -487 0 obj +451 0 obj << /BBox [ 0 @@ -8934,10 +8911,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 488 0 R + /Length 452 0 R >> stream /Tx BMC @@ -8945,11 +8922,11 @@ EMC endstream endobj -488 0 obj +452 0 obj 12 endobj -489 0 obj +453 0 obj << /BBox [ 0 @@ -8965,10 +8942,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 490 0 R + /Length 454 0 R >> stream /Tx BMC @@ -8987,11 +8964,11 @@ EMC endstream endobj -490 0 obj +454 0 obj 202 endobj -491 0 obj +455 0 obj << /BBox [ 0 @@ -9007,10 +8984,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 492 0 R + /Length 456 0 R >> stream /Tx BMC @@ -9018,11 +8995,11 @@ EMC endstream endobj -492 0 obj +456 0 obj 12 endobj -493 0 obj +457 0 obj << /BBox [ 0 @@ -9038,10 +9015,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 494 0 R + /Length 458 0 R >> stream /Tx BMC @@ -9060,11 +9037,11 @@ EMC endstream endobj -494 0 obj +458 0 obj 202 endobj -495 0 obj +459 0 obj << /BBox [ 0 @@ -9080,10 +9057,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 496 0 R + /Length 460 0 R >> stream /Tx BMC @@ -9091,11 +9068,11 @@ EMC endstream endobj -496 0 obj +460 0 obj 12 endobj -497 0 obj +461 0 obj << /BBox [ 0 @@ -9111,10 +9088,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 498 0 R + /Length 462 0 R >> stream /Tx BMC @@ -9133,11 +9110,11 @@ EMC endstream endobj -498 0 obj +462 0 obj 202 endobj -499 0 obj +463 0 obj << /BBox [ 0 @@ -9153,10 +9130,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 500 0 R + /Length 464 0 R >> stream /Tx BMC @@ -9164,11 +9141,11 @@ EMC endstream endobj -500 0 obj +464 0 obj 12 endobj -501 0 obj +465 0 obj << /BBox [ 0 @@ -9184,10 +9161,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 502 0 R + /Length 466 0 R >> stream /Tx BMC @@ -9206,11 +9183,11 @@ EMC endstream endobj -502 0 obj +466 0 obj 202 endobj -503 0 obj +467 0 obj << /BBox [ 0 @@ -9226,10 +9203,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 504 0 R + /Length 468 0 R >> stream /Tx BMC @@ -9237,11 +9214,11 @@ EMC endstream endobj -504 0 obj +468 0 obj 12 endobj -505 0 obj +469 0 obj << /BBox [ 0 @@ -9257,10 +9234,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 506 0 R + /Length 470 0 R >> stream /Tx BMC @@ -9279,11 +9256,11 @@ EMC endstream endobj -506 0 obj +470 0 obj 202 endobj -507 0 obj +471 0 obj << /BBox [ 0 @@ -9299,10 +9276,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 508 0 R + /Length 472 0 R >> stream /Tx BMC @@ -9310,11 +9287,11 @@ EMC endstream endobj -508 0 obj +472 0 obj 12 endobj -509 0 obj +473 0 obj << /BBox [ 0 @@ -9330,10 +9307,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 510 0 R + /Length 474 0 R >> stream /Tx BMC @@ -9352,11 +9329,11 @@ EMC endstream endobj -510 0 obj +474 0 obj 202 endobj -511 0 obj +475 0 obj << /BBox [ 0 @@ -9372,10 +9349,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 512 0 R + /Length 476 0 R >> stream /Tx BMC @@ -9383,11 +9360,11 @@ EMC endstream endobj -512 0 obj +476 0 obj 12 endobj -513 0 obj +477 0 obj << /BBox [ 0 @@ -9403,10 +9380,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 514 0 R + /Length 478 0 R >> stream /Tx BMC @@ -9425,11 +9402,11 @@ EMC endstream endobj -514 0 obj +478 0 obj 202 endobj -515 0 obj +479 0 obj << /BBox [ 0 @@ -9445,10 +9422,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 516 0 R + /Length 480 0 R >> stream /Tx BMC @@ -9456,11 +9433,11 @@ EMC endstream endobj -516 0 obj +480 0 obj 12 endobj -517 0 obj +481 0 obj << /BBox [ 0 @@ -9476,10 +9453,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 518 0 R + /Length 482 0 R >> stream /Tx BMC @@ -9498,11 +9475,11 @@ EMC endstream endobj -518 0 obj +482 0 obj 202 endobj -519 0 obj +483 0 obj << /BBox [ 0 @@ -9518,10 +9495,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 520 0 R + /Length 484 0 R >> stream /Tx BMC @@ -9529,11 +9506,11 @@ EMC endstream endobj -520 0 obj +484 0 obj 12 endobj -521 0 obj +485 0 obj << /BBox [ 0 @@ -9549,10 +9526,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 522 0 R + /Length 486 0 R >> stream /Tx BMC @@ -9571,11 +9548,11 @@ EMC endstream endobj -522 0 obj +486 0 obj 202 endobj -523 0 obj +487 0 obj << /BBox [ 0 @@ -9591,10 +9568,10 @@ endobj 612 792 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 524 0 R + /Length 488 0 R >> stream /Tx BMC @@ -9602,11 +9579,11 @@ EMC endstream endobj -524 0 obj +488 0 obj 12 endobj -525 0 obj +489 0 obj << /BBox [ 0 @@ -9622,10 +9599,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 526 0 R + /Length 490 0 R >> stream /Tx BMC @@ -9644,11 +9621,11 @@ EMC endstream endobj -526 0 obj +490 0 obj 202 endobj -527 0 obj +491 0 obj << /BBox [ 0 @@ -9664,10 +9641,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 528 0 R + /Length 492 0 R >> stream /Tx BMC @@ -9675,11 +9652,11 @@ EMC endstream endobj -528 0 obj +492 0 obj 12 endobj -529 0 obj +493 0 obj << /BBox [ 0 @@ -9695,10 +9672,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 530 0 R + /Length 494 0 R >> stream /Tx BMC @@ -9717,11 +9694,11 @@ EMC endstream endobj -530 0 obj +494 0 obj 202 endobj -531 0 obj +495 0 obj << /BBox [ 0 @@ -9737,10 +9714,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 532 0 R + /Length 496 0 R >> stream /Tx BMC @@ -9748,11 +9725,11 @@ EMC endstream endobj -532 0 obj +496 0 obj 12 endobj -533 0 obj +497 0 obj << /BBox [ 0 @@ -9768,10 +9745,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 534 0 R + /Length 498 0 R >> stream /Tx BMC @@ -9790,11 +9767,11 @@ EMC endstream endobj -534 0 obj +498 0 obj 202 endobj -535 0 obj +499 0 obj << /BBox [ 0 @@ -9810,10 +9787,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 536 0 R + /Length 500 0 R >> stream /Tx BMC @@ -9821,11 +9798,11 @@ EMC endstream endobj -536 0 obj +500 0 obj 12 endobj -537 0 obj +501 0 obj << /BBox [ 0 @@ -9841,10 +9818,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 538 0 R + /Length 502 0 R >> stream /Tx BMC @@ -9863,11 +9840,11 @@ EMC endstream endobj -538 0 obj +502 0 obj 202 endobj -539 0 obj +503 0 obj << /BBox [ 0 @@ -9883,10 +9860,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 540 0 R + /Length 504 0 R >> stream /Tx BMC @@ -9894,11 +9871,11 @@ EMC endstream endobj -540 0 obj +504 0 obj 12 endobj -541 0 obj +505 0 obj << /BBox [ 0 @@ -9914,10 +9891,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 542 0 R + /Length 506 0 R >> stream /Tx BMC @@ -9936,11 +9913,11 @@ EMC endstream endobj -542 0 obj +506 0 obj 202 endobj -543 0 obj +507 0 obj << /BBox [ 0 @@ -9956,10 +9933,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 544 0 R + /Length 508 0 R >> stream /Tx BMC @@ -9967,11 +9944,11 @@ EMC endstream endobj -544 0 obj +508 0 obj 12 endobj -545 0 obj +509 0 obj << /BBox [ 0 @@ -9987,10 +9964,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 546 0 R + /Length 510 0 R >> stream /Tx BMC @@ -10009,11 +9986,11 @@ EMC endstream endobj -546 0 obj +510 0 obj 202 endobj -547 0 obj +511 0 obj << /BBox [ 0 @@ -10029,10 +10006,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 548 0 R + /Length 512 0 R >> stream /Tx BMC @@ -10040,11 +10017,11 @@ EMC endstream endobj -548 0 obj +512 0 obj 12 endobj -549 0 obj +513 0 obj << /BBox [ 0 @@ -10060,10 +10037,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 550 0 R + /Length 514 0 R >> stream /Tx BMC @@ -10082,11 +10059,11 @@ EMC endstream endobj -550 0 obj +514 0 obj 202 endobj -551 0 obj +515 0 obj << /BBox [ 0 @@ -10102,10 +10079,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 552 0 R + /Length 516 0 R >> stream /Tx BMC @@ -10113,11 +10090,11 @@ EMC endstream endobj -552 0 obj +516 0 obj 12 endobj -553 0 obj +517 0 obj << /BBox [ 0 @@ -10133,10 +10110,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 554 0 R + /Length 518 0 R >> stream /Tx BMC @@ -10155,11 +10132,11 @@ EMC endstream endobj -554 0 obj +518 0 obj 202 endobj -555 0 obj +519 0 obj << /BBox [ 0 @@ -10175,10 +10152,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 556 0 R + /Length 520 0 R >> stream /Tx BMC @@ -10186,11 +10163,11 @@ EMC endstream endobj -556 0 obj +520 0 obj 12 endobj -557 0 obj +521 0 obj << /BBox [ 0 @@ -10206,10 +10183,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 558 0 R + /Length 522 0 R >> stream /Tx BMC @@ -10228,11 +10205,11 @@ EMC endstream endobj -558 0 obj +522 0 obj 202 endobj -559 0 obj +523 0 obj << /BBox [ 0 @@ -10248,10 +10225,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 560 0 R + /Length 524 0 R >> stream /Tx BMC @@ -10259,11 +10236,11 @@ EMC endstream endobj -560 0 obj +524 0 obj 12 endobj -561 0 obj +525 0 obj << /BBox [ 0 @@ -10279,10 +10256,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 562 0 R + /Length 526 0 R >> stream /Tx BMC @@ -10301,11 +10278,11 @@ EMC endstream endobj -562 0 obj +526 0 obj 202 endobj -563 0 obj +527 0 obj << /BBox [ 0 @@ -10321,10 +10298,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 564 0 R + /Length 528 0 R >> stream /Tx BMC @@ -10332,11 +10309,11 @@ EMC endstream endobj -564 0 obj +528 0 obj 12 endobj -565 0 obj +529 0 obj << /BBox [ 0 @@ -10352,10 +10329,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 566 0 R + /Length 530 0 R >> stream /Tx BMC @@ -10374,11 +10351,11 @@ EMC endstream endobj -566 0 obj +530 0 obj 202 endobj -567 0 obj +531 0 obj << /BBox [ 0 @@ -10394,10 +10371,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 568 0 R + /Length 532 0 R >> stream /Tx BMC @@ -10405,11 +10382,11 @@ EMC endstream endobj -568 0 obj +532 0 obj 12 endobj -569 0 obj +533 0 obj << /BBox [ 0 @@ -10425,10 +10402,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 570 0 R + /Length 534 0 R >> stream /Tx BMC @@ -10447,11 +10424,11 @@ EMC endstream endobj -570 0 obj +534 0 obj 202 endobj -571 0 obj +535 0 obj << /BBox [ 0 @@ -10467,10 +10444,10 @@ endobj 0 632.454545 ] - /Resources 734 0 R + /Resources 700 0 R /Subtype /Form /Type /XObject - /Length 572 0 R + /Length 536 0 R >> stream /Tx BMC @@ -10478,11 +10455,11 @@ EMC endstream endobj -572 0 obj +536 0 obj 12 endobj -573 0 obj +537 0 obj << /BBox [ 0 @@ -10494,7 +10471,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 574 0 R + /Length 538 0 R >> stream 0 10 m @@ -10507,15 +10484,15 @@ S endstream endobj -574 0 obj +538 0 obj 52 endobj -575 0 obj +539 0 obj << /EF << - /F 735 0 R - /UF 735 0 R + /F 701 0 R + /UF 701 0 R >> /F (attachment1.txt) /Type /Filespec @@ -10523,7 +10500,7 @@ endobj >> endobj -576 0 obj +540 0 obj << /BBox [ 0 @@ -10531,10 +10508,10 @@ endobj 20 10 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 577 0 R + /Length 541 0 R >> stream 1 0 0 RG @@ -10544,11 +10521,11 @@ S endstream endobj -577 0 obj +541 0 obj 36 endobj -578 0 obj +542 0 obj << /BBox [ 0 @@ -10564,10 +10541,10 @@ endobj 0 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 579 0 R + /Length 543 0 R >> stream 0 1 0 RG @@ -10577,11 +10554,11 @@ S endstream endobj -579 0 obj +543 0 obj 36 endobj -580 0 obj +544 0 obj << /BBox [ 0 @@ -10597,10 +10574,10 @@ endobj 0 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 581 0 R + /Length 545 0 R >> stream 0 0 1 RG @@ -10610,11 +10587,11 @@ S endstream endobj -581 0 obj +545 0 obj 36 endobj -582 0 obj +546 0 obj << /BBox [ 0 @@ -10630,10 +10607,10 @@ endobj 0 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 583 0 R + /Length 547 0 R >> stream 0.5 0 1 RG @@ -10643,11 +10620,28 @@ S endstream endobj -583 0 obj +547 0 obj 38 endobj -584 0 obj +548 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +549 0 obj +[ + /PDF + /Text +] +endobj + +550 0 obj << /BBox [ 0 @@ -10667,7 +10661,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 585 0 R + /Length 551 0 R >> stream 0 10 m @@ -10680,11 +10674,11 @@ S endstream endobj -585 0 obj +551 0 obj 52 endobj -586 0 obj +552 0 obj << /BBox [ 0 @@ -10700,10 +10694,10 @@ endobj 153 198 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 587 0 R + /Length 553 0 R >> stream 1 0 0 RG @@ -10713,11 +10707,11 @@ S endstream endobj -587 0 obj +553 0 obj 36 endobj -588 0 obj +554 0 obj << /BBox [ 0 @@ -10733,10 +10727,10 @@ endobj -198 153 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 589 0 R + /Length 555 0 R >> stream 0 1 0 RG @@ -10746,11 +10740,11 @@ S endstream endobj -589 0 obj +555 0 obj 36 endobj -590 0 obj +556 0 obj << /BBox [ 0 @@ -10766,10 +10760,10 @@ endobj -153 -198 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 591 0 R + /Length 557 0 R >> stream 0 0 1 RG @@ -10779,11 +10773,11 @@ S endstream endobj -591 0 obj +557 0 obj 36 endobj -592 0 obj +558 0 obj << /BBox [ 0 @@ -10799,10 +10793,10 @@ endobj 198 -153 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 593 0 R + /Length 559 0 R >> stream 0.5 0 1 RG @@ -10812,11 +10806,11 @@ S endstream endobj -593 0 obj +559 0 obj 38 endobj -594 0 obj +560 0 obj << /BBox [ 0 @@ -10828,7 +10822,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 595 0 R + /Length 561 0 R >> stream 0 10 m @@ -10841,11 +10835,11 @@ S endstream endobj -595 0 obj +561 0 obj 52 endobj -596 0 obj +562 0 obj << /BBox [ 0 @@ -10853,10 +10847,10 @@ endobj 20 10 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 597 0 R + /Length 563 0 R >> stream 1 0 0 RG @@ -10866,11 +10860,11 @@ S endstream endobj -597 0 obj +563 0 obj 36 endobj -598 0 obj +564 0 obj << /BBox [ 0 @@ -10886,10 +10880,10 @@ endobj 0 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 599 0 R + /Length 565 0 R >> stream 0 1 0 RG @@ -10899,11 +10893,11 @@ S endstream endobj -599 0 obj +565 0 obj 36 endobj -600 0 obj +566 0 obj << /BBox [ 0 @@ -10919,10 +10913,10 @@ endobj 0 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 601 0 R + /Length 567 0 R >> stream 0 0 1 RG @@ -10932,11 +10926,11 @@ S endstream endobj -601 0 obj +567 0 obj 36 endobj -602 0 obj +568 0 obj << /BBox [ 0 @@ -10952,10 +10946,10 @@ endobj 0 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 603 0 R + /Length 569 0 R >> stream 0.5 0 1 RG @@ -10965,11 +10959,11 @@ S endstream endobj -603 0 obj +569 0 obj 38 endobj -604 0 obj +570 0 obj << /BBox [ 0 @@ -10981,7 +10975,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 605 0 R + /Length 571 0 R >> stream 0 10 m @@ -10994,11 +10988,11 @@ S endstream endobj -605 0 obj +571 0 obj 52 endobj -606 0 obj +572 0 obj << /BBox [ 0 @@ -11006,10 +11000,10 @@ endobj 20 10 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 607 0 R + /Length 573 0 R >> stream 1 0 0 RG @@ -11019,11 +11013,11 @@ S endstream endobj -607 0 obj +573 0 obj 36 endobj -608 0 obj +574 0 obj << /BBox [ 0 @@ -11039,10 +11033,10 @@ endobj 0 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 609 0 R + /Length 575 0 R >> stream 0 1 0 RG @@ -11052,11 +11046,11 @@ S endstream endobj -609 0 obj +575 0 obj 36 endobj -610 0 obj +576 0 obj << /BBox [ 0 @@ -11072,10 +11066,10 @@ endobj 0 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 611 0 R + /Length 577 0 R >> stream 0 0 1 RG @@ -11085,11 +11079,11 @@ S endstream endobj -611 0 obj +577 0 obj 36 endobj -612 0 obj +578 0 obj << /BBox [ 0 @@ -11105,10 +11099,10 @@ endobj 0 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 613 0 R + /Length 579 0 R >> stream 0.5 0 1 RG @@ -11118,11 +11112,11 @@ S endstream endobj -613 0 obj +579 0 obj 38 endobj -614 0 obj +580 0 obj << /BBox [ 0 @@ -11142,7 +11136,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 615 0 R + /Length 581 0 R >> stream 0 10 m @@ -11155,11 +11149,11 @@ S endstream endobj -615 0 obj +581 0 obj 52 endobj -616 0 obj +582 0 obj << /BBox [ 0 @@ -11175,10 +11169,10 @@ endobj 612 159.545455 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 617 0 R + /Length 583 0 R >> stream 1 0 0 RG @@ -11188,11 +11182,11 @@ S endstream endobj -617 0 obj +583 0 obj 36 endobj -618 0 obj +584 0 obj << /BBox [ 0 @@ -11208,10 +11202,10 @@ endobj -159.545455 612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 619 0 R + /Length 585 0 R >> stream 0 1 0 RG @@ -11221,11 +11215,11 @@ S endstream endobj -619 0 obj +585 0 obj 36 endobj -620 0 obj +586 0 obj << /BBox [ 0 @@ -11241,10 +11235,10 @@ endobj -612 -159.545455 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 621 0 R + /Length 587 0 R >> stream 0 0 1 RG @@ -11254,11 +11248,11 @@ S endstream endobj -621 0 obj +587 0 obj 36 endobj -622 0 obj +588 0 obj << /BBox [ 0 @@ -11274,10 +11268,10 @@ endobj 159.545455 -612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 623 0 R + /Length 589 0 R >> stream 0.5 0 1 RG @@ -11287,11 +11281,11 @@ S endstream endobj -623 0 obj +589 0 obj 38 endobj -624 0 obj +590 0 obj << /BBox [ 0 @@ -11311,7 +11305,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 625 0 R + /Length 591 0 R >> stream 0 10 m @@ -11324,11 +11318,11 @@ S endstream endobj -625 0 obj +591 0 obj 52 endobj -626 0 obj +592 0 obj << /BBox [ 0 @@ -11344,10 +11338,10 @@ endobj 570 192 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 627 0 R + /Length 593 0 R >> stream 1 0 0 RG @@ -11357,11 +11351,11 @@ S endstream endobj -627 0 obj +593 0 obj 36 endobj -628 0 obj +594 0 obj << /BBox [ 0 @@ -11377,10 +11371,10 @@ endobj -192 570 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 629 0 R + /Length 595 0 R >> stream 0 1 0 RG @@ -11390,11 +11384,11 @@ S endstream endobj -629 0 obj +595 0 obj 36 endobj -630 0 obj +596 0 obj << /BBox [ 0 @@ -11410,10 +11404,10 @@ endobj -570 -192 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 631 0 R + /Length 597 0 R >> stream 0 0 1 RG @@ -11423,11 +11417,11 @@ S endstream endobj -631 0 obj +597 0 obj 36 endobj -632 0 obj +598 0 obj << /BBox [ 0 @@ -11443,10 +11437,10 @@ endobj 192 -570 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 633 0 R + /Length 599 0 R >> stream 0.5 0 1 RG @@ -11456,11 +11450,11 @@ S endstream endobj -633 0 obj +599 0 obj 38 endobj -634 0 obj +600 0 obj << /BBox [ 0 @@ -11480,7 +11474,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 635 0 R + /Length 601 0 R >> stream 0 10 m @@ -11493,11 +11487,11 @@ S endstream endobj -635 0 obj +601 0 obj 52 endobj -636 0 obj +602 0 obj << /BBox [ 0 @@ -11513,10 +11507,10 @@ endobj 612 159.545455 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 637 0 R + /Length 603 0 R >> stream 1 0 0 RG @@ -11526,11 +11520,11 @@ S endstream endobj -637 0 obj +603 0 obj 36 endobj -638 0 obj +604 0 obj << /BBox [ 0 @@ -11546,10 +11540,10 @@ endobj -159.545455 612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 639 0 R + /Length 605 0 R >> stream 0 1 0 RG @@ -11559,11 +11553,11 @@ S endstream endobj -639 0 obj +605 0 obj 36 endobj -640 0 obj +606 0 obj << /BBox [ 0 @@ -11579,10 +11573,10 @@ endobj -612 -159.545455 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 641 0 R + /Length 607 0 R >> stream 0 0 1 RG @@ -11592,11 +11586,11 @@ S endstream endobj -641 0 obj +607 0 obj 36 endobj -642 0 obj +608 0 obj << /BBox [ 0 @@ -11612,10 +11606,10 @@ endobj 159.545455 -612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 643 0 R + /Length 609 0 R >> stream 0.5 0 1 RG @@ -11625,11 +11619,11 @@ S endstream endobj -643 0 obj +609 0 obj 38 endobj -644 0 obj +610 0 obj << /BBox [ 0 @@ -11649,7 +11643,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 645 0 R + /Length 611 0 R >> stream 0 10 m @@ -11662,11 +11656,11 @@ S endstream endobj -645 0 obj +611 0 obj 52 endobj -646 0 obj +612 0 obj << /BBox [ 0 @@ -11682,10 +11676,10 @@ endobj 612 159.545455 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 647 0 R + /Length 613 0 R >> stream 1 0 0 RG @@ -11695,11 +11689,11 @@ S endstream endobj -647 0 obj +613 0 obj 36 endobj -648 0 obj +614 0 obj << /BBox [ 0 @@ -11715,10 +11709,10 @@ endobj -159.545455 612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 649 0 R + /Length 615 0 R >> stream 0 1 0 RG @@ -11728,11 +11722,11 @@ S endstream endobj -649 0 obj +615 0 obj 36 endobj -650 0 obj +616 0 obj << /BBox [ 0 @@ -11748,10 +11742,10 @@ endobj -612 -159.545455 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 651 0 R + /Length 617 0 R >> stream 0 0 1 RG @@ -11761,11 +11755,11 @@ S endstream endobj -651 0 obj +617 0 obj 36 endobj -652 0 obj +618 0 obj << /BBox [ 0 @@ -11781,10 +11775,10 @@ endobj 159.545455 -612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 653 0 R + /Length 619 0 R >> stream 0.5 0 1 RG @@ -11794,11 +11788,11 @@ S endstream endobj -653 0 obj +619 0 obj 38 endobj -654 0 obj +620 0 obj << /BBox [ 0 @@ -11818,7 +11812,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 655 0 R + /Length 621 0 R >> stream 0 10 m @@ -11831,11 +11825,11 @@ S endstream endobj -655 0 obj +621 0 obj 52 endobj -656 0 obj +622 0 obj << /BBox [ 0 @@ -11851,10 +11845,10 @@ endobj 612 792 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 657 0 R + /Length 623 0 R >> stream 1 0 0 RG @@ -11864,11 +11858,11 @@ S endstream endobj -657 0 obj +623 0 obj 36 endobj -658 0 obj +624 0 obj << /BBox [ 0 @@ -11884,10 +11878,10 @@ endobj -792 612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 659 0 R + /Length 625 0 R >> stream 0 1 0 RG @@ -11897,11 +11891,11 @@ S endstream endobj -659 0 obj +625 0 obj 36 endobj -660 0 obj +626 0 obj << /BBox [ 0 @@ -11917,10 +11911,10 @@ endobj -612 -792 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 661 0 R + /Length 627 0 R >> stream 0 0 1 RG @@ -11930,11 +11924,11 @@ S endstream endobj -661 0 obj +627 0 obj 36 endobj -662 0 obj +628 0 obj << /BBox [ 0 @@ -11950,10 +11944,10 @@ endobj 792 -612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 663 0 R + /Length 629 0 R >> stream 0.5 0 1 RG @@ -11963,11 +11957,11 @@ S endstream endobj -663 0 obj +629 0 obj 38 endobj -664 0 obj +630 0 obj << /BBox [ 0 @@ -11987,7 +11981,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 665 0 R + /Length 631 0 R >> stream 0 10 m @@ -12000,11 +11994,11 @@ S endstream endobj -665 0 obj +631 0 obj 52 endobj -666 0 obj +632 0 obj << /BBox [ 0 @@ -12020,10 +12014,10 @@ endobj 612 792 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 667 0 R + /Length 633 0 R >> stream 1 0 0 RG @@ -12033,11 +12027,11 @@ S endstream endobj -667 0 obj +633 0 obj 36 endobj -668 0 obj +634 0 obj << /BBox [ 0 @@ -12053,10 +12047,10 @@ endobj -792 612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 669 0 R + /Length 635 0 R >> stream 0 1 0 RG @@ -12066,11 +12060,11 @@ S endstream endobj -669 0 obj +635 0 obj 36 endobj -670 0 obj +636 0 obj << /BBox [ 0 @@ -12086,10 +12080,10 @@ endobj -612 -792 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 671 0 R + /Length 637 0 R >> stream 0 0 1 RG @@ -12099,11 +12093,11 @@ S endstream endobj -671 0 obj +637 0 obj 36 endobj -672 0 obj +638 0 obj << /BBox [ 0 @@ -12119,10 +12113,10 @@ endobj 792 -612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 673 0 R + /Length 639 0 R >> stream 0.5 0 1 RG @@ -12132,11 +12126,11 @@ S endstream endobj -673 0 obj +639 0 obj 38 endobj -674 0 obj +640 0 obj << /BBox [ 0 @@ -12156,7 +12150,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 675 0 R + /Length 641 0 R >> stream 0 10 m @@ -12169,11 +12163,11 @@ S endstream endobj -675 0 obj +641 0 obj 52 endobj -676 0 obj +642 0 obj << /BBox [ 0 @@ -12189,10 +12183,10 @@ endobj 612 792 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 677 0 R + /Length 643 0 R >> stream 1 0 0 RG @@ -12202,11 +12196,11 @@ S endstream endobj -677 0 obj +643 0 obj 36 endobj -678 0 obj +644 0 obj << /BBox [ 0 @@ -12222,10 +12216,10 @@ endobj -792 612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 679 0 R + /Length 645 0 R >> stream 0 1 0 RG @@ -12235,11 +12229,11 @@ S endstream endobj -679 0 obj +645 0 obj 36 endobj -680 0 obj +646 0 obj << /BBox [ 0 @@ -12255,10 +12249,10 @@ endobj -612 -792 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 681 0 R + /Length 647 0 R >> stream 0 0 1 RG @@ -12268,11 +12262,11 @@ S endstream endobj -681 0 obj +647 0 obj 36 endobj -682 0 obj +648 0 obj << /BBox [ 0 @@ -12288,10 +12282,10 @@ endobj 792 -612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 683 0 R + /Length 649 0 R >> stream 0.5 0 1 RG @@ -12301,11 +12295,11 @@ S endstream endobj -683 0 obj +649 0 obj 38 endobj -684 0 obj +650 0 obj << /BBox [ 0 @@ -12325,7 +12319,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 685 0 R + /Length 651 0 R >> stream 0 10 m @@ -12338,11 +12332,11 @@ S endstream endobj -685 0 obj +651 0 obj 52 endobj -686 0 obj +652 0 obj << /BBox [ 0 @@ -12358,10 +12352,10 @@ endobj 612 792 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 687 0 R + /Length 653 0 R >> stream 1 0 0 RG @@ -12371,11 +12365,11 @@ S endstream endobj -687 0 obj +653 0 obj 36 endobj -688 0 obj +654 0 obj << /BBox [ 0 @@ -12391,10 +12385,10 @@ endobj -792 612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 689 0 R + /Length 655 0 R >> stream 0 1 0 RG @@ -12404,11 +12398,11 @@ S endstream endobj -689 0 obj +655 0 obj 36 endobj -690 0 obj +656 0 obj << /BBox [ 0 @@ -12424,10 +12418,10 @@ endobj -612 -792 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 691 0 R + /Length 657 0 R >> stream 0 0 1 RG @@ -12437,11 +12431,11 @@ S endstream endobj -691 0 obj +657 0 obj 36 endobj -692 0 obj +658 0 obj << /BBox [ 0 @@ -12457,10 +12451,10 @@ endobj 792 -612 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 693 0 R + /Length 659 0 R >> stream 0.5 0 1 RG @@ -12470,11 +12464,11 @@ S endstream endobj -693 0 obj +659 0 obj 38 endobj -694 0 obj +660 0 obj << /BBox [ 0 @@ -12494,7 +12488,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 695 0 R + /Length 661 0 R >> stream 0 10 m @@ -12507,11 +12501,11 @@ S endstream endobj -695 0 obj +661 0 obj 52 endobj -696 0 obj +662 0 obj << /BBox [ 0 @@ -12527,10 +12521,10 @@ endobj 0 632.454545 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 697 0 R + /Length 663 0 R >> stream 1 0 0 RG @@ -12540,11 +12534,11 @@ S endstream endobj -697 0 obj +663 0 obj 36 endobj -698 0 obj +664 0 obj << /BBox [ 0 @@ -12560,10 +12554,10 @@ endobj -632.454545 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 699 0 R + /Length 665 0 R >> stream 0 1 0 RG @@ -12573,11 +12567,11 @@ S endstream endobj -699 0 obj +665 0 obj 36 endobj -700 0 obj +666 0 obj << /BBox [ 0 @@ -12593,10 +12587,10 @@ endobj 0 -632.454545 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 701 0 R + /Length 667 0 R >> stream 0 0 1 RG @@ -12606,11 +12600,11 @@ S endstream endobj -701 0 obj +667 0 obj 36 endobj -702 0 obj +668 0 obj << /BBox [ 0 @@ -12626,10 +12620,10 @@ endobj 632.454545 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 703 0 R + /Length 669 0 R >> stream 0.5 0 1 RG @@ -12639,11 +12633,11 @@ S endstream endobj -703 0 obj +669 0 obj 38 endobj -704 0 obj +670 0 obj << /BBox [ 0 @@ -12663,7 +12657,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 705 0 R + /Length 671 0 R >> stream 0 10 m @@ -12676,11 +12670,11 @@ S endstream endobj -705 0 obj +671 0 obj 52 endobj -706 0 obj +672 0 obj << /BBox [ 0 @@ -12696,10 +12690,10 @@ endobj 0 632.454545 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 707 0 R + /Length 673 0 R >> stream 1 0 0 RG @@ -12709,11 +12703,11 @@ S endstream endobj -707 0 obj +673 0 obj 36 endobj -708 0 obj +674 0 obj << /BBox [ 0 @@ -12729,10 +12723,10 @@ endobj -632.454545 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 709 0 R + /Length 675 0 R >> stream 0 1 0 RG @@ -12742,11 +12736,11 @@ S endstream endobj -709 0 obj +675 0 obj 36 endobj -710 0 obj +676 0 obj << /BBox [ 0 @@ -12762,10 +12756,10 @@ endobj 0 -632.454545 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 711 0 R + /Length 677 0 R >> stream 0 0 1 RG @@ -12775,11 +12769,11 @@ S endstream endobj -711 0 obj +677 0 obj 36 endobj -712 0 obj +678 0 obj << /BBox [ 0 @@ -12795,10 +12789,10 @@ endobj 632.454545 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 713 0 R + /Length 679 0 R >> stream 0.5 0 1 RG @@ -12808,11 +12802,11 @@ S endstream endobj -713 0 obj +679 0 obj 38 endobj -714 0 obj +680 0 obj << /BBox [ 0 @@ -12832,7 +12826,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 715 0 R + /Length 681 0 R >> stream 0 10 m @@ -12845,11 +12839,11 @@ S endstream endobj -715 0 obj +681 0 obj 52 endobj -716 0 obj +682 0 obj << /BBox [ 0 @@ -12865,10 +12859,10 @@ endobj 0 632.454545 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 717 0 R + /Length 683 0 R >> stream 1 0 0 RG @@ -12878,11 +12872,11 @@ S endstream endobj -717 0 obj +683 0 obj 36 endobj -718 0 obj +684 0 obj << /BBox [ 0 @@ -12898,10 +12892,10 @@ endobj -632.454545 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 719 0 R + /Length 685 0 R >> stream 0 1 0 RG @@ -12911,11 +12905,11 @@ S endstream endobj -719 0 obj +685 0 obj 36 endobj -720 0 obj +686 0 obj << /BBox [ 0 @@ -12931,10 +12925,10 @@ endobj 0 -632.454545 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 721 0 R + /Length 687 0 R >> stream 0 0 1 RG @@ -12944,11 +12938,11 @@ S endstream endobj -721 0 obj +687 0 obj 36 endobj -722 0 obj +688 0 obj << /BBox [ 0 @@ -12964,10 +12958,10 @@ endobj 632.454545 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 723 0 R + /Length 689 0 R >> stream 0.5 0 1 RG @@ -12977,11 +12971,11 @@ S endstream endobj -723 0 obj +689 0 obj 38 endobj -724 0 obj +690 0 obj << /BBox [ 0 @@ -13001,7 +12995,7 @@ endobj >> /Subtype /Form /Type /XObject - /Length 725 0 R + /Length 691 0 R >> stream 0 10 m @@ -13014,11 +13008,11 @@ S endstream endobj -725 0 obj +691 0 obj 52 endobj -726 0 obj +692 0 obj << /BBox [ 0 @@ -13034,10 +13028,10 @@ endobj 0 632.454545 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 727 0 R + /Length 693 0 R >> stream 1 0 0 RG @@ -13047,11 +13041,11 @@ S endstream endobj -727 0 obj +693 0 obj 36 endobj -728 0 obj +694 0 obj << /BBox [ 0 @@ -13067,10 +13061,10 @@ endobj -632.454545 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 729 0 R + /Length 695 0 R >> stream 0 1 0 RG @@ -13080,11 +13074,11 @@ S endstream endobj -729 0 obj +695 0 obj 36 endobj -730 0 obj +696 0 obj << /BBox [ 0 @@ -13100,10 +13094,10 @@ endobj 0 -632.454545 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 731 0 R + /Length 697 0 R >> stream 0 0 1 RG @@ -13113,11 +13107,11 @@ S endstream endobj -731 0 obj +697 0 obj 36 endobj -732 0 obj +698 0 obj << /BBox [ 0 @@ -13133,10 +13127,10 @@ endobj 632.454545 0 ] - /Resources 380 0 R + /Resources 344 0 R /Subtype /Form /Type /XObject - /Length 733 0 R + /Length 699 0 R >> stream 0.5 0 1 RG @@ -13146,13 +13140,13 @@ S endstream endobj -733 0 obj +699 0 obj 38 endobj -734 0 obj +700 0 obj << - /Font 737 0 R + /Font 703 0 R /ProcSet [ /PDF /Text @@ -13160,7 +13154,7 @@ endobj >> endobj -735 0 obj +701 0 obj << /Params << /CheckSum <80a33fc110b5a7b8b4d58b8d57e814bc> @@ -13168,24 +13162,24 @@ endobj /Subtype /text#2fplain >> /Type /EmbeddedFile - /Length 736 0 R + /Length 702 0 R >> stream content of attachment endstream endobj -736 0 obj +702 0 obj 22 endobj -737 0 obj +703 0 obj << - /ZaDi 738 0 R + /ZaDi 704 0 R >> endobj -738 0 obj +704 0 obj << /BaseFont /ZapfDingbats /Subtype /Type1 @@ -13194,7 +13188,7 @@ endobj endobj xref -0 739 +0 705 0000000000 65535 f 0000000025 00000 n 0000000097 00000 n @@ -13249,696 +13243,662 @@ xref 0000010786 00000 n 0000011049 00000 n 0000011185 00000 n -0000011611 00000 n -0000012051 00000 n -0000012491 00000 n -0000012919 00000 n -0000013363 00000 n -0000013823 00000 n -0000014267 00000 n -0000014711 00000 n -0000015157 00000 n -0000015620 00000 n -0000016066 00000 n -0000016512 00000 n -0000016958 00000 n -0000017421 00000 n -0000017867 00000 n -0000018302 00000 n -0000018407 00000 n -0000018624 00000 n -0000018644 00000 n -0000018916 00000 n -0000018936 00000 n -0000019249 00000 n -0000019562 00000 n -0000019875 00000 n -0000020152 00000 n -0000020172 00000 n -0000020453 00000 n -0000020473 00000 n -0000020791 00000 n -0000021109 00000 n -0000021427 00000 n -0000021644 00000 n -0000021664 00000 n -0000021936 00000 n -0000021956 00000 n -0000022270 00000 n -0000022584 00000 n -0000022898 00000 n -0000023115 00000 n -0000023135 00000 n -0000023407 00000 n -0000023427 00000 n -0000023741 00000 n -0000024055 00000 n -0000024369 00000 n -0000024664 00000 n -0000024684 00000 n -0000024986 00000 n -0000025007 00000 n -0000025334 00000 n -0000025661 00000 n -0000025986 00000 n -0000026276 00000 n -0000026297 00000 n -0000026592 00000 n -0000026613 00000 n -0000026934 00000 n -0000027261 00000 n -0000027582 00000 n -0000027879 00000 n -0000027900 00000 n -0000028202 00000 n -0000028223 00000 n -0000028550 00000 n -0000028877 00000 n -0000029202 00000 n -0000029499 00000 n -0000029520 00000 n -0000029822 00000 n -0000029843 00000 n -0000030170 00000 n -0000030497 00000 n -0000030822 00000 n -0000031099 00000 n -0000031120 00000 n -0000031400 00000 n -0000031421 00000 n -0000031736 00000 n -0000032051 00000 n -0000032366 00000 n -0000032643 00000 n -0000032664 00000 n -0000032944 00000 n -0000032965 00000 n -0000033280 00000 n -0000033595 00000 n -0000033910 00000 n -0000034187 00000 n -0000034208 00000 n -0000034488 00000 n -0000034509 00000 n -0000034824 00000 n -0000035139 00000 n -0000035454 00000 n -0000035731 00000 n -0000035752 00000 n -0000036032 00000 n -0000036053 00000 n -0000036368 00000 n -0000036683 00000 n -0000036998 00000 n -0000037293 00000 n -0000037314 00000 n -0000037611 00000 n -0000037632 00000 n -0000037959 00000 n -0000038286 00000 n -0000038611 00000 n -0000038906 00000 n -0000038927 00000 n -0000039224 00000 n -0000039245 00000 n -0000039572 00000 n -0000039899 00000 n -0000040224 00000 n -0000040519 00000 n -0000040540 00000 n -0000040837 00000 n -0000040858 00000 n -0000041185 00000 n -0000041512 00000 n -0000041837 00000 n -0000042132 00000 n -0000042153 00000 n -0000042450 00000 n -0000042471 00000 n -0000042798 00000 n -0000043125 00000 n -0000043450 00000 n -0000043695 00000 n -0000043902 00000 n -0000044044 00000 n -0000044188 00000 n -0000044332 00000 n -0000044499 00000 n -0000044560 00000 n -0000044603 00000 n -0000044770 00000 n -0000044815 00000 n -0000044904 00000 n -0000044925 00000 n -0000045045 00000 n -0000045082 00000 n -0000046149 00000 n -0000046171 00000 n -0000046417 00000 n -0000046626 00000 n -0000046770 00000 n -0000046914 00000 n -0000047058 00000 n -0000047225 00000 n -0000047286 00000 n -0000047329 00000 n -0000047505 00000 n -0000047550 00000 n -0000047647 00000 n -0000047668 00000 n -0000047913 00000 n -0000048120 00000 n -0000048262 00000 n -0000048406 00000 n -0000048550 00000 n -0000048717 00000 n -0000048778 00000 n -0000048821 00000 n -0000048925 00000 n -0000048969 00000 n -0000049091 00000 n -0000049135 00000 n -0000049224 00000 n -0000049245 00000 n -0000049490 00000 n -0000049697 00000 n -0000049839 00000 n -0000049983 00000 n -0000050127 00000 n -0000050294 00000 n -0000050355 00000 n -0000050398 00000 n -0000050565 00000 n -0000050610 00000 n -0000050699 00000 n -0000050720 00000 n -0000050981 00000 n -0000051218 00000 n -0000051390 00000 n -0000051562 00000 n -0000051734 00000 n -0000051922 00000 n -0000051983 00000 n -0000052026 00000 n -0000052197 00000 n -0000052242 00000 n -0000052354 00000 n -0000052375 00000 n -0000052627 00000 n -0000052850 00000 n -0000053008 00000 n -0000053173 00000 n -0000053338 00000 n -0000053526 00000 n -0000053587 00000 n -0000053630 00000 n -0000053812 00000 n -0000053857 00000 n -0000053963 00000 n -0000053984 00000 n -0000054245 00000 n -0000054482 00000 n -0000054654 00000 n -0000054826 00000 n -0000054998 00000 n -0000055186 00000 n -0000055247 00000 n -0000055290 00000 n -0000055461 00000 n -0000055506 00000 n -0000055618 00000 n -0000055639 00000 n -0000055900 00000 n -0000056137 00000 n -0000056309 00000 n -0000056481 00000 n -0000056653 00000 n -0000056841 00000 n -0000056902 00000 n -0000056945 00000 n -0000057116 00000 n -0000057161 00000 n -0000057273 00000 n -0000057294 00000 n -0000057540 00000 n -0000057749 00000 n -0000057893 00000 n -0000058037 00000 n -0000058181 00000 n -0000058348 00000 n -0000058409 00000 n -0000058452 00000 n -0000058624 00000 n -0000058669 00000 n -0000058764 00000 n -0000058785 00000 n -0000059031 00000 n -0000059240 00000 n -0000059384 00000 n -0000059528 00000 n -0000059672 00000 n -0000059840 00000 n -0000059901 00000 n -0000059945 00000 n -0000060130 00000 n -0000060176 00000 n -0000060271 00000 n -0000060292 00000 n -0000060538 00000 n -0000060747 00000 n -0000060891 00000 n -0000061035 00000 n -0000061179 00000 n -0000061347 00000 n -0000061408 00000 n -0000061452 00000 n -0000061625 00000 n +0000011537 00000 n +0000011903 00000 n +0000012257 00000 n +0000012611 00000 n +0000012981 00000 n +0000013367 00000 n +0000013737 00000 n +0000014107 00000 n +0000014479 00000 n +0000014868 00000 n +0000015240 00000 n +0000015612 00000 n +0000015984 00000 n +0000016373 00000 n +0000016745 00000 n +0000017106 00000 n +0000017211 00000 n +0000017428 00000 n +0000017448 00000 n +0000017720 00000 n +0000017740 00000 n +0000018053 00000 n +0000018366 00000 n +0000018679 00000 n +0000018956 00000 n +0000018976 00000 n +0000019257 00000 n +0000019277 00000 n +0000019595 00000 n +0000019913 00000 n +0000020231 00000 n +0000020448 00000 n +0000020468 00000 n +0000020740 00000 n +0000020760 00000 n +0000021074 00000 n +0000021388 00000 n +0000021702 00000 n +0000021919 00000 n +0000021939 00000 n +0000022211 00000 n +0000022231 00000 n +0000022545 00000 n +0000022859 00000 n +0000023173 00000 n +0000023468 00000 n +0000023488 00000 n +0000023790 00000 n +0000023811 00000 n +0000024138 00000 n +0000024465 00000 n +0000024790 00000 n +0000025080 00000 n +0000025101 00000 n +0000025396 00000 n +0000025417 00000 n +0000025738 00000 n +0000026065 00000 n +0000026386 00000 n +0000026683 00000 n +0000026704 00000 n +0000027006 00000 n +0000027027 00000 n +0000027354 00000 n +0000027681 00000 n +0000028006 00000 n +0000028303 00000 n +0000028324 00000 n +0000028626 00000 n +0000028647 00000 n +0000028974 00000 n +0000029301 00000 n +0000029626 00000 n +0000029903 00000 n +0000029924 00000 n +0000030204 00000 n +0000030225 00000 n +0000030540 00000 n +0000030855 00000 n +0000031170 00000 n +0000031447 00000 n +0000031468 00000 n +0000031748 00000 n +0000031769 00000 n +0000032084 00000 n +0000032399 00000 n +0000032714 00000 n +0000032991 00000 n +0000033012 00000 n +0000033292 00000 n +0000033313 00000 n +0000033628 00000 n +0000033943 00000 n +0000034258 00000 n +0000034535 00000 n +0000034556 00000 n +0000034836 00000 n +0000034857 00000 n +0000035172 00000 n +0000035487 00000 n +0000035802 00000 n +0000036097 00000 n +0000036118 00000 n +0000036415 00000 n +0000036436 00000 n +0000036763 00000 n +0000037090 00000 n +0000037415 00000 n +0000037710 00000 n +0000037731 00000 n +0000038028 00000 n +0000038049 00000 n +0000038376 00000 n +0000038703 00000 n +0000039028 00000 n +0000039323 00000 n +0000039344 00000 n +0000039641 00000 n +0000039662 00000 n +0000039989 00000 n +0000040316 00000 n +0000040641 00000 n +0000040936 00000 n +0000040957 00000 n +0000041254 00000 n +0000041275 00000 n +0000041602 00000 n +0000041929 00000 n +0000042254 00000 n +0000042499 00000 n +0000042706 00000 n +0000042848 00000 n +0000042992 00000 n +0000043136 00000 n +0000043303 00000 n +0000043416 00000 n +0000043437 00000 n +0000043760 00000 n +0000043782 00000 n +0000044849 00000 n +0000044871 00000 n +0000045117 00000 n +0000045326 00000 n +0000045470 00000 n +0000045614 00000 n +0000045758 00000 n +0000045925 00000 n +0000046050 00000 n +0000046071 00000 n +0000046455 00000 n +0000046477 00000 n +0000046722 00000 n +0000046929 00000 n +0000047071 00000 n +0000047215 00000 n +0000047359 00000 n +0000047526 00000 n +0000047639 00000 n +0000047660 00000 n +0000047983 00000 n +0000048005 00000 n +0000048250 00000 n +0000048457 00000 n +0000048599 00000 n +0000048743 00000 n +0000048887 00000 n +0000049054 00000 n +0000049167 00000 n +0000049188 00000 n +0000049511 00000 n +0000049533 00000 n +0000049794 00000 n +0000050031 00000 n +0000050203 00000 n +0000050375 00000 n +0000050547 00000 n +0000050735 00000 n +0000050874 00000 n +0000050895 00000 n +0000051277 00000 n +0000051299 00000 n +0000051551 00000 n +0000051774 00000 n +0000051932 00000 n +0000052097 00000 n +0000052262 00000 n +0000052450 00000 n +0000052595 00000 n +0000052616 00000 n +0000053013 00000 n +0000053035 00000 n +0000053296 00000 n +0000053533 00000 n +0000053705 00000 n +0000053877 00000 n +0000054049 00000 n +0000054237 00000 n +0000054376 00000 n +0000054397 00000 n +0000054779 00000 n +0000054801 00000 n +0000055062 00000 n +0000055299 00000 n +0000055471 00000 n +0000055643 00000 n +0000055815 00000 n +0000056003 00000 n +0000056142 00000 n +0000056163 00000 n +0000056545 00000 n +0000056567 00000 n +0000056813 00000 n +0000057022 00000 n +0000057166 00000 n +0000057310 00000 n +0000057454 00000 n +0000057621 00000 n +0000057746 00000 n +0000057767 00000 n +0000058153 00000 n +0000058175 00000 n +0000058421 00000 n +0000058630 00000 n +0000058774 00000 n +0000058918 00000 n +0000059062 00000 n +0000059230 00000 n +0000059367 00000 n +0000059388 00000 n +0000059793 00000 n +0000059815 00000 n +0000060061 00000 n +0000060270 00000 n +0000060414 00000 n +0000060558 00000 n +0000060702 00000 n +0000060870 00000 n +0000060995 00000 n +0000061016 00000 n +0000061403 00000 n +0000061425 00000 n 0000061671 00000 n -0000061766 00000 n -0000061787 00000 n -0000062033 00000 n -0000062242 00000 n -0000062386 00000 n -0000062530 00000 n -0000062674 00000 n -0000062842 00000 n -0000062903 00000 n -0000062947 00000 n -0000063120 00000 n -0000063166 00000 n -0000063261 00000 n -0000063282 00000 n -0000063543 00000 n -0000063780 00000 n -0000063952 00000 n -0000064124 00000 n -0000064296 00000 n -0000064485 00000 n -0000064546 00000 n -0000064590 00000 n -0000064763 00000 n -0000064809 00000 n -0000064919 00000 n -0000064940 00000 n -0000065201 00000 n -0000065438 00000 n -0000065610 00000 n -0000065782 00000 n -0000065954 00000 n -0000066143 00000 n -0000066204 00000 n -0000066248 00000 n -0000066433 00000 n -0000066479 00000 n -0000066589 00000 n -0000066610 00000 n -0000066871 00000 n -0000067108 00000 n -0000067280 00000 n -0000067452 00000 n -0000067624 00000 n -0000067813 00000 n -0000067874 00000 n -0000067918 00000 n -0000068091 00000 n -0000068137 00000 n -0000068247 00000 n -0000068268 00000 n -0000068529 00000 n -0000068766 00000 n -0000068938 00000 n -0000069110 00000 n -0000069282 00000 n -0000069471 00000 n -0000069532 00000 n -0000069576 00000 n -0000069749 00000 n -0000069795 00000 n -0000069905 00000 n -0000069926 00000 n -0000069981 00000 n -0000070343 00000 n -0000070365 00000 n -0000070537 00000 n -0000070558 00000 n -0000070920 00000 n -0000070942 00000 n -0000071114 00000 n -0000071135 00000 n -0000071497 00000 n -0000071519 00000 n -0000071691 00000 n -0000071712 00000 n -0000072134 00000 n -0000072156 00000 n -0000072388 00000 n -0000072409 00000 n -0000072831 00000 n -0000072853 00000 n -0000073085 00000 n -0000073106 00000 n -0000073528 00000 n -0000073550 00000 n -0000073782 00000 n -0000073803 00000 n -0000074165 00000 n -0000074187 00000 n -0000074359 00000 n -0000074380 00000 n -0000074742 00000 n -0000074764 00000 n -0000074936 00000 n -0000074957 00000 n -0000075319 00000 n -0000075341 00000 n -0000075513 00000 n -0000075534 00000 n -0000075896 00000 n -0000075918 00000 n -0000076090 00000 n -0000076111 00000 n -0000076473 00000 n -0000076495 00000 n -0000076667 00000 n -0000076688 00000 n -0000077050 00000 n -0000077072 00000 n -0000077244 00000 n -0000077265 00000 n -0000077705 00000 n -0000077727 00000 n -0000077977 00000 n -0000077998 00000 n -0000078438 00000 n -0000078460 00000 n -0000078710 00000 n -0000078731 00000 n -0000079171 00000 n -0000079193 00000 n -0000079443 00000 n -0000079464 00000 n -0000079897 00000 n -0000079919 00000 n -0000080162 00000 n -0000080183 00000 n -0000080616 00000 n -0000080638 00000 n -0000080881 00000 n -0000080902 00000 n -0000081335 00000 n -0000081357 00000 n -0000081600 00000 n -0000081621 00000 n -0000082061 00000 n -0000082083 00000 n -0000082333 00000 n -0000082354 00000 n -0000082794 00000 n -0000082816 00000 n -0000083066 00000 n -0000083087 00000 n -0000083527 00000 n -0000083549 00000 n -0000083799 00000 n -0000083820 00000 n -0000084260 00000 n -0000084282 00000 n -0000084532 00000 n -0000084553 00000 n -0000084993 00000 n -0000085015 00000 n -0000085265 00000 n -0000085286 00000 n -0000085726 00000 n -0000085748 00000 n -0000085998 00000 n -0000086019 00000 n -0000086439 00000 n -0000086461 00000 n -0000086691 00000 n -0000086712 00000 n -0000087132 00000 n -0000087154 00000 n -0000087384 00000 n -0000087405 00000 n -0000087825 00000 n -0000087847 00000 n -0000088077 00000 n -0000088098 00000 n -0000088518 00000 n -0000088540 00000 n -0000088770 00000 n -0000088791 00000 n -0000089211 00000 n -0000089233 00000 n -0000089463 00000 n -0000089484 00000 n -0000089904 00000 n -0000089926 00000 n -0000090156 00000 n -0000090177 00000 n -0000090597 00000 n -0000090619 00000 n -0000090849 00000 n -0000090870 00000 n -0000091290 00000 n -0000091312 00000 n -0000091542 00000 n -0000091563 00000 n -0000091983 00000 n -0000092005 00000 n -0000092235 00000 n -0000092256 00000 n -0000092676 00000 n -0000092698 00000 n -0000092928 00000 n -0000092949 00000 n -0000093369 00000 n -0000093391 00000 n -0000093621 00000 n -0000093642 00000 n -0000094062 00000 n -0000094084 00000 n -0000094314 00000 n -0000094335 00000 n -0000094773 00000 n -0000094795 00000 n -0000095043 00000 n -0000095064 00000 n -0000095502 00000 n -0000095524 00000 n -0000095772 00000 n -0000095793 00000 n -0000096231 00000 n -0000096253 00000 n -0000096501 00000 n -0000096522 00000 n -0000096960 00000 n -0000096982 00000 n -0000097230 00000 n -0000097251 00000 n -0000097689 00000 n -0000097711 00000 n -0000097959 00000 n -0000097980 00000 n -0000098418 00000 n -0000098440 00000 n -0000098688 00000 n -0000098709 00000 n -0000099147 00000 n -0000099169 00000 n -0000099417 00000 n -0000099438 00000 n -0000099876 00000 n -0000099898 00000 n -0000100146 00000 n -0000100167 00000 n -0000100605 00000 n -0000100627 00000 n -0000100875 00000 n -0000100896 00000 n -0000101334 00000 n -0000101356 00000 n -0000101604 00000 n -0000101625 00000 n -0000102063 00000 n -0000102085 00000 n -0000102333 00000 n -0000102354 00000 n -0000102792 00000 n -0000102814 00000 n -0000103062 00000 n -0000103083 00000 n -0000103289 00000 n -0000103310 00000 n -0000103444 00000 n -0000103634 00000 n -0000103655 00000 n -0000103898 00000 n -0000103919 00000 n -0000104163 00000 n -0000104184 00000 n -0000104429 00000 n -0000104450 00000 n -0000104716 00000 n -0000104737 00000 n -0000104987 00000 n -0000105008 00000 n -0000105260 00000 n -0000105281 00000 n -0000105535 00000 n -0000105556 00000 n -0000105810 00000 n -0000105831 00000 n -0000106037 00000 n -0000106058 00000 n -0000106248 00000 n -0000106269 00000 n -0000106512 00000 n -0000106533 00000 n -0000106777 00000 n -0000106798 00000 n -0000107043 00000 n -0000107064 00000 n -0000107270 00000 n -0000107291 00000 n -0000107481 00000 n -0000107502 00000 n -0000107745 00000 n -0000107766 00000 n -0000108010 00000 n -0000108031 00000 n -0000108276 00000 n -0000108297 00000 n -0000108581 00000 n -0000108602 00000 n -0000108870 00000 n -0000108891 00000 n -0000109162 00000 n -0000109183 00000 n -0000109454 00000 n -0000109475 00000 n -0000109745 00000 n -0000109766 00000 n -0000110043 00000 n -0000110064 00000 n -0000110325 00000 n -0000110346 00000 n -0000110610 00000 n -0000110631 00000 n -0000110895 00000 n -0000110916 00000 n -0000111179 00000 n -0000111200 00000 n -0000111484 00000 n -0000111505 00000 n -0000111773 00000 n -0000111794 00000 n -0000112065 00000 n -0000112086 00000 n -0000112357 00000 n -0000112378 00000 n -0000112648 00000 n -0000112669 00000 n -0000112953 00000 n -0000112974 00000 n -0000113242 00000 n -0000113263 00000 n -0000113534 00000 n -0000113555 00000 n -0000113826 00000 n -0000113847 00000 n -0000114117 00000 n -0000114138 00000 n -0000114402 00000 n -0000114423 00000 n -0000114671 00000 n -0000114692 00000 n -0000114941 00000 n -0000114962 00000 n -0000115212 00000 n -0000115233 00000 n -0000115484 00000 n -0000115505 00000 n -0000115769 00000 n -0000115790 00000 n -0000116038 00000 n -0000116059 00000 n -0000116308 00000 n -0000116329 00000 n -0000116579 00000 n -0000116600 00000 n -0000116851 00000 n -0000116872 00000 n -0000117136 00000 n -0000117157 00000 n -0000117405 00000 n -0000117426 00000 n -0000117675 00000 n -0000117696 00000 n -0000117946 00000 n -0000117967 00000 n -0000118218 00000 n -0000118239 00000 n -0000118503 00000 n -0000118524 00000 n -0000118772 00000 n -0000118793 00000 n -0000119042 00000 n -0000119063 00000 n -0000119313 00000 n -0000119334 00000 n -0000119585 00000 n -0000119606 00000 n -0000119888 00000 n -0000119909 00000 n -0000120175 00000 n -0000120196 00000 n -0000120462 00000 n -0000120483 00000 n -0000120751 00000 n -0000120772 00000 n -0000121042 00000 n -0000121063 00000 n -0000121345 00000 n -0000121366 00000 n -0000121632 00000 n -0000121653 00000 n -0000121919 00000 n -0000121940 00000 n -0000122208 00000 n -0000122229 00000 n -0000122499 00000 n -0000122520 00000 n -0000122802 00000 n -0000122823 00000 n -0000123089 00000 n -0000123110 00000 n -0000123376 00000 n -0000123397 00000 n -0000123665 00000 n -0000123686 00000 n -0000123956 00000 n -0000123977 00000 n -0000124259 00000 n -0000124280 00000 n -0000124546 00000 n -0000124567 00000 n -0000124833 00000 n -0000124854 00000 n -0000125122 00000 n -0000125143 00000 n -0000125413 00000 n -0000125434 00000 n -0000125510 00000 n -0000125720 00000 n -0000125741 00000 n -0000125781 00000 n +0000061880 00000 n +0000062024 00000 n +0000062168 00000 n +0000062312 00000 n +0000062480 00000 n +0000062605 00000 n +0000062626 00000 n +0000063013 00000 n +0000063035 00000 n +0000063296 00000 n +0000063533 00000 n +0000063705 00000 n +0000063877 00000 n +0000064049 00000 n +0000064238 00000 n +0000064375 00000 n +0000064396 00000 n +0000064780 00000 n +0000064802 00000 n +0000065063 00000 n +0000065300 00000 n +0000065472 00000 n +0000065644 00000 n +0000065816 00000 n +0000066005 00000 n +0000066146 00000 n +0000066167 00000 n +0000066569 00000 n +0000066591 00000 n +0000066852 00000 n +0000067089 00000 n +0000067261 00000 n +0000067433 00000 n +0000067605 00000 n +0000067794 00000 n +0000067931 00000 n +0000067952 00000 n +0000068336 00000 n +0000068358 00000 n +0000068619 00000 n +0000068856 00000 n +0000069028 00000 n +0000069200 00000 n +0000069372 00000 n +0000069561 00000 n +0000069698 00000 n +0000069719 00000 n +0000070103 00000 n +0000070125 00000 n +0000070180 00000 n +0000070542 00000 n +0000070564 00000 n +0000070736 00000 n +0000070757 00000 n +0000071119 00000 n +0000071141 00000 n +0000071313 00000 n +0000071334 00000 n +0000071696 00000 n +0000071718 00000 n +0000071890 00000 n +0000071911 00000 n +0000072333 00000 n +0000072355 00000 n +0000072587 00000 n +0000072608 00000 n +0000073030 00000 n +0000073052 00000 n +0000073284 00000 n +0000073305 00000 n +0000073727 00000 n +0000073749 00000 n +0000073981 00000 n +0000074002 00000 n +0000074364 00000 n +0000074386 00000 n +0000074558 00000 n +0000074579 00000 n +0000074941 00000 n +0000074963 00000 n +0000075135 00000 n +0000075156 00000 n +0000075518 00000 n +0000075540 00000 n +0000075712 00000 n +0000075733 00000 n +0000076095 00000 n +0000076117 00000 n +0000076289 00000 n +0000076310 00000 n +0000076672 00000 n +0000076694 00000 n +0000076866 00000 n +0000076887 00000 n +0000077249 00000 n +0000077271 00000 n +0000077443 00000 n +0000077464 00000 n +0000077904 00000 n +0000077926 00000 n +0000078176 00000 n +0000078197 00000 n +0000078637 00000 n +0000078659 00000 n +0000078909 00000 n +0000078930 00000 n +0000079370 00000 n +0000079392 00000 n +0000079642 00000 n +0000079663 00000 n +0000080096 00000 n +0000080118 00000 n +0000080361 00000 n +0000080382 00000 n +0000080815 00000 n +0000080837 00000 n +0000081080 00000 n +0000081101 00000 n +0000081534 00000 n +0000081556 00000 n +0000081799 00000 n +0000081820 00000 n +0000082260 00000 n +0000082282 00000 n +0000082532 00000 n +0000082553 00000 n +0000082993 00000 n +0000083015 00000 n +0000083265 00000 n +0000083286 00000 n +0000083726 00000 n +0000083748 00000 n +0000083998 00000 n +0000084019 00000 n +0000084459 00000 n +0000084481 00000 n +0000084731 00000 n +0000084752 00000 n +0000085192 00000 n +0000085214 00000 n +0000085464 00000 n +0000085485 00000 n +0000085925 00000 n +0000085947 00000 n +0000086197 00000 n +0000086218 00000 n +0000086638 00000 n +0000086660 00000 n +0000086890 00000 n +0000086911 00000 n +0000087331 00000 n +0000087353 00000 n +0000087583 00000 n +0000087604 00000 n +0000088024 00000 n +0000088046 00000 n +0000088276 00000 n +0000088297 00000 n +0000088717 00000 n +0000088739 00000 n +0000088969 00000 n +0000088990 00000 n +0000089410 00000 n +0000089432 00000 n +0000089662 00000 n +0000089683 00000 n +0000090103 00000 n +0000090125 00000 n +0000090355 00000 n +0000090376 00000 n +0000090796 00000 n +0000090818 00000 n +0000091048 00000 n +0000091069 00000 n +0000091489 00000 n +0000091511 00000 n +0000091741 00000 n +0000091762 00000 n +0000092182 00000 n +0000092204 00000 n +0000092434 00000 n +0000092455 00000 n +0000092875 00000 n +0000092897 00000 n +0000093127 00000 n +0000093148 00000 n +0000093568 00000 n +0000093590 00000 n +0000093820 00000 n +0000093841 00000 n +0000094261 00000 n +0000094283 00000 n +0000094513 00000 n +0000094534 00000 n +0000094972 00000 n +0000094994 00000 n +0000095242 00000 n +0000095263 00000 n +0000095701 00000 n +0000095723 00000 n +0000095971 00000 n +0000095992 00000 n +0000096430 00000 n +0000096452 00000 n +0000096700 00000 n +0000096721 00000 n +0000097159 00000 n +0000097181 00000 n +0000097429 00000 n +0000097450 00000 n +0000097888 00000 n +0000097910 00000 n +0000098158 00000 n +0000098179 00000 n +0000098617 00000 n +0000098639 00000 n +0000098887 00000 n +0000098908 00000 n +0000099346 00000 n +0000099368 00000 n +0000099616 00000 n +0000099637 00000 n +0000100075 00000 n +0000100097 00000 n +0000100345 00000 n +0000100366 00000 n +0000100804 00000 n +0000100826 00000 n +0000101074 00000 n +0000101095 00000 n +0000101533 00000 n +0000101555 00000 n +0000101803 00000 n +0000101824 00000 n +0000102262 00000 n +0000102284 00000 n +0000102532 00000 n +0000102553 00000 n +0000102991 00000 n +0000103013 00000 n +0000103261 00000 n +0000103282 00000 n +0000103488 00000 n +0000103509 00000 n +0000103643 00000 n +0000103833 00000 n +0000103854 00000 n +0000104097 00000 n +0000104118 00000 n +0000104362 00000 n +0000104383 00000 n +0000104628 00000 n +0000104649 00000 n +0000104769 00000 n +0000104806 00000 n +0000105072 00000 n +0000105093 00000 n +0000105343 00000 n +0000105364 00000 n +0000105616 00000 n +0000105637 00000 n +0000105891 00000 n +0000105912 00000 n +0000106166 00000 n +0000106187 00000 n +0000106393 00000 n +0000106414 00000 n +0000106604 00000 n +0000106625 00000 n +0000106868 00000 n +0000106889 00000 n +0000107133 00000 n +0000107154 00000 n +0000107399 00000 n +0000107420 00000 n +0000107626 00000 n +0000107647 00000 n +0000107837 00000 n +0000107858 00000 n +0000108101 00000 n +0000108122 00000 n +0000108366 00000 n +0000108387 00000 n +0000108632 00000 n +0000108653 00000 n +0000108937 00000 n +0000108958 00000 n +0000109226 00000 n +0000109247 00000 n +0000109518 00000 n +0000109539 00000 n +0000109810 00000 n +0000109831 00000 n +0000110101 00000 n +0000110122 00000 n +0000110399 00000 n +0000110420 00000 n +0000110681 00000 n +0000110702 00000 n +0000110966 00000 n +0000110987 00000 n +0000111251 00000 n +0000111272 00000 n +0000111535 00000 n +0000111556 00000 n +0000111840 00000 n +0000111861 00000 n +0000112129 00000 n +0000112150 00000 n +0000112421 00000 n +0000112442 00000 n +0000112713 00000 n +0000112734 00000 n +0000113004 00000 n +0000113025 00000 n +0000113309 00000 n +0000113330 00000 n +0000113598 00000 n +0000113619 00000 n +0000113890 00000 n +0000113911 00000 n +0000114182 00000 n +0000114203 00000 n +0000114473 00000 n +0000114494 00000 n +0000114758 00000 n +0000114779 00000 n +0000115027 00000 n +0000115048 00000 n +0000115297 00000 n +0000115318 00000 n +0000115568 00000 n +0000115589 00000 n +0000115840 00000 n +0000115861 00000 n +0000116125 00000 n +0000116146 00000 n +0000116394 00000 n +0000116415 00000 n +0000116664 00000 n +0000116685 00000 n +0000116935 00000 n +0000116956 00000 n +0000117207 00000 n +0000117228 00000 n +0000117492 00000 n +0000117513 00000 n +0000117761 00000 n +0000117782 00000 n +0000118031 00000 n +0000118052 00000 n +0000118302 00000 n +0000118323 00000 n +0000118574 00000 n +0000118595 00000 n +0000118859 00000 n +0000118880 00000 n +0000119128 00000 n +0000119149 00000 n +0000119398 00000 n +0000119419 00000 n +0000119669 00000 n +0000119690 00000 n +0000119941 00000 n +0000119962 00000 n +0000120244 00000 n +0000120265 00000 n +0000120531 00000 n +0000120552 00000 n +0000120818 00000 n +0000120839 00000 n +0000121107 00000 n +0000121128 00000 n +0000121398 00000 n +0000121419 00000 n +0000121701 00000 n +0000121722 00000 n +0000121988 00000 n +0000122009 00000 n +0000122275 00000 n +0000122296 00000 n +0000122564 00000 n +0000122585 00000 n +0000122855 00000 n +0000122876 00000 n +0000123158 00000 n +0000123179 00000 n +0000123445 00000 n +0000123466 00000 n +0000123732 00000 n +0000123753 00000 n +0000124021 00000 n +0000124042 00000 n +0000124312 00000 n +0000124333 00000 n +0000124615 00000 n +0000124636 00000 n +0000124902 00000 n +0000124923 00000 n +0000125189 00000 n +0000125210 00000 n +0000125478 00000 n +0000125499 00000 n +0000125769 00000 n +0000125790 00000 n +0000125866 00000 n +0000126076 00000 n +0000126097 00000 n +0000126137 00000 n trailer << /Root 1 0 R - /Size 739 + /Size 705 /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] >> startxref -125863 +126219 %%EOF diff --git a/qpdf/qtest/qpdf/overlay-no-resources.pdf b/qpdf/qtest/qpdf/overlay-no-resources.pdf index 4b41f745..620bc7a7 100644 Binary files a/qpdf/qtest/qpdf/overlay-no-resources.pdf and b/qpdf/qtest/qpdf/overlay-no-resources.pdf differ diff --git a/qpdf/qtest/qpdf/uo-1.pdf b/qpdf/qtest/qpdf/uo-1.pdf index a79b77e0..d1a0868e 100644 --- a/qpdf/qtest/qpdf/uo-1.pdf +++ b/qpdf/qtest/qpdf/uo-1.pdf @@ -37,12 +37,7 @@ endobj %% Page 1 3 0 obj << - /Contents [ - 19 0 R - 21 0 R - 23 0 R - 25 0 R - ] + /Contents 19 0 R /MediaBox [ 0 0 @@ -51,13 +46,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 29 0 R - /Fx2 31 0 R + /Fx0 21 0 R + /Fx1 23 0 R + /Fx2 25 0 R >> >> /Type /Page @@ -67,12 +59,7 @@ endobj %% Page 2 4 0 obj << - /Contents [ - 33 0 R - 35 0 R - 37 0 R - 39 0 R - ] + /Contents 27 0 R /MediaBox [ 0 0 @@ -81,13 +68,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 41 0 R - /Fx2 43 0 R + /Fx0 29 0 R + /Fx1 31 0 R + /Fx2 33 0 R >> >> /Type /Page @@ -98,13 +82,7 @@ endobj %% Page 3 5 0 obj << - /Contents [ - 45 0 R - 47 0 R - 49 0 R - 51 0 R - 53 0 R - ] + /Contents 35 0 R /MediaBox [ 0 0 @@ -113,13 +91,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 55 0 R - /Fx2 57 0 R + /Fx0 37 0 R + /Fx1 39 0 R + /Fx2 41 0 R >> >> /Type /Page @@ -129,12 +104,7 @@ endobj %% Page 4 6 0 obj << - /Contents [ - 59 0 R - 61 0 R - 63 0 R - 65 0 R - ] + /Contents 43 0 R /MediaBox [ 0 0 @@ -143,13 +113,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 67 0 R - /Fx2 69 0 R + /Fx0 45 0 R + /Fx1 47 0 R + /Fx2 49 0 R >> >> /Type /Page @@ -159,12 +126,7 @@ endobj %% Page 5 7 0 obj << - /Contents [ - 71 0 R - 73 0 R - 75 0 R - 77 0 R - ] + /Contents 51 0 R /MediaBox [ 0 0 @@ -173,13 +135,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 79 0 R - /Fx2 81 0 R + /Fx0 53 0 R + /Fx1 55 0 R + /Fx2 57 0 R >> >> /Rotate 90 @@ -190,12 +149,7 @@ endobj %% Page 6 8 0 obj << - /Contents [ - 83 0 R - 85 0 R - 87 0 R - 89 0 R - ] + /Contents 59 0 R /MediaBox [ 0 0 @@ -204,13 +158,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 91 0 R - /Fx2 93 0 R + /Fx0 61 0 R + /Fx1 63 0 R + /Fx2 65 0 R >> >> /Rotate 90 @@ -222,12 +173,7 @@ endobj %% Page 7 9 0 obj << - /Contents [ - 95 0 R - 97 0 R - 99 0 R - 101 0 R - ] + /Contents 67 0 R /MediaBox [ 0 0 @@ -236,13 +182,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 103 0 R - /Fx2 105 0 R + /Fx0 69 0 R + /Fx1 71 0 R + /Fx2 73 0 R >> >> /Rotate 90 @@ -253,12 +196,7 @@ endobj %% Page 8 10 0 obj << - /Contents [ - 107 0 R - 109 0 R - 111 0 R - 113 0 R - ] + /Contents 75 0 R /MediaBox [ 0 0 @@ -267,13 +205,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 115 0 R - /Fx2 117 0 R + /Fx0 77 0 R + /Fx1 79 0 R + /Fx2 81 0 R >> >> /Rotate 90 @@ -284,12 +219,7 @@ endobj %% Page 9 11 0 obj << - /Contents [ - 119 0 R - 121 0 R - 123 0 R - 125 0 R - ] + /Contents 83 0 R /MediaBox [ 0 0 @@ -298,13 +228,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 115 0 R - /Fx2 127 0 R + /Fx0 85 0 R + /Fx1 79 0 R + /Fx2 87 0 R >> >> /Rotate 180 @@ -315,12 +242,7 @@ endobj %% Page 10 12 0 obj << - /Contents [ - 129 0 R - 131 0 R - 133 0 R - 135 0 R - ] + /Contents 89 0 R /MediaBox [ 0 0 @@ -329,13 +251,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 115 0 R - /Fx2 137 0 R + /Fx0 91 0 R + /Fx1 79 0 R + /Fx2 93 0 R >> >> /Rotate 180 @@ -347,12 +266,7 @@ endobj %% Page 11 13 0 obj << - /Contents [ - 139 0 R - 141 0 R - 143 0 R - 145 0 R - ] + /Contents 95 0 R /MediaBox [ 0 0 @@ -361,13 +275,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 115 0 R - /Fx2 147 0 R + /Fx0 97 0 R + /Fx1 79 0 R + /Fx2 99 0 R >> >> /Rotate 180 @@ -378,12 +289,7 @@ endobj %% Page 12 14 0 obj << - /Contents [ - 149 0 R - 151 0 R - 153 0 R - 155 0 R - ] + /Contents 101 0 R /MediaBox [ 0 0 @@ -392,13 +298,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 115 0 R - /Fx2 157 0 R + /Fx0 103 0 R + /Fx1 79 0 R + /Fx2 105 0 R >> >> /Rotate 180 @@ -409,12 +312,7 @@ endobj %% Page 13 15 0 obj << - /Contents [ - 159 0 R - 161 0 R - 163 0 R - 165 0 R - ] + /Contents 107 0 R /MediaBox [ 0 0 @@ -423,13 +321,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 115 0 R - /Fx2 167 0 R + /Fx0 109 0 R + /Fx1 79 0 R + /Fx2 111 0 R >> >> /Rotate 270 @@ -440,12 +335,7 @@ endobj %% Page 14 16 0 obj << - /Contents [ - 169 0 R - 171 0 R - 173 0 R - 175 0 R - ] + /Contents 113 0 R /MediaBox [ 0 0 @@ -454,13 +344,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 115 0 R - /Fx2 177 0 R + /Fx0 115 0 R + /Fx1 79 0 R + /Fx2 117 0 R >> >> /Rotate 270 @@ -472,11 +359,7 @@ endobj %% Page 15 17 0 obj << - /Contents [ - 179 0 R - 181 0 R - 183 0 R - ] + /Contents 119 0 R /MediaBox [ 0 0 @@ -485,12 +368,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 185 0 R + /Fx0 121 0 R + /Fx1 123 0 R >> >> /Rotate 270 @@ -501,11 +381,7 @@ endobj %% Page 16 18 0 obj << - /Contents [ - 187 0 R - 189 0 R - 191 0 R - ] + /Contents 125 0 R /MediaBox [ 0 0 @@ -514,12 +390,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 193 0 R + /Fx0 127 0 R + /Fx1 129 0 R >> >> /Rotate 270 @@ -534,34 +407,41 @@ endobj >> stream q -endstream -endobj - -20 0 obj -2 -endobj - -%% Contents for page 1 -21 0 obj -<< - /Length 22 0 R ->> -stream -q 1 0 0 1 0 0 cm /Fx1 Do Q +q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +1 0 0 1 0 0 cm +/Fx2 Do +Q endstream endobj -22 0 obj -27 +20 0 obj +81 endobj -%% Contents for page 1 -23 0 obj +21 0 obj << - /Length 24 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 22 0 R >> stream 1 0 0 RG @@ -577,47 +457,11 @@ ET endstream endobj -24 0 obj +22 0 obj 108 endobj -%% Contents for page 1 -25 0 obj -<< - /Length 26 0 R ->> -stream - -Q -q -1 0 0 1 0 0 cm -/Fx2 Do -Q -endstream -endobj - -26 0 obj -30 -endobj - -27 0 obj -<< - /BaseFont /Helvetica - /Encoding /WinAnsiEncoding - /Name /F1 - /Subtype /Type1 - /Type /Font ->> -endobj - -28 0 obj -[ - /PDF - /Text -] -endobj - -29 0 obj +23 0 obj << /BBox [ 0 @@ -627,13 +471,13 @@ endobj ] /Resources << /Font << - /F1 195 0 R + /F1 133 0 R >> - /ProcSet 196 0 R + /ProcSet 134 0 R >> /Subtype /Form /Type /XObject - /Length 30 0 R + /Length 24 0 R >> stream 0 1 0 RG @@ -649,11 +493,11 @@ ET endstream endobj -30 0 obj +24 0 obj 110 endobj -31 0 obj +25 0 obj << /BBox [ 0 @@ -663,13 +507,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 32 0 R + /Length 26 0 R >> stream 0 0 1 RG @@ -685,45 +529,60 @@ ET endstream endobj -32 0 obj +26 0 obj 109 endobj %% Contents for page 2 -33 0 obj -<< - /Length 34 0 R ->> -stream -q -endstream -endobj - -34 0 obj -2 -endobj - -%% Contents for page 2 -35 0 obj +27 0 obj << - /Length 36 0 R + /Length 28 0 R >> stream q 0.5 0 0 0.5 153 198 cm /Fx1 Do Q +q +0.5 0 0 0.5 0 0 cm +/Fx0 Do +Q +q +0.5 0 0 0.5 108 243 cm +/Fx2 Do +Q endstream endobj -36 0 obj -35 +28 0 obj +101 endobj -%% Contents for page 2 -37 0 obj +29 0 obj << - /Length 38 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 2 + 0 + 0 + 2 + 0 + 0 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 30 0 R >> stream 1 0 0 RG @@ -739,30 +598,11 @@ ET endstream endobj -38 0 obj +30 0 obj 117 endobj -%% Contents for page 2 -39 0 obj -<< - /Length 40 0 R ->> -stream - -Q -q -0.5 0 0 0.5 108 243 cm -/Fx2 Do -Q -endstream -endobj - -40 0 obj -38 -endobj - -41 0 obj +31 0 obj << /BBox [ 0 @@ -772,13 +612,13 @@ endobj ] /Resources << /Font << - /F1 195 0 R + /F1 133 0 R >> - /ProcSet 196 0 R + /ProcSet 134 0 R >> /Subtype /Form /Type /XObject - /Length 42 0 R + /Length 32 0 R >> stream 0 1 0 RG @@ -794,11 +634,11 @@ ET endstream endobj -42 0 obj +32 0 obj 110 endobj -43 0 obj +33 0 obj << /BBox [ 0 @@ -816,13 +656,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 44 0 R + /Length 34 0 R >> stream 0 0 1 RG @@ -838,45 +678,52 @@ ET endstream endobj -44 0 obj +34 0 obj 113 endobj %% Contents for page 3 -45 0 obj +35 0 obj << - /Length 46 0 R + /Length 36 0 R >> stream q +0.77273 0 0 0.77273 0 159.54545 cm +/Fx1 Do +Q +q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +1 0 0 1 20 20 cm +/Fx2 Do +Q endstream endobj -46 0 obj -2 +36 0 obj +103 endobj -%% Contents for page 3 -47 0 obj +37 0 obj << - /Length 48 0 R ->> -stream -q -0.77273 0 0 0.77273 0 159.54545 cm -/Fx1 Do -Q -endstream -endobj - -48 0 obj -47 -endobj - -%% Contents for page 3 -49 0 obj -<< - /Length 50 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 38 0 R >> stream 1 0 0 RG @@ -884,19 +731,6 @@ stream BT /F1 24 Tf 72 720 Td -endstream -endobj - -50 0 obj -45 -endobj - -%% Contents for page 3 -51 0 obj -<< - /Length 52 0 R ->> -stream (Page 3 - red) Tj ET 5 w @@ -905,30 +739,11 @@ ET endstream endobj -52 0 obj -63 -endobj - -%% Contents for page 3 -53 0 obj -<< - /Length 54 0 R ->> -stream - -Q -q -1 0 0 1 20 20 cm -/Fx2 Do -Q -endstream -endobj - -54 0 obj -32 +38 0 obj +108 endobj -55 0 obj +39 0 obj << /BBox [ 0 @@ -946,13 +761,13 @@ endobj ] /Resources << /Font << - /F1 195 0 R + /F1 133 0 R >> - /ProcSet 196 0 R + /ProcSet 134 0 R >> /Subtype /Form /Type /XObject - /Length 56 0 R + /Length 40 0 R >> stream 0 1 0 RG @@ -968,11 +783,11 @@ ET endstream endobj -56 0 obj +40 0 obj 114 endobj -57 0 obj +41 0 obj << /BBox [ 10 @@ -990,13 +805,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 58 0 R + /Length 42 0 R >> stream 0 0 1 RG @@ -1013,45 +828,52 @@ ET endstream endobj -58 0 obj +42 0 obj 150 endobj %% Contents for page 4 -59 0 obj -<< - /Length 60 0 R ->> -stream -q -endstream -endobj - -60 0 obj -2 -endobj - -%% Contents for page 4 -61 0 obj +43 0 obj << - /Length 62 0 R + /Length 44 0 R >> stream q 0.77273 0 0 0.77273 0 159.54545 cm /Fx1 Do Q +q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +0.81383 0 0 0.81383 16.2766 146.96809 cm +/Fx2 Do +Q endstream endobj -62 0 obj -47 +44 0 obj +127 endobj -%% Contents for page 4 -63 0 obj +45 0 obj << - /Length 64 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 46 0 R >> stream 1 0 0 RG @@ -1067,30 +889,11 @@ ET endstream endobj -64 0 obj +46 0 obj 108 endobj -%% Contents for page 4 -65 0 obj -<< - /Length 66 0 R ->> -stream - -Q -q -0.81383 0 0 0.81383 16.2766 146.96809 cm -/Fx2 Do -Q -endstream -endobj - -66 0 obj -56 -endobj - -67 0 obj +47 0 obj << /BBox [ 0 @@ -1108,13 +911,13 @@ endobj ] /Resources << /Font << - /F1 195 0 R + /F1 133 0 R >> - /ProcSet 196 0 R + /ProcSet 134 0 R >> /Subtype /Form /Type /XObject - /Length 68 0 R + /Length 48 0 R >> stream 0 1 0 RG @@ -1130,11 +933,11 @@ ET endstream endobj -68 0 obj +48 0 obj 114 endobj -69 0 obj +49 0 obj << /BBox [ 20 @@ -1152,13 +955,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 70 0 R + /Length 50 0 R >> stream 0 0 1 RG @@ -1176,45 +979,60 @@ ET endstream endobj -70 0 obj +50 0 obj 170 endobj %% Contents for page 5 -71 0 obj -<< - /Length 72 0 R ->> -stream -q -endstream -endobj - -72 0 obj -2 -endobj - -%% Contents for page 5 -73 0 obj +51 0 obj << - /Length 74 0 R + /Length 52 0 R >> stream q 0 0.77273 -0.77273 0 612 159.54545 cm /Fx1 Do Q +q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 0.77273 -0.77273 0 612 159.54545 cm +/Fx2 Do +Q endstream endobj -74 0 obj -50 +52 0 obj +130 endobj -%% Contents for page 5 -75 0 obj +53 0 obj << - /Length 76 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 54 0 R >> stream 1 0 0 RG @@ -1230,30 +1048,11 @@ ET endstream endobj -76 0 obj +54 0 obj 112 endobj -%% Contents for page 5 -77 0 obj -<< - /Length 78 0 R ->> -stream - -Q -q -0 0.77273 -0.77273 0 612 159.54545 cm -/Fx2 Do -Q -endstream -endobj - -78 0 obj -53 -endobj - -79 0 obj +55 0 obj << /BBox [ 0 @@ -1271,13 +1070,13 @@ endobj ] /Resources << /Font << - /F1 195 0 R + /F1 133 0 R >> - /ProcSet 196 0 R + /ProcSet 134 0 R >> /Subtype /Form /Type /XObject - /Length 80 0 R + /Length 56 0 R >> stream 0 1 0 RG @@ -1293,11 +1092,11 @@ ET endstream endobj -80 0 obj +56 0 obj 115 endobj -81 0 obj +57 0 obj << /BBox [ 0 @@ -1307,13 +1106,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 82 0 R + /Length 58 0 R >> stream 0 0 1 RG @@ -1329,45 +1128,60 @@ ET endstream endobj -82 0 obj +58 0 obj 109 endobj %% Contents for page 6 -83 0 obj -<< - /Length 84 0 R ->> -stream -q -endstream -endobj - -84 0 obj -2 -endobj - -%% Contents for page 6 -85 0 obj +59 0 obj << - /Length 86 0 R + /Length 60 0 R >> stream q 0 0.66667 -0.66667 0 570 192 cm /Fx1 Do Q +q +0 0.66667 -0.66667 0 612 0 cm +/Fx0 Do +Q +q +0 0.66667 -0.66667 0 510 132 cm +/Fx2 Do +Q endstream endobj -86 0 obj -44 +60 0 obj +130 endobj -%% Contents for page 6 -87 0 obj +61 0 obj << - /Length 88 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1.5 + 1.5 + 0 + 0 + 918 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 62 0 R >> stream 1 0 0 RG @@ -1383,30 +1197,11 @@ ET endstream endobj -88 0 obj +62 0 obj 123 endobj -%% Contents for page 6 -89 0 obj -<< - /Length 90 0 R ->> -stream - -Q -q -0 0.66667 -0.66667 0 510 132 cm -/Fx2 Do -Q -endstream -endobj - -90 0 obj -47 -endobj - -91 0 obj +63 0 obj << /BBox [ 0 @@ -1424,13 +1219,13 @@ endobj ] /Resources << /Font << - /F1 195 0 R + /F1 133 0 R >> - /ProcSet 196 0 R + /ProcSet 134 0 R >> /Subtype /Form /Type /XObject - /Length 92 0 R + /Length 64 0 R >> stream 0 1 0 RG @@ -1446,11 +1241,11 @@ ET endstream endobj -92 0 obj +64 0 obj 115 endobj -93 0 obj +65 0 obj << /BBox [ 0 @@ -1468,13 +1263,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 94 0 R + /Length 66 0 R >> stream 0 0 1 RG @@ -1490,45 +1285,60 @@ ET endstream endobj -94 0 obj +66 0 obj 113 endobj %% Contents for page 7 -95 0 obj -<< - /Length 96 0 R ->> -stream -q -endstream -endobj - -96 0 obj -2 -endobj - -%% Contents for page 7 -97 0 obj +67 0 obj << - /Length 98 0 R + /Length 68 0 R >> stream q 0 1 -1 0 612 0 cm /Fx1 Do Q +q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 0.77273 -0.77273 0 612 159.54545 cm +/Fx2 Do +Q endstream endobj -98 0 obj -30 +68 0 obj +110 endobj -%% Contents for page 7 -99 0 obj +69 0 obj << - /Length 100 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 70 0 R >> stream 1 0 0 RG @@ -1544,30 +1354,11 @@ ET endstream endobj -100 0 obj +70 0 obj 112 endobj -%% Contents for page 7 -101 0 obj -<< - /Length 102 0 R ->> -stream - -Q -q -0 0.77273 -0.77273 0 612 159.54545 cm -/Fx2 Do -Q -endstream -endobj - -102 0 obj -53 -endobj - -103 0 obj +71 0 obj << /BBox [ 0 @@ -1585,13 +1376,13 @@ endobj ] /Resources << /Font << - /F1 195 0 R + /F1 133 0 R >> - /ProcSet 196 0 R + /ProcSet 134 0 R >> /Subtype /Form /Type /XObject - /Length 104 0 R + /Length 72 0 R >> stream 0 1 0 RG @@ -1607,11 +1398,11 @@ ET endstream endobj -104 0 obj +72 0 obj 115 endobj -105 0 obj +73 0 obj << /BBox [ 0 @@ -1629,13 +1420,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 106 0 R + /Length 74 0 R >> stream 0 0 1 RG @@ -1651,45 +1442,60 @@ ET endstream endobj -106 0 obj +74 0 obj 114 endobj %% Contents for page 8 -107 0 obj -<< - /Length 108 0 R ->> -stream -q -endstream -endobj - -108 0 obj -2 -endobj - -%% Contents for page 8 -109 0 obj +75 0 obj << - /Length 110 0 R + /Length 76 0 R >> stream q 0 1 -1 0 612 0 cm /Fx1 Do Q +q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 1 -1 0 612 0 cm +/Fx2 Do +Q endstream endobj -110 0 obj -30 +76 0 obj +90 endobj -%% Contents for page 8 -111 0 obj +77 0 obj << - /Length 112 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 78 0 R >> stream 1 0 0 RG @@ -1705,30 +1511,11 @@ ET endstream endobj -112 0 obj +78 0 obj 112 endobj -%% Contents for page 8 -113 0 obj -<< - /Length 114 0 R ->> -stream - -Q -q -0 1 -1 0 612 0 cm -/Fx2 Do -Q -endstream -endobj - -114 0 obj -33 -endobj - -115 0 obj +79 0 obj << /BBox [ 0 @@ -1746,13 +1533,13 @@ endobj ] /Resources << /Font << - /F1 195 0 R + /F1 133 0 R >> - /ProcSet 196 0 R + /ProcSet 134 0 R >> /Subtype /Form /Type /XObject - /Length 116 0 R + /Length 80 0 R >> stream 0 1 0 RG @@ -1768,11 +1555,11 @@ ET endstream endobj -116 0 obj +80 0 obj 115 endobj -117 0 obj +81 0 obj << /BBox [ 0 @@ -1790,13 +1577,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 118 0 R + /Length 82 0 R >> stream 0 0 1 RG @@ -1812,45 +1599,60 @@ ET endstream endobj -118 0 obj +82 0 obj 114 endobj %% Contents for page 9 -119 0 obj -<< - /Length 120 0 R ->> -stream -q -endstream -endobj - -120 0 obj -2 -endobj - -%% Contents for page 9 -121 0 obj +83 0 obj << - /Length 122 0 R + /Length 84 0 R >> stream q -0.77273 0 0 -0.77273 612 632.45455 cm /Fx1 Do Q +q +-1 0 0 -1 612 792 cm +/Fx0 Do +Q +q +-1 0 0 -1 612 792 cm +/Fx2 Do +Q endstream endobj -122 0 obj -51 +84 0 obj +117 endobj -%% Contents for page 9 -123 0 obj +85 0 obj << - /Length 124 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 86 0 R >> stream 1 0 0 RG @@ -1866,30 +1668,11 @@ ET endstream endobj -124 0 obj +86 0 obj 113 endobj -%% Contents for page 9 -125 0 obj -<< - /Length 126 0 R ->> -stream - -Q -q --1 0 0 -1 612 792 cm -/Fx2 Do -Q -endstream -endobj - -126 0 obj -36 -endobj - -127 0 obj +87 0 obj << /BBox [ 0 @@ -1899,13 +1682,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 128 0 R + /Length 88 0 R >> stream 0 0 1 RG @@ -1921,45 +1704,60 @@ ET endstream endobj -128 0 obj +88 0 obj 109 endobj %% Contents for page 10 -129 0 obj -<< - /Length 130 0 R ->> -stream -q -endstream -endobj - -130 0 obj -2 -endobj - -%% Contents for page 10 -131 0 obj +89 0 obj << - /Length 132 0 R + /Length 90 0 R >> stream q -0.77273 0 0 -0.77273 612 632.45455 cm /Fx1 Do Q +q +-1.33333 0 0 -1.33333 612 792 cm +/Fx0 Do +Q +q +-0.77273 0 0 -0.77273 612 632.45455 cm +/Fx2 Do +Q endstream endobj -132 0 obj -51 +90 0 obj +147 endobj -%% Contents for page 10 -133 0 obj +91 0 obj << - /Length 134 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -0.75 + 0 + 0 + -0.75 + 459 + 594 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 92 0 R >> stream 1 0 0 RG @@ -1975,30 +1773,11 @@ ET endstream endobj -134 0 obj +92 0 obj 126 endobj -%% Contents for page 10 -135 0 obj -<< - /Length 136 0 R ->> -stream - -Q -q --0.77273 0 0 -0.77273 612 632.45455 cm -/Fx2 Do -Q -endstream -endobj - -136 0 obj -54 -endobj - -137 0 obj +93 0 obj << /BBox [ 0 @@ -2016,13 +1795,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 138 0 R + /Length 94 0 R >> stream 0 0 1 RG @@ -2038,45 +1817,60 @@ ET endstream endobj -138 0 obj +94 0 obj 114 endobj %% Contents for page 11 -139 0 obj -<< - /Length 140 0 R ->> -stream -q -endstream -endobj - -140 0 obj -2 -endobj - -%% Contents for page 11 -141 0 obj +95 0 obj << - /Length 142 0 R + /Length 96 0 R >> stream q -0.77273 0 0 -0.77273 612 632.45455 cm /Fx1 Do Q +q +-1 0 0 -1 612 792 cm +/Fx0 Do +Q +q +-1 0 0 -1 612 792 cm +/Fx2 Do +Q endstream endobj -142 0 obj -51 +96 0 obj +117 endobj -%% Contents for page 11 -143 0 obj +97 0 obj << - /Length 144 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 98 0 R >> stream 1 0 0 RG @@ -2092,30 +1886,11 @@ ET endstream endobj -144 0 obj +98 0 obj 114 endobj -%% Contents for page 11 -145 0 obj -<< - /Length 146 0 R ->> -stream - -Q -q --1 0 0 -1 612 792 cm -/Fx2 Do -Q -endstream -endobj - -146 0 obj -36 -endobj - -147 0 obj +99 0 obj << /BBox [ 0 @@ -2133,13 +1908,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 148 0 R + /Length 100 0 R >> stream 0 0 1 RG @@ -2155,84 +1930,80 @@ ET endstream endobj -148 0 obj +100 0 obj 115 endobj %% Contents for page 12 -149 0 obj -<< - /Length 150 0 R ->> -stream -q -endstream -endobj - -150 0 obj -2 -endobj - -%% Contents for page 12 -151 0 obj +101 0 obj << - /Length 152 0 R + /Length 102 0 R >> stream q -0.77273 0 0 -0.77273 612 632.45455 cm /Fx1 Do Q +q +-1 0 0 -1 612 792 cm +/Fx0 Do +Q +q +-0.77273 0 0 -0.77273 612 632.45455 cm +/Fx2 Do +Q endstream endobj -152 0 obj -51 +102 0 obj +135 endobj -%% Contents for page 12 -153 0 obj +103 0 obj << - /Length 154 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 104 0 R >> stream 1 0 0 RG 1 0 0 rg BT /F1 24 Tf - 72 720 Td - (Page 12 - red, 180) Tj -ET -5 w -0 0 612 792 re s -271 371 60 60 re f -endstream -endobj - -154 0 obj -114 -endobj - -%% Contents for page 12 -155 0 obj -<< - /Length 156 0 R ->> -stream - -Q -q --0.77273 0 0 -0.77273 612 632.45455 cm -/Fx2 Do -Q + 72 720 Td + (Page 12 - red, 180) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f endstream endobj -156 0 obj -54 +104 0 obj +114 endobj -157 0 obj +105 0 obj << /BBox [ 0 @@ -2250,13 +2021,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 158 0 R + /Length 106 0 R >> stream 0 0 1 RG @@ -2272,45 +2043,60 @@ ET endstream endobj -158 0 obj +106 0 obj 115 endobj %% Contents for page 13 -159 0 obj -<< - /Length 160 0 R ->> -stream -q -endstream -endobj - -160 0 obj -2 -endobj - -%% Contents for page 13 -161 0 obj +107 0 obj << - /Length 162 0 R + /Length 108 0 R >> stream q 0 -1 1 0 0 792 cm /Fx1 Do Q +q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -0.77273 0.77273 0 0 632.45455 cm +/Fx2 Do +Q endstream endobj -162 0 obj -30 +108 0 obj +108 endobj -%% Contents for page 13 -163 0 obj +109 0 obj << - /Length 164 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 110 0 R >> stream 1 0 0 RG @@ -2326,30 +2112,11 @@ ET endstream endobj -164 0 obj +110 0 obj 114 endobj -%% Contents for page 13 -165 0 obj -<< - /Length 166 0 R ->> -stream - -Q -q -0 -0.77273 0.77273 0 0 632.45455 cm -/Fx2 Do -Q -endstream -endobj - -166 0 obj -51 -endobj - -167 0 obj +111 0 obj << /BBox [ 0 @@ -2359,13 +2126,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 168 0 R + /Length 112 0 R >> stream 0 0 1 RG @@ -2381,45 +2148,60 @@ ET endstream endobj -168 0 obj +112 0 obj 110 endobj %% Contents for page 14 -169 0 obj -<< - /Length 170 0 R ->> -stream -q -endstream -endobj - -170 0 obj -2 -endobj - -%% Contents for page 14 -171 0 obj +113 0 obj << - /Length 172 0 R + /Length 114 0 R >> stream q 0 -0.8 0.8 0 61.2 712.8 cm /Fx1 Do Q +q +0 -0.8 0.8 0 0 792 cm +/Fx0 Do +Q +q +0 -0.66667 0.66667 0 0 792 cm +/Fx2 Do +Q endstream endobj -172 0 obj -39 +114 0 obj +115 endobj -%% Contents for page 14 -173 0 obj +115 0 obj << - /Length 174 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1.25 + -1.25 + 0 + 990 + 0 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 116 0 R >> stream 1 0 0 RG @@ -2435,30 +2217,11 @@ ET endstream endobj -174 0 obj +116 0 obj 126 endobj -%% Contents for page 14 -175 0 obj -<< - /Length 176 0 R ->> -stream - -Q -q -0 -0.66667 0.66667 0 0 792 cm -/Fx2 Do -Q -endstream -endobj - -176 0 obj -45 -endobj - -177 0 obj +117 0 obj << /BBox [ 0 @@ -2476,13 +2239,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 178 0 R + /Length 118 0 R >> stream 0 0 1 RG @@ -2498,28 +2261,56 @@ ET endstream endobj -178 0 obj +118 0 obj 125 endobj %% Contents for page 15 -179 0 obj +119 0 obj << - /Length 180 0 R + /Length 120 0 R >> stream q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -0.77273 0.77273 0 0 632.45455 cm +/Fx1 Do +Q endstream endobj -180 0 obj -2 +120 0 obj +78 endobj -%% Contents for page 15 -181 0 obj +121 0 obj << - /Length 182 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 122 0 R >> stream 1 0 0 RG @@ -2535,30 +2326,11 @@ ET endstream endobj -182 0 obj +122 0 obj 114 endobj -%% Contents for page 15 -183 0 obj -<< - /Length 184 0 R ->> -stream - -Q -q -0 -0.77273 0.77273 0 0 632.45455 cm -/Fx1 Do -Q -endstream -endobj - -184 0 obj -51 -endobj - -185 0 obj +123 0 obj << /BBox [ 0 @@ -2576,13 +2348,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 186 0 R + /Length 124 0 R >> stream 0 0 1 RG @@ -2598,28 +2370,56 @@ ET endstream endobj -186 0 obj +124 0 obj 115 endobj %% Contents for page 16 -187 0 obj +125 0 obj << - /Length 188 0 R + /Length 126 0 R >> stream q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -1 1 0 0 792 cm +/Fx1 Do +Q endstream endobj -188 0 obj -2 +126 0 obj +60 endobj -%% Contents for page 16 -189 0 obj +127 0 obj << - /Length 190 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 131 0 R + >> + /ProcSet 132 0 R + >> + /Subtype /Form + /Type /XObject + /Length 128 0 R >> stream 1 0 0 RG @@ -2635,30 +2435,11 @@ ET endstream endobj -190 0 obj +128 0 obj 114 endobj -%% Contents for page 16 -191 0 obj -<< - /Length 192 0 R ->> -stream - -Q -q -0 -1 1 0 0 792 cm -/Fx1 Do -Q -endstream -endobj - -192 0 obj -33 -endobj - -193 0 obj +129 0 obj << /BBox [ 0 @@ -2676,13 +2457,13 @@ endobj ] /Resources << /Font << - /F1 197 0 R + /F1 135 0 R >> - /ProcSet 198 0 R + /ProcSet 136 0 R >> /Subtype /Form /Type /XObject - /Length 194 0 R + /Length 130 0 R >> stream 0 0 1 RG @@ -2698,11 +2479,28 @@ ET endstream endobj -194 0 obj +130 0 obj 115 endobj -195 0 obj +131 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +132 0 obj +[ + /PDF + /Text +] +endobj + +133 0 obj << /BaseFont /Helvetica /Encoding /WinAnsiEncoding @@ -2712,14 +2510,14 @@ endobj >> endobj -196 0 obj +134 0 obj [ /PDF /Text ] endobj -197 0 obj +135 0 obj << /BaseFont /Helvetica /Encoding /WinAnsiEncoding @@ -2729,7 +2527,7 @@ endobj >> endobj -198 0 obj +136 0 obj [ /PDF /Text @@ -2737,211 +2535,149 @@ endobj endobj xref -0 199 +0 137 0000000000 65535 f 0000000025 00000 n 0000000079 00000 n 0000000321 00000 n -0000000628 00000 n -0000000949 00000 n -0000001267 00000 n -0000001574 00000 n -0000001894 00000 n -0000002230 00000 n -0000002553 00000 n -0000002880 00000 n -0000003209 00000 n -0000003555 00000 n -0000003884 00000 n -0000004213 00000 n -0000004542 00000 n -0000004888 00000 n -0000005186 00000 n -0000005496 00000 n -0000005555 00000 n -0000005597 00000 n -0000005681 00000 n -0000005724 00000 n -0000005889 00000 n -0000005933 00000 n -0000006020 00000 n -0000006040 00000 n -0000006159 00000 n -0000006195 00000 n -0000006518 00000 n -0000006539 00000 n -0000006861 00000 n -0000006905 00000 n -0000006964 00000 n -0000007006 00000 n -0000007098 00000 n -0000007141 00000 n -0000007315 00000 n -0000007359 00000 n -0000007454 00000 n -0000007474 00000 n -0000007797 00000 n -0000007818 00000 n -0000008199 00000 n -0000008243 00000 n -0000008302 00000 n -0000008344 00000 n -0000008448 00000 n -0000008491 00000 n -0000008593 00000 n -0000008636 00000 n -0000008756 00000 n -0000008799 00000 n -0000008888 00000 n -0000008908 00000 n -0000009290 00000 n -0000009311 00000 n -0000009734 00000 n -0000009778 00000 n -0000009837 00000 n -0000009879 00000 n -0000009983 00000 n -0000010026 00000 n -0000010191 00000 n -0000010235 00000 n -0000010348 00000 n -0000010368 00000 n -0000010750 00000 n -0000010771 00000 n -0000011211 00000 n -0000011255 00000 n -0000011314 00000 n -0000011356 00000 n -0000011463 00000 n -0000011506 00000 n -0000011675 00000 n -0000011719 00000 n -0000011829 00000 n -0000011849 00000 n -0000012235 00000 n -0000012256 00000 n -0000012578 00000 n -0000012622 00000 n -0000012681 00000 n -0000012723 00000 n -0000012824 00000 n -0000012867 00000 n -0000013047 00000 n -0000013091 00000 n -0000013195 00000 n -0000013215 00000 n -0000013601 00000 n -0000013622 00000 n -0000014003 00000 n -0000014047 00000 n -0000014106 00000 n -0000014148 00000 n -0000014235 00000 n -0000014278 00000 n -0000014448 00000 n -0000014493 00000 n -0000014605 00000 n -0000014626 00000 n -0000015011 00000 n -0000015033 00000 n -0000015420 00000 n -0000015465 00000 n -0000015526 00000 n -0000015569 00000 n -0000015658 00000 n -0000015702 00000 n -0000015873 00000 n -0000015918 00000 n -0000016010 00000 n -0000016031 00000 n -0000016416 00000 n -0000016438 00000 n -0000016822 00000 n -0000016867 00000 n -0000016928 00000 n -0000016971 00000 n -0000017081 00000 n -0000017125 00000 n -0000017297 00000 n -0000017342 00000 n -0000017437 00000 n -0000017458 00000 n -0000017782 00000 n -0000017828 00000 n -0000017889 00000 n -0000017933 00000 n -0000018043 00000 n -0000018088 00000 n -0000018273 00000 n -0000018319 00000 n -0000018432 00000 n -0000018453 00000 n -0000018837 00000 n +0000000546 00000 n +0000000785 00000 n +0000001010 00000 n +0000001235 00000 n +0000001473 00000 n +0000001727 00000 n +0000001965 00000 n +0000002204 00000 n +0000002445 00000 n +0000002703 00000 n +0000002944 00000 n +0000003188 00000 n +0000003432 00000 n +0000003693 00000 n +0000003919 00000 n +0000004157 00000 n +0000004295 00000 n +0000004315 00000 n +0000004636 00000 n +0000004657 00000 n +0000004980 00000 n +0000005001 00000 n +0000005323 00000 n +0000005367 00000 n +0000005525 00000 n +0000005546 00000 n +0000005928 00000 n +0000005949 00000 n +0000006272 00000 n +0000006293 00000 n +0000006674 00000 n +0000006718 00000 n +0000006878 00000 n +0000006899 00000 n +0000007220 00000 n +0000007241 00000 n +0000007623 00000 n +0000007644 00000 n +0000008067 00000 n +0000008111 00000 n +0000008295 00000 n +0000008316 00000 n +0000008637 00000 n +0000008658 00000 n +0000009040 00000 n +0000009061 00000 n +0000009501 00000 n +0000009545 00000 n +0000009732 00000 n +0000009753 00000 n +0000010133 00000 n +0000010154 00000 n +0000010540 00000 n +0000010561 00000 n +0000010883 00000 n +0000010927 00000 n +0000011114 00000 n +0000011135 00000 n +0000011530 00000 n +0000011551 00000 n +0000011937 00000 n +0000011958 00000 n +0000012339 00000 n +0000012383 00000 n +0000012550 00000 n +0000012571 00000 n +0000012951 00000 n +0000012972 00000 n +0000013355 00000 n +0000013376 00000 n +0000013761 00000 n +0000013805 00000 n +0000013952 00000 n +0000013972 00000 n +0000014352 00000 n +0000014373 00000 n +0000014756 00000 n +0000014777 00000 n +0000015159 00000 n +0000015203 00000 n +0000015377 00000 n +0000015398 00000 n +0000015782 00000 n +0000015803 00000 n +0000016125 00000 n +0000016170 00000 n +0000016374 00000 n +0000016395 00000 n +0000016798 00000 n +0000016819 00000 n +0000017201 00000 n +0000017246 00000 n +0000017420 00000 n +0000017441 00000 n +0000017826 00000 n +0000017847 00000 n +0000018234 00000 n +0000018280 00000 n +0000018474 00000 n +0000018496 00000 n 0000018883 00000 n -0000018944 00000 n -0000018988 00000 n -0000019098 00000 n -0000019143 00000 n -0000019316 00000 n -0000019362 00000 n -0000019457 00000 n -0000019478 00000 n -0000019866 00000 n -0000019912 00000 n -0000019973 00000 n -0000020017 00000 n -0000020127 00000 n -0000020172 00000 n -0000020345 00000 n -0000020391 00000 n -0000020504 00000 n -0000020525 00000 n -0000020910 00000 n -0000020956 00000 n -0000021017 00000 n -0000021061 00000 n -0000021150 00000 n -0000021195 00000 n -0000021368 00000 n -0000021414 00000 n -0000021524 00000 n -0000021545 00000 n -0000021870 00000 n -0000021916 00000 n -0000021977 00000 n -0000022021 00000 n -0000022119 00000 n -0000022164 00000 n -0000022349 00000 n -0000022395 00000 n -0000022499 00000 n -0000022520 00000 n -0000022919 00000 n -0000022965 00000 n -0000023026 00000 n -0000023070 00000 n -0000023243 00000 n -0000023289 00000 n -0000023399 00000 n -0000023420 00000 n -0000023808 00000 n -0000023854 00000 n -0000023915 00000 n -0000023959 00000 n -0000024132 00000 n -0000024178 00000 n -0000024270 00000 n -0000024291 00000 n -0000024676 00000 n -0000024698 00000 n -0000024818 00000 n -0000024855 00000 n -0000024975 00000 n +0000018905 00000 n +0000019290 00000 n +0000019336 00000 n +0000019503 00000 n +0000019525 00000 n +0000019909 00000 n +0000019931 00000 n +0000020256 00000 n +0000020302 00000 n +0000020476 00000 n +0000020498 00000 n +0000020900 00000 n +0000020922 00000 n +0000021321 00000 n +0000021367 00000 n +0000021504 00000 n +0000021525 00000 n +0000021909 00000 n +0000021931 00000 n +0000022319 00000 n +0000022365 00000 n +0000022484 00000 n +0000022505 00000 n +0000022889 00000 n +0000022911 00000 n +0000023296 00000 n +0000023318 00000 n +0000023438 00000 n +0000023475 00000 n +0000023595 00000 n +0000023632 00000 n +0000023752 00000 n trailer << /Root 1 0 R - /Size 199 + /Size 137 /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] >> startxref -25012 +23789 %%EOF diff --git a/qpdf/qtest/qpdf/uo-2.pdf b/qpdf/qtest/qpdf/uo-2.pdf index e001f518..665a3ba3 100644 --- a/qpdf/qtest/qpdf/uo-2.pdf +++ b/qpdf/qtest/qpdf/uo-2.pdf @@ -37,12 +37,7 @@ endobj %% Page 1 3 0 obj << - /Contents [ - 19 0 R - 21 0 R - 23 0 R - 25 0 R - ] + /Contents 19 0 R /MediaBox [ 0 0 @@ -51,13 +46,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 29 0 R - /Fx2 31 0 R + /Fx0 21 0 R + /Fx1 23 0 R + /Fx2 25 0 R >> >> /Type /Page @@ -67,12 +59,7 @@ endobj %% Page 2 4 0 obj << - /Contents [ - 33 0 R - 35 0 R - 37 0 R - 39 0 R - ] + /Contents 27 0 R /MediaBox [ 0 0 @@ -81,13 +68,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 41 0 R - /Fx2 43 0 R + /Fx0 29 0 R + /Fx1 31 0 R + /Fx2 33 0 R >> >> /Type /Page @@ -98,13 +82,7 @@ endobj %% Page 3 5 0 obj << - /Contents [ - 45 0 R - 47 0 R - 49 0 R - 51 0 R - 53 0 R - ] + /Contents 35 0 R /MediaBox [ 0 0 @@ -113,13 +91,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 55 0 R - /Fx2 31 0 R + /Fx0 37 0 R + /Fx1 39 0 R + /Fx2 25 0 R >> >> /Type /Page @@ -129,12 +104,7 @@ endobj %% Page 4 6 0 obj << - /Contents [ - 57 0 R - 59 0 R - 61 0 R - 63 0 R - ] + /Contents 41 0 R /MediaBox [ 0 0 @@ -143,13 +113,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 65 0 R - /Fx2 43 0 R + /Fx0 43 0 R + /Fx1 45 0 R + /Fx2 33 0 R >> >> /Type /Page @@ -159,12 +126,7 @@ endobj %% Page 5 7 0 obj << - /Contents [ - 67 0 R - 69 0 R - 71 0 R - 73 0 R - ] + /Contents 47 0 R /MediaBox [ 0 0 @@ -173,13 +135,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 75 0 R - /Fx2 31 0 R + /Fx0 49 0 R + /Fx1 51 0 R + /Fx2 25 0 R >> >> /Rotate 90 @@ -190,12 +149,7 @@ endobj %% Page 6 8 0 obj << - /Contents [ - 77 0 R - 79 0 R - 81 0 R - 83 0 R - ] + /Contents 53 0 R /MediaBox [ 0 0 @@ -204,13 +158,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 85 0 R - /Fx2 43 0 R + /Fx0 55 0 R + /Fx1 57 0 R + /Fx2 33 0 R >> >> /Rotate 90 @@ -222,12 +173,7 @@ endobj %% Page 7 9 0 obj << - /Contents [ - 87 0 R - 89 0 R - 91 0 R - 93 0 R - ] + /Contents 59 0 R /MediaBox [ 0 0 @@ -236,13 +182,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 95 0 R - /Fx2 31 0 R + /Fx0 61 0 R + /Fx1 63 0 R + /Fx2 25 0 R >> >> /Rotate 90 @@ -253,12 +196,7 @@ endobj %% Page 8 10 0 obj << - /Contents [ - 97 0 R - 99 0 R - 101 0 R - 103 0 R - ] + /Contents 65 0 R /MediaBox [ 0 0 @@ -267,13 +205,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 105 0 R - /Fx2 43 0 R + /Fx0 67 0 R + /Fx1 69 0 R + /Fx2 33 0 R >> >> /Rotate 90 @@ -284,12 +219,7 @@ endobj %% Page 9 11 0 obj << - /Contents [ - 107 0 R - 109 0 R - 111 0 R - 113 0 R - ] + /Contents 71 0 R /MediaBox [ 0 0 @@ -298,13 +228,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 115 0 R - /Fx2 31 0 R + /Fx0 73 0 R + /Fx1 75 0 R + /Fx2 25 0 R >> >> /Rotate 180 @@ -315,12 +242,7 @@ endobj %% Page 10 12 0 obj << - /Contents [ - 117 0 R - 119 0 R - 121 0 R - 123 0 R - ] + /Contents 77 0 R /MediaBox [ 0 0 @@ -329,13 +251,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 125 0 R - /Fx2 43 0 R + /Fx0 79 0 R + /Fx1 81 0 R + /Fx2 33 0 R >> >> /Rotate 180 @@ -347,12 +266,7 @@ endobj %% Page 11 13 0 obj << - /Contents [ - 127 0 R - 129 0 R - 131 0 R - 133 0 R - ] + /Contents 83 0 R /MediaBox [ 0 0 @@ -361,13 +275,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 135 0 R - /Fx2 31 0 R + /Fx0 85 0 R + /Fx1 87 0 R + /Fx2 25 0 R >> >> /Rotate 180 @@ -378,12 +289,7 @@ endobj %% Page 12 14 0 obj << - /Contents [ - 137 0 R - 139 0 R - 141 0 R - 143 0 R - ] + /Contents 89 0 R /MediaBox [ 0 0 @@ -392,13 +298,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 145 0 R - /Fx2 43 0 R + /Fx0 91 0 R + /Fx1 93 0 R + /Fx2 33 0 R >> >> /Rotate 180 @@ -409,12 +312,7 @@ endobj %% Page 13 15 0 obj << - /Contents [ - 147 0 R - 149 0 R - 151 0 R - 153 0 R - ] + /Contents 95 0 R /MediaBox [ 0 0 @@ -423,13 +321,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 155 0 R - /Fx2 31 0 R + /Fx0 97 0 R + /Fx1 99 0 R + /Fx2 25 0 R >> >> /Rotate 270 @@ -440,12 +335,7 @@ endobj %% Page 14 16 0 obj << - /Contents [ - 157 0 R - 159 0 R - 161 0 R - 163 0 R - ] + /Contents 101 0 R /MediaBox [ 0 0 @@ -454,13 +344,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 165 0 R - /Fx2 43 0 R + /Fx0 103 0 R + /Fx1 105 0 R + /Fx2 33 0 R >> >> /Rotate 270 @@ -472,12 +359,7 @@ endobj %% Page 15 17 0 obj << - /Contents [ - 167 0 R - 169 0 R - 171 0 R - 173 0 R - ] + /Contents 107 0 R /MediaBox [ 0 0 @@ -486,13 +368,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 175 0 R - /Fx2 31 0 R + /Fx0 109 0 R + /Fx1 111 0 R + /Fx2 25 0 R >> >> /Rotate 270 @@ -503,12 +382,7 @@ endobj %% Page 16 18 0 obj << - /Contents [ - 177 0 R - 179 0 R - 181 0 R - 183 0 R - ] + /Contents 113 0 R /MediaBox [ 0 0 @@ -517,13 +391,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 27 0 R - >> - /ProcSet 28 0 R /XObject << - /Fx1 185 0 R - /Fx2 43 0 R + /Fx0 115 0 R + /Fx1 117 0 R + /Fx2 33 0 R >> >> /Rotate 270 @@ -538,34 +409,41 @@ endobj >> stream q -endstream -endobj - -20 0 obj -2 -endobj - -%% Contents for page 1 -21 0 obj -<< - /Length 22 0 R ->> -stream -q 0.77273 0 0 0.77273 0 159.54545 cm /Fx1 Do Q +q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +0.77273 0 0 0.77273 0 159.54545 cm +/Fx2 Do +Q endstream endobj -22 0 obj -47 +20 0 obj +121 endobj -%% Contents for page 1 -23 0 obj +21 0 obj << - /Length 24 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 22 0 R >> stream 1 0 0 RG @@ -581,47 +459,11 @@ ET endstream endobj -24 0 obj +22 0 obj 108 endobj -%% Contents for page 1 -25 0 obj -<< - /Length 26 0 R ->> -stream - -Q -q -0.77273 0 0 0.77273 0 159.54545 cm -/Fx2 Do -Q -endstream -endobj - -26 0 obj -50 -endobj - -27 0 obj -<< - /BaseFont /Helvetica - /Encoding /WinAnsiEncoding - /Name /F1 - /Subtype /Type1 - /Type /Font ->> -endobj - -28 0 obj -[ - /PDF - /Text -] -endobj - -29 0 obj +23 0 obj << /BBox [ 0 @@ -639,13 +481,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 30 0 R + /Length 24 0 R >> stream 0 0 1 RG @@ -661,11 +503,11 @@ ET endstream endobj -30 0 obj +24 0 obj 115 endobj -31 0 obj +25 0 obj << /BBox [ 0 @@ -683,13 +525,13 @@ endobj ] /Resources << /Font << - /F1 189 0 R + /F1 123 0 R >> - /ProcSet 190 0 R + /ProcSet 124 0 R >> /Subtype /Form /Type /XObject - /Length 32 0 R + /Length 26 0 R >> stream 0 1 0 RG @@ -705,45 +547,60 @@ ET endstream endobj -32 0 obj +26 0 obj 115 endobj %% Contents for page 2 -33 0 obj -<< - /Length 34 0 R ->> -stream -q -endstream -endobj - -34 0 obj -2 -endobj - -%% Contents for page 2 -35 0 obj +27 0 obj << - /Length 36 0 R + /Length 28 0 R >> stream q 0.5 0 0 0.5 153 198 cm /Fx1 Do Q +q +0.5 0 0 0.5 0 0 cm +/Fx0 Do +Q +q +0.5 0 0 0.5 108 243 cm +/Fx2 Do +Q endstream endobj -36 0 obj -35 +28 0 obj +101 endobj -%% Contents for page 2 -37 0 obj +29 0 obj << - /Length 38 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 2 + 0 + 0 + 2 + 0 + 0 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 30 0 R >> stream 1 0 0 RG @@ -759,30 +616,11 @@ ET endstream endobj -38 0 obj +30 0 obj 117 endobj -%% Contents for page 2 -39 0 obj -<< - /Length 40 0 R ->> -stream - -Q -q -0.5 0 0 0.5 108 243 cm -/Fx2 Do -Q -endstream -endobj - -40 0 obj -38 -endobj - -41 0 obj +31 0 obj << /BBox [ 0 @@ -800,13 +638,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 42 0 R + /Length 32 0 R >> stream 0 0 1 RG @@ -822,11 +660,11 @@ ET endstream endobj -42 0 obj +32 0 obj 115 endobj -43 0 obj +33 0 obj << /BBox [ 0 @@ -844,13 +682,13 @@ endobj ] /Resources << /Font << - /F1 189 0 R + /F1 123 0 R >> - /ProcSet 190 0 R + /ProcSet 124 0 R >> /Subtype /Form /Type /XObject - /Length 44 0 R + /Length 34 0 R >> stream 0 1 0 RG @@ -866,65 +704,59 @@ ET endstream endobj -44 0 obj +34 0 obj 115 endobj %% Contents for page 3 -45 0 obj -<< - /Length 46 0 R ->> -stream -q -endstream -endobj - -46 0 obj -2 -endobj - -%% Contents for page 3 -47 0 obj +35 0 obj << - /Length 48 0 R + /Length 36 0 R >> stream q 0.51515 0 0 0.51515 0 159.54545 cm /Fx1 Do Q +q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +0.77273 0 0 0.77273 0 159.54545 cm +/Fx2 Do +Q endstream endobj -48 0 obj -47 +36 0 obj +121 endobj -%% Contents for page 3 -49 0 obj +37 0 obj << - /Length 50 0 R ->> -stream -1 0 0 RG -1 0 0 rg -BT - /F1 24 Tf - 72 720 Td -endstream -endobj - -50 0 obj -45 -endobj - -%% Contents for page 3 -51 0 obj -<< - /Length 52 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 38 0 R >> stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td (Page 3 - red) Tj ET 5 w @@ -933,30 +765,11 @@ ET endstream endobj -52 0 obj -63 -endobj - -%% Contents for page 3 -53 0 obj -<< - /Length 54 0 R ->> -stream - -Q -q -0.77273 0 0 0.77273 0 159.54545 cm -/Fx2 Do -Q -endstream -endobj - -54 0 obj -50 +38 0 obj +108 endobj -55 0 obj +39 0 obj << /BBox [ 0 @@ -974,13 +787,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 56 0 R + /Length 40 0 R >> stream 0 0 1 RG @@ -996,45 +809,52 @@ ET endstream endobj -56 0 obj +40 0 obj 125 endobj %% Contents for page 4 -57 0 obj -<< - /Length 58 0 R ->> -stream -q -endstream -endobj - -58 0 obj -2 -endobj - -%% Contents for page 4 -59 0 obj +41 0 obj << - /Length 60 0 R + /Length 42 0 R >> stream q 1 0 0 1 0 0 cm /Fx1 Do Q +q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +0.77273 0 0 0.77273 0 159.54545 cm +/Fx2 Do +Q endstream endobj -60 0 obj -27 +42 0 obj +101 endobj -%% Contents for page 4 -61 0 obj +43 0 obj << - /Length 62 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 44 0 R >> stream 1 0 0 RG @@ -1050,30 +870,11 @@ ET endstream endobj -62 0 obj +44 0 obj 108 endobj -%% Contents for page 4 -63 0 obj -<< - /Length 64 0 R ->> -stream - -Q -q -0.77273 0 0 0.77273 0 159.54545 cm -/Fx2 Do -Q -endstream -endobj - -64 0 obj -50 -endobj - -65 0 obj +45 0 obj << /BBox [ 0 @@ -1083,13 +884,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 66 0 R + /Length 46 0 R >> stream 0 0 1 RG @@ -1105,45 +906,60 @@ ET endstream endobj -66 0 obj +46 0 obj 110 endobj %% Contents for page 5 -67 0 obj -<< - /Length 68 0 R ->> -stream -q -endstream -endobj - -68 0 obj -2 -endobj - -%% Contents for page 5 -69 0 obj +47 0 obj << - /Length 70 0 R + /Length 48 0 R >> stream q 0 1 -1 0 612 0 cm /Fx1 Do Q +q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 1 -1 0 612 0 cm +/Fx2 Do +Q endstream endobj -70 0 obj -30 +48 0 obj +90 endobj -%% Contents for page 5 -71 0 obj +49 0 obj << - /Length 72 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 50 0 R >> stream 1 0 0 RG @@ -1159,30 +975,11 @@ ET endstream endobj -72 0 obj +50 0 obj 112 endobj -%% Contents for page 5 -73 0 obj -<< - /Length 74 0 R ->> -stream - -Q -q -0 1 -1 0 612 0 cm -/Fx2 Do -Q -endstream -endobj - -74 0 obj -33 -endobj - -75 0 obj +51 0 obj << /BBox [ 0 @@ -1200,13 +997,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 76 0 R + /Length 52 0 R >> stream 0 0 1 RG @@ -1222,45 +1019,60 @@ ET endstream endobj -76 0 obj +52 0 obj 115 endobj %% Contents for page 6 -77 0 obj -<< - /Length 78 0 R ->> -stream -q -endstream -endobj - -78 0 obj -2 -endobj - -%% Contents for page 6 -79 0 obj +53 0 obj << - /Length 80 0 R + /Length 54 0 R >> stream q 0 0.66667 -0.66667 0 570 192 cm /Fx1 Do Q +q +0 0.66667 -0.66667 0 612 0 cm +/Fx0 Do +Q +q +0 0.66667 -0.66667 0 510 132 cm +/Fx2 Do +Q endstream endobj -80 0 obj -44 +54 0 obj +130 endobj -%% Contents for page 6 -81 0 obj +55 0 obj << - /Length 82 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1.5 + 1.5 + 0 + 0 + 918 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 56 0 R >> stream 1 0 0 RG @@ -1276,30 +1088,11 @@ ET endstream endobj -82 0 obj +56 0 obj 123 endobj -%% Contents for page 6 -83 0 obj -<< - /Length 84 0 R ->> -stream - -Q -q -0 0.66667 -0.66667 0 510 132 cm -/Fx2 Do -Q -endstream -endobj - -84 0 obj -47 -endobj - -85 0 obj +57 0 obj << /BBox [ 0 @@ -1317,13 +1110,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 86 0 R + /Length 58 0 R >> stream 0 0 1 RG @@ -1339,45 +1132,60 @@ ET endstream endobj -86 0 obj +58 0 obj 115 endobj %% Contents for page 7 -87 0 obj -<< - /Length 88 0 R ->> -stream -q -endstream -endobj - -88 0 obj -2 -endobj - -%% Contents for page 7 -89 0 obj +59 0 obj << - /Length 90 0 R + /Length 60 0 R >> stream q 0 1 -1 0 612 0 cm /Fx1 Do Q +q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 1 -1 0 612 0 cm +/Fx2 Do +Q endstream endobj -90 0 obj -30 +60 0 obj +90 endobj -%% Contents for page 7 -91 0 obj +61 0 obj << - /Length 92 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 62 0 R >> stream 1 0 0 RG @@ -1393,30 +1201,11 @@ ET endstream endobj -92 0 obj +62 0 obj 112 endobj -%% Contents for page 7 -93 0 obj -<< - /Length 94 0 R ->> -stream - -Q -q -0 1 -1 0 612 0 cm -/Fx2 Do -Q -endstream -endobj - -94 0 obj -33 -endobj - -95 0 obj +63 0 obj << /BBox [ 0 @@ -1434,13 +1223,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 96 0 R + /Length 64 0 R >> stream 0 0 1 RG @@ -1456,45 +1245,60 @@ ET endstream endobj -96 0 obj +64 0 obj 114 endobj %% Contents for page 8 -97 0 obj -<< - /Length 98 0 R ->> -stream -q -endstream -endobj - -98 0 obj -2 -endobj - -%% Contents for page 8 -99 0 obj +65 0 obj << - /Length 100 0 R + /Length 66 0 R >> stream q 0 0.77273 -0.77273 0 612 159.54545 cm /Fx1 Do Q +q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 1 -1 0 612 0 cm +/Fx2 Do +Q endstream endobj -100 0 obj -50 +66 0 obj +110 endobj -%% Contents for page 8 -101 0 obj +67 0 obj << - /Length 102 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 68 0 R >> stream 1 0 0 RG @@ -1510,30 +1314,11 @@ ET endstream endobj -102 0 obj +68 0 obj 112 endobj -%% Contents for page 8 -103 0 obj -<< - /Length 104 0 R ->> -stream - -Q -q -0 1 -1 0 612 0 cm -/Fx2 Do -Q -endstream -endobj - -104 0 obj -33 -endobj - -105 0 obj +69 0 obj << /BBox [ 0 @@ -1543,13 +1328,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 106 0 R + /Length 70 0 R >> stream 0 0 1 RG @@ -1565,45 +1350,60 @@ ET endstream endobj -106 0 obj +70 0 obj 109 endobj %% Contents for page 9 -107 0 obj +71 0 obj << - /Length 108 0 R + /Length 72 0 R >> stream q -endstream -endobj - -108 0 obj -2 -endobj - -%% Contents for page 9 -109 0 obj -<< - /Length 110 0 R ->> -stream +-0.77273 0 0 -0.77273 612 632.45455 cm +/Fx1 Do +Q +q +-1 0 0 -1 612 792 cm +/Fx0 Do +Q q -0.77273 0 0 -0.77273 612 632.45455 cm -/Fx1 Do +/Fx2 Do Q endstream endobj -110 0 obj -51 +72 0 obj +135 endobj -%% Contents for page 9 -111 0 obj +73 0 obj << - /Length 112 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 74 0 R >> stream 1 0 0 RG @@ -1619,30 +1419,11 @@ ET endstream endobj -112 0 obj +74 0 obj 113 endobj -%% Contents for page 9 -113 0 obj -<< - /Length 114 0 R ->> -stream - -Q -q --0.77273 0 0 -0.77273 612 632.45455 cm -/Fx2 Do -Q -endstream -endobj - -114 0 obj -54 -endobj - -115 0 obj +75 0 obj << /BBox [ 0 @@ -1660,13 +1441,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 116 0 R + /Length 76 0 R >> stream 0 0 1 RG @@ -1682,45 +1463,60 @@ ET endstream endobj -116 0 obj +76 0 obj 114 endobj %% Contents for page 10 -117 0 obj -<< - /Length 118 0 R ->> -stream -q -endstream -endobj - -118 0 obj -2 -endobj - -%% Contents for page 10 -119 0 obj +77 0 obj << - /Length 120 0 R + /Length 78 0 R >> stream q -1 0 0 -1 612 792 cm /Fx1 Do Q +q +-1.33333 0 0 -1.33333 612 792 cm +/Fx0 Do +Q +q +-0.77273 0 0 -0.77273 612 632.45455 cm +/Fx2 Do +Q endstream endobj -120 0 obj -33 +78 0 obj +129 endobj -%% Contents for page 10 -121 0 obj +79 0 obj << - /Length 122 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -0.75 + 0 + 0 + -0.75 + 459 + 594 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 80 0 R >> stream 1 0 0 RG @@ -1736,30 +1532,11 @@ ET endstream endobj -122 0 obj +80 0 obj 126 endobj -%% Contents for page 10 -123 0 obj -<< - /Length 124 0 R ->> -stream - -Q -q --0.77273 0 0 -0.77273 612 632.45455 cm -/Fx2 Do -Q -endstream -endobj - -124 0 obj -54 -endobj - -125 0 obj +81 0 obj << /BBox [ 0 @@ -1777,13 +1554,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 126 0 R + /Length 82 0 R >> stream 0 0 1 RG @@ -1799,45 +1576,60 @@ ET endstream endobj -126 0 obj +82 0 obj 114 endobj %% Contents for page 11 -127 0 obj -<< - /Length 128 0 R ->> -stream -q -endstream -endobj - -128 0 obj -2 -endobj - -%% Contents for page 11 -129 0 obj +83 0 obj << - /Length 130 0 R + /Length 84 0 R >> stream q -0.77273 0 0 -0.77273 612 632.45455 cm /Fx1 Do Q +q +-1 0 0 -1 612 792 cm +/Fx0 Do +Q +q +-0.77273 0 0 -0.77273 612 632.45455 cm +/Fx2 Do +Q endstream endobj -130 0 obj -51 +84 0 obj +135 endobj -%% Contents for page 11 -131 0 obj +85 0 obj << - /Length 132 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 86 0 R >> stream 1 0 0 RG @@ -1853,30 +1645,11 @@ ET endstream endobj -132 0 obj +86 0 obj 114 endobj -%% Contents for page 11 -133 0 obj -<< - /Length 134 0 R ->> -stream - -Q -q --0.77273 0 0 -0.77273 612 632.45455 cm -/Fx2 Do -Q -endstream -endobj - -134 0 obj -54 -endobj - -135 0 obj +87 0 obj << /BBox [ 0 @@ -1894,13 +1667,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 136 0 R + /Length 88 0 R >> stream 0 0 1 RG @@ -1916,45 +1689,60 @@ ET endstream endobj -136 0 obj +88 0 obj 113 endobj %% Contents for page 12 -137 0 obj -<< - /Length 138 0 R ->> -stream -q -endstream -endobj - -138 0 obj -2 -endobj - -%% Contents for page 12 -139 0 obj +89 0 obj << - /Length 140 0 R + /Length 90 0 R >> stream q -1 0 0 -1 612 792 cm /Fx1 Do Q +q +-1 0 0 -1 612 792 cm +/Fx0 Do +Q +q +-0.77273 0 0 -0.77273 612 632.45455 cm +/Fx2 Do +Q endstream endobj -140 0 obj -33 +90 0 obj +117 endobj -%% Contents for page 12 -141 0 obj +91 0 obj << - /Length 142 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 92 0 R >> stream 1 0 0 RG @@ -1970,30 +1758,11 @@ ET endstream endobj -142 0 obj +92 0 obj 114 endobj -%% Contents for page 12 -143 0 obj -<< - /Length 144 0 R ->> -stream - -Q -q --0.77273 0 0 -0.77273 612 632.45455 cm -/Fx2 Do -Q -endstream -endobj - -144 0 obj -54 -endobj - -145 0 obj +93 0 obj << /BBox [ 0 @@ -2003,13 +1772,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 146 0 R + /Length 94 0 R >> stream 0 0 1 RG @@ -2025,45 +1794,60 @@ ET endstream endobj -146 0 obj +94 0 obj 109 endobj %% Contents for page 13 -147 0 obj -<< - /Length 148 0 R ->> -stream -q -endstream -endobj - -148 0 obj -2 -endobj - -%% Contents for page 13 -149 0 obj +95 0 obj << - /Length 150 0 R + /Length 96 0 R >> stream q 0 -1 1 0 0 752 cm /Fx1 Do Q +q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -1 1 0 0 792 cm +/Fx2 Do +Q endstream endobj -150 0 obj -30 +96 0 obj +90 endobj -%% Contents for page 13 -151 0 obj +97 0 obj << - /Length 152 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 98 0 R >> stream 1 0 0 RG @@ -2079,30 +1863,11 @@ ET endstream endobj -152 0 obj +98 0 obj 114 endobj -%% Contents for page 13 -153 0 obj -<< - /Length 154 0 R ->> -stream - -Q -q -0 -1 1 0 0 792 cm -/Fx2 Do -Q -endstream -endobj - -154 0 obj -33 -endobj - -155 0 obj +99 0 obj << /BBox [ 20 @@ -2120,13 +1885,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 156 0 R + /Length 100 0 R >> stream 0 0 1 RG @@ -2144,45 +1909,60 @@ ET endstream endobj -156 0 obj +100 0 obj 170 endobj %% Contents for page 14 -157 0 obj -<< - /Length 158 0 R ->> -stream -q -endstream -endobj - -158 0 obj -2 -endobj - -%% Contents for page 14 -159 0 obj +101 0 obj << - /Length 160 0 R + /Length 102 0 R >> stream q 0 -0.79275 0.79275 0 7.92746 622.72539 cm /Fx1 Do Q +q +0 -0.8 0.8 0 0 792 cm +/Fx0 Do +Q +q +0 -0.8 0.8 0 61.2 712.8 cm +/Fx2 Do +Q endstream endobj -160 0 obj -54 +102 0 obj +127 endobj -%% Contents for page 14 -161 0 obj +103 0 obj << - /Length 162 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1.25 + -1.25 + 0 + 990 + 0 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 104 0 R >> stream 1 0 0 RG @@ -2198,30 +1978,11 @@ ET endstream endobj -162 0 obj +104 0 obj 126 endobj -%% Contents for page 14 -163 0 obj -<< - /Length 164 0 R ->> -stream - -Q -q -0 -0.8 0.8 0 61.2 712.8 cm -/Fx2 Do -Q -endstream -endobj - -164 0 obj -42 -endobj - -165 0 obj +105 0 obj << /BBox [ 10 @@ -2239,13 +2000,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 166 0 R + /Length 106 0 R >> stream 0 0 1 RG @@ -2262,45 +2023,60 @@ ET endstream endobj -166 0 obj +106 0 obj 150 endobj %% Contents for page 15 -167 0 obj -<< - /Length 168 0 R ->> -stream -q -endstream -endobj - -168 0 obj -2 -endobj - -%% Contents for page 15 -169 0 obj +107 0 obj << - /Length 170 0 R + /Length 108 0 R >> stream q 0 -1 1 0 0 792 cm /Fx1 Do Q +q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -1 1 0 0 792 cm +/Fx2 Do +Q endstream endobj -170 0 obj -30 +108 0 obj +90 endobj -%% Contents for page 15 -171 0 obj +109 0 obj << - /Length 172 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 110 0 R >> stream 1 0 0 RG @@ -2316,30 +2092,11 @@ ET endstream endobj -172 0 obj +110 0 obj 114 endobj -%% Contents for page 15 -173 0 obj -<< - /Length 174 0 R ->> -stream - -Q -q -0 -1 1 0 0 792 cm -/Fx2 Do -Q -endstream -endobj - -174 0 obj -33 -endobj - -175 0 obj +111 0 obj << /BBox [ 0 @@ -2357,13 +2114,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 176 0 R + /Length 112 0 R >> stream 0 0 1 RG @@ -2379,45 +2136,60 @@ ET endstream endobj -176 0 obj +112 0 obj 113 endobj %% Contents for page 16 -177 0 obj -<< - /Length 178 0 R ->> -stream -q -endstream -endobj - -178 0 obj -2 -endobj - -%% Contents for page 16 -179 0 obj +113 0 obj << - /Length 180 0 R + /Length 114 0 R >> stream q 0 -0.77273 0.77273 0 0 632.45455 cm /Fx1 Do Q +q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -1 1 0 0 792 cm +/Fx2 Do +Q endstream endobj -180 0 obj -48 +114 0 obj +108 endobj -%% Contents for page 16 -181 0 obj +115 0 obj << - /Length 182 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 116 0 R >> stream 1 0 0 RG @@ -2433,30 +2205,11 @@ ET endstream endobj -182 0 obj +116 0 obj 114 endobj -%% Contents for page 16 -183 0 obj -<< - /Length 184 0 R ->> -stream - -Q -q -0 -1 1 0 0 792 cm -/Fx2 Do -Q -endstream -endobj - -184 0 obj -33 -endobj - -185 0 obj +117 0 obj << /BBox [ 0 @@ -2466,13 +2219,13 @@ endobj ] /Resources << /Font << - /F1 187 0 R + /F1 121 0 R >> - /ProcSet 188 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 186 0 R + /Length 118 0 R >> stream 0 0 1 RG @@ -2488,11 +2241,28 @@ ET endstream endobj -186 0 obj +118 0 obj 109 endobj -187 0 obj +119 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +120 0 obj +[ + /PDF + /Text +] +endobj + +121 0 obj << /BaseFont /Helvetica /Encoding /WinAnsiEncoding @@ -2502,14 +2272,14 @@ endobj >> endobj -188 0 obj +122 0 obj [ /PDF /Text ] endobj -189 0 obj +123 0 obj << /BaseFont /Helvetica /Encoding /WinAnsiEncoding @@ -2519,7 +2289,7 @@ endobj >> endobj -190 0 obj +124 0 obj [ /PDF /Text @@ -2527,203 +2297,137 @@ endobj endobj xref -0 191 +0 125 0000000000 65535 f 0000000025 00000 n 0000000079 00000 n 0000000321 00000 n -0000000628 00000 n -0000000949 00000 n -0000001267 00000 n -0000001574 00000 n -0000001894 00000 n -0000002230 00000 n -0000002550 00000 n -0000002874 00000 n -0000003202 00000 n -0000003547 00000 n -0000003875 00000 n -0000004203 00000 n -0000004531 00000 n -0000004876 00000 n -0000005204 00000 n -0000005544 00000 n -0000005603 00000 n -0000005645 00000 n -0000005749 00000 n -0000005792 00000 n -0000005957 00000 n -0000006001 00000 n -0000006108 00000 n -0000006128 00000 n -0000006247 00000 n -0000006283 00000 n -0000006666 00000 n -0000006687 00000 n -0000007070 00000 n -0000007114 00000 n -0000007173 00000 n -0000007215 00000 n -0000007307 00000 n -0000007350 00000 n -0000007524 00000 n -0000007568 00000 n -0000007663 00000 n -0000007683 00000 n -0000008069 00000 n -0000008090 00000 n -0000008473 00000 n -0000008517 00000 n -0000008576 00000 n -0000008618 00000 n -0000008722 00000 n -0000008765 00000 n -0000008867 00000 n -0000008910 00000 n -0000009030 00000 n -0000009073 00000 n -0000009180 00000 n -0000009200 00000 n -0000009597 00000 n -0000009641 00000 n -0000009700 00000 n -0000009742 00000 n -0000009826 00000 n -0000009869 00000 n -0000010034 00000 n -0000010078 00000 n -0000010185 00000 n -0000010205 00000 n -0000010528 00000 n -0000010572 00000 n -0000010631 00000 n -0000010673 00000 n -0000010760 00000 n -0000010803 00000 n -0000010972 00000 n -0000011016 00000 n -0000011106 00000 n -0000011126 00000 n -0000011509 00000 n -0000011553 00000 n -0000011612 00000 n -0000011654 00000 n -0000011755 00000 n -0000011798 00000 n -0000011978 00000 n -0000012022 00000 n -0000012126 00000 n -0000012146 00000 n -0000012532 00000 n -0000012576 00000 n -0000012635 00000 n -0000012677 00000 n -0000012764 00000 n -0000012807 00000 n -0000012976 00000 n -0000013020 00000 n -0000013110 00000 n -0000013130 00000 n -0000013512 00000 n -0000013556 00000 n -0000013615 00000 n -0000013657 00000 n -0000013765 00000 n -0000013809 00000 n -0000013980 00000 n -0000014025 00000 n -0000014117 00000 n -0000014138 00000 n -0000014462 00000 n -0000014507 00000 n -0000014568 00000 n -0000014611 00000 n -0000014721 00000 n -0000014765 00000 n -0000014937 00000 n -0000014982 00000 n -0000015095 00000 n -0000015116 00000 n -0000015500 00000 n -0000015546 00000 n -0000015607 00000 n -0000015651 00000 n -0000015743 00000 n -0000015788 00000 n -0000015973 00000 n -0000016019 00000 n -0000016132 00000 n -0000016153 00000 n -0000016540 00000 n -0000016586 00000 n -0000016647 00000 n -0000016691 00000 n -0000016801 00000 n -0000016846 00000 n -0000017019 00000 n -0000017065 00000 n -0000017178 00000 n -0000017199 00000 n -0000017582 00000 n -0000017628 00000 n -0000017689 00000 n -0000017733 00000 n -0000017825 00000 n -0000017870 00000 n -0000018043 00000 n -0000018089 00000 n -0000018202 00000 n -0000018223 00000 n -0000018547 00000 n -0000018593 00000 n -0000018654 00000 n -0000018698 00000 n -0000018787 00000 n -0000018832 00000 n -0000019005 00000 n -0000019051 00000 n -0000019143 00000 n -0000019164 00000 n -0000019606 00000 n -0000019652 00000 n -0000019713 00000 n -0000019757 00000 n -0000019870 00000 n -0000019915 00000 n -0000020100 00000 n -0000020146 00000 n -0000020247 00000 n -0000020268 00000 n -0000020693 00000 n -0000020739 00000 n -0000020800 00000 n -0000020844 00000 n -0000020933 00000 n -0000020978 00000 n -0000021151 00000 n -0000021197 00000 n -0000021289 00000 n -0000021310 00000 n -0000021693 00000 n -0000021739 00000 n -0000021800 00000 n -0000021844 00000 n -0000021951 00000 n -0000021996 00000 n -0000022169 00000 n -0000022215 00000 n -0000022307 00000 n -0000022328 00000 n -0000022652 00000 n -0000022674 00000 n -0000022794 00000 n -0000022831 00000 n -0000022951 00000 n +0000000546 00000 n +0000000785 00000 n +0000001010 00000 n +0000001235 00000 n +0000001473 00000 n +0000001727 00000 n +0000001965 00000 n +0000002204 00000 n +0000002445 00000 n +0000002703 00000 n +0000002944 00000 n +0000003185 00000 n +0000003426 00000 n +0000003687 00000 n +0000003931 00000 n +0000004187 00000 n +0000004365 00000 n +0000004386 00000 n +0000004707 00000 n +0000004728 00000 n +0000005111 00000 n +0000005132 00000 n +0000005515 00000 n +0000005559 00000 n +0000005717 00000 n +0000005738 00000 n +0000006120 00000 n +0000006141 00000 n +0000006527 00000 n +0000006548 00000 n +0000006931 00000 n +0000006975 00000 n +0000007153 00000 n +0000007174 00000 n +0000007495 00000 n +0000007516 00000 n +0000007913 00000 n +0000007957 00000 n +0000008115 00000 n +0000008136 00000 n +0000008457 00000 n +0000008478 00000 n +0000008801 00000 n +0000008845 00000 n +0000008992 00000 n +0000009012 00000 n +0000009392 00000 n +0000009413 00000 n +0000009796 00000 n +0000009840 00000 n +0000010027 00000 n +0000010048 00000 n +0000010443 00000 n +0000010464 00000 n +0000010850 00000 n +0000010894 00000 n +0000011041 00000 n +0000011061 00000 n +0000011441 00000 n +0000011462 00000 n +0000011844 00000 n +0000011888 00000 n +0000012055 00000 n +0000012076 00000 n +0000012456 00000 n +0000012477 00000 n +0000012799 00000 n +0000012843 00000 n +0000013035 00000 n +0000013056 00000 n +0000013440 00000 n +0000013461 00000 n +0000013843 00000 n +0000013888 00000 n +0000014074 00000 n +0000014095 00000 n +0000014498 00000 n +0000014519 00000 n +0000014904 00000 n +0000014949 00000 n +0000015141 00000 n +0000015162 00000 n +0000015547 00000 n +0000015568 00000 n +0000015949 00000 n +0000015994 00000 n +0000016168 00000 n +0000016189 00000 n +0000016574 00000 n +0000016595 00000 n +0000016917 00000 n +0000016962 00000 n +0000017109 00000 n +0000017129 00000 n +0000017511 00000 n +0000017532 00000 n +0000017973 00000 n +0000018019 00000 n +0000018205 00000 n +0000018227 00000 n +0000018629 00000 n +0000018651 00000 n +0000019076 00000 n +0000019122 00000 n +0000019271 00000 n +0000019292 00000 n +0000019676 00000 n +0000019698 00000 n +0000020081 00000 n +0000020127 00000 n +0000020294 00000 n +0000020316 00000 n +0000020700 00000 n +0000020722 00000 n +0000021046 00000 n +0000021068 00000 n +0000021188 00000 n +0000021225 00000 n +0000021345 00000 n +0000021382 00000 n +0000021502 00000 n trailer << /Root 1 0 R - /Size 191 + /Size 125 /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] >> startxref -22988 +21539 %%EOF diff --git a/qpdf/qtest/qpdf/uo-3.pdf b/qpdf/qtest/qpdf/uo-3.pdf index fed1eb4a..665a3ba3 100644 --- a/qpdf/qtest/qpdf/uo-3.pdf +++ b/qpdf/qtest/qpdf/uo-3.pdf @@ -46,11 +46,8 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << + /Fx0 21 0 R /Fx1 23 0 R /Fx2 25 0 R >> @@ -71,13 +68,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 29 0 R - /Fx2 31 0 R + /Fx0 29 0 R + /Fx1 31 0 R + /Fx2 33 0 R >> >> /Type /Page @@ -88,7 +82,7 @@ endobj %% Page 3 5 0 obj << - /Contents 33 0 R + /Contents 35 0 R /MediaBox [ 0 0 @@ -97,12 +91,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 35 0 R + /Fx0 37 0 R + /Fx1 39 0 R /Fx2 25 0 R >> >> @@ -113,7 +104,7 @@ endobj %% Page 4 6 0 obj << - /Contents 37 0 R + /Contents 41 0 R /MediaBox [ 0 0 @@ -122,13 +113,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 39 0 R - /Fx2 31 0 R + /Fx0 43 0 R + /Fx1 45 0 R + /Fx2 33 0 R >> >> /Type /Page @@ -138,7 +126,7 @@ endobj %% Page 5 7 0 obj << - /Contents 41 0 R + /Contents 47 0 R /MediaBox [ 0 0 @@ -147,12 +135,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 43 0 R + /Fx0 49 0 R + /Fx1 51 0 R /Fx2 25 0 R >> >> @@ -164,7 +149,7 @@ endobj %% Page 6 8 0 obj << - /Contents 45 0 R + /Contents 53 0 R /MediaBox [ 0 0 @@ -173,13 +158,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 47 0 R - /Fx2 31 0 R + /Fx0 55 0 R + /Fx1 57 0 R + /Fx2 33 0 R >> >> /Rotate 90 @@ -191,7 +173,7 @@ endobj %% Page 7 9 0 obj << - /Contents 49 0 R + /Contents 59 0 R /MediaBox [ 0 0 @@ -200,12 +182,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 51 0 R + /Fx0 61 0 R + /Fx1 63 0 R /Fx2 25 0 R >> >> @@ -217,7 +196,7 @@ endobj %% Page 8 10 0 obj << - /Contents 53 0 R + /Contents 65 0 R /MediaBox [ 0 0 @@ -226,13 +205,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 55 0 R - /Fx2 31 0 R + /Fx0 67 0 R + /Fx1 69 0 R + /Fx2 33 0 R >> >> /Rotate 90 @@ -243,7 +219,7 @@ endobj %% Page 9 11 0 obj << - /Contents 57 0 R + /Contents 71 0 R /MediaBox [ 0 0 @@ -252,12 +228,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 59 0 R + /Fx0 73 0 R + /Fx1 75 0 R /Fx2 25 0 R >> >> @@ -269,7 +242,7 @@ endobj %% Page 10 12 0 obj << - /Contents 61 0 R + /Contents 77 0 R /MediaBox [ 0 0 @@ -278,13 +251,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 63 0 R - /Fx2 31 0 R + /Fx0 79 0 R + /Fx1 81 0 R + /Fx2 33 0 R >> >> /Rotate 180 @@ -296,7 +266,7 @@ endobj %% Page 11 13 0 obj << - /Contents 65 0 R + /Contents 83 0 R /MediaBox [ 0 0 @@ -305,12 +275,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 67 0 R + /Fx0 85 0 R + /Fx1 87 0 R /Fx2 25 0 R >> >> @@ -322,7 +289,7 @@ endobj %% Page 12 14 0 obj << - /Contents 69 0 R + /Contents 89 0 R /MediaBox [ 0 0 @@ -331,13 +298,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 71 0 R - /Fx2 31 0 R + /Fx0 91 0 R + /Fx1 93 0 R + /Fx2 33 0 R >> >> /Rotate 180 @@ -348,7 +312,7 @@ endobj %% Page 13 15 0 obj << - /Contents 73 0 R + /Contents 95 0 R /MediaBox [ 0 0 @@ -357,12 +321,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 75 0 R + /Fx0 97 0 R + /Fx1 99 0 R /Fx2 25 0 R >> >> @@ -374,7 +335,7 @@ endobj %% Page 14 16 0 obj << - /Contents 77 0 R + /Contents 101 0 R /MediaBox [ 0 0 @@ -383,13 +344,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 79 0 R - /Fx2 31 0 R + /Fx0 103 0 R + /Fx1 105 0 R + /Fx2 33 0 R >> >> /Rotate 270 @@ -401,7 +359,7 @@ endobj %% Page 15 17 0 obj << - /Contents 81 0 R + /Contents 107 0 R /MediaBox [ 0 0 @@ -410,12 +368,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 83 0 R + /Fx0 109 0 R + /Fx1 111 0 R /Fx2 25 0 R >> >> @@ -427,7 +382,7 @@ endobj %% Page 16 18 0 obj << - /Contents 85 0 R + /Contents 113 0 R /MediaBox [ 0 0 @@ -436,13 +391,10 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 87 0 R - /Fx2 31 0 R + /Fx0 115 0 R + /Fx1 117 0 R + /Fx2 33 0 R >> >> /Rotate 270 @@ -457,21 +409,12 @@ endobj >> stream q -q 0.77273 0 0 0.77273 0 159.54545 cm /Fx1 Do Q -1 0 0 RG -1 0 0 rg -BT - /F1 24 Tf - 72 720 Td - (Page 1 - red) Tj -ET -5 w -0 0 612 792 re s -271 371 60 60 re f - +q +1 0 0 1 0 0 cm +/Fx0 Do Q q 0.77273 0 0 0.77273 0 159.54545 cm @@ -481,24 +424,43 @@ endstream endobj 20 0 obj -207 +121 endobj 21 0 obj << - /BaseFont /Helvetica - /Encoding /WinAnsiEncoding - /Name /F1 - /Subtype /Type1 - /Type /Font + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 22 0 R >> +stream +1 0 0 RG +1 0 0 rg +BT + /F1 24 Tf + 72 720 Td + (Page 1 - red) Tj +ET +5 w +0 0 612 792 re s +271 371 60 60 re f +endstream endobj 22 0 obj -[ - /PDF - /Text -] +108 endobj 23 0 obj @@ -519,9 +481,9 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject @@ -563,9 +525,9 @@ endobj ] /Resources << /Font << - /F1 91 0 R + /F1 123 0 R >> - /ProcSet 92 0 R + /ProcSet 124 0 R >> /Subtype /Form /Type /XObject @@ -596,10 +558,51 @@ endobj >> stream q -q 0.5 0 0 0.5 153 198 cm /Fx1 Do Q +q +0.5 0 0 0.5 0 0 cm +/Fx0 Do +Q +q +0.5 0 0 0.5 108 243 cm +/Fx2 Do +Q +endstream +endobj + +28 0 obj +101 +endobj + +29 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 2 + 0 + 0 + 2 + 0 + 0 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 30 0 R +>> +stream 1 0 0 RG 1 0 0 rg BT @@ -610,20 +613,14 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f - -Q -q -0.5 0 0 0.5 108 243 cm -/Fx2 Do -Q endstream endobj -28 0 obj -192 +30 0 obj +117 endobj -29 0 obj +31 0 obj << /BBox [ 0 @@ -641,13 +638,13 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 30 0 R + /Length 32 0 R >> stream 0 0 1 RG @@ -663,11 +660,11 @@ ET endstream endobj -30 0 obj +32 0 obj 115 endobj -31 0 obj +33 0 obj << /BBox [ 0 @@ -685,13 +682,13 @@ endobj ] /Resources << /Font << - /F1 91 0 R + /F1 123 0 R >> - /ProcSet 92 0 R + /ProcSet 124 0 R >> /Subtype /Form /Type /XObject - /Length 32 0 R + /Length 34 0 R >> stream 0 1 0 RG @@ -707,21 +704,54 @@ ET endstream endobj -32 0 obj +34 0 obj 115 endobj %% Contents for page 3 -33 0 obj +35 0 obj << - /Length 34 0 R + /Length 36 0 R >> stream q -q 0.51515 0 0 0.51515 0 159.54545 cm /Fx1 Do Q +q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +0.77273 0 0 0.77273 0 159.54545 cm +/Fx2 Do +Q +endstream +endobj + +36 0 obj +121 +endobj + +37 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 38 0 R +>> +stream 1 0 0 RG 1 0 0 rg BT @@ -732,20 +762,14 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f - -Q -q -0.77273 0 0 0.77273 0 159.54545 cm -/Fx2 Do -Q endstream endobj -34 0 obj -207 +38 0 obj +108 endobj -35 0 obj +39 0 obj << /BBox [ 0 @@ -763,13 +787,13 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 36 0 R + /Length 40 0 R >> stream 0 0 1 RG @@ -785,21 +809,54 @@ ET endstream endobj -36 0 obj +40 0 obj 125 endobj %% Contents for page 4 -37 0 obj +41 0 obj << - /Length 38 0 R + /Length 42 0 R >> stream q -q 1 0 0 1 0 0 cm /Fx1 Do Q +q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +0.77273 0 0 0.77273 0 159.54545 cm +/Fx2 Do +Q +endstream +endobj + +42 0 obj +101 +endobj + +43 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 44 0 R +>> +stream 1 0 0 RG 1 0 0 rg BT @@ -810,20 +867,14 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f - -Q -q -0.77273 0 0 0.77273 0 159.54545 cm -/Fx2 Do -Q endstream endobj -38 0 obj -187 +44 0 obj +108 endobj -39 0 obj +45 0 obj << /BBox [ 0 @@ -833,13 +884,13 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 40 0 R + /Length 46 0 R >> stream 0 0 1 RG @@ -855,21 +906,62 @@ ET endstream endobj -40 0 obj +46 0 obj 110 endobj %% Contents for page 5 -41 0 obj +47 0 obj << - /Length 42 0 R + /Length 48 0 R >> stream q -q 0 1 -1 0 612 0 cm /Fx1 Do Q +q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 1 -1 0 612 0 cm +/Fx2 Do +Q +endstream +endobj + +48 0 obj +90 +endobj + +49 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 50 0 R +>> +stream 1 0 0 RG 1 0 0 rg BT @@ -880,20 +972,14 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f - -Q -q -0 1 -1 0 612 0 cm -/Fx2 Do -Q endstream endobj -42 0 obj -177 +50 0 obj +112 endobj -43 0 obj +51 0 obj << /BBox [ 0 @@ -911,13 +997,13 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 44 0 R + /Length 52 0 R >> stream 0 0 1 RG @@ -933,21 +1019,62 @@ ET endstream endobj -44 0 obj +52 0 obj 115 endobj %% Contents for page 6 -45 0 obj +53 0 obj << - /Length 46 0 R + /Length 54 0 R >> stream q -q 0 0.66667 -0.66667 0 570 192 cm /Fx1 Do Q +q +0 0.66667 -0.66667 0 612 0 cm +/Fx0 Do +Q +q +0 0.66667 -0.66667 0 510 132 cm +/Fx2 Do +Q +endstream +endobj + +54 0 obj +130 +endobj + +55 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1.5 + 1.5 + 0 + 0 + 918 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 56 0 R +>> +stream 1 0 0 RG 1 0 0 rg BT @@ -958,20 +1085,14 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f - -Q -q -0 0.66667 -0.66667 0 510 132 cm -/Fx2 Do -Q endstream endobj -46 0 obj -216 +56 0 obj +123 endobj -47 0 obj +57 0 obj << /BBox [ 0 @@ -989,13 +1110,13 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 48 0 R + /Length 58 0 R >> stream 0 0 1 RG @@ -1011,21 +1132,62 @@ ET endstream endobj -48 0 obj +58 0 obj 115 endobj %% Contents for page 7 -49 0 obj +59 0 obj << - /Length 50 0 R + /Length 60 0 R >> stream q -q 0 1 -1 0 612 0 cm /Fx1 Do Q +q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 1 -1 0 612 0 cm +/Fx2 Do +Q +endstream +endobj + +60 0 obj +90 +endobj + +61 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 62 0 R +>> +stream 1 0 0 RG 1 0 0 rg BT @@ -1036,20 +1198,14 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f - -Q -q -0 1 -1 0 612 0 cm -/Fx2 Do -Q endstream endobj -50 0 obj -177 +62 0 obj +112 endobj -51 0 obj +63 0 obj << /BBox [ 0 @@ -1067,13 +1223,13 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 52 0 R + /Length 64 0 R >> stream 0 0 1 RG @@ -1089,21 +1245,62 @@ ET endstream endobj -52 0 obj +64 0 obj 114 endobj %% Contents for page 8 -53 0 obj +65 0 obj << - /Length 54 0 R + /Length 66 0 R >> stream q -q 0 0.77273 -0.77273 0 612 159.54545 cm /Fx1 Do Q +q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 1 -1 0 612 0 cm +/Fx2 Do +Q +endstream +endobj + +66 0 obj +110 +endobj + +67 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 68 0 R +>> +stream 1 0 0 RG 1 0 0 rg BT @@ -1114,20 +1311,14 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f - -Q -q -0 1 -1 0 612 0 cm -/Fx2 Do -Q endstream endobj -54 0 obj -197 +68 0 obj +112 endobj -55 0 obj +69 0 obj << /BBox [ 0 @@ -1137,13 +1328,13 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 56 0 R + /Length 70 0 R >> stream 0 0 1 RG @@ -1159,21 +1350,62 @@ ET endstream endobj -56 0 obj +70 0 obj 109 endobj %% Contents for page 9 -57 0 obj +71 0 obj << - /Length 58 0 R + /Length 72 0 R >> stream q -q -0.77273 0 0 -0.77273 612 632.45455 cm /Fx1 Do Q +q +-1 0 0 -1 612 792 cm +/Fx0 Do +Q +q +-0.77273 0 0 -0.77273 612 632.45455 cm +/Fx2 Do +Q +endstream +endobj + +72 0 obj +135 +endobj + +73 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 74 0 R +>> +stream 1 0 0 RG 1 0 0 rg BT @@ -1184,20 +1416,14 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f - -Q -q --0.77273 0 0 -0.77273 612 632.45455 cm -/Fx2 Do -Q endstream endobj -58 0 obj -220 +74 0 obj +113 endobj -59 0 obj +75 0 obj << /BBox [ 0 @@ -1215,13 +1441,13 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 60 0 R + /Length 76 0 R >> stream 0 0 1 RG @@ -1237,21 +1463,62 @@ ET endstream endobj -60 0 obj +76 0 obj 114 endobj %% Contents for page 10 -61 0 obj +77 0 obj << - /Length 62 0 R + /Length 78 0 R >> stream q -q -1 0 0 -1 612 792 cm /Fx1 Do Q +q +-1.33333 0 0 -1.33333 612 792 cm +/Fx0 Do +Q +q +-0.77273 0 0 -0.77273 612 632.45455 cm +/Fx2 Do +Q +endstream +endobj + +78 0 obj +129 +endobj + +79 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -0.75 + 0 + 0 + -0.75 + 459 + 594 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 80 0 R +>> +stream 1 0 0 RG 1 0 0 rg BT @@ -1262,20 +1529,14 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f - -Q -q --0.77273 0 0 -0.77273 612 632.45455 cm -/Fx2 Do -Q endstream endobj -62 0 obj -215 +80 0 obj +126 endobj -63 0 obj +81 0 obj << /BBox [ 0 @@ -1293,13 +1554,13 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 64 0 R + /Length 82 0 R >> stream 0 0 1 RG @@ -1315,21 +1576,62 @@ ET endstream endobj -64 0 obj +82 0 obj 114 endobj %% Contents for page 11 -65 0 obj +83 0 obj << - /Length 66 0 R + /Length 84 0 R >> stream q -q -0.77273 0 0 -0.77273 612 632.45455 cm /Fx1 Do Q +q +-1 0 0 -1 612 792 cm +/Fx0 Do +Q +q +-0.77273 0 0 -0.77273 612 632.45455 cm +/Fx2 Do +Q +endstream +endobj + +84 0 obj +135 +endobj + +85 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 86 0 R +>> +stream 1 0 0 RG 1 0 0 rg BT @@ -1340,7 +1642,70 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f +endstream +endobj +86 0 obj +114 +endobj + +87 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 121 0 R + >> + /ProcSet 122 0 R + >> + /Subtype /Form + /Type /XObject + /Length 88 0 R +>> +stream +0 0 1 RG +0 0 1 rg +BT + /F1 24 Tf + 72 690 Td + (Page 6 - blue, 90) Tj +ET +5 w +0 0 612 792 re s +291 391 60 60 re f +endstream +endobj + +88 0 obj +113 +endobj + +%% Contents for page 12 +89 0 obj +<< + /Length 90 0 R +>> +stream +q +-1 0 0 -1 612 792 cm +/Fx1 Do +Q +q +-1 0 0 -1 612 792 cm +/Fx0 Do Q q -0.77273 0 0 -0.77273 612 632.45455 cm @@ -1349,11 +1714,11 @@ Q endstream endobj -66 0 obj -221 +90 0 obj +117 endobj -67 0 obj +91 0 obj << /BBox [ 0 @@ -1362,52 +1727,24 @@ endobj 792 ] /Matrix [ - 0 -1 - 1 0 0 + -1 612 + 792 ] /Resources << /Font << - /F1 89 0 R + /F1 119 0 R >> - /ProcSet 90 0 R + /ProcSet 120 0 R >> /Subtype /Form /Type /XObject - /Length 68 0 R ->> -stream -0 0 1 RG -0 0 1 rg -BT - /F1 24 Tf - 72 690 Td - (Page 6 - blue, 90) Tj -ET -5 w -0 0 612 792 re s -291 391 60 60 re f -endstream -endobj - -68 0 obj -113 -endobj - -%% Contents for page 12 -69 0 obj -<< - /Length 70 0 R + /Length 92 0 R >> stream -q -q --1 0 0 -1 612 792 cm -/Fx1 Do -Q 1 0 0 RG 1 0 0 rg BT @@ -1418,20 +1755,14 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f - -Q -q --0.77273 0 0 -0.77273 612 632.45455 cm -/Fx2 Do -Q endstream endobj -70 0 obj -203 +92 0 obj +114 endobj -71 0 obj +93 0 obj << /BBox [ 0 @@ -1441,13 +1772,13 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 72 0 R + /Length 94 0 R >> stream 0 0 1 RG @@ -1463,21 +1794,62 @@ ET endstream endobj -72 0 obj +94 0 obj 109 endobj %% Contents for page 13 -73 0 obj +95 0 obj << - /Length 74 0 R + /Length 96 0 R >> stream q -q 0 -1 1 0 0 752 cm /Fx1 Do Q +q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -1 1 0 0 792 cm +/Fx2 Do +Q +endstream +endobj + +96 0 obj +90 +endobj + +97 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 98 0 R +>> +stream 1 0 0 RG 1 0 0 rg BT @@ -1488,20 +1860,14 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f - -Q -q -0 -1 1 0 0 792 cm -/Fx2 Do -Q endstream endobj -74 0 obj -179 +98 0 obj +114 endobj -75 0 obj +99 0 obj << /BBox [ 20 @@ -1519,13 +1885,13 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 76 0 R + /Length 100 0 R >> stream 0 0 1 RG @@ -1543,21 +1909,62 @@ ET endstream endobj -76 0 obj +100 0 obj 170 endobj %% Contents for page 14 -77 0 obj +101 0 obj << - /Length 78 0 R + /Length 102 0 R >> stream q -q 0 -0.79275 0.79275 0 7.92746 622.72539 cm /Fx1 Do Q +q +0 -0.8 0.8 0 0 792 cm +/Fx0 Do +Q +q +0 -0.8 0.8 0 61.2 712.8 cm +/Fx2 Do +Q +endstream +endobj + +102 0 obj +127 +endobj + +103 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1.25 + -1.25 + 0 + 990 + 0 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 104 0 R +>> +stream 1 0 0 RG 1 0 0 rg BT @@ -1568,20 +1975,14 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f - -Q -q -0 -0.8 0.8 0 61.2 712.8 cm -/Fx2 Do -Q endstream endobj -78 0 obj -224 +104 0 obj +126 endobj -79 0 obj +105 0 obj << /BBox [ 10 @@ -1599,13 +2000,13 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 80 0 R + /Length 106 0 R >> stream 0 0 1 RG @@ -1622,21 +2023,62 @@ ET endstream endobj -80 0 obj +106 0 obj 150 endobj %% Contents for page 15 -81 0 obj +107 0 obj << - /Length 82 0 R + /Length 108 0 R >> stream q -q 0 -1 1 0 0 792 cm /Fx1 Do Q +q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -1 1 0 0 792 cm +/Fx2 Do +Q +endstream +endobj + +108 0 obj +90 +endobj + +109 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 110 0 R +>> +stream 1 0 0 RG 1 0 0 rg BT @@ -1647,20 +2089,14 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f - -Q -q -0 -1 1 0 0 792 cm -/Fx2 Do -Q endstream endobj -82 0 obj -179 +110 0 obj +114 endobj -83 0 obj +111 0 obj << /BBox [ 0 @@ -1678,13 +2114,13 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 84 0 R + /Length 112 0 R >> stream 0 0 1 RG @@ -1700,21 +2136,62 @@ ET endstream endobj -84 0 obj +112 0 obj 113 endobj %% Contents for page 16 -85 0 obj +113 0 obj << - /Length 86 0 R + /Length 114 0 R >> stream q -q 0 -0.77273 0.77273 0 0 632.45455 cm /Fx1 Do Q +q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -1 1 0 0 792 cm +/Fx2 Do +Q +endstream +endobj + +114 0 obj +108 +endobj + +115 0 obj +<< + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 119 0 R + >> + /ProcSet 120 0 R + >> + /Subtype /Form + /Type /XObject + /Length 116 0 R +>> +stream 1 0 0 RG 1 0 0 rg BT @@ -1725,20 +2202,14 @@ ET 5 w 0 0 612 792 re s 271 371 60 60 re f - -Q -q -0 -1 1 0 0 792 cm -/Fx2 Do -Q endstream endobj -86 0 obj -197 +116 0 obj +114 endobj -87 0 obj +117 0 obj << /BBox [ 0 @@ -1748,13 +2219,13 @@ endobj ] /Resources << /Font << - /F1 89 0 R + /F1 121 0 R >> - /ProcSet 90 0 R + /ProcSet 122 0 R >> /Subtype /Form /Type /XObject - /Length 88 0 R + /Length 118 0 R >> stream 0 0 1 RG @@ -1770,11 +2241,11 @@ ET endstream endobj -88 0 obj +118 0 obj 109 endobj -89 0 obj +119 0 obj << /BaseFont /Helvetica /Encoding /WinAnsiEncoding @@ -1784,14 +2255,14 @@ endobj >> endobj -90 0 obj +120 0 obj [ /PDF /Text ] endobj -91 0 obj +121 0 obj << /BaseFont /Helvetica /Encoding /WinAnsiEncoding @@ -1801,7 +2272,24 @@ endobj >> endobj -92 0 obj +122 0 obj +[ + /PDF + /Text +] +endobj + +123 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +124 0 obj [ /PDF /Text @@ -1809,105 +2297,137 @@ endobj endobj xref -0 93 +0 125 0000000000 65535 f 0000000025 00000 n 0000000079 00000 n 0000000321 00000 n -0000000585 00000 n -0000000863 00000 n -0000001127 00000 n -0000001391 00000 n -0000001668 00000 n -0000001961 00000 n -0000002238 00000 n -0000002516 00000 n -0000002796 00000 n -0000003093 00000 n -0000003373 00000 n -0000003653 00000 n -0000003933 00000 n -0000004230 00000 n -0000004510 00000 n -0000004802 00000 n -0000005066 00000 n -0000005087 00000 n -0000005206 00000 n -0000005242 00000 n -0000005623 00000 n -0000005644 00000 n -0000006025 00000 n -0000006069 00000 n -0000006318 00000 n -0000006339 00000 n -0000006723 00000 n -0000006744 00000 n -0000007125 00000 n -0000007169 00000 n -0000007433 00000 n -0000007454 00000 n -0000007849 00000 n -0000007893 00000 n -0000008137 00000 n -0000008158 00000 n -0000008479 00000 n -0000008523 00000 n -0000008757 00000 n -0000008778 00000 n -0000009159 00000 n -0000009203 00000 n -0000009476 00000 n -0000009497 00000 n -0000009881 00000 n -0000009925 00000 n -0000010159 00000 n -0000010180 00000 n -0000010560 00000 n -0000010604 00000 n -0000010858 00000 n -0000010879 00000 n -0000011199 00000 n -0000011243 00000 n -0000011520 00000 n -0000011541 00000 n -0000011921 00000 n -0000011966 00000 n -0000012238 00000 n -0000012259 00000 n -0000012642 00000 n -0000012687 00000 n -0000012965 00000 n -0000012986 00000 n -0000013365 00000 n -0000013410 00000 n -0000013670 00000 n -0000013691 00000 n -0000014011 00000 n -0000014056 00000 n -0000014292 00000 n -0000014313 00000 n -0000014751 00000 n -0000014796 00000 n -0000015077 00000 n -0000015098 00000 n -0000015519 00000 n -0000015564 00000 n -0000015800 00000 n -0000015821 00000 n -0000016200 00000 n -0000016245 00000 n -0000016499 00000 n -0000016520 00000 n -0000016840 00000 n -0000016861 00000 n -0000016980 00000 n -0000017016 00000 n -0000017135 00000 n +0000000546 00000 n +0000000785 00000 n +0000001010 00000 n +0000001235 00000 n +0000001473 00000 n +0000001727 00000 n +0000001965 00000 n +0000002204 00000 n +0000002445 00000 n +0000002703 00000 n +0000002944 00000 n +0000003185 00000 n +0000003426 00000 n +0000003687 00000 n +0000003931 00000 n +0000004187 00000 n +0000004365 00000 n +0000004386 00000 n +0000004707 00000 n +0000004728 00000 n +0000005111 00000 n +0000005132 00000 n +0000005515 00000 n +0000005559 00000 n +0000005717 00000 n +0000005738 00000 n +0000006120 00000 n +0000006141 00000 n +0000006527 00000 n +0000006548 00000 n +0000006931 00000 n +0000006975 00000 n +0000007153 00000 n +0000007174 00000 n +0000007495 00000 n +0000007516 00000 n +0000007913 00000 n +0000007957 00000 n +0000008115 00000 n +0000008136 00000 n +0000008457 00000 n +0000008478 00000 n +0000008801 00000 n +0000008845 00000 n +0000008992 00000 n +0000009012 00000 n +0000009392 00000 n +0000009413 00000 n +0000009796 00000 n +0000009840 00000 n +0000010027 00000 n +0000010048 00000 n +0000010443 00000 n +0000010464 00000 n +0000010850 00000 n +0000010894 00000 n +0000011041 00000 n +0000011061 00000 n +0000011441 00000 n +0000011462 00000 n +0000011844 00000 n +0000011888 00000 n +0000012055 00000 n +0000012076 00000 n +0000012456 00000 n +0000012477 00000 n +0000012799 00000 n +0000012843 00000 n +0000013035 00000 n +0000013056 00000 n +0000013440 00000 n +0000013461 00000 n +0000013843 00000 n +0000013888 00000 n +0000014074 00000 n +0000014095 00000 n +0000014498 00000 n +0000014519 00000 n +0000014904 00000 n +0000014949 00000 n +0000015141 00000 n +0000015162 00000 n +0000015547 00000 n +0000015568 00000 n +0000015949 00000 n +0000015994 00000 n +0000016168 00000 n +0000016189 00000 n +0000016574 00000 n +0000016595 00000 n +0000016917 00000 n +0000016962 00000 n +0000017109 00000 n +0000017129 00000 n +0000017511 00000 n +0000017532 00000 n +0000017973 00000 n +0000018019 00000 n +0000018205 00000 n +0000018227 00000 n +0000018629 00000 n +0000018651 00000 n +0000019076 00000 n +0000019122 00000 n +0000019271 00000 n +0000019292 00000 n +0000019676 00000 n +0000019698 00000 n +0000020081 00000 n +0000020127 00000 n +0000020294 00000 n +0000020316 00000 n +0000020700 00000 n +0000020722 00000 n +0000021046 00000 n +0000021068 00000 n +0000021188 00000 n +0000021225 00000 n +0000021345 00000 n +0000021382 00000 n +0000021502 00000 n trailer << /Root 1 0 R - /Size 93 + /Size 125 /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] >> startxref -17171 +21539 %%EOF diff --git a/qpdf/qtest/qpdf/uo-4.pdf b/qpdf/qtest/qpdf/uo-4.pdf index 7c2f0d96..875e3636 100644 --- a/qpdf/qtest/qpdf/uo-4.pdf +++ b/qpdf/qtest/qpdf/uo-4.pdf @@ -37,11 +37,7 @@ endobj %% Page 1 3 0 obj << - /Contents [ - 19 0 R - 21 0 R - 23 0 R - ] + /Contents 19 0 R /MediaBox [ 0 0 @@ -50,12 +46,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 27 0 R + /Fx0 21 0 R + /Fx1 23 0 R >> >> /Type /Page @@ -65,11 +58,7 @@ endobj %% Page 2 4 0 obj << - /Contents [ - 29 0 R - 31 0 R - 33 0 R - ] + /Contents 25 0 R /MediaBox [ 0 0 @@ -78,12 +67,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 35 0 R + /Fx0 27 0 R + /Fx1 29 0 R >> >> /Type /Page @@ -94,12 +80,7 @@ endobj %% Page 3 5 0 obj << - /Contents [ - 37 0 R - 39 0 R - 41 0 R - 43 0 R - ] + /Contents 31 0 R /MediaBox [ 0 0 @@ -108,12 +89,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 45 0 R + /Fx0 33 0 R + /Fx1 35 0 R >> >> /Type /Page @@ -123,11 +101,7 @@ endobj %% Page 4 6 0 obj << - /Contents [ - 47 0 R - 49 0 R - 51 0 R - ] + /Contents 37 0 R /MediaBox [ 0 0 @@ -136,12 +110,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 53 0 R + /Fx0 39 0 R + /Fx1 41 0 R >> >> /Type /Page @@ -151,11 +122,7 @@ endobj %% Page 5 7 0 obj << - /Contents [ - 55 0 R - 57 0 R - 59 0 R - ] + /Contents 43 0 R /MediaBox [ 0 0 @@ -164,12 +131,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 61 0 R + /Fx0 45 0 R + /Fx1 47 0 R >> >> /Rotate 90 @@ -180,11 +144,7 @@ endobj %% Page 6 8 0 obj << - /Contents [ - 63 0 R - 65 0 R - 67 0 R - ] + /Contents 49 0 R /MediaBox [ 0 0 @@ -193,12 +153,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 69 0 R + /Fx0 51 0 R + /Fx1 53 0 R >> >> /Rotate 90 @@ -210,11 +167,7 @@ endobj %% Page 7 9 0 obj << - /Contents [ - 71 0 R - 73 0 R - 75 0 R - ] + /Contents 55 0 R /MediaBox [ 0 0 @@ -223,12 +176,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 77 0 R + /Fx0 57 0 R + /Fx1 59 0 R >> >> /Rotate 90 @@ -239,11 +189,7 @@ endobj %% Page 8 10 0 obj << - /Contents [ - 79 0 R - 81 0 R - 83 0 R - ] + /Contents 61 0 R /MediaBox [ 0 0 @@ -252,12 +198,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 85 0 R + /Fx0 63 0 R + /Fx1 65 0 R >> >> /Rotate 90 @@ -268,7 +211,7 @@ endobj %% Page 9 11 0 obj << - /Contents 87 0 R + /Contents 67 0 R /MediaBox [ 0 0 @@ -278,9 +221,9 @@ endobj /Parent 2 0 R /Resources << /Font << - /F1 25 0 R + /F1 69 0 R >> - /ProcSet 26 0 R + /ProcSet 70 0 R >> /Rotate 180 /Type /Page @@ -290,7 +233,7 @@ endobj %% Page 10 12 0 obj << - /Contents 89 0 R + /Contents 71 0 R /MediaBox [ 0 0 @@ -300,9 +243,9 @@ endobj /Parent 2 0 R /Resources << /Font << - /F1 25 0 R + /F1 69 0 R >> - /ProcSet 26 0 R + /ProcSet 70 0 R >> /Rotate 180 /Type /Page @@ -313,7 +256,7 @@ endobj %% Page 11 13 0 obj << - /Contents 91 0 R + /Contents 73 0 R /MediaBox [ 0 0 @@ -323,9 +266,9 @@ endobj /Parent 2 0 R /Resources << /Font << - /F1 25 0 R + /F1 69 0 R >> - /ProcSet 26 0 R + /ProcSet 70 0 R >> /Rotate 180 /Type /Page @@ -335,7 +278,7 @@ endobj %% Page 12 14 0 obj << - /Contents 93 0 R + /Contents 75 0 R /MediaBox [ 0 0 @@ -345,9 +288,9 @@ endobj /Parent 2 0 R /Resources << /Font << - /F1 25 0 R + /F1 69 0 R >> - /ProcSet 26 0 R + /ProcSet 70 0 R >> /Rotate 180 /Type /Page @@ -357,7 +300,7 @@ endobj %% Page 13 15 0 obj << - /Contents 95 0 R + /Contents 77 0 R /MediaBox [ 0 0 @@ -367,9 +310,9 @@ endobj /Parent 2 0 R /Resources << /Font << - /F1 25 0 R + /F1 69 0 R >> - /ProcSet 26 0 R + /ProcSet 70 0 R >> /Rotate 270 /Type /Page @@ -379,7 +322,7 @@ endobj %% Page 14 16 0 obj << - /Contents 97 0 R + /Contents 79 0 R /MediaBox [ 0 0 @@ -389,9 +332,9 @@ endobj /Parent 2 0 R /Resources << /Font << - /F1 25 0 R + /F1 69 0 R >> - /ProcSet 26 0 R + /ProcSet 70 0 R >> /Rotate 270 /Type /Page @@ -402,7 +345,7 @@ endobj %% Page 15 17 0 obj << - /Contents 99 0 R + /Contents 81 0 R /MediaBox [ 0 0 @@ -412,9 +355,9 @@ endobj /Parent 2 0 R /Resources << /Font << - /F1 25 0 R + /F1 69 0 R >> - /ProcSet 26 0 R + /ProcSet 70 0 R >> /Rotate 270 /Type /Page @@ -424,7 +367,7 @@ endobj %% Page 16 18 0 obj << - /Contents 101 0 R + /Contents 83 0 R /MediaBox [ 0 0 @@ -434,9 +377,9 @@ endobj /Parent 2 0 R /Resources << /Font << - /F1 25 0 R + /F1 69 0 R >> - /ProcSet 26 0 R + /ProcSet 70 0 R >> /Rotate 270 /Type /Page @@ -450,16 +393,36 @@ endobj >> stream q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +1 0 0 1 0 0 cm +/Fx1 Do +Q endstream endobj 20 0 obj -2 +54 endobj -%% Contents for page 1 21 0 obj << + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 69 0 R + >> + /ProcSet 70 0 R + >> + /Subtype /Form + /Type /XObject /Length 22 0 R >> stream @@ -480,43 +443,7 @@ endobj 108 endobj -%% Contents for page 1 23 0 obj -<< - /Length 24 0 R ->> -stream - -Q -q -1 0 0 1 0 0 cm -/Fx1 Do -Q -endstream -endobj - -24 0 obj -30 -endobj - -25 0 obj -<< - /BaseFont /Helvetica - /Encoding /WinAnsiEncoding - /Name /F1 - /Subtype /Type1 - /Type /Font ->> -endobj - -26 0 obj -[ - /PDF - /Text -] -endobj - -27 0 obj << /BBox [ 0 @@ -526,13 +453,13 @@ endobj ] /Resources << /Font << - /F1 103 0 R + /F1 85 0 R >> - /ProcSet 104 0 R + /ProcSet 86 0 R >> /Subtype /Form /Type /XObject - /Length 28 0 R + /Length 24 0 R >> stream 0 1 0 RG @@ -548,28 +475,56 @@ ET endstream endobj -28 0 obj +24 0 obj 110 endobj %% Contents for page 2 -29 0 obj +25 0 obj << - /Length 30 0 R + /Length 26 0 R >> stream q +0.5 0 0 0.5 0 0 cm +/Fx0 Do +Q +q +0.5 0 0 0.5 153 198 cm +/Fx1 Do +Q endstream endobj -30 0 obj -2 +26 0 obj +66 endobj -%% Contents for page 2 -31 0 obj +27 0 obj << - /Length 32 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 2 + 0 + 0 + 2 + 0 + 0 + ] + /Resources << + /Font << + /F1 69 0 R + >> + /ProcSet 70 0 R + >> + /Subtype /Form + /Type /XObject + /Length 28 0 R >> stream 1 0 0 RG @@ -585,30 +540,11 @@ ET endstream endobj -32 0 obj +28 0 obj 117 endobj -%% Contents for page 2 -33 0 obj -<< - /Length 34 0 R ->> -stream - -Q -q -0.5 0 0 0.5 153 198 cm -/Fx1 Do -Q -endstream -endobj - -34 0 obj -38 -endobj - -35 0 obj +29 0 obj << /BBox [ 0 @@ -618,13 +554,13 @@ endobj ] /Resources << /Font << - /F1 103 0 R + /F1 85 0 R >> - /ProcSet 104 0 R + /ProcSet 86 0 R >> /Subtype /Form /Type /XObject - /Length 36 0 R + /Length 30 0 R >> stream 0 1 0 RG @@ -640,28 +576,48 @@ ET endstream endobj -36 0 obj +30 0 obj 110 endobj %% Contents for page 3 -37 0 obj +31 0 obj << - /Length 38 0 R + /Length 32 0 R >> stream q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +0.77273 0 0 0.77273 0 159.54545 cm +/Fx1 Do +Q endstream endobj -38 0 obj -2 +32 0 obj +74 endobj -%% Contents for page 3 -39 0 obj +33 0 obj << - /Length 40 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 69 0 R + >> + /ProcSet 70 0 R + >> + /Subtype /Form + /Type /XObject + /Length 34 0 R >> stream 1 0 0 RG @@ -669,19 +625,6 @@ stream BT /F1 24 Tf 72 720 Td -endstream -endobj - -40 0 obj -45 -endobj - -%% Contents for page 3 -41 0 obj -<< - /Length 42 0 R ->> -stream (Page 3 - red) Tj ET 5 w @@ -690,30 +633,11 @@ ET endstream endobj -42 0 obj -63 -endobj - -%% Contents for page 3 -43 0 obj -<< - /Length 44 0 R ->> -stream - -Q -q -0.77273 0 0 0.77273 0 159.54545 cm -/Fx1 Do -Q -endstream -endobj - -44 0 obj -50 +34 0 obj +108 endobj -45 0 obj +35 0 obj << /BBox [ 0 @@ -731,13 +655,13 @@ endobj ] /Resources << /Font << - /F1 103 0 R + /F1 85 0 R >> - /ProcSet 104 0 R + /ProcSet 86 0 R >> /Subtype /Form /Type /XObject - /Length 46 0 R + /Length 36 0 R >> stream 0 1 0 RG @@ -753,28 +677,48 @@ ET endstream endobj -46 0 obj +36 0 obj 114 endobj %% Contents for page 4 -47 0 obj +37 0 obj << - /Length 48 0 R + /Length 38 0 R >> stream q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +0.77273 0 0 0.77273 0 159.54545 cm +/Fx1 Do +Q endstream endobj -48 0 obj -2 +38 0 obj +74 endobj -%% Contents for page 4 -49 0 obj +39 0 obj << - /Length 50 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 69 0 R + >> + /ProcSet 70 0 R + >> + /Subtype /Form + /Type /XObject + /Length 40 0 R >> stream 1 0 0 RG @@ -790,30 +734,11 @@ ET endstream endobj -50 0 obj +40 0 obj 108 endobj -%% Contents for page 4 -51 0 obj -<< - /Length 52 0 R ->> -stream - -Q -q -0.77273 0 0 0.77273 0 159.54545 cm -/Fx1 Do -Q -endstream -endobj - -52 0 obj -50 -endobj - -53 0 obj +41 0 obj << /BBox [ 0 @@ -831,13 +756,13 @@ endobj ] /Resources << /Font << - /F1 103 0 R + /F1 85 0 R >> - /ProcSet 104 0 R + /ProcSet 86 0 R >> /Subtype /Form /Type /XObject - /Length 54 0 R + /Length 42 0 R >> stream 0 1 0 RG @@ -853,28 +778,56 @@ ET endstream endobj -54 0 obj +42 0 obj 114 endobj %% Contents for page 5 -55 0 obj +43 0 obj << - /Length 56 0 R + /Length 44 0 R >> stream q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 0.77273 -0.77273 0 612 159.54545 cm +/Fx1 Do +Q endstream endobj -56 0 obj -2 +44 0 obj +80 endobj -%% Contents for page 5 -57 0 obj +45 0 obj << - /Length 58 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 69 0 R + >> + /ProcSet 70 0 R + >> + /Subtype /Form + /Type /XObject + /Length 46 0 R >> stream 1 0 0 RG @@ -890,30 +843,11 @@ ET endstream endobj -58 0 obj +46 0 obj 112 endobj -%% Contents for page 5 -59 0 obj -<< - /Length 60 0 R ->> -stream - -Q -q -0 0.77273 -0.77273 0 612 159.54545 cm -/Fx1 Do -Q -endstream -endobj - -60 0 obj -53 -endobj - -61 0 obj +47 0 obj << /BBox [ 0 @@ -931,13 +865,13 @@ endobj ] /Resources << /Font << - /F1 103 0 R + /F1 85 0 R >> - /ProcSet 104 0 R + /ProcSet 86 0 R >> /Subtype /Form /Type /XObject - /Length 62 0 R + /Length 48 0 R >> stream 0 1 0 RG @@ -953,28 +887,56 @@ ET endstream endobj -62 0 obj +48 0 obj 115 endobj %% Contents for page 6 -63 0 obj +49 0 obj << - /Length 64 0 R + /Length 50 0 R >> stream q +0 0.66667 -0.66667 0 612 0 cm +/Fx0 Do +Q +q +0 0.66667 -0.66667 0 570 192 cm +/Fx1 Do +Q endstream endobj -64 0 obj -2 +50 0 obj +86 endobj -%% Contents for page 6 -65 0 obj +51 0 obj << - /Length 66 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1.5 + 1.5 + 0 + 0 + 918 + ] + /Resources << + /Font << + /F1 69 0 R + >> + /ProcSet 70 0 R + >> + /Subtype /Form + /Type /XObject + /Length 52 0 R >> stream 1 0 0 RG @@ -990,30 +952,11 @@ ET endstream endobj -66 0 obj +52 0 obj 123 endobj -%% Contents for page 6 -67 0 obj -<< - /Length 68 0 R ->> -stream - -Q -q -0 0.66667 -0.66667 0 570 192 cm -/Fx1 Do -Q -endstream -endobj - -68 0 obj -47 -endobj - -69 0 obj +53 0 obj << /BBox [ 0 @@ -1031,13 +974,13 @@ endobj ] /Resources << /Font << - /F1 103 0 R + /F1 85 0 R >> - /ProcSet 104 0 R + /ProcSet 86 0 R >> /Subtype /Form /Type /XObject - /Length 70 0 R + /Length 54 0 R >> stream 0 1 0 RG @@ -1053,28 +996,56 @@ ET endstream endobj -70 0 obj +54 0 obj 115 endobj %% Contents for page 7 -71 0 obj +55 0 obj << - /Length 72 0 R + /Length 56 0 R >> stream q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 1 -1 0 612 0 cm +/Fx1 Do +Q endstream endobj -72 0 obj -2 +56 0 obj +60 endobj -%% Contents for page 7 -73 0 obj +57 0 obj << - /Length 74 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 69 0 R + >> + /ProcSet 70 0 R + >> + /Subtype /Form + /Type /XObject + /Length 58 0 R >> stream 1 0 0 RG @@ -1090,30 +1061,11 @@ ET endstream endobj -74 0 obj +58 0 obj 112 endobj -%% Contents for page 7 -75 0 obj -<< - /Length 76 0 R ->> -stream - -Q -q -0 1 -1 0 612 0 cm -/Fx1 Do -Q -endstream -endobj - -76 0 obj -33 -endobj - -77 0 obj +59 0 obj << /BBox [ 0 @@ -1131,13 +1083,13 @@ endobj ] /Resources << /Font << - /F1 103 0 R + /F1 85 0 R >> - /ProcSet 104 0 R + /ProcSet 86 0 R >> /Subtype /Form /Type /XObject - /Length 78 0 R + /Length 60 0 R >> stream 0 1 0 RG @@ -1153,28 +1105,56 @@ ET endstream endobj -78 0 obj +60 0 obj 115 endobj %% Contents for page 8 -79 0 obj +61 0 obj << - /Length 80 0 R + /Length 62 0 R >> stream q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 1 -1 0 612 0 cm +/Fx1 Do +Q endstream endobj -80 0 obj -2 +62 0 obj +60 endobj -%% Contents for page 8 -81 0 obj +63 0 obj << - /Length 82 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 69 0 R + >> + /ProcSet 70 0 R + >> + /Subtype /Form + /Type /XObject + /Length 64 0 R >> stream 1 0 0 RG @@ -1190,30 +1170,11 @@ ET endstream endobj -82 0 obj +64 0 obj 112 endobj -%% Contents for page 8 -83 0 obj -<< - /Length 84 0 R ->> -stream - -Q -q -0 1 -1 0 612 0 cm -/Fx1 Do -Q -endstream -endobj - -84 0 obj -33 -endobj - -85 0 obj +65 0 obj << /BBox [ 0 @@ -1231,13 +1192,13 @@ endobj ] /Resources << /Font << - /F1 103 0 R + /F1 85 0 R >> - /ProcSet 104 0 R + /ProcSet 86 0 R >> /Subtype /Form /Type /XObject - /Length 86 0 R + /Length 66 0 R >> stream 0 1 0 RG @@ -1253,14 +1214,14 @@ ET endstream endobj -86 0 obj +66 0 obj 115 endobj %% Contents for page 9 -87 0 obj +67 0 obj << - /Length 88 0 R + /Length 68 0 R >> stream 1 0 0 RG @@ -1276,14 +1237,31 @@ ET endstream endobj -88 0 obj +68 0 obj 113 endobj +69 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +70 0 obj +[ + /PDF + /Text +] +endobj + %% Contents for page 10 -89 0 obj +71 0 obj << - /Length 90 0 R + /Length 72 0 R >> stream 1 0 0 RG @@ -1299,14 +1277,14 @@ ET endstream endobj -90 0 obj +72 0 obj 126 endobj %% Contents for page 11 -91 0 obj +73 0 obj << - /Length 92 0 R + /Length 74 0 R >> stream 1 0 0 RG @@ -1322,14 +1300,14 @@ ET endstream endobj -92 0 obj +74 0 obj 114 endobj %% Contents for page 12 -93 0 obj +75 0 obj << - /Length 94 0 R + /Length 76 0 R >> stream 1 0 0 RG @@ -1345,14 +1323,14 @@ ET endstream endobj -94 0 obj +76 0 obj 114 endobj %% Contents for page 13 -95 0 obj +77 0 obj << - /Length 96 0 R + /Length 78 0 R >> stream 1 0 0 RG @@ -1368,14 +1346,14 @@ ET endstream endobj -96 0 obj +78 0 obj 114 endobj %% Contents for page 14 -97 0 obj +79 0 obj << - /Length 98 0 R + /Length 80 0 R >> stream 1 0 0 RG @@ -1391,14 +1369,14 @@ ET endstream endobj -98 0 obj +80 0 obj 126 endobj %% Contents for page 15 -99 0 obj +81 0 obj << - /Length 100 0 R + /Length 82 0 R >> stream 1 0 0 RG @@ -1414,14 +1392,14 @@ ET endstream endobj -100 0 obj +82 0 obj 114 endobj %% Contents for page 16 -101 0 obj +83 0 obj << - /Length 102 0 R + /Length 84 0 R >> stream 1 0 0 RG @@ -1437,11 +1415,11 @@ ET endstream endobj -102 0 obj +84 0 obj 114 endobj -103 0 obj +85 0 obj << /BaseFont /Helvetica /Encoding /WinAnsiEncoding @@ -1451,7 +1429,7 @@ endobj >> endobj -104 0 obj +86 0 obj [ /PDF /Text @@ -1459,117 +1437,99 @@ endobj endobj xref -0 105 +0 87 0000000000 65535 f 0000000025 00000 n 0000000079 00000 n 0000000321 00000 n -0000000599 00000 n -0000000891 00000 n -0000001180 00000 n -0000001458 00000 n -0000001749 00000 n -0000002056 00000 n -0000002347 00000 n -0000002639 00000 n -0000002860 00000 n -0000003098 00000 n -0000003319 00000 n -0000003540 00000 n -0000003761 00000 n -0000003999 00000 n -0000004220 00000 n -0000004454 00000 n -0000004513 00000 n -0000004555 00000 n -0000004720 00000 n -0000004764 00000 n -0000004851 00000 n -0000004871 00000 n -0000004990 00000 n -0000005026 00000 n -0000005349 00000 n -0000005393 00000 n -0000005452 00000 n -0000005494 00000 n -0000005668 00000 n -0000005712 00000 n -0000005807 00000 n -0000005827 00000 n -0000006150 00000 n -0000006194 00000 n -0000006253 00000 n -0000006295 00000 n -0000006397 00000 n -0000006440 00000 n -0000006560 00000 n -0000006603 00000 n -0000006710 00000 n -0000006730 00000 n -0000007112 00000 n -0000007156 00000 n -0000007215 00000 n -0000007257 00000 n -0000007422 00000 n -0000007466 00000 n -0000007573 00000 n -0000007593 00000 n -0000007975 00000 n -0000008019 00000 n -0000008078 00000 n -0000008120 00000 n -0000008289 00000 n -0000008333 00000 n -0000008443 00000 n -0000008463 00000 n -0000008849 00000 n -0000008893 00000 n -0000008952 00000 n -0000008994 00000 n -0000009174 00000 n -0000009218 00000 n -0000009322 00000 n -0000009342 00000 n -0000009728 00000 n -0000009772 00000 n -0000009831 00000 n -0000009873 00000 n -0000010042 00000 n -0000010086 00000 n -0000010176 00000 n -0000010196 00000 n -0000010579 00000 n -0000010623 00000 n -0000010682 00000 n -0000010724 00000 n -0000010893 00000 n -0000010937 00000 n -0000011027 00000 n -0000011047 00000 n -0000011430 00000 n -0000011474 00000 n -0000011644 00000 n -0000011689 00000 n -0000011872 00000 n -0000011917 00000 n -0000012088 00000 n -0000012133 00000 n -0000012304 00000 n -0000012349 00000 n -0000012520 00000 n -0000012565 00000 n -0000012748 00000 n -0000012793 00000 n -0000012965 00000 n -0000013011 00000 n -0000013184 00000 n -0000013206 00000 n -0000013326 00000 n +0000000528 00000 n +0000000749 00000 n +0000000956 00000 n +0000001163 00000 n +0000001383 00000 n +0000001619 00000 n +0000001839 00000 n +0000002060 00000 n +0000002281 00000 n +0000002519 00000 n +0000002740 00000 n +0000002961 00000 n +0000003182 00000 n +0000003420 00000 n +0000003641 00000 n +0000003874 00000 n +0000003985 00000 n +0000004005 00000 n +0000004324 00000 n +0000004345 00000 n +0000004666 00000 n +0000004710 00000 n +0000004833 00000 n +0000004853 00000 n +0000005233 00000 n +0000005254 00000 n +0000005575 00000 n +0000005619 00000 n +0000005750 00000 n +0000005770 00000 n +0000006089 00000 n +0000006110 00000 n +0000006490 00000 n +0000006534 00000 n +0000006665 00000 n +0000006685 00000 n +0000007004 00000 n +0000007025 00000 n +0000007405 00000 n +0000007449 00000 n +0000007586 00000 n +0000007606 00000 n +0000007984 00000 n +0000008005 00000 n +0000008389 00000 n +0000008433 00000 n +0000008576 00000 n +0000008596 00000 n +0000008989 00000 n +0000009010 00000 n +0000009394 00000 n +0000009438 00000 n +0000009555 00000 n +0000009575 00000 n +0000009953 00000 n +0000009974 00000 n +0000010355 00000 n +0000010399 00000 n +0000010516 00000 n +0000010536 00000 n +0000010914 00000 n +0000010935 00000 n +0000011316 00000 n +0000011360 00000 n +0000011530 00000 n +0000011551 00000 n +0000011670 00000 n +0000011730 00000 n +0000011913 00000 n +0000011958 00000 n +0000012129 00000 n +0000012174 00000 n +0000012345 00000 n +0000012390 00000 n +0000012561 00000 n +0000012606 00000 n +0000012789 00000 n +0000012834 00000 n +0000013005 00000 n +0000013050 00000 n +0000013221 00000 n +0000013242 00000 n +0000013361 00000 n trailer << /Root 1 0 R - /Size 105 + /Size 87 /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] >> startxref -13363 +13397 %%EOF diff --git a/qpdf/qtest/qpdf/uo-5.pdf b/qpdf/qtest/qpdf/uo-5.pdf index e463e470..ca97145e 100644 --- a/qpdf/qtest/qpdf/uo-5.pdf +++ b/qpdf/qtest/qpdf/uo-5.pdf @@ -80,11 +80,7 @@ endobj %% Page 3 5 0 obj << - /Contents [ - 25 0 R - 27 0 R - 29 0 R - ] + /Contents 25 0 R /MediaBox [ 0 0 @@ -93,12 +89,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 31 0 R + /Fx0 27 0 R + /Fx1 29 0 R >> >> /Type /Page @@ -108,10 +101,7 @@ endobj %% Page 4 6 0 obj << - /Contents [ - 33 0 R - 35 0 R - ] + /Contents 31 0 R /MediaBox [ 0 0 @@ -120,12 +110,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 37 0 R + /Fx0 33 0 R + /Fx1 35 0 R >> >> /Type /Page @@ -135,10 +122,7 @@ endobj %% Page 5 7 0 obj << - /Contents [ - 39 0 R - 41 0 R - ] + /Contents 37 0 R /MediaBox [ 0 0 @@ -147,12 +131,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 43 0 R + /Fx0 39 0 R + /Fx1 41 0 R >> >> /Rotate 90 @@ -163,10 +144,7 @@ endobj %% Page 6 8 0 obj << - /Contents [ - 45 0 R - 47 0 R - ] + /Contents 43 0 R /MediaBox [ 0 0 @@ -175,12 +153,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 49 0 R + /Fx0 45 0 R + /Fx1 47 0 R >> >> /Rotate 90 @@ -192,10 +167,7 @@ endobj %% Page 7 9 0 obj << - /Contents [ - 51 0 R - 53 0 R - ] + /Contents 49 0 R /MediaBox [ 0 0 @@ -204,12 +176,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 21 0 R - >> - /ProcSet 22 0 R /XObject << - /Fx1 55 0 R + /Fx0 51 0 R + /Fx1 53 0 R >> >> /Rotate 90 @@ -220,7 +189,7 @@ endobj %% Page 8 10 0 obj << - /Contents 57 0 R + /Contents 55 0 R /MediaBox [ 0 0 @@ -242,7 +211,7 @@ endobj %% Page 9 11 0 obj << - /Contents 59 0 R + /Contents 57 0 R /MediaBox [ 0 0 @@ -264,7 +233,7 @@ endobj %% Page 10 12 0 obj << - /Contents 61 0 R + /Contents 59 0 R /MediaBox [ 0 0 @@ -287,7 +256,7 @@ endobj %% Page 11 13 0 obj << - /Contents 63 0 R + /Contents 61 0 R /MediaBox [ 0 0 @@ -309,7 +278,7 @@ endobj %% Page 12 14 0 obj << - /Contents 65 0 R + /Contents 63 0 R /MediaBox [ 0 0 @@ -331,7 +300,7 @@ endobj %% Page 13 15 0 obj << - /Contents 67 0 R + /Contents 65 0 R /MediaBox [ 0 0 @@ -353,7 +322,7 @@ endobj %% Page 14 16 0 obj << - /Contents 69 0 R + /Contents 67 0 R /MediaBox [ 0 0 @@ -376,7 +345,7 @@ endobj %% Page 15 17 0 obj << - /Contents 71 0 R + /Contents 69 0 R /MediaBox [ 0 0 @@ -398,7 +367,7 @@ endobj %% Page 16 18 0 obj << - /Contents 73 0 R + /Contents 71 0 R /MediaBox [ 0 0 @@ -490,16 +459,33 @@ q 1 0 0 1 0 0 cm /Fx1 Do Q +q +1 0 0 1 0 0 cm +/Fx0 Do +Q endstream endobj 26 0 obj -27 +54 endobj -%% Contents for page 3 27 0 obj << + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 21 0 R + >> + /ProcSet 22 0 R + >> + /Subtype /Form + /Type /XObject /Length 28 0 R >> stream @@ -508,19 +494,6 @@ stream BT /F1 24 Tf 72 720 Td -endstream -endobj - -28 0 obj -45 -endobj - -%% Contents for page 3 -29 0 obj -<< - /Length 30 0 R ->> -stream (Page 3 - red) Tj ET 5 w @@ -529,11 +502,11 @@ ET endstream endobj -30 0 obj -63 +28 0 obj +108 endobj -31 0 obj +29 0 obj << /BBox [ 0 @@ -543,13 +516,13 @@ endobj ] /Resources << /Font << - /F1 75 0 R + /F1 73 0 R >> - /ProcSet 76 0 R + /ProcSet 74 0 R >> /Subtype /Form /Type /XObject - /Length 32 0 R + /Length 30 0 R >> stream 0 1 0 RG @@ -565,31 +538,48 @@ ET endstream endobj -32 0 obj +30 0 obj 110 endobj %% Contents for page 4 -33 0 obj +31 0 obj << - /Length 34 0 R + /Length 32 0 R >> stream q 1 0 0 1 0 0 cm /Fx1 Do Q +q +1 0 0 1 0 0 cm +/Fx0 Do +Q endstream endobj -34 0 obj -27 +32 0 obj +54 endobj -%% Contents for page 4 -35 0 obj +33 0 obj << - /Length 36 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 21 0 R + >> + /ProcSet 22 0 R + >> + /Subtype /Form + /Type /XObject + /Length 34 0 R >> stream 1 0 0 RG @@ -605,11 +595,11 @@ ET endstream endobj -36 0 obj +34 0 obj 108 endobj -37 0 obj +35 0 obj << /BBox [ 0 @@ -619,13 +609,13 @@ endobj ] /Resources << /Font << - /F1 75 0 R + /F1 73 0 R >> - /ProcSet 76 0 R + /ProcSet 74 0 R >> /Subtype /Form /Type /XObject - /Length 38 0 R + /Length 36 0 R >> stream 0 1 0 RG @@ -641,31 +631,56 @@ ET endstream endobj -38 0 obj +36 0 obj 110 endobj %% Contents for page 5 -39 0 obj +37 0 obj << - /Length 40 0 R + /Length 38 0 R >> stream q 0 1 -1 0 612 0 cm /Fx1 Do Q +q +0 1 -1 0 612 0 cm +/Fx0 Do +Q endstream endobj -40 0 obj -30 +38 0 obj +60 endobj -%% Contents for page 5 -41 0 obj +39 0 obj << - /Length 42 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 21 0 R + >> + /ProcSet 22 0 R + >> + /Subtype /Form + /Type /XObject + /Length 40 0 R >> stream 1 0 0 RG @@ -681,11 +696,11 @@ ET endstream endobj -42 0 obj +40 0 obj 112 endobj -43 0 obj +41 0 obj << /BBox [ 0 @@ -703,13 +718,13 @@ endobj ] /Resources << /Font << - /F1 75 0 R + /F1 73 0 R >> - /ProcSet 76 0 R + /ProcSet 74 0 R >> /Subtype /Form /Type /XObject - /Length 44 0 R + /Length 42 0 R >> stream 0 1 0 RG @@ -725,31 +740,56 @@ ET endstream endobj -44 0 obj +42 0 obj 114 endobj %% Contents for page 6 -45 0 obj +43 0 obj << - /Length 46 0 R + /Length 44 0 R >> stream q 0 0.66667 -0.66667 0 510 132 cm /Fx1 Do Q +q +0 0.66667 -0.66667 0 612 0 cm +/Fx0 Do +Q endstream endobj -46 0 obj -44 +44 0 obj +86 endobj -%% Contents for page 6 -47 0 obj +45 0 obj << - /Length 48 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1.5 + 1.5 + 0 + 0 + 918 + ] + /Resources << + /Font << + /F1 21 0 R + >> + /ProcSet 22 0 R + >> + /Subtype /Form + /Type /XObject + /Length 46 0 R >> stream 1 0 0 RG @@ -765,11 +805,11 @@ ET endstream endobj -48 0 obj +46 0 obj 123 endobj -49 0 obj +47 0 obj << /BBox [ 0 @@ -787,13 +827,13 @@ endobj ] /Resources << /Font << - /F1 75 0 R + /F1 73 0 R >> - /ProcSet 76 0 R + /ProcSet 74 0 R >> /Subtype /Form /Type /XObject - /Length 50 0 R + /Length 48 0 R >> stream 0 1 0 RG @@ -809,31 +849,56 @@ ET endstream endobj -50 0 obj +48 0 obj 114 endobj %% Contents for page 7 -51 0 obj +49 0 obj << - /Length 52 0 R + /Length 50 0 R >> stream q 0 0.77273 -0.77273 0 612 159.54545 cm /Fx1 Do Q +q +0 1 -1 0 612 0 cm +/Fx0 Do +Q endstream endobj -52 0 obj -50 +50 0 obj +80 endobj -%% Contents for page 7 -53 0 obj +51 0 obj << - /Length 54 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 21 0 R + >> + /ProcSet 22 0 R + >> + /Subtype /Form + /Type /XObject + /Length 52 0 R >> stream 1 0 0 RG @@ -849,11 +914,11 @@ ET endstream endobj -54 0 obj +52 0 obj 112 endobj -55 0 obj +53 0 obj << /BBox [ 0 @@ -871,13 +936,13 @@ endobj ] /Resources << /Font << - /F1 75 0 R + /F1 73 0 R >> - /ProcSet 76 0 R + /ProcSet 74 0 R >> /Subtype /Form /Type /XObject - /Length 56 0 R + /Length 54 0 R >> stream 0 1 0 RG @@ -893,14 +958,14 @@ ET endstream endobj -56 0 obj +54 0 obj 115 endobj %% Contents for page 8 -57 0 obj +55 0 obj << - /Length 58 0 R + /Length 56 0 R >> stream 1 0 0 RG @@ -916,14 +981,14 @@ ET endstream endobj -58 0 obj +56 0 obj 112 endobj %% Contents for page 9 -59 0 obj +57 0 obj << - /Length 60 0 R + /Length 58 0 R >> stream 1 0 0 RG @@ -939,14 +1004,14 @@ ET endstream endobj -60 0 obj +58 0 obj 113 endobj %% Contents for page 10 -61 0 obj +59 0 obj << - /Length 62 0 R + /Length 60 0 R >> stream 1 0 0 RG @@ -962,14 +1027,14 @@ ET endstream endobj -62 0 obj +60 0 obj 126 endobj %% Contents for page 11 -63 0 obj +61 0 obj << - /Length 64 0 R + /Length 62 0 R >> stream 1 0 0 RG @@ -985,14 +1050,14 @@ ET endstream endobj -64 0 obj +62 0 obj 114 endobj %% Contents for page 12 -65 0 obj +63 0 obj << - /Length 66 0 R + /Length 64 0 R >> stream 1 0 0 RG @@ -1008,14 +1073,14 @@ ET endstream endobj -66 0 obj +64 0 obj 114 endobj %% Contents for page 13 -67 0 obj +65 0 obj << - /Length 68 0 R + /Length 66 0 R >> stream 1 0 0 RG @@ -1031,14 +1096,14 @@ ET endstream endobj -68 0 obj +66 0 obj 114 endobj %% Contents for page 14 -69 0 obj +67 0 obj << - /Length 70 0 R + /Length 68 0 R >> stream 1 0 0 RG @@ -1054,14 +1119,14 @@ ET endstream endobj -70 0 obj +68 0 obj 126 endobj %% Contents for page 15 -71 0 obj +69 0 obj << - /Length 72 0 R + /Length 70 0 R >> stream 1 0 0 RG @@ -1077,14 +1142,14 @@ ET endstream endobj -72 0 obj +70 0 obj 114 endobj %% Contents for page 16 -73 0 obj +71 0 obj << - /Length 74 0 R + /Length 72 0 R >> stream 1 0 0 RG @@ -1100,11 +1165,11 @@ ET endstream endobj -74 0 obj +72 0 obj 114 endobj -75 0 obj +73 0 obj << /BaseFont /Helvetica /Encoding /WinAnsiEncoding @@ -1114,7 +1179,7 @@ endobj >> endobj -76 0 obj +74 0 obj [ /PDF /Text @@ -1122,89 +1187,87 @@ endobj endobj xref -0 77 +0 75 0000000000 65535 f 0000000025 00000 n 0000000079 00000 n 0000000321 00000 n 0000000526 00000 n 0000000745 00000 n -0000001023 00000 n -0000001290 00000 n -0000001570 00000 n -0000001866 00000 n -0000002146 00000 n -0000002365 00000 n -0000002586 00000 n -0000002824 00000 n -0000003045 00000 n -0000003266 00000 n -0000003487 00000 n -0000003725 00000 n -0000003946 00000 n -0000004179 00000 n -0000004344 00000 n -0000004365 00000 n -0000004484 00000 n -0000004543 00000 n -0000004717 00000 n -0000004761 00000 n -0000004845 00000 n -0000004888 00000 n -0000004990 00000 n -0000005033 00000 n -0000005153 00000 n -0000005173 00000 n -0000005494 00000 n -0000005538 00000 n -0000005622 00000 n -0000005665 00000 n -0000005830 00000 n -0000005851 00000 n -0000006172 00000 n -0000006216 00000 n -0000006303 00000 n -0000006346 00000 n -0000006515 00000 n -0000006536 00000 n -0000006916 00000 n -0000006960 00000 n -0000007061 00000 n -0000007104 00000 n -0000007284 00000 n -0000007305 00000 n -0000007685 00000 n -0000007729 00000 n -0000007836 00000 n -0000007879 00000 n -0000008048 00000 n -0000008069 00000 n -0000008453 00000 n -0000008497 00000 n -0000008666 00000 n -0000008710 00000 n -0000008880 00000 n -0000008925 00000 n -0000009108 00000 n -0000009153 00000 n -0000009324 00000 n -0000009369 00000 n -0000009540 00000 n -0000009585 00000 n -0000009756 00000 n -0000009801 00000 n -0000009984 00000 n -0000010029 00000 n -0000010200 00000 n -0000010245 00000 n -0000010416 00000 n -0000010437 00000 n -0000010556 00000 n +0000000952 00000 n +0000001159 00000 n +0000001379 00000 n +0000001615 00000 n +0000001835 00000 n +0000002054 00000 n +0000002275 00000 n +0000002513 00000 n +0000002734 00000 n +0000002955 00000 n +0000003176 00000 n +0000003414 00000 n +0000003635 00000 n +0000003868 00000 n +0000004033 00000 n +0000004054 00000 n +0000004173 00000 n +0000004232 00000 n +0000004406 00000 n +0000004450 00000 n +0000004561 00000 n +0000004581 00000 n +0000004900 00000 n +0000004921 00000 n +0000005242 00000 n +0000005286 00000 n +0000005397 00000 n +0000005417 00000 n +0000005736 00000 n +0000005757 00000 n +0000006078 00000 n +0000006122 00000 n +0000006239 00000 n +0000006259 00000 n +0000006637 00000 n +0000006658 00000 n +0000007038 00000 n +0000007082 00000 n +0000007225 00000 n +0000007245 00000 n +0000007638 00000 n +0000007659 00000 n +0000008039 00000 n +0000008083 00000 n +0000008220 00000 n +0000008240 00000 n +0000008618 00000 n +0000008639 00000 n +0000009023 00000 n +0000009067 00000 n +0000009236 00000 n +0000009280 00000 n +0000009450 00000 n +0000009495 00000 n +0000009678 00000 n +0000009723 00000 n +0000009894 00000 n +0000009939 00000 n +0000010110 00000 n +0000010155 00000 n +0000010326 00000 n +0000010371 00000 n +0000010554 00000 n +0000010599 00000 n +0000010770 00000 n +0000010815 00000 n +0000010986 00000 n +0000011007 00000 n +0000011126 00000 n trailer << /Root 1 0 R - /Size 77 + /Size 75 /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] >> startxref -10592 +11162 %%EOF diff --git a/qpdf/qtest/qpdf/uo-6.pdf b/qpdf/qtest/qpdf/uo-6.pdf index 1e2ecc9e..488658c4 100644 --- a/qpdf/qtest/qpdf/uo-6.pdf +++ b/qpdf/qtest/qpdf/uo-6.pdf @@ -22,11 +22,7 @@ endobj %% Page 1 3 0 obj << - /Contents [ - 4 0 R - 6 0 R - 8 0 R - ] + /Contents 4 0 R /MediaBox [ 0 0 @@ -35,15 +31,12 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 10 0 R - >> - /ProcSet 11 0 R /XObject << - /Fx1 12 0 R - /Fx2 14 0 R - /Fx3 16 0 R - /Fx4 18 0 R + /Fx0 6 0 R + /Fx1 8 0 R + /Fx2 10 0 R + /Fx3 12 0 R + /Fx4 14 0 R >> >> /Type /Page @@ -57,16 +50,48 @@ endobj >> stream q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +1 0 0 1 0 0 cm +/Fx1 Do +Q +q +0.77273 0 0 0.77273 0 159.54545 cm +/Fx2 Do +Q +q +1 0 0 1 20 20 cm +/Fx3 Do +Q +q +0.81383 0 0 0.81383 16.2766 146.96809 cm +/Fx4 Do +Q endstream endobj 5 0 obj -2 +183 endobj -%% Contents for page 1 6 0 obj << + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 16 0 R + >> + /ProcSet 17 0 R + >> + /Subtype /Form + /Type /XObject /Length 7 0 R >> stream @@ -87,55 +112,7 @@ endobj 108 endobj -%% Contents for page 1 8 0 obj -<< - /Length 9 0 R ->> -stream - -Q -q -1 0 0 1 0 0 cm -/Fx1 Do -Q -q -0.77273 0 0 0.77273 0 159.54545 cm -/Fx2 Do -Q -q -1 0 0 1 20 20 cm -/Fx3 Do -Q -q -0.81383 0 0 0.81383 16.2766 146.96809 cm -/Fx4 Do -Q -endstream -endobj - -9 0 obj -159 -endobj - -10 0 obj -<< - /BaseFont /Helvetica - /Encoding /WinAnsiEncoding - /Name /F1 - /Subtype /Type1 - /Type /Font ->> -endobj - -11 0 obj -[ - /PDF - /Text -] -endobj - -12 0 obj << /BBox [ 0 @@ -145,13 +122,13 @@ endobj ] /Resources << /Font << - /F1 20 0 R + /F1 18 0 R >> - /ProcSet 21 0 R + /ProcSet 19 0 R >> /Subtype /Form /Type /XObject - /Length 13 0 R + /Length 9 0 R >> stream 0 0 1 RG @@ -167,11 +144,11 @@ ET endstream endobj -13 0 obj +9 0 obj 109 endobj -14 0 obj +10 0 obj << /BBox [ 0 @@ -189,13 +166,13 @@ endobj ] /Resources << /Font << - /F1 20 0 R + /F1 18 0 R >> - /ProcSet 21 0 R + /ProcSet 19 0 R >> /Subtype /Form /Type /XObject - /Length 15 0 R + /Length 11 0 R >> stream 0 0 1 RG @@ -211,11 +188,11 @@ ET endstream endobj -15 0 obj +11 0 obj 113 endobj -16 0 obj +12 0 obj << /BBox [ 10 @@ -233,13 +210,13 @@ endobj ] /Resources << /Font << - /F1 20 0 R + /F1 18 0 R >> - /ProcSet 21 0 R + /ProcSet 19 0 R >> /Subtype /Form /Type /XObject - /Length 17 0 R + /Length 13 0 R >> stream 0 0 1 RG @@ -256,11 +233,11 @@ ET endstream endobj -17 0 obj +13 0 obj 150 endobj -18 0 obj +14 0 obj << /BBox [ 20 @@ -278,13 +255,13 @@ endobj ] /Resources << /Font << - /F1 20 0 R + /F1 18 0 R >> - /ProcSet 21 0 R + /ProcSet 19 0 R >> /Subtype /Form /Type /XObject - /Length 19 0 R + /Length 15 0 R >> stream 0 0 1 RG @@ -302,11 +279,11 @@ ET endstream endobj -19 0 obj +15 0 obj 170 endobj -20 0 obj +16 0 obj << /BaseFont /Helvetica /Encoding /WinAnsiEncoding @@ -316,7 +293,24 @@ endobj >> endobj -21 0 obj +17 0 obj +[ + /PDF + /Text +] +endobj + +18 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +19 0 obj [ /PDF /Text @@ -324,34 +318,32 @@ endobj endobj xref -0 22 +0 20 0000000000 65535 f 0000000025 00000 n 0000000079 00000 n 0000000161 00000 n -0000000503 00000 n -0000000560 00000 n -0000000601 00000 n -0000000764 00000 n -0000000807 00000 n -0000001021 00000 n -0000001041 00000 n -0000001160 00000 n -0000001196 00000 n -0000001516 00000 n -0000001537 00000 n -0000001916 00000 n -0000001937 00000 n -0000002358 00000 n -0000002379 00000 n -0000002817 00000 n -0000002838 00000 n -0000002957 00000 n +0000000432 00000 n +0000000670 00000 n +0000000690 00000 n +0000001007 00000 n +0000001027 00000 n +0000001345 00000 n +0000001365 00000 n +0000001744 00000 n +0000001765 00000 n +0000002186 00000 n +0000002207 00000 n +0000002645 00000 n +0000002666 00000 n +0000002785 00000 n +0000002821 00000 n +0000002940 00000 n trailer << /Root 1 0 R - /Size 22 + /Size 20 /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] >> startxref -2993 +2976 %%EOF diff --git a/qpdf/qtest/qpdf/uo-7.pdf b/qpdf/qtest/qpdf/uo-7.pdf index 08a0e506..1a7d3e71 100644 --- a/qpdf/qtest/qpdf/uo-7.pdf +++ b/qpdf/qtest/qpdf/uo-7.pdf @@ -37,11 +37,7 @@ endobj %% Page 1 3 0 obj << - /Contents [ - 19 0 R - 21 0 R - 23 0 R - ] + /Contents 19 0 R /MediaBox [ 0 0 @@ -50,12 +46,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 27 0 R + /Fx0 21 0 R + /Fx1 23 0 R >> >> /Type /Page @@ -65,11 +58,7 @@ endobj %% Page 2 4 0 obj << - /Contents [ - 29 0 R - 31 0 R - 33 0 R - ] + /Contents 25 0 R /MediaBox [ 0 0 @@ -78,12 +67,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 35 0 R + /Fx0 27 0 R + /Fx1 29 0 R >> >> /Type /Page @@ -94,12 +80,7 @@ endobj %% Page 3 5 0 obj << - /Contents [ - 37 0 R - 39 0 R - 41 0 R - 43 0 R - ] + /Contents 31 0 R /MediaBox [ 0 0 @@ -108,12 +89,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 45 0 R + /Fx0 33 0 R + /Fx1 35 0 R >> >> /Type /Page @@ -123,11 +101,7 @@ endobj %% Page 4 6 0 obj << - /Contents [ - 47 0 R - 49 0 R - 51 0 R - ] + /Contents 37 0 R /MediaBox [ 0 0 @@ -136,12 +110,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 53 0 R + /Fx0 39 0 R + /Fx1 41 0 R >> >> /Type /Page @@ -151,11 +122,7 @@ endobj %% Page 5 7 0 obj << - /Contents [ - 55 0 R - 57 0 R - 59 0 R - ] + /Contents 43 0 R /MediaBox [ 0 0 @@ -164,12 +131,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 61 0 R + /Fx0 45 0 R + /Fx1 47 0 R >> >> /Rotate 90 @@ -180,11 +144,7 @@ endobj %% Page 6 8 0 obj << - /Contents [ - 63 0 R - 65 0 R - 67 0 R - ] + /Contents 49 0 R /MediaBox [ 0 0 @@ -193,12 +153,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 69 0 R + /Fx0 51 0 R + /Fx1 53 0 R >> >> /Rotate 90 @@ -210,11 +167,7 @@ endobj %% Page 7 9 0 obj << - /Contents [ - 71 0 R - 73 0 R - 75 0 R - ] + /Contents 55 0 R /MediaBox [ 0 0 @@ -223,12 +176,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 77 0 R + /Fx0 57 0 R + /Fx1 59 0 R >> >> /Rotate 90 @@ -239,11 +189,7 @@ endobj %% Page 8 10 0 obj << - /Contents [ - 79 0 R - 81 0 R - 83 0 R - ] + /Contents 61 0 R /MediaBox [ 0 0 @@ -252,12 +198,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 85 0 R + /Fx0 63 0 R + /Fx1 65 0 R >> >> /Rotate 90 @@ -268,11 +211,7 @@ endobj %% Page 9 11 0 obj << - /Contents [ - 87 0 R - 89 0 R - 91 0 R - ] + /Contents 67 0 R /MediaBox [ 0 0 @@ -281,12 +220,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 93 0 R + /Fx0 69 0 R + /Fx1 71 0 R >> >> /Rotate 180 @@ -297,11 +233,7 @@ endobj %% Page 10 12 0 obj << - /Contents [ - 95 0 R - 97 0 R - 99 0 R - ] + /Contents 73 0 R /MediaBox [ 0 0 @@ -310,12 +242,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 101 0 R + /Fx0 75 0 R + /Fx1 77 0 R >> >> /Rotate 180 @@ -327,11 +256,7 @@ endobj %% Page 11 13 0 obj << - /Contents [ - 103 0 R - 105 0 R - 107 0 R - ] + /Contents 79 0 R /MediaBox [ 0 0 @@ -340,12 +265,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 109 0 R + /Fx0 81 0 R + /Fx1 83 0 R >> >> /Rotate 180 @@ -356,11 +278,7 @@ endobj %% Page 12 14 0 obj << - /Contents [ - 111 0 R - 113 0 R - 115 0 R - ] + /Contents 85 0 R /MediaBox [ 0 0 @@ -369,12 +287,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 117 0 R + /Fx0 87 0 R + /Fx1 89 0 R >> >> /Rotate 180 @@ -385,11 +300,7 @@ endobj %% Page 13 15 0 obj << - /Contents [ - 119 0 R - 121 0 R - 123 0 R - ] + /Contents 91 0 R /MediaBox [ 0 0 @@ -398,12 +309,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 125 0 R + /Fx0 93 0 R + /Fx1 95 0 R >> >> /Rotate 270 @@ -414,11 +322,7 @@ endobj %% Page 14 16 0 obj << - /Contents [ - 127 0 R - 129 0 R - 131 0 R - ] + /Contents 97 0 R /MediaBox [ 0 0 @@ -427,12 +331,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 133 0 R + /Fx0 99 0 R + /Fx1 101 0 R >> >> /Rotate 270 @@ -444,11 +345,7 @@ endobj %% Page 15 17 0 obj << - /Contents [ - 135 0 R - 137 0 R - 139 0 R - ] + /Contents 103 0 R /MediaBox [ 0 0 @@ -457,12 +354,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 141 0 R + /Fx0 105 0 R + /Fx1 107 0 R >> >> /Rotate 270 @@ -473,11 +367,7 @@ endobj %% Page 16 18 0 obj << - /Contents [ - 143 0 R - 145 0 R - 147 0 R - ] + /Contents 109 0 R /MediaBox [ 0 0 @@ -486,12 +376,9 @@ endobj ] /Parent 2 0 R /Resources << - /Font << - /F1 25 0 R - >> - /ProcSet 26 0 R /XObject << - /Fx1 149 0 R + /Fx0 111 0 R + /Fx1 113 0 R >> >> /Rotate 270 @@ -506,16 +393,36 @@ endobj >> stream q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +1 0 0 1 0 0 cm +/Fx1 Do +Q endstream endobj 20 0 obj -2 +54 endobj -%% Contents for page 1 21 0 obj << + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject /Length 22 0 R >> stream @@ -536,43 +443,7 @@ endobj 108 endobj -%% Contents for page 1 23 0 obj -<< - /Length 24 0 R ->> -stream - -Q -q -1 0 0 1 0 0 cm -/Fx1 Do -Q -endstream -endobj - -24 0 obj -30 -endobj - -25 0 obj -<< - /BaseFont /Helvetica - /Encoding /WinAnsiEncoding - /Name /F1 - /Subtype /Type1 - /Type /Font ->> -endobj - -26 0 obj -[ - /PDF - /Text -] -endobj - -27 0 obj << /BBox [ 0 @@ -582,7 +453,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -591,35 +462,63 @@ endobj >> /Subtype /Form /Type /XObject - /Length 28 0 R + /Length 24 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 0) Tj ET endstream endobj -28 0 obj +24 0 obj 47 endobj %% Contents for page 2 -29 0 obj +25 0 obj << - /Length 30 0 R + /Length 26 0 R >> stream q +0.5 0 0 0.5 0 0 cm +/Fx0 Do +Q +q +0.5 0 0 0.5 153 198 cm +/Fx1 Do +Q endstream endobj -30 0 obj -2 +26 0 obj +66 endobj -%% Contents for page 2 -31 0 obj +27 0 obj << - /Length 32 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 2 + 0 + 0 + 2 + 0 + 0 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 28 0 R >> stream 1 0 0 RG @@ -635,30 +534,11 @@ ET endstream endobj -32 0 obj +28 0 obj 117 endobj -%% Contents for page 2 -33 0 obj -<< - /Length 34 0 R ->> -stream - -Q -q -0.5 0 0 0.5 153 198 cm -/Fx1 Do -Q -endstream -endobj - -34 0 obj -38 -endobj - -35 0 obj +29 0 obj << /BBox [ 0 @@ -668,7 +548,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -677,35 +557,55 @@ endobj >> /Subtype /Form /Type /XObject - /Length 36 0 R + /Length 30 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 1) Tj ET endstream endobj -36 0 obj +30 0 obj 47 endobj %% Contents for page 3 -37 0 obj +31 0 obj << - /Length 38 0 R + /Length 32 0 R >> stream q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +1 0 0 1 0 0 cm +/Fx1 Do +Q endstream endobj -38 0 obj -2 +32 0 obj +54 endobj -%% Contents for page 3 -39 0 obj +33 0 obj << - /Length 40 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 34 0 R >> stream 1 0 0 RG @@ -713,19 +613,6 @@ stream BT /F1 24 Tf 72 720 Td -endstream -endobj - -40 0 obj -45 -endobj - -%% Contents for page 3 -41 0 obj -<< - /Length 42 0 R ->> -stream (Page 3 - red) Tj ET 5 w @@ -734,30 +621,11 @@ ET endstream endobj -42 0 obj -63 -endobj - -%% Contents for page 3 -43 0 obj -<< - /Length 44 0 R ->> -stream - -Q -q -1 0 0 1 0 0 cm -/Fx1 Do -Q -endstream -endobj - -44 0 obj -30 +34 0 obj +108 endobj -45 0 obj +35 0 obj << /BBox [ 0 @@ -767,7 +635,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -776,35 +644,55 @@ endobj >> /Subtype /Form /Type /XObject - /Length 46 0 R + /Length 36 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 2) Tj ET endstream endobj -46 0 obj +36 0 obj 47 endobj %% Contents for page 4 -47 0 obj +37 0 obj << - /Length 48 0 R + /Length 38 0 R >> stream q +1 0 0 1 0 0 cm +/Fx0 Do +Q +q +1 0 0 1 0 0 cm +/Fx1 Do +Q endstream endobj -48 0 obj -2 +38 0 obj +54 endobj -%% Contents for page 4 -49 0 obj +39 0 obj << - /Length 50 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 40 0 R >> stream 1 0 0 RG @@ -820,30 +708,11 @@ ET endstream endobj -50 0 obj +40 0 obj 108 endobj -%% Contents for page 4 -51 0 obj -<< - /Length 52 0 R ->> -stream - -Q -q -1 0 0 1 0 0 cm -/Fx1 Do -Q -endstream -endobj - -52 0 obj -30 -endobj - -53 0 obj +41 0 obj << /BBox [ 0 @@ -853,7 +722,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -862,35 +731,63 @@ endobj >> /Subtype /Form /Type /XObject - /Length 54 0 R + /Length 42 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 3) Tj ET endstream endobj -54 0 obj +42 0 obj 47 endobj %% Contents for page 5 -55 0 obj +43 0 obj << - /Length 56 0 R + /Length 44 0 R >> stream q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 0.77273 -0.77273 0 612 159.54545 cm +/Fx1 Do +Q endstream endobj -56 0 obj -2 +44 0 obj +80 endobj -%% Contents for page 5 -57 0 obj +45 0 obj << - /Length 58 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 46 0 R >> stream 1 0 0 RG @@ -906,30 +803,11 @@ ET endstream endobj -58 0 obj +46 0 obj 112 endobj -%% Contents for page 5 -59 0 obj -<< - /Length 60 0 R ->> -stream - -Q -q -0 0.77273 -0.77273 0 612 159.54545 cm -/Fx1 Do -Q -endstream -endobj - -60 0 obj -53 -endobj - -61 0 obj +47 0 obj << /BBox [ 0 @@ -939,7 +817,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -948,35 +826,63 @@ endobj >> /Subtype /Form /Type /XObject - /Length 62 0 R + /Length 48 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 4) Tj ET endstream endobj -62 0 obj +48 0 obj 47 endobj %% Contents for page 6 -63 0 obj +49 0 obj << - /Length 64 0 R + /Length 50 0 R >> stream q +0 0.66667 -0.66667 0 612 0 cm +/Fx0 Do +Q +q +0 0.66667 -0.66667 0 570 192 cm +/Fx1 Do +Q endstream endobj -64 0 obj -2 +50 0 obj +86 endobj -%% Contents for page 6 -65 0 obj +51 0 obj << - /Length 66 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1.5 + 1.5 + 0 + 0 + 918 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 52 0 R >> stream 1 0 0 RG @@ -992,30 +898,11 @@ ET endstream endobj -66 0 obj +52 0 obj 123 endobj -%% Contents for page 6 -67 0 obj -<< - /Length 68 0 R ->> -stream - -Q -q -0 0.66667 -0.66667 0 570 192 cm -/Fx1 Do -Q -endstream -endobj - -68 0 obj -47 -endobj - -69 0 obj +53 0 obj << /BBox [ 0 @@ -1025,7 +912,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -1034,35 +921,63 @@ endobj >> /Subtype /Form /Type /XObject - /Length 70 0 R + /Length 54 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 5) Tj ET endstream endobj -70 0 obj +54 0 obj 47 endobj %% Contents for page 7 -71 0 obj +55 0 obj << - /Length 72 0 R + /Length 56 0 R >> stream q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 0.77273 -0.77273 0 612 159.54545 cm +/Fx1 Do +Q endstream endobj -72 0 obj -2 +56 0 obj +80 endobj -%% Contents for page 7 -73 0 obj +57 0 obj << - /Length 74 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 58 0 R >> stream 1 0 0 RG @@ -1078,30 +993,11 @@ ET endstream endobj -74 0 obj +58 0 obj 112 endobj -%% Contents for page 7 -75 0 obj -<< - /Length 76 0 R ->> -stream - -Q -q -0 0.77273 -0.77273 0 612 159.54545 cm -/Fx1 Do -Q -endstream -endobj - -76 0 obj -53 -endobj - -77 0 obj +59 0 obj << /BBox [ 0 @@ -1111,7 +1007,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -1120,35 +1016,63 @@ endobj >> /Subtype /Form /Type /XObject - /Length 78 0 R + /Length 60 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 6) Tj ET endstream endobj -78 0 obj +60 0 obj 47 endobj %% Contents for page 8 -79 0 obj +61 0 obj << - /Length 80 0 R + /Length 62 0 R >> stream q +0 1 -1 0 612 0 cm +/Fx0 Do +Q +q +0 0.77273 -0.77273 0 612 159.54545 cm +/Fx1 Do +Q endstream endobj -80 0 obj -2 +62 0 obj +80 endobj -%% Contents for page 8 -81 0 obj +63 0 obj << - /Length 82 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + -1 + 1 + 0 + 0 + 612 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 64 0 R >> stream 1 0 0 RG @@ -1164,30 +1088,11 @@ ET endstream endobj -82 0 obj +64 0 obj 112 endobj -%% Contents for page 8 -83 0 obj -<< - /Length 84 0 R ->> -stream - -Q -q -0 0.77273 -0.77273 0 612 159.54545 cm -/Fx1 Do -Q -endstream -endobj - -84 0 obj -53 -endobj - -85 0 obj +65 0 obj << /BBox [ 0 @@ -1197,7 +1102,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -1206,35 +1111,63 @@ endobj >> /Subtype /Form /Type /XObject - /Length 86 0 R + /Length 66 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 7) Tj ET endstream endobj -86 0 obj +66 0 obj 47 endobj %% Contents for page 9 -87 0 obj +67 0 obj << - /Length 88 0 R + /Length 68 0 R >> stream q +-1 0 0 -1 612 792 cm +/Fx0 Do +Q +q +-1 0 0 -1 612 792 cm +/Fx1 Do +Q endstream endobj -88 0 obj -2 +68 0 obj +66 endobj -%% Contents for page 9 -89 0 obj +69 0 obj << - /Length 90 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 70 0 R >> stream 1 0 0 RG @@ -1250,30 +1183,11 @@ ET endstream endobj -90 0 obj +70 0 obj 113 endobj -%% Contents for page 9 -91 0 obj -<< - /Length 92 0 R ->> -stream - -Q -q --1 0 0 -1 612 792 cm -/Fx1 Do -Q -endstream -endobj - -92 0 obj -36 -endobj - -93 0 obj +71 0 obj << /BBox [ 0 @@ -1283,7 +1197,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -1292,35 +1206,63 @@ endobj >> /Subtype /Form /Type /XObject - /Length 94 0 R + /Length 72 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 8) Tj ET endstream endobj -94 0 obj +72 0 obj 47 endobj %% Contents for page 10 -95 0 obj +73 0 obj << - /Length 96 0 R + /Length 74 0 R >> stream q +-1.33333 0 0 -1.33333 612 792 cm +/Fx0 Do +Q +q +-1 0 0 -1 612 792 cm +/Fx1 Do +Q endstream endobj -96 0 obj -2 +74 0 obj +78 endobj -%% Contents for page 10 -97 0 obj +75 0 obj << - /Length 98 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -0.75 + 0 + 0 + -0.75 + 459 + 594 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 76 0 R >> stream 1 0 0 RG @@ -1336,30 +1278,11 @@ ET endstream endobj -98 0 obj +76 0 obj 126 endobj -%% Contents for page 10 -99 0 obj -<< - /Length 100 0 R ->> -stream - -Q -q --1 0 0 -1 612 792 cm -/Fx1 Do -Q -endstream -endobj - -100 0 obj -36 -endobj - -101 0 obj +77 0 obj << /BBox [ 0 @@ -1369,7 +1292,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -1378,35 +1301,63 @@ endobj >> /Subtype /Form /Type /XObject - /Length 102 0 R + /Length 78 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 9) Tj ET endstream endobj -102 0 obj +78 0 obj 47 endobj %% Contents for page 11 -103 0 obj +79 0 obj << - /Length 104 0 R + /Length 80 0 R >> stream q +-1 0 0 -1 612 792 cm +/Fx0 Do +Q +q +-1 0 0 -1 612 792 cm +/Fx1 Do +Q endstream endobj -104 0 obj -2 +80 0 obj +66 endobj -%% Contents for page 11 -105 0 obj +81 0 obj << - /Length 106 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 82 0 R >> stream 1 0 0 RG @@ -1422,30 +1373,11 @@ ET endstream endobj -106 0 obj +82 0 obj 114 endobj -%% Contents for page 11 -107 0 obj -<< - /Length 108 0 R ->> -stream - -Q -q --1 0 0 -1 612 792 cm -/Fx1 Do -Q -endstream -endobj - -108 0 obj -36 -endobj - -109 0 obj +83 0 obj << /BBox [ 0 @@ -1455,7 +1387,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -1464,35 +1396,63 @@ endobj >> /Subtype /Form /Type /XObject - /Length 110 0 R + /Length 84 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 10) Tj ET endstream endobj -110 0 obj +84 0 obj 48 endobj %% Contents for page 12 -111 0 obj +85 0 obj << - /Length 112 0 R + /Length 86 0 R >> stream q +-1 0 0 -1 612 792 cm +/Fx0 Do +Q +q +-1 0 0 -1 612 792 cm +/Fx1 Do +Q endstream endobj -112 0 obj -2 +86 0 obj +66 endobj -%% Contents for page 12 -113 0 obj +87 0 obj << - /Length 114 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + -1 + 0 + 0 + -1 + 612 + 792 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 88 0 R >> stream 1 0 0 RG @@ -1508,30 +1468,11 @@ ET endstream endobj -114 0 obj +88 0 obj 114 endobj -%% Contents for page 12 -115 0 obj -<< - /Length 116 0 R ->> -stream - -Q -q --1 0 0 -1 612 792 cm -/Fx1 Do -Q -endstream -endobj - -116 0 obj -36 -endobj - -117 0 obj +89 0 obj << /BBox [ 0 @@ -1541,7 +1482,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -1550,35 +1491,63 @@ endobj >> /Subtype /Form /Type /XObject - /Length 118 0 R + /Length 90 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 11) Tj ET endstream endobj -118 0 obj +90 0 obj 48 endobj %% Contents for page 13 -119 0 obj +91 0 obj << - /Length 120 0 R + /Length 92 0 R >> stream q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -0.77273 0.77273 0 0 632.45455 cm +/Fx1 Do +Q endstream endobj -120 0 obj -2 +92 0 obj +78 endobj -%% Contents for page 13 -121 0 obj +93 0 obj << - /Length 122 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 94 0 R >> stream 1 0 0 RG @@ -1594,30 +1563,11 @@ ET endstream endobj -122 0 obj +94 0 obj 114 endobj -%% Contents for page 13 -123 0 obj -<< - /Length 124 0 R ->> -stream - -Q -q -0 -0.77273 0.77273 0 0 632.45455 cm -/Fx1 Do -Q -endstream -endobj - -124 0 obj -51 -endobj - -125 0 obj +95 0 obj << /BBox [ 0 @@ -1627,7 +1577,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -1636,35 +1586,63 @@ endobj >> /Subtype /Form /Type /XObject - /Length 126 0 R + /Length 96 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 12) Tj ET endstream endobj -126 0 obj +96 0 obj 48 endobj %% Contents for page 14 -127 0 obj +97 0 obj << - /Length 128 0 R + /Length 98 0 R >> stream q +0 -0.8 0.8 0 0 792 cm +/Fx0 Do +Q +q +0 -0.77273 0.77273 0 0 632.45455 cm +/Fx1 Do +Q endstream endobj -128 0 obj -2 +98 0 obj +82 endobj -%% Contents for page 14 -129 0 obj +99 0 obj << - /Length 130 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1.25 + -1.25 + 0 + 990 + 0 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 100 0 R >> stream 1 0 0 RG @@ -1680,30 +1658,11 @@ ET endstream endobj -130 0 obj +100 0 obj 126 endobj -%% Contents for page 14 -131 0 obj -<< - /Length 132 0 R ->> -stream - -Q -q -0 -0.77273 0.77273 0 0 632.45455 cm -/Fx1 Do -Q -endstream -endobj - -132 0 obj -51 -endobj - -133 0 obj +101 0 obj << /BBox [ 0 @@ -1713,7 +1672,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -1722,35 +1681,63 @@ endobj >> /Subtype /Form /Type /XObject - /Length 134 0 R + /Length 102 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 13) Tj ET endstream endobj -134 0 obj +102 0 obj 48 endobj %% Contents for page 15 -135 0 obj +103 0 obj << - /Length 136 0 R + /Length 104 0 R >> stream q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -0.77273 0.77273 0 0 632.45455 cm +/Fx1 Do +Q endstream endobj -136 0 obj -2 +104 0 obj +78 endobj -%% Contents for page 15 -137 0 obj +105 0 obj << - /Length 138 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 106 0 R >> stream 1 0 0 RG @@ -1766,30 +1753,11 @@ ET endstream endobj -138 0 obj +106 0 obj 114 endobj -%% Contents for page 15 -139 0 obj -<< - /Length 140 0 R ->> -stream - -Q -q -0 -0.77273 0.77273 0 0 632.45455 cm -/Fx1 Do -Q -endstream -endobj - -140 0 obj -51 -endobj - -141 0 obj +107 0 obj << /BBox [ 0 @@ -1799,7 +1767,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -1808,35 +1776,63 @@ endobj >> /Subtype /Form /Type /XObject - /Length 142 0 R + /Length 108 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 14) Tj ET endstream endobj -142 0 obj +108 0 obj 48 endobj %% Contents for page 16 -143 0 obj +109 0 obj << - /Length 144 0 R + /Length 110 0 R >> stream q +0 -1 1 0 0 792 cm +/Fx0 Do +Q +q +0 -0.77273 0.77273 0 0 632.45455 cm +/Fx1 Do +Q endstream endobj -144 0 obj -2 +110 0 obj +78 endobj -%% Contents for page 16 -145 0 obj +111 0 obj << - /Length 146 0 R + /BBox [ + 0 + 0 + 612 + 792 + ] + /Matrix [ + 0 + 1 + -1 + 0 + 792 + 0 + ] + /Resources << + /Font << + /F1 115 0 R + >> + /ProcSet 116 0 R + >> + /Subtype /Form + /Type /XObject + /Length 112 0 R >> stream 1 0 0 RG @@ -1852,30 +1848,11 @@ ET endstream endobj -146 0 obj +112 0 obj 114 endobj -%% Contents for page 16 -147 0 obj -<< - /Length 148 0 R ->> -stream - -Q -q -0 -0.77273 0.77273 0 0 632.45455 cm -/Fx1 Do -Q -endstream -endobj - -148 0 obj -51 -endobj - -149 0 obj +113 0 obj << /BBox [ 0 @@ -1885,7 +1862,7 @@ endobj ] /Resources << /Font << - /F1 151 0 R + /F1 117 0 R >> /ProcSet [ /PDF @@ -1894,18 +1871,35 @@ endobj >> /Subtype /Form /Type /XObject - /Length 150 0 R + /Length 114 0 R >> stream BT /F1 15 Tf 72 720 Td (Original page 15) Tj ET endstream endobj -150 0 obj +114 0 obj 48 endobj -151 0 obj +115 0 obj +<< + /BaseFont /Helvetica + /Encoding /WinAnsiEncoding + /Name /F1 + /Subtype /Type1 + /Type /Font +>> +endobj + +116 0 obj +[ + /PDF + /Text +] +endobj + +117 0 obj << /BaseFont /Times-Roman /Encoding /WinAnsiEncoding @@ -1915,164 +1909,130 @@ endobj endobj xref -0 152 +0 118 0000000000 65535 f 0000000025 00000 n 0000000079 00000 n 0000000321 00000 n -0000000599 00000 n -0000000891 00000 n -0000001180 00000 n -0000001458 00000 n -0000001749 00000 n -0000002056 00000 n -0000002347 00000 n -0000002639 00000 n -0000002933 00000 n -0000003245 00000 n -0000003543 00000 n -0000003841 00000 n -0000004139 00000 n -0000004454 00000 n -0000004752 00000 n -0000005062 00000 n -0000005121 00000 n -0000005163 00000 n -0000005328 00000 n -0000005372 00000 n -0000005459 00000 n -0000005479 00000 n -0000005598 00000 n -0000005634 00000 n -0000005917 00000 n -0000005960 00000 n -0000006019 00000 n -0000006061 00000 n -0000006235 00000 n -0000006279 00000 n -0000006374 00000 n -0000006394 00000 n -0000006677 00000 n -0000006720 00000 n -0000006779 00000 n -0000006821 00000 n -0000006923 00000 n -0000006966 00000 n -0000007086 00000 n -0000007129 00000 n -0000007216 00000 n -0000007236 00000 n -0000007519 00000 n -0000007562 00000 n -0000007621 00000 n -0000007663 00000 n -0000007828 00000 n -0000007872 00000 n -0000007959 00000 n -0000007979 00000 n -0000008262 00000 n -0000008305 00000 n -0000008364 00000 n -0000008406 00000 n -0000008575 00000 n -0000008619 00000 n -0000008729 00000 n -0000008749 00000 n -0000009032 00000 n -0000009075 00000 n -0000009134 00000 n -0000009176 00000 n -0000009356 00000 n -0000009400 00000 n -0000009504 00000 n -0000009524 00000 n -0000009807 00000 n -0000009850 00000 n -0000009909 00000 n -0000009951 00000 n -0000010120 00000 n -0000010164 00000 n -0000010274 00000 n -0000010294 00000 n -0000010577 00000 n -0000010620 00000 n -0000010679 00000 n -0000010721 00000 n -0000010890 00000 n -0000010934 00000 n -0000011044 00000 n -0000011064 00000 n -0000011347 00000 n -0000011390 00000 n -0000011449 00000 n -0000011491 00000 n -0000011661 00000 n -0000011705 00000 n -0000011798 00000 n -0000011818 00000 n -0000012101 00000 n -0000012145 00000 n -0000012204 00000 n -0000012247 00000 n -0000012430 00000 n -0000012475 00000 n -0000012569 00000 n -0000012590 00000 n -0000012875 00000 n -0000012920 00000 n -0000012981 00000 n -0000013025 00000 n -0000013198 00000 n -0000013244 00000 n -0000013339 00000 n -0000013360 00000 n -0000013646 00000 n -0000013691 00000 n -0000013752 00000 n -0000013796 00000 n -0000013969 00000 n -0000014015 00000 n -0000014110 00000 n -0000014131 00000 n -0000014417 00000 n -0000014462 00000 n -0000014523 00000 n -0000014567 00000 n -0000014740 00000 n -0000014786 00000 n -0000014896 00000 n -0000014917 00000 n -0000015203 00000 n -0000015248 00000 n -0000015309 00000 n -0000015353 00000 n -0000015538 00000 n -0000015584 00000 n -0000015694 00000 n -0000015715 00000 n -0000016001 00000 n -0000016046 00000 n -0000016107 00000 n -0000016151 00000 n -0000016324 00000 n -0000016370 00000 n -0000016480 00000 n -0000016501 00000 n -0000016787 00000 n -0000016832 00000 n -0000016893 00000 n -0000016937 00000 n +0000000528 00000 n +0000000749 00000 n +0000000956 00000 n +0000001163 00000 n +0000001383 00000 n +0000001619 00000 n +0000001839 00000 n +0000002060 00000 n +0000002283 00000 n +0000002523 00000 n +0000002746 00000 n +0000002969 00000 n +0000003192 00000 n +0000003433 00000 n +0000003659 00000 n +0000003897 00000 n +0000004008 00000 n +0000004028 00000 n +0000004349 00000 n +0000004370 00000 n +0000004653 00000 n +0000004696 00000 n +0000004819 00000 n +0000004839 00000 n +0000005221 00000 n +0000005242 00000 n +0000005525 00000 n +0000005568 00000 n +0000005679 00000 n +0000005699 00000 n +0000006020 00000 n +0000006041 00000 n +0000006324 00000 n +0000006367 00000 n +0000006478 00000 n +0000006498 00000 n +0000006819 00000 n +0000006840 00000 n +0000007123 00000 n +0000007166 00000 n +0000007303 00000 n +0000007323 00000 n +0000007703 00000 n +0000007724 00000 n +0000008007 00000 n +0000008050 00000 n +0000008193 00000 n +0000008213 00000 n +0000008608 00000 n +0000008629 00000 n +0000008912 00000 n +0000008955 00000 n +0000009092 00000 n +0000009112 00000 n +0000009492 00000 n +0000009513 00000 n +0000009796 00000 n +0000009839 00000 n +0000009976 00000 n +0000009996 00000 n +0000010376 00000 n +0000010397 00000 n +0000010680 00000 n +0000010723 00000 n +0000010846 00000 n +0000010866 00000 n +0000011250 00000 n +0000011271 00000 n +0000011554 00000 n +0000011598 00000 n +0000011733 00000 n +0000011753 00000 n +0000012156 00000 n +0000012177 00000 n +0000012460 00000 n +0000012504 00000 n +0000012627 00000 n +0000012647 00000 n +0000013032 00000 n +0000013053 00000 n +0000013337 00000 n +0000013381 00000 n +0000013504 00000 n +0000013524 00000 n +0000013909 00000 n +0000013930 00000 n +0000014214 00000 n +0000014258 00000 n +0000014393 00000 n +0000014413 00000 n +0000014795 00000 n +0000014816 00000 n +0000015100 00000 n +0000015144 00000 n +0000015283 00000 n +0000015303 00000 n +0000015704 00000 n +0000015726 00000 n +0000016012 00000 n +0000016057 00000 n +0000016194 00000 n +0000016215 00000 n +0000016599 00000 n +0000016621 00000 n +0000016907 00000 n +0000016952 00000 n +0000017089 00000 n 0000017110 00000 n -0000017156 00000 n -0000017266 00000 n -0000017287 00000 n -0000017573 00000 n -0000017594 00000 n +0000017494 00000 n +0000017516 00000 n +0000017802 00000 n +0000017823 00000 n +0000017943 00000 n +0000017980 00000 n trailer << /Root 1 0 R - /Size 152 + /Size 118 /ID [<4866f3ccc81fb28dc4a27f0f976ce937><31415926535897932384626433832795>] >> startxref -17704 +18090 %%EOF -- cgit v1.2.3-54-g00ecf