diff -Nru ruby-asciidoctor-pdf-1.6.1/CHANGELOG.adoc ruby-asciidoctor-pdf-1.6.2/CHANGELOG.adoc --- ruby-asciidoctor-pdf-1.6.1/CHANGELOG.adoc 2021-09-04 22:01:20.000000000 +0000 +++ ruby-asciidoctor-pdf-1.6.2/CHANGELOG.adoc 2021-12-31 12:03:00.000000000 +0000 @@ -5,6 +5,17 @@ This document provides a high-level view of the changes to the {project-name} by release. For a detailed view of what has changed, refer to the {uri-repo}/commits/v1.6.x[commit history] on GitHub. +== 1.6.2 (2021-12-31) - @mojavelinux + +Enhancements:: + +* show URL of link for any media type when show-link-uri is set (#951) +* do not show URL of link when media type is screen or prepress when show-link-uri is unset (#951) + +Bug Fixes:: + +* update patches for `PDF::Core.real` and `PDF::Core.real_params` to prevent scientific notation ending up in PDF (#1983) (@rillbert) + == 1.6.1 (2021-09-04) - @mojavelinux Enhancements:: diff -Nru ruby-asciidoctor-pdf-1.6.1/debian/changelog ruby-asciidoctor-pdf-1.6.2/debian/changelog --- ruby-asciidoctor-pdf-1.6.1/debian/changelog 2021-10-11 19:15:53.000000000 +0000 +++ ruby-asciidoctor-pdf-1.6.2/debian/changelog 2022-01-18 01:08:57.000000000 +0000 @@ -1,3 +1,9 @@ +ruby-asciidoctor-pdf (1.6.2-1) unstable; urgency=medium + + * New upstream version. + + -- Keith Packard Mon, 17 Jan 2022 17:08:57 -0800 + ruby-asciidoctor-pdf (1.6.1-1) unstable; urgency=medium * New upstream version. diff -Nru ruby-asciidoctor-pdf-1.6.1/debian/copyright ruby-asciidoctor-pdf-1.6.2/debian/copyright --- ruby-asciidoctor-pdf-1.6.1/debian/copyright 2021-10-11 19:15:53.000000000 +0000 +++ ruby-asciidoctor-pdf-1.6.2/debian/copyright 2022-01-18 01:08:57.000000000 +0000 @@ -16,7 +16,7 @@ License: MIT Files: debian/* -Copyright: 2018 Keith Packard +Copyright: 2018-2022 Keith Packard License: MIT Comment: the Debian packaging is licensed under the same terms as the original package. diff -Nru ruby-asciidoctor-pdf-1.6.1/docs/theming-guide.adoc ruby-asciidoctor-pdf-1.6.2/docs/theming-guide.adoc --- ruby-asciidoctor-pdf-1.6.1/docs/theming-guide.adoc 2021-09-04 22:01:20.000000000 +0000 +++ ruby-asciidoctor-pdf-1.6.2/docs/theming-guide.adoc 2021-12-31 12:03:00.000000000 +0000 @@ -634,7 +634,7 @@ [source,yaml] ---- title-page: - logo-image: image:logo.png[width=250,align=center] + logo-image: image:logo.png[pdfwidth=2.5in,align=center] ---- === Quoted String @@ -752,9 +752,9 @@ Cannot be styled as italic, bold or bold_italic. Used as the fallback font in the `default-with-fallback-font` theme. -TIP: The default themes in 1.5.x do not include the `GEM_FONTS_DIR` prefix in the path of the bundled font files. -Therefore, if you want to specify the location of custom fonts using the `pdf-fontsdir` attribute, yet still be able to use the bundled fonts, you need to refer to the bundled fonts using the `GEM_FONTS_DIR` token. -To do so, you can either a) redeclare the bundle fonts in your theme and prefix the path with the segment `GEM_FONTS_DIR` (e.g., `GEM_FONTS_DIR/mplus1p-regular-fallback.ttf`, or b) include `GEM_FONT_DIR` in the value of the `pdf-fontsdir` attribute separated by the location of your custom fonts using a semi-colon (e.g., `"path/to/your/fonts;GEM_FONTS_DIR"`). +TIP: The default themes in Asciidoctor PDF < 2 do not include the `GEM_FONTS_DIR` prefix in the path of the bundled font files. +Therefore, if you want to specify the location of custom fonts using the `pdf-fontsdir` attribute, yet still be able to use the bundled fonts, you need to qualify the path of the bundled fonts using the `GEM_FONTS_DIR` token. +To do so, you can either a) redeclare the bundle fonts in your theme and prefix the path with the segment `GEM_FONTS_DIR` (e.g., `GEM_FONTS_DIR/mplus1p-regular-fallback.ttf`, or b) include `GEM_FONTS_DIR` in the value of the `pdf-fontsdir` attribute separated by the location of your custom fonts using a semi-colon (e.g., `"path/to/your/fonts;GEM_FONTS_DIR"`). === Custom Fonts @@ -4835,17 +4835,19 @@ image-vertical-align: 2 {conum-guard-yaml} <1> recto: center: - content: image:footer-logo.png[width=80] + content: image:footer-logo.png[pdfwidth=15pt] verso: center: content: $header-recto-center-content ---- <1> You can use the `image-vertical-align` key to slightly nudge the image up or down. -CAUTION: By default, the image must fit in the allotted space for the running header or footer. -Otherwise, you will run into layout issues. -Adjust the width attribute accordingly using the `pdfwidth` attribute. -Alternatively, you can set the `fit` attribute to `scale-down` (e.g., `fit=scale-down`) to reduce the image size to fit in the available space or `contain` (i.e., `fit=contain`) to scale the image (up or down) to fit the available space. +CAUTION: The image must fit in the allotted space for the running header or footer. +Otherwise, you'll run into layout issues or the image may not display. +You can adjust the width of the image to a fixed value using the `pdfwidth` attribute. +Alternatively, you can use the `fit` attribute to set the size of the image dynamically based on the available space. +Set the `fit` attribute to `scale-down` (e.g., `fit=scale-down`) to reduce the image size to fit in the available space or `contain` (i.e., `fit=contain`) to scale the image (up or down) to fit the available space. +You should not rely on the `width` attribute to set the image width when converting to PDF. == Applying Your Theme diff -Nru ruby-asciidoctor-pdf-1.6.1/lib/asciidoctor/pdf/converter.rb ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/converter.rb --- ruby-asciidoctor-pdf-1.6.1/lib/asciidoctor/pdf/converter.rb 2021-09-04 22:01:20.000000000 +0000 +++ ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/converter.rb 2021-12-31 12:03:00.000000000 +0000 @@ -2357,7 +2357,7 @@ # QUESTION should we insert breakable chars into URI when building fragment instead? %(#{breakable_uri text}) # NOTE @media may not be initialized if method is called before convert phase - elsif @media != 'screen' || (doc.attr? 'show-link-uri') + elsif (doc.attr? 'show-link-uri') || !(@media == 'screen' || (doc.attribute_locked? 'show-link-uri') || ((doc.instance_variable_get :@attributes_modified).include? 'show-link-uri')) # QUESTION should we insert breakable chars into URI when building fragment instead? # TODO: allow style of printed link to be controlled by theme %(#{text} [#{breakable_uri bare_target}]) diff -Nru ruby-asciidoctor-pdf-1.6.1/lib/asciidoctor/pdf/ext/pdf-core.rb ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/pdf-core.rb --- ruby-asciidoctor-pdf-1.6.1/lib/asciidoctor/pdf/ext/pdf-core.rb 2021-09-04 22:01:20.000000000 +0000 +++ ruby-asciidoctor-pdf-1.6.2/lib/asciidoctor/pdf/ext/pdf-core.rb 2021-12-31 12:03:00.000000000 +0000 @@ -3,13 +3,15 @@ module PDF::Core class << self alias _initial_real real - def real num - num.to_f.round 4 + + # NOTE Makes v1.6.x work with the modified precision settings (0.5f) in Prawn 2.4 while preserving existing behavior + def real num, precision = 4 + ("%.#{precision}f" % num).sub(/((?; Sarah White -v1.6.1, 2021-09-04 +v1.6.2, 2021-12-31 // Settings: :experimental: :idprefix: @@ -24,7 +24,7 @@ :project-handle: asciidoctor-pdf // Variables: :release-line: 1.6.x -:release-version: 1.6.1 +:release-version: 1.6.2 // URIs: :url-asciidoctor: http://asciidoctor.org :url-gem: http://rubygems.org/gems/asciidoctor-pdf diff -Nru ruby-asciidoctor-pdf-1.6.1/spec/fixtures/green-bar-width-diff.svg ruby-asciidoctor-pdf-1.6.2/spec/fixtures/green-bar-width-diff.svg --- ruby-asciidoctor-pdf-1.6.1/spec/fixtures/green-bar-width-diff.svg 1970-01-01 00:00:00.000000000 +0000 +++ ruby-asciidoctor-pdf-1.6.2/spec/fixtures/green-bar-width-diff.svg 2021-12-31 12:03:00.000000000 +0000 @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -Nru ruby-asciidoctor-pdf-1.6.1/spec/image_spec.rb ruby-asciidoctor-pdf-1.6.2/spec/image_spec.rb --- ruby-asciidoctor-pdf-1.6.1/spec/image_spec.rb 2021-09-04 22:01:20.000000000 +0000 +++ ruby-asciidoctor-pdf-1.6.2/spec/image_spec.rb 2021-12-31 12:03:00.000000000 +0000 @@ -244,6 +244,12 @@ (expect to_file).to visually_match 'image-svg-scale-to-fit-bounds.pdf' end + it 'should output fixed precision numbers even when set width differs to viewBox with small amount', visual: true do + to_file = to_pdf_file 'image::green-bar-width-diff.svg[]', 'image-svg-fixed-precision.pdf' + + (expect to_file).to visually_match 'image-svg-fixed-precision.pdf' + end + it 'should display text inside link' do pdf = to_pdf <<~'EOS', analyze: true image::svg-with-link.svg[] diff -Nru ruby-asciidoctor-pdf-1.6.1/spec/link_spec.rb ruby-asciidoctor-pdf-1.6.2/spec/link_spec.rb --- ruby-asciidoctor-pdf-1.6.1/spec/link_spec.rb 2021-09-04 22:01:20.000000000 +0000 +++ ruby-asciidoctor-pdf-1.6.2/spec/link_spec.rb 2021-12-31 12:03:00.000000000 +0000 @@ -82,7 +82,7 @@ (expect lines[1]).to eql 'https://goo.gl/search/asciidoctor' end - it 'should reveal URL of link when media=print or media=prepress' do + it 'should reveal URL of link by default when media=print or media=prepress' do %w(print prepress).each do |media| pdf = to_pdf <<~'EOS', attribute_overrides: { 'media' => media }, analyze: true https://asciidoctor.org[Asciidoctor] is a text processor. @@ -92,6 +92,38 @@ end end + it 'should reveal URL of link when show-link-uri is set' do + pdf = to_pdf <<~'EOS', analyze: true + :show-link-uri: + + https://asciidoctor.org[Asciidoctor] is a text processor. + EOS + + (expect pdf.lines).to eql ['Asciidoctor [https://asciidoctor.org] is a text processor.'] + end + + it 'should not reveal URL of link when show-link-uri is unset in document even media is print or prepress' do + %w(print prepress).each do |media| + pdf = to_pdf <<~'EOS', attribute_overrides: { 'media' => media }, analyze: true + :!show-link-uri: + + https://asciidoctor.org[Asciidoctor] is a text processor. + EOS + + (expect pdf.lines).to eql ['Asciidoctor is a text processor.'] + end + end + + it 'should not reveal URL of link when show-link-uri is unset from API even media is print or prepress' do + %w(print prepress).each do |media| + pdf = to_pdf <<~'EOS', attribute_overrides: { 'media' => media, 'show-link-uri' => nil }, analyze: true + https://asciidoctor.org[Asciidoctor] is a text processor. + EOS + + (expect pdf.lines).to eql ['Asciidoctor is a text processor.'] + end + end + it 'should split revealed URL on breakable characters when media=print, media=prepress, or show-link-uri is set' do inputs = [ 'the URL on this line will get split on the ? char https://github.com/asciidoctor/asciidoctor/issues?|q=milestone%3Av2.0.x[link]', diff -Nru ruby-asciidoctor-pdf-1.6.1/spec/reference/image-svg-fixed-precision.pdf ruby-asciidoctor-pdf-1.6.2/spec/reference/image-svg-fixed-precision.pdf --- ruby-asciidoctor-pdf-1.6.1/spec/reference/image-svg-fixed-precision.pdf 1970-01-01 00:00:00.000000000 +0000 +++ ruby-asciidoctor-pdf-1.6.2/spec/reference/image-svg-fixed-precision.pdf 2021-12-31 12:03:00.000000000 +0000 @@ -0,0 +1,930 @@ +%PDF-1.4 +% +1 0 obj +<< /Title (Untitled) +/Creator (Asciidoctor PDF 1.6.2.dev, based on Prawn 2.4.0) +/Producer (Asciidoctor PDF 1.6.2.dev, based on Prawn 2.4.0) +/ModDate (D:20211114131949+01'00') +/CreationDate (D:20211114131949+01'00') +>> +endobj +2 0 obj +<< /Type /Catalog +/Pages 3 0 R +/Names 9 0 R +/Outlines 12 0 R +/PageLabels 14 0 R +/PageMode /UseOutlines +/OpenAction [7 0 R /FitH 841.89] +/ViewerPreferences << /DisplayDocTitle true +>> +>> +endobj +3 0 obj +<< /Type /Pages +/Count 1 +/Kids [7 0 R] +>> +endobj +4 0 obj +<< /Length 2 +>> +stream +q + +endstream +endobj +5 0 obj +<< /Type /Page +/Parent 3 0 R +/MediaBox [0 0 595.28 841.89] +/CropBox [0 0 595.28 841.89] +/BleedBox [0 0 595.28 841.89] +/TrimBox [0 0 595.28 841.89] +/ArtBox [0 0 595.28 841.89] +/Contents 4 0 R +/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +>> +>> +endobj +6 0 obj +<< /Length 25542 +>> +stream +q +/DeviceRGB cs +0.0 0.0 0.0 scn +/DeviceRGB CS +0.0 0.0 0.0 SCN +q +48.24 790.89 m +123.4372 790.89 l +123.4372 805.89 l +48.24 805.89 l +h +W n +0.0 0.0 0.0 scn +0.75 0.0 0.0 0.75 12.06002 201.4728 cm +1.0 0.0 0.0 1.0 0.00003 0.0 cm +q +Q +q +q +q +1.0 1.0 1.0 scn +51.24 805.89 m +145.24 805.89 l +146.8969 805.89 148.24 804.5469 148.24 802.89 c +148.24 788.89 l +148.24 787.2331 146.8969 785.89 145.24 785.89 c +51.24 785.89 l +49.5831 785.89 48.24 787.2331 48.24 788.89 c +48.24 802.89 l +48.24 804.5469 49.5831 805.89 51.24 805.89 c +h +Q +W n +q +0.3333 0.3333 0.3333 scn +2 j +48.24 805.89 m +85.24 805.89 l +85.24 785.89 l +48.24 785.89 l +h +f +Q +q +0.2667 0.8 0.0667 scn +2 j +85.24 805.89 m +148.24 805.89 l +148.24 785.89 l +85.24 785.89 l +h +f +Q +Q +Q +q +1.0 1.0 1.0 scn +q +q +0.1 0.0 0.0 0.1 43.416 725.301 cm +q +/Tr1 gs +0.0039 0.0039 0.0039 scn +q +2 j +128.228 733.126 m +128.228 716.046 l +148.584 716.046 l +148.584 708.3653 l +128.228 708.3653 l +128.228 675.7093 l +128.228 670.8037 128.8904 667.6527 130.2153 666.2562 c +131.576 664.8597 134.3152 664.1615 138.4331 664.1615 c +148.5841 664.1615 l +148.5841 655.89 l +138.4331 655.89 l +130.8064 655.89 125.5428 657.3044 122.6421 660.1332 c +119.7417 662.9978 118.2915 668.1898 118.2915 675.7092 c +118.2915 708.3652 l +111.0405 708.3652 l +111.0405 716.0459 l +118.2915 716.0459 l +118.2915 733.1259 l +h +f +Q +q +2 j +213.4 688.44 m +213.4 683.606 l +167.961 683.606 l +168.3907 676.8027 170.4317 671.6107 174.084 668.03 c +177.7721 664.4851 182.8925 662.7126 189.445 662.7126 c +193.2406 662.7126 196.9109 663.1781 200.456 664.1091 c +204.0367 665.0401 207.5817 666.4366 211.091 668.2986 c +211.091 658.9529 l +207.5461 657.449 203.9117 656.3031 200.188 655.5154 c +196.4643 654.7277 192.6866 654.3338 188.855 654.3338 c +179.2583 654.3338 171.6493 657.1268 166.028 662.7127 c +160.4421 668.2986 157.6491 675.854 157.6491 685.3787 c +157.6491 695.226 160.2988 703.032 165.5983 708.7967 c +170.9336 714.5975 178.1129 717.4979 187.1363 717.4979 c +195.229 717.4979 201.6206 714.884 206.3113 709.6561 c +211.0378 704.464 213.4011 697.392 213.4011 688.4401 c +h +203.5172 691.3404 m +203.4456 696.7473 201.9238 701.062 198.9518 704.2844 c +196.0156 707.5071 192.1126 709.1184 187.2428 709.1184 c +181.7285 709.1184 177.3061 707.5608 173.9758 704.4456 c +170.6815 701.3304 168.7837 696.9441 168.2824 691.2866 c +h +f +Q +q +2 j +268.28 714.274 m +268.28 704.9283 l +265.4871 706.3606 262.5867 707.4348 259.5788 708.151 c +256.5709 708.8672 253.4557 709.2253 250.2331 709.2252 c +245.3275 709.2252 241.6395 708.4732 239.1691 706.9693 c +236.7342 705.4654 235.5168 703.2095 235.5168 700.2017 c +235.5168 697.91 236.3941 696.1018 238.1486 694.7769 c +239.9031 693.4878 243.4301 692.2525 248.7296 691.0708 c +252.1134 690.3188 l +259.1314 688.8149 264.1087 686.6844 267.0454 683.9272 c +270.0174 681.2059 271.5034 677.3926 271.5034 672.4872 c +271.5034 666.9013 269.2833 662.479 264.8432 659.2202 c +260.4389 655.9618 254.3696 654.3326 246.6352 654.3326 c +243.4125 654.3326 240.0465 654.6548 236.5372 655.2994 c +233.0639 655.9081 229.3935 656.8391 225.5262 658.0924 c +225.5262 668.2974 l +229.1785 666.3996 232.7772 664.9672 236.3222 664.0004 c +239.8671 663.0694 243.3761 662.604 246.8492 662.604 c +251.5041 662.604 255.0848 663.3917 257.5912 664.9672 c +260.0977 666.5786 261.351 668.8344 261.351 671.7348 c +261.351 674.4204 260.4379 676.4793 258.6117 677.9116 c +256.8214 679.3439 252.8647 680.7225 246.7417 682.0474 c +243.3042 682.8531 l +237.1811 684.1422 232.7588 686.1116 230.0372 688.7613 c +227.3159 691.4468 225.9552 695.1172 225.9552 699.7723 c +225.9552 705.4298 227.9604 709.7982 231.9708 712.8773 c +235.9812 715.9567 241.6745 717.4964 249.0508 717.4964 c +252.7031 717.4964 256.1405 717.2279 259.3628 716.6908 c +262.5855 716.1536 265.5575 715.348 268.2788 714.2738 c +h +f +Q +q +2 j +297.37 733.126 m +297.37 716.046 l +317.726 716.046 l +317.726 708.3653 l +297.37 708.3653 l +297.37 675.7093 l +297.37 670.8037 298.0324 667.6527 299.3573 666.2562 c +300.718 664.8597 303.4572 664.1615 307.5751 664.1615 c +317.7261 664.1615 l +317.7261 655.89 l +307.5751 655.89 l +299.9484 655.89 294.6848 657.3044 291.7841 660.1332 c +288.8837 662.9978 287.4335 668.1898 287.4335 675.7092 c +287.4335 708.3652 l +280.1825 708.3652 l +280.1825 716.0459 l +287.4335 716.0459 l +287.4335 733.1259 l +h +f +Q +q +2 j +369.44 714.274 m +369.44 704.9283 l +366.6471 706.3606 363.7467 707.4348 360.7388 708.151 c +357.7309 708.8672 354.6157 709.2253 351.3931 709.2252 c +346.4875 709.2252 342.7995 708.4732 340.3291 706.9693 c +337.8942 705.4654 336.6768 703.2095 336.6768 700.2017 c +336.6768 697.91 337.5541 696.1018 339.3086 694.7769 c +341.0631 693.4878 344.5901 692.2525 349.8896 691.0708 c +353.2734 690.3188 l +360.2914 688.8149 365.2687 686.6844 368.2054 683.9272 c +371.1774 681.2059 372.6634 677.3926 372.6634 672.4872 c +372.6634 666.9013 370.4433 662.479 366.0032 659.2202 c +361.5989 655.9618 355.5296 654.3326 347.7952 654.3326 c +344.5725 654.3326 341.2065 654.6548 337.6972 655.2994 c +334.2239 655.9081 330.5535 656.8391 326.6862 658.0924 c +326.6862 668.2974 l +330.3385 666.3996 333.9372 664.9672 337.4822 664.0004 c +341.0271 663.0694 344.5361 662.604 348.0092 662.604 c +352.6641 662.604 356.2448 663.3917 358.7512 664.9672 c +361.2577 666.5786 362.511 668.8344 362.511 671.7348 c +362.511 674.4204 361.5979 676.4793 359.7717 677.9116 c +357.9813 679.3439 354.0246 680.7225 347.9017 682.0474 c +344.4642 682.8531 l +338.3411 684.1422 333.9188 686.1116 331.1972 688.7613 c +328.4759 691.4468 327.1152 695.1172 327.1152 699.7723 c +327.1152 705.4298 329.1204 709.7982 333.1308 712.8773 c +337.1412 715.9567 342.8345 717.4964 350.2108 717.4964 c +353.8631 717.4964 357.3005 717.2279 360.5228 716.6908 c +363.7455 716.1536 366.7175 715.348 369.4388 714.2738 c +h +f +Q +Q +Q +Q +q +q +0.1 0.0 0.0 0.1 43.416 725.301 cm +q +2 j +128.228 743.126 m +128.228 726.046 l +148.584 726.046 l +148.584 718.3653 l +128.228 718.3653 l +128.228 685.7093 l +128.228 680.8037 128.8904 677.6527 130.2153 676.2562 c +131.576 674.8597 134.3152 674.1615 138.4331 674.1615 c +148.5841 674.1615 l +148.5841 665.89 l +138.4331 665.89 l +130.8064 665.89 125.5428 667.3044 122.6421 670.1332 c +119.7417 672.9978 118.2915 678.1898 118.2915 685.7092 c +118.2915 718.3652 l +111.0405 718.3652 l +111.0405 726.0459 l +118.2915 726.0459 l +118.2915 743.1259 l +h +f +Q +q +2 j +213.4 698.44 m +213.4 693.606 l +167.961 693.606 l +168.3907 686.8027 170.4317 681.6107 174.084 678.03 c +177.7721 674.4851 182.8925 672.7126 189.445 672.7126 c +193.2406 672.7126 196.9109 673.1781 200.456 674.1091 c +204.0367 675.0401 207.5817 676.4366 211.091 678.2986 c +211.091 668.9529 l +207.5461 667.449 203.9117 666.3031 200.188 665.5154 c +196.4643 664.7277 192.6866 664.3338 188.855 664.3338 c +179.2583 664.3338 171.6493 667.1268 166.028 672.7127 c +160.4421 678.2986 157.6491 685.854 157.6491 695.3787 c +157.6491 705.226 160.2988 713.032 165.5983 718.7967 c +170.9336 724.5975 178.1129 727.4979 187.1363 727.4979 c +195.229 727.4979 201.6206 724.884 206.3113 719.6561 c +211.0378 714.464 213.4011 707.392 213.4011 698.4401 c +h +203.5172 701.3404 m +203.4456 706.7473 201.9238 711.062 198.9518 714.2844 c +196.0156 717.5071 192.1126 719.1184 187.2428 719.1184 c +181.7285 719.1184 177.3061 717.5608 173.9758 714.4455 c +170.6815 711.3302 168.7837 706.9439 168.2824 701.2865 c +h +f +Q +q +2 j +268.28 724.274 m +268.28 714.9283 l +265.4871 716.3606 262.5867 717.4348 259.5788 718.151 c +256.5709 718.8672 253.4557 719.2253 250.2331 719.2252 c +245.3275 719.2252 241.6395 718.4732 239.1691 716.9693 c +236.7342 715.4654 235.5168 713.2095 235.5168 710.2017 c +235.5168 707.91 236.3941 706.1018 238.1486 704.7769 c +239.9031 703.4878 243.4301 702.2525 248.7296 701.0708 c +252.1134 700.3188 l +259.1314 698.8149 264.1087 696.6844 267.0454 693.9272 c +270.0174 691.2059 271.5034 687.3926 271.5034 682.4872 c +271.5034 676.9013 269.2833 672.479 264.8432 669.2202 c +260.4389 665.9618 254.3696 664.3326 246.6352 664.3326 c +243.4125 664.3326 240.0465 664.6548 236.5372 665.2994 c +233.0639 665.9081 229.3935 666.8391 225.5262 668.0924 c +225.5262 678.2974 l +229.1785 676.3996 232.7772 674.9672 236.3222 674.0004 c +239.8671 673.0694 243.3761 672.604 246.8492 672.604 c +251.5041 672.604 255.0848 673.3917 257.5912 674.9672 c +260.0977 676.5786 261.351 678.8344 261.351 681.7348 c +261.351 684.4204 260.4379 686.4793 258.6117 687.9116 c +256.8214 689.3439 252.8647 690.7225 246.7417 692.0474 c +243.3042 692.8531 l +237.1811 694.1422 232.7588 696.1116 230.0372 698.7613 c +227.3159 701.4468 225.9552 705.1172 225.9552 709.7723 c +225.9552 715.4298 227.9604 719.7982 231.9708 722.8773 c +235.9812 725.9567 241.6745 727.4964 249.0508 727.4964 c +252.7031 727.4964 256.1405 727.2279 259.3628 726.6908 c +262.5855 726.1536 265.5575 725.348 268.2788 724.2738 c +h +f +Q +q +2 j +297.37 743.126 m +297.37 726.046 l +317.726 726.046 l +317.726 718.3653 l +297.37 718.3653 l +297.37 685.7093 l +297.37 680.8037 298.0324 677.6527 299.3573 676.2562 c +300.718 674.8597 303.4572 674.1615 307.5751 674.1615 c +317.7261 674.1615 l +317.7261 665.89 l +307.5751 665.89 l +299.9484 665.89 294.6848 667.3044 291.7841 670.1332 c +288.8837 672.9978 287.4335 678.1898 287.4335 685.7092 c +287.4335 718.3652 l +280.1825 718.3652 l +280.1825 726.0459 l +287.4335 726.0459 l +287.4335 743.1259 l +h +f +Q +q +2 j +369.44 724.274 m +369.44 714.9283 l +366.6471 716.3606 363.7467 717.4348 360.7388 718.151 c +357.7309 718.8672 354.6157 719.2253 351.3931 719.2252 c +346.4875 719.2252 342.7995 718.4732 340.3291 716.9693 c +337.8942 715.4654 336.6768 713.2095 336.6768 710.2017 c +336.6768 707.91 337.5541 706.1018 339.3086 704.7769 c +341.0631 703.4878 344.5901 702.2525 349.8896 701.0708 c +353.2734 700.3188 l +360.2914 698.8149 365.2687 696.6844 368.2054 693.9272 c +371.1774 691.2059 372.6634 687.3926 372.6634 682.4872 c +372.6634 676.9013 370.4433 672.479 366.0032 669.2202 c +361.5989 665.9618 355.5296 664.3326 347.7952 664.3326 c +344.5725 664.3326 341.2065 664.6548 337.6972 665.2994 c +334.2239 665.9081 330.5535 666.8391 326.6862 668.0924 c +326.6862 678.2974 l +330.3385 676.3996 333.9372 674.9672 337.4822 674.0004 c +341.0271 673.0694 344.5361 672.604 348.0092 672.604 c +352.6641 672.604 356.2448 673.3917 358.7512 674.9672 c +361.2577 676.5786 362.511 678.8344 362.511 681.7348 c +362.511 684.4204 361.5979 686.4793 359.7717 687.9116 c +357.9813 689.3439 354.0246 690.7225 347.9017 692.0474 c +344.4642 692.8531 l +338.3411 694.1422 333.9188 696.1116 331.1972 698.7613 c +328.4759 701.4468 327.1152 705.1172 327.1152 709.7723 c +327.1152 715.4298 329.1204 719.7982 333.1308 722.8773 c +337.1412 725.9567 342.8345 727.4964 350.2108 727.4964 c +353.8631 727.4964 357.3005 727.2279 360.5228 726.6908 c +363.7455 726.1536 366.7175 725.348 369.4388 724.2738 c +h +f +Q +Q +Q +q +q +0.1 0.0 0.0 0.1 43.416 725.301 cm +q +/Tr1 gs +0.0039 0.0039 0.0039 scn +q +2 j +508.54 686.67 m +508.54 693.8313 507.054 699.3813 504.082 703.32 c +501.1458 707.2588 497.0101 709.2282 491.675 709.2282 c +486.3755 709.2282 482.2399 707.2588 479.268 703.32 c +476.3318 699.3812 474.8637 693.8312 474.8637 686.67 c +474.8637 679.5447 476.3318 674.0123 479.268 670.073 c +482.24 666.1342 486.3757 664.1648 491.675 664.1648 c +497.0103 664.1648 501.1459 666.1342 504.082 670.073 c +507.054 674.0118 508.54 679.5441 508.54 686.67 c +h +518.4228 663.359 m +518.4228 653.1183 516.149 645.5093 511.6015 640.532 c +507.054 635.519 500.0893 633.0125 490.7075 633.0125 c +487.2342 633.0125 483.9578 633.2811 480.8784 633.8182 c +477.799 634.3195 474.8091 635.1072 471.9087 636.1815 c +471.9087 645.7957 l +474.8091 644.2201 477.6737 643.0564 480.5025 642.3045 c +483.3313 641.5525 486.2138 641.1766 489.15 641.1766 c +495.6311 641.1766 500.4831 642.8774 503.706 646.2791 c +506.9287 649.6449 508.54 654.7476 508.54 661.5871 c +508.54 666.4748 l +506.499 662.9298 503.8851 660.2801 500.6982 658.5256 c +497.5113 656.771 493.698 655.8938 489.2582 655.8938 c +481.8822 655.8938 475.9382 658.7046 471.4262 664.3264 c +466.9145 669.9481 464.6586 677.3961 464.6586 686.6704 c +464.6586 695.9804 466.9145 703.446 471.4262 709.0674 c +475.9379 714.6891 481.8819 717.5 489.2582 717.5 c +493.6983 717.5 497.5117 716.6227 500.6982 714.8682 c +503.8851 713.1136 506.499 710.4639 508.54 706.919 c +508.54 716.0499 l +518.4228 716.0499 l +h +f +Q +q +2 j +572.94 706.808 m +571.83 707.4525 570.6125 707.918 569.2876 708.2045 c +567.9985 708.5268 566.5662 708.6879 564.9907 708.6879 c +559.4048 708.6879 555.1078 706.8617 552.0997 703.2094 c +549.1277 699.5929 547.6417 694.3829 547.6417 687.5794 c +547.6417 655.8904 l +537.7052 655.8904 l +537.7052 716.0464 l +547.6417 716.0464 l +547.6417 706.7007 l +549.7185 710.353 552.422 713.0565 555.7521 714.8111 c +559.0822 716.6014 563.1285 717.4966 567.8911 717.4966 c +568.5714 717.4966 569.3234 717.4429 570.147 717.3355 c +570.9706 717.2639 571.8837 717.1385 572.8863 716.9595 c +h +f +Q +q +2 j +631.8 688.44 m +631.8 683.606 l +586.361 683.606 l +586.7907 676.8027 588.8317 671.6107 592.484 668.03 c +596.1721 664.4851 601.2925 662.7126 607.845 662.7126 c +611.6406 662.7126 615.3109 663.1781 618.856 664.1091 c +622.4367 665.0401 625.9817 666.4366 629.491 668.2986 c +629.491 658.9529 l +625.9461 657.449 622.3117 656.3031 618.588 655.5154 c +614.8643 654.7277 611.0866 654.3338 607.255 654.3338 c +597.6583 654.3338 590.0493 657.1268 584.428 662.7127 c +578.8421 668.2986 576.0491 675.854 576.0491 685.3787 c +576.0491 695.226 578.6988 703.032 583.9983 708.7967 c +589.3336 714.5975 596.5129 717.4979 605.5363 717.4979 c +613.629 717.4979 620.0206 714.884 624.7113 709.6561 c +629.4378 704.464 631.8011 697.392 631.8011 688.4401 c +h +621.9172 691.3404 m +621.8456 696.7473 620.3238 701.062 617.3518 704.2844 c +614.4156 707.5071 610.5126 709.1184 605.6428 709.1184 c +600.1285 709.1184 595.7061 707.5608 592.3758 704.4456 c +589.0815 701.3304 587.1837 696.9441 586.6824 691.2866 c +h +f +Q +q +2 j +698.78 688.44 m +698.78 683.606 l +653.341 683.606 l +653.7707 676.8027 655.8117 671.6107 659.464 668.03 c +663.1521 664.4851 668.2725 662.7126 674.825 662.7126 c +678.6206 662.7126 682.2909 663.1781 685.836 664.1091 c +689.4167 665.0401 692.9617 666.4366 696.471 668.2986 c +696.471 658.9529 l +692.9261 657.449 689.2917 656.3031 685.568 655.5154 c +681.8443 654.7277 678.0666 654.3338 674.235 654.3338 c +664.6383 654.3338 657.0293 657.1268 651.408 662.7127 c +645.8221 668.2986 643.0291 675.854 643.0291 685.3787 c +643.0291 695.226 645.6788 703.032 650.9783 708.7967 c +656.3136 714.5975 663.4929 717.4979 672.5163 717.4979 c +680.609 717.4979 687.0006 714.884 691.6913 709.6561 c +696.4178 704.464 698.7811 697.392 698.7811 688.4401 c +h +688.8972 691.3404 m +688.8256 696.7473 687.3038 701.062 684.3318 704.2844 c +681.3956 707.5071 677.4926 709.1184 672.6228 709.1184 c +667.1085 709.1184 662.6861 707.5608 659.3558 704.4456 c +656.0615 701.3304 654.1637 696.9441 653.6624 691.2866 c +h +f +Q +q +2 j +764.3 692.2 m +764.3 655.891 l +754.4172 655.891 l +754.4172 691.877 l +754.4172 697.5703 753.3072 701.8313 751.0871 704.66 c +748.867 707.4888 745.537 708.9032 741.0969 708.9032 c +735.7616 708.9032 731.5543 707.2024 728.4749 703.8007 c +725.3955 700.399 723.8558 695.762 723.8558 689.8897 c +723.8558 655.8907 l +713.9193 655.8907 l +713.9193 716.0467 l +723.8558 716.0467 l +723.8558 706.701 l +726.2191 710.3175 728.9941 713.021 732.181 714.8114 c +735.4037 716.6017 739.1097 717.4969 743.299 717.4969 c +750.2097 717.4969 755.4377 715.3485 758.983 711.0516 c +762.5279 706.7905 764.3004 700.5062 764.3004 692.1986 c +h +f +Q +q +2 j +860.92 685.91 m +860.92 693.1787 859.4161 698.872 856.4083 702.99 c +853.4363 707.1437 849.3363 709.2205 844.1083 709.2205 c +838.8804 709.2205 834.7624 707.1437 831.7543 702.99 c +828.7823 698.8721 827.2963 693.1788 827.2963 685.91 c +827.2963 678.6412 828.7823 672.9299 831.7543 668.776 c +834.7621 664.6581 838.8801 662.5992 844.1083 662.5992 c +849.3362 662.5992 853.4362 664.6581 856.4083 668.776 c +859.4161 672.9297 860.92 678.641 860.92 685.91 c +h +827.297 706.911 m +829.3738 710.4917 831.9877 713.1415 835.1388 714.8602 c +838.3257 716.6147 842.1213 717.492 846.5258 717.492 c +853.8305 717.492 859.7565 714.5916 864.3038 708.7908 c +868.8871 702.99 871.1788 695.363 871.1788 685.9098 c +871.1788 676.4565 868.8871 668.8295 864.3038 663.0288 c +859.7563 657.228 853.8303 654.3276 846.5258 654.3276 c +842.1215 654.3276 838.3259 655.187 835.1388 656.9057 c +831.9877 658.6602 829.3738 661.3279 827.297 664.9086 c +827.297 655.8852 l +817.3605 655.8852 l +817.3605 739.4592 l +827.297 739.4592 l +h +f +Q +q +2 j +914.2 686.13 m +906.2147 686.13 900.6823 685.2169 897.603 683.3907 c +894.5235 681.5645 892.9838 678.4493 892.9838 674.045 c +892.9838 670.5359 894.1296 667.7429 896.4213 665.6661 c +898.7488 663.6251 901.8998 662.6046 905.8744 662.6046 c +911.3529 662.6046 915.7393 664.5382 919.0334 668.4054 c +922.3635 672.3084 924.0285 677.4824 924.0285 683.9274 c +924.0285 686.1296 l +h +933.912 690.212 m +933.912 655.891 l +924.0292 655.891 l +924.0292 665.0219 l +921.7733 661.3696 918.9625 658.6661 915.5966 656.9115 c +912.2307 655.1928 908.1127 654.3334 903.2426 654.3334 c +897.0837 654.3334 892.1781 656.0521 888.5256 659.4896 c +884.9091 662.9629 883.1008 667.5999 883.1008 673.4006 c +883.1008 680.1679 885.3567 685.2706 889.8684 688.7086 c +894.4159 692.1461 901.1836 693.8648 910.1714 693.8648 c +924.0284 693.8648 l +924.0284 694.8316 l +924.0284 699.3791 922.5245 702.8881 919.5167 705.3586 c +916.5447 707.8651 912.3554 709.1184 906.9487 709.1184 c +903.5112 709.1184 900.1632 708.7066 896.9047 707.883 c +893.6462 707.0594 890.5131 705.824 887.5053 704.1769 c +887.5053 713.3078 l +891.1218 714.7043 894.6308 715.7427 898.0323 716.423 c +901.434 717.1391 904.7461 717.4972 907.9688 717.4972 c +916.6701 717.4972 923.1691 715.2413 927.4658 710.7296 c +931.7627 706.2179 933.9111 699.3785 933.9111 690.2116 c +h +f +Q +q +2 j +988.48 706.808 m +987.37 707.4525 986.1526 707.918 984.8277 708.2045 c +983.5386 708.5268 982.1063 708.6879 980.5308 708.6879 c +974.9449 708.6879 970.6479 706.8617 967.6398 703.2094 c +964.6678 699.5929 963.1818 694.3829 963.1818 687.5794 c +963.1818 655.8904 l +953.2453 655.8904 l +953.2453 716.0464 l +963.1818 716.0464 l +963.1818 706.7007 l +965.2586 710.353 967.9621 713.0565 971.2922 714.8111 c +974.6223 716.6014 978.6686 717.4966 983.4312 717.4966 c +984.1115 717.4966 984.8635 717.4429 985.6871 717.3355 c +986.5107 717.2639 987.4238 717.1385 988.4264 716.9595 c +h +f +Q +Q +Q +Q +q +q +0.1 0.0 0.0 0.1 43.416 725.301 cm +q +2 j +508.54 696.67 m +508.54 703.8313 507.054 709.3813 504.082 713.32 c +501.1458 717.2588 497.0101 719.2282 491.675 719.2282 c +486.3755 719.2282 482.2399 717.2588 479.268 713.32 c +476.3318 709.3812 474.8637 703.8312 474.8637 696.67 c +474.8637 689.5447 476.3318 684.0123 479.268 680.073 c +482.24 676.1342 486.3757 674.1648 491.675 674.1648 c +497.0103 674.1648 501.1459 676.1342 504.082 680.073 c +507.054 684.0118 508.54 689.5441 508.54 696.67 c +h +518.4228 673.359 m +518.4228 663.1183 516.149 655.5093 511.6015 650.532 c +507.054 645.519 500.0893 643.0125 490.7075 643.0125 c +487.2342 643.0125 483.9578 643.2811 480.8784 643.8182 c +477.799 644.3195 474.8091 645.1072 471.9087 646.1815 c +471.9087 655.7957 l +474.8091 654.2201 477.6737 653.0564 480.5025 652.3045 c +483.3313 651.5525 486.2138 651.1766 489.15 651.1766 c +495.6311 651.1766 500.4831 652.8774 503.706 656.2791 c +506.9287 659.6449 508.54 664.7476 508.54 671.5871 c +508.54 676.4748 l +506.499 672.9298 503.8851 670.2801 500.6982 668.5256 c +497.5113 666.771 493.698 665.8938 489.2582 665.8938 c +481.8822 665.8938 475.9382 668.7046 471.4262 674.3264 c +466.9145 679.9481 464.6586 687.3961 464.6586 696.6704 c +464.6586 705.9804 466.9145 713.446 471.4262 719.0674 c +475.9379 724.6891 481.8819 727.5 489.2582 727.5 c +493.6983 727.5 497.5117 726.6227 500.6982 724.8682 c +503.8851 723.1136 506.499 720.4639 508.54 716.919 c +508.54 726.0499 l +518.4228 726.0499 l +h +f +Q +q +2 j +572.94 716.808 m +571.83 717.4525 570.6125 717.918 569.2876 718.2045 c +567.9985 718.5268 566.5662 718.6879 564.9907 718.6879 c +559.4048 718.6879 555.1078 716.8617 552.0997 713.2094 c +549.1277 709.5929 547.6417 704.3829 547.6417 697.5794 c +547.6417 665.8904 l +537.7052 665.8904 l +537.7052 726.0464 l +547.6417 726.0464 l +547.6417 716.7007 l +549.7185 720.353 552.422 723.0565 555.7521 724.8111 c +559.0822 726.6014 563.1285 727.4966 567.8911 727.4966 c +568.5714 727.4966 569.3234 727.4429 570.147 727.3355 c +570.9706 727.2639 571.8837 727.1385 572.8863 726.9595 c +h +f +Q +q +2 j +631.8 698.44 m +631.8 693.606 l +586.361 693.606 l +586.7907 686.8027 588.8317 681.6107 592.484 678.03 c +596.1721 674.4851 601.2925 672.7126 607.845 672.7126 c +611.6406 672.7126 615.3109 673.1781 618.856 674.1091 c +622.4367 675.0401 625.9817 676.4366 629.491 678.2986 c +629.491 668.9529 l +625.9461 667.449 622.3117 666.3031 618.588 665.5154 c +614.8643 664.7277 611.0866 664.3338 607.255 664.3338 c +597.6583 664.3338 590.0493 667.1268 584.428 672.7127 c +578.8421 678.2986 576.0491 685.854 576.0491 695.3787 c +576.0491 705.226 578.6988 713.032 583.9983 718.7967 c +589.3336 724.5975 596.5129 727.4979 605.5363 727.4979 c +613.629 727.4979 620.0206 724.884 624.7113 719.6561 c +629.4378 714.464 631.8011 707.392 631.8011 698.4401 c +h +621.9172 701.3404 m +621.8456 706.7473 620.3238 711.062 617.3518 714.2844 c +614.4156 717.5071 610.5126 719.1184 605.6428 719.1184 c +600.1285 719.1184 595.7061 717.5608 592.3758 714.4455 c +589.0815 711.3302 587.1837 706.9439 586.6824 701.2865 c +h +f +Q +q +2 j +698.78 698.44 m +698.78 693.606 l +653.341 693.606 l +653.7707 686.8027 655.8117 681.6107 659.464 678.03 c +663.1521 674.4851 668.2725 672.7126 674.825 672.7126 c +678.6206 672.7126 682.2909 673.1781 685.836 674.1091 c +689.4167 675.0401 692.9617 676.4366 696.471 678.2986 c +696.471 668.9529 l +692.9261 667.449 689.2917 666.3031 685.568 665.5154 c +681.8443 664.7277 678.0666 664.3338 674.235 664.3338 c +664.6383 664.3338 657.0293 667.1268 651.408 672.7127 c +645.8221 678.2986 643.0291 685.854 643.0291 695.3787 c +643.0291 705.226 645.6788 713.032 650.9783 718.7967 c +656.3136 724.5975 663.4929 727.4979 672.5163 727.4979 c +680.609 727.4979 687.0006 724.884 691.6913 719.6561 c +696.4178 714.464 698.7811 707.392 698.7811 698.4401 c +h +688.8972 701.3404 m +688.8256 706.7473 687.3038 711.062 684.3318 714.2844 c +681.3956 717.5071 677.4926 719.1184 672.6228 719.1184 c +667.1085 719.1184 662.6861 717.5608 659.3558 714.4455 c +656.0615 711.3302 654.1637 706.9439 653.6624 701.2865 c +h +f +Q +q +2 j +764.3 702.2 m +764.3 665.891 l +754.4172 665.891 l +754.4172 701.877 l +754.4172 707.5703 753.3072 711.8313 751.0871 714.66 c +748.867 717.4887 745.537 718.9031 741.0969 718.9032 c +735.7616 718.9032 731.5543 717.2024 728.4749 713.8007 c +725.3955 710.399 723.8558 705.762 723.8558 699.8897 c +723.8558 665.8907 l +713.9193 665.8907 l +713.9193 726.0467 l +723.8558 726.0467 l +723.8558 716.701 l +726.2191 720.3175 728.9941 723.021 732.181 724.8114 c +735.4037 726.6017 739.1097 727.4969 743.299 727.4969 c +750.2097 727.4969 755.4377 725.3485 758.983 721.0516 c +762.5279 716.7905 764.3004 710.5062 764.3004 702.1986 c +h +f +Q +q +2 j +860.92 695.91 m +860.92 703.1787 859.4161 708.872 856.4083 712.99 c +853.4363 717.1437 849.3363 719.2205 844.1083 719.2205 c +838.8804 719.2205 834.7624 717.1437 831.7543 712.99 c +828.7823 708.8721 827.2963 703.1788 827.2963 695.91 c +827.2963 688.6413 828.7823 682.93 831.7543 678.776 c +834.7621 674.6581 838.8801 672.5992 844.1083 672.5992 c +849.3362 672.5992 853.4362 674.6581 856.4083 678.776 c +859.4161 682.9297 860.92 688.641 860.92 695.91 c +h +827.297 716.911 m +829.3738 720.4917 831.9877 723.1415 835.1388 724.8602 c +838.3257 726.6147 842.1213 727.492 846.5258 727.492 c +853.8305 727.492 859.7565 724.5916 864.3038 718.7908 c +868.8871 712.99 871.1788 705.363 871.1788 695.9098 c +871.1788 686.4565 868.8871 678.8295 864.3038 673.0288 c +859.7563 667.228 853.8303 664.3276 846.5258 664.3276 c +842.1215 664.3276 838.3259 665.187 835.1388 666.9057 c +831.9877 668.6602 829.3738 671.3279 827.297 674.9086 c +827.297 665.8852 l +817.3605 665.8852 l +817.3605 749.4592 l +827.297 749.4592 l +h +f +Q +q +2 j +914.2 696.13 m +906.2147 696.13 900.6823 695.2169 897.603 693.3907 c +894.5235 691.5645 892.9838 688.4493 892.9838 684.045 c +892.9838 680.5359 894.1296 677.7429 896.4213 675.6661 c +898.7488 673.6251 901.8998 672.6046 905.8744 672.6046 c +911.3529 672.6046 915.7393 674.5382 919.0334 678.4054 c +922.3635 682.3084 924.0285 687.4824 924.0285 693.9274 c +924.0285 696.1296 l +h +933.912 700.212 m +933.912 665.891 l +924.0292 665.891 l +924.0292 675.0219 l +921.7733 671.3696 918.9625 668.6661 915.5966 666.9115 c +912.2307 665.1928 908.1127 664.3334 903.2426 664.3334 c +897.0837 664.3334 892.1781 666.0521 888.5256 669.4896 c +884.9091 672.9629 883.1008 677.5999 883.1008 683.4006 c +883.1008 690.1679 885.3567 695.2706 889.8684 698.7086 c +894.4159 702.1461 901.1836 703.8648 910.1714 703.8648 c +924.0284 703.8648 l +924.0284 704.8316 l +924.0284 709.3791 922.5245 712.8881 919.5167 715.3586 c +916.5447 717.8651 912.3554 719.1184 906.9487 719.1184 c +903.5112 719.1184 900.1632 718.7066 896.9047 717.883 c +893.6462 717.0594 890.5131 715.824 887.5053 714.1769 c +887.5053 723.3078 l +891.1218 724.7043 894.6308 725.7427 898.0323 726.423 c +901.434 727.1391 904.7461 727.4972 907.9688 727.4972 c +916.6701 727.4972 923.1691 725.2413 927.4658 720.7296 c +931.7627 716.2179 933.9111 709.3785 933.9111 700.2116 c +h +f +Q +q +2 j +988.48 716.808 m +987.37 717.4525 986.1526 717.918 984.8277 718.2045 c +983.5386 718.5268 982.1063 718.6879 980.5308 718.6879 c +974.9449 718.6879 970.6479 716.8617 967.6398 713.2094 c +964.6678 709.5929 963.1818 704.3829 963.1818 697.5794 c +963.1818 665.8904 l +953.2453 665.8904 l +953.2453 726.0464 l +963.1818 726.0464 l +963.1818 716.7007 l +965.2586 720.353 967.9621 723.0565 971.2922 724.8111 c +974.6223 726.6014 978.6686 727.4966 983.4312 727.4966 c +984.1115 727.4966 984.8635 727.4429 985.6871 727.3355 c +986.5107 727.2639 987.4238 727.1385 988.4264 726.9595 c +h +f +Q +Q +Q +Q +Q +Q + +endstream +endobj +7 0 obj +<< /Type /Page +/Parent 3 0 R +/MediaBox [0 0 595.28 841.89] +/CropBox [0 0 595.28 841.89] +/BleedBox [0 0 595.28 841.89] +/TrimBox [0 0 595.28 841.89] +/ArtBox [0 0 595.28 841.89] +/Contents 6 0 R +/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] +/Font << >> +/ExtGState << /Tr1 11 0 R +>> +>> +>> +endobj +8 0 obj +[7 0 R /XYZ 0 841.89 null] +endobj +9 0 obj +<< /Type /Names +/Dests 10 0 R +>> +endobj +10 0 obj +<< /Names [(__anchor-top) 8 0 R] +>> +endobj +11 0 obj +<< /Type /ExtGState +/CA 1 +/ca 0.3 +>> +endobj +12 0 obj +<< /Type /Outlines +/Count 1 +/First 13 0 R +/Last 13 0 R +>> +endobj +13 0 obj +<< /Title +/Parent 12 0 R +/Count 0 +/Dest [7 0 R /XYZ 0 841.89 null] +>> +endobj +14 0 obj +<< /Nums [0 << /P (1) +>>] +>> +endobj +xref +0 15 +0000000000 65535 f +0000000015 00000 n +0000000248 00000 n +0000000449 00000 n +0000000506 00000 n +0000000557 00000 n +0000000829 00000 n +0000026424 00000 n +0000026737 00000 n +0000026779 00000 n +0000026827 00000 n +0000026879 00000 n +0000026932 00000 n +0000027006 00000 n +0000027131 00000 n +trailer +<< /Size 15 +/Root 2 0 R +/Info 1 0 R +>> +startxref +27176 +%%EOF diff -Nru ruby-asciidoctor-pdf-1.6.1/spec/reference/running-content-alt-layouts.pdf ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-alt-layouts.pdf --- ruby-asciidoctor-pdf-1.6.1/spec/reference/running-content-alt-layouts.pdf 2021-09-04 22:01:20.000000000 +0000 +++ ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-alt-layouts.pdf 2021-12-31 12:03:00.000000000 +0000 @@ -1,11 +1,11 @@ -%PDF-1.3 +%PDF-1.4 % 1 0 obj << /Title (Alternating Page Layouts) -/Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) -/Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) -/ModDate (D:20190625005255-06'00') -/CreationDate (D:20190625005255-06'00') +/Creator (Asciidoctor PDF 1.6.2.dev, based on Prawn 2.4.0) +/Producer (Asciidoctor PDF 1.6.2.dev, based on Prawn 2.4.0) +/ModDate (D:20211231042007-07'00') +/CreationDate (D:20211231042007-07'00') >> endobj 2 0 obj @@ -15,7 +15,7 @@ /Outlines 19 0 R /PageLabels 23 0 R /PageMode /UseOutlines -/OpenAction [7 0 R /FitH 842.89] +/OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> @@ -59,7 +59,7 @@ BT 126.0283 777.054 Td -/F1.0 27 Tf +/F2.0 27 Tf [<416c7465726e6174696e672050616765204c61> 20.0195 <796f757473>] TJ ET @@ -72,7 +72,7 @@ BT 48.24 743.5574 Td -/F3.0 13 Tf +/F1.0 13 Tf [<5468697320646f63756d656e742064656d6f6e737472> 20.0195 <617465732074686174207468652072756e6e696e6720636f6e74656e742069732061646a757374656420746f20666974207468652070616765>] TJ ET @@ -85,7 +85,7 @@ BT 48.24 724.0203 Td -/F3.0 13 Tf +/F1.0 13 Tf [<6c61> 20.0195 <796f7574206173207468652070616765206c61> 20.0195 <796f757420616c7465726e617465732e>] TJ ET @@ -98,7 +98,7 @@ BT 48.24 695.3317 Td -/F3.0 10.5 Tf +/F1.0 10.5 Tf <4c6f72656d20697073756d20646f6c6f722073697420616d657420636f6e73656374657475722061646970697363696e6720656c697420636f6e75626961207475727069732c20656c656d656e74756d20706f72747469746f72207361676974746973> Tj ET @@ -111,7 +111,7 @@ BT 48.24 679.5517 Td -/F3.0 10.5 Tf +/F1.0 10.5 Tf [<70656c6c656e7465737175652064696374756d7374206567657374617320616e7465207072> 20.0195 <616573656e742e>] TJ ET @@ -124,7 +124,7 @@ BT 48.24 651.7717 Td -/F3.0 10.5 Tf +/F1.0 10.5 Tf [<4d61676e612076656c69742065676573746173207175616d20736f6369697320706c61636572> 20.0195 <617420666163696c697369732066656c6973206d61757269732c207072696d6973207269646963756c757320636f6d6d6f646f>] TJ ET @@ -137,7 +137,7 @@ BT 48.24 635.9917 Td -/F3.0 10.5 Tf +/F1.0 10.5 Tf <7363656c6572697371756520656c656966656e64206d6f726269206e6f6e2e> Tj ET @@ -155,8 +155,8 @@ 0.2 0.2 0.2 SCN BT -541.009 14.388 Td -/F3.0 9 Tf +541.009 14.263 Td +/F1.0 9 Tf <31> Tj ET @@ -177,8 +177,8 @@ /ArtBox [0 0 595.28 841.89] /Contents 6 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] -/Font << /F1.0 8 0 R -/F3.0 12 0 R +/Font << /F2.0 8 0 R +/F1.0 12 0 R >> /XObject << /Stamp1 24 0 R >> @@ -187,7 +187,7 @@ endobj 8 0 obj << /Type /Font -/BaseFont /93f89f+NotoSerif-Bold +/BaseFont /1fc35f+NotoSerif-Bold /Subtype /TrueType /FontDescriptor 29 0 R /FirstChar 32 @@ -210,7 +210,7 @@ endobj 12 0 obj << /Type /Font -/BaseFont /a98d70+NotoSerif +/BaseFont /92f9b6+NotoSerif /Subtype /TrueType /FontDescriptor 33 0 R /FirstChar 32 @@ -231,7 +231,7 @@ BT 48.24 535.784 Td -/F1.0 22 Tf +/F2.0 22 Tf <4c616e6473636170652050616765> Tj ET @@ -242,7 +242,7 @@ BT 48.24 506.596 Td -/F3.0 10.5 Tf +/F1.0 10.5 Tf [<4c6f72656d20697073756d20646f6c6f722073697420616d657420636f6e73656374657475722061646970697363696e6720656c697420636f6e75626961207475727069732c20656c656d656e74756d20706f72747469746f722073616769747469732070656c6c656e7465737175652064696374756d7374206567657374617320616e7465207072> 20.0195 <616573656e742e>] TJ ET @@ -253,7 +253,7 @@ BT 48.24 478.816 Td -/F3.0 10.5 Tf +/F1.0 10.5 Tf [<4d61676e612076656c69742065676573746173207175616d20736f6369697320706c61636572> 20.0195 <617420666163696c697369732066656c6973206d61757269732c207072696d6973207269646963756c757320636f6d6d6f646f207363656c6572697371756520656c656966656e64206d6f726269206e6f6e2e>] TJ ET @@ -271,8 +271,8 @@ 0.2 0.2 0.2 SCN BT -49.24 14.388 Td -/F3.0 9 Tf +49.24 14.263 Td +/F1.0 9 Tf <32> Tj ET @@ -282,8 +282,8 @@ 0.2 0.2 0.2 SCN BT -724.304 14.388 Td -/F3.0 9 Tf +724.304 14.263 Td +/F1.0 9 Tf <4c616e6473636170652050616765> Tj ET @@ -304,8 +304,8 @@ /ArtBox [0 0 841.89 595.28] /Contents 13 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] -/Font << /F1.0 8 0 R -/F3.0 12 0 R +/Font << /F2.0 8 0 R +/F1.0 12 0 R >> /XObject << /Stamp4 27 0 R >> @@ -327,7 +327,7 @@ BT 48.24 782.394 Td -/F1.0 22 Tf +/F2.0 22 Tf [<506f727472> 20.0195 <6169742050616765>] TJ ET @@ -340,7 +340,7 @@ BT 48.24 753.206 Td -/F3.0 10.5 Tf +/F1.0 10.5 Tf <4c6f72656d20697073756d20646f6c6f722073697420616d657420636f6e73656374657475722061646970697363696e6720656c697420636f6e75626961207475727069732c20656c656d656e74756d20706f72747469746f72207361676974746973> Tj ET @@ -353,7 +353,7 @@ BT 48.24 737.426 Td -/F3.0 10.5 Tf +/F1.0 10.5 Tf [<70656c6c656e7465737175652064696374756d7374206567657374617320616e7465207072> 20.0195 <616573656e742e>] TJ ET @@ -366,7 +366,7 @@ BT 48.24 709.646 Td -/F3.0 10.5 Tf +/F1.0 10.5 Tf [<4d61676e612076656c69742065676573746173207175616d20736f6369697320706c61636572> 20.0195 <617420666163696c697369732066656c6973206d61757269732c207072696d6973207269646963756c757320636f6d6d6f646f>] TJ ET @@ -379,7 +379,7 @@ BT 48.24 693.866 Td -/F3.0 10.5 Tf +/F1.0 10.5 Tf <7363656c6572697371756520656c656966656e64206d6f726269206e6f6e2e> Tj ET @@ -397,8 +397,8 @@ 0.2 0.2 0.2 SCN BT -49.24 14.388 Td -/F3.0 9 Tf +49.24 14.263 Td +/F1.0 9 Tf [<506f727472> 20.0195 <6169742050616765>] TJ ET @@ -408,8 +408,8 @@ 0.2 0.2 0.2 SCN BT -541.009 14.388 Td -/F3.0 9 Tf +541.009 14.263 Td +/F1.0 9 Tf <33> Tj ET @@ -430,8 +430,8 @@ /ArtBox [0 0 595.28 841.89] /Contents 16 0 R /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI] -/Font << /F1.0 8 0 R -/F3.0 12 0 R +/Font << /F2.0 8 0 R +/F1.0 12 0 R >> /XObject << /Stamp1 24 0 R >> @@ -593,40 +593,40 @@ endstream endobj 28 0 obj -<< /Length1 5092 -/Length 3345 +<< /Length1 9340 +/Length 5804 /Filter [/FlateDecode] >> stream -xWkpww%˲-[eɫeY-Y姌NcXDǒ &8!@iДҔL0Li -GieZBjLuڽ{wswF \:y!,O$>4<*<:HeuT"T4'; ihڣd<*B h;Q C_ЦG&쮏WC{v1_%Qy}&>S'>F,_0B:~n邿kw`\UΥ%pQM؟"6)^}k8YqmӠ;JQ*\~cq֕-L9.WߣS1$A,%. q!ٙv < Ҡghç[Zf[f/]#=/MWQЋ -2}[dK0<ӟչsVS$vZHꂛ{t1G.iٵ[!@G-ꦉ|lp{]As,xzp)¯,JLyiupЋN%hm{;6d5Lm9GNsf -fmfw(uy;yfW LI\x8fT4f^X2:ӒfJNɸõ^[D|w%(i6K<5R؅c~xcw-̟eXʹRE@;Ō/JX%XM_ &z>?CRI/>V VC$Ht -e}\0w -k0q"?r{PNi ZKO' *+]e*h:8Ø%:Z?:?@f׮ -&_xT't[ƒ.O>LMuݦ > s^h|}fbq7O9FbzAH<=3(X=^me`(ffML&~}^lqұKn_pcn*ѾWJ,5= -}ܥ$,K?=xfu<@`\:ߟW5S3ȅ!N -J5LKb)n -[#MJ('ę]~—b@1![i[o;rh^.Dz9zo?гVq>Z.~᧿>u&cHUQ;! (fPA|%omͪb厞+K/U5FQUA)! m~mi,˨$;@@wM <°]u2 GQGs]0UwglPCΚ`sSs'۷6umGjs$7ɍ[ݮ3ר4^V5w&/bO쩢cwhj#-NkrA?®!5x:)%qiLzOw':eDJnhmC }k;&%5ⷣOU"GQzN~O@ KT[o~@DAP"j'*FFąEV/_z O+EW0,_N:/?)v@c&9f g $ңo8"P%8m<.D -.AzߧEyAyNHD "9RDى4 8!-qPYsOKnrx1y@oy\VΞ|2ONݗΧ@fR)z}zP-řyNbf./ځH%iaY -6>є4_+[޻w/řc ,1`Ӭ?lC"mZgrr&_8ݵ.Ɓ69Y1%&CS E_1-ܘ.611`KTEξiwxƲxu^AslAk+zN2t{eۿaN{>fއ=s"Bm& +xZ ty]</X` $xI/ 2@ #gIN[ȑ%KW6$n:Ir4y}#7\$I]?(B{a}d B8RDQA=/{Ə#]5#o#*$5XIFe>95sFHNj<P Ȝˀ/ ;0AG5-,G@ <; !TR"X \#Q_$݀qb+aɽOPEo]eX,[)P~cK/!$jnD^E"Cۡ +P $:#2$"?54)ňbnzz ld:fP7)M*jAM"jbv2-A'y1{#E4*_6y=br։Y)՝!n4~^)JAL$ge<総sYl.cxhp떾ޞnҾiccC}MhЕk84_%efH%bCSUٸn7˗y5NYujón,- K˚%P8ʱ!'Ǭ?͔ L0j5`m+c7kln+[HK|*dP|Y@P +I3ȰKWrV}|gzoxmCb^s'}tV')k BvCx9{=繴r`cBz\FNuiϏ.^dNvHΩ7YU/S#bVdA EאŤwh.jDs`UA69ڽ b|󙟪\vdr ,{,/*@`.sr4|ʳ&?6Nk{ԏ8y'#B zxܐUHo"\'e :Bd7^C+ً7٬dd6GG>n:2|PǪԌJv,9~ԭ®Ns\dQB4+?hjOu8\v$脂cpNU ,O^NJEPj^BCr)Y֝Ъ5+YϚ#-NEduzt.u2TQfC)I@慠©2 +"|U8`yˠ̍GH2B~y[,Rz!{~Mm_UsR1GsIgAX)`Z _M;ʁ +ڡ~^>L _B#V\r + _>̓6R1Z)5ݸn^f:u/XKRٹssg|6gi+4[ߘ2O7Wi<2yk mŇy4}sǏC}|-bW%!!/^EX, 2bT %H`3P33bx1#P*0$c33|HK ͈.޹ٌ + V7׺zY.oczn7_v}^2b/Z-k<>T"nZ3}|ušDH_nKŊE:c~|F)(X!V_BzV9jG،똟2שzJGLwe\/OxZp w=> x~P>C43O11"7.zLFuʛjv !4dA`[$+%T V͵F%[_Wn´eZE%/Tg-{ʠpZW]9(c <4%_J]P(]ldYߤ RrJƬw;el|K2'pd)=W+9M&R6c34W^$QSꊲý,RTWE(ej*s~Ƕ3ˍW?!Lp> +kՖP83W-'q;B"1vqy5sXvnUj60;_~t򥊚i(姕5)S{_Xn+~tNs:E`%õA^2SMy}& 8u\&i b@3̪m#tlܑ׶Mjt1}:lVxIZh5Ni=##W-C՛6iw/}a#$Xe[EN?|A"kܸۤW/FIxEI̢)s_ܼХZ&3J:>Rϖ|索Ϟ`yn.wW{6Nf. vTBv\)l5w$&\3m8FLa3^djĚrZ[_ظD=}L4UViPBQ3f۾0m,I TuO=c}kYSJWwP:8w|Nw0C̘mk5-ZY2Odzum}j}/gï=Թu Kv{cvcИ-';x]z 8HbV]5ZFYYV0{g}ȕXRB ,!6-x5d54iQh̵yhWX p:14`^bfoiCFn,K,Sk_ߓєJ3Tʌzg=SמG5l(TUwU61΢6jsx}1U^LPQfd*+ԙ gslnZ4j/cKll|LZkh.4כMMfWjrs C_G]~a&tOܺK؟T+Quj#WڵiM<ʜV_m䲲ee1AMW֨/^"'W(-1E]Gkӹp0MIW Y"5ÍVO.͖>:t>|t=c+!o&[Q-{|K1~z-ߖjz 1~OYV[d}=F6=W' u*Io̅a"``%"$"Px3@ipCoݘ&yTeW}ܞӁ%<Ֆ)i52E33CDL0C\?t>:!bMh6Tj2>߮2]YTMZ)~2UUTbB$zx|&G RKb-AHڒ4gƽIZt÷IZ' I:)[I:I: b_YJ )Ag>lKҙ: H0Cv.$&ixצ4tYfP H"OLy.IÛI:U0I:dtĬbHGtuZ3Q䅮pd6 Z' #15U|}>?_4 Oy؇2o:cL{}Q6v NoIT7Rcdţ iV` ;mށv[pG`ٮ~}>\7b*8Qw$p "SA*XY81X7')gfECo 㞸O$](; ;D4nj14 toA]("hEQMo]-P= | +n}y77z| ;7a0aE[ ?>CYXvv_niD"GP灾V#DW,wz9l2f8M>6͙klM֔C~C d3}D r`rE"/$Ҿ> endobj 30 0 obj -<< /Length 1286 +<< /Length 1278 /Filter [/FlateDecode] >> stream -xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; -JÂ31x; -JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?=/ί~:o?$O +xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂsޮ>,x/x;Â31x; +JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 31 0 obj -[259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 752 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 653 1000 1000 1000 638 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 599 1000 526 648 570 1000 560 1000 352 1000 1000 352 1000 666 612 645 1000 522 487 404 666 1000 1000 1000 579 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] +[259 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 752 600 600 600 600 600 600 600 600 600 600 653 600 600 600 638 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 599 600 526 648 570 600 560 600 352 600 600 352 600 666 612 645 600 522 487 404 666 600 600 600 579 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600 600] endobj 32 0 obj -<< /Length1 7012 -/Length 4340 +<< /Length1 11256 +/Length 6907 /Filter [/FlateDecode] >> stream -xY{TgvC F# IHI!@< 0IqlǯYg:nqs>9Ξnٶq{l۳i76ٳfۦlONl@` f}{{FI LhWAr!7Yx?O0 Hzѭ&Jֺ*5k؂*j7;?-ZtF u{*6-|:ȂYWK:V=dA/}vn3lҕO\m!OYF_R!₦nn]CV4x}WD#WxrdAgu +"2rw9g&~&!H!. _NxvoP{a|3MJ{cdjxB7h;lΒoc3r-lM F\nWg`]2R9%1gD`CG2԰404cl >'uO̵_ZTZk|eź:ο`UMk>L(pVaǮD=+A99^'-sG>>R}ojyeqx/* BRZW=7ԖBֶӑS, - /͕*6^{jxh]d -Oi6$>`7j0(41tfRafKkiԿZAvȖSN$CttάP\8RRt:sm"~y mBj襜YJS0[P:u4KU92MG|_[2FRl+ۼeUBg߽ZX7=׫U9?-7jƒBEVfVBcK -iCA+vhrulݞ xy#3[dY9FM~nNk+otټ:i9zN=~"KQM$ZrStl{d;CBs-˅Π/7|^%]-t"YgojlOdS@C,Bݭ{=B>6`'Q6T+^cEfL6<.'$xd4L^ -׬, -q#3P˕uLmE=v=jķ充mG߹~kHTunu~rrS -vi1Pٽ4`+Тwxn[[[X[6۽.\-HK?,"۱G/wEB7XB7rW0&>HwC.l>^1_[;<dlЯ4Y74S6ALnƺH=Uf*-aqdz>MZ0(.}۽=Xo|'L3m=n]]WrMXrsw. fuXOތd#xąkA1JfVm3Y21;W?v{u]˨ؽu(4bLGh.qJ ZqZ0 ~~h˯s5;: 'v:[wVC -o/m2,pIUl2Ujjl3Ўf֦ɹŠRcRmmy &z -'zetvͶ.a|wXG!д'nuwVGA R\_ LϹX|:HN%jIFS RDjYo^KVݑ+H<\׻]ܩ犬N{0U꫼{<R}w @yR`L̾fm@RDŽtKgߩ3ۊǤJM9-ķ>(Tʧ[ʓYH'a\ŜE.%Ƥ_t)-)W81N|D(9_H 9J>O:EXGsaCQ?RqS1lA^8Et)8RwQhuQo12Qh=ғp=@Mu!@9d#&}LA*9T#0 -we4Dpzc{ʋIz/}c 'ѠP1l'`LQ \8ktJMDl"ChoС{rݺcG+j@Ľ$YAށlwnf?GMrӣ8'0faa{3@"WrrbWB\)$^.@^.D9DH{D(br12? $'R2PQ%^.Ac| yTG$Vd-/Dud?/BVi^ȿRdh^.ET[Slvqnzr*T+Xl2fEǬ?avS̮|x5EhMI4[AU -j#( m(Ɛ$]Os0\àAG֮X<'Pɠi4+< qMPBsh,8 gBI¤i QN"Nb&A_~x]g6HXګ)&a5VZ@Sn{9SȩgBL|.4 gb̧ - ! )-`Y vW~/ocdC3<<4A @(bS8D !<Ό.2j8P3A'b VƠQ0lf|30Sl6['9c۬ l\(Z&6XxbkZ9 }c5ty+Pk}7i nY!寜۰B攖@U`n9r4('$LKs/Ђ$W$&"%S4?a'a8 0ͨc`V"/qݒ׉'BhQP'tY~iϽoQ wMsGZctʣ\':|j~d(oH)$%JeD,shysgz*x {-FRq/%1Pd'$&%)PzFfVv27O2[\@_oOwWgjiok54756(7eE!_R$'%&eR 2YC\٩'u ;˶[&Ļ[ {$I$NQ +|'`G4WH+ Pho͚!!۱Ubۅvo TXfL Z y6jjQj4cP`M IC2#y~{_OFn]0wX]egC)P` MX kHG oӳ=$IsnxDT" ܻjx۪{s}Ԅ' ~+x ͷ+CBY\/k pZ>&e,*3ej4h*SCHGא٨ 1nhKluw k5i+'tj0 JR#u1*9>$)@ SHdZIcH u!z-,ԩ~2[0{YˍYhBFRm[$sv"v )CщBF[WIn[#y +"yYb0z6?XфИ(h,Cjr +f4RjB1P1&c$)%4 EbG\=vghk:@qZ5KQk弋Qc ϐL+;C$yV4VE#]J%$;ڤ +z;1Mҗ1̋C9 @gª<P{*˜0ˇ̃.bq 1#j;nBhV3C6rsCUmWB}(DwIw%])H6 ͘ud I~UZF* dTԃ{Fe кw [ٹk fmcz}r%LRIh+4#trA1k{EPnyJ} O|b,HxQp߁C,Y9 sOhS?ĒqXz}#$u }%pXzXuwvS}So`x g21gg9 N~8tq)xv_w.m^b̗0Kwbwq[kw6$ `S{^|<.>w)!ObOwXt}ADTNs] l@ ii !u;sj U]!wXOh +3!N@PG/8."@p` #x`GD4DyA#:2\| #. Iဌm!-K^d)F +tMVQȉ~Oi'FJos>争~~DYx 'l]&zl:^"z ?ś +:.;Fi7a -i>~;ނ95-a2(ܣ-0:FPi~)y^AE0:-RlGrH!U?G %Q0rB.ÌO&Y n02W؂-6S͔007nNHA)ReϡJ<GɪcUcIdQT.uJ~*sʮ>gVixӽǒoL)&E3VmōoJ^{ֽ |LDFV݌ \uUR C'ǽ3 3}evoT(%L= F'7?AWBU Q:|sR!9F!=]0(j>1..!e 0+y뤩TT$B~au3ۂM) +Ӏo<&4E6sJ_n鰛|$$L9c\Uy>uSЮZFf?R$OB +˴+1GCƭ~kH(_O&qM2^FYn>w60xĬTjm0EO"KT7gpdk?3wE]?ݼ;~Jv-R!FԪ032Wc>9m?\^pR=!$)Fh9/쪁rgl~\Oq_-ٴLSa7ayxʥsR/e3"81#epVpP)؇7׍=+kQUL>?񔯾ґ_"$'Rkr*5*:2-?Ϫrh}[ojbÆ)wUKM.׆uW}qw`5o>A*6J sdU]i`IאyabBg$~#l}6A]UTP5[d:UywWV񹺼$u!7}uųtVpcp"GLJei'4[3kS8vi^]Uzꄜ\iRNzNB ^ʑ+ +iFO i[ҎqSz10ʬrmgSERRqeCZJBVtő|euGG'+ei#SNQ[v>X1cT٪ahɚcbT5Ԗ!i񉪸"MFJ^Y}@IHL*eݏW5{W~6vs"Qk}K&~$ܻ>Ď;zv<ֶ粪TD@otUhmQe<33_vj'zƒd;pac*n xdrk|ivV:-M]]ʧEy :>$rU|ʄlt gRpY +vyjj1MRAMA|3UґiuqmG;y8ŀ{#؅7K,z?ӳa;{È:8_8aO3Ž Z?I/B}i& 7nUƪ-}}Mi)Ρ8 b.ḍ5;eH $uŵX;L'?*F-;5m% //(ccL- ?Kv>K@v~lIiKdCqnB'Z?FH_%H4]̫*pnF7¼kw"҈߆UgdrN}$F +{ӢR؃nk%Igh6 +Q>z_+o߳0"{F/i*dHm֢pSV3(I.?dzD($1HXd@'qwcA"{pC"aH0GfAHc`4dfQ=i)XHKP;/2da:娔kA'"ƹC1GwE:},҉JhϿ473++*ofw-Ny~4aot;e}ݻ47=Y,}?tY-z~[frzsEP^SW9]7Q#Rs#/Ժ"7 o +КJ/:)Ayd94Mf2Z +-3 Oᾟ +M`l!;GzPzxK|ˬב~zZXfǣ G.AQ$2уcm F{A(ju {F2`!~/ۨ|Fx6Z[qr4o@O(kf< uq]ʀs^?A6E ͫ @Etz3恝4hQFP'v@IꭐzҾaB{tQ:fsA-Dwh!̈́ŸDX.p4<_v$@LYG$y:Ќ"8e4"Sb-d&l<=F.nͮ-S "l w>1\mJb FtsVvKCCI(_r3_92Zw@4A4CQ+9b67I endstream endobj 33 0 obj << /Type /FontDescriptor -/FontName /a98d70+NotoSerif +/FontName /92f9b6+NotoSerif /FontFile2 32 0 R /FontBBox [-212 -250 1246 1047] /Flags 6 /StemV 0 -/ItalicAngle 0.0 +/ItalicAngle 0 /Ascent 1068 /Descent -292 /CapHeight 1462 @@ -689,61 +696,60 @@ >> endobj 34 0 obj -<< /Length 1286 +<< /Length 1278 /Filter [/FlateDecode] >> stream -xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; -JÂ31x; -JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?=/ί~:o?$O +xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂsޮ>,x/x;Â31x; +JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 35 0 obj -[259 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 250 1000 250 1000 1000 559 559 559 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 623 937 1000 1000 604 1000 1000 1000 612 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 562 613 492 613 535 369 538 634 319 299 1000 310 944 645 577 613 613 471 451 352 634 579 1000 1000 564 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] +[259 500 500 500 500 500 500 500 500 500 500 500 250 500 250 500 500 559 559 559 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 623 937 500 500 604 500 500 500 612 500 500 500 500 500 500 500 500 500 500 500 500 562 613 492 613 535 369 538 634 319 299 500 310 944 645 577 613 613 471 451 352 634 579 500 500 564 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 36 0000000000 65535 f 0000000015 00000 n -0000000278 00000 n -0000000480 00000 n -0000000551 00000 n -0000000602 00000 n -0000000874 00000 n -0000002837 00000 n -0000003176 00000 n -0000003345 00000 n -0000003387 00000 n -0000003436 00000 n -0000003537 00000 n -0000003702 00000 n -0000005004 00000 n -0000005345 00000 n -0000005389 00000 n -0000006964 00000 n -0000007305 00000 n -0000007349 00000 n -0000007423 00000 n -0000007625 00000 n -0000007801 00000 n -0000007960 00000 n -0000008035 00000 n -0000008305 00000 n -0000008575 00000 n -0000008845 00000 n -0000009115 00000 n -0000012550 00000 n -0000012769 00000 n -0000014131 00000 n -0000015250 00000 n -0000019680 00000 n -0000019894 00000 n -0000021256 00000 n +0000000264 00000 n +0000000466 00000 n +0000000537 00000 n +0000000588 00000 n +0000000860 00000 n +0000002823 00000 n +0000003162 00000 n +0000003331 00000 n +0000003373 00000 n +0000003422 00000 n +0000003523 00000 n +0000003688 00000 n +0000004990 00000 n +0000005331 00000 n +0000005375 00000 n +0000006950 00000 n +0000007291 00000 n +0000007335 00000 n +0000007409 00000 n +0000007611 00000 n +0000007787 00000 n +0000007946 00000 n +0000008021 00000 n +0000008291 00000 n +0000008561 00000 n +0000008831 00000 n +0000009101 00000 n +0000014995 00000 n +0000015212 00000 n +0000016566 00000 n +0000017480 00000 n +0000024478 00000 n +0000024690 00000 n +0000026044 00000 n trailer << /Size 36 /Root 2 0 R /Info 1 0 R >> startxref -22362 +26958 %%EOF Binary files /tmp/tmpt4_ch8xp/ZKYLJnGbNa/ruby-asciidoctor-pdf-1.6.1/spec/reference/running-content-image-alignment.pdf and /tmp/tmpt4_ch8xp/3TjBp6ibbJ/ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-image-alignment.pdf differ diff -Nru ruby-asciidoctor-pdf-1.6.1/spec/reference/running-content-image-fit.pdf ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-image-fit.pdf --- ruby-asciidoctor-pdf-1.6.1/spec/reference/running-content-image-fit.pdf 2021-09-04 22:01:20.000000000 +0000 +++ ruby-asciidoctor-pdf-1.6.2/spec/reference/running-content-image-fit.pdf 2021-12-31 12:03:00.000000000 +0000 @@ -2,10 +2,10 @@ % 1 0 obj << /Title (Untitled) -/Creator (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) -/Producer (Asciidoctor PDF 1.5.0.beta.1.dev, based on Prawn 2.2.2) -/ModDate (D:20190620012116-06'00') -/CreationDate (D:20190620012116-06'00') +/Creator (Asciidoctor PDF 1.6.2.dev, based on Prawn 2.4.0) +/Producer (Asciidoctor PDF 1.6.2.dev, based on Prawn 2.4.0) +/ModDate (D:20211114135616+01'00') +/CreationDate (D:20211114135616+01'00') >> endobj 2 0 obj @@ -15,7 +15,7 @@ /Outlines 12 0 R /PageLabels 14 0 R /PageMode /UseOutlines -/OpenAction [7 0 R /FitH 842.89] +/OpenAction [7 0 R /FitH 841.89] /ViewerPreferences << /DisplayDocTitle true >> >> @@ -48,7 +48,7 @@ >> endobj 6 0 obj -<< /Length 26549 +<< /Length 26439 >> stream q @@ -95,8 +95,8 @@ h W n 0.0 0.0 0.0 scn -0.99760 0.00000 0.00000 0.99760 0.59462 2.00128 cm -1.00000 0.00000 0.00000 1.00000 0.00000 0.00000 cm +0.9976 0.0 0.0 0.9976 0.59462 2.00128 cm +1.0 0.0 0.0 1.0 0.0 0.0 cm q Q q @@ -141,7 +141,7 @@ 1.0 1.0 1.0 scn q q -0.10000 0.00000 0.00000 0.10000 222.98400 750.47940 cm +0.1 0.0 0.0 0.1 222.984 750.4794 cm q /Tr1 gs 0.0039 0.0039 0.0039 scn @@ -205,20 +205,20 @@ 436.2542 733.4414 435.0368 731.1855 435.0368 728.1777 c 435.0368 725.886 435.9141 724.0778 437.6686 722.7529 c 439.4231 721.4638 442.9501 720.2285 448.2496 719.0468 c -451.6334 718.2949 l -458.6514 716.7909 463.6287 714.6604 466.5654 711.9033 c -469.5374 709.1819 471.0234 705.3686 471.0234 700.4633 c -471.0234 694.8773 468.8033 690.455 464.3632 687.1963 c +451.6334 718.2948 l +458.6514 716.7909 463.6287 714.6604 466.5654 711.9032 c +469.5374 709.1819 471.0234 705.3686 471.0234 700.4632 c +471.0234 694.8773 468.8033 690.455 464.3632 687.1962 c 459.9589 683.9378 453.8896 682.3086 446.1552 682.3086 c 442.9325 682.3086 439.5665 682.6308 436.0572 683.2754 c 432.5839 683.8841 428.9135 684.8151 425.0462 686.0684 c 425.0462 696.2734 l -428.6985 694.3756 432.2972 692.9433 435.8422 691.9765 c -439.3871 691.0455 442.8961 690.58 446.3692 690.58 c -451.0241 690.58 454.6048 691.3677 457.1112 692.9433 c -459.6177 694.5546 460.871 696.8105 460.871 699.7109 c -460.871 702.3964 459.9579 704.4553 458.1317 705.8877 c -456.3414 707.3199 452.3847 708.6985 446.2617 710.0235 c +428.6985 694.3756 432.2972 692.9432 435.8422 691.9764 c +439.3871 691.0454 442.8961 690.58 446.3692 690.58 c +451.0241 690.58 454.6048 691.3677 457.1112 692.9432 c +459.6177 694.5546 460.871 696.8104 460.871 699.7108 c +460.871 702.3964 459.9579 704.4553 458.1317 705.8876 c +456.3414 707.3199 452.3847 708.6985 446.2617 710.0234 c 442.8242 710.8291 l 436.7011 712.1182 432.2788 714.0876 429.5572 716.7373 c 426.8359 719.4228 425.4752 723.0932 425.4752 727.7483 c @@ -262,20 +262,20 @@ 537.4142 733.4414 536.1968 731.1855 536.1968 728.1777 c 536.1968 725.886 537.0741 724.0778 538.8286 722.7529 c 540.5831 721.4638 544.1101 720.2285 549.4096 719.0468 c -552.7934 718.2949 l -559.8114 716.7909 564.7887 714.6604 567.7254 711.9033 c -570.6974 709.1819 572.1834 705.3686 572.1834 700.4633 c -572.1834 694.8773 569.9633 690.455 565.5232 687.1963 c +552.7934 718.2948 l +559.8114 716.7909 564.7887 714.6604 567.7254 711.9032 c +570.6974 709.1819 572.1834 705.3686 572.1834 700.4632 c +572.1834 694.8773 569.9633 690.455 565.5232 687.1962 c 561.1189 683.9378 555.0496 682.3086 547.3152 682.3086 c 544.0925 682.3086 540.7265 682.6308 537.2172 683.2754 c 533.7439 683.8841 530.0735 684.8151 526.2062 686.0684 c 526.2062 696.2734 l -529.8585 694.3756 533.4572 692.9433 537.0022 691.9765 c -540.5471 691.0455 544.0561 690.58 547.5292 690.58 c -552.1841 690.58 555.7648 691.3677 558.2712 692.9433 c -560.7777 694.5546 562.031 696.8105 562.031 699.7109 c -562.031 702.3964 561.1179 704.4553 559.2917 705.8877 c -557.5013 707.3199 553.5446 708.6985 547.4217 710.0235 c +529.8585 694.3756 533.4572 692.9432 537.0022 691.9764 c +540.5471 691.0454 544.0561 690.58 547.5292 690.58 c +552.1841 690.58 555.7648 691.3677 558.2712 692.9432 c +560.7777 694.5546 562.031 696.8104 562.031 699.7108 c +562.031 702.3964 561.1179 704.4553 559.2917 705.8876 c +557.5013 707.3199 553.5446 708.6985 547.4217 710.0234 c 543.9842 710.8291 l 537.8611 712.1182 533.4388 714.0876 530.7172 716.7373 c 527.9959 719.4228 526.6352 723.0932 526.6352 727.7483 c @@ -291,7 +291,7 @@ Q q q -0.10000 0.00000 0.00000 0.10000 222.98400 750.47940 cm +0.1 0.0 0.0 0.1 222.984 750.4794 cm q 2 j 327.748 771.102 m @@ -352,20 +352,20 @@ 436.2542 743.4414 435.0368 741.1855 435.0368 738.1777 c 435.0368 735.886 435.9141 734.0778 437.6686 732.7529 c 439.4231 731.4638 442.9501 730.2285 448.2496 729.0468 c -451.6334 728.2949 l -458.6514 726.7909 463.6287 724.6604 466.5654 721.9033 c -469.5374 719.1819 471.0234 715.3686 471.0234 710.4633 c -471.0234 704.8773 468.8033 700.455 464.3632 697.1963 c +451.6334 728.2948 l +458.6514 726.7909 463.6287 724.6604 466.5654 721.9032 c +469.5374 719.1819 471.0234 715.3686 471.0234 710.4632 c +471.0234 704.8773 468.8033 700.455 464.3632 697.1962 c 459.9589 693.9378 453.8896 692.3086 446.1552 692.3086 c 442.9325 692.3086 439.5665 692.6308 436.0572 693.2754 c 432.5839 693.8841 428.9135 694.8151 425.0462 696.0684 c 425.0462 706.2734 l -428.6985 704.3756 432.2972 702.9433 435.8422 701.9765 c -439.3871 701.0455 442.8961 700.58 446.3692 700.58 c -451.0241 700.58 454.6048 701.3677 457.1112 702.9433 c -459.6177 704.5546 460.871 706.8105 460.871 709.7109 c -460.871 712.3964 459.9579 714.4553 458.1317 715.8877 c -456.3414 717.3199 452.3847 718.6985 446.2617 720.0235 c +428.6985 704.3756 432.2972 702.9432 435.8422 701.9764 c +439.3871 701.0454 442.8961 700.58 446.3692 700.58 c +451.0241 700.58 454.6048 701.3677 457.1112 702.9432 c +459.6177 704.5546 460.871 706.8104 460.871 709.7108 c +460.871 712.3964 459.9579 714.4553 458.1317 715.8876 c +456.3414 717.3199 452.3847 718.6985 446.2617 720.0234 c 442.8242 720.8291 l 436.7011 722.1182 432.2788 724.0876 429.5572 726.7373 c 426.8359 729.4228 425.4752 733.0932 425.4752 737.7483 c @@ -409,20 +409,20 @@ 537.4142 743.4414 536.1968 741.1855 536.1968 738.1777 c 536.1968 735.886 537.0741 734.0778 538.8286 732.7529 c 540.5831 731.4638 544.1101 730.2285 549.4096 729.0468 c -552.7934 728.2949 l -559.8114 726.7909 564.7887 724.6604 567.7254 721.9033 c -570.6974 719.1819 572.1834 715.3686 572.1834 710.4633 c -572.1834 704.8773 569.9633 700.455 565.5232 697.1963 c +552.7934 728.2948 l +559.8114 726.7909 564.7887 724.6604 567.7254 721.9032 c +570.6974 719.1819 572.1834 715.3686 572.1834 710.4632 c +572.1834 704.8773 569.9633 700.455 565.5232 697.1962 c 561.1189 693.9378 555.0496 692.3086 547.3152 692.3086 c 544.0925 692.3086 540.7265 692.6308 537.2172 693.2754 c 533.7439 693.8841 530.0735 694.8151 526.2062 696.0684 c 526.2062 706.2734 l -529.8585 704.3756 533.4572 702.9433 537.0022 701.9765 c -540.5471 701.0455 544.0561 700.58 547.5292 700.58 c -552.1841 700.58 555.7648 701.3677 558.2712 702.9433 c -560.7777 704.5546 562.031 706.8105 562.031 709.7109 c -562.031 712.3964 561.1179 714.4553 559.2917 715.8877 c -557.5013 717.3199 553.5446 718.6985 547.4217 720.0235 c +529.8585 704.3756 533.4572 702.9432 537.0022 701.9764 c +540.5471 701.0454 544.0561 700.58 547.5292 700.58 c +552.1841 700.58 555.7648 701.3677 558.2712 702.9432 c +560.7777 704.5546 562.031 706.8104 562.031 709.7108 c +562.031 712.3964 561.1179 714.4553 559.2917 715.8876 c +557.5013 717.3199 553.5446 718.6985 547.4217 720.0234 c 543.9842 720.8291 l 537.8611 722.1182 533.4388 724.0876 530.7172 726.7373 c 527.9959 729.4228 526.6352 733.0932 526.6352 737.7483 c @@ -437,7 +437,7 @@ Q q q -0.10000 0.00000 0.00000 0.10000 222.98400 750.47940 cm +0.1 0.0 0.0 0.1 222.984 750.4794 cm q /Tr1 gs 0.0039 0.0039 0.0039 scn @@ -659,7 +659,7 @@ Q q q -0.10000 0.00000 0.00000 0.10000 222.98400 750.47940 cm +0.1 0.0 0.0 0.1 222.984 750.4794 cm q 2 j 708.06 724.646 m @@ -928,7 +928,7 @@ endobj 11 0 obj << /Type /Font -/BaseFont /7e34a1+NotoSerif +/BaseFont /3effb8+NotoSerif /Subtype /TrueType /FontDescriptor 17 0 R /FirstChar 32 @@ -963,29 +963,34 @@ >> endobj 16 0 obj -<< /Length1 3100 -/Length 1842 +<< /Length1 7304 +/Length 4354 /Filter [/FlateDecode] >> stream -xU[l!%Kc˞;MQRĉEYQ'N}iFK -ђT( -]ˀb݀և.6 0i֥+P%['.OpH9G@=`r${eҔ+./*1-'8Ɲ/ie q[>/?ا11~$/1NaÖ́wYϔebI8Љ_He_b#`W;|D>E-uvP[@E9؃q=K?]?t Ρө/<_|s+\O%F=ϿGj  b^j3uI^tdh'~Ez☺TKnďw(?0x̫4(%8~G1Ʊg#2OgGZvFwއuxtx #S%! sl1Mhpt?׭0=Pkp `'cOw'5K-ƀt:%{P/JXWCXfAoI\ihS돆zۜް!qc [lC }zK0+.nē۹擣;ye4e;k5U]$SwlG^N{3cc0yg;u vGLG/w gI: <; SUW& sBQL4k^tXO3Xm[$=>ra;EQI(tu#גkykNە-_F9Bu=t\h{Pxȵ'ۘ͸+m.oH:muS`{:]:$9K]oֿ~x~K( ps.Ǿ -۰}׍|L'wUc"5p s<Gqpخb d~Zk!8#SS#p\%z7q?!Jj[^dnCWX.֨Yu Y8zxh@޷p\Y۠$,IYj @TkL ȋ/y빜p錅`>c-o1I ~愅oy·)W^Y1vtH)/\^=(?(ď,iOKI}J -0 -aT(@6FO8wFWAFc C|DY3)!Sxς0h -?#yD 3OKjQTi9""+b%\A!~2&"^Ti9CV -G8_C`G3$oUJc0&u‹Y$gye~RLDlf$\ -gS/&)Rɼ&-f4T6%JUJW|Aְb,)-M)k"Mޔ) 9Lo!&pFJBδX(p9BYOiƅ+&<Lel7ayaaA(Y2+Z5[P`^0ܯw*f/d$U嬤Z^bVO7^QqNdcZ>f͚4|ț b>ǭEF5i@P\*^)*zFW7g 27X3xe7vlon:cWw;λ9󴵮QeE +x9mP[Wv' !00ll!X$| ɒ%R, ǎ͇ĉ[I6$if?2;vti3f:iLۯLgkPϽzq>q;s}J#n[H!f X(:y@NL>_!|e:J@~`C_<=s<~s`D0syWql aIh.̦<"H8Oňp +xlXBo#cYk +7&4DgDRNVC3w[+1\/,6v}Ez`/z/^C-D @B=[3hsK^zN`c`? +kĿ'gmHşC|.P4Z hn ##` +r1O >4yZX(G{f`;5/#جy |K.*m;>τ{|ltdx݃.Ǿޮ{:wؾfmjܲ.RSU^j2)2 tZ(htJU^hbDBB@HrQhՒv &iIW$vAWS#uJTCdO8ÚzAbA ꬊ8BԩF2΀-> "RHp@\@U:g0ojTJ$gA7nFY$]h|/Ԣ & !)EsH)K0[Jyѯc&Ӂ9XŸ\$"/S4y/ϩ0|Cn_F $'ɠ2?t+dRJ4[LY)isYQ TcZPV1q33:/-;%48%g@;BQhȕ~§؃j 6DQ/bJԻRO3qUM)S%j)6y ߶Xo>`1;ЖNw0Õ}؃Ό/Vj0-ݏ&OlnYxt7rKCc};Ԡs fNS͌3`{*:= fя&$PRoJA é{!/a([Svr _eTZo oMP7`-Q@6U` 4p{*I"TXzxEduXݒ,LXGX2W*_Anc4f\R F>kwR3R\Al1u kCy UCdh| 95`'}{jw^ B_׿p|P|pfi=7c\ 'p|j4SBfir4; TIC>#8TbF(DH D+IU^Frt`gJ`䔾jwfO9QRZ!M <>~"HlHh`TCʡ$oi @}e^._y} x909s??<9z]az׸?qx >_Wh!G4~[Z[^D[Ї6n7t@|ƻ%2/ 'w}ϰZ6 i KxaTJ kp~*uBbصn}K-^WD/8 >^^¸yKĩ*t[ +#I?k3 +gv71 $Zm:K%,/لiI;*9V[k:ڻj\'[ʶm۫IEy 8¯?tA~2l?xÎ{U}c;ַtw6{{gzӿUe!+WzԐo?HKՖ 5][ڝu橣Ch um"OBiypSmB`J{f뽵:2d6Imݝ/Vux];3klN6m6xsp|>/2PѦ 4alF`JZ,鋫qD }{_^~6/_ZӟdT9O|&\W,WW.\`+JDT@lo`+nmUÉOR)^ǧj- WKёsKIy`謽e^ jҋg뱑M%a #`8b.WVbk[4Vo^f8+zrө[Z[Mwd`XmaU6o]Z^GѺFa1L& @b+]L0b$l6pTa6]5( B1>sLRgm;{*\]6Fn7V~թ3T^CH> < CLʅ*,@hRa:j@Sa-T3*\1oSwp!l?WalP"Ub +\Wh/x/8NGҴ32MYi gSrqꖓ<=7L T NGcӴޔ yd*k697)d0$xPd!1:!gtF4k6naϪ\h|"!4uIa&:%Rs.4{pIȱ@#+P4NF'p5%1Z㦃Zt7}# g|gxb#od18182 ణQ 'IcJxFg3Q*,}4ϭ$ ƦӸB~69>?*'c\sI:,5_T2H5@GxrHBo@g +ȍ#}d\4{BRf>☌wm9èAQ|3i½VY޳B#R-> endobj 18 0 obj -<< /Length 1286 +<< /Length 1278 /Filter [/FlateDecode] >> stream -xenFὮBtHs&@nu{stԒ + }i /y_!ut~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=nPҪtN*eP)DT.ʕrU)BYTVʪQ6[ky ^#k5x5F^ky ^#k5x5F^kZy-^+kxZV^kZy-^+kxZV^:y^'uxu:N^:y^'uxu:N^zy=^/xz^^zy=^/xz^ހ7y o xo7 Aހ7y o xo7 Aވ7Fy#(oĻnuW.I$$*I$ITH$$QI"IDD%$JI$$*I$ITH$$III$$%I$I|›Mx o7M&Iބ7ɛ&y$o›Mx o7M.xyUo ުMMol x; -JÂ31x; -JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x Vz[YEVY_}/7*Y%eӫq+:.7JE/3Y(Y*AW RVJS:(u@cD]a*f)9J)o,#\Z>MU\jPS {HSMj{fkyGm[z*Esa>&ӫj%u; 2^W[®v[2쯲u[P:V̡Յ> MBi2 .Ħԇ!dk`=o qWޕwdJF(L164U)x0E~Z?=/ί~:o?$O +xenFὮBtHs&@nu{stԒ + }ik/y_!}t~]snVyg쾝+|<.÷}v)[eO/_q9_ɯ}ഏOmt_LLv͵LJ1w9)e6=n?[i(JKiU:JSz2QeL*EJ̔Ye,*+eU(NU-уk5x5F^ky ^#k5x5F^ky ^#kxZV^kZy-^+kxZV^kZy-^+uxu:N^:y^'uxu:N^:y^'xz^^zy=^/xz^^zy=^/o xo7 Aހ7y o xo7 Aހ7y oxo7jo$JI$$*I$ITH$$QI"IDD%$JI$$*I$ITD$$III$$u>M&Iބ7ɛ&y$o›Mx o7M&Iބ7ɛ&yUoa[5joSor4ۂsޮ>,x/x;Â31x; +JJ특xxx+!ÊwBxbx+ށr;2kΜJYeY7+|x oS7+[ƛețךyޢoV浖 -㭌"RW*4XqC^J[(^1»y]k}YM-x e#e_y+h܊7k:/Z5dUluz5n[eB&Si|y(%q& %+S%*ABijPU6\h,(+L,4G5sh>:OVRP*#i|e0U,*oU/*[U,Nmlx:&\}M)L2\%CHF7էʻBL)jƻJ1:%H߯:=S۳zrmkO媳7 endstream endobj 19 0 obj -[1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 492 1000 535 1000 1000 1000 1000 1000 1000 1000 1000 645 577 1000 1000 1000 1000 352 1000 1000 1000 578 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000] +[259 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 492 500 535 500 500 500 500 500 500 500 500 645 577 500 500 500 500 352 500 500 500 578 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500] endobj xref 0 20 0000000000 65535 f 0000000015 00000 n -0000000262 00000 n -0000000463 00000 n -0000000520 00000 n -0000000571 00000 n -0000000843 00000 n -0000027445 00000 n -0000027771 00000 n -0000027813 00000 n -0000027861 00000 n -0000027913 00000 n -0000028078 00000 n -0000028152 00000 n -0000028277 00000 n -0000028322 00000 n -0000028375 00000 n -0000030307 00000 n -0000030521 00000 n -0000031883 00000 n +0000000248 00000 n +0000000449 00000 n +0000000506 00000 n +0000000557 00000 n +0000000829 00000 n +0000027321 00000 n +0000027647 00000 n +0000027689 00000 n +0000027737 00000 n +0000027789 00000 n +0000027954 00000 n +0000028028 00000 n +0000028153 00000 n +0000028198 00000 n +0000028251 00000 n +0000032695 00000 n +0000032907 00000 n +0000034261 00000 n trailer << /Size 20 /Root 2 0 R /Info 1 0 R >> startxref -33015 +35175 %%EOF