booky 0.0.4 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/.pdf +0 -0
- data/README.textile +35 -8
- data/booky.gemspec +7 -2
- data/lib/booky.rb +40 -36
- data/lib/booky/ast.rb +10 -0
- data/lib/booky/exceptions.rb +1 -1
- data/lib/booky/layout.rb +103 -0
- data/lib/booky/layout/base.rb +70 -0
- data/lib/booky/layout/base/author.rb +15 -0
- data/lib/booky/layout/base/blockquote.rb +58 -0
- data/lib/booky/layout/base/chart.rb +26 -0
- data/lib/booky/layout/base/charts/bar.rb +164 -0
- data/lib/booky/layout/base/charts/base.rb +82 -0
- data/lib/booky/layout/base/charts/line.rb +249 -0
- data/lib/booky/layout/base/code.rb +185 -0
- data/lib/booky/layout/base/copyright.rb +16 -0
- data/lib/booky/layout/base/footnote.rb +10 -0
- data/lib/booky/layout/base/h0.rb +26 -0
- data/lib/booky/layout/base/h1.rb +29 -0
- data/lib/booky/layout/base/h2.rb +29 -0
- data/lib/booky/layout/base/h3.rb +29 -0
- data/lib/booky/layout/base/h4.rb +29 -0
- data/lib/booky/layout/base/image.rb +39 -0
- data/lib/booky/layout/base/import.rb +11 -0
- data/lib/booky/layout/base/numbered_list.rb +45 -0
- data/lib/booky/layout/base/outline.rb +21 -0
- data/lib/booky/layout/base/p.rb +15 -0
- data/lib/booky/layout/base/subtitle.rb +18 -0
- data/lib/booky/layout/base/table.rb +58 -0
- data/lib/booky/layout/base/title.rb +22 -0
- data/lib/booky/layout/base/toc.rb +131 -0
- data/lib/booky/layout/base/tof.rb +73 -0
- data/lib/booky/layout/base/unnumbered_list.rb +36 -0
- data/lib/booky/layout/element.rb +28 -0
- data/lib/booky/layout/helpers.rb +29 -0
- data/lib/booky/pdf.rb +12 -10
- data/lib/booky/textile.rb +6 -4
- data/lib/booky/textile/load.rb +1 -1
- data/lib/booky/textile/precompiler.rb +1 -0
- data/lib/booky/textile/source.rb +31 -5
- data/lib/booky/textile/table.rb +52 -0
- data/lib/booky/version.rb +1 -1
- data/pdfs/Rakefile +16 -0
- data/pdfs/blockquote_source.pdf +15641 -1
- data/pdfs/footnotes.pdf +1991 -0
- data/pdfs/link_image.pdf +0 -0
- data/pdfs/lists.pdf +706 -1
- data/pdfs/tables.pdf +2162 -0
- data/pdfs/title_subtitle.pdf +3454 -0
- data/spec/ast_spec.rb +12 -0
- data/{lib/fop/lib → spec/fixtures}/.DS_Store +0 -0
- data/spec/fixtures/bar_chart.json +35 -0
- data/spec/fixtures/blockquote_pagebreak.textile +27 -0
- data/spec/fixtures/blockquote_source.textile +35 -0
- data/spec/fixtures/chart.textile +9 -0
- data/spec/fixtures/footnotes.textile +57 -0
- data/spec/fixtures/footnotes_tables.textile +29 -0
- data/spec/fixtures/image_big.jpg +0 -0
- data/spec/fixtures/image_small.jpg +0 -0
- data/spec/fixtures/import.textile +7 -0
- data/spec/fixtures/line_chart.json +49 -0
- data/spec/fixtures/link_image.textile +18 -0
- data/spec/fixtures/lists.textile +98 -0
- data/spec/fixtures/request_flow.pdf +477 -0
- data/spec/fixtures/some_code.rb +138 -0
- data/spec/fixtures/some_text.txt +10 -0
- data/spec/fixtures/source_plain_text.textile +1 -0
- data/spec/fixtures/tables.textile +42 -0
- data/spec/fixtures/textile/basic.textile +3 -0
- data/spec/fixtures/textile/source/precompiled_index.textile +2 -2
- data/spec/fixtures/textile/tables/names.xls +0 -0
- data/spec/fixtures/textile/tables/request_limits_hardware.xls +0 -0
- data/spec/fixtures/title_subtitle.textile +110 -0
- data/spec/helpers.rb +2 -1
- data/spec/pdf_spec.rb +107 -0
- data/test.pdf +16657 -0
- metadata +152 -1551
- data/lib/booky/docbook.rb +0 -13
- data/lib/booky/fo.rb +0 -15
- data/lib/booky/fonts.rb +0 -104
- data/lib/custom_fonts.xml +0 -91
- data/lib/fop/KEYS +0 -248
- data/lib/fop/LICENSE +0 -202
- data/lib/fop/NOTICE +0 -10
- data/lib/fop/README +0 -286
- data/lib/fop/build/fop.jar +0 -0
- data/lib/fop/conf/fop.xconf +0 -464
- data/lib/fop/fop +0 -254
- data/lib/fop/fop.bat +0 -85
- data/lib/fop/fop.cmd +0 -75
- data/lib/fop/fop.js +0 -341
- data/lib/fop/lib/README.txt +0 -243
- data/lib/fop/lib/avalon-framework-4.2.0.jar +0 -0
- data/lib/fop/lib/avalon-framework.LICENSE.txt +0 -175
- data/lib/fop/lib/avalon-framework.NOTICE.TXT +0 -11
- data/lib/fop/lib/batik-all-1.7.jar +0 -0
- data/lib/fop/lib/batik.LICENSE.txt +0 -201
- data/lib/fop/lib/batik.NOTICE.txt +0 -18
- data/lib/fop/lib/commons-io-1.3.1.jar +0 -0
- data/lib/fop/lib/commons-io.LICENSE.txt +0 -203
- data/lib/fop/lib/commons-io.NOTICE.txt +0 -6
- data/lib/fop/lib/commons-logging-1.0.4.jar +0 -0
- data/lib/fop/lib/commons-logging.LICENSE.txt +0 -202
- data/lib/fop/lib/commons-logging.NOTICE.txt +0 -3
- data/lib/fop/lib/jeuclid-core-3.1.9.jar +0 -0
- data/lib/fop/lib/jeuclid-fop-3.1.9.jar +0 -0
- data/lib/fop/lib/serializer-2.7.0.jar +0 -0
- data/lib/fop/lib/serializer.LICENSE.txt +0 -201
- data/lib/fop/lib/serializer.NOTICE.txt +0 -15
- data/lib/fop/lib/xalan-2.7.0.jar +0 -0
- data/lib/fop/lib/xalan.BCEL.LICENSE.txt +0 -52
- data/lib/fop/lib/xalan.LICENSE.txt +0 -202
- data/lib/fop/lib/xalan.NOTICE.txt +0 -44
- data/lib/fop/lib/xalan.regexp.LICENSE.txt +0 -52
- data/lib/fop/lib/xalan.runtime.LICENSE.txt +0 -20
- data/lib/fop/lib/xerces.LICENSE.txt +0 -56
- data/lib/fop/lib/xercesImpl-2.7.1.jar +0 -0
- data/lib/fop/lib/xercesImpl.LICENSE.txt +0 -201
- data/lib/fop/lib/xercesImpl.NOTICE.txt +0 -14
- data/lib/fop/lib/xml-apis-1.3.04.jar +0 -0
- data/lib/fop/lib/xml-apis-ext-1.3.04.jar +0 -0
- data/lib/fop/lib/xml-apis-ext.LICENSE.dom-documentation.txt +0 -73
- data/lib/fop/lib/xml-apis-ext.LICENSE.dom-software.txt +0 -61
- data/lib/fop/lib/xml-apis-ext.LICENSE.sac.html +0 -75
- data/lib/fop/lib/xml-apis-ext.LICENSE.txt +0 -202
- data/lib/fop/lib/xml-apis-ext.NOTICE.txt +0 -16
- data/lib/fop/lib/xml-apis-ext.README.dom.txt +0 -56
- data/lib/fop/lib/xml-apis.LICENSE-SAX.html +0 -17
- data/lib/fop/lib/xml-apis.LICENSE.DOM-documentation.html +0 -74
- data/lib/fop/lib/xml-apis.LICENSE.DOM-software.html +0 -66
- data/lib/fop/lib/xml-apis.LICENSE.txt +0 -201
- data/lib/fop/lib/xml-apis.NOTICE.txt +0 -13
- data/lib/fop/lib/xmlgraphics-commons-1.4.jar +0 -0
- data/lib/fop/lib/xmlgraphics-commons.LICENSE.txt +0 -202
- data/lib/fop/lib/xmlgraphics-commons.NOTICE.txt +0 -5
- data/lib/fop/lib/xslthl-2.0.2.jar +0 -0
- data/lib/fop/status.xml +0 -1809
- data/lib/params.pdf +0 -0
- data/lib/stylesheets/.CatalogManager.properties.example +0 -61
- data/lib/stylesheets/.urilist +0 -1
- data/lib/stylesheets/AUTHORS +0 -4
- data/lib/stylesheets/BUGS +0 -21
- data/lib/stylesheets/COPYING +0 -47
- data/lib/stylesheets/INSTALL +0 -88
- data/lib/stylesheets/Makefile +0 -89
- data/lib/stylesheets/NEWS +0 -139
- data/lib/stylesheets/NEWS.html +0 -25
- data/lib/stylesheets/NEWS.xml +0 -145
- data/lib/stylesheets/README +0 -166
- data/lib/stylesheets/RELEASE-NOTES.html +0 -8353
- data/lib/stylesheets/RELEASE-NOTES.pdf +6 -24345
- data/lib/stylesheets/RELEASE-NOTES.txt +0 -8575
- data/lib/stylesheets/RELEASE-NOTES.xml +0 -10327
- data/lib/stylesheets/TODO +0 -23
- data/lib/stylesheets/VERSION +0 -115
- data/lib/stylesheets/catalog.xml +0 -8
- data/lib/stylesheets/common/addns.xsl +0 -118
- data/lib/stylesheets/common/af.xml +0 -1229
- data/lib/stylesheets/common/am.xml +0 -1229
- data/lib/stylesheets/common/ar.xml +0 -1229
- data/lib/stylesheets/common/as.xml +0 -660
- data/lib/stylesheets/common/ast.xml +0 -660
- data/lib/stylesheets/common/autoidx-kimber.xsl +0 -45
- data/lib/stylesheets/common/autoidx-kosek.xsl +0 -155
- data/lib/stylesheets/common/az.xml +0 -672
- data/lib/stylesheets/common/bg.xml +0 -724
- data/lib/stylesheets/common/bn.xml +0 -1229
- data/lib/stylesheets/common/bn_in.xml +0 -660
- data/lib/stylesheets/common/bs.xml +0 -662
- data/lib/stylesheets/common/ca.xml +0 -660
- data/lib/stylesheets/common/charmap.xml +0 -185
- data/lib/stylesheets/common/charmap.xsl +0 -222
- data/lib/stylesheets/common/common.xml +0 -622
- data/lib/stylesheets/common/common.xsl +0 -2040
- data/lib/stylesheets/common/cs.xml +0 -700
- data/lib/stylesheets/common/cy.xml +0 -1245
- data/lib/stylesheets/common/da.xml +0 -664
- data/lib/stylesheets/common/de.xml +0 -666
- data/lib/stylesheets/common/el.xml +0 -729
- data/lib/stylesheets/common/en.xml +0 -1230
- data/lib/stylesheets/common/entities.ent +0 -67
- data/lib/stylesheets/common/eo.xml +0 -1229
- data/lib/stylesheets/common/es.xml +0 -676
- data/lib/stylesheets/common/et.xml +0 -1229
- data/lib/stylesheets/common/eu.xml +0 -1229
- data/lib/stylesheets/common/fa.xml +0 -660
- data/lib/stylesheets/common/fi.xml +0 -670
- data/lib/stylesheets/common/fr.xml +0 -690
- data/lib/stylesheets/common/ga.xml +0 -1229
- data/lib/stylesheets/common/gentext.xsl +0 -840
- data/lib/stylesheets/common/gl.xml +0 -1229
- data/lib/stylesheets/common/gu.xml +0 -660
- data/lib/stylesheets/common/he.xml +0 -1229
- data/lib/stylesheets/common/hi.xml +0 -660
- data/lib/stylesheets/common/hr.xml +0 -662
- data/lib/stylesheets/common/hu.xml +0 -678
- data/lib/stylesheets/common/id.xml +0 -1229
- data/lib/stylesheets/common/insertfile.xsl +0 -113
- data/lib/stylesheets/common/is.xml +0 -672
- data/lib/stylesheets/common/it.xml +0 -1229
- data/lib/stylesheets/common/ja.xml +0 -660
- data/lib/stylesheets/common/ka.xml +0 -700
- data/lib/stylesheets/common/kn.xml +0 -1229
- data/lib/stylesheets/common/ko.xml +0 -1229
- data/lib/stylesheets/common/ky.xml +0 -732
- data/lib/stylesheets/common/l10n.dtd +0 -64
- data/lib/stylesheets/common/l10n.xml +0 -77
- data/lib/stylesheets/common/l10n.xsl +0 -594
- data/lib/stylesheets/common/la.xml +0 -1229
- data/lib/stylesheets/common/labels.xsl +0 -888
- data/lib/stylesheets/common/lt.xml +0 -678
- data/lib/stylesheets/common/lv.xml +0 -1229
- data/lib/stylesheets/common/ml.xml +0 -660
- data/lib/stylesheets/common/mn.xml +0 -730
- data/lib/stylesheets/common/mr.xml +0 -660
- data/lib/stylesheets/common/nb.xml +0 -1229
- data/lib/stylesheets/common/nds.xml +0 -666
- data/lib/stylesheets/common/nl.xml +0 -660
- data/lib/stylesheets/common/nn.xml +0 -1229
- data/lib/stylesheets/common/olink.xsl +0 -1227
- data/lib/stylesheets/common/or.xml +0 -1229
- data/lib/stylesheets/common/pa.xml +0 -660
- data/lib/stylesheets/common/pi.xml +0 -168
- data/lib/stylesheets/common/pi.xsl +0 -347
- data/lib/stylesheets/common/pl.xml +0 -678
- data/lib/stylesheets/common/pt.xml +0 -1229
- data/lib/stylesheets/common/pt_br.xml +0 -1229
- data/lib/stylesheets/common/refentry.xml +0 -781
- data/lib/stylesheets/common/refentry.xsl +0 -1353
- data/lib/stylesheets/common/ro.xml +0 -1229
- data/lib/stylesheets/common/ru.xml +0 -726
- data/lib/stylesheets/common/sk.xml +0 -1229
- data/lib/stylesheets/common/sl.xml +0 -1229
- data/lib/stylesheets/common/sq.xml +0 -1229
- data/lib/stylesheets/common/sr.xml +0 -720
- data/lib/stylesheets/common/sr_Latn.xml +0 -679
- data/lib/stylesheets/common/subtitles.xsl +0 -156
- data/lib/stylesheets/common/sv.xml +0 -664
- data/lib/stylesheets/common/ta.xml +0 -660
- data/lib/stylesheets/common/table.xsl +0 -515
- data/lib/stylesheets/common/targetdatabase.dtd +0 -49
- data/lib/stylesheets/common/targets.xsl +0 -334
- data/lib/stylesheets/common/te.xml +0 -660
- data/lib/stylesheets/common/th.xml +0 -1229
- data/lib/stylesheets/common/titles.xsl +0 -806
- data/lib/stylesheets/common/tl.xml +0 -1229
- data/lib/stylesheets/common/tr.xml +0 -666
- data/lib/stylesheets/common/uk.xml +0 -726
- data/lib/stylesheets/common/utility.xml +0 -259
- data/lib/stylesheets/common/utility.xsl +0 -291
- data/lib/stylesheets/common/vi.xml +0 -1229
- data/lib/stylesheets/common/xh.xml +0 -1229
- data/lib/stylesheets/common/zh.xml +0 -660
- data/lib/stylesheets/common/zh_cn.xml +0 -660
- data/lib/stylesheets/common/zh_tw.xml +0 -660
- data/lib/stylesheets/docsrc/authors.xml +0 -10
- data/lib/stylesheets/docsrc/copyright.xml +0 -18
- data/lib/stylesheets/docsrc/license.xml +0 -23
- data/lib/stylesheets/docsrc/page.png +0 -0
- data/lib/stylesheets/docsrc/reference.css +0 -79
- data/lib/stylesheets/docsrc/reference.xml +0 -229
- data/lib/stylesheets/docsrc/reference.xml.included +0 -33905
- data/lib/stylesheets/docsrc/warranty.xml +0 -11
- data/lib/stylesheets/eclipse/eclipse.xsl +0 -294
- data/lib/stylesheets/eclipse/eclipse3.xsl +0 -112
- data/lib/stylesheets/eclipse/profile-eclipse.xsl +0 -268
- data/lib/stylesheets/epub/README +0 -88
- data/lib/stylesheets/epub/bin/dbtoepub +0 -76
- data/lib/stylesheets/epub/bin/lib/docbook.rb +0 -227
- data/lib/stylesheets/epub/bin/xslt/obfuscate.xsl +0 -14
- data/lib/stylesheets/epub/docbook.xsl +0 -1678
- data/lib/stylesheets/extensions/LICENSE.txt +0 -264
- data/lib/stylesheets/extensions/NOTICE.txt +0 -12
- data/lib/stylesheets/extensions/README.LIBXSLT +0 -52
- data/lib/stylesheets/extensions/README.txt +0 -4
- data/lib/stylesheets/extensions/docbook.py +0 -239
- data/lib/stylesheets/extensions/lucene-analyzers-3.0.0.jar +0 -0
- data/lib/stylesheets/extensions/lucene-core-3.0.0.jar +0 -0
- data/lib/stylesheets/extensions/saxon65.jar +0 -0
- data/lib/stylesheets/extensions/webhelpindexer.jar +0 -0
- data/lib/stylesheets/extensions/xalan27.jar +0 -0
- data/lib/stylesheets/extensions/xslt.py +0 -84
- data/lib/stylesheets/fo/admon.xsl +0 -132
- data/lib/stylesheets/fo/annotations.xsl +0 -20
- data/lib/stylesheets/fo/autoidx-kimber.xsl +0 -173
- data/lib/stylesheets/fo/autoidx-kosek.xsl +0 -140
- data/lib/stylesheets/fo/autoidx-ng.xsl +0 -22
- data/lib/stylesheets/fo/autoidx.xsl +0 -1331
- data/lib/stylesheets/fo/autotoc.xsl +0 -917
- data/lib/stylesheets/fo/axf.xsl +0 -112
- data/lib/stylesheets/fo/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/fo/biblio.xsl +0 -1171
- data/lib/stylesheets/fo/block.xsl +0 -656
- data/lib/stylesheets/fo/callout.xsl +0 -232
- data/lib/stylesheets/fo/component.xsl +0 -900
- data/lib/stylesheets/fo/division.xsl +0 -614
- data/lib/stylesheets/fo/docbook.xsl +0 -333
- data/lib/stylesheets/fo/ebnf.xsl +0 -326
- data/lib/stylesheets/fo/fo-rtf.xsl +0 -155
- data/lib/stylesheets/fo/fo.xsl +0 -120
- data/lib/stylesheets/fo/footnote.xsl +0 -221
- data/lib/stylesheets/fo/fop.xsl +0 -95
- data/lib/stylesheets/fo/fop1.xsl +0 -225
- data/lib/stylesheets/fo/formal.xsl +0 -644
- data/lib/stylesheets/fo/glossary.xsl +0 -1170
- data/lib/stylesheets/fo/graphics.xsl +0 -649
- data/lib/stylesheets/fo/highlight.xsl +0 -78
- data/lib/stylesheets/fo/htmltbl.xsl +0 -427
- data/lib/stylesheets/fo/index.xsl +0 -486
- data/lib/stylesheets/fo/info.xsl +0 -36
- data/lib/stylesheets/fo/inline.xsl +0 -1289
- data/lib/stylesheets/fo/keywords.xsl +0 -23
- data/lib/stylesheets/fo/lists.xsl +0 -1395
- data/lib/stylesheets/fo/math.xsl +0 -141
- data/lib/stylesheets/fo/pagesetup.xsl +0 -2571
- data/lib/stylesheets/fo/param.xml +0 -12445
- data/lib/stylesheets/fo/param.xsl +0 -969
- data/lib/stylesheets/fo/passivetex.xsl +0 -38
- data/lib/stylesheets/fo/pdf2index +0 -140
- data/lib/stylesheets/fo/pi.xml +0 -1002
- data/lib/stylesheets/fo/pi.xsl +0 -1093
- data/lib/stylesheets/fo/profile-docbook.xsl +0 -288
- data/lib/stylesheets/fo/ptc.xsl +0 -79
- data/lib/stylesheets/fo/qandaset.xsl +0 -397
- data/lib/stylesheets/fo/refentry.xsl +0 -640
- data/lib/stylesheets/fo/sections.xsl +0 -766
- data/lib/stylesheets/fo/spaces.xsl +0 -276
- data/lib/stylesheets/fo/synop.xsl +0 -1009
- data/lib/stylesheets/fo/table.xml +0 -135
- data/lib/stylesheets/fo/table.xsl +0 -1682
- data/lib/stylesheets/fo/task.xsl +0 -93
- data/lib/stylesheets/fo/titlepage.templates.xml +0 -1354
- data/lib/stylesheets/fo/titlepage.templates.xsl +0 -5186
- data/lib/stylesheets/fo/titlepage.xsl +0 -769
- data/lib/stylesheets/fo/toc.xsl +0 -334
- data/lib/stylesheets/fo/verbatim.xsl +0 -466
- data/lib/stylesheets/fo/xep.xsl +0 -182
- data/lib/stylesheets/fo/xref.xsl +0 -1539
- data/lib/stylesheets/highlighting/README +0 -16
- data/lib/stylesheets/highlighting/c-hl.xml +0 -101
- data/lib/stylesheets/highlighting/common.xsl +0 -121
- data/lib/stylesheets/highlighting/cpp-hl.xml +0 -150
- data/lib/stylesheets/highlighting/csharp-hl.xml +0 -187
- data/lib/stylesheets/highlighting/delphi-hl.xml +0 -200
- data/lib/stylesheets/highlighting/ini-hl.xml +0 -45
- data/lib/stylesheets/highlighting/java-hl.xml +0 -117
- data/lib/stylesheets/highlighting/javascript-hl.xml +0 -147
- data/lib/stylesheets/highlighting/m2-hl.xml +0 -90
- data/lib/stylesheets/highlighting/myxml-hl.xml +0 -116
- data/lib/stylesheets/highlighting/perl-hl.xml +0 -120
- data/lib/stylesheets/highlighting/php-hl.xml +0 -149
- data/lib/stylesheets/highlighting/python-hl.xml +0 -100
- data/lib/stylesheets/highlighting/ruby-hl.xml +0 -109
- data/lib/stylesheets/highlighting/tcl-hl.xml +0 -180
- data/lib/stylesheets/highlighting/xslthl-config.xml +0 -46
- data/lib/stylesheets/html/admon.xsl +0 -136
- data/lib/stylesheets/html/annotations.xsl +0 -171
- data/lib/stylesheets/html/autoidx-kimber.xsl +0 -166
- data/lib/stylesheets/html/autoidx-kosek.xsl +0 -121
- data/lib/stylesheets/html/autoidx-ng.xsl +0 -22
- data/lib/stylesheets/html/autoidx.xsl +0 -740
- data/lib/stylesheets/html/autotoc.xsl +0 -709
- data/lib/stylesheets/html/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/html/biblio.xsl +0 -1255
- data/lib/stylesheets/html/block.xsl +0 -540
- data/lib/stylesheets/html/callout.xsl +0 -202
- data/lib/stylesheets/html/changebars.xsl +0 -123
- data/lib/stylesheets/html/chunk-changebars.xsl +0 -100
- data/lib/stylesheets/html/chunk-code.xsl +0 -672
- data/lib/stylesheets/html/chunk-common.xsl +0 -1921
- data/lib/stylesheets/html/chunk.xsl +0 -53
- data/lib/stylesheets/html/chunker.xsl +0 -440
- data/lib/stylesheets/html/chunkfast.xsl +0 -73
- data/lib/stylesheets/html/chunktoc.xsl +0 -541
- data/lib/stylesheets/html/component.xsl +0 -427
- data/lib/stylesheets/html/division.xsl +0 -219
- data/lib/stylesheets/html/docbook.css.xml +0 -109
- data/lib/stylesheets/html/docbook.xsl +0 -468
- data/lib/stylesheets/html/ebnf.xsl +0 -330
- data/lib/stylesheets/html/footnote.xsl +0 -314
- data/lib/stylesheets/html/formal.xsl +0 -427
- data/lib/stylesheets/html/glossary.xsl +0 -493
- data/lib/stylesheets/html/graphics.xsl +0 -1516
- data/lib/stylesheets/html/highlight.xsl +0 -87
- data/lib/stylesheets/html/html-rtf.xsl +0 -336
- data/lib/stylesheets/html/html.xsl +0 -614
- data/lib/stylesheets/html/htmltbl.xsl +0 -137
- data/lib/stylesheets/html/index.xsl +0 -290
- data/lib/stylesheets/html/info.xsl +0 -45
- data/lib/stylesheets/html/inline.xsl +0 -1491
- data/lib/stylesheets/html/keywords.xsl +0 -37
- data/lib/stylesheets/html/lists.xsl +0 -1185
- data/lib/stylesheets/html/maketoc.xsl +0 -87
- data/lib/stylesheets/html/manifest.xsl +0 -23
- data/lib/stylesheets/html/math.xsl +0 -271
- data/lib/stylesheets/html/oldchunker.xsl +0 -203
- data/lib/stylesheets/html/onechunk.xsl +0 -38
- data/lib/stylesheets/html/param.xml +0 -10905
- data/lib/stylesheets/html/param.xsl +0 -436
- data/lib/stylesheets/html/pi.xml +0 -1113
- data/lib/stylesheets/html/pi.xsl +0 -1264
- data/lib/stylesheets/html/profile-chunk-code.xsl +0 -614
- data/lib/stylesheets/html/profile-chunk.xsl +0 -53
- data/lib/stylesheets/html/profile-docbook.xsl +0 -412
- data/lib/stylesheets/html/profile-onechunk.xsl +0 -38
- data/lib/stylesheets/html/qandaset.xsl +0 -438
- data/lib/stylesheets/html/refentry.xsl +0 -301
- data/lib/stylesheets/html/sections.xsl +0 -617
- data/lib/stylesheets/html/synop.xsl +0 -1556
- data/lib/stylesheets/html/table.xsl +0 -1201
- data/lib/stylesheets/html/task.xsl +0 -78
- data/lib/stylesheets/html/titlepage.templates.xml +0 -708
- data/lib/stylesheets/html/titlepage.templates.xsl +0 -3818
- data/lib/stylesheets/html/titlepage.xsl +0 -1049
- data/lib/stylesheets/html/toc.xsl +0 -352
- data/lib/stylesheets/html/verbatim.xsl +0 -411
- data/lib/stylesheets/html/xref.xsl +0 -1378
- data/lib/stylesheets/htmlhelp/htmlhelp-common.xsl +0 -1108
- data/lib/stylesheets/htmlhelp/htmlhelp.xsl +0 -23
- data/lib/stylesheets/htmlhelp/profile-htmlhelp-common.xsl +0 -1082
- data/lib/stylesheets/htmlhelp/profile-htmlhelp.xsl +0 -23
- data/lib/stylesheets/images/annot-close.png +0 -0
- data/lib/stylesheets/images/annot-open.png +0 -0
- data/lib/stylesheets/images/blank.png +0 -0
- data/lib/stylesheets/images/callouts/1.gif +0 -0
- data/lib/stylesheets/images/callouts/1.png +0 -0
- data/lib/stylesheets/images/callouts/1.svg +0 -15
- data/lib/stylesheets/images/callouts/10.gif +0 -0
- data/lib/stylesheets/images/callouts/10.png +0 -0
- data/lib/stylesheets/images/callouts/10.svg +0 -18
- data/lib/stylesheets/images/callouts/11.gif +0 -0
- data/lib/stylesheets/images/callouts/11.png +0 -0
- data/lib/stylesheets/images/callouts/11.svg +0 -16
- data/lib/stylesheets/images/callouts/12.gif +0 -0
- data/lib/stylesheets/images/callouts/12.png +0 -0
- data/lib/stylesheets/images/callouts/12.svg +0 -18
- data/lib/stylesheets/images/callouts/13.gif +0 -0
- data/lib/stylesheets/images/callouts/13.png +0 -0
- data/lib/stylesheets/images/callouts/13.svg +0 -20
- data/lib/stylesheets/images/callouts/14.gif +0 -0
- data/lib/stylesheets/images/callouts/14.png +0 -0
- data/lib/stylesheets/images/callouts/14.svg +0 -17
- data/lib/stylesheets/images/callouts/15.gif +0 -0
- data/lib/stylesheets/images/callouts/15.png +0 -0
- data/lib/stylesheets/images/callouts/15.svg +0 -19
- data/lib/stylesheets/images/callouts/16.svg +0 -20
- data/lib/stylesheets/images/callouts/17.svg +0 -17
- data/lib/stylesheets/images/callouts/18.svg +0 -21
- data/lib/stylesheets/images/callouts/19.svg +0 -20
- data/lib/stylesheets/images/callouts/2.gif +0 -0
- data/lib/stylesheets/images/callouts/2.png +0 -0
- data/lib/stylesheets/images/callouts/2.svg +0 -17
- data/lib/stylesheets/images/callouts/20.svg +0 -20
- data/lib/stylesheets/images/callouts/21.svg +0 -18
- data/lib/stylesheets/images/callouts/22.svg +0 -20
- data/lib/stylesheets/images/callouts/23.svg +0 -22
- data/lib/stylesheets/images/callouts/24.svg +0 -19
- data/lib/stylesheets/images/callouts/25.svg +0 -21
- data/lib/stylesheets/images/callouts/26.svg +0 -22
- data/lib/stylesheets/images/callouts/27.svg +0 -19
- data/lib/stylesheets/images/callouts/28.svg +0 -23
- data/lib/stylesheets/images/callouts/29.svg +0 -22
- data/lib/stylesheets/images/callouts/3.gif +0 -0
- data/lib/stylesheets/images/callouts/3.png +0 -0
- data/lib/stylesheets/images/callouts/3.svg +0 -19
- data/lib/stylesheets/images/callouts/30.svg +0 -22
- data/lib/stylesheets/images/callouts/4.gif +0 -0
- data/lib/stylesheets/images/callouts/4.png +0 -0
- data/lib/stylesheets/images/callouts/4.svg +0 -16
- data/lib/stylesheets/images/callouts/5.gif +0 -0
- data/lib/stylesheets/images/callouts/5.png +0 -0
- data/lib/stylesheets/images/callouts/5.svg +0 -18
- data/lib/stylesheets/images/callouts/6.gif +0 -0
- data/lib/stylesheets/images/callouts/6.png +0 -0
- data/lib/stylesheets/images/callouts/6.svg +0 -19
- data/lib/stylesheets/images/callouts/7.gif +0 -0
- data/lib/stylesheets/images/callouts/7.png +0 -0
- data/lib/stylesheets/images/callouts/7.svg +0 -16
- data/lib/stylesheets/images/callouts/8.gif +0 -0
- data/lib/stylesheets/images/callouts/8.png +0 -0
- data/lib/stylesheets/images/callouts/8.svg +0 -20
- data/lib/stylesheets/images/callouts/9.gif +0 -0
- data/lib/stylesheets/images/callouts/9.png +0 -0
- data/lib/stylesheets/images/callouts/9.svg +0 -19
- data/lib/stylesheets/images/caution.gif +0 -0
- data/lib/stylesheets/images/caution.png +0 -0
- data/lib/stylesheets/images/caution.svg +0 -25
- data/lib/stylesheets/images/caution.tif +0 -0
- data/lib/stylesheets/images/colorsvg/caution.svg +0 -141
- data/lib/stylesheets/images/colorsvg/home.svg +0 -498
- data/lib/stylesheets/images/colorsvg/important.svg +0 -239
- data/lib/stylesheets/images/colorsvg/next.svg +0 -338
- data/lib/stylesheets/images/colorsvg/note.svg +0 -200
- data/lib/stylesheets/images/colorsvg/prev.svg +0 -338
- data/lib/stylesheets/images/colorsvg/tip.svg +0 -367
- data/lib/stylesheets/images/colorsvg/up.svg +0 -338
- data/lib/stylesheets/images/colorsvg/warning.svg +0 -232
- data/lib/stylesheets/images/draft.png +0 -0
- data/lib/stylesheets/images/home.gif +0 -0
- data/lib/stylesheets/images/home.png +0 -0
- data/lib/stylesheets/images/home.svg +0 -26
- data/lib/stylesheets/images/important.gif +0 -0
- data/lib/stylesheets/images/important.png +0 -0
- data/lib/stylesheets/images/important.svg +0 -25
- data/lib/stylesheets/images/important.tif +0 -0
- data/lib/stylesheets/images/next.gif +0 -0
- data/lib/stylesheets/images/next.png +0 -0
- data/lib/stylesheets/images/next.svg +0 -19
- data/lib/stylesheets/images/note.gif +0 -0
- data/lib/stylesheets/images/note.png +0 -0
- data/lib/stylesheets/images/note.svg +0 -33
- data/lib/stylesheets/images/note.tif +0 -0
- data/lib/stylesheets/images/prev.gif +0 -0
- data/lib/stylesheets/images/prev.png +0 -0
- data/lib/stylesheets/images/prev.svg +0 -19
- data/lib/stylesheets/images/tip.gif +0 -0
- data/lib/stylesheets/images/tip.png +0 -0
- data/lib/stylesheets/images/tip.svg +0 -31
- data/lib/stylesheets/images/tip.tif +0 -0
- data/lib/stylesheets/images/toc-blank.png +0 -0
- data/lib/stylesheets/images/toc-minus.png +0 -0
- data/lib/stylesheets/images/toc-plus.png +0 -0
- data/lib/stylesheets/images/up.gif +0 -0
- data/lib/stylesheets/images/up.png +0 -0
- data/lib/stylesheets/images/up.svg +0 -19
- data/lib/stylesheets/images/warning.gif +0 -0
- data/lib/stylesheets/images/warning.png +0 -0
- data/lib/stylesheets/images/warning.svg +0 -23
- data/lib/stylesheets/images/warning.tif +0 -0
- data/lib/stylesheets/install.sh +0 -977
- data/lib/stylesheets/javahelp/javahelp.xsl +0 -613
- data/lib/stylesheets/javahelp/profile-javahelp.xsl +0 -548
- data/lib/stylesheets/lib/lib.xsl +0 -482
- data/lib/stylesheets/manpages/ChangeLog.20020917 +0 -195
- data/lib/stylesheets/manpages/block.xsl +0 -412
- data/lib/stylesheets/manpages/charmap.groff.xsl +0 -6014
- data/lib/stylesheets/manpages/docbook.xsl +0 -302
- data/lib/stylesheets/manpages/endnotes.xsl +0 -587
- data/lib/stylesheets/manpages/html-synop.xsl +0 -1569
- data/lib/stylesheets/manpages/info.xsl +0 -801
- data/lib/stylesheets/manpages/inline.xsl +0 -221
- data/lib/stylesheets/manpages/lists.xsl +0 -606
- data/lib/stylesheets/manpages/other.xsl +0 -889
- data/lib/stylesheets/manpages/param.xml +0 -3220
- data/lib/stylesheets/manpages/param.xsl +0 -195
- data/lib/stylesheets/manpages/pi.xml +0 -70
- data/lib/stylesheets/manpages/pi.xsl +0 -80
- data/lib/stylesheets/manpages/profile-docbook.xsl +0 -282
- data/lib/stylesheets/manpages/refentry.xsl +0 -321
- data/lib/stylesheets/manpages/synop.xsl +0 -433
- data/lib/stylesheets/manpages/table.xsl +0 -633
- data/lib/stylesheets/manpages/utility.xsl +0 -556
- data/lib/stylesheets/params/abstract.notitle.enabled.xml +0 -22
- data/lib/stylesheets/params/abstract.properties.xml +0 -32
- data/lib/stylesheets/params/abstract.title.properties.xml +0 -39
- data/lib/stylesheets/params/active.toc.xml +0 -29
- data/lib/stylesheets/params/ade.extensions.xml +0 -32
- data/lib/stylesheets/params/admon.graphics.extension.xml +0 -27
- data/lib/stylesheets/params/admon.graphics.path.xml +0 -27
- data/lib/stylesheets/params/admon.graphics.xml +0 -29
- data/lib/stylesheets/params/admon.style.xml +0 -31
- data/lib/stylesheets/params/admon.textlabel.xml +0 -32
- data/lib/stylesheets/params/admonition.properties.xml +0 -25
- data/lib/stylesheets/params/admonition.title.properties.xml +0 -32
- data/lib/stylesheets/params/alignment.xml +0 -41
- data/lib/stylesheets/params/annotate.toc.xml +0 -28
- data/lib/stylesheets/params/annotation.css.xml +0 -71
- data/lib/stylesheets/params/annotation.graphic.close.xml +0 -31
- data/lib/stylesheets/params/annotation.graphic.open.xml +0 -28
- data/lib/stylesheets/params/annotation.js.xml +0 -33
- data/lib/stylesheets/params/annotation.support.xml +0 -29
- data/lib/stylesheets/params/appendix.autolabel.xml +0 -73
- data/lib/stylesheets/params/arbortext.extensions.xml +0 -30
- data/lib/stylesheets/params/article.appendix.title.properties.xml +0 -33
- data/lib/stylesheets/params/author.othername.in.middle.xml +0 -31
- data/lib/stylesheets/params/autolayout-file.xml +0 -29
- data/lib/stylesheets/params/autotoc.label.in.hyperlink.xml +0 -29
- data/lib/stylesheets/params/autotoc.label.separator.xml +0 -27
- data/lib/stylesheets/params/axf.extensions.xml +0 -33
- data/lib/stylesheets/params/banner.before.navigation.xml +0 -25
- data/lib/stylesheets/params/base.dir.xml +0 -29
- data/lib/stylesheets/params/biblioentry.item.separator.xml +0 -26
- data/lib/stylesheets/params/biblioentry.properties.xml +0 -28
- data/lib/stylesheets/params/bibliography.collection.xml +0 -104
- data/lib/stylesheets/params/bibliography.numbered.xml +0 -27
- data/lib/stylesheets/params/bibliography.style.xml +0 -35
- data/lib/stylesheets/params/blockquote.properties.xml +0 -34
- data/lib/stylesheets/params/blurb.on.titlepage.enabled.xml +0 -31
- data/lib/stylesheets/params/body.attributes.xml +0 -31
- data/lib/stylesheets/params/body.bg.color.xml +0 -28
- data/lib/stylesheets/params/body.end.indent.xml +0 -37
- data/lib/stylesheets/params/body.font.family.xml +0 -32
- data/lib/stylesheets/params/body.font.master.xml +0 -30
- data/lib/stylesheets/params/body.font.size.xml +0 -31
- data/lib/stylesheets/params/body.margin.bottom.xml +0 -29
- data/lib/stylesheets/params/body.margin.top.xml +0 -28
- data/lib/stylesheets/params/body.start.indent.xml +0 -64
- data/lib/stylesheets/params/bookmarks.collapse.xml +0 -31
- data/lib/stylesheets/params/bridgehead.in.toc.xml +0 -28
- data/lib/stylesheets/params/bullet.image.xml +0 -28
- data/lib/stylesheets/params/callout.defaultcolumn.xml +0 -30
- data/lib/stylesheets/params/callout.graphics.extension.xml +0 -33
- data/lib/stylesheets/params/callout.graphics.number.limit.xml +0 -34
- data/lib/stylesheets/params/callout.graphics.path.xml +0 -31
- data/lib/stylesheets/params/callout.graphics.xml +0 -30
- data/lib/stylesheets/params/callout.icon.size.xml +0 -28
- data/lib/stylesheets/params/callout.list.table.xml +0 -32
- data/lib/stylesheets/params/callout.unicode.font.xml +0 -29
- data/lib/stylesheets/params/callout.unicode.number.limit.xml +0 -35
- data/lib/stylesheets/params/callout.unicode.start.character.xml +0 -33
- data/lib/stylesheets/params/callout.unicode.xml +0 -26
- data/lib/stylesheets/params/callouts.extension.xml +0 -30
- data/lib/stylesheets/params/chapter.autolabel.xml +0 -71
- data/lib/stylesheets/params/chunk.append.xml +0 -30
- data/lib/stylesheets/params/chunk.first.sections.xml +0 -31
- data/lib/stylesheets/params/chunk.quietly.xml +0 -30
- data/lib/stylesheets/params/chunk.section.depth.xml +0 -27
- data/lib/stylesheets/params/chunk.sections.xml +0 -30
- data/lib/stylesheets/params/chunk.separate.lots.xml +0 -36
- data/lib/stylesheets/params/chunk.toc.xml +0 -30
- data/lib/stylesheets/params/chunk.tocs.and.lots.has.title.xml +0 -28
- data/lib/stylesheets/params/chunk.tocs.and.lots.xml +0 -32
- data/lib/stylesheets/params/chunker.output.cdata-section-elements.xml +0 -30
- data/lib/stylesheets/params/chunker.output.doctype-public.xml +0 -31
- data/lib/stylesheets/params/chunker.output.doctype-system.xml +0 -31
- data/lib/stylesheets/params/chunker.output.encoding.xml +0 -31
- data/lib/stylesheets/params/chunker.output.indent.xml +0 -30
- data/lib/stylesheets/params/chunker.output.media-type.xml +0 -35
- data/lib/stylesheets/params/chunker.output.method.xml +0 -32
- data/lib/stylesheets/params/chunker.output.omit-xml-declaration.xml +0 -30
- data/lib/stylesheets/params/chunker.output.standalone.xml +0 -31
- data/lib/stylesheets/params/citerefentry.link.xml +0 -29
- data/lib/stylesheets/params/collect.xref.targets.xml +0 -33
- data/lib/stylesheets/params/column.count.back.xml +0 -27
- data/lib/stylesheets/params/column.count.body.xml +0 -27
- data/lib/stylesheets/params/column.count.front.xml +0 -27
- data/lib/stylesheets/params/column.count.index.xml +0 -27
- data/lib/stylesheets/params/column.count.lot.xml +0 -28
- data/lib/stylesheets/params/column.count.titlepage.xml +0 -27
- data/lib/stylesheets/params/column.gap.back.xml +0 -28
- data/lib/stylesheets/params/column.gap.body.xml +0 -28
- data/lib/stylesheets/params/column.gap.front.xml +0 -28
- data/lib/stylesheets/params/column.gap.index.xml +0 -28
- data/lib/stylesheets/params/column.gap.lot.xml +0 -28
- data/lib/stylesheets/params/column.gap.titlepage.xml +0 -29
- data/lib/stylesheets/params/compact.list.item.spacing.xml +0 -28
- data/lib/stylesheets/params/component.label.includes.part.label.xml +0 -39
- data/lib/stylesheets/params/component.title.properties.xml +0 -40
- data/lib/stylesheets/params/component.titlepage.properties.xml +0 -33
- data/lib/stylesheets/params/contrib.inline.enabled.xml +0 -26
- data/lib/stylesheets/params/crop.mark.bleed.xml +0 -28
- data/lib/stylesheets/params/crop.mark.offset.xml +0 -28
- data/lib/stylesheets/params/crop.mark.width.xml +0 -28
- data/lib/stylesheets/params/crop.marks.xml +0 -28
- data/lib/stylesheets/params/css.decoration.xml +0 -33
- data/lib/stylesheets/params/css.stylesheet.dir.xml +0 -33
- data/lib/stylesheets/params/css.stylesheet.xml +0 -29
- data/lib/stylesheets/params/current.docid.xml +0 -27
- data/lib/stylesheets/params/currentpage.marker.xml +0 -25
- data/lib/stylesheets/params/custom.css.source.xml +0 -119
- data/lib/stylesheets/params/default.float.class.xml +0 -34
- data/lib/stylesheets/params/default.image.width.xml +0 -30
- data/lib/stylesheets/params/default.table.frame.xml +0 -28
- data/lib/stylesheets/params/default.table.rules.xml +0 -76
- data/lib/stylesheets/params/default.table.width.xml +0 -26
- data/lib/stylesheets/params/default.units.xml +0 -37
- data/lib/stylesheets/params/dingbat.font.family.xml +0 -33
- data/lib/stylesheets/params/docbook.css.link.xml +0 -42
- data/lib/stylesheets/params/docbook.css.source.xml +0 -83
- data/lib/stylesheets/params/double.sided.xml +0 -31
- data/lib/stylesheets/params/draft.mode.xml +0 -36
- data/lib/stylesheets/params/draft.watermark.image.xml +0 -27
- data/lib/stylesheets/params/dry-run.xml +0 -27
- data/lib/stylesheets/params/dynamic.toc.xml +0 -29
- data/lib/stylesheets/params/ebnf.assignment.xml +0 -39
- data/lib/stylesheets/params/ebnf.statement.terminator.xml +0 -32
- data/lib/stylesheets/params/ebnf.table.bgcolor.xml +0 -30
- data/lib/stylesheets/params/ebnf.table.border.xml +0 -26
- data/lib/stylesheets/params/eclipse.autolabel.xml +0 -28
- data/lib/stylesheets/params/eclipse.plugin.id.xml +0 -28
- data/lib/stylesheets/params/eclipse.plugin.name.xml +0 -27
- data/lib/stylesheets/params/eclipse.plugin.provider.xml +0 -27
- data/lib/stylesheets/params/editedby.enabled.xml +0 -27
- data/lib/stylesheets/params/email.delimiters.enabled.xml +0 -34
- data/lib/stylesheets/params/email.mailto.enabled.xml +0 -29
- data/lib/stylesheets/params/emphasis.propagates.style.xml +0 -26
- data/lib/stylesheets/params/entry.propagates.style.xml +0 -30
- data/lib/stylesheets/params/epub.autolabel.xml +0 -28
- data/lib/stylesheets/params/equation.number.properties.xml +0 -28
- data/lib/stylesheets/params/equation.properties.xml +0 -27
- data/lib/stylesheets/params/example.properties.xml +0 -27
- data/lib/stylesheets/params/exsl.node.set.available.xml +0 -44
- data/lib/stylesheets/params/feedback.href.xml +0 -28
- data/lib/stylesheets/params/feedback.link.text.xml +0 -28
- data/lib/stylesheets/params/feedback.with.ids.xml +0 -27
- data/lib/stylesheets/params/figure.properties.xml +0 -27
- data/lib/stylesheets/params/filename-prefix.xml +0 -28
- data/lib/stylesheets/params/firstterm.only.link.xml +0 -29
- data/lib/stylesheets/params/foil.properties.xml +0 -37
- data/lib/stylesheets/params/foil.subtitle.properties.xml +0 -36
- data/lib/stylesheets/params/foil.title.master.xml +0 -29
- data/lib/stylesheets/params/foil.title.size.xml +0 -32
- data/lib/stylesheets/params/foilgroup.properties.xml +0 -31
- data/lib/stylesheets/params/foilgroup.toc.xml +0 -29
- data/lib/stylesheets/params/footer.column.widths.xml +0 -80
- data/lib/stylesheets/params/footer.content.properties.xml +0 -34
- data/lib/stylesheets/params/footer.hr.xml +0 -26
- data/lib/stylesheets/params/footer.rule.xml +0 -27
- data/lib/stylesheets/params/footer.table.height.xml +0 -32
- data/lib/stylesheets/params/footer.table.properties.xml +0 -30
- data/lib/stylesheets/params/footers.on.blank.pages.xml +0 -27
- data/lib/stylesheets/params/footnote.font.size.xml +0 -28
- data/lib/stylesheets/params/footnote.mark.properties.xml +0 -41
- data/lib/stylesheets/params/footnote.number.format.xml +0 -33
- data/lib/stylesheets/params/footnote.number.symbols.xml +0 -39
- data/lib/stylesheets/params/footnote.properties.xml +0 -43
- data/lib/stylesheets/params/footnote.sep.leader.properties.xml +0 -39
- data/lib/stylesheets/params/fop.extensions.xml +0 -36
- data/lib/stylesheets/params/fop1.extensions.xml +0 -34
- data/lib/stylesheets/params/formal.object.properties.xml +0 -36
- data/lib/stylesheets/params/formal.procedures.xml +0 -28
- data/lib/stylesheets/params/formal.title.placement.xml +0 -41
- data/lib/stylesheets/params/formal.title.properties.xml +0 -34
- data/lib/stylesheets/params/funcsynopsis.decoration.xml +0 -30
- data/lib/stylesheets/params/funcsynopsis.style.xml +0 -31
- data/lib/stylesheets/params/function.parens.xml +0 -29
- data/lib/stylesheets/params/generate.css.header.xml +0 -40
- data/lib/stylesheets/params/generate.id.attributes.xml +0 -59
- data/lib/stylesheets/params/generate.index.xml +0 -25
- data/lib/stylesheets/params/generate.legalnotice.link.xml +0 -72
- data/lib/stylesheets/params/generate.manifest.xml +0 -27
- data/lib/stylesheets/params/generate.meta.abstract.xml +0 -29
- data/lib/stylesheets/params/generate.revhistory.link.xml +0 -50
- data/lib/stylesheets/params/generate.section.toc.level.xml +0 -35
- data/lib/stylesheets/params/generate.toc.xml +0 -108
- data/lib/stylesheets/params/glossary.as.blocks.xml +0 -38
- data/lib/stylesheets/params/glossary.collection.xml +0 -252
- data/lib/stylesheets/params/glossary.sort.xml +0 -32
- data/lib/stylesheets/params/glossdef.block.properties.xml +0 -32
- data/lib/stylesheets/params/glossdef.list.properties.xml +0 -30
- data/lib/stylesheets/params/glossentry.list.item.properties.xml +0 -32
- data/lib/stylesheets/params/glossentry.show.acronym.xml +0 -37
- data/lib/stylesheets/params/glosslist.as.blocks.xml +0 -27
- data/lib/stylesheets/params/glossterm.auto.link.xml +0 -33
- data/lib/stylesheets/params/glossterm.block.properties.xml +0 -35
- data/lib/stylesheets/params/glossterm.list.properties.xml +0 -30
- data/lib/stylesheets/params/glossterm.separation.xml +0 -31
- data/lib/stylesheets/params/glossterm.width.xml +0 -28
- data/lib/stylesheets/params/graphic.default.extension.xml +0 -29
- data/lib/stylesheets/params/graphical.admonition.properties.xml +0 -42
- data/lib/stylesheets/params/graphics.dir.xml +0 -33
- data/lib/stylesheets/params/graphicsize.extension.xml +0 -30
- data/lib/stylesheets/params/graphicsize.use.img.src.path.xml +0 -30
- data/lib/stylesheets/params/header.column.widths.xml +0 -80
- data/lib/stylesheets/params/header.content.properties.xml +0 -34
- data/lib/stylesheets/params/header.hr.xml +0 -26
- data/lib/stylesheets/params/header.rule.xml +0 -27
- data/lib/stylesheets/params/header.table.height.xml +0 -32
- data/lib/stylesheets/params/header.table.properties.xml +0 -30
- data/lib/stylesheets/params/headers.on.blank.pages.xml +0 -27
- data/lib/stylesheets/params/hidetoc.image.xml +0 -29
- data/lib/stylesheets/params/highlight.default.language.xml +0 -27
- data/lib/stylesheets/params/highlight.source.xml +0 -82
- data/lib/stylesheets/params/highlight.xslthl.config.xml +0 -33
- data/lib/stylesheets/params/home.image.xml +0 -27
- data/lib/stylesheets/params/html.append.xml +0 -30
- data/lib/stylesheets/params/html.base.xml +0 -30
- data/lib/stylesheets/params/html.cellpadding.xml +0 -29
- data/lib/stylesheets/params/html.cellspacing.xml +0 -29
- data/lib/stylesheets/params/html.cleanup.xml +0 -34
- data/lib/stylesheets/params/html.ext.xml +0 -29
- data/lib/stylesheets/params/html.extra.head.links.xml +0 -31
- data/lib/stylesheets/params/html.head.legalnotice.link.multiple.xml +0 -44
- data/lib/stylesheets/params/html.head.legalnotice.link.types.xml +0 -75
- data/lib/stylesheets/params/html.longdesc.link.xml +0 -39
- data/lib/stylesheets/params/html.longdesc.xml +0 -28
- data/lib/stylesheets/params/html.stylesheet.type.xml +0 -26
- data/lib/stylesheets/params/html.stylesheet.xml +0 -36
- data/lib/stylesheets/params/htmlhelp.alias.file.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.autolabel.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.back.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.forward.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.hideshow.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.home.url.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.home.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump1.title.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump1.url.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump1.xml +0 -23
- data/lib/stylesheets/params/htmlhelp.button.jump2.title.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump2.url.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.jump2.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.locate.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.next.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.options.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.prev.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.print.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.refresh.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.button.stop.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.button.zoom.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.chm.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.default.topic.xml +0 -37
- data/lib/stylesheets/params/htmlhelp.display.progress.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.encoding.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.enhanced.decompilation.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.enumerate.images.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.force.map.and.alias.xml +0 -26
- data/lib/stylesheets/params/htmlhelp.hhc.binary.xml +0 -29
- data/lib/stylesheets/params/htmlhelp.hhc.folders.instead.books.xml +0 -31
- data/lib/stylesheets/params/htmlhelp.hhc.section.depth.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.hhc.show.root.xml +0 -29
- data/lib/stylesheets/params/htmlhelp.hhc.width.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.hhc.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.hhk.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.hhp.tail.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.hhp.window.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.hhp.windows.xml +0 -29
- data/lib/stylesheets/params/htmlhelp.hhp.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.map.file.xml +0 -25
- data/lib/stylesheets/params/htmlhelp.only.xml +0 -32
- data/lib/stylesheets/params/htmlhelp.remember.window.position.xml +0 -27
- data/lib/stylesheets/params/htmlhelp.show.advanced.search.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.show.favorities.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.show.menu.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.show.toolbar.text.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.title.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.use.hhk.xml +0 -28
- data/lib/stylesheets/params/htmlhelp.window.geometry.xml +0 -30
- data/lib/stylesheets/params/hyphenate.verbatim.characters.xml +0 -30
- data/lib/stylesheets/params/hyphenate.verbatim.xml +0 -45
- data/lib/stylesheets/params/hyphenate.xml +0 -29
- data/lib/stylesheets/params/id.warnings.xml +0 -25
- data/lib/stylesheets/params/ignore.image.scaling.xml +0 -28
- data/lib/stylesheets/params/img.src.path.xml +0 -40
- data/lib/stylesheets/params/index.div.title.properties.xml +0 -39
- data/lib/stylesheets/params/index.entry.properties.xml +0 -33
- data/lib/stylesheets/params/index.links.to.section.xml +0 -76
- data/lib/stylesheets/params/index.method.xml +0 -162
- data/lib/stylesheets/params/index.number.separator.xml +0 -54
- data/lib/stylesheets/params/index.on.role.xml +0 -48
- data/lib/stylesheets/params/index.on.type.xml +0 -52
- data/lib/stylesheets/params/index.page.number.properties.xml +0 -31
- data/lib/stylesheets/params/index.prefer.titleabbrev.xml +0 -29
- data/lib/stylesheets/params/index.preferred.page.properties.xml +0 -32
- data/lib/stylesheets/params/index.range.separator.xml +0 -57
- data/lib/stylesheets/params/index.term.separator.xml +0 -54
- data/lib/stylesheets/params/informal.object.properties.xml +0 -29
- data/lib/stylesheets/params/informalequation.properties.xml +0 -27
- data/lib/stylesheets/params/informalexample.properties.xml +0 -27
- data/lib/stylesheets/params/informalfigure.properties.xml +0 -27
- data/lib/stylesheets/params/informaltable.properties.xml +0 -32
- data/lib/stylesheets/params/inherit.keywords.xml +0 -31
- data/lib/stylesheets/params/insert.link.page.number.xml +0 -69
- data/lib/stylesheets/params/insert.olink.page.number.xml +0 -83
- data/lib/stylesheets/params/insert.olink.pdf.frag.xml +0 -68
- data/lib/stylesheets/params/insert.xref.page.number.xml +0 -60
- data/lib/stylesheets/params/itemizedlist.label.properties.xml +0 -26
- data/lib/stylesheets/params/itemizedlist.label.width.xml +0 -28
- data/lib/stylesheets/params/itemizedlist.properties.xml +0 -23
- data/lib/stylesheets/params/javahelp.encoding.xml +0 -31
- data/lib/stylesheets/params/keep.relative.image.uris.xml +0 -34
- data/lib/stylesheets/params/keyboard.nav.xml +0 -29
- data/lib/stylesheets/params/l10n.gentext.default.language.xml +0 -30
- data/lib/stylesheets/params/l10n.gentext.language.xml +0 -33
- data/lib/stylesheets/params/l10n.gentext.use.xref.language.xml +0 -53
- data/lib/stylesheets/params/l10n.lang.value.rfc.compliant.xml +0 -57
- data/lib/stylesheets/params/label.from.part.xml +0 -38
- data/lib/stylesheets/params/line-height.xml +0 -27
- data/lib/stylesheets/params/linenumbering.everyNth.xml +0 -29
- data/lib/stylesheets/params/linenumbering.extension.xml +0 -30
- data/lib/stylesheets/params/linenumbering.separator.xml +0 -30
- data/lib/stylesheets/params/linenumbering.width.xml +0 -29
- data/lib/stylesheets/params/link.mailto.url.xml +0 -29
- data/lib/stylesheets/params/list.block.properties.xml +0 -25
- data/lib/stylesheets/params/list.block.spacing.xml +0 -29
- data/lib/stylesheets/params/list.item.spacing.xml +0 -26
- data/lib/stylesheets/params/make.clean.html.xml +0 -51
- data/lib/stylesheets/params/make.graphic.viewport.xml +0 -35
- data/lib/stylesheets/params/make.index.markup.xml +0 -73
- data/lib/stylesheets/params/make.single.year.ranges.xml +0 -28
- data/lib/stylesheets/params/make.valid.html.xml +0 -35
- data/lib/stylesheets/params/make.year.ranges.xml +0 -32
- data/lib/stylesheets/params/man.authors.section.enabled.xml +0 -46
- data/lib/stylesheets/params/man.base.url.for.relative.links.xml +0 -76
- data/lib/stylesheets/params/man.break.after.slash.xml +0 -46
- data/lib/stylesheets/params/man.charmap.enabled.xml +0 -55
- data/lib/stylesheets/params/man.charmap.subset.profile.english.xml +0 -80
- data/lib/stylesheets/params/man.charmap.subset.profile.xml +0 -297
- data/lib/stylesheets/params/man.charmap.uri.xml +0 -42
- data/lib/stylesheets/params/man.charmap.use.subset.xml +0 -80
- data/lib/stylesheets/params/man.copyright.section.enabled.xml +0 -46
- data/lib/stylesheets/params/man.endnotes.are.numbered.xml +0 -106
- data/lib/stylesheets/params/man.endnotes.list.enabled.xml +0 -105
- data/lib/stylesheets/params/man.endnotes.list.heading.xml +0 -36
- data/lib/stylesheets/params/man.font.funcprototype.xml +0 -30
- data/lib/stylesheets/params/man.font.funcsynopsisinfo.xml +0 -30
- data/lib/stylesheets/params/man.font.links.xml +0 -64
- data/lib/stylesheets/params/man.font.table.headings.xml +0 -30
- data/lib/stylesheets/params/man.font.table.title.xml +0 -30
- data/lib/stylesheets/params/man.funcsynopsis.style.xml +0 -26
- data/lib/stylesheets/params/man.hyphenate.computer.inlines.xml +0 -53
- data/lib/stylesheets/params/man.hyphenate.filenames.xml +0 -47
- data/lib/stylesheets/params/man.hyphenate.urls.xml +0 -46
- data/lib/stylesheets/params/man.hyphenate.xml +0 -59
- data/lib/stylesheets/params/man.indent.blurbs.xml +0 -33
- data/lib/stylesheets/params/man.indent.lists.xml +0 -35
- data/lib/stylesheets/params/man.indent.refsect.xml +0 -70
- data/lib/stylesheets/params/man.indent.verbatims.xml +0 -33
- data/lib/stylesheets/params/man.indent.width.xml +0 -39
- data/lib/stylesheets/params/man.justify.xml +0 -52
- data/lib/stylesheets/params/man.output.base.dir.xml +0 -39
- data/lib/stylesheets/params/man.output.better.ps.enabled.xml +0 -61
- data/lib/stylesheets/params/man.output.encoding.xml +0 -53
- data/lib/stylesheets/params/man.output.in.separate.dir.xml +0 -32
- data/lib/stylesheets/params/man.output.lang.in.name.enabled.xml +0 -50
- data/lib/stylesheets/params/man.output.manifest.enabled.xml +0 -27
- data/lib/stylesheets/params/man.output.manifest.filename.xml +0 -29
- data/lib/stylesheets/params/man.output.quietly.xml +0 -37
- data/lib/stylesheets/params/man.output.subdirs.enabled.xml +0 -40
- data/lib/stylesheets/params/man.segtitle.suppress.xml +0 -28
- data/lib/stylesheets/params/man.string.subst.map.local.post.xml +0 -34
- data/lib/stylesheets/params/man.string.subst.map.local.pre.xml +0 -34
- data/lib/stylesheets/params/man.string.subst.map.xml +0 -162
- data/lib/stylesheets/params/man.subheading.divider.enabled.xml +0 -37
- data/lib/stylesheets/params/man.subheading.divider.xml +0 -37
- data/lib/stylesheets/params/man.table.footnotes.divider.xml +0 -29
- data/lib/stylesheets/params/man.th.extra1.suppress.xml +0 -32
- data/lib/stylesheets/params/man.th.extra2.max.length.xml +0 -43
- data/lib/stylesheets/params/man.th.extra2.suppress.xml +0 -44
- data/lib/stylesheets/params/man.th.extra3.max.length.xml +0 -42
- data/lib/stylesheets/params/man.th.extra3.suppress.xml +0 -34
- data/lib/stylesheets/params/man.th.title.max.length.xml +0 -63
- data/lib/stylesheets/params/manifest.in.base.dir.xml +0 -29
- data/lib/stylesheets/params/manifest.xml +0 -29
- data/lib/stylesheets/params/manual.toc.xml +0 -29
- data/lib/stylesheets/params/margin.note.float.type.xml +0 -77
- data/lib/stylesheets/params/margin.note.properties.xml +0 -54
- data/lib/stylesheets/params/margin.note.title.properties.xml +0 -32
- data/lib/stylesheets/params/margin.note.width.xml +0 -35
- data/lib/stylesheets/params/marker.section.level.xml +0 -50
- data/lib/stylesheets/params/menuchoice.menu.separator.xml +0 -42
- data/lib/stylesheets/params/menuchoice.separator.xml +0 -32
- data/lib/stylesheets/params/minus.image.xml +0 -29
- data/lib/stylesheets/params/monospace.font.family.xml +0 -29
- data/lib/stylesheets/params/monospace.properties.xml +0 -38
- data/lib/stylesheets/params/monospace.verbatim.font.width.xml +0 -40
- data/lib/stylesheets/params/monospace.verbatim.properties.xml +0 -27
- data/lib/stylesheets/params/multiframe.bottom.bgcolor.xml +0 -28
- data/lib/stylesheets/params/multiframe.navigation.height.xml +0 -28
- data/lib/stylesheets/params/multiframe.top.bgcolor.xml +0 -28
- data/lib/stylesheets/params/multiframe.xml +0 -31
- data/lib/stylesheets/params/nav.separator.xml +0 -28
- data/lib/stylesheets/params/nav.table.summary.xml +0 -27
- data/lib/stylesheets/params/navbgcolor.xml +0 -26
- data/lib/stylesheets/params/navbodywidth.xml +0 -26
- data/lib/stylesheets/params/navig.graphics.extension.xml +0 -28
- data/lib/stylesheets/params/navig.graphics.path.xml +0 -30
- data/lib/stylesheets/params/navig.graphics.xml +0 -31
- data/lib/stylesheets/params/navig.showtitles.xml +0 -32
- data/lib/stylesheets/params/navtocwidth.xml +0 -26
- data/lib/stylesheets/params/next.image.xml +0 -27
- data/lib/stylesheets/params/no.home.image.xml +0 -27
- data/lib/stylesheets/params/no.next.image.xml +0 -27
- data/lib/stylesheets/params/no.prev.image.xml +0 -27
- data/lib/stylesheets/params/no.toc.image.xml +0 -27
- data/lib/stylesheets/params/no.up.image.xml +0 -27
- data/lib/stylesheets/params/nominal.image.depth.xml +0 -27
- data/lib/stylesheets/params/nominal.image.width.xml +0 -43
- data/lib/stylesheets/params/nominal.table.width.xml +0 -30
- data/lib/stylesheets/params/nongraphical.admonition.properties.xml +0 -41
- data/lib/stylesheets/params/normal.para.spacing.xml +0 -26
- data/lib/stylesheets/params/olink.base.uri.xml +0 -35
- data/lib/stylesheets/params/olink.debug.xml +0 -36
- data/lib/stylesheets/params/olink.doctitle.xml +0 -146
- data/lib/stylesheets/params/olink.fragid.xml +0 -23
- data/lib/stylesheets/params/olink.lang.fallback.sequence.xml +0 -83
- data/lib/stylesheets/params/olink.outline.ext.xml +0 -28
- data/lib/stylesheets/params/olink.properties.xml +0 -33
- data/lib/stylesheets/params/olink.pubid.xml +0 -27
- data/lib/stylesheets/params/olink.resolver.xml +0 -23
- data/lib/stylesheets/params/olink.sysid.xml +0 -27
- data/lib/stylesheets/params/orderedlist.label.properties.xml +0 -26
- data/lib/stylesheets/params/orderedlist.label.width.xml +0 -28
- data/lib/stylesheets/params/orderedlist.properties.xml +0 -24
- data/lib/stylesheets/params/othercredit.like.author.enabled.xml +0 -31
- data/lib/stylesheets/params/output-root.xml +0 -28
- data/lib/stylesheets/params/output.indent.xml +0 -32
- data/lib/stylesheets/params/overlay.js.xml +0 -28
- data/lib/stylesheets/params/overlay.logo.xml +0 -28
- data/lib/stylesheets/params/overlay.xml +0 -32
- data/lib/stylesheets/params/page.height.portrait.xml +0 -69
- data/lib/stylesheets/params/page.height.xml +0 -37
- data/lib/stylesheets/params/page.margin.bottom.xml +0 -29
- data/lib/stylesheets/params/page.margin.inner.xml +0 -56
- data/lib/stylesheets/params/page.margin.outer.xml +0 -53
- data/lib/stylesheets/params/page.margin.top.xml +0 -28
- data/lib/stylesheets/params/page.orientation.xml +0 -32
- data/lib/stylesheets/params/page.width.portrait.xml +0 -67
- data/lib/stylesheets/params/page.width.xml +0 -36
- data/lib/stylesheets/params/pages.template.xml +0 -29
- data/lib/stylesheets/params/paper.type.xml +0 -73
- data/lib/stylesheets/params/para.propagates.style.xml +0 -29
- data/lib/stylesheets/params/part.autolabel.xml +0 -73
- data/lib/stylesheets/params/passivetex.extensions.xml +0 -37
- data/lib/stylesheets/params/pgwide.properties.xml +0 -52
- data/lib/stylesheets/params/phrase.propagates.style.xml +0 -29
- data/lib/stylesheets/params/pixels.per.inch.xml +0 -31
- data/lib/stylesheets/params/plus.image.xml +0 -29
- data/lib/stylesheets/params/points.per.em.xml +0 -29
- data/lib/stylesheets/params/preface.autolabel.xml +0 -71
- data/lib/stylesheets/params/prefer.internal.olink.xml +0 -78
- data/lib/stylesheets/params/preferred.mediaobject.role.xml +0 -40
- data/lib/stylesheets/params/prev.image.xml +0 -27
- data/lib/stylesheets/params/procedure.properties.xml +0 -29
- data/lib/stylesheets/params/process.empty.source.toc.xml +0 -39
- data/lib/stylesheets/params/process.source.toc.xml +0 -39
- data/lib/stylesheets/params/profile.arch.xml +0 -39
- data/lib/stylesheets/params/profile.attribute.xml +0 -34
- data/lib/stylesheets/params/profile.audience.xml +0 -38
- data/lib/stylesheets/params/profile.condition.xml +0 -38
- data/lib/stylesheets/params/profile.conformance.xml +0 -38
- data/lib/stylesheets/params/profile.lang.xml +0 -38
- data/lib/stylesheets/params/profile.os.xml +0 -38
- data/lib/stylesheets/params/profile.revision.xml +0 -38
- data/lib/stylesheets/params/profile.revisionflag.xml +0 -38
- data/lib/stylesheets/params/profile.role.xml +0 -54
- data/lib/stylesheets/params/profile.security.xml +0 -38
- data/lib/stylesheets/params/profile.separator.xml +0 -27
- data/lib/stylesheets/params/profile.status.xml +0 -38
- data/lib/stylesheets/params/profile.userlevel.xml +0 -38
- data/lib/stylesheets/params/profile.value.xml +0 -41
- data/lib/stylesheets/params/profile.vendor.xml +0 -38
- data/lib/stylesheets/params/profile.wordsize.xml +0 -38
- data/lib/stylesheets/params/punct.honorific.xml +0 -28
- data/lib/stylesheets/params/qanda.defaultlabel.xml +0 -86
- data/lib/stylesheets/params/qanda.in.toc.xml +0 -34
- data/lib/stylesheets/params/qanda.inherit.numeration.xml +0 -30
- data/lib/stylesheets/params/qanda.nested.in.toc.xml +0 -29
- data/lib/stylesheets/params/qanda.title.level1.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level2.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level3.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level4.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level5.properties.xml +0 -32
- data/lib/stylesheets/params/qanda.title.level6.properties.xml +0 -34
- data/lib/stylesheets/params/qanda.title.properties.xml +0 -37
- data/lib/stylesheets/params/qandadiv.autolabel.xml +0 -26
- data/lib/stylesheets/params/rebuild-all.xml +0 -33
- data/lib/stylesheets/params/refclass.suppress.xml +0 -28
- data/lib/stylesheets/params/refentry.date.profile.enabled.xml +0 -46
- data/lib/stylesheets/params/refentry.date.profile.xml +0 -38
- data/lib/stylesheets/params/refentry.generate.name.xml +0 -33
- data/lib/stylesheets/params/refentry.generate.title.xml +0 -33
- data/lib/stylesheets/params/refentry.manual.fallback.profile.xml +0 -48
- data/lib/stylesheets/params/refentry.manual.profile.enabled.xml +0 -47
- data/lib/stylesheets/params/refentry.manual.profile.xml +0 -72
- data/lib/stylesheets/params/refentry.meta.get.quietly.xml +0 -37
- data/lib/stylesheets/params/refentry.pagebreak.xml +0 -33
- data/lib/stylesheets/params/refentry.separator.xml +0 -29
- data/lib/stylesheets/params/refentry.source.fallback.profile.xml +0 -49
- data/lib/stylesheets/params/refentry.source.name.profile.enabled.xml +0 -48
- data/lib/stylesheets/params/refentry.source.name.profile.xml +0 -89
- data/lib/stylesheets/params/refentry.source.name.suppress.xml +0 -42
- data/lib/stylesheets/params/refentry.title.properties.xml +0 -59
- data/lib/stylesheets/params/refentry.version.profile.enabled.xml +0 -47
- data/lib/stylesheets/params/refentry.version.profile.xml +0 -41
- data/lib/stylesheets/params/refentry.version.suppress.xml +0 -43
- data/lib/stylesheets/params/refentry.xref.manvolnum.xml +0 -31
- data/lib/stylesheets/params/reference.autolabel.xml +0 -67
- data/lib/stylesheets/params/region.after.extent.xml +0 -29
- data/lib/stylesheets/params/region.before.extent.xml +0 -29
- data/lib/stylesheets/params/revhistory.table.cell.properties.xml +0 -28
- data/lib/stylesheets/params/revhistory.table.properties.xml +0 -28
- data/lib/stylesheets/params/revhistory.title.properties.xml +0 -28
- data/lib/stylesheets/params/root.filename.xml +0 -29
- data/lib/stylesheets/params/root.properties.xml +0 -46
- data/lib/stylesheets/params/rootid.xml +0 -33
- data/lib/stylesheets/params/runinhead.default.title.end.punct.xml +0 -27
- data/lib/stylesheets/params/runinhead.title.end.punct.xml +0 -32
- data/lib/stylesheets/params/running.foot.properties.xml +0 -34
- data/lib/stylesheets/params/sans.font.family.xml +0 -29
- data/lib/stylesheets/params/saxon.callouts.xml +0 -30
- data/lib/stylesheets/params/saxon.character.representation.xml +0 -38
- data/lib/stylesheets/params/saxon.linenumbering.xml +0 -32
- data/lib/stylesheets/params/saxon.tablecolumns.xml +0 -30
- data/lib/stylesheets/params/script.dir.xml +0 -33
- data/lib/stylesheets/params/section.autolabel.max.depth.xml +0 -32
- data/lib/stylesheets/params/section.autolabel.xml +0 -26
- data/lib/stylesheets/params/section.container.element.xml +0 -62
- data/lib/stylesheets/params/section.label.includes.component.label.xml +0 -27
- data/lib/stylesheets/params/section.level1.properties.xml +0 -43
- data/lib/stylesheets/params/section.level2.properties.xml +0 -43
- data/lib/stylesheets/params/section.level3.properties.xml +0 -43
- data/lib/stylesheets/params/section.level4.properties.xml +0 -43
- data/lib/stylesheets/params/section.level5.properties.xml +0 -43
- data/lib/stylesheets/params/section.level6.properties.xml +0 -43
- data/lib/stylesheets/params/section.properties.xml +0 -35
- data/lib/stylesheets/params/section.title.level1.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level2.properties.xml +0 -33
- data/lib/stylesheets/params/section.title.level3.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level4.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level5.properties.xml +0 -32
- data/lib/stylesheets/params/section.title.level6.properties.xml +0 -33
- data/lib/stylesheets/params/section.title.properties.xml +0 -39
- data/lib/stylesheets/params/segmentedlist.as.table.xml +0 -28
- data/lib/stylesheets/params/sequential.links.xml +0 -25
- data/lib/stylesheets/params/shade.verbatim.style.xml +0 -36
- data/lib/stylesheets/params/shade.verbatim.xml +0 -30
- data/lib/stylesheets/params/show.comments.xml +0 -32
- data/lib/stylesheets/params/show.foil.number.xml +0 -28
- data/lib/stylesheets/params/show.revisionflag.xml +0 -42
- data/lib/stylesheets/params/showtoc.image.xml +0 -29
- data/lib/stylesheets/params/side.float.properties.xml +0 -50
- data/lib/stylesheets/params/sidebar.float.type.xml +0 -90
- data/lib/stylesheets/params/sidebar.float.width.xml +0 -35
- data/lib/stylesheets/params/sidebar.properties.xml +0 -42
- data/lib/stylesheets/params/sidebar.title.properties.xml +0 -32
- data/lib/stylesheets/params/simplesect.in.toc.xml +0 -26
- data/lib/stylesheets/params/slide.font.family.xml +0 -31
- data/lib/stylesheets/params/slide.title.font.family.xml +0 -31
- data/lib/stylesheets/params/slides.js.xml +0 -28
- data/lib/stylesheets/params/slides.properties.xml +0 -31
- data/lib/stylesheets/params/spacing.paras.xml +0 -30
- data/lib/stylesheets/params/speakernote.properties.xml +0 -32
- data/lib/stylesheets/params/subscript.properties.xml +0 -29
- data/lib/stylesheets/params/superscript.properties.xml +0 -29
- data/lib/stylesheets/params/suppress.footer.navigation.xml +0 -26
- data/lib/stylesheets/params/suppress.header.navigation.xml +0 -27
- data/lib/stylesheets/params/suppress.homepage.title.xml +0 -25
- data/lib/stylesheets/params/suppress.navigation.xml +0 -28
- data/lib/stylesheets/params/symbol.font.family.xml +0 -45
- data/lib/stylesheets/params/table.borders.with.css.xml +0 -28
- data/lib/stylesheets/params/table.cell.border.color.xml +0 -39
- data/lib/stylesheets/params/table.cell.border.style.xml +0 -42
- data/lib/stylesheets/params/table.cell.border.thickness.xml +0 -35
- data/lib/stylesheets/params/table.cell.padding.xml +0 -32
- data/lib/stylesheets/params/table.entry.padding.xml +0 -27
- data/lib/stylesheets/params/table.footnote.number.format.xml +0 -33
- data/lib/stylesheets/params/table.footnote.number.symbols.xml +0 -39
- data/lib/stylesheets/params/table.footnote.properties.xml +0 -39
- data/lib/stylesheets/params/table.frame.border.color.xml +0 -28
- data/lib/stylesheets/params/table.frame.border.style.xml +0 -37
- data/lib/stylesheets/params/table.frame.border.thickness.xml +0 -27
- data/lib/stylesheets/params/table.properties.xml +0 -34
- data/lib/stylesheets/params/table.spacer.image.xml +0 -26
- data/lib/stylesheets/params/table.table.properties.xml +0 -36
- data/lib/stylesheets/params/tablecolumns.extension.xml +0 -30
- data/lib/stylesheets/params/target.database.document.xml +0 -37
- data/lib/stylesheets/params/targets.filename.xml +0 -32
- data/lib/stylesheets/params/template.xml +0 -27
- data/lib/stylesheets/params/tex.math.delims.xml +0 -47
- data/lib/stylesheets/params/tex.math.file.xml +0 -42
- data/lib/stylesheets/params/tex.math.in.alt.xml +0 -76
- data/lib/stylesheets/params/text.home.xml +0 -27
- data/lib/stylesheets/params/text.next.xml +0 -27
- data/lib/stylesheets/params/text.prev.xml +0 -27
- data/lib/stylesheets/params/text.toc.xml +0 -27
- data/lib/stylesheets/params/text.up.xml +0 -27
- data/lib/stylesheets/params/textbgcolor.xml +0 -26
- data/lib/stylesheets/params/textdata.default.encoding.xml +0 -32
- data/lib/stylesheets/params/textinsert.extension.xml +0 -62
- data/lib/stylesheets/params/title.font.family.xml +0 -33
- data/lib/stylesheets/params/title.margin.left.xml +0 -65
- data/lib/stylesheets/params/titlefoil.html.xml +0 -27
- data/lib/stylesheets/params/toc.bg.color.xml +0 -27
- data/lib/stylesheets/params/toc.blank.graphic.xml +0 -28
- data/lib/stylesheets/params/toc.blank.image.xml +0 -27
- data/lib/stylesheets/params/toc.blank.text.xml +0 -27
- data/lib/stylesheets/params/toc.hide.show.xml +0 -33
- data/lib/stylesheets/params/toc.html.xml +0 -27
- data/lib/stylesheets/params/toc.image.xml +0 -27
- data/lib/stylesheets/params/toc.indent.width.xml +0 -34
- data/lib/stylesheets/params/toc.line.properties.xml +0 -44
- data/lib/stylesheets/params/toc.list.type.xml +0 -30
- data/lib/stylesheets/params/toc.margin.properties.xml +0 -33
- data/lib/stylesheets/params/toc.max.depth.xml +0 -25
- data/lib/stylesheets/params/toc.pointer.graphic.xml +0 -28
- data/lib/stylesheets/params/toc.pointer.image.xml +0 -27
- data/lib/stylesheets/params/toc.pointer.text.xml +0 -27
- data/lib/stylesheets/params/toc.row.height.xml +0 -33
- data/lib/stylesheets/params/toc.section.depth.xml +0 -28
- data/lib/stylesheets/params/toc.spacer.graphic.xml +0 -28
- data/lib/stylesheets/params/toc.spacer.image.xml +0 -27
- data/lib/stylesheets/params/toc.spacer.text.xml +0 -27
- data/lib/stylesheets/params/toc.width.xml +0 -28
- data/lib/stylesheets/params/ua.js.xml +0 -28
- data/lib/stylesheets/params/ulink.footnotes.xml +0 -34
- data/lib/stylesheets/params/ulink.hyphenate.chars.xml +0 -37
- data/lib/stylesheets/params/ulink.hyphenate.xml +0 -35
- data/lib/stylesheets/params/ulink.show.xml +0 -37
- data/lib/stylesheets/params/ulink.target.xml +0 -29
- data/lib/stylesheets/params/up.image.xml +0 -27
- data/lib/stylesheets/params/use.embed.for.svg.xml +0 -33
- data/lib/stylesheets/params/use.extensions.xml +0 -31
- data/lib/stylesheets/params/use.id.as.filename.xml +0 -30
- data/lib/stylesheets/params/use.id.function.xml +0 -32
- data/lib/stylesheets/params/use.local.olink.style.xml +0 -28
- data/lib/stylesheets/params/use.role.as.xrefstyle.xml +0 -93
- data/lib/stylesheets/params/use.role.for.mediaobject.xml +0 -56
- data/lib/stylesheets/params/use.svg.xml +0 -30
- data/lib/stylesheets/params/variablelist.as.blocks.xml +0 -62
- data/lib/stylesheets/params/variablelist.as.table.xml +0 -54
- data/lib/stylesheets/params/variablelist.max.termlength.xml +0 -46
- data/lib/stylesheets/params/variablelist.term.break.after.xml +0 -39
- data/lib/stylesheets/params/variablelist.term.properties.xml +0 -29
- data/lib/stylesheets/params/variablelist.term.separator.xml +0 -40
- data/lib/stylesheets/params/verbatim.properties.xml +0 -38
- data/lib/stylesheets/params/wordml.template.xml +0 -29
- data/lib/stylesheets/params/writing.mode.xml +0 -83
- data/lib/stylesheets/params/xbCollapsibleLists.js.xml +0 -28
- data/lib/stylesheets/params/xbDOM.js.xml +0 -28
- data/lib/stylesheets/params/xbLibrary.js.xml +0 -28
- data/lib/stylesheets/params/xbStyle.js.xml +0 -28
- data/lib/stylesheets/params/xep.extensions.xml +0 -31
- data/lib/stylesheets/params/xep.index.item.properties.xml +0 -36
- data/lib/stylesheets/params/xref.label-page.separator.xml +0 -38
- data/lib/stylesheets/params/xref.label-title.separator.xml +0 -36
- data/lib/stylesheets/params/xref.properties.xml +0 -29
- data/lib/stylesheets/params/xref.title-page.separator.xml +0 -36
- data/lib/stylesheets/params/xref.with.number.and.title.xml +0 -30
- data/lib/stylesheets/profiling/profile-mode.xsl +0 -239
- data/lib/stylesheets/profiling/profile.xsl +0 -58
- data/lib/stylesheets/profiling/strip-attributes.xsl +0 -27
- data/lib/stylesheets/profiling/xsl2profile.xsl +0 -159
- data/lib/stylesheets/roundtrip/blocks-spec.xml +0 -11
- data/lib/stylesheets/roundtrip/blocks2dbk.dtd +0 -76
- data/lib/stylesheets/roundtrip/blocks2dbk.xsl +0 -1734
- data/lib/stylesheets/roundtrip/dbk2ooo.xsl +0 -178
- data/lib/stylesheets/roundtrip/dbk2pages.xsl +0 -442
- data/lib/stylesheets/roundtrip/dbk2wordml.xsl +0 -402
- data/lib/stylesheets/roundtrip/dbk2wp.xsl +0 -1376
- data/lib/stylesheets/roundtrip/normalise-common.xsl +0 -39
- data/lib/stylesheets/roundtrip/normalise2sections.xsl +0 -1270
- data/lib/stylesheets/roundtrip/pages2normalise.xsl +0 -352
- data/lib/stylesheets/roundtrip/param.xml +0 -105
- data/lib/stylesheets/roundtrip/param.xsl +0 -20
- data/lib/stylesheets/roundtrip/sections-spec.xml +0 -38
- data/lib/stylesheets/roundtrip/sections2blocks.xsl +0 -263
- data/lib/stylesheets/roundtrip/specifications.xml +0 -1420
- data/lib/stylesheets/roundtrip/template-pages.xml +0 -2
- data/lib/stylesheets/roundtrip/template.dot +0 -0
- data/lib/stylesheets/roundtrip/template.xml +0 -3
- data/lib/stylesheets/roundtrip/wordml2normalise.xsl +0 -446
- data/lib/stylesheets/slides/browser/CTOCWidget.js +0 -169
- data/lib/stylesheets/slides/browser/overlay.js +0 -142
- data/lib/stylesheets/slides/browser/slides-default.css +0 -9
- data/lib/stylesheets/slides/browser/slides-frames.css +0 -73
- data/lib/stylesheets/slides/browser/slides-plain.css +0 -1
- data/lib/stylesheets/slides/browser/slides-table.css +0 -41
- data/lib/stylesheets/slides/browser/slides-w3c.css +0 -1
- data/lib/stylesheets/slides/browser/slides.css +0 -119
- data/lib/stylesheets/slides/browser/slides.js +0 -120
- data/lib/stylesheets/slides/browser/ua.js +0 -135
- data/lib/stylesheets/slides/browser/xbCollapsibleLists.js +0 -537
- data/lib/stylesheets/slides/browser/xbDOM.js +0 -374
- data/lib/stylesheets/slides/browser/xbDebug.js +0 -311
- data/lib/stylesheets/slides/browser/xbLibrary.js +0 -80
- data/lib/stylesheets/slides/browser/xbStyle-css.js +0 -791
- data/lib/stylesheets/slides/browser/xbStyle-nn4.js +0 -485
- data/lib/stylesheets/slides/browser/xbStyle-not-supported.js +0 -77
- data/lib/stylesheets/slides/browser/xbStyle.js +0 -295
- data/lib/stylesheets/slides/fo/param.xml +0 -356
- data/lib/stylesheets/slides/fo/param.xsl +0 -74
- data/lib/stylesheets/slides/fo/plain-titlepage.xml +0 -79
- data/lib/stylesheets/slides/fo/plain-titlepage.xsl +0 -187
- data/lib/stylesheets/slides/fo/plain.xsl +0 -528
- data/lib/stylesheets/slides/graphics/active/arr-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/arr-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-fforward.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-info.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/but-rewind.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-home.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/active/nav-up.png +0 -0
- data/lib/stylesheets/slides/graphics/active/w3c-next.png +0 -0
- data/lib/stylesheets/slides/graphics/active/w3c-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/active/w3c-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/arrow.gif +0 -0
- data/lib/stylesheets/slides/graphics/blank.gif +0 -0
- data/lib/stylesheets/slides/graphics/blank.png +0 -0
- data/lib/stylesheets/slides/graphics/hidetoc.gif +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-fforward.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-info.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-next.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/but-rewind.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-home.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-next.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/nav-up.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/w3c-next.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/w3c-prev.png +0 -0
- data/lib/stylesheets/slides/graphics/inactive/w3c-toc.png +0 -0
- data/lib/stylesheets/slides/graphics/plus.gif +0 -0
- data/lib/stylesheets/slides/graphics/pointer.png +0 -0
- data/lib/stylesheets/slides/graphics/showtoc.gif +0 -0
- data/lib/stylesheets/slides/graphics/toc/bullet.png +0 -0
- data/lib/stylesheets/slides/graphics/toc/closed.png +0 -0
- data/lib/stylesheets/slides/graphics/toc/open.png +0 -0
- data/lib/stylesheets/slides/html/css.xsl +0 -46
- data/lib/stylesheets/slides/html/default.xsl +0 -261
- data/lib/stylesheets/slides/html/flat.xsl +0 -70
- data/lib/stylesheets/slides/html/frames.xsl +0 -2016
- data/lib/stylesheets/slides/html/graphics.xsl +0 -151
- data/lib/stylesheets/slides/html/jscript.xsl +0 -127
- data/lib/stylesheets/slides/html/param.xml +0 -1376
- data/lib/stylesheets/slides/html/param.xsl +0 -68
- data/lib/stylesheets/slides/html/plain.xsl +0 -472
- data/lib/stylesheets/slides/html/slides-common.xsl +0 -1541
- data/lib/stylesheets/slides/html/tables.xsl +0 -336
- data/lib/stylesheets/slides/html/vslides.xsl +0 -667
- data/lib/stylesheets/slides/html/w3c.xsl +0 -376
- data/lib/stylesheets/slides/htmlhelp/htmlhelp.xsl +0 -89
- data/lib/stylesheets/slides/keynote/default.xsl +0 -600
- data/lib/stylesheets/slides/keynote/xsltsl/cmp.xsl +0 -348
- data/lib/stylesheets/slides/keynote/xsltsl/date-time.xsl +0 -1524
- data/lib/stylesheets/slides/keynote/xsltsl/example.xsl +0 -90
- data/lib/stylesheets/slides/keynote/xsltsl/markup.xsl +0 -789
- data/lib/stylesheets/slides/keynote/xsltsl/math.xsl +0 -704
- data/lib/stylesheets/slides/keynote/xsltsl/node.xsl +0 -229
- data/lib/stylesheets/slides/keynote/xsltsl/stdlib.xsl +0 -340
- data/lib/stylesheets/slides/keynote/xsltsl/string.xsl +0 -1233
- data/lib/stylesheets/slides/keynote/xsltsl/svg.xsl +0 -177
- data/lib/stylesheets/slides/keynote/xsltsl/uri.xsl +0 -580
- data/lib/stylesheets/slides/svg/default.xsl +0 -686
- data/lib/stylesheets/slides/xhtml/css.xsl +0 -47
- data/lib/stylesheets/slides/xhtml/default.xsl +0 -246
- data/lib/stylesheets/slides/xhtml/flat.xsl +0 -71
- data/lib/stylesheets/slides/xhtml/frames.xsl +0 -1982
- data/lib/stylesheets/slides/xhtml/graphics.xsl +0 -152
- data/lib/stylesheets/slides/xhtml/jscript.xsl +0 -128
- data/lib/stylesheets/slides/xhtml/param.xsl +0 -70
- data/lib/stylesheets/slides/xhtml/plain.xsl +0 -470
- data/lib/stylesheets/slides/xhtml/slides-common.xsl +0 -1534
- data/lib/stylesheets/slides/xhtml/tables.xsl +0 -334
- data/lib/stylesheets/slides/xhtml/vslides.xsl +0 -652
- data/lib/stylesheets/slides/xhtml/w3c.xsl +0 -358
- data/lib/stylesheets/template/titlepage.xml +0 -478
- data/lib/stylesheets/template/titlepage.xsl +0 -1355
- data/lib/stylesheets/tests/refentry.007.ns.xml +0 -325
- data/lib/stylesheets/tests/refentry.007.xml +0 -340
- data/lib/stylesheets/tools/bin/docbook-xsl-update +0 -53
- data/lib/stylesheets/tools/make/Makefile.DocBook +0 -698
- data/lib/stylesheets/tools/make/Makefile.combine +0 -182
- data/lib/stylesheets/tools/make/Makefile.docParam +0 -59
- data/lib/stylesheets/webhelp/LICENSE +0 -1
- data/lib/stylesheets/webhelp/build.properties +0 -43
- data/lib/stylesheets/webhelp/build.xml +0 -112
- data/lib/stylesheets/webhelp/docs/common/css/positioning.css +0 -109
- data/lib/stylesheets/webhelp/docs/common/images/header-bg.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/highlight-blue.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/highlight-yellow.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/loading.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/logo.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/images/showHideTreeIcons.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/jquery-1.4.2.min.js +0 -154
- data/lib/stylesheets/webhelp/docs/common/jquery/jquery-ui-1.8.2.custom.min.js +0 -321
- data/lib/stylesheets/webhelp/docs/common/jquery/jquery.cookie.js +0 -93
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-anim_basic_16x16.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css +0 -398
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/file.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder-closed.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder-closed2.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder2.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/minus.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/plus.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-black-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-black.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-default-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-default.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-famfamfam-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-famfamfam.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-gray-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-gray.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-red-line.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-red.gif +0 -0
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.async.js +0 -72
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.css +0 -85
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.js +0 -255
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.min.js +0 -16
- data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.pack.js +0 -16
- data/lib/stylesheets/webhelp/docs/common/main.js +0 -161
- data/lib/stylesheets/webhelp/docs/content/ch01.html +0 -61
- data/lib/stylesheets/webhelp/docs/content/ch02.html +0 -32
- data/lib/stylesheets/webhelp/docs/content/ch02s01.html +0 -117
- data/lib/stylesheets/webhelp/docs/content/ch02s02.html +0 -102
- data/lib/stylesheets/webhelp/docs/content/ch02s03.html +0 -36
- data/lib/stylesheets/webhelp/docs/content/ch02s04.html +0 -42
- data/lib/stylesheets/webhelp/docs/content/ch03.html +0 -37
- data/lib/stylesheets/webhelp/docs/content/ch03s01.html +0 -62
- data/lib/stylesheets/webhelp/docs/content/ch03s02.html +0 -124
- data/lib/stylesheets/webhelp/docs/content/index.html +0 -71
- data/lib/stylesheets/webhelp/docs/content/search/htmlFileInfoList.js +0 -10
- data/lib/stylesheets/webhelp/docs/content/search/htmlFileList.js +0 -11
- data/lib/stylesheets/webhelp/docs/content/search/index-1.js +0 -224
- data/lib/stylesheets/webhelp/docs/content/search/index-2.js +0 -223
- data/lib/stylesheets/webhelp/docs/content/search/index-3.js +0 -221
- data/lib/stylesheets/webhelp/docs/content/search/nwSearchFnt.js +0 -513
- data/lib/stylesheets/webhelp/docs/content/search/stemmers/en_stemmer.js +0 -187
- data/lib/stylesheets/webhelp/docs/favicon.ico +0 -0
- data/lib/stylesheets/webhelp/docs/index.html +0 -13
- data/lib/stylesheets/webhelp/docsrc/readme.xml +0 -891
- data/lib/stylesheets/webhelp/template/common/css/positioning.css +0 -109
- data/lib/stylesheets/webhelp/template/common/images/header-bg.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/highlight-blue.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/highlight-yellow.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/loading.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/images/logo.png +0 -0
- data/lib/stylesheets/webhelp/template/common/images/showHideTreeIcons.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/jquery-1.4.2.min.js +0 -154
- data/lib/stylesheets/webhelp/template/common/jquery/jquery-ui-1.8.2.custom.min.js +0 -321
- data/lib/stylesheets/webhelp/template/common/jquery/jquery.cookie.js +0 -93
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-anim_basic_16x16.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css +0 -398
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/file.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder-closed.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder-closed2.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder2.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/minus.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/plus.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-black-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-black.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-default-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-default.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-famfamfam-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-famfamfam.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-gray-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-gray.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-red-line.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-red.gif +0 -0
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.async.js +0 -72
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.css +0 -85
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.js +0 -255
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.min.js +0 -16
- data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.pack.js +0 -16
- data/lib/stylesheets/webhelp/template/common/main.js +0 -161
- data/lib/stylesheets/webhelp/template/content/search/default.props +0 -1
- data/lib/stylesheets/webhelp/template/content/search/en-us.props +0 -45
- data/lib/stylesheets/webhelp/template/content/search/es-es.props +0 -179
- data/lib/stylesheets/webhelp/template/content/search/ja-jp.props +0 -1
- data/lib/stylesheets/webhelp/template/content/search/nwSearchFnt.js +0 -513
- data/lib/stylesheets/webhelp/template/content/search/punctuation.props +0 -31
- data/lib/stylesheets/webhelp/template/content/search/stemmers/de_stemmer.js +0 -247
- data/lib/stylesheets/webhelp/template/content/search/stemmers/en_stemmer.js +0 -187
- data/lib/stylesheets/webhelp/template/content/search/stemmers/fr_stemmer.js +0 -299
- data/lib/stylesheets/webhelp/template/favicon.ico +0 -0
- data/lib/stylesheets/webhelp/xsl/webhelp.xsl +0 -772
- data/lib/stylesheets/website/autolayout.xsl +0 -258
- data/lib/stylesheets/website/chunk-common.xsl +0 -227
- data/lib/stylesheets/website/chunk-tabular.xsl +0 -12
- data/lib/stylesheets/website/chunk-website.xsl +0 -12
- data/lib/stylesheets/website/head.xsl +0 -316
- data/lib/stylesheets/website/makefile-dep.xsl +0 -143
- data/lib/stylesheets/website/olink.xsl +0 -297
- data/lib/stylesheets/website/param.xml +0 -788
- data/lib/stylesheets/website/param.xsl +0 -53
- data/lib/stylesheets/website/rss.xsl +0 -143
- data/lib/stylesheets/website/tabular.xsl +0 -213
- data/lib/stylesheets/website/toc-tabular.xsl +0 -480
- data/lib/stylesheets/website/toc.xsl +0 -286
- data/lib/stylesheets/website/website-common.xsl +0 -821
- data/lib/stylesheets/website/website-targets.xsl +0 -27
- data/lib/stylesheets/website/website.xsl +0 -132
- data/lib/stylesheets/website/xbel.xsl +0 -114
- data/lib/stylesheets/xhtml-1_1/admon.xsl +0 -135
- data/lib/stylesheets/xhtml-1_1/annotations.xsl +0 -160
- data/lib/stylesheets/xhtml-1_1/autoidx-kimber.xsl +0 -140
- data/lib/stylesheets/xhtml-1_1/autoidx-kosek.xsl +0 -110
- data/lib/stylesheets/xhtml-1_1/autoidx-ng.xsl +0 -23
- data/lib/stylesheets/xhtml-1_1/autoidx.xsl +0 -682
- data/lib/stylesheets/xhtml-1_1/autotoc.xsl +0 -665
- data/lib/stylesheets/xhtml-1_1/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/xhtml-1_1/biblio.xsl +0 -1242
- data/lib/stylesheets/xhtml-1_1/block.xsl +0 -537
- data/lib/stylesheets/xhtml-1_1/callout.xsl +0 -189
- data/lib/stylesheets/xhtml-1_1/changebars.xsl +0 -80
- data/lib/stylesheets/xhtml-1_1/chunk-changebars.xsl +0 -97
- data/lib/stylesheets/xhtml-1_1/chunk-code.xsl +0 -644
- data/lib/stylesheets/xhtml-1_1/chunk-common.xsl +0 -1562
- data/lib/stylesheets/xhtml-1_1/chunk.xsl +0 -53
- data/lib/stylesheets/xhtml-1_1/chunker.xsl +0 -303
- data/lib/stylesheets/xhtml-1_1/chunkfast.xsl +0 -70
- data/lib/stylesheets/xhtml-1_1/chunktoc.xsl +0 -527
- data/lib/stylesheets/xhtml-1_1/component.xsl +0 -397
- data/lib/stylesheets/xhtml-1_1/division.xsl +0 -219
- data/lib/stylesheets/xhtml-1_1/docbook.css.xml +0 -109
- data/lib/stylesheets/xhtml-1_1/docbook.xsl +0 -435
- data/lib/stylesheets/xhtml-1_1/ebnf.xsl +0 -329
- data/lib/stylesheets/xhtml-1_1/footnote.xsl +0 -306
- data/lib/stylesheets/xhtml-1_1/formal.xsl +0 -413
- data/lib/stylesheets/xhtml-1_1/glossary.xsl +0 -565
- data/lib/stylesheets/xhtml-1_1/graphics.xsl +0 -1437
- data/lib/stylesheets/xhtml-1_1/highlight.xsl +0 -89
- data/lib/stylesheets/xhtml-1_1/html-rtf.xsl +0 -321
- data/lib/stylesheets/xhtml-1_1/html.xsl +0 -600
- data/lib/stylesheets/xhtml-1_1/htmltbl.xsl +0 -104
- data/lib/stylesheets/xhtml-1_1/index.xsl +0 -266
- data/lib/stylesheets/xhtml-1_1/info.xsl +0 -46
- data/lib/stylesheets/xhtml-1_1/inline.xsl +0 -1452
- data/lib/stylesheets/xhtml-1_1/keywords.xsl +0 -38
- data/lib/stylesheets/xhtml-1_1/lists.xsl +0 -1090
- data/lib/stylesheets/xhtml-1_1/maketoc.xsl +0 -92
- data/lib/stylesheets/xhtml-1_1/manifest.xsl +0 -23
- data/lib/stylesheets/xhtml-1_1/math.xsl +0 -285
- data/lib/stylesheets/xhtml-1_1/oldchunker.xsl +0 -177
- data/lib/stylesheets/xhtml-1_1/onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml-1_1/param.xsl +0 -438
- data/lib/stylesheets/xhtml-1_1/pi.xsl +0 -1204
- data/lib/stylesheets/xhtml-1_1/profile-chunk-code.xsl +0 -616
- data/lib/stylesheets/xhtml-1_1/profile-chunk.xsl +0 -53
- data/lib/stylesheets/xhtml-1_1/profile-docbook.xsl +0 -407
- data/lib/stylesheets/xhtml-1_1/profile-onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml-1_1/qandaset.xsl +0 -421
- data/lib/stylesheets/xhtml-1_1/refentry.xsl +0 -301
- data/lib/stylesheets/xhtml-1_1/sections.xsl +0 -543
- data/lib/stylesheets/xhtml-1_1/synop.xsl +0 -1515
- data/lib/stylesheets/xhtml-1_1/table.xsl +0 -1169
- data/lib/stylesheets/xhtml-1_1/task.xsl +0 -75
- data/lib/stylesheets/xhtml-1_1/titlepage.templates.xsl +0 -3818
- data/lib/stylesheets/xhtml-1_1/titlepage.xsl +0 -1032
- data/lib/stylesheets/xhtml-1_1/toc.xsl +0 -332
- data/lib/stylesheets/xhtml-1_1/verbatim.xsl +0 -389
- data/lib/stylesheets/xhtml-1_1/xref.xsl +0 -1317
- data/lib/stylesheets/xhtml/admon.xsl +0 -137
- data/lib/stylesheets/xhtml/annotations.xsl +0 -160
- data/lib/stylesheets/xhtml/autoidx-kimber.xsl +0 -140
- data/lib/stylesheets/xhtml/autoidx-kosek.xsl +0 -110
- data/lib/stylesheets/xhtml/autoidx-ng.xsl +0 -23
- data/lib/stylesheets/xhtml/autoidx.xsl +0 -682
- data/lib/stylesheets/xhtml/autotoc.xsl +0 -665
- data/lib/stylesheets/xhtml/biblio-iso690.xsl +0 -1302
- data/lib/stylesheets/xhtml/biblio.xsl +0 -1242
- data/lib/stylesheets/xhtml/block.xsl +0 -537
- data/lib/stylesheets/xhtml/callout.xsl +0 -189
- data/lib/stylesheets/xhtml/changebars.xsl +0 -80
- data/lib/stylesheets/xhtml/chunk-changebars.xsl +0 -97
- data/lib/stylesheets/xhtml/chunk-code.xsl +0 -644
- data/lib/stylesheets/xhtml/chunk-common.xsl +0 -1562
- data/lib/stylesheets/xhtml/chunk.xsl +0 -53
- data/lib/stylesheets/xhtml/chunker.xsl +0 -303
- data/lib/stylesheets/xhtml/chunkfast.xsl +0 -70
- data/lib/stylesheets/xhtml/chunktoc.xsl +0 -527
- data/lib/stylesheets/xhtml/component.xsl +0 -397
- data/lib/stylesheets/xhtml/division.xsl +0 -219
- data/lib/stylesheets/xhtml/docbook.css.xml +0 -109
- data/lib/stylesheets/xhtml/docbook.xsl +0 -435
- data/lib/stylesheets/xhtml/ebnf.xsl +0 -329
- data/lib/stylesheets/xhtml/footnote.xsl +0 -306
- data/lib/stylesheets/xhtml/formal.xsl +0 -413
- data/lib/stylesheets/xhtml/glossary.xsl +0 -565
- data/lib/stylesheets/xhtml/graphics.xsl +0 -1437
- data/lib/stylesheets/xhtml/highlight.xsl +0 -89
- data/lib/stylesheets/xhtml/html-rtf.xsl +0 -321
- data/lib/stylesheets/xhtml/html.xsl +0 -600
- data/lib/stylesheets/xhtml/htmltbl.xsl +0 -104
- data/lib/stylesheets/xhtml/index.xsl +0 -266
- data/lib/stylesheets/xhtml/info.xsl +0 -46
- data/lib/stylesheets/xhtml/inline.xsl +0 -1452
- data/lib/stylesheets/xhtml/keywords.xsl +0 -38
- data/lib/stylesheets/xhtml/lists.xsl +0 -1123
- data/lib/stylesheets/xhtml/maketoc.xsl +0 -92
- data/lib/stylesheets/xhtml/manifest.xsl +0 -23
- data/lib/stylesheets/xhtml/math.xsl +0 -285
- data/lib/stylesheets/xhtml/oldchunker.xsl +0 -177
- data/lib/stylesheets/xhtml/onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml/param.xsl +0 -438
- data/lib/stylesheets/xhtml/pi.xsl +0 -1204
- data/lib/stylesheets/xhtml/profile-chunk-code.xsl +0 -616
- data/lib/stylesheets/xhtml/profile-chunk.xsl +0 -53
- data/lib/stylesheets/xhtml/profile-docbook.xsl +0 -407
- data/lib/stylesheets/xhtml/profile-onechunk.xsl +0 -37
- data/lib/stylesheets/xhtml/qandaset.xsl +0 -421
- data/lib/stylesheets/xhtml/refentry.xsl +0 -301
- data/lib/stylesheets/xhtml/sections.xsl +0 -543
- data/lib/stylesheets/xhtml/synop.xsl +0 -1515
- data/lib/stylesheets/xhtml/table.xsl +0 -1169
- data/lib/stylesheets/xhtml/task.xsl +0 -75
- data/lib/stylesheets/xhtml/titlepage.templates.xsl +0 -3818
- data/lib/stylesheets/xhtml/titlepage.xsl +0 -1032
- data/lib/stylesheets/xhtml/toc.xsl +0 -332
- data/lib/stylesheets/xhtml/verbatim.xsl +0 -389
- data/lib/stylesheets/xhtml/xref.xsl +0 -1317
data/pdfs/footnotes.pdf
ADDED
@@ -0,0 +1,1990 @@
|
|
1
|
+
%PDF-1.3
|
2
|
+
%����
|
3
|
+
1 0 obj
|
4
|
+
<< /Creator <feff0050007200610077006e>
|
5
|
+
/Producer <feff0050007200610077006e>
|
6
|
+
>>
|
7
|
+
endobj
|
8
|
+
2 0 obj
|
9
|
+
<< /Type /Catalog
|
10
|
+
/Pages 3 0 R
|
11
|
+
/Names 15 0 R
|
12
|
+
/Outlines 20 0 R
|
13
|
+
>>
|
14
|
+
endobj
|
15
|
+
3 0 obj
|
16
|
+
<< /Type /Pages
|
17
|
+
/Count 4
|
18
|
+
/Kids [5 0 R 9 0 R 11 0 R 13 0 R]
|
19
|
+
>>
|
20
|
+
endobj
|
21
|
+
4 0 obj
|
22
|
+
<< /Length 11446
|
23
|
+
>>
|
24
|
+
stream
|
25
|
+
q
|
26
|
+
/DeviceRGB cs
|
27
|
+
0.392 0.392 0.392 scn
|
28
|
+
|
29
|
+
BT
|
30
|
+
85.03937007874016 99.9641294173228 Td
|
31
|
+
/F2.0 5.83 Tf
|
32
|
+
<31> Tj
|
33
|
+
ET
|
34
|
+
|
35
|
+
|
36
|
+
BT
|
37
|
+
88.32749007874017 96.11866141732278 Td
|
38
|
+
/F2.0 10 Tf
|
39
|
+
<2054686973206973207468652061637475616c20666f6f746e6f74652e> Tj
|
40
|
+
ET
|
41
|
+
|
42
|
+
0.000 0.000 0.000 scn
|
43
|
+
0.392 0.392 0.392 scn
|
44
|
+
|
45
|
+
BT
|
46
|
+
85.03937007874016 118.80342075590539 Td
|
47
|
+
/F2.0 5.83 Tf
|
48
|
+
<32> Tj
|
49
|
+
ET
|
50
|
+
|
51
|
+
|
52
|
+
BT
|
53
|
+
88.32749007874017 114.95795275590538 Td
|
54
|
+
/F2.0 10 Tf
|
55
|
+
<204120466f6f746e6f746520697320746869732e> Tj
|
56
|
+
ET
|
57
|
+
|
58
|
+
0.000 0.000 0.000 scn
|
59
|
+
0.392 0.392 0.392 scn
|
60
|
+
|
61
|
+
BT
|
62
|
+
85.03937007874016 137.64271209448796 Td
|
63
|
+
/F2.0 5.83 Tf
|
64
|
+
<33> Tj
|
65
|
+
ET
|
66
|
+
|
67
|
+
|
68
|
+
BT
|
69
|
+
88.32749007874017 133.79724409448798 Td
|
70
|
+
/F2.0 10 Tf
|
71
|
+
<204120466f6f746e6f746520697320746869732e> Tj
|
72
|
+
ET
|
73
|
+
|
74
|
+
0.000 0.000 0.000 scn
|
75
|
+
0.392 0.392 0.392 scn
|
76
|
+
|
77
|
+
BT
|
78
|
+
85.03937007874016 235.50200343307057 Td
|
79
|
+
/F2.0 5.83 Tf
|
80
|
+
<34> Tj
|
81
|
+
ET
|
82
|
+
|
83
|
+
|
84
|
+
BT
|
85
|
+
88.32749007874017 231.6565354330706 Td
|
86
|
+
/F2.0 10 Tf
|
87
|
+
[<204120466f6f746e6f7465206973207468697320776974682071756974652061206c6f74206f66207465787420696e206974> -11.0 <2e204c657427732073656520686f772077652063616e2061646a75737420746865206865696768747320686572652e2041>] TJ
|
88
|
+
ET
|
89
|
+
|
90
|
+
|
91
|
+
BT
|
92
|
+
85.03937007874016 218.48653543307057 Td
|
93
|
+
/F2.0 10 Tf
|
94
|
+
[<466f6f746e6f7465206973207468697320776974682071756974652061206c6f74206f66207465787420696e206974> -11.0 <2e204c657427732073656520686f772077652063616e2061646a75737420746865206865696768747320686572652e2041>] TJ
|
95
|
+
ET
|
96
|
+
|
97
|
+
|
98
|
+
BT
|
99
|
+
85.03937007874016 205.31653543307058 Td
|
100
|
+
/F2.0 10 Tf
|
101
|
+
[<466f6f746e6f7465206973207468697320776974682071756974652061206c6f74206f66207465787420696e206974> -11.0 <2e204c657427732073656520686f772077652063616e2061646a75737420746865206865696768747320686572652e2041>] TJ
|
102
|
+
ET
|
103
|
+
|
104
|
+
|
105
|
+
BT
|
106
|
+
85.03937007874016 192.1465354330706 Td
|
107
|
+
/F2.0 10 Tf
|
108
|
+
[<466f6f746e6f7465206973207468697320776974682071756974652061206c6f74206f66207465787420696e206974> -11.0 <2e204c657427732073656520686f772077652063616e2061646a75737420746865206865696768747320686572652e2041>] TJ
|
109
|
+
ET
|
110
|
+
|
111
|
+
|
112
|
+
BT
|
113
|
+
85.03937007874016 178.97653543307058 Td
|
114
|
+
/F2.0 10 Tf
|
115
|
+
[<466f6f746e6f7465206973207468697320776974682071756974652061206c6f74206f66207465787420696e206974> -11.0 <2e204c657427732073656520686f772077652063616e2061646a75737420746865206865696768747320686572652e2041>] TJ
|
116
|
+
ET
|
117
|
+
|
118
|
+
|
119
|
+
BT
|
120
|
+
85.03937007874016 165.80653543307056 Td
|
121
|
+
/F2.0 10 Tf
|
122
|
+
[<466f6f746e6f7465206973207468697320776974682071756974652061206c6f74206f66207465787420696e206974> -11.0 <2e204c657427732073656520686f772077652063616e2061646a75737420746865206865696768747320686572652e2041>] TJ
|
123
|
+
ET
|
124
|
+
|
125
|
+
|
126
|
+
BT
|
127
|
+
85.03937007874016 152.63653543307058 Td
|
128
|
+
/F2.0 10 Tf
|
129
|
+
[<466f6f746e6f7465206973207468697320776974682071756974652061206c6f74206f66207465787420696e206974> -11.0 <2e204c657427732073656520686f772077652063616e2061646a75737420746865206865696768747320686572652e>] TJ
|
130
|
+
ET
|
131
|
+
|
132
|
+
0.000 0.000 0.000 scn
|
133
|
+
0.392 0.392 0.392 scn
|
134
|
+
|
135
|
+
BT
|
136
|
+
85.03937007874016 254.34129477165317 Td
|
137
|
+
/F2.0 5.83 Tf
|
138
|
+
<35> Tj
|
139
|
+
ET
|
140
|
+
|
141
|
+
|
142
|
+
BT
|
143
|
+
88.32749007874017 250.49582677165319 Td
|
144
|
+
/F2.0 10 Tf
|
145
|
+
<204120466f6f746e6f746520697320746869732e> Tj
|
146
|
+
ET
|
147
|
+
|
148
|
+
0.000 0.000 0.000 scn
|
149
|
+
|
150
|
+
BT
|
151
|
+
85.03937007874016 747.5386299212598 Td
|
152
|
+
/F1.0 12 Tf
|
153
|
+
[<546869732069732061206e6f726d616c2074> 10.0 <657874>] TJ
|
154
|
+
ET
|
155
|
+
|
156
|
+
|
157
|
+
BT
|
158
|
+
193.63937007874017 752.1531915212598 Td
|
159
|
+
/F1.0 6.9959999999999996 Tf
|
160
|
+
<31> Tj
|
161
|
+
ET
|
162
|
+
|
163
|
+
|
164
|
+
BT
|
165
|
+
197.58511407874016 747.5386299212598 Td
|
166
|
+
/F1.0 12 Tf
|
167
|
+
[<2077697468206120666f6f746e6f74> 10.0 <6520696e206974> -11.0 <2e>] TJ
|
168
|
+
ET
|
169
|
+
|
170
|
+
|
171
|
+
1.057 Tw
|
172
|
+
|
173
|
+
BT
|
174
|
+
85.03937007874016 718.1614015748031 Td
|
175
|
+
/F1.0 12 Tf
|
176
|
+
[<416e64206865726520697320736f6d65206d6f72652074> 10.0 <6578742077697468206576> 14.0 <656e206d6f726520666f6f746e6f74> 10.0 <6573>] TJ
|
177
|
+
ET
|
178
|
+
|
179
|
+
|
180
|
+
0.000 Tw
|
181
|
+
|
182
|
+
1.057 Tw
|
183
|
+
|
184
|
+
BT
|
185
|
+
388.58523318425193 722.7759631748031 Td
|
186
|
+
/F1.0 6.9959999999999996 Tf
|
187
|
+
<32> Tj
|
188
|
+
ET
|
189
|
+
|
190
|
+
|
191
|
+
0.000 Tw
|
192
|
+
|
193
|
+
1.057 Tw
|
194
|
+
|
195
|
+
BT
|
196
|
+
392.5309771842519 718.1614015748031 Td
|
197
|
+
/F1.0 12 Tf
|
198
|
+
[<20696e206974> -11.0 <2e204275742049206775657373>] TJ
|
199
|
+
ET
|
200
|
+
|
201
|
+
|
202
|
+
0.000 Tw
|
203
|
+
|
204
|
+
1.057 Tw
|
205
|
+
|
206
|
+
BT
|
207
|
+
486.43423446509183 722.7759631748031 Td
|
208
|
+
/F1.0 6.9959999999999996 Tf
|
209
|
+
<33> Tj
|
210
|
+
ET
|
211
|
+
|
212
|
+
|
213
|
+
0.000 Tw
|
214
|
+
|
215
|
+
1.057 Tw
|
216
|
+
|
217
|
+
BT
|
218
|
+
490.3799784650918 718.1614015748031 Td
|
219
|
+
/F1.0 12 Tf
|
220
|
+
<207765> Tj
|
221
|
+
ET
|
222
|
+
|
223
|
+
|
224
|
+
0.000 Tw
|
225
|
+
|
226
|
+
BT
|
227
|
+
85.03937007874016 702.957401574803 Td
|
228
|
+
/F1.0 12 Tf
|
229
|
+
<6e65656420736f206d756368206d6f7265> Tj
|
230
|
+
ET
|
231
|
+
|
232
|
+
|
233
|
+
BT
|
234
|
+
191.56337007874015 707.5719631748032 Td
|
235
|
+
/F1.0 6.9959999999999996 Tf
|
236
|
+
<34> Tj
|
237
|
+
ET
|
238
|
+
|
239
|
+
|
240
|
+
BT
|
241
|
+
195.50911407874017 702.957401574803 Td
|
242
|
+
/F1.0 12 Tf
|
243
|
+
<206f66207468656d2c207269676874> Tj
|
244
|
+
ET
|
245
|
+
|
246
|
+
|
247
|
+
BT
|
248
|
+
273.48511407874014 707.5719631748032 Td
|
249
|
+
/F1.0 6.9959999999999996 Tf
|
250
|
+
<35> Tj
|
251
|
+
ET
|
252
|
+
|
253
|
+
|
254
|
+
BT
|
255
|
+
277.43085807874013 702.957401574803 Td
|
256
|
+
/F1.0 12 Tf
|
257
|
+
<3f> Tj
|
258
|
+
ET
|
259
|
+
|
260
|
+
|
261
|
+
1.555 Tw
|
262
|
+
|
263
|
+
BT
|
264
|
+
85.03937007874016 673.5801732283464 Td
|
265
|
+
/F1.0 12 Tf
|
266
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
267
|
+
ET
|
268
|
+
|
269
|
+
|
270
|
+
0.000 Tw
|
271
|
+
|
272
|
+
1.355 Tw
|
273
|
+
|
274
|
+
BT
|
275
|
+
85.03937007874016 658.3761732283465 Td
|
276
|
+
/F1.0 12 Tf
|
277
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
278
|
+
ET
|
279
|
+
|
280
|
+
|
281
|
+
0.000 Tw
|
282
|
+
|
283
|
+
1.797 Tw
|
284
|
+
|
285
|
+
BT
|
286
|
+
85.03937007874016 643.1721732283465 Td
|
287
|
+
/F1.0 12 Tf
|
288
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
289
|
+
ET
|
290
|
+
|
291
|
+
|
292
|
+
0.000 Tw
|
293
|
+
|
294
|
+
1.260 Tw
|
295
|
+
|
296
|
+
BT
|
297
|
+
85.03937007874016 627.9681732283465 Td
|
298
|
+
/F1.0 12 Tf
|
299
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
300
|
+
ET
|
301
|
+
|
302
|
+
|
303
|
+
0.000 Tw
|
304
|
+
|
305
|
+
1.555 Tw
|
306
|
+
|
307
|
+
BT
|
308
|
+
85.03937007874016 612.7641732283464 Td
|
309
|
+
/F1.0 12 Tf
|
310
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
311
|
+
ET
|
312
|
+
|
313
|
+
|
314
|
+
0.000 Tw
|
315
|
+
|
316
|
+
1.355 Tw
|
317
|
+
|
318
|
+
BT
|
319
|
+
85.03937007874016 597.5601732283465 Td
|
320
|
+
/F1.0 12 Tf
|
321
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
322
|
+
ET
|
323
|
+
|
324
|
+
|
325
|
+
0.000 Tw
|
326
|
+
|
327
|
+
1.797 Tw
|
328
|
+
|
329
|
+
BT
|
330
|
+
85.03937007874016 582.3561732283465 Td
|
331
|
+
/F1.0 12 Tf
|
332
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
333
|
+
ET
|
334
|
+
|
335
|
+
|
336
|
+
0.000 Tw
|
337
|
+
|
338
|
+
BT
|
339
|
+
85.03937007874016 567.1521732283466 Td
|
340
|
+
/F1.0 12 Tf
|
341
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
342
|
+
ET
|
343
|
+
|
344
|
+
|
345
|
+
1.555 Tw
|
346
|
+
|
347
|
+
BT
|
348
|
+
85.03937007874016 537.7749448818898 Td
|
349
|
+
/F1.0 12 Tf
|
350
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
351
|
+
ET
|
352
|
+
|
353
|
+
|
354
|
+
0.000 Tw
|
355
|
+
|
356
|
+
1.355 Tw
|
357
|
+
|
358
|
+
BT
|
359
|
+
85.03937007874016 522.5709448818898 Td
|
360
|
+
/F1.0 12 Tf
|
361
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
362
|
+
ET
|
363
|
+
|
364
|
+
|
365
|
+
0.000 Tw
|
366
|
+
|
367
|
+
1.797 Tw
|
368
|
+
|
369
|
+
BT
|
370
|
+
85.03937007874016 507.3669448818898 Td
|
371
|
+
/F1.0 12 Tf
|
372
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
373
|
+
ET
|
374
|
+
|
375
|
+
|
376
|
+
0.000 Tw
|
377
|
+
|
378
|
+
1.260 Tw
|
379
|
+
|
380
|
+
BT
|
381
|
+
85.03937007874016 492.16294488188987 Td
|
382
|
+
/F1.0 12 Tf
|
383
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
384
|
+
ET
|
385
|
+
|
386
|
+
|
387
|
+
0.000 Tw
|
388
|
+
|
389
|
+
1.555 Tw
|
390
|
+
|
391
|
+
BT
|
392
|
+
85.03937007874016 476.95894488188986 Td
|
393
|
+
/F1.0 12 Tf
|
394
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
395
|
+
ET
|
396
|
+
|
397
|
+
|
398
|
+
0.000 Tw
|
399
|
+
|
400
|
+
1.355 Tw
|
401
|
+
|
402
|
+
BT
|
403
|
+
85.03937007874016 461.75494488188986 Td
|
404
|
+
/F1.0 12 Tf
|
405
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
406
|
+
ET
|
407
|
+
|
408
|
+
|
409
|
+
0.000 Tw
|
410
|
+
|
411
|
+
1.797 Tw
|
412
|
+
|
413
|
+
BT
|
414
|
+
85.03937007874016 446.55094488188985 Td
|
415
|
+
/F1.0 12 Tf
|
416
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
417
|
+
ET
|
418
|
+
|
419
|
+
|
420
|
+
0.000 Tw
|
421
|
+
|
422
|
+
1.260 Tw
|
423
|
+
|
424
|
+
BT
|
425
|
+
85.03937007874016 431.34694488188984 Td
|
426
|
+
/F1.0 12 Tf
|
427
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
428
|
+
ET
|
429
|
+
|
430
|
+
|
431
|
+
0.000 Tw
|
432
|
+
|
433
|
+
1.555 Tw
|
434
|
+
|
435
|
+
BT
|
436
|
+
85.03937007874016 416.1429448818899 Td
|
437
|
+
/F1.0 12 Tf
|
438
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
439
|
+
ET
|
440
|
+
|
441
|
+
|
442
|
+
0.000 Tw
|
443
|
+
|
444
|
+
BT
|
445
|
+
85.03937007874016 400.9389448818898 Td
|
446
|
+
/F1.0 12 Tf
|
447
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
448
|
+
ET
|
449
|
+
|
450
|
+
|
451
|
+
1.555 Tw
|
452
|
+
|
453
|
+
BT
|
454
|
+
85.03937007874016 371.5617165354331 Td
|
455
|
+
/F1.0 12 Tf
|
456
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
457
|
+
ET
|
458
|
+
|
459
|
+
|
460
|
+
0.000 Tw
|
461
|
+
|
462
|
+
1.355 Tw
|
463
|
+
|
464
|
+
BT
|
465
|
+
85.03937007874016 356.35771653543316 Td
|
466
|
+
/F1.0 12 Tf
|
467
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
468
|
+
ET
|
469
|
+
|
470
|
+
|
471
|
+
0.000 Tw
|
472
|
+
|
473
|
+
1.797 Tw
|
474
|
+
|
475
|
+
BT
|
476
|
+
85.03937007874016 341.1537165354331 Td
|
477
|
+
/F1.0 12 Tf
|
478
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
479
|
+
ET
|
480
|
+
|
481
|
+
|
482
|
+
0.000 Tw
|
483
|
+
|
484
|
+
1.260 Tw
|
485
|
+
|
486
|
+
BT
|
487
|
+
85.03937007874016 325.94971653543314 Td
|
488
|
+
/F1.0 12 Tf
|
489
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
490
|
+
ET
|
491
|
+
|
492
|
+
|
493
|
+
0.000 Tw
|
494
|
+
|
495
|
+
1.555 Tw
|
496
|
+
|
497
|
+
BT
|
498
|
+
85.03937007874016 310.74571653543313 Td
|
499
|
+
/F1.0 12 Tf
|
500
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
501
|
+
ET
|
502
|
+
|
503
|
+
|
504
|
+
0.000 Tw
|
505
|
+
|
506
|
+
1.355 Tw
|
507
|
+
|
508
|
+
BT
|
509
|
+
85.03937007874016 295.5417165354331 Td
|
510
|
+
/F1.0 12 Tf
|
511
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
512
|
+
ET
|
513
|
+
|
514
|
+
|
515
|
+
0.000 Tw
|
516
|
+
|
517
|
+
1.797 Tw
|
518
|
+
|
519
|
+
BT
|
520
|
+
85.03937007874016 280.3377165354331 Td
|
521
|
+
/F1.0 12 Tf
|
522
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
523
|
+
ET
|
524
|
+
|
525
|
+
|
526
|
+
0.000 Tw
|
527
|
+
|
528
|
+
1.260 Tw
|
529
|
+
|
530
|
+
BT
|
531
|
+
85.03937007874016 265.1337165354331 Td
|
532
|
+
/F1.0 12 Tf
|
533
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
534
|
+
ET
|
535
|
+
|
536
|
+
|
537
|
+
0.000 Tw
|
538
|
+
0.714 0.714 0.714 scn
|
539
|
+
|
540
|
+
BT
|
541
|
+
284.93 77.27937007874014 Td
|
542
|
+
/F2.0 10 Tf
|
543
|
+
<31206f662034> Tj
|
544
|
+
ET
|
545
|
+
|
546
|
+
Q
|
547
|
+
|
548
|
+
endstream
|
549
|
+
endobj
|
550
|
+
5 0 obj
|
551
|
+
<< /Type /Page
|
552
|
+
/Parent 3 0 R
|
553
|
+
/MediaBox [0 0 595.28 841.89]
|
554
|
+
/Contents 4 0 R
|
555
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
556
|
+
/Font << /F2.0 6 0 R
|
557
|
+
/F1.0 7 0 R
|
558
|
+
>>
|
559
|
+
>>
|
560
|
+
>>
|
561
|
+
endobj
|
562
|
+
6 0 obj
|
563
|
+
<< /Type /Font
|
564
|
+
/BaseFont /AAAAAE+Ubuntu-Light
|
565
|
+
/Subtype /TrueType
|
566
|
+
/FontDescriptor 22 0 R
|
567
|
+
/FirstChar 32
|
568
|
+
/LastChar 255
|
569
|
+
/Widths 24 0 R
|
570
|
+
/ToUnicode 23 0 R
|
571
|
+
>>
|
572
|
+
endobj
|
573
|
+
7 0 obj
|
574
|
+
<< /Type /Font
|
575
|
+
/BaseFont /AAAAAF+Ubuntu
|
576
|
+
/Subtype /TrueType
|
577
|
+
/FontDescriptor 26 0 R
|
578
|
+
/FirstChar 32
|
579
|
+
/LastChar 255
|
580
|
+
/Widths 28 0 R
|
581
|
+
/ToUnicode 27 0 R
|
582
|
+
>>
|
583
|
+
endobj
|
584
|
+
8 0 obj
|
585
|
+
<< /Length 10599
|
586
|
+
>>
|
587
|
+
stream
|
588
|
+
q
|
589
|
+
|
590
|
+
1.555 Tw
|
591
|
+
|
592
|
+
BT
|
593
|
+
85.03937007874016 747.5386299212598 Td
|
594
|
+
/F1.0 12 Tf
|
595
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
596
|
+
ET
|
597
|
+
|
598
|
+
|
599
|
+
0.000 Tw
|
600
|
+
|
601
|
+
1.355 Tw
|
602
|
+
|
603
|
+
BT
|
604
|
+
85.03937007874016 732.3346299212599 Td
|
605
|
+
/F1.0 12 Tf
|
606
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
607
|
+
ET
|
608
|
+
|
609
|
+
|
610
|
+
0.000 Tw
|
611
|
+
|
612
|
+
1.797 Tw
|
613
|
+
|
614
|
+
BT
|
615
|
+
85.03937007874016 717.1306299212598 Td
|
616
|
+
/F1.0 12 Tf
|
617
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
618
|
+
ET
|
619
|
+
|
620
|
+
|
621
|
+
0.000 Tw
|
622
|
+
|
623
|
+
1.260 Tw
|
624
|
+
|
625
|
+
BT
|
626
|
+
85.03937007874016 701.9266299212599 Td
|
627
|
+
/F1.0 12 Tf
|
628
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
629
|
+
ET
|
630
|
+
|
631
|
+
|
632
|
+
0.000 Tw
|
633
|
+
|
634
|
+
BT
|
635
|
+
85.03937007874016 686.7226299212598 Td
|
636
|
+
/F1.0 12 Tf
|
637
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
638
|
+
ET
|
639
|
+
|
640
|
+
|
641
|
+
1.555 Tw
|
642
|
+
|
643
|
+
BT
|
644
|
+
85.03937007874016 657.3454015748032 Td
|
645
|
+
/F1.0 12 Tf
|
646
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
647
|
+
ET
|
648
|
+
|
649
|
+
|
650
|
+
0.000 Tw
|
651
|
+
|
652
|
+
1.355 Tw
|
653
|
+
|
654
|
+
BT
|
655
|
+
85.03937007874016 642.1414015748032 Td
|
656
|
+
/F1.0 12 Tf
|
657
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
658
|
+
ET
|
659
|
+
|
660
|
+
|
661
|
+
0.000 Tw
|
662
|
+
|
663
|
+
1.797 Tw
|
664
|
+
|
665
|
+
BT
|
666
|
+
85.03937007874016 626.9374015748032 Td
|
667
|
+
/F1.0 12 Tf
|
668
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
669
|
+
ET
|
670
|
+
|
671
|
+
|
672
|
+
0.000 Tw
|
673
|
+
|
674
|
+
BT
|
675
|
+
85.03937007874016 611.7334015748032 Td
|
676
|
+
/F1.0 12 Tf
|
677
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
678
|
+
ET
|
679
|
+
|
680
|
+
|
681
|
+
1.555 Tw
|
682
|
+
|
683
|
+
BT
|
684
|
+
85.03937007874016 582.3561732283465 Td
|
685
|
+
/F1.0 12 Tf
|
686
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
687
|
+
ET
|
688
|
+
|
689
|
+
|
690
|
+
0.000 Tw
|
691
|
+
|
692
|
+
1.355 Tw
|
693
|
+
|
694
|
+
BT
|
695
|
+
85.03937007874016 567.1521732283466 Td
|
696
|
+
/F1.0 12 Tf
|
697
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
698
|
+
ET
|
699
|
+
|
700
|
+
|
701
|
+
0.000 Tw
|
702
|
+
|
703
|
+
1.797 Tw
|
704
|
+
|
705
|
+
BT
|
706
|
+
85.03937007874016 551.9481732283465 Td
|
707
|
+
/F1.0 12 Tf
|
708
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
709
|
+
ET
|
710
|
+
|
711
|
+
|
712
|
+
0.000 Tw
|
713
|
+
|
714
|
+
1.260 Tw
|
715
|
+
|
716
|
+
BT
|
717
|
+
85.03937007874016 536.7441732283465 Td
|
718
|
+
/F1.0 12 Tf
|
719
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
720
|
+
ET
|
721
|
+
|
722
|
+
|
723
|
+
0.000 Tw
|
724
|
+
|
725
|
+
BT
|
726
|
+
85.03937007874016 521.5401732283465 Td
|
727
|
+
/F1.0 12 Tf
|
728
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
729
|
+
ET
|
730
|
+
|
731
|
+
|
732
|
+
1.555 Tw
|
733
|
+
|
734
|
+
BT
|
735
|
+
85.03937007874016 492.1629448818898 Td
|
736
|
+
/F1.0 12 Tf
|
737
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
738
|
+
ET
|
739
|
+
|
740
|
+
|
741
|
+
0.000 Tw
|
742
|
+
|
743
|
+
1.355 Tw
|
744
|
+
|
745
|
+
BT
|
746
|
+
85.03937007874016 476.9589448818898 Td
|
747
|
+
/F1.0 12 Tf
|
748
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
749
|
+
ET
|
750
|
+
|
751
|
+
|
752
|
+
0.000 Tw
|
753
|
+
|
754
|
+
1.797 Tw
|
755
|
+
|
756
|
+
BT
|
757
|
+
85.03937007874016 461.75494488188986 Td
|
758
|
+
/F1.0 12 Tf
|
759
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
760
|
+
ET
|
761
|
+
|
762
|
+
|
763
|
+
0.000 Tw
|
764
|
+
|
765
|
+
1.260 Tw
|
766
|
+
|
767
|
+
BT
|
768
|
+
85.03937007874016 446.55094488188985 Td
|
769
|
+
/F1.0 12 Tf
|
770
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
771
|
+
ET
|
772
|
+
|
773
|
+
|
774
|
+
0.000 Tw
|
775
|
+
|
776
|
+
1.555 Tw
|
777
|
+
|
778
|
+
BT
|
779
|
+
85.03937007874016 431.34694488188984 Td
|
780
|
+
/F1.0 12 Tf
|
781
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
782
|
+
ET
|
783
|
+
|
784
|
+
|
785
|
+
0.000 Tw
|
786
|
+
|
787
|
+
1.355 Tw
|
788
|
+
|
789
|
+
BT
|
790
|
+
85.03937007874016 416.14294488188983 Td
|
791
|
+
/F1.0 12 Tf
|
792
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
793
|
+
ET
|
794
|
+
|
795
|
+
|
796
|
+
0.000 Tw
|
797
|
+
|
798
|
+
1.797 Tw
|
799
|
+
|
800
|
+
BT
|
801
|
+
85.03937007874016 400.9389448818898 Td
|
802
|
+
/F1.0 12 Tf
|
803
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
804
|
+
ET
|
805
|
+
|
806
|
+
|
807
|
+
0.000 Tw
|
808
|
+
|
809
|
+
BT
|
810
|
+
85.03937007874016 385.7349448818899 Td
|
811
|
+
/F1.0 12 Tf
|
812
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
813
|
+
ET
|
814
|
+
|
815
|
+
|
816
|
+
1.555 Tw
|
817
|
+
|
818
|
+
BT
|
819
|
+
85.03937007874016 356.3577165354331 Td
|
820
|
+
/F1.0 12 Tf
|
821
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
822
|
+
ET
|
823
|
+
|
824
|
+
|
825
|
+
0.000 Tw
|
826
|
+
|
827
|
+
1.355 Tw
|
828
|
+
|
829
|
+
BT
|
830
|
+
85.03937007874016 341.1537165354331 Td
|
831
|
+
/F1.0 12 Tf
|
832
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
833
|
+
ET
|
834
|
+
|
835
|
+
|
836
|
+
0.000 Tw
|
837
|
+
|
838
|
+
1.797 Tw
|
839
|
+
|
840
|
+
BT
|
841
|
+
85.03937007874016 325.94971653543314 Td
|
842
|
+
/F1.0 12 Tf
|
843
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
844
|
+
ET
|
845
|
+
|
846
|
+
|
847
|
+
0.000 Tw
|
848
|
+
|
849
|
+
1.260 Tw
|
850
|
+
|
851
|
+
BT
|
852
|
+
85.03937007874016 310.7457165354331 Td
|
853
|
+
/F1.0 12 Tf
|
854
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
855
|
+
ET
|
856
|
+
|
857
|
+
|
858
|
+
0.000 Tw
|
859
|
+
|
860
|
+
1.555 Tw
|
861
|
+
|
862
|
+
BT
|
863
|
+
85.03937007874016 295.5417165354331 Td
|
864
|
+
/F1.0 12 Tf
|
865
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
866
|
+
ET
|
867
|
+
|
868
|
+
|
869
|
+
0.000 Tw
|
870
|
+
|
871
|
+
1.355 Tw
|
872
|
+
|
873
|
+
BT
|
874
|
+
85.03937007874016 280.3377165354331 Td
|
875
|
+
/F1.0 12 Tf
|
876
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
877
|
+
ET
|
878
|
+
|
879
|
+
|
880
|
+
0.000 Tw
|
881
|
+
|
882
|
+
1.797 Tw
|
883
|
+
|
884
|
+
BT
|
885
|
+
85.03937007874016 265.1337165354331 Td
|
886
|
+
/F1.0 12 Tf
|
887
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
888
|
+
ET
|
889
|
+
|
890
|
+
|
891
|
+
0.000 Tw
|
892
|
+
|
893
|
+
1.260 Tw
|
894
|
+
|
895
|
+
BT
|
896
|
+
85.03937007874016 249.92971653543313 Td
|
897
|
+
/F1.0 12 Tf
|
898
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
899
|
+
ET
|
900
|
+
|
901
|
+
|
902
|
+
0.000 Tw
|
903
|
+
|
904
|
+
1.555 Tw
|
905
|
+
|
906
|
+
BT
|
907
|
+
85.03937007874016 234.72571653543312 Td
|
908
|
+
/F1.0 12 Tf
|
909
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
910
|
+
ET
|
911
|
+
|
912
|
+
|
913
|
+
0.000 Tw
|
914
|
+
|
915
|
+
BT
|
916
|
+
85.03937007874016 219.52171653543311 Td
|
917
|
+
/F1.0 12 Tf
|
918
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
919
|
+
ET
|
920
|
+
|
921
|
+
|
922
|
+
1.555 Tw
|
923
|
+
|
924
|
+
BT
|
925
|
+
85.03937007874016 190.14448818897642 Td
|
926
|
+
/F1.0 12 Tf
|
927
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
928
|
+
ET
|
929
|
+
|
930
|
+
|
931
|
+
0.000 Tw
|
932
|
+
|
933
|
+
1.355 Tw
|
934
|
+
|
935
|
+
BT
|
936
|
+
85.03937007874016 174.94048818897645 Td
|
937
|
+
/F1.0 12 Tf
|
938
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
939
|
+
ET
|
940
|
+
|
941
|
+
|
942
|
+
0.000 Tw
|
943
|
+
|
944
|
+
1.797 Tw
|
945
|
+
|
946
|
+
BT
|
947
|
+
85.03937007874016 159.73648818897644 Td
|
948
|
+
/F1.0 12 Tf
|
949
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
950
|
+
ET
|
951
|
+
|
952
|
+
|
953
|
+
0.000 Tw
|
954
|
+
|
955
|
+
1.260 Tw
|
956
|
+
|
957
|
+
BT
|
958
|
+
85.03937007874016 144.53248818897643 Td
|
959
|
+
/F1.0 12 Tf
|
960
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
961
|
+
ET
|
962
|
+
|
963
|
+
|
964
|
+
0.000 Tw
|
965
|
+
|
966
|
+
1.555 Tw
|
967
|
+
|
968
|
+
BT
|
969
|
+
85.03937007874016 129.32848818897645 Td
|
970
|
+
/F1.0 12 Tf
|
971
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
972
|
+
ET
|
973
|
+
|
974
|
+
|
975
|
+
0.000 Tw
|
976
|
+
|
977
|
+
1.355 Tw
|
978
|
+
|
979
|
+
BT
|
980
|
+
85.03937007874016 114.12448818897644 Td
|
981
|
+
/F1.0 12 Tf
|
982
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
983
|
+
ET
|
984
|
+
|
985
|
+
|
986
|
+
0.000 Tw
|
987
|
+
|
988
|
+
1.797 Tw
|
989
|
+
|
990
|
+
BT
|
991
|
+
85.03937007874016 98.92048818897645 Td
|
992
|
+
/F1.0 12 Tf
|
993
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
994
|
+
ET
|
995
|
+
|
996
|
+
|
997
|
+
0.000 Tw
|
998
|
+
/DeviceRGB cs
|
999
|
+
0.714 0.714 0.714 scn
|
1000
|
+
|
1001
|
+
BT
|
1002
|
+
284.93 77.27937007874014 Td
|
1003
|
+
/F2.0 10 Tf
|
1004
|
+
<32206f662034> Tj
|
1005
|
+
ET
|
1006
|
+
|
1007
|
+
Q
|
1008
|
+
|
1009
|
+
endstream
|
1010
|
+
endobj
|
1011
|
+
9 0 obj
|
1012
|
+
<< /Type /Page
|
1013
|
+
/Parent 3 0 R
|
1014
|
+
/MediaBox [0 0 595.28 841.89]
|
1015
|
+
/Contents 8 0 R
|
1016
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
1017
|
+
/Font << /F1.0 7 0 R
|
1018
|
+
/F2.0 6 0 R
|
1019
|
+
>>
|
1020
|
+
>>
|
1021
|
+
>>
|
1022
|
+
endobj
|
1023
|
+
10 0 obj
|
1024
|
+
<< /Length 10453
|
1025
|
+
>>
|
1026
|
+
stream
|
1027
|
+
q
|
1028
|
+
|
1029
|
+
1.260 Tw
|
1030
|
+
|
1031
|
+
BT
|
1032
|
+
85.03937007874016 747.5386299212598 Td
|
1033
|
+
/F1.0 12 Tf
|
1034
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1035
|
+
ET
|
1036
|
+
|
1037
|
+
|
1038
|
+
0.000 Tw
|
1039
|
+
|
1040
|
+
1.555 Tw
|
1041
|
+
|
1042
|
+
BT
|
1043
|
+
85.03937007874016 732.3346299212599 Td
|
1044
|
+
/F1.0 12 Tf
|
1045
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1046
|
+
ET
|
1047
|
+
|
1048
|
+
|
1049
|
+
0.000 Tw
|
1050
|
+
|
1051
|
+
1.355 Tw
|
1052
|
+
|
1053
|
+
BT
|
1054
|
+
85.03937007874016 717.1306299212598 Td
|
1055
|
+
/F1.0 12 Tf
|
1056
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
1057
|
+
ET
|
1058
|
+
|
1059
|
+
|
1060
|
+
0.000 Tw
|
1061
|
+
|
1062
|
+
1.797 Tw
|
1063
|
+
|
1064
|
+
BT
|
1065
|
+
85.03937007874016 701.9266299212599 Td
|
1066
|
+
/F1.0 12 Tf
|
1067
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
1068
|
+
ET
|
1069
|
+
|
1070
|
+
|
1071
|
+
0.000 Tw
|
1072
|
+
|
1073
|
+
1.260 Tw
|
1074
|
+
|
1075
|
+
BT
|
1076
|
+
85.03937007874016 686.7226299212598 Td
|
1077
|
+
/F1.0 12 Tf
|
1078
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1079
|
+
ET
|
1080
|
+
|
1081
|
+
|
1082
|
+
0.000 Tw
|
1083
|
+
|
1084
|
+
BT
|
1085
|
+
85.03937007874016 671.5186299212598 Td
|
1086
|
+
/F1.0 12 Tf
|
1087
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1088
|
+
ET
|
1089
|
+
|
1090
|
+
|
1091
|
+
1.555 Tw
|
1092
|
+
|
1093
|
+
BT
|
1094
|
+
85.03937007874016 642.1414015748031 Td
|
1095
|
+
/F1.0 12 Tf
|
1096
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1097
|
+
ET
|
1098
|
+
|
1099
|
+
|
1100
|
+
0.000 Tw
|
1101
|
+
|
1102
|
+
1.355 Tw
|
1103
|
+
|
1104
|
+
BT
|
1105
|
+
85.03937007874016 626.9374015748032 Td
|
1106
|
+
/F1.0 12 Tf
|
1107
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
1108
|
+
ET
|
1109
|
+
|
1110
|
+
|
1111
|
+
0.000 Tw
|
1112
|
+
|
1113
|
+
1.797 Tw
|
1114
|
+
|
1115
|
+
BT
|
1116
|
+
85.03937007874016 611.7334015748031 Td
|
1117
|
+
/F1.0 12 Tf
|
1118
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
1119
|
+
ET
|
1120
|
+
|
1121
|
+
|
1122
|
+
0.000 Tw
|
1123
|
+
|
1124
|
+
BT
|
1125
|
+
85.03937007874016 596.5294015748032 Td
|
1126
|
+
/F1.0 12 Tf
|
1127
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1128
|
+
ET
|
1129
|
+
|
1130
|
+
|
1131
|
+
1.555 Tw
|
1132
|
+
|
1133
|
+
BT
|
1134
|
+
85.03937007874016 567.1521732283464 Td
|
1135
|
+
/F1.0 12 Tf
|
1136
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1137
|
+
ET
|
1138
|
+
|
1139
|
+
|
1140
|
+
0.000 Tw
|
1141
|
+
|
1142
|
+
1.355 Tw
|
1143
|
+
|
1144
|
+
BT
|
1145
|
+
85.03937007874016 551.9481732283464 Td
|
1146
|
+
/F1.0 12 Tf
|
1147
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
1148
|
+
ET
|
1149
|
+
|
1150
|
+
|
1151
|
+
0.000 Tw
|
1152
|
+
|
1153
|
+
1.797 Tw
|
1154
|
+
|
1155
|
+
BT
|
1156
|
+
85.03937007874016 536.7441732283464 Td
|
1157
|
+
/F1.0 12 Tf
|
1158
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
1159
|
+
ET
|
1160
|
+
|
1161
|
+
|
1162
|
+
0.000 Tw
|
1163
|
+
|
1164
|
+
1.260 Tw
|
1165
|
+
|
1166
|
+
BT
|
1167
|
+
85.03937007874016 521.5401732283465 Td
|
1168
|
+
/F1.0 12 Tf
|
1169
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1170
|
+
ET
|
1171
|
+
|
1172
|
+
|
1173
|
+
0.000 Tw
|
1174
|
+
|
1175
|
+
BT
|
1176
|
+
85.03937007874016 506.33617322834647 Td
|
1177
|
+
/F1.0 12 Tf
|
1178
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1179
|
+
ET
|
1180
|
+
|
1181
|
+
|
1182
|
+
1.555 Tw
|
1183
|
+
|
1184
|
+
BT
|
1185
|
+
85.03937007874016 476.9589448818897 Td
|
1186
|
+
/F1.0 12 Tf
|
1187
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1188
|
+
ET
|
1189
|
+
|
1190
|
+
|
1191
|
+
0.000 Tw
|
1192
|
+
|
1193
|
+
1.355 Tw
|
1194
|
+
|
1195
|
+
BT
|
1196
|
+
85.03937007874016 461.7549448818897 Td
|
1197
|
+
/F1.0 12 Tf
|
1198
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
1199
|
+
ET
|
1200
|
+
|
1201
|
+
|
1202
|
+
0.000 Tw
|
1203
|
+
|
1204
|
+
1.797 Tw
|
1205
|
+
|
1206
|
+
BT
|
1207
|
+
85.03937007874016 446.5509448818897 Td
|
1208
|
+
/F1.0 12 Tf
|
1209
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
1210
|
+
ET
|
1211
|
+
|
1212
|
+
|
1213
|
+
0.000 Tw
|
1214
|
+
|
1215
|
+
BT
|
1216
|
+
85.03937007874016 431.3469448818897 Td
|
1217
|
+
/F1.0 12 Tf
|
1218
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1219
|
+
ET
|
1220
|
+
|
1221
|
+
|
1222
|
+
1.555 Tw
|
1223
|
+
|
1224
|
+
BT
|
1225
|
+
85.03937007874016 401.96971653543295 Td
|
1226
|
+
/F1.0 12 Tf
|
1227
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1228
|
+
ET
|
1229
|
+
|
1230
|
+
|
1231
|
+
0.000 Tw
|
1232
|
+
|
1233
|
+
1.355 Tw
|
1234
|
+
|
1235
|
+
BT
|
1236
|
+
85.03937007874016 386.76571653543294 Td
|
1237
|
+
/F1.0 12 Tf
|
1238
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
1239
|
+
ET
|
1240
|
+
|
1241
|
+
|
1242
|
+
0.000 Tw
|
1243
|
+
|
1244
|
+
1.797 Tw
|
1245
|
+
|
1246
|
+
BT
|
1247
|
+
85.03937007874016 371.561716535433 Td
|
1248
|
+
/F1.0 12 Tf
|
1249
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
1250
|
+
ET
|
1251
|
+
|
1252
|
+
|
1253
|
+
0.000 Tw
|
1254
|
+
|
1255
|
+
1.260 Tw
|
1256
|
+
|
1257
|
+
BT
|
1258
|
+
85.03937007874016 356.357716535433 Td
|
1259
|
+
/F1.0 12 Tf
|
1260
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1261
|
+
ET
|
1262
|
+
|
1263
|
+
|
1264
|
+
0.000 Tw
|
1265
|
+
|
1266
|
+
BT
|
1267
|
+
85.03937007874016 341.153716535433 Td
|
1268
|
+
/F1.0 12 Tf
|
1269
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1270
|
+
ET
|
1271
|
+
|
1272
|
+
|
1273
|
+
1.323 Tw
|
1274
|
+
|
1275
|
+
BT
|
1276
|
+
85.03937007874016 311.7764881889762 Td
|
1277
|
+
/F1.0 12 Tf
|
1278
|
+
<546869732069732061206c6f74206f66206f74686572> Tj
|
1279
|
+
ET
|
1280
|
+
|
1281
|
+
|
1282
|
+
0.000 Tw
|
1283
|
+
|
1284
|
+
1.323 Tw
|
1285
|
+
|
1286
|
+
BT
|
1287
|
+
199.17569826771654 316.3910497889762 Td
|
1288
|
+
/F1.0 6.9959999999999996 Tf
|
1289
|
+
<36> Tj
|
1290
|
+
ET
|
1291
|
+
|
1292
|
+
|
1293
|
+
0.000 Tw
|
1294
|
+
|
1295
|
+
1.323 Tw
|
1296
|
+
|
1297
|
+
BT
|
1298
|
+
203.12144226771653 311.7764881889762 Td
|
1299
|
+
/F1.0 12 Tf
|
1300
|
+
[<2074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1301
|
+
ET
|
1302
|
+
|
1303
|
+
|
1304
|
+
0.000 Tw
|
1305
|
+
|
1306
|
+
1.355 Tw
|
1307
|
+
|
1308
|
+
BT
|
1309
|
+
85.03937007874016 296.5724881889762 Td
|
1310
|
+
/F1.0 12 Tf
|
1311
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
1312
|
+
ET
|
1313
|
+
|
1314
|
+
|
1315
|
+
0.000 Tw
|
1316
|
+
|
1317
|
+
1.797 Tw
|
1318
|
+
|
1319
|
+
BT
|
1320
|
+
85.03937007874016 281.36848818897624 Td
|
1321
|
+
/F1.0 12 Tf
|
1322
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
1323
|
+
ET
|
1324
|
+
|
1325
|
+
|
1326
|
+
0.000 Tw
|
1327
|
+
|
1328
|
+
1.260 Tw
|
1329
|
+
|
1330
|
+
BT
|
1331
|
+
85.03937007874016 266.1644881889762 Td
|
1332
|
+
/F1.0 12 Tf
|
1333
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1334
|
+
ET
|
1335
|
+
|
1336
|
+
|
1337
|
+
0.000 Tw
|
1338
|
+
|
1339
|
+
1.555 Tw
|
1340
|
+
|
1341
|
+
BT
|
1342
|
+
85.03937007874016 250.96048818897623 Td
|
1343
|
+
/F1.0 12 Tf
|
1344
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1345
|
+
ET
|
1346
|
+
|
1347
|
+
|
1348
|
+
0.000 Tw
|
1349
|
+
|
1350
|
+
1.355 Tw
|
1351
|
+
|
1352
|
+
BT
|
1353
|
+
85.03937007874016 235.75648818897622 Td
|
1354
|
+
/F1.0 12 Tf
|
1355
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
1356
|
+
ET
|
1357
|
+
|
1358
|
+
|
1359
|
+
0.000 Tw
|
1360
|
+
|
1361
|
+
1.797 Tw
|
1362
|
+
|
1363
|
+
BT
|
1364
|
+
85.03937007874016 220.5524881889762 Td
|
1365
|
+
/F1.0 12 Tf
|
1366
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
1367
|
+
ET
|
1368
|
+
|
1369
|
+
|
1370
|
+
0.000 Tw
|
1371
|
+
|
1372
|
+
BT
|
1373
|
+
85.03937007874016 205.34848818897623 Td
|
1374
|
+
/F1.0 12 Tf
|
1375
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1376
|
+
ET
|
1377
|
+
|
1378
|
+
/DeviceRGB cs
|
1379
|
+
0.392 0.392 0.392 scn
|
1380
|
+
|
1381
|
+
BT
|
1382
|
+
85.03937007874016 99.9641294173228 Td
|
1383
|
+
/F2.0 5.83 Tf
|
1384
|
+
<36> Tj
|
1385
|
+
ET
|
1386
|
+
|
1387
|
+
|
1388
|
+
BT
|
1389
|
+
88.32749007874017 96.11866141732278 Td
|
1390
|
+
/F2.0 10 Tf
|
1391
|
+
<204120466f6f746e6f746520697320746869732e> Tj
|
1392
|
+
ET
|
1393
|
+
|
1394
|
+
0.000 0.000 0.000 scn
|
1395
|
+
|
1396
|
+
1.555 Tw
|
1397
|
+
|
1398
|
+
BT
|
1399
|
+
85.03937007874016 175.97125984251954 Td
|
1400
|
+
/F1.0 12 Tf
|
1401
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1402
|
+
ET
|
1403
|
+
|
1404
|
+
|
1405
|
+
0.000 Tw
|
1406
|
+
|
1407
|
+
1.355 Tw
|
1408
|
+
|
1409
|
+
BT
|
1410
|
+
85.03937007874016 160.76725984251956 Td
|
1411
|
+
/F1.0 12 Tf
|
1412
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
1413
|
+
ET
|
1414
|
+
|
1415
|
+
|
1416
|
+
0.000 Tw
|
1417
|
+
|
1418
|
+
1.797 Tw
|
1419
|
+
|
1420
|
+
BT
|
1421
|
+
85.03937007874016 145.56325984251956 Td
|
1422
|
+
/F1.0 12 Tf
|
1423
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
1424
|
+
ET
|
1425
|
+
|
1426
|
+
|
1427
|
+
0.000 Tw
|
1428
|
+
|
1429
|
+
1.260 Tw
|
1430
|
+
|
1431
|
+
BT
|
1432
|
+
85.03937007874016 130.35925984251955 Td
|
1433
|
+
/F1.0 12 Tf
|
1434
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1435
|
+
ET
|
1436
|
+
|
1437
|
+
|
1438
|
+
0.000 Tw
|
1439
|
+
|
1440
|
+
1.555 Tw
|
1441
|
+
|
1442
|
+
BT
|
1443
|
+
85.03937007874016 115.15525984251956 Td
|
1444
|
+
/F1.0 12 Tf
|
1445
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1446
|
+
ET
|
1447
|
+
|
1448
|
+
|
1449
|
+
0.000 Tw
|
1450
|
+
0.714 0.714 0.714 scn
|
1451
|
+
|
1452
|
+
BT
|
1453
|
+
284.93 77.27937007874014 Td
|
1454
|
+
/F2.0 10 Tf
|
1455
|
+
<33206f662034> Tj
|
1456
|
+
ET
|
1457
|
+
|
1458
|
+
Q
|
1459
|
+
|
1460
|
+
endstream
|
1461
|
+
endobj
|
1462
|
+
11 0 obj
|
1463
|
+
<< /Type /Page
|
1464
|
+
/Parent 3 0 R
|
1465
|
+
/MediaBox [0 0 595.28 841.89]
|
1466
|
+
/Contents 10 0 R
|
1467
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
1468
|
+
/Font << /F1.0 7 0 R
|
1469
|
+
/F2.0 6 0 R
|
1470
|
+
>>
|
1471
|
+
>>
|
1472
|
+
>>
|
1473
|
+
endobj
|
1474
|
+
12 0 obj
|
1475
|
+
<< /Length 7308
|
1476
|
+
>>
|
1477
|
+
stream
|
1478
|
+
q
|
1479
|
+
|
1480
|
+
1.355 Tw
|
1481
|
+
|
1482
|
+
BT
|
1483
|
+
85.03937007874016 747.5386299212598 Td
|
1484
|
+
/F1.0 12 Tf
|
1485
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
1486
|
+
ET
|
1487
|
+
|
1488
|
+
|
1489
|
+
0.000 Tw
|
1490
|
+
|
1491
|
+
1.797 Tw
|
1492
|
+
|
1493
|
+
BT
|
1494
|
+
85.03937007874016 732.3346299212599 Td
|
1495
|
+
/F1.0 12 Tf
|
1496
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
1497
|
+
ET
|
1498
|
+
|
1499
|
+
|
1500
|
+
0.000 Tw
|
1501
|
+
|
1502
|
+
1.260 Tw
|
1503
|
+
|
1504
|
+
BT
|
1505
|
+
85.03937007874016 717.1306299212598 Td
|
1506
|
+
/F1.0 12 Tf
|
1507
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1508
|
+
ET
|
1509
|
+
|
1510
|
+
|
1511
|
+
0.000 Tw
|
1512
|
+
|
1513
|
+
1.555 Tw
|
1514
|
+
|
1515
|
+
BT
|
1516
|
+
85.03937007874016 701.9266299212599 Td
|
1517
|
+
/F1.0 12 Tf
|
1518
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1519
|
+
ET
|
1520
|
+
|
1521
|
+
|
1522
|
+
0.000 Tw
|
1523
|
+
|
1524
|
+
BT
|
1525
|
+
85.03937007874016 686.7226299212598 Td
|
1526
|
+
/F1.0 12 Tf
|
1527
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1528
|
+
ET
|
1529
|
+
|
1530
|
+
|
1531
|
+
1.555 Tw
|
1532
|
+
|
1533
|
+
BT
|
1534
|
+
85.03937007874016 657.3454015748032 Td
|
1535
|
+
/F1.0 12 Tf
|
1536
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1537
|
+
ET
|
1538
|
+
|
1539
|
+
|
1540
|
+
0.000 Tw
|
1541
|
+
|
1542
|
+
1.355 Tw
|
1543
|
+
|
1544
|
+
BT
|
1545
|
+
85.03937007874016 642.1414015748032 Td
|
1546
|
+
/F1.0 12 Tf
|
1547
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
1548
|
+
ET
|
1549
|
+
|
1550
|
+
|
1551
|
+
0.000 Tw
|
1552
|
+
|
1553
|
+
1.797 Tw
|
1554
|
+
|
1555
|
+
BT
|
1556
|
+
85.03937007874016 626.9374015748032 Td
|
1557
|
+
/F1.0 12 Tf
|
1558
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
1559
|
+
ET
|
1560
|
+
|
1561
|
+
|
1562
|
+
0.000 Tw
|
1563
|
+
|
1564
|
+
1.260 Tw
|
1565
|
+
|
1566
|
+
BT
|
1567
|
+
85.03937007874016 611.7334015748032 Td
|
1568
|
+
/F1.0 12 Tf
|
1569
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1570
|
+
ET
|
1571
|
+
|
1572
|
+
|
1573
|
+
0.000 Tw
|
1574
|
+
|
1575
|
+
1.555 Tw
|
1576
|
+
|
1577
|
+
BT
|
1578
|
+
85.03937007874016 596.5294015748032 Td
|
1579
|
+
/F1.0 12 Tf
|
1580
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1581
|
+
ET
|
1582
|
+
|
1583
|
+
|
1584
|
+
0.000 Tw
|
1585
|
+
|
1586
|
+
1.355 Tw
|
1587
|
+
|
1588
|
+
BT
|
1589
|
+
85.03937007874016 581.3254015748032 Td
|
1590
|
+
/F1.0 12 Tf
|
1591
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
1592
|
+
ET
|
1593
|
+
|
1594
|
+
|
1595
|
+
0.000 Tw
|
1596
|
+
|
1597
|
+
1.797 Tw
|
1598
|
+
|
1599
|
+
BT
|
1600
|
+
85.03937007874016 566.1214015748033 Td
|
1601
|
+
/F1.0 12 Tf
|
1602
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
1603
|
+
ET
|
1604
|
+
|
1605
|
+
|
1606
|
+
0.000 Tw
|
1607
|
+
|
1608
|
+
1.260 Tw
|
1609
|
+
|
1610
|
+
BT
|
1611
|
+
85.03937007874016 550.9174015748032 Td
|
1612
|
+
/F1.0 12 Tf
|
1613
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1614
|
+
ET
|
1615
|
+
|
1616
|
+
|
1617
|
+
0.000 Tw
|
1618
|
+
|
1619
|
+
1.555 Tw
|
1620
|
+
|
1621
|
+
BT
|
1622
|
+
85.03937007874016 535.7134015748032 Td
|
1623
|
+
/F1.0 12 Tf
|
1624
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1625
|
+
ET
|
1626
|
+
|
1627
|
+
|
1628
|
+
0.000 Tw
|
1629
|
+
|
1630
|
+
1.355 Tw
|
1631
|
+
|
1632
|
+
BT
|
1633
|
+
85.03937007874016 520.5094015748032 Td
|
1634
|
+
/F1.0 12 Tf
|
1635
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
1636
|
+
ET
|
1637
|
+
|
1638
|
+
|
1639
|
+
0.000 Tw
|
1640
|
+
|
1641
|
+
1.797 Tw
|
1642
|
+
|
1643
|
+
BT
|
1644
|
+
85.03937007874016 505.3054015748032 Td
|
1645
|
+
/F1.0 12 Tf
|
1646
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
1647
|
+
ET
|
1648
|
+
|
1649
|
+
|
1650
|
+
0.000 Tw
|
1651
|
+
|
1652
|
+
1.260 Tw
|
1653
|
+
|
1654
|
+
BT
|
1655
|
+
85.03937007874016 490.10140157480316 Td
|
1656
|
+
/F1.0 12 Tf
|
1657
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1658
|
+
ET
|
1659
|
+
|
1660
|
+
|
1661
|
+
0.000 Tw
|
1662
|
+
|
1663
|
+
BT
|
1664
|
+
85.03937007874016 474.8974015748032 Td
|
1665
|
+
/F1.0 12 Tf
|
1666
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1667
|
+
ET
|
1668
|
+
|
1669
|
+
|
1670
|
+
1.555 Tw
|
1671
|
+
|
1672
|
+
BT
|
1673
|
+
85.03937007874016 445.52017322834644 Td
|
1674
|
+
/F1.0 12 Tf
|
1675
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1676
|
+
ET
|
1677
|
+
|
1678
|
+
|
1679
|
+
0.000 Tw
|
1680
|
+
|
1681
|
+
1.355 Tw
|
1682
|
+
|
1683
|
+
BT
|
1684
|
+
85.03937007874016 430.31617322834643 Td
|
1685
|
+
/F1.0 12 Tf
|
1686
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
1687
|
+
ET
|
1688
|
+
|
1689
|
+
|
1690
|
+
0.000 Tw
|
1691
|
+
|
1692
|
+
1.797 Tw
|
1693
|
+
|
1694
|
+
BT
|
1695
|
+
85.03937007874016 415.1121732283465 Td
|
1696
|
+
/F1.0 12 Tf
|
1697
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
1698
|
+
ET
|
1699
|
+
|
1700
|
+
|
1701
|
+
0.000 Tw
|
1702
|
+
|
1703
|
+
BT
|
1704
|
+
85.03937007874016 399.90817322834647 Td
|
1705
|
+
/F1.0 12 Tf
|
1706
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1707
|
+
ET
|
1708
|
+
|
1709
|
+
|
1710
|
+
1.555 Tw
|
1711
|
+
|
1712
|
+
BT
|
1713
|
+
85.03937007874016 370.5309448818897 Td
|
1714
|
+
/F1.0 12 Tf
|
1715
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66>] TJ
|
1716
|
+
ET
|
1717
|
+
|
1718
|
+
|
1719
|
+
0.000 Tw
|
1720
|
+
|
1721
|
+
1.355 Tw
|
1722
|
+
|
1723
|
+
BT
|
1724
|
+
85.03937007874016 355.3269448818897 Td
|
1725
|
+
/F1.0 12 Tf
|
1726
|
+
[<6f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <6578742074686174>] TJ
|
1727
|
+
ET
|
1728
|
+
|
1729
|
+
|
1730
|
+
0.000 Tw
|
1731
|
+
|
1732
|
+
1.797 Tw
|
1733
|
+
|
1734
|
+
BT
|
1735
|
+
85.03937007874016 340.1229448818897 Td
|
1736
|
+
/F1.0 12 Tf
|
1737
|
+
[<77696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572>] TJ
|
1738
|
+
ET
|
1739
|
+
|
1740
|
+
|
1741
|
+
0.000 Tw
|
1742
|
+
|
1743
|
+
1.260 Tw
|
1744
|
+
|
1745
|
+
BT
|
1746
|
+
85.03937007874016 324.91894488188973 Td
|
1747
|
+
/F1.0 12 Tf
|
1748
|
+
[<6d756c7469706c652070616765732e20546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1749
|
+
ET
|
1750
|
+
|
1751
|
+
|
1752
|
+
0.000 Tw
|
1753
|
+
|
1754
|
+
BT
|
1755
|
+
85.03937007874016 309.7149448818897 Td
|
1756
|
+
/F1.0 12 Tf
|
1757
|
+
[<546869732069732061206c6f74206f66206f746865722074> 10.0 <65787420746861742077696c6c207370616e206f> 14.0 <76> 14.0 <6572206d756c7469706c652070616765732e>] TJ
|
1758
|
+
ET
|
1759
|
+
|
1760
|
+
/DeviceRGB cs
|
1761
|
+
0.714 0.714 0.714 scn
|
1762
|
+
|
1763
|
+
BT
|
1764
|
+
284.93 77.27937007874014 Td
|
1765
|
+
/F2.0 10 Tf
|
1766
|
+
<34206f662034> Tj
|
1767
|
+
ET
|
1768
|
+
|
1769
|
+
Q
|
1770
|
+
|
1771
|
+
endstream
|
1772
|
+
endobj
|
1773
|
+
13 0 obj
|
1774
|
+
<< /Type /Page
|
1775
|
+
/Parent 3 0 R
|
1776
|
+
/MediaBox [0 0 595.28 841.89]
|
1777
|
+
/Contents 12 0 R
|
1778
|
+
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
1779
|
+
/Font << /F1.0 7 0 R
|
1780
|
+
/F2.0 6 0 R
|
1781
|
+
>>
|
1782
|
+
>>
|
1783
|
+
>>
|
1784
|
+
endobj
|
1785
|
+
14 0 obj
|
1786
|
+
[5 0 R /Fit]
|
1787
|
+
endobj
|
1788
|
+
15 0 obj
|
1789
|
+
<< /Type /Names
|
1790
|
+
/Dests 16 0 R
|
1791
|
+
>>
|
1792
|
+
endobj
|
1793
|
+
16 0 obj
|
1794
|
+
<< /Names [(page1) 14 0 R (page2) 17 0 R (page3) 18 0 R (page4) 19 0 R]
|
1795
|
+
>>
|
1796
|
+
endobj
|
1797
|
+
17 0 obj
|
1798
|
+
[9 0 R /Fit]
|
1799
|
+
endobj
|
1800
|
+
18 0 obj
|
1801
|
+
[11 0 R /Fit]
|
1802
|
+
endobj
|
1803
|
+
19 0 obj
|
1804
|
+
[13 0 R /Fit]
|
1805
|
+
endobj
|
1806
|
+
20 0 obj
|
1807
|
+
<< /Type /Outlines
|
1808
|
+
/Count 0
|
1809
|
+
/First null
|
1810
|
+
/Last null
|
1811
|
+
>>
|
1812
|
+
endobj
|
1813
|
+
21 0 obj
|
1814
|
+
<< /Length 9076
|
1815
|
+
/Length1 15028
|
1816
|
+
/Filter /FlateDecode
|
1817
|
+
>>
|
1818
|
+
stream
|
1819
|
+
x��{p�u`�0���pH�$�HQ�($��,rWԏ���$���?��>�Ү�Y[[r|q����s]\�N��ΐ�]K�s^�eŗ�n\w9�S��(�&Y_BG{��wy��(R�:����3ݯ�_�~�nP�B중ɧ�����^����&!�=�xa���4��~�嗋+�ًϿ�-B���d���;S�Q����|.kn1>�ЮXʞ_5~C�@���V�<|��~�Ah߇����z���߅�cОY�.��=1
|
1820
|
+
��b�t3?�z�CH�ɾյ���ϻ����#��sKg�$s���eBu�l^�?h�$��3��9���T�O~����^<!�`�X�a-�d�n�\n��-!>���`Y(L"�?����G�������g"J�at�T��&*�x#%
|
1821
|
+
g���^�t_7dyrs�n:j%�D���6GL�2lR|~2d�@<C&��t��ě�]��nk��H�7��Nښr�.oz��t}}�U�m�sqo������ҀM����.w�$h�-��~纇'`��n��w���߽.�����߬�E2Cx@�*�K�@T)����-����)�(~?.�r
|
1822
|
+
��;m�A�F[�n#]��+w[["��L$@4�w��[��l"L��CB��$�nj$�_�P���|�F��f�e'��ɷ4��r��;y-�fYCG��)�[ghyKw8PW.nS���B�i��f9s�/��RM~���ZF;C���}J�A�Pg
|
1823
|
+
�z�A>�����|��ߥm
|
1824
|
+
��^*�:��
|
1825
|
+
~��{����\/��(
|
1826
|
+
hyҒ���L��`���@I��aG��&`͈C�Ԩ��Q?TS"����Q��H����EQ�{��
|
1827
|
+
��f��W���Z��%���Qrc
|
1828
|
+
� A]��7��0Q�
|
1829
|
+
٧�¹�� 9>�={�5n���;�E$�J����~3XD�=e����t2� -���ƬDž�2�R�w�0Ոӌ�����¤Q�c������t��F�,"�� :3f�����Km�6��b��7�F���'��2��i��E!�c��L>���� ��cl��!����bZ�&�A;�p�>�F�+���Nk���5���2��H
|
1830
|
+
)�G��� �����ͮ���U��䫊���V��P
|
1831
|
+
��K�I4��kk:�n�h�`�: �D��
|
1832
|
+
|�!���%Na?�L�!%*S��C�9���upN%�o,�JvBv�9t�j�N�'���i��*"|���X}j'��'��00rU(H�p��2g(��PT>f|^q�F�Z
|
1833
|
+
D�\z8Jk;�P�v����]r���\7��i�;�����t�����ú�b[��n�xL�-�����wy�B%��l��!�����X*�*�qAdd��~�K���C[1�[�& TO�\?0ʥ��/U�J��J�PIC���+\n��?*!*���NUe�����,!E�LL��ts7#*T��W+_�k�Y�ܠ�N��M�VF:F��������_cw�{�x��dqW��t��
|
1834
|
+
�i�m��M��\�6��]2 ��O�A�J�J?~�D�(�N�=��]Y=�E�����ȏ�Ljy�f�S4&�>�b*vLz�5�l���YA�0C�����(�6c�wZl��2�V ������w�a��'
|
1835
|
+
i�/���(G�`#����X/?�j��#�bi@�~�(/Pʁ��Ǻ�����e�\�.=F�X
|
1836
|
+
&���e:���r�������u���X������f]
|
1837
|
+
�GWA�Tt��x7�m����p�!���Q��&zJ�J��� ����- ?�]�_F���n�;$��3�T�]�=8��D����!�/y1-9P���Xt�=���6�4A�AcQ�E4 ��`�eD�����>N!Kd�,x$�z6ɔ�Q��<�p�ɥ�M
|
1838
|
+
Z��9ծ���'�������),�;8����<83��̮�g�kk�W�]����g^-c�=��*�,u���Y ��o.AX �D����3�PL�����~�/�Ց�N8x���A�Q��u��?rq`D���~��-Aw���\���dN������F_ME��:��?���h�;�w����p[��L]�P���J���q�>�p��tР�?]].j�_���|�+P�$x�P<0Bxy�AY�cRAi��Ŧ������~��f�:@7�>�� ~ t��~�4���e��ף�&��$��*�
|
1839
|
+
��������C���T����k��_-�U&�6���S?�����|�
|
1840
|
+
Py
|
1841
|
+
�H#�i��T�Vz���B�
|
1842
|
+
cS{������x��9�]82!�SEԙ��n��?^� ��ϐ?Q����"g�^�!
|
1843
|
+
�������=���O���X�����ٟˀFV�j��d�O� 9D�G�!� �$#�(���k���S)
|
1844
|
+
�坽b��\緡��)u�����_�p�����t8Oj��<I�4����7?�O��1n��t�@<�^7�?�ǘ�eΤ�E���p������f����f�]�[�?��Z�[��Ɨt���Z�L�[I��흿z
|
1845
|
+
X�:�F��&.�:��%b�.�p1Z7t��X���p7�y�we�����|^I665*������2���W������znF�X�ɭ)���rbjc9����,����T�HzA%W��F���0��Q5�&(
|
1846
|
+
�f�2�X��i�/l�̐z�a�9�_��@6�>�5��_�'���ᩀ2������l\`m�}d�P��!�4�^�@N��e������lv6�^�(�4ַ6��"�y��0Գ0W�D��7��
|
1847
|
+
��]WfQ�g��{��:S����,�l�����| 7��W?�Pfr�s�ʹ��g���y
|
1848
|
�&�\�.oda���y���ʚ2��][�_�����WV�襕��Ŝ2�����G�֧�r`��v�݂�O��
|
1849
|
+
{7����Ӌ3���"��]����dc]�&B���+�EеS�V6�K�,[ڗ���2��������:������:A97�0=��~>�Wrgsk>e}~e�L���)��`ľ}+��s(p\b���`���
|
1850
|
+
x2���d��+�s+��Zƭs9%w~{ǬƁs��)������+@����б�/: �sd��\vm��߯wo���K`4��^�"@����>v�Ջ�
|
1851
|
+
÷��K�.�:�f��y�ڜ����ցs����S��gW�@ڎQ�����A��i{^�����^.hz^����P+��������s���ϰP���m���v8�4����������oxOl�|d���j�Nη'/�����n��y���S��A����{r�����Cp����*�3Y���C���KP~��"��#/ff"���_�/\�"������%�~�"�U�s�9h9���B�\�.p��-=�S���5(�=3�(�P�=%eJ�8�Q('��2e���B�B2���y-ý��v���#�ݾ�w{��p=Pws3{�x�XÝ0@�Y�8a���0�'h
|
1852
|
+
U+�
|
1853
|
+
U��5Z�IY���k��ю��ʾ�L���X_&��3�e�
|
1854
|
+
Bo��p)H3��r�����yS"S� ی:�}�X��¤�|�իW
|
1855
|
+
�D�Z���}�[�j�L_!���Gw�c��*WJ�xu��B�:D��~J��[�a��h
|
1856
|
+
a�(��i2���1�
|
1857
|
+
�`����O+Ƚ29��*4�e�.���dF#q�#c�Hj��f%x=E��8�Q(��������"����Ye,-�ǁ}��Xn��J�껰\���f��]�;7U����QZP���t@��bM�hO�2F��8V�G`mh������`t<�}~
|
1858
|
+
�2���qt(}d���f�=|L=<rj�I[ג�{ZZ���>�V�zA���LY{��w���t*v+WE�𱫈Y����M�q�w7����M�Ϫ���_��ܾ<u�Z:}u�or��f����:����c����rnr�>�SWΧ�J_���/;5vK"Dy���5�������a�����d�������ڤ �h��������('�
|
1859
|
+
5�S��=�Bx�n��ZG8#�q� ��#��x���m�o����W{�����
|
1860
|
+
endstream
|
1861
|
+
endobj
|
1862
|
+
22 0 obj
|
1863
|
+
<< /Type /FontDescriptor
|
1864
|
+
/FontName /AAAAAE+Ubuntu-Light
|
1865
|
+
/FontFile2 21 0 R
|
1866
|
+
/FontBBox [-157 -196 1551 958]
|
1867
|
+
/Flags 4
|
1868
|
+
/StemV 0
|
1869
|
+
/ItalicAngle 0.0
|
1870
|
+
/Ascent 776
|
1871
|
+
/Descent -185
|
1872
|
+
/CapHeight 693
|
1873
|
+
/XHeight 517
|
1874
|
+
>>
|
1875
|
+
endobj
|
1876
|
+
23 0 obj
|
1877
|
+
<< /Filter /FlateDecode
|
1878
|
+
/Length 1286
|
1879
|
+
>>
|
1880
|
+
stream
|
1881
|
+
x�e��n�F�ὮB�tHs&�@�n��u{stԒ +�}���i �/��y�_�!u������t�~�]�s�����n����V�����yg쾝���+���|����������<.�������÷��}���v)�����[���e���O����/��_��������q����9_ɯ}ഏOm��t������_����LL���v͵�������LJ1w����9�)e���6=n���P��Ҫt�N���*eP)��D�T.��ʕrU�)��BYTVʪ�Q6�����[����k�y
|
1882
|
+
���J�����31���x;��
|
1883
|
+
���J���J��특���x��x��x��+�!Êw��B�x�b�x��+ށ�r�;��2��k�Μ�J�Y�e�Y��7+|��x�oS��7+[ƛețךyޢoV��浖-㭌���"���R�W�*��4Xq��C�^J�[(��^�1�»�y]���k�}�YM-x����V�z�����[YE�V�Y���_}/7�*�Y%��e�ӫq+��:��.�7�J���E�/�3Y(Y�*A�W R��VJS�����:(u@c��D�]a*��f)�9J���)�o,#�\�Z>M�U��\�jPS�
|
1884
|
+
endstream
|
1885
|
+
endobj
|
1886
|
+
24 0 obj
|
1887
|
+
[228 500 500 500 500 500 500 240 500 500 500 500 500 500 246 500 500 564 564 564 564 564 564 500 500 500 500 500 500 500 500 500 500 641 500 500 500 500 520 500 500 500 500 500 502 500 500 500 500 500 500 500 548 500 500 500 500 500 500 500 500 500 500 500 500 509 500 460 583 548 376 573 569 237 237 500 255 500 569 582 500 583 374 428 387 569 500 775 499 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500]
|
1888
|
+
endobj
|
1889
|
+
25 0 obj
|
1890
|
+
<< /Length 9888
|
1891
|
+
/Length1 15564
|
1892
|
+
/Filter /FlateDecode
|
1893
|
+
>>
|
1894
|
+
stream
|
1895
|
+
x��{ tǕ`U7���ٸ/h�A�H�x�M��x�")�)A<,^"@��EG�MF�%���H<�w�I)�!ˇ49�('��dw���x�f=�I���cώ��Uݠ)�ɼ}o�,LtW������� #�2�J�E��ͦ�����ur��[.���D(���K�1q�)���aN��l�涇�1��{��ҩ���BY�fS7/h�J0@�a�K}���OU��U�_����|&��j�*vCj.5�.�JӃп!�m�n�_�����7�]XL/<Ҹ�U�b�1�&&g���
|
1896
|
+
B�O ��cdzҶy����a �Ƞɡ��7��"��r�P��ޠ���3mF`F��j�;����m)��`ѿ��ԇA1��/��{<�&t����r��0�C,��C����[�������k?a~s�cN_=Np`^O��h�Pqq�%���C�)#�ә�M�>#c�9�G��b���(��E�*�v���KqMu��)\,uzD���t�vW|����+{l_��:�����K�/$G'�R.`�P��r#������5յ��;�@ D����R||Ixc�[�O�{��\�c�3����g����2���h���~Èa���v�=������Z<�0uc�G��Z}U����-��������A�Z�`����=L�����
|
1897
|
+
O��'�{���D��m.�e��g�<k�]�K��k@ ��X�nT*>��U����C��hE��~����_J�an( @7 �E�;p��Lf��ui���-V����.C1,|Z4�{��o�t4���=��(2�;cDMkM��#k}=4�"��@�k�^��/G"W�`$E�����y�x���MobAG0\]S���5�5��\�F�������o)/��kÁX��S.;lR�]X���Xchv�фZ�����X���3h�� �;�m�o�b.�EW赦��������}7��J?�+Al@Z7<jExT�.C8�ư8-2�g���'e�%c9rk'óaFօknbq;�2�+�`S�nOmM}8�;#�Zt��୩��+�g=~�hB��C�).��ZLg���(v��ƈ�nL&�k�$`2)����*p$cu�Z"����E~�">?C���:@�rQSR�ǿ�C�l�=qW��B�⊚º�joc�/V�
|
1898
|
+
4��z�*C����ֱ3\0��yˋ��z�[̻���U�����ECqy�vI04���p)F�dBt4�T�`��M���j�k�-6k��{x]��l�;�����v�~�K'��1�3Z����F �).��Z�G�bX�QL\[�1)����Z�,y,�1��`>�hq��k@�,/���;R9�w�k?���v����Y�t�͕�:w_������h���\���=(
|
1899
|
+
���<��
|
1900
|
+
vB�DXt�;�5��حH��|v��L�R�茄��D�6>|�'�����I�� 0Y� j�@�A8��>�/E�D�뫱��W"�,`
|
1901
|
+
7m���������Fo��so��[�w����?Ɔ@ui��ol����o��{��z�
|
1902
|
+
Ln��e^_��ӳ�h4���!����H"q�A�,mB0g�)�0�H�Ϗ���E2/0�x4�FM�XJɨ�P4�-�%C.lԀ4l��7Z��E���]eo�"��{4�Pi�U��gL�DQ�����+���V^��v�T]^RZ��Vs����� g��,ȍ^����{5x�h6
|
1903
|
+
��L^�}�u�\��]��g�_}�I�W����;��9��,�
|
1904
|
+
�H)VD���J��:e�
|
1905
|
+
<�.۩>�T��¾�Tz�su�:�}�t�;n8��4��b^R����K�@��Ъ�OXq/OV�@@|��ڵ��7�h���EW��~�'�h B:b/+��J�˻кyA�A$2�j�j*0��v��T�$%�j���zc�[t�#Z�MD��F�HmS����/7����>���PE�Eo���j>��9[�+��������7��ZK�ư��j�����Dt_dD�]F.HPF*f���7�� 4����D���Y(7�}2#'��N*~̱��R1�|��IB����|��"����s˪Q'������z�{H��!�j!"E3��He1R�R^�JZ�#`KT��
|
1906
|
+
;��SΊky
|
1907
|
+
]Z�=�ڻ:��4Ts�,V�m�i�s���Lp���kP_�Q<!"�ha�9#���s�����`��|J���Bݤ�\#�+v5���p>�˖xI�������d�#��2�-[���j����}��ݐ�a��Q��K��6R�C��N�2{Πݣ_%���U�${ �ծ
|
1908
|
+
\܃N]�>Й�~����fīg]~k�腅��q0a�%0k/=�:$%�)�j"qO����1?`T�i�Z�� �a������Dr���"I,�VŠUQk�~�Sb��������m�((b���}}~l�c�Y.?WQ��tG�a�H���U=bY�� �pzwI)��'�x4n$�7)f�ʍ�c����$#k�G"jEؑӥ��yk��fӒ����X�����vG��O�(z�^�:O$h�
|
1909
|
+
ݚ$~_���Z��('����U��9<:ocQ�ð|�k����\�8�!�-):�DS��6���D�e�A8�yރˮsngwA�C\E,�=(����&*H
|
1910
|
+
)�VE��-�0{x��\�Dj��ҝ�(�1sA�A������G*NX9�Ͱl:g5v��U�F�bp|�Q+_���I��dh� ����É�x�7.$�����j��^�\���lpP[/��!��r��2*k)�y����D�J�ȁ��H6B�����I��H�H��"���`�A��j��u4d�Ak]��<Eb Wn��N�����hm����Ta�6���e�`�
|
1911
|
+
A�_�e��a[�|�)����m~��1M��&B�E����ȉ��m%vת�DlwF����X|�e�W�k��z�/V4ÓޙD�R�9z
|
1912
|
+
�Wč�oV�bD�71�ErFM�cx9̔���F��^2]��j�d�,[,�⠁���M7a�U�����U�����!���D�㹓f9��P��䢋f;ڧ�r8���I�!��gz -�S��0}?ms��!�VI#��&B�:�CT��:C40Hŝ�!���FB,�m�ΐ䓖�!{0��&L���!R��麍Аt�ɦ�\�#4yؕJ#�W����o"�98)!|;�G�<b� ���#�)Z1C�d�F) w��*�ȝ�Ӆv;E��{���
|
1913
|
+
'�b�?ީ����o����cU��
|
1914
|
+
����r#�+����p�p��.��J�%�������m��=Q������=���ZG�}�y�ٷ�?�����m�;x�)bncu��4!�w���Y헸�_�7aᦂP�'���M�}���ΰ��5.�ej?&���b�ۻ(��L5J���[
|
1915
|
+
�f�6��"��O�؈05Hdtp���(���7����gZ��*ī�[�6 �FDN�d^?����J�����]$�Ȋ�A��֗�[�����$��ސ�L!2Z����!��(���J��H�,s�-�|�9
|
1916
|
+
��B��/�oK=vvd��"!V��C���>�#��s�P9ۡ�p�U��4BŨա6ԁv�NDnz 7��^�
|
1917
|
+
/��*��_Q�:���T�Nۡ�R�z��}C��Q������
|
1918
|
+
7�j��u~�����TV�UVUJ������Ԍ�;;^!I����s����47�^��Siipti.�$u��e�ᱴTUQ�Z!/��hM�I4�����DU�`4��`���A{`�a�8��ix�3���ǡ��,�K�{�Rx���<mo^=F�U�J���k��'�fR�`7i q �H�Ŷ�Lv~�7���w��S�J�uU`}��,ݮ�)X������7�+��:T���H/f���PF3��ccU3�tD��*e���MjJ-�����t&�^5eS�����ь4?�!m~����Gk��N�H��²�@E3Yh��nf�̣0.��?�gE��4��:�JrU��_M��!��H�NϜ������@3�1�qi�����`���Tjf��l��/,�ߔ�VH?A!��3ӓs҉�ţT��ؔ�gzva&=��˦�D��@9=7��M6u4=G��ĕ�5{r!=����\�<�^��(��2�Է�����t*���'̜M�-�f�é�,p41�(���NgOf�ʣ��:{v~tz&-���.,e A���4�t�Qg�
|
1919
|
+
2c����o������8�{f�ΙI�M.�&��Q�I��a���L-��%"%���sRviz��)ujIFZ������/L��NLM�MI�"��N��R�xz�$�'e���hZJ�O�y&اal~"{�(�l��J�3�165�J��Y"����y�K�։���y���NL�d$����YD0b��MrQI���L�3Ps���=N3!��ȨڞP�fh;�C��5��$�mFa���p؏���<� F�BBt���
|
1920
|
+
���-�$�<bS��h�ĉ�4�ΒL
|
1921
|
+
�6J�,p�N6Qؓ�W�}#f7"��?���Ra[��}�㈹��a��ǁ���!����p>k�<�_Ҋ^=�K�uoi������_\������O=���ݟ{<�>�
|
1922
|
+
�f�O�^�Y"��r[n�-���ӹ2��=�Y�ލ
|
1923
|
+
��<0t��_�P-�.�Q5&t䜭��p���\`�7�9!
|
1924
|
+
x'�m$��5ܣ���=(���*��p��CItN�#p�^h?��n@X�P���u��g��؈�B-��n�z�"$7�W:붡!�����uح}�6�������~���
|
1925
|
+
endstream
|
1926
|
+
endobj
|
1927
|
+
26 0 obj
|
1928
|
+
<< /Type /FontDescriptor
|
1929
|
+
/FontName /AAAAAF+Ubuntu
|
1930
|
+
/FontFile2 25 0 R
|
1931
|
+
/FontBBox [-167 -189 1561 962]
|
1932
|
+
/Flags 4
|
1933
|
+
/StemV 0
|
1934
|
+
/ItalicAngle 0.0
|
1935
|
+
/Ascent 776
|
1936
|
+
/Descent -185
|
1937
|
+
/CapHeight 693
|
1938
|
+
/XHeight 520
|
1939
|
+
>>
|
1940
|
+
endobj
|
1941
|
+
27 0 obj
|
1942
|
+
<< /Filter /FlateDecode
|
1943
|
+
/Length 1286
|
1944
|
+
>>
|
1945
|
+
stream
|
1946
|
+
x�e��n�F�ὮB�tHs&�@�n��u{stԒ +�}���i �/��y�_�!u������t�~�]�s�����n����V�����yg쾝���+���|����������<.�������÷��}���v)�����[���e���O����/��_��������q����9_ɯ}ഏOm��t������_����LL���v͵�������LJ1w����9�)e���6=n���P��Ҫt�N���*eP)��D�T.��ʕrU�)��BYTVʪ�Q6�����[����k�y
|
1947
|
+
���J�����31���x;��
|
1948
|
+
���J���J��특���x��x��x��+�!Êw��B�x�b�x��+ށ�r�;��2��k�Μ�J�Y�e�Y��7+|��x�oS��7+[ƛețךyޢoV��浖-㭌���"���R�W�*��4Xq��C�^J�[(��^�1�»�y]���k�}�YM-x����V�z�����[YE�V�Y���_}/7�*�Y%��e�ӫq+��:��.�7�J���E�/�3Y(Y�*A�W R��VJS�����:(u@c��D�]a*��f)�9J���)�o,#�\�Z>M�U��\�jPS�
|
1949
|
+
endstream
|
1950
|
+
endobj
|
1951
|
+
28 0 obj
|
1952
|
+
[231 500 500 500 500 500 500 500 500 500 500 500 246 500 246 500 500 564 564 564 564 564 564 500 500 500 500 500 500 500 500 404 500 663 643 500 500 500 500 500 500 269 500 500 500 500 500 500 500 500 500 500 565 500 500 500 500 500 500 500 500 500 500 500 500 522 500 465 589 559 386 578 571 253 500 500 273 861 574 590 589 500 386 446 402 574 502 777 511 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500]
|
1953
|
+
endobj
|
1954
|
+
xref
|
1955
|
+
0 29
|
1956
|
+
0000000000 65535 f
|
1957
|
+
0000000015 00000 n
|
1958
|
+
0000000109 00000 n
|
1959
|
+
0000000189 00000 n
|
1960
|
+
0000000266 00000 n
|
1961
|
+
0000011765 00000 n
|
1962
|
+
0000011957 00000 n
|
1963
|
+
0000012124 00000 n
|
1964
|
+
0000012285 00000 n
|
1965
|
+
0000022937 00000 n
|
1966
|
+
0000023129 00000 n
|
1967
|
+
0000033636 00000 n
|
1968
|
+
0000033830 00000 n
|
1969
|
+
0000041191 00000 n
|
1970
|
+
0000041385 00000 n
|
1971
|
+
0000041414 00000 n
|
1972
|
+
0000041463 00000 n
|
1973
|
+
0000041554 00000 n
|
1974
|
+
0000041583 00000 n
|
1975
|
+
0000041613 00000 n
|
1976
|
+
0000041643 00000 n
|
1977
|
+
0000041713 00000 n
|
1978
|
+
0000050878 00000 n
|
1979
|
+
0000051091 00000 n
|
1980
|
+
0000052451 00000 n
|
1981
|
+
0000053365 00000 n
|
1982
|
+
0000063342 00000 n
|
1983
|
+
0000063549 00000 n
|
1984
|
+
0000064909 00000 n
|
1985
|
+
trailer
|
1986
|
+
<< /Size 29
|
1987
|
+
/Root 2 0 R
|
1988
|
+
/Info 1 0 R
|
1989
|
+
>>
|
1990
|
+
startxref
|
1991
|
+
65823
|
1992
|
+
%%EOF
|