booky 0.0.4 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1617) hide show
  1. data/.pdf +0 -0
  2. data/README.textile +35 -8
  3. data/booky.gemspec +7 -2
  4. data/lib/booky.rb +40 -36
  5. data/lib/booky/ast.rb +10 -0
  6. data/lib/booky/exceptions.rb +1 -1
  7. data/lib/booky/layout.rb +103 -0
  8. data/lib/booky/layout/base.rb +70 -0
  9. data/lib/booky/layout/base/author.rb +15 -0
  10. data/lib/booky/layout/base/blockquote.rb +58 -0
  11. data/lib/booky/layout/base/chart.rb +26 -0
  12. data/lib/booky/layout/base/charts/bar.rb +164 -0
  13. data/lib/booky/layout/base/charts/base.rb +82 -0
  14. data/lib/booky/layout/base/charts/line.rb +249 -0
  15. data/lib/booky/layout/base/code.rb +185 -0
  16. data/lib/booky/layout/base/copyright.rb +16 -0
  17. data/lib/booky/layout/base/footnote.rb +10 -0
  18. data/lib/booky/layout/base/h0.rb +26 -0
  19. data/lib/booky/layout/base/h1.rb +29 -0
  20. data/lib/booky/layout/base/h2.rb +29 -0
  21. data/lib/booky/layout/base/h3.rb +29 -0
  22. data/lib/booky/layout/base/h4.rb +29 -0
  23. data/lib/booky/layout/base/image.rb +39 -0
  24. data/lib/booky/layout/base/import.rb +11 -0
  25. data/lib/booky/layout/base/numbered_list.rb +45 -0
  26. data/lib/booky/layout/base/outline.rb +21 -0
  27. data/lib/booky/layout/base/p.rb +15 -0
  28. data/lib/booky/layout/base/subtitle.rb +18 -0
  29. data/lib/booky/layout/base/table.rb +58 -0
  30. data/lib/booky/layout/base/title.rb +22 -0
  31. data/lib/booky/layout/base/toc.rb +131 -0
  32. data/lib/booky/layout/base/tof.rb +73 -0
  33. data/lib/booky/layout/base/unnumbered_list.rb +36 -0
  34. data/lib/booky/layout/element.rb +28 -0
  35. data/lib/booky/layout/helpers.rb +29 -0
  36. data/lib/booky/pdf.rb +12 -10
  37. data/lib/booky/textile.rb +6 -4
  38. data/lib/booky/textile/load.rb +1 -1
  39. data/lib/booky/textile/precompiler.rb +1 -0
  40. data/lib/booky/textile/source.rb +31 -5
  41. data/lib/booky/textile/table.rb +52 -0
  42. data/lib/booky/version.rb +1 -1
  43. data/pdfs/Rakefile +16 -0
  44. data/pdfs/blockquote_source.pdf +15641 -1
  45. data/pdfs/footnotes.pdf +1991 -0
  46. data/pdfs/link_image.pdf +0 -0
  47. data/pdfs/lists.pdf +706 -1
  48. data/pdfs/tables.pdf +2162 -0
  49. data/pdfs/title_subtitle.pdf +3454 -0
  50. data/spec/ast_spec.rb +12 -0
  51. data/{lib/fop/lib → spec/fixtures}/.DS_Store +0 -0
  52. data/spec/fixtures/bar_chart.json +35 -0
  53. data/spec/fixtures/blockquote_pagebreak.textile +27 -0
  54. data/spec/fixtures/blockquote_source.textile +35 -0
  55. data/spec/fixtures/chart.textile +9 -0
  56. data/spec/fixtures/footnotes.textile +57 -0
  57. data/spec/fixtures/footnotes_tables.textile +29 -0
  58. data/spec/fixtures/image_big.jpg +0 -0
  59. data/spec/fixtures/image_small.jpg +0 -0
  60. data/spec/fixtures/import.textile +7 -0
  61. data/spec/fixtures/line_chart.json +49 -0
  62. data/spec/fixtures/link_image.textile +18 -0
  63. data/spec/fixtures/lists.textile +98 -0
  64. data/spec/fixtures/request_flow.pdf +477 -0
  65. data/spec/fixtures/some_code.rb +138 -0
  66. data/spec/fixtures/some_text.txt +10 -0
  67. data/spec/fixtures/source_plain_text.textile +1 -0
  68. data/spec/fixtures/tables.textile +42 -0
  69. data/spec/fixtures/textile/basic.textile +3 -0
  70. data/spec/fixtures/textile/source/precompiled_index.textile +2 -2
  71. data/spec/fixtures/textile/tables/names.xls +0 -0
  72. data/spec/fixtures/textile/tables/request_limits_hardware.xls +0 -0
  73. data/spec/fixtures/title_subtitle.textile +110 -0
  74. data/spec/helpers.rb +2 -1
  75. data/spec/pdf_spec.rb +107 -0
  76. data/test.pdf +16657 -0
  77. metadata +152 -1551
  78. data/lib/booky/docbook.rb +0 -13
  79. data/lib/booky/fo.rb +0 -15
  80. data/lib/booky/fonts.rb +0 -104
  81. data/lib/custom_fonts.xml +0 -91
  82. data/lib/fop/KEYS +0 -248
  83. data/lib/fop/LICENSE +0 -202
  84. data/lib/fop/NOTICE +0 -10
  85. data/lib/fop/README +0 -286
  86. data/lib/fop/build/fop.jar +0 -0
  87. data/lib/fop/conf/fop.xconf +0 -464
  88. data/lib/fop/fop +0 -254
  89. data/lib/fop/fop.bat +0 -85
  90. data/lib/fop/fop.cmd +0 -75
  91. data/lib/fop/fop.js +0 -341
  92. data/lib/fop/lib/README.txt +0 -243
  93. data/lib/fop/lib/avalon-framework-4.2.0.jar +0 -0
  94. data/lib/fop/lib/avalon-framework.LICENSE.txt +0 -175
  95. data/lib/fop/lib/avalon-framework.NOTICE.TXT +0 -11
  96. data/lib/fop/lib/batik-all-1.7.jar +0 -0
  97. data/lib/fop/lib/batik.LICENSE.txt +0 -201
  98. data/lib/fop/lib/batik.NOTICE.txt +0 -18
  99. data/lib/fop/lib/commons-io-1.3.1.jar +0 -0
  100. data/lib/fop/lib/commons-io.LICENSE.txt +0 -203
  101. data/lib/fop/lib/commons-io.NOTICE.txt +0 -6
  102. data/lib/fop/lib/commons-logging-1.0.4.jar +0 -0
  103. data/lib/fop/lib/commons-logging.LICENSE.txt +0 -202
  104. data/lib/fop/lib/commons-logging.NOTICE.txt +0 -3
  105. data/lib/fop/lib/jeuclid-core-3.1.9.jar +0 -0
  106. data/lib/fop/lib/jeuclid-fop-3.1.9.jar +0 -0
  107. data/lib/fop/lib/serializer-2.7.0.jar +0 -0
  108. data/lib/fop/lib/serializer.LICENSE.txt +0 -201
  109. data/lib/fop/lib/serializer.NOTICE.txt +0 -15
  110. data/lib/fop/lib/xalan-2.7.0.jar +0 -0
  111. data/lib/fop/lib/xalan.BCEL.LICENSE.txt +0 -52
  112. data/lib/fop/lib/xalan.LICENSE.txt +0 -202
  113. data/lib/fop/lib/xalan.NOTICE.txt +0 -44
  114. data/lib/fop/lib/xalan.regexp.LICENSE.txt +0 -52
  115. data/lib/fop/lib/xalan.runtime.LICENSE.txt +0 -20
  116. data/lib/fop/lib/xerces.LICENSE.txt +0 -56
  117. data/lib/fop/lib/xercesImpl-2.7.1.jar +0 -0
  118. data/lib/fop/lib/xercesImpl.LICENSE.txt +0 -201
  119. data/lib/fop/lib/xercesImpl.NOTICE.txt +0 -14
  120. data/lib/fop/lib/xml-apis-1.3.04.jar +0 -0
  121. data/lib/fop/lib/xml-apis-ext-1.3.04.jar +0 -0
  122. data/lib/fop/lib/xml-apis-ext.LICENSE.dom-documentation.txt +0 -73
  123. data/lib/fop/lib/xml-apis-ext.LICENSE.dom-software.txt +0 -61
  124. data/lib/fop/lib/xml-apis-ext.LICENSE.sac.html +0 -75
  125. data/lib/fop/lib/xml-apis-ext.LICENSE.txt +0 -202
  126. data/lib/fop/lib/xml-apis-ext.NOTICE.txt +0 -16
  127. data/lib/fop/lib/xml-apis-ext.README.dom.txt +0 -56
  128. data/lib/fop/lib/xml-apis.LICENSE-SAX.html +0 -17
  129. data/lib/fop/lib/xml-apis.LICENSE.DOM-documentation.html +0 -74
  130. data/lib/fop/lib/xml-apis.LICENSE.DOM-software.html +0 -66
  131. data/lib/fop/lib/xml-apis.LICENSE.txt +0 -201
  132. data/lib/fop/lib/xml-apis.NOTICE.txt +0 -13
  133. data/lib/fop/lib/xmlgraphics-commons-1.4.jar +0 -0
  134. data/lib/fop/lib/xmlgraphics-commons.LICENSE.txt +0 -202
  135. data/lib/fop/lib/xmlgraphics-commons.NOTICE.txt +0 -5
  136. data/lib/fop/lib/xslthl-2.0.2.jar +0 -0
  137. data/lib/fop/status.xml +0 -1809
  138. data/lib/params.pdf +0 -0
  139. data/lib/stylesheets/.CatalogManager.properties.example +0 -61
  140. data/lib/stylesheets/.urilist +0 -1
  141. data/lib/stylesheets/AUTHORS +0 -4
  142. data/lib/stylesheets/BUGS +0 -21
  143. data/lib/stylesheets/COPYING +0 -47
  144. data/lib/stylesheets/INSTALL +0 -88
  145. data/lib/stylesheets/Makefile +0 -89
  146. data/lib/stylesheets/NEWS +0 -139
  147. data/lib/stylesheets/NEWS.html +0 -25
  148. data/lib/stylesheets/NEWS.xml +0 -145
  149. data/lib/stylesheets/README +0 -166
  150. data/lib/stylesheets/RELEASE-NOTES.html +0 -8353
  151. data/lib/stylesheets/RELEASE-NOTES.pdf +6 -24345
  152. data/lib/stylesheets/RELEASE-NOTES.txt +0 -8575
  153. data/lib/stylesheets/RELEASE-NOTES.xml +0 -10327
  154. data/lib/stylesheets/TODO +0 -23
  155. data/lib/stylesheets/VERSION +0 -115
  156. data/lib/stylesheets/catalog.xml +0 -8
  157. data/lib/stylesheets/common/addns.xsl +0 -118
  158. data/lib/stylesheets/common/af.xml +0 -1229
  159. data/lib/stylesheets/common/am.xml +0 -1229
  160. data/lib/stylesheets/common/ar.xml +0 -1229
  161. data/lib/stylesheets/common/as.xml +0 -660
  162. data/lib/stylesheets/common/ast.xml +0 -660
  163. data/lib/stylesheets/common/autoidx-kimber.xsl +0 -45
  164. data/lib/stylesheets/common/autoidx-kosek.xsl +0 -155
  165. data/lib/stylesheets/common/az.xml +0 -672
  166. data/lib/stylesheets/common/bg.xml +0 -724
  167. data/lib/stylesheets/common/bn.xml +0 -1229
  168. data/lib/stylesheets/common/bn_in.xml +0 -660
  169. data/lib/stylesheets/common/bs.xml +0 -662
  170. data/lib/stylesheets/common/ca.xml +0 -660
  171. data/lib/stylesheets/common/charmap.xml +0 -185
  172. data/lib/stylesheets/common/charmap.xsl +0 -222
  173. data/lib/stylesheets/common/common.xml +0 -622
  174. data/lib/stylesheets/common/common.xsl +0 -2040
  175. data/lib/stylesheets/common/cs.xml +0 -700
  176. data/lib/stylesheets/common/cy.xml +0 -1245
  177. data/lib/stylesheets/common/da.xml +0 -664
  178. data/lib/stylesheets/common/de.xml +0 -666
  179. data/lib/stylesheets/common/el.xml +0 -729
  180. data/lib/stylesheets/common/en.xml +0 -1230
  181. data/lib/stylesheets/common/entities.ent +0 -67
  182. data/lib/stylesheets/common/eo.xml +0 -1229
  183. data/lib/stylesheets/common/es.xml +0 -676
  184. data/lib/stylesheets/common/et.xml +0 -1229
  185. data/lib/stylesheets/common/eu.xml +0 -1229
  186. data/lib/stylesheets/common/fa.xml +0 -660
  187. data/lib/stylesheets/common/fi.xml +0 -670
  188. data/lib/stylesheets/common/fr.xml +0 -690
  189. data/lib/stylesheets/common/ga.xml +0 -1229
  190. data/lib/stylesheets/common/gentext.xsl +0 -840
  191. data/lib/stylesheets/common/gl.xml +0 -1229
  192. data/lib/stylesheets/common/gu.xml +0 -660
  193. data/lib/stylesheets/common/he.xml +0 -1229
  194. data/lib/stylesheets/common/hi.xml +0 -660
  195. data/lib/stylesheets/common/hr.xml +0 -662
  196. data/lib/stylesheets/common/hu.xml +0 -678
  197. data/lib/stylesheets/common/id.xml +0 -1229
  198. data/lib/stylesheets/common/insertfile.xsl +0 -113
  199. data/lib/stylesheets/common/is.xml +0 -672
  200. data/lib/stylesheets/common/it.xml +0 -1229
  201. data/lib/stylesheets/common/ja.xml +0 -660
  202. data/lib/stylesheets/common/ka.xml +0 -700
  203. data/lib/stylesheets/common/kn.xml +0 -1229
  204. data/lib/stylesheets/common/ko.xml +0 -1229
  205. data/lib/stylesheets/common/ky.xml +0 -732
  206. data/lib/stylesheets/common/l10n.dtd +0 -64
  207. data/lib/stylesheets/common/l10n.xml +0 -77
  208. data/lib/stylesheets/common/l10n.xsl +0 -594
  209. data/lib/stylesheets/common/la.xml +0 -1229
  210. data/lib/stylesheets/common/labels.xsl +0 -888
  211. data/lib/stylesheets/common/lt.xml +0 -678
  212. data/lib/stylesheets/common/lv.xml +0 -1229
  213. data/lib/stylesheets/common/ml.xml +0 -660
  214. data/lib/stylesheets/common/mn.xml +0 -730
  215. data/lib/stylesheets/common/mr.xml +0 -660
  216. data/lib/stylesheets/common/nb.xml +0 -1229
  217. data/lib/stylesheets/common/nds.xml +0 -666
  218. data/lib/stylesheets/common/nl.xml +0 -660
  219. data/lib/stylesheets/common/nn.xml +0 -1229
  220. data/lib/stylesheets/common/olink.xsl +0 -1227
  221. data/lib/stylesheets/common/or.xml +0 -1229
  222. data/lib/stylesheets/common/pa.xml +0 -660
  223. data/lib/stylesheets/common/pi.xml +0 -168
  224. data/lib/stylesheets/common/pi.xsl +0 -347
  225. data/lib/stylesheets/common/pl.xml +0 -678
  226. data/lib/stylesheets/common/pt.xml +0 -1229
  227. data/lib/stylesheets/common/pt_br.xml +0 -1229
  228. data/lib/stylesheets/common/refentry.xml +0 -781
  229. data/lib/stylesheets/common/refentry.xsl +0 -1353
  230. data/lib/stylesheets/common/ro.xml +0 -1229
  231. data/lib/stylesheets/common/ru.xml +0 -726
  232. data/lib/stylesheets/common/sk.xml +0 -1229
  233. data/lib/stylesheets/common/sl.xml +0 -1229
  234. data/lib/stylesheets/common/sq.xml +0 -1229
  235. data/lib/stylesheets/common/sr.xml +0 -720
  236. data/lib/stylesheets/common/sr_Latn.xml +0 -679
  237. data/lib/stylesheets/common/subtitles.xsl +0 -156
  238. data/lib/stylesheets/common/sv.xml +0 -664
  239. data/lib/stylesheets/common/ta.xml +0 -660
  240. data/lib/stylesheets/common/table.xsl +0 -515
  241. data/lib/stylesheets/common/targetdatabase.dtd +0 -49
  242. data/lib/stylesheets/common/targets.xsl +0 -334
  243. data/lib/stylesheets/common/te.xml +0 -660
  244. data/lib/stylesheets/common/th.xml +0 -1229
  245. data/lib/stylesheets/common/titles.xsl +0 -806
  246. data/lib/stylesheets/common/tl.xml +0 -1229
  247. data/lib/stylesheets/common/tr.xml +0 -666
  248. data/lib/stylesheets/common/uk.xml +0 -726
  249. data/lib/stylesheets/common/utility.xml +0 -259
  250. data/lib/stylesheets/common/utility.xsl +0 -291
  251. data/lib/stylesheets/common/vi.xml +0 -1229
  252. data/lib/stylesheets/common/xh.xml +0 -1229
  253. data/lib/stylesheets/common/zh.xml +0 -660
  254. data/lib/stylesheets/common/zh_cn.xml +0 -660
  255. data/lib/stylesheets/common/zh_tw.xml +0 -660
  256. data/lib/stylesheets/docsrc/authors.xml +0 -10
  257. data/lib/stylesheets/docsrc/copyright.xml +0 -18
  258. data/lib/stylesheets/docsrc/license.xml +0 -23
  259. data/lib/stylesheets/docsrc/page.png +0 -0
  260. data/lib/stylesheets/docsrc/reference.css +0 -79
  261. data/lib/stylesheets/docsrc/reference.xml +0 -229
  262. data/lib/stylesheets/docsrc/reference.xml.included +0 -33905
  263. data/lib/stylesheets/docsrc/warranty.xml +0 -11
  264. data/lib/stylesheets/eclipse/eclipse.xsl +0 -294
  265. data/lib/stylesheets/eclipse/eclipse3.xsl +0 -112
  266. data/lib/stylesheets/eclipse/profile-eclipse.xsl +0 -268
  267. data/lib/stylesheets/epub/README +0 -88
  268. data/lib/stylesheets/epub/bin/dbtoepub +0 -76
  269. data/lib/stylesheets/epub/bin/lib/docbook.rb +0 -227
  270. data/lib/stylesheets/epub/bin/xslt/obfuscate.xsl +0 -14
  271. data/lib/stylesheets/epub/docbook.xsl +0 -1678
  272. data/lib/stylesheets/extensions/LICENSE.txt +0 -264
  273. data/lib/stylesheets/extensions/NOTICE.txt +0 -12
  274. data/lib/stylesheets/extensions/README.LIBXSLT +0 -52
  275. data/lib/stylesheets/extensions/README.txt +0 -4
  276. data/lib/stylesheets/extensions/docbook.py +0 -239
  277. data/lib/stylesheets/extensions/lucene-analyzers-3.0.0.jar +0 -0
  278. data/lib/stylesheets/extensions/lucene-core-3.0.0.jar +0 -0
  279. data/lib/stylesheets/extensions/saxon65.jar +0 -0
  280. data/lib/stylesheets/extensions/webhelpindexer.jar +0 -0
  281. data/lib/stylesheets/extensions/xalan27.jar +0 -0
  282. data/lib/stylesheets/extensions/xslt.py +0 -84
  283. data/lib/stylesheets/fo/admon.xsl +0 -132
  284. data/lib/stylesheets/fo/annotations.xsl +0 -20
  285. data/lib/stylesheets/fo/autoidx-kimber.xsl +0 -173
  286. data/lib/stylesheets/fo/autoidx-kosek.xsl +0 -140
  287. data/lib/stylesheets/fo/autoidx-ng.xsl +0 -22
  288. data/lib/stylesheets/fo/autoidx.xsl +0 -1331
  289. data/lib/stylesheets/fo/autotoc.xsl +0 -917
  290. data/lib/stylesheets/fo/axf.xsl +0 -112
  291. data/lib/stylesheets/fo/biblio-iso690.xsl +0 -1302
  292. data/lib/stylesheets/fo/biblio.xsl +0 -1171
  293. data/lib/stylesheets/fo/block.xsl +0 -656
  294. data/lib/stylesheets/fo/callout.xsl +0 -232
  295. data/lib/stylesheets/fo/component.xsl +0 -900
  296. data/lib/stylesheets/fo/division.xsl +0 -614
  297. data/lib/stylesheets/fo/docbook.xsl +0 -333
  298. data/lib/stylesheets/fo/ebnf.xsl +0 -326
  299. data/lib/stylesheets/fo/fo-rtf.xsl +0 -155
  300. data/lib/stylesheets/fo/fo.xsl +0 -120
  301. data/lib/stylesheets/fo/footnote.xsl +0 -221
  302. data/lib/stylesheets/fo/fop.xsl +0 -95
  303. data/lib/stylesheets/fo/fop1.xsl +0 -225
  304. data/lib/stylesheets/fo/formal.xsl +0 -644
  305. data/lib/stylesheets/fo/glossary.xsl +0 -1170
  306. data/lib/stylesheets/fo/graphics.xsl +0 -649
  307. data/lib/stylesheets/fo/highlight.xsl +0 -78
  308. data/lib/stylesheets/fo/htmltbl.xsl +0 -427
  309. data/lib/stylesheets/fo/index.xsl +0 -486
  310. data/lib/stylesheets/fo/info.xsl +0 -36
  311. data/lib/stylesheets/fo/inline.xsl +0 -1289
  312. data/lib/stylesheets/fo/keywords.xsl +0 -23
  313. data/lib/stylesheets/fo/lists.xsl +0 -1395
  314. data/lib/stylesheets/fo/math.xsl +0 -141
  315. data/lib/stylesheets/fo/pagesetup.xsl +0 -2571
  316. data/lib/stylesheets/fo/param.xml +0 -12445
  317. data/lib/stylesheets/fo/param.xsl +0 -969
  318. data/lib/stylesheets/fo/passivetex.xsl +0 -38
  319. data/lib/stylesheets/fo/pdf2index +0 -140
  320. data/lib/stylesheets/fo/pi.xml +0 -1002
  321. data/lib/stylesheets/fo/pi.xsl +0 -1093
  322. data/lib/stylesheets/fo/profile-docbook.xsl +0 -288
  323. data/lib/stylesheets/fo/ptc.xsl +0 -79
  324. data/lib/stylesheets/fo/qandaset.xsl +0 -397
  325. data/lib/stylesheets/fo/refentry.xsl +0 -640
  326. data/lib/stylesheets/fo/sections.xsl +0 -766
  327. data/lib/stylesheets/fo/spaces.xsl +0 -276
  328. data/lib/stylesheets/fo/synop.xsl +0 -1009
  329. data/lib/stylesheets/fo/table.xml +0 -135
  330. data/lib/stylesheets/fo/table.xsl +0 -1682
  331. data/lib/stylesheets/fo/task.xsl +0 -93
  332. data/lib/stylesheets/fo/titlepage.templates.xml +0 -1354
  333. data/lib/stylesheets/fo/titlepage.templates.xsl +0 -5186
  334. data/lib/stylesheets/fo/titlepage.xsl +0 -769
  335. data/lib/stylesheets/fo/toc.xsl +0 -334
  336. data/lib/stylesheets/fo/verbatim.xsl +0 -466
  337. data/lib/stylesheets/fo/xep.xsl +0 -182
  338. data/lib/stylesheets/fo/xref.xsl +0 -1539
  339. data/lib/stylesheets/highlighting/README +0 -16
  340. data/lib/stylesheets/highlighting/c-hl.xml +0 -101
  341. data/lib/stylesheets/highlighting/common.xsl +0 -121
  342. data/lib/stylesheets/highlighting/cpp-hl.xml +0 -150
  343. data/lib/stylesheets/highlighting/csharp-hl.xml +0 -187
  344. data/lib/stylesheets/highlighting/delphi-hl.xml +0 -200
  345. data/lib/stylesheets/highlighting/ini-hl.xml +0 -45
  346. data/lib/stylesheets/highlighting/java-hl.xml +0 -117
  347. data/lib/stylesheets/highlighting/javascript-hl.xml +0 -147
  348. data/lib/stylesheets/highlighting/m2-hl.xml +0 -90
  349. data/lib/stylesheets/highlighting/myxml-hl.xml +0 -116
  350. data/lib/stylesheets/highlighting/perl-hl.xml +0 -120
  351. data/lib/stylesheets/highlighting/php-hl.xml +0 -149
  352. data/lib/stylesheets/highlighting/python-hl.xml +0 -100
  353. data/lib/stylesheets/highlighting/ruby-hl.xml +0 -109
  354. data/lib/stylesheets/highlighting/tcl-hl.xml +0 -180
  355. data/lib/stylesheets/highlighting/xslthl-config.xml +0 -46
  356. data/lib/stylesheets/html/admon.xsl +0 -136
  357. data/lib/stylesheets/html/annotations.xsl +0 -171
  358. data/lib/stylesheets/html/autoidx-kimber.xsl +0 -166
  359. data/lib/stylesheets/html/autoidx-kosek.xsl +0 -121
  360. data/lib/stylesheets/html/autoidx-ng.xsl +0 -22
  361. data/lib/stylesheets/html/autoidx.xsl +0 -740
  362. data/lib/stylesheets/html/autotoc.xsl +0 -709
  363. data/lib/stylesheets/html/biblio-iso690.xsl +0 -1302
  364. data/lib/stylesheets/html/biblio.xsl +0 -1255
  365. data/lib/stylesheets/html/block.xsl +0 -540
  366. data/lib/stylesheets/html/callout.xsl +0 -202
  367. data/lib/stylesheets/html/changebars.xsl +0 -123
  368. data/lib/stylesheets/html/chunk-changebars.xsl +0 -100
  369. data/lib/stylesheets/html/chunk-code.xsl +0 -672
  370. data/lib/stylesheets/html/chunk-common.xsl +0 -1921
  371. data/lib/stylesheets/html/chunk.xsl +0 -53
  372. data/lib/stylesheets/html/chunker.xsl +0 -440
  373. data/lib/stylesheets/html/chunkfast.xsl +0 -73
  374. data/lib/stylesheets/html/chunktoc.xsl +0 -541
  375. data/lib/stylesheets/html/component.xsl +0 -427
  376. data/lib/stylesheets/html/division.xsl +0 -219
  377. data/lib/stylesheets/html/docbook.css.xml +0 -109
  378. data/lib/stylesheets/html/docbook.xsl +0 -468
  379. data/lib/stylesheets/html/ebnf.xsl +0 -330
  380. data/lib/stylesheets/html/footnote.xsl +0 -314
  381. data/lib/stylesheets/html/formal.xsl +0 -427
  382. data/lib/stylesheets/html/glossary.xsl +0 -493
  383. data/lib/stylesheets/html/graphics.xsl +0 -1516
  384. data/lib/stylesheets/html/highlight.xsl +0 -87
  385. data/lib/stylesheets/html/html-rtf.xsl +0 -336
  386. data/lib/stylesheets/html/html.xsl +0 -614
  387. data/lib/stylesheets/html/htmltbl.xsl +0 -137
  388. data/lib/stylesheets/html/index.xsl +0 -290
  389. data/lib/stylesheets/html/info.xsl +0 -45
  390. data/lib/stylesheets/html/inline.xsl +0 -1491
  391. data/lib/stylesheets/html/keywords.xsl +0 -37
  392. data/lib/stylesheets/html/lists.xsl +0 -1185
  393. data/lib/stylesheets/html/maketoc.xsl +0 -87
  394. data/lib/stylesheets/html/manifest.xsl +0 -23
  395. data/lib/stylesheets/html/math.xsl +0 -271
  396. data/lib/stylesheets/html/oldchunker.xsl +0 -203
  397. data/lib/stylesheets/html/onechunk.xsl +0 -38
  398. data/lib/stylesheets/html/param.xml +0 -10905
  399. data/lib/stylesheets/html/param.xsl +0 -436
  400. data/lib/stylesheets/html/pi.xml +0 -1113
  401. data/lib/stylesheets/html/pi.xsl +0 -1264
  402. data/lib/stylesheets/html/profile-chunk-code.xsl +0 -614
  403. data/lib/stylesheets/html/profile-chunk.xsl +0 -53
  404. data/lib/stylesheets/html/profile-docbook.xsl +0 -412
  405. data/lib/stylesheets/html/profile-onechunk.xsl +0 -38
  406. data/lib/stylesheets/html/qandaset.xsl +0 -438
  407. data/lib/stylesheets/html/refentry.xsl +0 -301
  408. data/lib/stylesheets/html/sections.xsl +0 -617
  409. data/lib/stylesheets/html/synop.xsl +0 -1556
  410. data/lib/stylesheets/html/table.xsl +0 -1201
  411. data/lib/stylesheets/html/task.xsl +0 -78
  412. data/lib/stylesheets/html/titlepage.templates.xml +0 -708
  413. data/lib/stylesheets/html/titlepage.templates.xsl +0 -3818
  414. data/lib/stylesheets/html/titlepage.xsl +0 -1049
  415. data/lib/stylesheets/html/toc.xsl +0 -352
  416. data/lib/stylesheets/html/verbatim.xsl +0 -411
  417. data/lib/stylesheets/html/xref.xsl +0 -1378
  418. data/lib/stylesheets/htmlhelp/htmlhelp-common.xsl +0 -1108
  419. data/lib/stylesheets/htmlhelp/htmlhelp.xsl +0 -23
  420. data/lib/stylesheets/htmlhelp/profile-htmlhelp-common.xsl +0 -1082
  421. data/lib/stylesheets/htmlhelp/profile-htmlhelp.xsl +0 -23
  422. data/lib/stylesheets/images/annot-close.png +0 -0
  423. data/lib/stylesheets/images/annot-open.png +0 -0
  424. data/lib/stylesheets/images/blank.png +0 -0
  425. data/lib/stylesheets/images/callouts/1.gif +0 -0
  426. data/lib/stylesheets/images/callouts/1.png +0 -0
  427. data/lib/stylesheets/images/callouts/1.svg +0 -15
  428. data/lib/stylesheets/images/callouts/10.gif +0 -0
  429. data/lib/stylesheets/images/callouts/10.png +0 -0
  430. data/lib/stylesheets/images/callouts/10.svg +0 -18
  431. data/lib/stylesheets/images/callouts/11.gif +0 -0
  432. data/lib/stylesheets/images/callouts/11.png +0 -0
  433. data/lib/stylesheets/images/callouts/11.svg +0 -16
  434. data/lib/stylesheets/images/callouts/12.gif +0 -0
  435. data/lib/stylesheets/images/callouts/12.png +0 -0
  436. data/lib/stylesheets/images/callouts/12.svg +0 -18
  437. data/lib/stylesheets/images/callouts/13.gif +0 -0
  438. data/lib/stylesheets/images/callouts/13.png +0 -0
  439. data/lib/stylesheets/images/callouts/13.svg +0 -20
  440. data/lib/stylesheets/images/callouts/14.gif +0 -0
  441. data/lib/stylesheets/images/callouts/14.png +0 -0
  442. data/lib/stylesheets/images/callouts/14.svg +0 -17
  443. data/lib/stylesheets/images/callouts/15.gif +0 -0
  444. data/lib/stylesheets/images/callouts/15.png +0 -0
  445. data/lib/stylesheets/images/callouts/15.svg +0 -19
  446. data/lib/stylesheets/images/callouts/16.svg +0 -20
  447. data/lib/stylesheets/images/callouts/17.svg +0 -17
  448. data/lib/stylesheets/images/callouts/18.svg +0 -21
  449. data/lib/stylesheets/images/callouts/19.svg +0 -20
  450. data/lib/stylesheets/images/callouts/2.gif +0 -0
  451. data/lib/stylesheets/images/callouts/2.png +0 -0
  452. data/lib/stylesheets/images/callouts/2.svg +0 -17
  453. data/lib/stylesheets/images/callouts/20.svg +0 -20
  454. data/lib/stylesheets/images/callouts/21.svg +0 -18
  455. data/lib/stylesheets/images/callouts/22.svg +0 -20
  456. data/lib/stylesheets/images/callouts/23.svg +0 -22
  457. data/lib/stylesheets/images/callouts/24.svg +0 -19
  458. data/lib/stylesheets/images/callouts/25.svg +0 -21
  459. data/lib/stylesheets/images/callouts/26.svg +0 -22
  460. data/lib/stylesheets/images/callouts/27.svg +0 -19
  461. data/lib/stylesheets/images/callouts/28.svg +0 -23
  462. data/lib/stylesheets/images/callouts/29.svg +0 -22
  463. data/lib/stylesheets/images/callouts/3.gif +0 -0
  464. data/lib/stylesheets/images/callouts/3.png +0 -0
  465. data/lib/stylesheets/images/callouts/3.svg +0 -19
  466. data/lib/stylesheets/images/callouts/30.svg +0 -22
  467. data/lib/stylesheets/images/callouts/4.gif +0 -0
  468. data/lib/stylesheets/images/callouts/4.png +0 -0
  469. data/lib/stylesheets/images/callouts/4.svg +0 -16
  470. data/lib/stylesheets/images/callouts/5.gif +0 -0
  471. data/lib/stylesheets/images/callouts/5.png +0 -0
  472. data/lib/stylesheets/images/callouts/5.svg +0 -18
  473. data/lib/stylesheets/images/callouts/6.gif +0 -0
  474. data/lib/stylesheets/images/callouts/6.png +0 -0
  475. data/lib/stylesheets/images/callouts/6.svg +0 -19
  476. data/lib/stylesheets/images/callouts/7.gif +0 -0
  477. data/lib/stylesheets/images/callouts/7.png +0 -0
  478. data/lib/stylesheets/images/callouts/7.svg +0 -16
  479. data/lib/stylesheets/images/callouts/8.gif +0 -0
  480. data/lib/stylesheets/images/callouts/8.png +0 -0
  481. data/lib/stylesheets/images/callouts/8.svg +0 -20
  482. data/lib/stylesheets/images/callouts/9.gif +0 -0
  483. data/lib/stylesheets/images/callouts/9.png +0 -0
  484. data/lib/stylesheets/images/callouts/9.svg +0 -19
  485. data/lib/stylesheets/images/caution.gif +0 -0
  486. data/lib/stylesheets/images/caution.png +0 -0
  487. data/lib/stylesheets/images/caution.svg +0 -25
  488. data/lib/stylesheets/images/caution.tif +0 -0
  489. data/lib/stylesheets/images/colorsvg/caution.svg +0 -141
  490. data/lib/stylesheets/images/colorsvg/home.svg +0 -498
  491. data/lib/stylesheets/images/colorsvg/important.svg +0 -239
  492. data/lib/stylesheets/images/colorsvg/next.svg +0 -338
  493. data/lib/stylesheets/images/colorsvg/note.svg +0 -200
  494. data/lib/stylesheets/images/colorsvg/prev.svg +0 -338
  495. data/lib/stylesheets/images/colorsvg/tip.svg +0 -367
  496. data/lib/stylesheets/images/colorsvg/up.svg +0 -338
  497. data/lib/stylesheets/images/colorsvg/warning.svg +0 -232
  498. data/lib/stylesheets/images/draft.png +0 -0
  499. data/lib/stylesheets/images/home.gif +0 -0
  500. data/lib/stylesheets/images/home.png +0 -0
  501. data/lib/stylesheets/images/home.svg +0 -26
  502. data/lib/stylesheets/images/important.gif +0 -0
  503. data/lib/stylesheets/images/important.png +0 -0
  504. data/lib/stylesheets/images/important.svg +0 -25
  505. data/lib/stylesheets/images/important.tif +0 -0
  506. data/lib/stylesheets/images/next.gif +0 -0
  507. data/lib/stylesheets/images/next.png +0 -0
  508. data/lib/stylesheets/images/next.svg +0 -19
  509. data/lib/stylesheets/images/note.gif +0 -0
  510. data/lib/stylesheets/images/note.png +0 -0
  511. data/lib/stylesheets/images/note.svg +0 -33
  512. data/lib/stylesheets/images/note.tif +0 -0
  513. data/lib/stylesheets/images/prev.gif +0 -0
  514. data/lib/stylesheets/images/prev.png +0 -0
  515. data/lib/stylesheets/images/prev.svg +0 -19
  516. data/lib/stylesheets/images/tip.gif +0 -0
  517. data/lib/stylesheets/images/tip.png +0 -0
  518. data/lib/stylesheets/images/tip.svg +0 -31
  519. data/lib/stylesheets/images/tip.tif +0 -0
  520. data/lib/stylesheets/images/toc-blank.png +0 -0
  521. data/lib/stylesheets/images/toc-minus.png +0 -0
  522. data/lib/stylesheets/images/toc-plus.png +0 -0
  523. data/lib/stylesheets/images/up.gif +0 -0
  524. data/lib/stylesheets/images/up.png +0 -0
  525. data/lib/stylesheets/images/up.svg +0 -19
  526. data/lib/stylesheets/images/warning.gif +0 -0
  527. data/lib/stylesheets/images/warning.png +0 -0
  528. data/lib/stylesheets/images/warning.svg +0 -23
  529. data/lib/stylesheets/images/warning.tif +0 -0
  530. data/lib/stylesheets/install.sh +0 -977
  531. data/lib/stylesheets/javahelp/javahelp.xsl +0 -613
  532. data/lib/stylesheets/javahelp/profile-javahelp.xsl +0 -548
  533. data/lib/stylesheets/lib/lib.xsl +0 -482
  534. data/lib/stylesheets/manpages/ChangeLog.20020917 +0 -195
  535. data/lib/stylesheets/manpages/block.xsl +0 -412
  536. data/lib/stylesheets/manpages/charmap.groff.xsl +0 -6014
  537. data/lib/stylesheets/manpages/docbook.xsl +0 -302
  538. data/lib/stylesheets/manpages/endnotes.xsl +0 -587
  539. data/lib/stylesheets/manpages/html-synop.xsl +0 -1569
  540. data/lib/stylesheets/manpages/info.xsl +0 -801
  541. data/lib/stylesheets/manpages/inline.xsl +0 -221
  542. data/lib/stylesheets/manpages/lists.xsl +0 -606
  543. data/lib/stylesheets/manpages/other.xsl +0 -889
  544. data/lib/stylesheets/manpages/param.xml +0 -3220
  545. data/lib/stylesheets/manpages/param.xsl +0 -195
  546. data/lib/stylesheets/manpages/pi.xml +0 -70
  547. data/lib/stylesheets/manpages/pi.xsl +0 -80
  548. data/lib/stylesheets/manpages/profile-docbook.xsl +0 -282
  549. data/lib/stylesheets/manpages/refentry.xsl +0 -321
  550. data/lib/stylesheets/manpages/synop.xsl +0 -433
  551. data/lib/stylesheets/manpages/table.xsl +0 -633
  552. data/lib/stylesheets/manpages/utility.xsl +0 -556
  553. data/lib/stylesheets/params/abstract.notitle.enabled.xml +0 -22
  554. data/lib/stylesheets/params/abstract.properties.xml +0 -32
  555. data/lib/stylesheets/params/abstract.title.properties.xml +0 -39
  556. data/lib/stylesheets/params/active.toc.xml +0 -29
  557. data/lib/stylesheets/params/ade.extensions.xml +0 -32
  558. data/lib/stylesheets/params/admon.graphics.extension.xml +0 -27
  559. data/lib/stylesheets/params/admon.graphics.path.xml +0 -27
  560. data/lib/stylesheets/params/admon.graphics.xml +0 -29
  561. data/lib/stylesheets/params/admon.style.xml +0 -31
  562. data/lib/stylesheets/params/admon.textlabel.xml +0 -32
  563. data/lib/stylesheets/params/admonition.properties.xml +0 -25
  564. data/lib/stylesheets/params/admonition.title.properties.xml +0 -32
  565. data/lib/stylesheets/params/alignment.xml +0 -41
  566. data/lib/stylesheets/params/annotate.toc.xml +0 -28
  567. data/lib/stylesheets/params/annotation.css.xml +0 -71
  568. data/lib/stylesheets/params/annotation.graphic.close.xml +0 -31
  569. data/lib/stylesheets/params/annotation.graphic.open.xml +0 -28
  570. data/lib/stylesheets/params/annotation.js.xml +0 -33
  571. data/lib/stylesheets/params/annotation.support.xml +0 -29
  572. data/lib/stylesheets/params/appendix.autolabel.xml +0 -73
  573. data/lib/stylesheets/params/arbortext.extensions.xml +0 -30
  574. data/lib/stylesheets/params/article.appendix.title.properties.xml +0 -33
  575. data/lib/stylesheets/params/author.othername.in.middle.xml +0 -31
  576. data/lib/stylesheets/params/autolayout-file.xml +0 -29
  577. data/lib/stylesheets/params/autotoc.label.in.hyperlink.xml +0 -29
  578. data/lib/stylesheets/params/autotoc.label.separator.xml +0 -27
  579. data/lib/stylesheets/params/axf.extensions.xml +0 -33
  580. data/lib/stylesheets/params/banner.before.navigation.xml +0 -25
  581. data/lib/stylesheets/params/base.dir.xml +0 -29
  582. data/lib/stylesheets/params/biblioentry.item.separator.xml +0 -26
  583. data/lib/stylesheets/params/biblioentry.properties.xml +0 -28
  584. data/lib/stylesheets/params/bibliography.collection.xml +0 -104
  585. data/lib/stylesheets/params/bibliography.numbered.xml +0 -27
  586. data/lib/stylesheets/params/bibliography.style.xml +0 -35
  587. data/lib/stylesheets/params/blockquote.properties.xml +0 -34
  588. data/lib/stylesheets/params/blurb.on.titlepage.enabled.xml +0 -31
  589. data/lib/stylesheets/params/body.attributes.xml +0 -31
  590. data/lib/stylesheets/params/body.bg.color.xml +0 -28
  591. data/lib/stylesheets/params/body.end.indent.xml +0 -37
  592. data/lib/stylesheets/params/body.font.family.xml +0 -32
  593. data/lib/stylesheets/params/body.font.master.xml +0 -30
  594. data/lib/stylesheets/params/body.font.size.xml +0 -31
  595. data/lib/stylesheets/params/body.margin.bottom.xml +0 -29
  596. data/lib/stylesheets/params/body.margin.top.xml +0 -28
  597. data/lib/stylesheets/params/body.start.indent.xml +0 -64
  598. data/lib/stylesheets/params/bookmarks.collapse.xml +0 -31
  599. data/lib/stylesheets/params/bridgehead.in.toc.xml +0 -28
  600. data/lib/stylesheets/params/bullet.image.xml +0 -28
  601. data/lib/stylesheets/params/callout.defaultcolumn.xml +0 -30
  602. data/lib/stylesheets/params/callout.graphics.extension.xml +0 -33
  603. data/lib/stylesheets/params/callout.graphics.number.limit.xml +0 -34
  604. data/lib/stylesheets/params/callout.graphics.path.xml +0 -31
  605. data/lib/stylesheets/params/callout.graphics.xml +0 -30
  606. data/lib/stylesheets/params/callout.icon.size.xml +0 -28
  607. data/lib/stylesheets/params/callout.list.table.xml +0 -32
  608. data/lib/stylesheets/params/callout.unicode.font.xml +0 -29
  609. data/lib/stylesheets/params/callout.unicode.number.limit.xml +0 -35
  610. data/lib/stylesheets/params/callout.unicode.start.character.xml +0 -33
  611. data/lib/stylesheets/params/callout.unicode.xml +0 -26
  612. data/lib/stylesheets/params/callouts.extension.xml +0 -30
  613. data/lib/stylesheets/params/chapter.autolabel.xml +0 -71
  614. data/lib/stylesheets/params/chunk.append.xml +0 -30
  615. data/lib/stylesheets/params/chunk.first.sections.xml +0 -31
  616. data/lib/stylesheets/params/chunk.quietly.xml +0 -30
  617. data/lib/stylesheets/params/chunk.section.depth.xml +0 -27
  618. data/lib/stylesheets/params/chunk.sections.xml +0 -30
  619. data/lib/stylesheets/params/chunk.separate.lots.xml +0 -36
  620. data/lib/stylesheets/params/chunk.toc.xml +0 -30
  621. data/lib/stylesheets/params/chunk.tocs.and.lots.has.title.xml +0 -28
  622. data/lib/stylesheets/params/chunk.tocs.and.lots.xml +0 -32
  623. data/lib/stylesheets/params/chunker.output.cdata-section-elements.xml +0 -30
  624. data/lib/stylesheets/params/chunker.output.doctype-public.xml +0 -31
  625. data/lib/stylesheets/params/chunker.output.doctype-system.xml +0 -31
  626. data/lib/stylesheets/params/chunker.output.encoding.xml +0 -31
  627. data/lib/stylesheets/params/chunker.output.indent.xml +0 -30
  628. data/lib/stylesheets/params/chunker.output.media-type.xml +0 -35
  629. data/lib/stylesheets/params/chunker.output.method.xml +0 -32
  630. data/lib/stylesheets/params/chunker.output.omit-xml-declaration.xml +0 -30
  631. data/lib/stylesheets/params/chunker.output.standalone.xml +0 -31
  632. data/lib/stylesheets/params/citerefentry.link.xml +0 -29
  633. data/lib/stylesheets/params/collect.xref.targets.xml +0 -33
  634. data/lib/stylesheets/params/column.count.back.xml +0 -27
  635. data/lib/stylesheets/params/column.count.body.xml +0 -27
  636. data/lib/stylesheets/params/column.count.front.xml +0 -27
  637. data/lib/stylesheets/params/column.count.index.xml +0 -27
  638. data/lib/stylesheets/params/column.count.lot.xml +0 -28
  639. data/lib/stylesheets/params/column.count.titlepage.xml +0 -27
  640. data/lib/stylesheets/params/column.gap.back.xml +0 -28
  641. data/lib/stylesheets/params/column.gap.body.xml +0 -28
  642. data/lib/stylesheets/params/column.gap.front.xml +0 -28
  643. data/lib/stylesheets/params/column.gap.index.xml +0 -28
  644. data/lib/stylesheets/params/column.gap.lot.xml +0 -28
  645. data/lib/stylesheets/params/column.gap.titlepage.xml +0 -29
  646. data/lib/stylesheets/params/compact.list.item.spacing.xml +0 -28
  647. data/lib/stylesheets/params/component.label.includes.part.label.xml +0 -39
  648. data/lib/stylesheets/params/component.title.properties.xml +0 -40
  649. data/lib/stylesheets/params/component.titlepage.properties.xml +0 -33
  650. data/lib/stylesheets/params/contrib.inline.enabled.xml +0 -26
  651. data/lib/stylesheets/params/crop.mark.bleed.xml +0 -28
  652. data/lib/stylesheets/params/crop.mark.offset.xml +0 -28
  653. data/lib/stylesheets/params/crop.mark.width.xml +0 -28
  654. data/lib/stylesheets/params/crop.marks.xml +0 -28
  655. data/lib/stylesheets/params/css.decoration.xml +0 -33
  656. data/lib/stylesheets/params/css.stylesheet.dir.xml +0 -33
  657. data/lib/stylesheets/params/css.stylesheet.xml +0 -29
  658. data/lib/stylesheets/params/current.docid.xml +0 -27
  659. data/lib/stylesheets/params/currentpage.marker.xml +0 -25
  660. data/lib/stylesheets/params/custom.css.source.xml +0 -119
  661. data/lib/stylesheets/params/default.float.class.xml +0 -34
  662. data/lib/stylesheets/params/default.image.width.xml +0 -30
  663. data/lib/stylesheets/params/default.table.frame.xml +0 -28
  664. data/lib/stylesheets/params/default.table.rules.xml +0 -76
  665. data/lib/stylesheets/params/default.table.width.xml +0 -26
  666. data/lib/stylesheets/params/default.units.xml +0 -37
  667. data/lib/stylesheets/params/dingbat.font.family.xml +0 -33
  668. data/lib/stylesheets/params/docbook.css.link.xml +0 -42
  669. data/lib/stylesheets/params/docbook.css.source.xml +0 -83
  670. data/lib/stylesheets/params/double.sided.xml +0 -31
  671. data/lib/stylesheets/params/draft.mode.xml +0 -36
  672. data/lib/stylesheets/params/draft.watermark.image.xml +0 -27
  673. data/lib/stylesheets/params/dry-run.xml +0 -27
  674. data/lib/stylesheets/params/dynamic.toc.xml +0 -29
  675. data/lib/stylesheets/params/ebnf.assignment.xml +0 -39
  676. data/lib/stylesheets/params/ebnf.statement.terminator.xml +0 -32
  677. data/lib/stylesheets/params/ebnf.table.bgcolor.xml +0 -30
  678. data/lib/stylesheets/params/ebnf.table.border.xml +0 -26
  679. data/lib/stylesheets/params/eclipse.autolabel.xml +0 -28
  680. data/lib/stylesheets/params/eclipse.plugin.id.xml +0 -28
  681. data/lib/stylesheets/params/eclipse.plugin.name.xml +0 -27
  682. data/lib/stylesheets/params/eclipse.plugin.provider.xml +0 -27
  683. data/lib/stylesheets/params/editedby.enabled.xml +0 -27
  684. data/lib/stylesheets/params/email.delimiters.enabled.xml +0 -34
  685. data/lib/stylesheets/params/email.mailto.enabled.xml +0 -29
  686. data/lib/stylesheets/params/emphasis.propagates.style.xml +0 -26
  687. data/lib/stylesheets/params/entry.propagates.style.xml +0 -30
  688. data/lib/stylesheets/params/epub.autolabel.xml +0 -28
  689. data/lib/stylesheets/params/equation.number.properties.xml +0 -28
  690. data/lib/stylesheets/params/equation.properties.xml +0 -27
  691. data/lib/stylesheets/params/example.properties.xml +0 -27
  692. data/lib/stylesheets/params/exsl.node.set.available.xml +0 -44
  693. data/lib/stylesheets/params/feedback.href.xml +0 -28
  694. data/lib/stylesheets/params/feedback.link.text.xml +0 -28
  695. data/lib/stylesheets/params/feedback.with.ids.xml +0 -27
  696. data/lib/stylesheets/params/figure.properties.xml +0 -27
  697. data/lib/stylesheets/params/filename-prefix.xml +0 -28
  698. data/lib/stylesheets/params/firstterm.only.link.xml +0 -29
  699. data/lib/stylesheets/params/foil.properties.xml +0 -37
  700. data/lib/stylesheets/params/foil.subtitle.properties.xml +0 -36
  701. data/lib/stylesheets/params/foil.title.master.xml +0 -29
  702. data/lib/stylesheets/params/foil.title.size.xml +0 -32
  703. data/lib/stylesheets/params/foilgroup.properties.xml +0 -31
  704. data/lib/stylesheets/params/foilgroup.toc.xml +0 -29
  705. data/lib/stylesheets/params/footer.column.widths.xml +0 -80
  706. data/lib/stylesheets/params/footer.content.properties.xml +0 -34
  707. data/lib/stylesheets/params/footer.hr.xml +0 -26
  708. data/lib/stylesheets/params/footer.rule.xml +0 -27
  709. data/lib/stylesheets/params/footer.table.height.xml +0 -32
  710. data/lib/stylesheets/params/footer.table.properties.xml +0 -30
  711. data/lib/stylesheets/params/footers.on.blank.pages.xml +0 -27
  712. data/lib/stylesheets/params/footnote.font.size.xml +0 -28
  713. data/lib/stylesheets/params/footnote.mark.properties.xml +0 -41
  714. data/lib/stylesheets/params/footnote.number.format.xml +0 -33
  715. data/lib/stylesheets/params/footnote.number.symbols.xml +0 -39
  716. data/lib/stylesheets/params/footnote.properties.xml +0 -43
  717. data/lib/stylesheets/params/footnote.sep.leader.properties.xml +0 -39
  718. data/lib/stylesheets/params/fop.extensions.xml +0 -36
  719. data/lib/stylesheets/params/fop1.extensions.xml +0 -34
  720. data/lib/stylesheets/params/formal.object.properties.xml +0 -36
  721. data/lib/stylesheets/params/formal.procedures.xml +0 -28
  722. data/lib/stylesheets/params/formal.title.placement.xml +0 -41
  723. data/lib/stylesheets/params/formal.title.properties.xml +0 -34
  724. data/lib/stylesheets/params/funcsynopsis.decoration.xml +0 -30
  725. data/lib/stylesheets/params/funcsynopsis.style.xml +0 -31
  726. data/lib/stylesheets/params/function.parens.xml +0 -29
  727. data/lib/stylesheets/params/generate.css.header.xml +0 -40
  728. data/lib/stylesheets/params/generate.id.attributes.xml +0 -59
  729. data/lib/stylesheets/params/generate.index.xml +0 -25
  730. data/lib/stylesheets/params/generate.legalnotice.link.xml +0 -72
  731. data/lib/stylesheets/params/generate.manifest.xml +0 -27
  732. data/lib/stylesheets/params/generate.meta.abstract.xml +0 -29
  733. data/lib/stylesheets/params/generate.revhistory.link.xml +0 -50
  734. data/lib/stylesheets/params/generate.section.toc.level.xml +0 -35
  735. data/lib/stylesheets/params/generate.toc.xml +0 -108
  736. data/lib/stylesheets/params/glossary.as.blocks.xml +0 -38
  737. data/lib/stylesheets/params/glossary.collection.xml +0 -252
  738. data/lib/stylesheets/params/glossary.sort.xml +0 -32
  739. data/lib/stylesheets/params/glossdef.block.properties.xml +0 -32
  740. data/lib/stylesheets/params/glossdef.list.properties.xml +0 -30
  741. data/lib/stylesheets/params/glossentry.list.item.properties.xml +0 -32
  742. data/lib/stylesheets/params/glossentry.show.acronym.xml +0 -37
  743. data/lib/stylesheets/params/glosslist.as.blocks.xml +0 -27
  744. data/lib/stylesheets/params/glossterm.auto.link.xml +0 -33
  745. data/lib/stylesheets/params/glossterm.block.properties.xml +0 -35
  746. data/lib/stylesheets/params/glossterm.list.properties.xml +0 -30
  747. data/lib/stylesheets/params/glossterm.separation.xml +0 -31
  748. data/lib/stylesheets/params/glossterm.width.xml +0 -28
  749. data/lib/stylesheets/params/graphic.default.extension.xml +0 -29
  750. data/lib/stylesheets/params/graphical.admonition.properties.xml +0 -42
  751. data/lib/stylesheets/params/graphics.dir.xml +0 -33
  752. data/lib/stylesheets/params/graphicsize.extension.xml +0 -30
  753. data/lib/stylesheets/params/graphicsize.use.img.src.path.xml +0 -30
  754. data/lib/stylesheets/params/header.column.widths.xml +0 -80
  755. data/lib/stylesheets/params/header.content.properties.xml +0 -34
  756. data/lib/stylesheets/params/header.hr.xml +0 -26
  757. data/lib/stylesheets/params/header.rule.xml +0 -27
  758. data/lib/stylesheets/params/header.table.height.xml +0 -32
  759. data/lib/stylesheets/params/header.table.properties.xml +0 -30
  760. data/lib/stylesheets/params/headers.on.blank.pages.xml +0 -27
  761. data/lib/stylesheets/params/hidetoc.image.xml +0 -29
  762. data/lib/stylesheets/params/highlight.default.language.xml +0 -27
  763. data/lib/stylesheets/params/highlight.source.xml +0 -82
  764. data/lib/stylesheets/params/highlight.xslthl.config.xml +0 -33
  765. data/lib/stylesheets/params/home.image.xml +0 -27
  766. data/lib/stylesheets/params/html.append.xml +0 -30
  767. data/lib/stylesheets/params/html.base.xml +0 -30
  768. data/lib/stylesheets/params/html.cellpadding.xml +0 -29
  769. data/lib/stylesheets/params/html.cellspacing.xml +0 -29
  770. data/lib/stylesheets/params/html.cleanup.xml +0 -34
  771. data/lib/stylesheets/params/html.ext.xml +0 -29
  772. data/lib/stylesheets/params/html.extra.head.links.xml +0 -31
  773. data/lib/stylesheets/params/html.head.legalnotice.link.multiple.xml +0 -44
  774. data/lib/stylesheets/params/html.head.legalnotice.link.types.xml +0 -75
  775. data/lib/stylesheets/params/html.longdesc.link.xml +0 -39
  776. data/lib/stylesheets/params/html.longdesc.xml +0 -28
  777. data/lib/stylesheets/params/html.stylesheet.type.xml +0 -26
  778. data/lib/stylesheets/params/html.stylesheet.xml +0 -36
  779. data/lib/stylesheets/params/htmlhelp.alias.file.xml +0 -27
  780. data/lib/stylesheets/params/htmlhelp.autolabel.xml +0 -28
  781. data/lib/stylesheets/params/htmlhelp.button.back.xml +0 -27
  782. data/lib/stylesheets/params/htmlhelp.button.forward.xml +0 -27
  783. data/lib/stylesheets/params/htmlhelp.button.hideshow.xml +0 -27
  784. data/lib/stylesheets/params/htmlhelp.button.home.url.xml +0 -27
  785. data/lib/stylesheets/params/htmlhelp.button.home.xml +0 -27
  786. data/lib/stylesheets/params/htmlhelp.button.jump1.title.xml +0 -27
  787. data/lib/stylesheets/params/htmlhelp.button.jump1.url.xml +0 -27
  788. data/lib/stylesheets/params/htmlhelp.button.jump1.xml +0 -23
  789. data/lib/stylesheets/params/htmlhelp.button.jump2.title.xml +0 -27
  790. data/lib/stylesheets/params/htmlhelp.button.jump2.url.xml +0 -27
  791. data/lib/stylesheets/params/htmlhelp.button.jump2.xml +0 -27
  792. data/lib/stylesheets/params/htmlhelp.button.locate.xml +0 -28
  793. data/lib/stylesheets/params/htmlhelp.button.next.xml +0 -27
  794. data/lib/stylesheets/params/htmlhelp.button.options.xml +0 -28
  795. data/lib/stylesheets/params/htmlhelp.button.prev.xml +0 -28
  796. data/lib/stylesheets/params/htmlhelp.button.print.xml +0 -28
  797. data/lib/stylesheets/params/htmlhelp.button.refresh.xml +0 -27
  798. data/lib/stylesheets/params/htmlhelp.button.stop.xml +0 -28
  799. data/lib/stylesheets/params/htmlhelp.button.zoom.xml +0 -28
  800. data/lib/stylesheets/params/htmlhelp.chm.xml +0 -27
  801. data/lib/stylesheets/params/htmlhelp.default.topic.xml +0 -37
  802. data/lib/stylesheets/params/htmlhelp.display.progress.xml +0 -28
  803. data/lib/stylesheets/params/htmlhelp.encoding.xml +0 -28
  804. data/lib/stylesheets/params/htmlhelp.enhanced.decompilation.xml +0 -27
  805. data/lib/stylesheets/params/htmlhelp.enumerate.images.xml +0 -28
  806. data/lib/stylesheets/params/htmlhelp.force.map.and.alias.xml +0 -26
  807. data/lib/stylesheets/params/htmlhelp.hhc.binary.xml +0 -29
  808. data/lib/stylesheets/params/htmlhelp.hhc.folders.instead.books.xml +0 -31
  809. data/lib/stylesheets/params/htmlhelp.hhc.section.depth.xml +0 -27
  810. data/lib/stylesheets/params/htmlhelp.hhc.show.root.xml +0 -29
  811. data/lib/stylesheets/params/htmlhelp.hhc.width.xml +0 -28
  812. data/lib/stylesheets/params/htmlhelp.hhc.xml +0 -27
  813. data/lib/stylesheets/params/htmlhelp.hhk.xml +0 -27
  814. data/lib/stylesheets/params/htmlhelp.hhp.tail.xml +0 -28
  815. data/lib/stylesheets/params/htmlhelp.hhp.window.xml +0 -28
  816. data/lib/stylesheets/params/htmlhelp.hhp.windows.xml +0 -29
  817. data/lib/stylesheets/params/htmlhelp.hhp.xml +0 -28
  818. data/lib/stylesheets/params/htmlhelp.map.file.xml +0 -25
  819. data/lib/stylesheets/params/htmlhelp.only.xml +0 -32
  820. data/lib/stylesheets/params/htmlhelp.remember.window.position.xml +0 -27
  821. data/lib/stylesheets/params/htmlhelp.show.advanced.search.xml +0 -28
  822. data/lib/stylesheets/params/htmlhelp.show.favorities.xml +0 -28
  823. data/lib/stylesheets/params/htmlhelp.show.menu.xml +0 -28
  824. data/lib/stylesheets/params/htmlhelp.show.toolbar.text.xml +0 -28
  825. data/lib/stylesheets/params/htmlhelp.title.xml +0 -28
  826. data/lib/stylesheets/params/htmlhelp.use.hhk.xml +0 -28
  827. data/lib/stylesheets/params/htmlhelp.window.geometry.xml +0 -30
  828. data/lib/stylesheets/params/hyphenate.verbatim.characters.xml +0 -30
  829. data/lib/stylesheets/params/hyphenate.verbatim.xml +0 -45
  830. data/lib/stylesheets/params/hyphenate.xml +0 -29
  831. data/lib/stylesheets/params/id.warnings.xml +0 -25
  832. data/lib/stylesheets/params/ignore.image.scaling.xml +0 -28
  833. data/lib/stylesheets/params/img.src.path.xml +0 -40
  834. data/lib/stylesheets/params/index.div.title.properties.xml +0 -39
  835. data/lib/stylesheets/params/index.entry.properties.xml +0 -33
  836. data/lib/stylesheets/params/index.links.to.section.xml +0 -76
  837. data/lib/stylesheets/params/index.method.xml +0 -162
  838. data/lib/stylesheets/params/index.number.separator.xml +0 -54
  839. data/lib/stylesheets/params/index.on.role.xml +0 -48
  840. data/lib/stylesheets/params/index.on.type.xml +0 -52
  841. data/lib/stylesheets/params/index.page.number.properties.xml +0 -31
  842. data/lib/stylesheets/params/index.prefer.titleabbrev.xml +0 -29
  843. data/lib/stylesheets/params/index.preferred.page.properties.xml +0 -32
  844. data/lib/stylesheets/params/index.range.separator.xml +0 -57
  845. data/lib/stylesheets/params/index.term.separator.xml +0 -54
  846. data/lib/stylesheets/params/informal.object.properties.xml +0 -29
  847. data/lib/stylesheets/params/informalequation.properties.xml +0 -27
  848. data/lib/stylesheets/params/informalexample.properties.xml +0 -27
  849. data/lib/stylesheets/params/informalfigure.properties.xml +0 -27
  850. data/lib/stylesheets/params/informaltable.properties.xml +0 -32
  851. data/lib/stylesheets/params/inherit.keywords.xml +0 -31
  852. data/lib/stylesheets/params/insert.link.page.number.xml +0 -69
  853. data/lib/stylesheets/params/insert.olink.page.number.xml +0 -83
  854. data/lib/stylesheets/params/insert.olink.pdf.frag.xml +0 -68
  855. data/lib/stylesheets/params/insert.xref.page.number.xml +0 -60
  856. data/lib/stylesheets/params/itemizedlist.label.properties.xml +0 -26
  857. data/lib/stylesheets/params/itemizedlist.label.width.xml +0 -28
  858. data/lib/stylesheets/params/itemizedlist.properties.xml +0 -23
  859. data/lib/stylesheets/params/javahelp.encoding.xml +0 -31
  860. data/lib/stylesheets/params/keep.relative.image.uris.xml +0 -34
  861. data/lib/stylesheets/params/keyboard.nav.xml +0 -29
  862. data/lib/stylesheets/params/l10n.gentext.default.language.xml +0 -30
  863. data/lib/stylesheets/params/l10n.gentext.language.xml +0 -33
  864. data/lib/stylesheets/params/l10n.gentext.use.xref.language.xml +0 -53
  865. data/lib/stylesheets/params/l10n.lang.value.rfc.compliant.xml +0 -57
  866. data/lib/stylesheets/params/label.from.part.xml +0 -38
  867. data/lib/stylesheets/params/line-height.xml +0 -27
  868. data/lib/stylesheets/params/linenumbering.everyNth.xml +0 -29
  869. data/lib/stylesheets/params/linenumbering.extension.xml +0 -30
  870. data/lib/stylesheets/params/linenumbering.separator.xml +0 -30
  871. data/lib/stylesheets/params/linenumbering.width.xml +0 -29
  872. data/lib/stylesheets/params/link.mailto.url.xml +0 -29
  873. data/lib/stylesheets/params/list.block.properties.xml +0 -25
  874. data/lib/stylesheets/params/list.block.spacing.xml +0 -29
  875. data/lib/stylesheets/params/list.item.spacing.xml +0 -26
  876. data/lib/stylesheets/params/make.clean.html.xml +0 -51
  877. data/lib/stylesheets/params/make.graphic.viewport.xml +0 -35
  878. data/lib/stylesheets/params/make.index.markup.xml +0 -73
  879. data/lib/stylesheets/params/make.single.year.ranges.xml +0 -28
  880. data/lib/stylesheets/params/make.valid.html.xml +0 -35
  881. data/lib/stylesheets/params/make.year.ranges.xml +0 -32
  882. data/lib/stylesheets/params/man.authors.section.enabled.xml +0 -46
  883. data/lib/stylesheets/params/man.base.url.for.relative.links.xml +0 -76
  884. data/lib/stylesheets/params/man.break.after.slash.xml +0 -46
  885. data/lib/stylesheets/params/man.charmap.enabled.xml +0 -55
  886. data/lib/stylesheets/params/man.charmap.subset.profile.english.xml +0 -80
  887. data/lib/stylesheets/params/man.charmap.subset.profile.xml +0 -297
  888. data/lib/stylesheets/params/man.charmap.uri.xml +0 -42
  889. data/lib/stylesheets/params/man.charmap.use.subset.xml +0 -80
  890. data/lib/stylesheets/params/man.copyright.section.enabled.xml +0 -46
  891. data/lib/stylesheets/params/man.endnotes.are.numbered.xml +0 -106
  892. data/lib/stylesheets/params/man.endnotes.list.enabled.xml +0 -105
  893. data/lib/stylesheets/params/man.endnotes.list.heading.xml +0 -36
  894. data/lib/stylesheets/params/man.font.funcprototype.xml +0 -30
  895. data/lib/stylesheets/params/man.font.funcsynopsisinfo.xml +0 -30
  896. data/lib/stylesheets/params/man.font.links.xml +0 -64
  897. data/lib/stylesheets/params/man.font.table.headings.xml +0 -30
  898. data/lib/stylesheets/params/man.font.table.title.xml +0 -30
  899. data/lib/stylesheets/params/man.funcsynopsis.style.xml +0 -26
  900. data/lib/stylesheets/params/man.hyphenate.computer.inlines.xml +0 -53
  901. data/lib/stylesheets/params/man.hyphenate.filenames.xml +0 -47
  902. data/lib/stylesheets/params/man.hyphenate.urls.xml +0 -46
  903. data/lib/stylesheets/params/man.hyphenate.xml +0 -59
  904. data/lib/stylesheets/params/man.indent.blurbs.xml +0 -33
  905. data/lib/stylesheets/params/man.indent.lists.xml +0 -35
  906. data/lib/stylesheets/params/man.indent.refsect.xml +0 -70
  907. data/lib/stylesheets/params/man.indent.verbatims.xml +0 -33
  908. data/lib/stylesheets/params/man.indent.width.xml +0 -39
  909. data/lib/stylesheets/params/man.justify.xml +0 -52
  910. data/lib/stylesheets/params/man.output.base.dir.xml +0 -39
  911. data/lib/stylesheets/params/man.output.better.ps.enabled.xml +0 -61
  912. data/lib/stylesheets/params/man.output.encoding.xml +0 -53
  913. data/lib/stylesheets/params/man.output.in.separate.dir.xml +0 -32
  914. data/lib/stylesheets/params/man.output.lang.in.name.enabled.xml +0 -50
  915. data/lib/stylesheets/params/man.output.manifest.enabled.xml +0 -27
  916. data/lib/stylesheets/params/man.output.manifest.filename.xml +0 -29
  917. data/lib/stylesheets/params/man.output.quietly.xml +0 -37
  918. data/lib/stylesheets/params/man.output.subdirs.enabled.xml +0 -40
  919. data/lib/stylesheets/params/man.segtitle.suppress.xml +0 -28
  920. data/lib/stylesheets/params/man.string.subst.map.local.post.xml +0 -34
  921. data/lib/stylesheets/params/man.string.subst.map.local.pre.xml +0 -34
  922. data/lib/stylesheets/params/man.string.subst.map.xml +0 -162
  923. data/lib/stylesheets/params/man.subheading.divider.enabled.xml +0 -37
  924. data/lib/stylesheets/params/man.subheading.divider.xml +0 -37
  925. data/lib/stylesheets/params/man.table.footnotes.divider.xml +0 -29
  926. data/lib/stylesheets/params/man.th.extra1.suppress.xml +0 -32
  927. data/lib/stylesheets/params/man.th.extra2.max.length.xml +0 -43
  928. data/lib/stylesheets/params/man.th.extra2.suppress.xml +0 -44
  929. data/lib/stylesheets/params/man.th.extra3.max.length.xml +0 -42
  930. data/lib/stylesheets/params/man.th.extra3.suppress.xml +0 -34
  931. data/lib/stylesheets/params/man.th.title.max.length.xml +0 -63
  932. data/lib/stylesheets/params/manifest.in.base.dir.xml +0 -29
  933. data/lib/stylesheets/params/manifest.xml +0 -29
  934. data/lib/stylesheets/params/manual.toc.xml +0 -29
  935. data/lib/stylesheets/params/margin.note.float.type.xml +0 -77
  936. data/lib/stylesheets/params/margin.note.properties.xml +0 -54
  937. data/lib/stylesheets/params/margin.note.title.properties.xml +0 -32
  938. data/lib/stylesheets/params/margin.note.width.xml +0 -35
  939. data/lib/stylesheets/params/marker.section.level.xml +0 -50
  940. data/lib/stylesheets/params/menuchoice.menu.separator.xml +0 -42
  941. data/lib/stylesheets/params/menuchoice.separator.xml +0 -32
  942. data/lib/stylesheets/params/minus.image.xml +0 -29
  943. data/lib/stylesheets/params/monospace.font.family.xml +0 -29
  944. data/lib/stylesheets/params/monospace.properties.xml +0 -38
  945. data/lib/stylesheets/params/monospace.verbatim.font.width.xml +0 -40
  946. data/lib/stylesheets/params/monospace.verbatim.properties.xml +0 -27
  947. data/lib/stylesheets/params/multiframe.bottom.bgcolor.xml +0 -28
  948. data/lib/stylesheets/params/multiframe.navigation.height.xml +0 -28
  949. data/lib/stylesheets/params/multiframe.top.bgcolor.xml +0 -28
  950. data/lib/stylesheets/params/multiframe.xml +0 -31
  951. data/lib/stylesheets/params/nav.separator.xml +0 -28
  952. data/lib/stylesheets/params/nav.table.summary.xml +0 -27
  953. data/lib/stylesheets/params/navbgcolor.xml +0 -26
  954. data/lib/stylesheets/params/navbodywidth.xml +0 -26
  955. data/lib/stylesheets/params/navig.graphics.extension.xml +0 -28
  956. data/lib/stylesheets/params/navig.graphics.path.xml +0 -30
  957. data/lib/stylesheets/params/navig.graphics.xml +0 -31
  958. data/lib/stylesheets/params/navig.showtitles.xml +0 -32
  959. data/lib/stylesheets/params/navtocwidth.xml +0 -26
  960. data/lib/stylesheets/params/next.image.xml +0 -27
  961. data/lib/stylesheets/params/no.home.image.xml +0 -27
  962. data/lib/stylesheets/params/no.next.image.xml +0 -27
  963. data/lib/stylesheets/params/no.prev.image.xml +0 -27
  964. data/lib/stylesheets/params/no.toc.image.xml +0 -27
  965. data/lib/stylesheets/params/no.up.image.xml +0 -27
  966. data/lib/stylesheets/params/nominal.image.depth.xml +0 -27
  967. data/lib/stylesheets/params/nominal.image.width.xml +0 -43
  968. data/lib/stylesheets/params/nominal.table.width.xml +0 -30
  969. data/lib/stylesheets/params/nongraphical.admonition.properties.xml +0 -41
  970. data/lib/stylesheets/params/normal.para.spacing.xml +0 -26
  971. data/lib/stylesheets/params/olink.base.uri.xml +0 -35
  972. data/lib/stylesheets/params/olink.debug.xml +0 -36
  973. data/lib/stylesheets/params/olink.doctitle.xml +0 -146
  974. data/lib/stylesheets/params/olink.fragid.xml +0 -23
  975. data/lib/stylesheets/params/olink.lang.fallback.sequence.xml +0 -83
  976. data/lib/stylesheets/params/olink.outline.ext.xml +0 -28
  977. data/lib/stylesheets/params/olink.properties.xml +0 -33
  978. data/lib/stylesheets/params/olink.pubid.xml +0 -27
  979. data/lib/stylesheets/params/olink.resolver.xml +0 -23
  980. data/lib/stylesheets/params/olink.sysid.xml +0 -27
  981. data/lib/stylesheets/params/orderedlist.label.properties.xml +0 -26
  982. data/lib/stylesheets/params/orderedlist.label.width.xml +0 -28
  983. data/lib/stylesheets/params/orderedlist.properties.xml +0 -24
  984. data/lib/stylesheets/params/othercredit.like.author.enabled.xml +0 -31
  985. data/lib/stylesheets/params/output-root.xml +0 -28
  986. data/lib/stylesheets/params/output.indent.xml +0 -32
  987. data/lib/stylesheets/params/overlay.js.xml +0 -28
  988. data/lib/stylesheets/params/overlay.logo.xml +0 -28
  989. data/lib/stylesheets/params/overlay.xml +0 -32
  990. data/lib/stylesheets/params/page.height.portrait.xml +0 -69
  991. data/lib/stylesheets/params/page.height.xml +0 -37
  992. data/lib/stylesheets/params/page.margin.bottom.xml +0 -29
  993. data/lib/stylesheets/params/page.margin.inner.xml +0 -56
  994. data/lib/stylesheets/params/page.margin.outer.xml +0 -53
  995. data/lib/stylesheets/params/page.margin.top.xml +0 -28
  996. data/lib/stylesheets/params/page.orientation.xml +0 -32
  997. data/lib/stylesheets/params/page.width.portrait.xml +0 -67
  998. data/lib/stylesheets/params/page.width.xml +0 -36
  999. data/lib/stylesheets/params/pages.template.xml +0 -29
  1000. data/lib/stylesheets/params/paper.type.xml +0 -73
  1001. data/lib/stylesheets/params/para.propagates.style.xml +0 -29
  1002. data/lib/stylesheets/params/part.autolabel.xml +0 -73
  1003. data/lib/stylesheets/params/passivetex.extensions.xml +0 -37
  1004. data/lib/stylesheets/params/pgwide.properties.xml +0 -52
  1005. data/lib/stylesheets/params/phrase.propagates.style.xml +0 -29
  1006. data/lib/stylesheets/params/pixels.per.inch.xml +0 -31
  1007. data/lib/stylesheets/params/plus.image.xml +0 -29
  1008. data/lib/stylesheets/params/points.per.em.xml +0 -29
  1009. data/lib/stylesheets/params/preface.autolabel.xml +0 -71
  1010. data/lib/stylesheets/params/prefer.internal.olink.xml +0 -78
  1011. data/lib/stylesheets/params/preferred.mediaobject.role.xml +0 -40
  1012. data/lib/stylesheets/params/prev.image.xml +0 -27
  1013. data/lib/stylesheets/params/procedure.properties.xml +0 -29
  1014. data/lib/stylesheets/params/process.empty.source.toc.xml +0 -39
  1015. data/lib/stylesheets/params/process.source.toc.xml +0 -39
  1016. data/lib/stylesheets/params/profile.arch.xml +0 -39
  1017. data/lib/stylesheets/params/profile.attribute.xml +0 -34
  1018. data/lib/stylesheets/params/profile.audience.xml +0 -38
  1019. data/lib/stylesheets/params/profile.condition.xml +0 -38
  1020. data/lib/stylesheets/params/profile.conformance.xml +0 -38
  1021. data/lib/stylesheets/params/profile.lang.xml +0 -38
  1022. data/lib/stylesheets/params/profile.os.xml +0 -38
  1023. data/lib/stylesheets/params/profile.revision.xml +0 -38
  1024. data/lib/stylesheets/params/profile.revisionflag.xml +0 -38
  1025. data/lib/stylesheets/params/profile.role.xml +0 -54
  1026. data/lib/stylesheets/params/profile.security.xml +0 -38
  1027. data/lib/stylesheets/params/profile.separator.xml +0 -27
  1028. data/lib/stylesheets/params/profile.status.xml +0 -38
  1029. data/lib/stylesheets/params/profile.userlevel.xml +0 -38
  1030. data/lib/stylesheets/params/profile.value.xml +0 -41
  1031. data/lib/stylesheets/params/profile.vendor.xml +0 -38
  1032. data/lib/stylesheets/params/profile.wordsize.xml +0 -38
  1033. data/lib/stylesheets/params/punct.honorific.xml +0 -28
  1034. data/lib/stylesheets/params/qanda.defaultlabel.xml +0 -86
  1035. data/lib/stylesheets/params/qanda.in.toc.xml +0 -34
  1036. data/lib/stylesheets/params/qanda.inherit.numeration.xml +0 -30
  1037. data/lib/stylesheets/params/qanda.nested.in.toc.xml +0 -29
  1038. data/lib/stylesheets/params/qanda.title.level1.properties.xml +0 -32
  1039. data/lib/stylesheets/params/qanda.title.level2.properties.xml +0 -32
  1040. data/lib/stylesheets/params/qanda.title.level3.properties.xml +0 -32
  1041. data/lib/stylesheets/params/qanda.title.level4.properties.xml +0 -32
  1042. data/lib/stylesheets/params/qanda.title.level5.properties.xml +0 -32
  1043. data/lib/stylesheets/params/qanda.title.level6.properties.xml +0 -34
  1044. data/lib/stylesheets/params/qanda.title.properties.xml +0 -37
  1045. data/lib/stylesheets/params/qandadiv.autolabel.xml +0 -26
  1046. data/lib/stylesheets/params/rebuild-all.xml +0 -33
  1047. data/lib/stylesheets/params/refclass.suppress.xml +0 -28
  1048. data/lib/stylesheets/params/refentry.date.profile.enabled.xml +0 -46
  1049. data/lib/stylesheets/params/refentry.date.profile.xml +0 -38
  1050. data/lib/stylesheets/params/refentry.generate.name.xml +0 -33
  1051. data/lib/stylesheets/params/refentry.generate.title.xml +0 -33
  1052. data/lib/stylesheets/params/refentry.manual.fallback.profile.xml +0 -48
  1053. data/lib/stylesheets/params/refentry.manual.profile.enabled.xml +0 -47
  1054. data/lib/stylesheets/params/refentry.manual.profile.xml +0 -72
  1055. data/lib/stylesheets/params/refentry.meta.get.quietly.xml +0 -37
  1056. data/lib/stylesheets/params/refentry.pagebreak.xml +0 -33
  1057. data/lib/stylesheets/params/refentry.separator.xml +0 -29
  1058. data/lib/stylesheets/params/refentry.source.fallback.profile.xml +0 -49
  1059. data/lib/stylesheets/params/refentry.source.name.profile.enabled.xml +0 -48
  1060. data/lib/stylesheets/params/refentry.source.name.profile.xml +0 -89
  1061. data/lib/stylesheets/params/refentry.source.name.suppress.xml +0 -42
  1062. data/lib/stylesheets/params/refentry.title.properties.xml +0 -59
  1063. data/lib/stylesheets/params/refentry.version.profile.enabled.xml +0 -47
  1064. data/lib/stylesheets/params/refentry.version.profile.xml +0 -41
  1065. data/lib/stylesheets/params/refentry.version.suppress.xml +0 -43
  1066. data/lib/stylesheets/params/refentry.xref.manvolnum.xml +0 -31
  1067. data/lib/stylesheets/params/reference.autolabel.xml +0 -67
  1068. data/lib/stylesheets/params/region.after.extent.xml +0 -29
  1069. data/lib/stylesheets/params/region.before.extent.xml +0 -29
  1070. data/lib/stylesheets/params/revhistory.table.cell.properties.xml +0 -28
  1071. data/lib/stylesheets/params/revhistory.table.properties.xml +0 -28
  1072. data/lib/stylesheets/params/revhistory.title.properties.xml +0 -28
  1073. data/lib/stylesheets/params/root.filename.xml +0 -29
  1074. data/lib/stylesheets/params/root.properties.xml +0 -46
  1075. data/lib/stylesheets/params/rootid.xml +0 -33
  1076. data/lib/stylesheets/params/runinhead.default.title.end.punct.xml +0 -27
  1077. data/lib/stylesheets/params/runinhead.title.end.punct.xml +0 -32
  1078. data/lib/stylesheets/params/running.foot.properties.xml +0 -34
  1079. data/lib/stylesheets/params/sans.font.family.xml +0 -29
  1080. data/lib/stylesheets/params/saxon.callouts.xml +0 -30
  1081. data/lib/stylesheets/params/saxon.character.representation.xml +0 -38
  1082. data/lib/stylesheets/params/saxon.linenumbering.xml +0 -32
  1083. data/lib/stylesheets/params/saxon.tablecolumns.xml +0 -30
  1084. data/lib/stylesheets/params/script.dir.xml +0 -33
  1085. data/lib/stylesheets/params/section.autolabel.max.depth.xml +0 -32
  1086. data/lib/stylesheets/params/section.autolabel.xml +0 -26
  1087. data/lib/stylesheets/params/section.container.element.xml +0 -62
  1088. data/lib/stylesheets/params/section.label.includes.component.label.xml +0 -27
  1089. data/lib/stylesheets/params/section.level1.properties.xml +0 -43
  1090. data/lib/stylesheets/params/section.level2.properties.xml +0 -43
  1091. data/lib/stylesheets/params/section.level3.properties.xml +0 -43
  1092. data/lib/stylesheets/params/section.level4.properties.xml +0 -43
  1093. data/lib/stylesheets/params/section.level5.properties.xml +0 -43
  1094. data/lib/stylesheets/params/section.level6.properties.xml +0 -43
  1095. data/lib/stylesheets/params/section.properties.xml +0 -35
  1096. data/lib/stylesheets/params/section.title.level1.properties.xml +0 -32
  1097. data/lib/stylesheets/params/section.title.level2.properties.xml +0 -33
  1098. data/lib/stylesheets/params/section.title.level3.properties.xml +0 -32
  1099. data/lib/stylesheets/params/section.title.level4.properties.xml +0 -32
  1100. data/lib/stylesheets/params/section.title.level5.properties.xml +0 -32
  1101. data/lib/stylesheets/params/section.title.level6.properties.xml +0 -33
  1102. data/lib/stylesheets/params/section.title.properties.xml +0 -39
  1103. data/lib/stylesheets/params/segmentedlist.as.table.xml +0 -28
  1104. data/lib/stylesheets/params/sequential.links.xml +0 -25
  1105. data/lib/stylesheets/params/shade.verbatim.style.xml +0 -36
  1106. data/lib/stylesheets/params/shade.verbatim.xml +0 -30
  1107. data/lib/stylesheets/params/show.comments.xml +0 -32
  1108. data/lib/stylesheets/params/show.foil.number.xml +0 -28
  1109. data/lib/stylesheets/params/show.revisionflag.xml +0 -42
  1110. data/lib/stylesheets/params/showtoc.image.xml +0 -29
  1111. data/lib/stylesheets/params/side.float.properties.xml +0 -50
  1112. data/lib/stylesheets/params/sidebar.float.type.xml +0 -90
  1113. data/lib/stylesheets/params/sidebar.float.width.xml +0 -35
  1114. data/lib/stylesheets/params/sidebar.properties.xml +0 -42
  1115. data/lib/stylesheets/params/sidebar.title.properties.xml +0 -32
  1116. data/lib/stylesheets/params/simplesect.in.toc.xml +0 -26
  1117. data/lib/stylesheets/params/slide.font.family.xml +0 -31
  1118. data/lib/stylesheets/params/slide.title.font.family.xml +0 -31
  1119. data/lib/stylesheets/params/slides.js.xml +0 -28
  1120. data/lib/stylesheets/params/slides.properties.xml +0 -31
  1121. data/lib/stylesheets/params/spacing.paras.xml +0 -30
  1122. data/lib/stylesheets/params/speakernote.properties.xml +0 -32
  1123. data/lib/stylesheets/params/subscript.properties.xml +0 -29
  1124. data/lib/stylesheets/params/superscript.properties.xml +0 -29
  1125. data/lib/stylesheets/params/suppress.footer.navigation.xml +0 -26
  1126. data/lib/stylesheets/params/suppress.header.navigation.xml +0 -27
  1127. data/lib/stylesheets/params/suppress.homepage.title.xml +0 -25
  1128. data/lib/stylesheets/params/suppress.navigation.xml +0 -28
  1129. data/lib/stylesheets/params/symbol.font.family.xml +0 -45
  1130. data/lib/stylesheets/params/table.borders.with.css.xml +0 -28
  1131. data/lib/stylesheets/params/table.cell.border.color.xml +0 -39
  1132. data/lib/stylesheets/params/table.cell.border.style.xml +0 -42
  1133. data/lib/stylesheets/params/table.cell.border.thickness.xml +0 -35
  1134. data/lib/stylesheets/params/table.cell.padding.xml +0 -32
  1135. data/lib/stylesheets/params/table.entry.padding.xml +0 -27
  1136. data/lib/stylesheets/params/table.footnote.number.format.xml +0 -33
  1137. data/lib/stylesheets/params/table.footnote.number.symbols.xml +0 -39
  1138. data/lib/stylesheets/params/table.footnote.properties.xml +0 -39
  1139. data/lib/stylesheets/params/table.frame.border.color.xml +0 -28
  1140. data/lib/stylesheets/params/table.frame.border.style.xml +0 -37
  1141. data/lib/stylesheets/params/table.frame.border.thickness.xml +0 -27
  1142. data/lib/stylesheets/params/table.properties.xml +0 -34
  1143. data/lib/stylesheets/params/table.spacer.image.xml +0 -26
  1144. data/lib/stylesheets/params/table.table.properties.xml +0 -36
  1145. data/lib/stylesheets/params/tablecolumns.extension.xml +0 -30
  1146. data/lib/stylesheets/params/target.database.document.xml +0 -37
  1147. data/lib/stylesheets/params/targets.filename.xml +0 -32
  1148. data/lib/stylesheets/params/template.xml +0 -27
  1149. data/lib/stylesheets/params/tex.math.delims.xml +0 -47
  1150. data/lib/stylesheets/params/tex.math.file.xml +0 -42
  1151. data/lib/stylesheets/params/tex.math.in.alt.xml +0 -76
  1152. data/lib/stylesheets/params/text.home.xml +0 -27
  1153. data/lib/stylesheets/params/text.next.xml +0 -27
  1154. data/lib/stylesheets/params/text.prev.xml +0 -27
  1155. data/lib/stylesheets/params/text.toc.xml +0 -27
  1156. data/lib/stylesheets/params/text.up.xml +0 -27
  1157. data/lib/stylesheets/params/textbgcolor.xml +0 -26
  1158. data/lib/stylesheets/params/textdata.default.encoding.xml +0 -32
  1159. data/lib/stylesheets/params/textinsert.extension.xml +0 -62
  1160. data/lib/stylesheets/params/title.font.family.xml +0 -33
  1161. data/lib/stylesheets/params/title.margin.left.xml +0 -65
  1162. data/lib/stylesheets/params/titlefoil.html.xml +0 -27
  1163. data/lib/stylesheets/params/toc.bg.color.xml +0 -27
  1164. data/lib/stylesheets/params/toc.blank.graphic.xml +0 -28
  1165. data/lib/stylesheets/params/toc.blank.image.xml +0 -27
  1166. data/lib/stylesheets/params/toc.blank.text.xml +0 -27
  1167. data/lib/stylesheets/params/toc.hide.show.xml +0 -33
  1168. data/lib/stylesheets/params/toc.html.xml +0 -27
  1169. data/lib/stylesheets/params/toc.image.xml +0 -27
  1170. data/lib/stylesheets/params/toc.indent.width.xml +0 -34
  1171. data/lib/stylesheets/params/toc.line.properties.xml +0 -44
  1172. data/lib/stylesheets/params/toc.list.type.xml +0 -30
  1173. data/lib/stylesheets/params/toc.margin.properties.xml +0 -33
  1174. data/lib/stylesheets/params/toc.max.depth.xml +0 -25
  1175. data/lib/stylesheets/params/toc.pointer.graphic.xml +0 -28
  1176. data/lib/stylesheets/params/toc.pointer.image.xml +0 -27
  1177. data/lib/stylesheets/params/toc.pointer.text.xml +0 -27
  1178. data/lib/stylesheets/params/toc.row.height.xml +0 -33
  1179. data/lib/stylesheets/params/toc.section.depth.xml +0 -28
  1180. data/lib/stylesheets/params/toc.spacer.graphic.xml +0 -28
  1181. data/lib/stylesheets/params/toc.spacer.image.xml +0 -27
  1182. data/lib/stylesheets/params/toc.spacer.text.xml +0 -27
  1183. data/lib/stylesheets/params/toc.width.xml +0 -28
  1184. data/lib/stylesheets/params/ua.js.xml +0 -28
  1185. data/lib/stylesheets/params/ulink.footnotes.xml +0 -34
  1186. data/lib/stylesheets/params/ulink.hyphenate.chars.xml +0 -37
  1187. data/lib/stylesheets/params/ulink.hyphenate.xml +0 -35
  1188. data/lib/stylesheets/params/ulink.show.xml +0 -37
  1189. data/lib/stylesheets/params/ulink.target.xml +0 -29
  1190. data/lib/stylesheets/params/up.image.xml +0 -27
  1191. data/lib/stylesheets/params/use.embed.for.svg.xml +0 -33
  1192. data/lib/stylesheets/params/use.extensions.xml +0 -31
  1193. data/lib/stylesheets/params/use.id.as.filename.xml +0 -30
  1194. data/lib/stylesheets/params/use.id.function.xml +0 -32
  1195. data/lib/stylesheets/params/use.local.olink.style.xml +0 -28
  1196. data/lib/stylesheets/params/use.role.as.xrefstyle.xml +0 -93
  1197. data/lib/stylesheets/params/use.role.for.mediaobject.xml +0 -56
  1198. data/lib/stylesheets/params/use.svg.xml +0 -30
  1199. data/lib/stylesheets/params/variablelist.as.blocks.xml +0 -62
  1200. data/lib/stylesheets/params/variablelist.as.table.xml +0 -54
  1201. data/lib/stylesheets/params/variablelist.max.termlength.xml +0 -46
  1202. data/lib/stylesheets/params/variablelist.term.break.after.xml +0 -39
  1203. data/lib/stylesheets/params/variablelist.term.properties.xml +0 -29
  1204. data/lib/stylesheets/params/variablelist.term.separator.xml +0 -40
  1205. data/lib/stylesheets/params/verbatim.properties.xml +0 -38
  1206. data/lib/stylesheets/params/wordml.template.xml +0 -29
  1207. data/lib/stylesheets/params/writing.mode.xml +0 -83
  1208. data/lib/stylesheets/params/xbCollapsibleLists.js.xml +0 -28
  1209. data/lib/stylesheets/params/xbDOM.js.xml +0 -28
  1210. data/lib/stylesheets/params/xbLibrary.js.xml +0 -28
  1211. data/lib/stylesheets/params/xbStyle.js.xml +0 -28
  1212. data/lib/stylesheets/params/xep.extensions.xml +0 -31
  1213. data/lib/stylesheets/params/xep.index.item.properties.xml +0 -36
  1214. data/lib/stylesheets/params/xref.label-page.separator.xml +0 -38
  1215. data/lib/stylesheets/params/xref.label-title.separator.xml +0 -36
  1216. data/lib/stylesheets/params/xref.properties.xml +0 -29
  1217. data/lib/stylesheets/params/xref.title-page.separator.xml +0 -36
  1218. data/lib/stylesheets/params/xref.with.number.and.title.xml +0 -30
  1219. data/lib/stylesheets/profiling/profile-mode.xsl +0 -239
  1220. data/lib/stylesheets/profiling/profile.xsl +0 -58
  1221. data/lib/stylesheets/profiling/strip-attributes.xsl +0 -27
  1222. data/lib/stylesheets/profiling/xsl2profile.xsl +0 -159
  1223. data/lib/stylesheets/roundtrip/blocks-spec.xml +0 -11
  1224. data/lib/stylesheets/roundtrip/blocks2dbk.dtd +0 -76
  1225. data/lib/stylesheets/roundtrip/blocks2dbk.xsl +0 -1734
  1226. data/lib/stylesheets/roundtrip/dbk2ooo.xsl +0 -178
  1227. data/lib/stylesheets/roundtrip/dbk2pages.xsl +0 -442
  1228. data/lib/stylesheets/roundtrip/dbk2wordml.xsl +0 -402
  1229. data/lib/stylesheets/roundtrip/dbk2wp.xsl +0 -1376
  1230. data/lib/stylesheets/roundtrip/normalise-common.xsl +0 -39
  1231. data/lib/stylesheets/roundtrip/normalise2sections.xsl +0 -1270
  1232. data/lib/stylesheets/roundtrip/pages2normalise.xsl +0 -352
  1233. data/lib/stylesheets/roundtrip/param.xml +0 -105
  1234. data/lib/stylesheets/roundtrip/param.xsl +0 -20
  1235. data/lib/stylesheets/roundtrip/sections-spec.xml +0 -38
  1236. data/lib/stylesheets/roundtrip/sections2blocks.xsl +0 -263
  1237. data/lib/stylesheets/roundtrip/specifications.xml +0 -1420
  1238. data/lib/stylesheets/roundtrip/template-pages.xml +0 -2
  1239. data/lib/stylesheets/roundtrip/template.dot +0 -0
  1240. data/lib/stylesheets/roundtrip/template.xml +0 -3
  1241. data/lib/stylesheets/roundtrip/wordml2normalise.xsl +0 -446
  1242. data/lib/stylesheets/slides/browser/CTOCWidget.js +0 -169
  1243. data/lib/stylesheets/slides/browser/overlay.js +0 -142
  1244. data/lib/stylesheets/slides/browser/slides-default.css +0 -9
  1245. data/lib/stylesheets/slides/browser/slides-frames.css +0 -73
  1246. data/lib/stylesheets/slides/browser/slides-plain.css +0 -1
  1247. data/lib/stylesheets/slides/browser/slides-table.css +0 -41
  1248. data/lib/stylesheets/slides/browser/slides-w3c.css +0 -1
  1249. data/lib/stylesheets/slides/browser/slides.css +0 -119
  1250. data/lib/stylesheets/slides/browser/slides.js +0 -120
  1251. data/lib/stylesheets/slides/browser/ua.js +0 -135
  1252. data/lib/stylesheets/slides/browser/xbCollapsibleLists.js +0 -537
  1253. data/lib/stylesheets/slides/browser/xbDOM.js +0 -374
  1254. data/lib/stylesheets/slides/browser/xbDebug.js +0 -311
  1255. data/lib/stylesheets/slides/browser/xbLibrary.js +0 -80
  1256. data/lib/stylesheets/slides/browser/xbStyle-css.js +0 -791
  1257. data/lib/stylesheets/slides/browser/xbStyle-nn4.js +0 -485
  1258. data/lib/stylesheets/slides/browser/xbStyle-not-supported.js +0 -77
  1259. data/lib/stylesheets/slides/browser/xbStyle.js +0 -295
  1260. data/lib/stylesheets/slides/fo/param.xml +0 -356
  1261. data/lib/stylesheets/slides/fo/param.xsl +0 -74
  1262. data/lib/stylesheets/slides/fo/plain-titlepage.xml +0 -79
  1263. data/lib/stylesheets/slides/fo/plain-titlepage.xsl +0 -187
  1264. data/lib/stylesheets/slides/fo/plain.xsl +0 -528
  1265. data/lib/stylesheets/slides/graphics/active/arr-next.png +0 -0
  1266. data/lib/stylesheets/slides/graphics/active/arr-prev.png +0 -0
  1267. data/lib/stylesheets/slides/graphics/active/but-fforward.png +0 -0
  1268. data/lib/stylesheets/slides/graphics/active/but-info.png +0 -0
  1269. data/lib/stylesheets/slides/graphics/active/but-next.png +0 -0
  1270. data/lib/stylesheets/slides/graphics/active/but-prev.png +0 -0
  1271. data/lib/stylesheets/slides/graphics/active/but-rewind.png +0 -0
  1272. data/lib/stylesheets/slides/graphics/active/nav-home.png +0 -0
  1273. data/lib/stylesheets/slides/graphics/active/nav-next.png +0 -0
  1274. data/lib/stylesheets/slides/graphics/active/nav-prev.png +0 -0
  1275. data/lib/stylesheets/slides/graphics/active/nav-toc.png +0 -0
  1276. data/lib/stylesheets/slides/graphics/active/nav-up.png +0 -0
  1277. data/lib/stylesheets/slides/graphics/active/w3c-next.png +0 -0
  1278. data/lib/stylesheets/slides/graphics/active/w3c-prev.png +0 -0
  1279. data/lib/stylesheets/slides/graphics/active/w3c-toc.png +0 -0
  1280. data/lib/stylesheets/slides/graphics/arrow.gif +0 -0
  1281. data/lib/stylesheets/slides/graphics/blank.gif +0 -0
  1282. data/lib/stylesheets/slides/graphics/blank.png +0 -0
  1283. data/lib/stylesheets/slides/graphics/hidetoc.gif +0 -0
  1284. data/lib/stylesheets/slides/graphics/inactive/but-fforward.png +0 -0
  1285. data/lib/stylesheets/slides/graphics/inactive/but-info.png +0 -0
  1286. data/lib/stylesheets/slides/graphics/inactive/but-next.png +0 -0
  1287. data/lib/stylesheets/slides/graphics/inactive/but-prev.png +0 -0
  1288. data/lib/stylesheets/slides/graphics/inactive/but-rewind.png +0 -0
  1289. data/lib/stylesheets/slides/graphics/inactive/nav-home.png +0 -0
  1290. data/lib/stylesheets/slides/graphics/inactive/nav-next.png +0 -0
  1291. data/lib/stylesheets/slides/graphics/inactive/nav-prev.png +0 -0
  1292. data/lib/stylesheets/slides/graphics/inactive/nav-toc.png +0 -0
  1293. data/lib/stylesheets/slides/graphics/inactive/nav-up.png +0 -0
  1294. data/lib/stylesheets/slides/graphics/inactive/w3c-next.png +0 -0
  1295. data/lib/stylesheets/slides/graphics/inactive/w3c-prev.png +0 -0
  1296. data/lib/stylesheets/slides/graphics/inactive/w3c-toc.png +0 -0
  1297. data/lib/stylesheets/slides/graphics/plus.gif +0 -0
  1298. data/lib/stylesheets/slides/graphics/pointer.png +0 -0
  1299. data/lib/stylesheets/slides/graphics/showtoc.gif +0 -0
  1300. data/lib/stylesheets/slides/graphics/toc/bullet.png +0 -0
  1301. data/lib/stylesheets/slides/graphics/toc/closed.png +0 -0
  1302. data/lib/stylesheets/slides/graphics/toc/open.png +0 -0
  1303. data/lib/stylesheets/slides/html/css.xsl +0 -46
  1304. data/lib/stylesheets/slides/html/default.xsl +0 -261
  1305. data/lib/stylesheets/slides/html/flat.xsl +0 -70
  1306. data/lib/stylesheets/slides/html/frames.xsl +0 -2016
  1307. data/lib/stylesheets/slides/html/graphics.xsl +0 -151
  1308. data/lib/stylesheets/slides/html/jscript.xsl +0 -127
  1309. data/lib/stylesheets/slides/html/param.xml +0 -1376
  1310. data/lib/stylesheets/slides/html/param.xsl +0 -68
  1311. data/lib/stylesheets/slides/html/plain.xsl +0 -472
  1312. data/lib/stylesheets/slides/html/slides-common.xsl +0 -1541
  1313. data/lib/stylesheets/slides/html/tables.xsl +0 -336
  1314. data/lib/stylesheets/slides/html/vslides.xsl +0 -667
  1315. data/lib/stylesheets/slides/html/w3c.xsl +0 -376
  1316. data/lib/stylesheets/slides/htmlhelp/htmlhelp.xsl +0 -89
  1317. data/lib/stylesheets/slides/keynote/default.xsl +0 -600
  1318. data/lib/stylesheets/slides/keynote/xsltsl/cmp.xsl +0 -348
  1319. data/lib/stylesheets/slides/keynote/xsltsl/date-time.xsl +0 -1524
  1320. data/lib/stylesheets/slides/keynote/xsltsl/example.xsl +0 -90
  1321. data/lib/stylesheets/slides/keynote/xsltsl/markup.xsl +0 -789
  1322. data/lib/stylesheets/slides/keynote/xsltsl/math.xsl +0 -704
  1323. data/lib/stylesheets/slides/keynote/xsltsl/node.xsl +0 -229
  1324. data/lib/stylesheets/slides/keynote/xsltsl/stdlib.xsl +0 -340
  1325. data/lib/stylesheets/slides/keynote/xsltsl/string.xsl +0 -1233
  1326. data/lib/stylesheets/slides/keynote/xsltsl/svg.xsl +0 -177
  1327. data/lib/stylesheets/slides/keynote/xsltsl/uri.xsl +0 -580
  1328. data/lib/stylesheets/slides/svg/default.xsl +0 -686
  1329. data/lib/stylesheets/slides/xhtml/css.xsl +0 -47
  1330. data/lib/stylesheets/slides/xhtml/default.xsl +0 -246
  1331. data/lib/stylesheets/slides/xhtml/flat.xsl +0 -71
  1332. data/lib/stylesheets/slides/xhtml/frames.xsl +0 -1982
  1333. data/lib/stylesheets/slides/xhtml/graphics.xsl +0 -152
  1334. data/lib/stylesheets/slides/xhtml/jscript.xsl +0 -128
  1335. data/lib/stylesheets/slides/xhtml/param.xsl +0 -70
  1336. data/lib/stylesheets/slides/xhtml/plain.xsl +0 -470
  1337. data/lib/stylesheets/slides/xhtml/slides-common.xsl +0 -1534
  1338. data/lib/stylesheets/slides/xhtml/tables.xsl +0 -334
  1339. data/lib/stylesheets/slides/xhtml/vslides.xsl +0 -652
  1340. data/lib/stylesheets/slides/xhtml/w3c.xsl +0 -358
  1341. data/lib/stylesheets/template/titlepage.xml +0 -478
  1342. data/lib/stylesheets/template/titlepage.xsl +0 -1355
  1343. data/lib/stylesheets/tests/refentry.007.ns.xml +0 -325
  1344. data/lib/stylesheets/tests/refentry.007.xml +0 -340
  1345. data/lib/stylesheets/tools/bin/docbook-xsl-update +0 -53
  1346. data/lib/stylesheets/tools/make/Makefile.DocBook +0 -698
  1347. data/lib/stylesheets/tools/make/Makefile.combine +0 -182
  1348. data/lib/stylesheets/tools/make/Makefile.docParam +0 -59
  1349. data/lib/stylesheets/webhelp/LICENSE +0 -1
  1350. data/lib/stylesheets/webhelp/build.properties +0 -43
  1351. data/lib/stylesheets/webhelp/build.xml +0 -112
  1352. data/lib/stylesheets/webhelp/docs/common/css/positioning.css +0 -109
  1353. data/lib/stylesheets/webhelp/docs/common/images/header-bg.gif +0 -0
  1354. data/lib/stylesheets/webhelp/docs/common/images/highlight-blue.gif +0 -0
  1355. data/lib/stylesheets/webhelp/docs/common/images/highlight-yellow.gif +0 -0
  1356. data/lib/stylesheets/webhelp/docs/common/images/loading.gif +0 -0
  1357. data/lib/stylesheets/webhelp/docs/common/images/logo.png +0 -0
  1358. data/lib/stylesheets/webhelp/docs/common/images/showHideTreeIcons.png +0 -0
  1359. data/lib/stylesheets/webhelp/docs/common/jquery/jquery-1.4.2.min.js +0 -154
  1360. data/lib/stylesheets/webhelp/docs/common/jquery/jquery-ui-1.8.2.custom.min.js +0 -321
  1361. data/lib/stylesheets/webhelp/docs/common/jquery/jquery.cookie.js +0 -93
  1362. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-anim_basic_16x16.gif +0 -0
  1363. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  1364. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
  1365. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
  1366. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
  1367. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  1368. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
  1369. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
  1370. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
  1371. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_217bc0_256x240.png +0 -0
  1372. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_2e83ff_256x240.png +0 -0
  1373. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_469bdd_256x240.png +0 -0
  1374. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_6da8d5_256x240.png +0 -0
  1375. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
  1376. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
  1377. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/images/ui-icons_f9bd01_256x240.png +0 -0
  1378. data/lib/stylesheets/webhelp/docs/common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css +0 -398
  1379. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/file.gif +0 -0
  1380. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder-closed.gif +0 -0
  1381. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder-closed2.gif +0 -0
  1382. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder.gif +0 -0
  1383. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/folder2.gif +0 -0
  1384. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/minus.gif +0 -0
  1385. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/plus.gif +0 -0
  1386. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-black-line.gif +0 -0
  1387. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-black.gif +0 -0
  1388. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-default-line.gif +0 -0
  1389. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-default.gif +0 -0
  1390. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-famfamfam-line.gif +0 -0
  1391. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-famfamfam.gif +0 -0
  1392. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-gray-line.gif +0 -0
  1393. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-gray.gif +0 -0
  1394. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-red-line.gif +0 -0
  1395. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/images/treeview-red.gif +0 -0
  1396. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.async.js +0 -72
  1397. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.css +0 -85
  1398. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.js +0 -255
  1399. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.min.js +0 -16
  1400. data/lib/stylesheets/webhelp/docs/common/jquery/treeview/jquery.treeview.pack.js +0 -16
  1401. data/lib/stylesheets/webhelp/docs/common/main.js +0 -161
  1402. data/lib/stylesheets/webhelp/docs/content/ch01.html +0 -61
  1403. data/lib/stylesheets/webhelp/docs/content/ch02.html +0 -32
  1404. data/lib/stylesheets/webhelp/docs/content/ch02s01.html +0 -117
  1405. data/lib/stylesheets/webhelp/docs/content/ch02s02.html +0 -102
  1406. data/lib/stylesheets/webhelp/docs/content/ch02s03.html +0 -36
  1407. data/lib/stylesheets/webhelp/docs/content/ch02s04.html +0 -42
  1408. data/lib/stylesheets/webhelp/docs/content/ch03.html +0 -37
  1409. data/lib/stylesheets/webhelp/docs/content/ch03s01.html +0 -62
  1410. data/lib/stylesheets/webhelp/docs/content/ch03s02.html +0 -124
  1411. data/lib/stylesheets/webhelp/docs/content/index.html +0 -71
  1412. data/lib/stylesheets/webhelp/docs/content/search/htmlFileInfoList.js +0 -10
  1413. data/lib/stylesheets/webhelp/docs/content/search/htmlFileList.js +0 -11
  1414. data/lib/stylesheets/webhelp/docs/content/search/index-1.js +0 -224
  1415. data/lib/stylesheets/webhelp/docs/content/search/index-2.js +0 -223
  1416. data/lib/stylesheets/webhelp/docs/content/search/index-3.js +0 -221
  1417. data/lib/stylesheets/webhelp/docs/content/search/nwSearchFnt.js +0 -513
  1418. data/lib/stylesheets/webhelp/docs/content/search/stemmers/en_stemmer.js +0 -187
  1419. data/lib/stylesheets/webhelp/docs/favicon.ico +0 -0
  1420. data/lib/stylesheets/webhelp/docs/index.html +0 -13
  1421. data/lib/stylesheets/webhelp/docsrc/readme.xml +0 -891
  1422. data/lib/stylesheets/webhelp/template/common/css/positioning.css +0 -109
  1423. data/lib/stylesheets/webhelp/template/common/images/header-bg.gif +0 -0
  1424. data/lib/stylesheets/webhelp/template/common/images/highlight-blue.gif +0 -0
  1425. data/lib/stylesheets/webhelp/template/common/images/highlight-yellow.gif +0 -0
  1426. data/lib/stylesheets/webhelp/template/common/images/loading.gif +0 -0
  1427. data/lib/stylesheets/webhelp/template/common/images/logo.png +0 -0
  1428. data/lib/stylesheets/webhelp/template/common/images/showHideTreeIcons.png +0 -0
  1429. data/lib/stylesheets/webhelp/template/common/jquery/jquery-1.4.2.min.js +0 -154
  1430. data/lib/stylesheets/webhelp/template/common/jquery/jquery-ui-1.8.2.custom.min.js +0 -321
  1431. data/lib/stylesheets/webhelp/template/common/jquery/jquery.cookie.js +0 -93
  1432. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-anim_basic_16x16.gif +0 -0
  1433. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  1434. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
  1435. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
  1436. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
  1437. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  1438. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
  1439. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
  1440. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
  1441. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_217bc0_256x240.png +0 -0
  1442. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_2e83ff_256x240.png +0 -0
  1443. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_469bdd_256x240.png +0 -0
  1444. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_6da8d5_256x240.png +0 -0
  1445. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
  1446. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
  1447. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/images/ui-icons_f9bd01_256x240.png +0 -0
  1448. data/lib/stylesheets/webhelp/template/common/jquery/theme-redmond/jquery-ui-1.8.2.custom.css +0 -398
  1449. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/file.gif +0 -0
  1450. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder-closed.gif +0 -0
  1451. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder-closed2.gif +0 -0
  1452. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder.gif +0 -0
  1453. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/folder2.gif +0 -0
  1454. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/minus.gif +0 -0
  1455. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/plus.gif +0 -0
  1456. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-black-line.gif +0 -0
  1457. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-black.gif +0 -0
  1458. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-default-line.gif +0 -0
  1459. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-default.gif +0 -0
  1460. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-famfamfam-line.gif +0 -0
  1461. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-famfamfam.gif +0 -0
  1462. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-gray-line.gif +0 -0
  1463. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-gray.gif +0 -0
  1464. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-red-line.gif +0 -0
  1465. data/lib/stylesheets/webhelp/template/common/jquery/treeview/images/treeview-red.gif +0 -0
  1466. data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.async.js +0 -72
  1467. data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.css +0 -85
  1468. data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.js +0 -255
  1469. data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.min.js +0 -16
  1470. data/lib/stylesheets/webhelp/template/common/jquery/treeview/jquery.treeview.pack.js +0 -16
  1471. data/lib/stylesheets/webhelp/template/common/main.js +0 -161
  1472. data/lib/stylesheets/webhelp/template/content/search/default.props +0 -1
  1473. data/lib/stylesheets/webhelp/template/content/search/en-us.props +0 -45
  1474. data/lib/stylesheets/webhelp/template/content/search/es-es.props +0 -179
  1475. data/lib/stylesheets/webhelp/template/content/search/ja-jp.props +0 -1
  1476. data/lib/stylesheets/webhelp/template/content/search/nwSearchFnt.js +0 -513
  1477. data/lib/stylesheets/webhelp/template/content/search/punctuation.props +0 -31
  1478. data/lib/stylesheets/webhelp/template/content/search/stemmers/de_stemmer.js +0 -247
  1479. data/lib/stylesheets/webhelp/template/content/search/stemmers/en_stemmer.js +0 -187
  1480. data/lib/stylesheets/webhelp/template/content/search/stemmers/fr_stemmer.js +0 -299
  1481. data/lib/stylesheets/webhelp/template/favicon.ico +0 -0
  1482. data/lib/stylesheets/webhelp/xsl/webhelp.xsl +0 -772
  1483. data/lib/stylesheets/website/autolayout.xsl +0 -258
  1484. data/lib/stylesheets/website/chunk-common.xsl +0 -227
  1485. data/lib/stylesheets/website/chunk-tabular.xsl +0 -12
  1486. data/lib/stylesheets/website/chunk-website.xsl +0 -12
  1487. data/lib/stylesheets/website/head.xsl +0 -316
  1488. data/lib/stylesheets/website/makefile-dep.xsl +0 -143
  1489. data/lib/stylesheets/website/olink.xsl +0 -297
  1490. data/lib/stylesheets/website/param.xml +0 -788
  1491. data/lib/stylesheets/website/param.xsl +0 -53
  1492. data/lib/stylesheets/website/rss.xsl +0 -143
  1493. data/lib/stylesheets/website/tabular.xsl +0 -213
  1494. data/lib/stylesheets/website/toc-tabular.xsl +0 -480
  1495. data/lib/stylesheets/website/toc.xsl +0 -286
  1496. data/lib/stylesheets/website/website-common.xsl +0 -821
  1497. data/lib/stylesheets/website/website-targets.xsl +0 -27
  1498. data/lib/stylesheets/website/website.xsl +0 -132
  1499. data/lib/stylesheets/website/xbel.xsl +0 -114
  1500. data/lib/stylesheets/xhtml-1_1/admon.xsl +0 -135
  1501. data/lib/stylesheets/xhtml-1_1/annotations.xsl +0 -160
  1502. data/lib/stylesheets/xhtml-1_1/autoidx-kimber.xsl +0 -140
  1503. data/lib/stylesheets/xhtml-1_1/autoidx-kosek.xsl +0 -110
  1504. data/lib/stylesheets/xhtml-1_1/autoidx-ng.xsl +0 -23
  1505. data/lib/stylesheets/xhtml-1_1/autoidx.xsl +0 -682
  1506. data/lib/stylesheets/xhtml-1_1/autotoc.xsl +0 -665
  1507. data/lib/stylesheets/xhtml-1_1/biblio-iso690.xsl +0 -1302
  1508. data/lib/stylesheets/xhtml-1_1/biblio.xsl +0 -1242
  1509. data/lib/stylesheets/xhtml-1_1/block.xsl +0 -537
  1510. data/lib/stylesheets/xhtml-1_1/callout.xsl +0 -189
  1511. data/lib/stylesheets/xhtml-1_1/changebars.xsl +0 -80
  1512. data/lib/stylesheets/xhtml-1_1/chunk-changebars.xsl +0 -97
  1513. data/lib/stylesheets/xhtml-1_1/chunk-code.xsl +0 -644
  1514. data/lib/stylesheets/xhtml-1_1/chunk-common.xsl +0 -1562
  1515. data/lib/stylesheets/xhtml-1_1/chunk.xsl +0 -53
  1516. data/lib/stylesheets/xhtml-1_1/chunker.xsl +0 -303
  1517. data/lib/stylesheets/xhtml-1_1/chunkfast.xsl +0 -70
  1518. data/lib/stylesheets/xhtml-1_1/chunktoc.xsl +0 -527
  1519. data/lib/stylesheets/xhtml-1_1/component.xsl +0 -397
  1520. data/lib/stylesheets/xhtml-1_1/division.xsl +0 -219
  1521. data/lib/stylesheets/xhtml-1_1/docbook.css.xml +0 -109
  1522. data/lib/stylesheets/xhtml-1_1/docbook.xsl +0 -435
  1523. data/lib/stylesheets/xhtml-1_1/ebnf.xsl +0 -329
  1524. data/lib/stylesheets/xhtml-1_1/footnote.xsl +0 -306
  1525. data/lib/stylesheets/xhtml-1_1/formal.xsl +0 -413
  1526. data/lib/stylesheets/xhtml-1_1/glossary.xsl +0 -565
  1527. data/lib/stylesheets/xhtml-1_1/graphics.xsl +0 -1437
  1528. data/lib/stylesheets/xhtml-1_1/highlight.xsl +0 -89
  1529. data/lib/stylesheets/xhtml-1_1/html-rtf.xsl +0 -321
  1530. data/lib/stylesheets/xhtml-1_1/html.xsl +0 -600
  1531. data/lib/stylesheets/xhtml-1_1/htmltbl.xsl +0 -104
  1532. data/lib/stylesheets/xhtml-1_1/index.xsl +0 -266
  1533. data/lib/stylesheets/xhtml-1_1/info.xsl +0 -46
  1534. data/lib/stylesheets/xhtml-1_1/inline.xsl +0 -1452
  1535. data/lib/stylesheets/xhtml-1_1/keywords.xsl +0 -38
  1536. data/lib/stylesheets/xhtml-1_1/lists.xsl +0 -1090
  1537. data/lib/stylesheets/xhtml-1_1/maketoc.xsl +0 -92
  1538. data/lib/stylesheets/xhtml-1_1/manifest.xsl +0 -23
  1539. data/lib/stylesheets/xhtml-1_1/math.xsl +0 -285
  1540. data/lib/stylesheets/xhtml-1_1/oldchunker.xsl +0 -177
  1541. data/lib/stylesheets/xhtml-1_1/onechunk.xsl +0 -37
  1542. data/lib/stylesheets/xhtml-1_1/param.xsl +0 -438
  1543. data/lib/stylesheets/xhtml-1_1/pi.xsl +0 -1204
  1544. data/lib/stylesheets/xhtml-1_1/profile-chunk-code.xsl +0 -616
  1545. data/lib/stylesheets/xhtml-1_1/profile-chunk.xsl +0 -53
  1546. data/lib/stylesheets/xhtml-1_1/profile-docbook.xsl +0 -407
  1547. data/lib/stylesheets/xhtml-1_1/profile-onechunk.xsl +0 -37
  1548. data/lib/stylesheets/xhtml-1_1/qandaset.xsl +0 -421
  1549. data/lib/stylesheets/xhtml-1_1/refentry.xsl +0 -301
  1550. data/lib/stylesheets/xhtml-1_1/sections.xsl +0 -543
  1551. data/lib/stylesheets/xhtml-1_1/synop.xsl +0 -1515
  1552. data/lib/stylesheets/xhtml-1_1/table.xsl +0 -1169
  1553. data/lib/stylesheets/xhtml-1_1/task.xsl +0 -75
  1554. data/lib/stylesheets/xhtml-1_1/titlepage.templates.xsl +0 -3818
  1555. data/lib/stylesheets/xhtml-1_1/titlepage.xsl +0 -1032
  1556. data/lib/stylesheets/xhtml-1_1/toc.xsl +0 -332
  1557. data/lib/stylesheets/xhtml-1_1/verbatim.xsl +0 -389
  1558. data/lib/stylesheets/xhtml-1_1/xref.xsl +0 -1317
  1559. data/lib/stylesheets/xhtml/admon.xsl +0 -137
  1560. data/lib/stylesheets/xhtml/annotations.xsl +0 -160
  1561. data/lib/stylesheets/xhtml/autoidx-kimber.xsl +0 -140
  1562. data/lib/stylesheets/xhtml/autoidx-kosek.xsl +0 -110
  1563. data/lib/stylesheets/xhtml/autoidx-ng.xsl +0 -23
  1564. data/lib/stylesheets/xhtml/autoidx.xsl +0 -682
  1565. data/lib/stylesheets/xhtml/autotoc.xsl +0 -665
  1566. data/lib/stylesheets/xhtml/biblio-iso690.xsl +0 -1302
  1567. data/lib/stylesheets/xhtml/biblio.xsl +0 -1242
  1568. data/lib/stylesheets/xhtml/block.xsl +0 -537
  1569. data/lib/stylesheets/xhtml/callout.xsl +0 -189
  1570. data/lib/stylesheets/xhtml/changebars.xsl +0 -80
  1571. data/lib/stylesheets/xhtml/chunk-changebars.xsl +0 -97
  1572. data/lib/stylesheets/xhtml/chunk-code.xsl +0 -644
  1573. data/lib/stylesheets/xhtml/chunk-common.xsl +0 -1562
  1574. data/lib/stylesheets/xhtml/chunk.xsl +0 -53
  1575. data/lib/stylesheets/xhtml/chunker.xsl +0 -303
  1576. data/lib/stylesheets/xhtml/chunkfast.xsl +0 -70
  1577. data/lib/stylesheets/xhtml/chunktoc.xsl +0 -527
  1578. data/lib/stylesheets/xhtml/component.xsl +0 -397
  1579. data/lib/stylesheets/xhtml/division.xsl +0 -219
  1580. data/lib/stylesheets/xhtml/docbook.css.xml +0 -109
  1581. data/lib/stylesheets/xhtml/docbook.xsl +0 -435
  1582. data/lib/stylesheets/xhtml/ebnf.xsl +0 -329
  1583. data/lib/stylesheets/xhtml/footnote.xsl +0 -306
  1584. data/lib/stylesheets/xhtml/formal.xsl +0 -413
  1585. data/lib/stylesheets/xhtml/glossary.xsl +0 -565
  1586. data/lib/stylesheets/xhtml/graphics.xsl +0 -1437
  1587. data/lib/stylesheets/xhtml/highlight.xsl +0 -89
  1588. data/lib/stylesheets/xhtml/html-rtf.xsl +0 -321
  1589. data/lib/stylesheets/xhtml/html.xsl +0 -600
  1590. data/lib/stylesheets/xhtml/htmltbl.xsl +0 -104
  1591. data/lib/stylesheets/xhtml/index.xsl +0 -266
  1592. data/lib/stylesheets/xhtml/info.xsl +0 -46
  1593. data/lib/stylesheets/xhtml/inline.xsl +0 -1452
  1594. data/lib/stylesheets/xhtml/keywords.xsl +0 -38
  1595. data/lib/stylesheets/xhtml/lists.xsl +0 -1123
  1596. data/lib/stylesheets/xhtml/maketoc.xsl +0 -92
  1597. data/lib/stylesheets/xhtml/manifest.xsl +0 -23
  1598. data/lib/stylesheets/xhtml/math.xsl +0 -285
  1599. data/lib/stylesheets/xhtml/oldchunker.xsl +0 -177
  1600. data/lib/stylesheets/xhtml/onechunk.xsl +0 -37
  1601. data/lib/stylesheets/xhtml/param.xsl +0 -438
  1602. data/lib/stylesheets/xhtml/pi.xsl +0 -1204
  1603. data/lib/stylesheets/xhtml/profile-chunk-code.xsl +0 -616
  1604. data/lib/stylesheets/xhtml/profile-chunk.xsl +0 -53
  1605. data/lib/stylesheets/xhtml/profile-docbook.xsl +0 -407
  1606. data/lib/stylesheets/xhtml/profile-onechunk.xsl +0 -37
  1607. data/lib/stylesheets/xhtml/qandaset.xsl +0 -421
  1608. data/lib/stylesheets/xhtml/refentry.xsl +0 -301
  1609. data/lib/stylesheets/xhtml/sections.xsl +0 -543
  1610. data/lib/stylesheets/xhtml/synop.xsl +0 -1515
  1611. data/lib/stylesheets/xhtml/table.xsl +0 -1169
  1612. data/lib/stylesheets/xhtml/task.xsl +0 -75
  1613. data/lib/stylesheets/xhtml/titlepage.templates.xsl +0 -3818
  1614. data/lib/stylesheets/xhtml/titlepage.xsl +0 -1032
  1615. data/lib/stylesheets/xhtml/toc.xsl +0 -332
  1616. data/lib/stylesheets/xhtml/verbatim.xsl +0 -389
  1617. data/lib/stylesheets/xhtml/xref.xsl +0 -1317
@@ -0,0 +1,2161 @@
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 11 0 R
12
+ /Outlines 14 0 R
13
+ >>
14
+ endobj
15
+ 3 0 obj
16
+ << /Type /Pages
17
+ /Count 2
18
+ /Kids [5 0 R 9 0 R]
19
+ >>
20
+ endobj
21
+ 4 0 obj
22
+ << /Length 19815
23
+ >>
24
+ stream
25
+ q
26
+
27
+ BT
28
+ 85.03937007874016 747.5386299212598 Td
29
+ /F1.0 12 Tf
30
+ [<5468697320697320736f6d65206e6f726d616c2074> 10.0 <6578742c2062757420736f6f6e2074686572652077696c6c2062652061207461626c653a>] TJ
31
+ ET
32
+
33
+ /DeviceRGB cs
34
+ 0.392 0.392 0.392 scn
35
+
36
+ BT
37
+ 85.03937007874016 718.1614015748031 Td
38
+ /F1.0 12 Tf
39
+ [<417474> 10.0 <656e64656573>] TJ
40
+ ET
41
+
42
+ 0.000 0.000 0.000 scn
43
+ 1.000 1.000 1.000 scn
44
+ 85.039 653.688 148.688 22.204 re
45
+ f
46
+ 0.000 0.000 0.000 scn
47
+ 1.000 1.000 1.000 scn
48
+ 233.727 653.688 139.120 22.204 re
49
+ f
50
+ 0.000 0.000 0.000 scn
51
+ 1.000 1.000 1.000 scn
52
+ 372.848 653.688 137.393 22.204 re
53
+ f
54
+ 0.000 0.000 0.000 scn
55
+ 0.925 0.925 0.925 scn
56
+ 85.039 631.484 148.688 22.204 re
57
+ f
58
+ 0.000 0.000 0.000 scn
59
+ 0.925 0.925 0.925 scn
60
+ 233.727 631.484 139.120 22.204 re
61
+ f
62
+ 0.000 0.000 0.000 scn
63
+ 0.925 0.925 0.925 scn
64
+ 372.848 631.484 137.393 22.204 re
65
+ f
66
+ 0.000 0.000 0.000 scn
67
+ 1.000 1.000 1.000 scn
68
+ 85.039 609.280 148.688 22.204 re
69
+ f
70
+ 0.000 0.000 0.000 scn
71
+ 1.000 1.000 1.000 scn
72
+ 233.727 609.280 139.120 22.204 re
73
+ f
74
+ 0.000 0.000 0.000 scn
75
+ 1.000 1.000 1.000 scn
76
+ 372.848 609.280 137.393 22.204 re
77
+ f
78
+ 0.000 0.000 0.000 scn
79
+ 0.925 0.925 0.925 scn
80
+ 85.039 587.076 148.688 22.204 re
81
+ f
82
+ 0.000 0.000 0.000 scn
83
+ 0.925 0.925 0.925 scn
84
+ 233.727 587.076 139.120 22.204 re
85
+ f
86
+ 0.000 0.000 0.000 scn
87
+ 0.925 0.925 0.925 scn
88
+ 372.848 587.076 137.393 22.204 re
89
+ f
90
+ 0.000 0.000 0.000 scn
91
+ 1.000 1.000 1.000 scn
92
+ 85.039 564.872 148.688 22.204 re
93
+ f
94
+ 0.000 0.000 0.000 scn
95
+ 1.000 1.000 1.000 scn
96
+ 233.727 564.872 139.120 22.204 re
97
+ f
98
+ 0.000 0.000 0.000 scn
99
+ 1.000 1.000 1.000 scn
100
+ 372.848 564.872 137.393 22.204 re
101
+ f
102
+ 0.000 0.000 0.000 scn
103
+ 0.925 0.925 0.925 scn
104
+ 85.039 542.668 148.688 22.204 re
105
+ f
106
+ 0.000 0.000 0.000 scn
107
+ 0.925 0.925 0.925 scn
108
+ 233.727 542.668 139.120 22.204 re
109
+ f
110
+ 0.000 0.000 0.000 scn
111
+ 0.925 0.925 0.925 scn
112
+ 372.848 542.668 137.393 22.204 re
113
+ f
114
+ 0.000 0.000 0.000 scn
115
+ 1.000 1.000 1.000 scn
116
+ 85.039 520.464 148.688 22.204 re
117
+ f
118
+ 0.000 0.000 0.000 scn
119
+ 1.000 1.000 1.000 scn
120
+ 233.727 520.464 139.120 22.204 re
121
+ f
122
+ 0.000 0.000 0.000 scn
123
+ 1.000 1.000 1.000 scn
124
+ 372.848 520.464 137.393 22.204 re
125
+ f
126
+ 0.000 0.000 0.000 scn
127
+ 0.925 0.925 0.925 scn
128
+ 85.039 498.260 148.688 22.204 re
129
+ f
130
+ 0.000 0.000 0.000 scn
131
+ 0.925 0.925 0.925 scn
132
+ 233.727 498.260 139.120 22.204 re
133
+ f
134
+ 0.000 0.000 0.000 scn
135
+ 0.925 0.925 0.925 scn
136
+ 372.848 498.260 137.393 22.204 re
137
+ f
138
+ 0.000 0.000 0.000 scn
139
+ 1.000 1.000 1.000 scn
140
+ 85.039 476.056 148.688 22.204 re
141
+ f
142
+ 0.000 0.000 0.000 scn
143
+ 1.000 1.000 1.000 scn
144
+ 233.727 476.056 139.120 22.204 re
145
+ f
146
+ 0.000 0.000 0.000 scn
147
+ 1.000 1.000 1.000 scn
148
+ 372.848 476.056 137.393 22.204 re
149
+ f
150
+ 0.000 0.000 0.000 scn
151
+ 0.925 0.925 0.925 scn
152
+ 85.039 453.852 148.688 22.204 re
153
+ f
154
+ 0.000 0.000 0.000 scn
155
+ 0.925 0.925 0.925 scn
156
+ 233.727 453.852 139.120 22.204 re
157
+ f
158
+ 0.000 0.000 0.000 scn
159
+ 0.925 0.925 0.925 scn
160
+ 372.848 453.852 137.393 22.204 re
161
+ f
162
+ 0.000 0.000 0.000 scn
163
+ 1.000 1.000 1.000 scn
164
+ 85.039 431.648 148.688 22.204 re
165
+ f
166
+ 0.000 0.000 0.000 scn
167
+ 1.000 1.000 1.000 scn
168
+ 233.727 431.648 139.120 22.204 re
169
+ f
170
+ 0.000 0.000 0.000 scn
171
+ 1.000 1.000 1.000 scn
172
+ 372.848 431.648 137.393 22.204 re
173
+ f
174
+ 0.000 0.000 0.000 scn
175
+ 0.925 0.925 0.925 scn
176
+ 85.039 409.444 148.688 22.204 re
177
+ f
178
+ 0.000 0.000 0.000 scn
179
+ 0.925 0.925 0.925 scn
180
+ 233.727 409.444 139.120 22.204 re
181
+ f
182
+ 0.000 0.000 0.000 scn
183
+ 0.925 0.925 0.925 scn
184
+ 372.848 409.444 137.393 22.204 re
185
+ f
186
+ 0.000 0.000 0.000 scn
187
+ 1.000 1.000 1.000 scn
188
+ 85.039 387.240 148.688 22.204 re
189
+ f
190
+ 0.000 0.000 0.000 scn
191
+ 1.000 1.000 1.000 scn
192
+ 233.727 387.240 139.120 22.204 re
193
+ f
194
+ 0.000 0.000 0.000 scn
195
+ 1.000 1.000 1.000 scn
196
+ 372.848 387.240 137.393 22.204 re
197
+ f
198
+ 0.000 0.000 0.000 scn
199
+ 0.925 0.925 0.925 scn
200
+ 85.039 365.036 148.688 22.204 re
201
+ f
202
+ 0.000 0.000 0.000 scn
203
+ 0.925 0.925 0.925 scn
204
+ 233.727 365.036 139.120 22.204 re
205
+ f
206
+ 0.000 0.000 0.000 scn
207
+ 0.925 0.925 0.925 scn
208
+ 372.848 365.036 137.393 22.204 re
209
+ f
210
+ 0.000 0.000 0.000 scn
211
+ 1.000 1.000 1.000 scn
212
+ 85.039 342.832 148.688 22.204 re
213
+ f
214
+ 0.000 0.000 0.000 scn
215
+ 1.000 1.000 1.000 scn
216
+ 233.727 342.832 139.120 22.204 re
217
+ f
218
+ 0.000 0.000 0.000 scn
219
+ 1.000 1.000 1.000 scn
220
+ 372.848 342.832 137.393 22.204 re
221
+ f
222
+ 0.000 0.000 0.000 scn
223
+ 0.925 0.925 0.925 scn
224
+ 85.039 320.628 148.688 22.204 re
225
+ f
226
+ 0.000 0.000 0.000 scn
227
+ 0.925 0.925 0.925 scn
228
+ 233.727 320.628 139.120 22.204 re
229
+ f
230
+ 0.000 0.000 0.000 scn
231
+ 0.925 0.925 0.925 scn
232
+ 372.848 320.628 137.393 22.204 re
233
+ f
234
+ 0.000 0.000 0.000 scn
235
+ 1.000 1.000 1.000 scn
236
+ 85.039 298.424 148.688 22.204 re
237
+ f
238
+ 0.000 0.000 0.000 scn
239
+ 1.000 1.000 1.000 scn
240
+ 233.727 298.424 139.120 22.204 re
241
+ f
242
+ 0.000 0.000 0.000 scn
243
+ 1.000 1.000 1.000 scn
244
+ 372.848 298.424 137.393 22.204 re
245
+ f
246
+ 0.000 0.000 0.000 scn
247
+ 0.925 0.925 0.925 scn
248
+ 85.039 276.220 148.688 22.204 re
249
+ f
250
+ 0.000 0.000 0.000 scn
251
+ 0.925 0.925 0.925 scn
252
+ 233.727 276.220 139.120 22.204 re
253
+ f
254
+ 0.000 0.000 0.000 scn
255
+ 0.925 0.925 0.925 scn
256
+ 372.848 276.220 137.393 22.204 re
257
+ f
258
+ 0.000 0.000 0.000 scn
259
+ 1.000 1.000 1.000 scn
260
+ 85.039 254.016 148.688 22.204 re
261
+ f
262
+ 0.000 0.000 0.000 scn
263
+ 1.000 1.000 1.000 scn
264
+ 233.727 254.016 139.120 22.204 re
265
+ f
266
+ 0.000 0.000 0.000 scn
267
+ 1.000 1.000 1.000 scn
268
+ 372.848 254.016 137.393 22.204 re
269
+ f
270
+ 0.000 0.000 0.000 scn
271
+ 0.925 0.925 0.925 scn
272
+ 85.039 231.812 148.688 22.204 re
273
+ f
274
+ 0.000 0.000 0.000 scn
275
+ 0.925 0.925 0.925 scn
276
+ 233.727 231.812 139.120 22.204 re
277
+ f
278
+ 0.000 0.000 0.000 scn
279
+ 0.925 0.925 0.925 scn
280
+ 372.848 231.812 137.393 22.204 re
281
+ f
282
+ 0.000 0.000 0.000 scn
283
+ 1.000 1.000 1.000 scn
284
+ 85.039 209.608 148.688 22.204 re
285
+ f
286
+ 0.000 0.000 0.000 scn
287
+ 1.000 1.000 1.000 scn
288
+ 233.727 209.608 139.120 22.204 re
289
+ f
290
+ 0.000 0.000 0.000 scn
291
+ 1.000 1.000 1.000 scn
292
+ 372.848 209.608 137.393 22.204 re
293
+ f
294
+ 0.000 0.000 0.000 scn
295
+ 0.925 0.925 0.925 scn
296
+ 85.039 187.404 148.688 22.204 re
297
+ f
298
+ 0.000 0.000 0.000 scn
299
+ 0.925 0.925 0.925 scn
300
+ 233.727 187.404 139.120 22.204 re
301
+ f
302
+ 0.000 0.000 0.000 scn
303
+ 0.925 0.925 0.925 scn
304
+ 372.848 187.404 137.393 22.204 re
305
+ f
306
+ 0.000 0.000 0.000 scn
307
+ 1.000 1.000 1.000 scn
308
+ 85.039 165.200 148.688 22.204 re
309
+ f
310
+ 0.000 0.000 0.000 scn
311
+ 1.000 1.000 1.000 scn
312
+ 233.727 165.200 139.120 22.204 re
313
+ f
314
+ 0.000 0.000 0.000 scn
315
+ 1.000 1.000 1.000 scn
316
+ 372.848 165.200 137.393 22.204 re
317
+ f
318
+ 0.000 0.000 0.000 scn
319
+ 0.925 0.925 0.925 scn
320
+ 85.039 142.996 148.688 22.204 re
321
+ f
322
+ 0.000 0.000 0.000 scn
323
+ 0.925 0.925 0.925 scn
324
+ 233.727 142.996 139.120 22.204 re
325
+ f
326
+ 0.000 0.000 0.000 scn
327
+ 0.925 0.925 0.925 scn
328
+ 372.848 142.996 137.393 22.204 re
329
+ f
330
+ 0.000 0.000 0.000 scn
331
+ 1.000 1.000 1.000 scn
332
+ 85.039 120.792 148.688 22.204 re
333
+ f
334
+ 0.000 0.000 0.000 scn
335
+ 1.000 1.000 1.000 scn
336
+ 233.727 120.792 139.120 22.204 re
337
+ f
338
+ 0.000 0.000 0.000 scn
339
+ 1.000 1.000 1.000 scn
340
+ 372.848 120.792 137.393 22.204 re
341
+ f
342
+ 0.000 0.000 0.000 scn
343
+ 0.925 0.925 0.925 scn
344
+ 85.039 98.588 148.688 22.204 re
345
+ f
346
+ 0.000 0.000 0.000 scn
347
+ 0.925 0.925 0.925 scn
348
+ 233.727 98.588 139.120 22.204 re
349
+ f
350
+ 0.000 0.000 0.000 scn
351
+ 0.925 0.925 0.925 scn
352
+ 372.848 98.588 137.393 22.204 re
353
+ f
354
+ 0.000 0.000 0.000 scn
355
+ 0.5 w
356
+ /DeviceRGB CS
357
+ 0.714 0.714 0.714 SCN
358
+ 85.039 675.892 m
359
+ 233.727 675.892 l
360
+ S
361
+ 1 w
362
+ 0.000 0.000 0.000 SCN
363
+
364
+ BT
365
+ 90.03937007874016 682.3381732283464 Td
366
+ /F1.0 12 Tf
367
+ <4e616d65> Tj
368
+ ET
369
+
370
+ 0.000 0.000 0.000 scn
371
+ 0.5 w
372
+ 0.714 0.714 0.714 SCN
373
+ 233.727 675.892 m
374
+ 372.848 675.892 l
375
+ S
376
+ 1 w
377
+ 0.000 0.000 0.000 SCN
378
+
379
+ BT
380
+ 238.7274323960205 682.3381732283464 Td
381
+ /F1.0 12 Tf
382
+ [<41> 16.0 <6765>] TJ
383
+ ET
384
+
385
+ 0.000 0.000 0.000 scn
386
+ 0.5 w
387
+ 0.714 0.714 0.714 SCN
388
+ 372.848 675.892 m
389
+ 510.241 675.892 l
390
+ S
391
+ 1 w
392
+ 0.000 0.000 0.000 SCN
393
+
394
+ BT
395
+ 377.8475051485326 682.3381732283464 Td
396
+ /F1.0 12 Tf
397
+ <536578> Tj
398
+ ET
399
+
400
+ 0.000 0.000 0.000 scn
401
+ 0.5 w
402
+ 0.714 0.714 0.714 SCN
403
+ 85.039 653.688 m
404
+ 233.727 653.688 l
405
+ S
406
+ 1 w
407
+ 0.000 0.000 0.000 SCN
408
+
409
+ BT
410
+ 90.03937007874016 660.1341732283464 Td
411
+ /F2.0 12 Tf
412
+ <4a6f616e> Tj
413
+ ET
414
+
415
+ 0.000 0.000 0.000 scn
416
+ 0.5 w
417
+ 0.714 0.714 0.714 SCN
418
+ 233.727 653.688 m
419
+ 372.848 653.688 l
420
+ S
421
+ 1 w
422
+ 0.000 0.000 0.000 SCN
423
+
424
+ BT
425
+ 238.7274323960205 660.1341732283464 Td
426
+ /F2.0 12 Tf
427
+ <3234> Tj
428
+ ET
429
+
430
+ 0.000 0.000 0.000 scn
431
+ 0.5 w
432
+ 0.714 0.714 0.714 SCN
433
+ 372.848 653.688 m
434
+ 510.241 653.688 l
435
+ S
436
+ 1 w
437
+ 0.000 0.000 0.000 SCN
438
+
439
+ BT
440
+ 377.8475051485326 660.1341732283464 Td
441
+ /F2.0 12 Tf
442
+ <46> Tj
443
+ ET
444
+
445
+ 0.000 0.000 0.000 scn
446
+ 0.5 w
447
+ 0.714 0.714 0.714 SCN
448
+ 85.039 631.484 m
449
+ 233.727 631.484 l
450
+ S
451
+ 1 w
452
+ 0.000 0.000 0.000 SCN
453
+
454
+ BT
455
+ 90.03937007874016 637.9301732283463 Td
456
+ /F2.0 12 Tf
457
+ <417263686965> Tj
458
+ ET
459
+
460
+ 0.000 0.000 0.000 scn
461
+ 0.5 w
462
+ 0.714 0.714 0.714 SCN
463
+ 233.727 631.484 m
464
+ 372.848 631.484 l
465
+ S
466
+ 1 w
467
+ 0.000 0.000 0.000 SCN
468
+
469
+ BT
470
+ 238.7274323960205 637.9301732283463 Td
471
+ /F2.0 12 Tf
472
+ <3239> Tj
473
+ ET
474
+
475
+ 0.000 0.000 0.000 scn
476
+ 0.5 w
477
+ 0.714 0.714 0.714 SCN
478
+ 372.848 631.484 m
479
+ 510.241 631.484 l
480
+ S
481
+ 1 w
482
+ 0.000 0.000 0.000 SCN
483
+
484
+ BT
485
+ 377.8475051485326 637.9301732283463 Td
486
+ /F2.0 12 Tf
487
+ <4d> Tj
488
+ ET
489
+
490
+ 0.000 0.000 0.000 scn
491
+ 1 w
492
+ 0.000 0.000 0.000 SCN
493
+
494
+ BT
495
+ 90.03937007874016 615.7261732283464 Td
496
+ /F2.0 12 Tf
497
+ <42656c6c6f> Tj
498
+ ET
499
+
500
+ 0.000 0.000 0.000 scn
501
+ 1 w
502
+ 0.000 0.000 0.000 SCN
503
+
504
+ BT
505
+ 238.7274323960205 615.7261732283464 Td
506
+ /F2.0 12 Tf
507
+ <3435> Tj
508
+ ET
509
+
510
+ 0.000 0.000 0.000 scn
511
+ 1 w
512
+ 0.000 0.000 0.000 SCN
513
+
514
+ BT
515
+ 377.8475051485326 615.7261732283464 Td
516
+ /F2.0 12 Tf
517
+ <46> Tj
518
+ ET
519
+
520
+ 0.000 0.000 0.000 scn
521
+ 0.5 w
522
+ 0.714 0.714 0.714 SCN
523
+ 85.039 587.076 m
524
+ 233.727 587.076 l
525
+ S
526
+ 1 w
527
+ 0.000 0.000 0.000 SCN
528
+
529
+ BT
530
+ 90.03937007874016 593.5221732283463 Td
531
+ /F2.0 12 Tf
532
+ <4a6f616e> Tj
533
+ ET
534
+
535
+ 0.000 0.000 0.000 scn
536
+ 0.5 w
537
+ 0.714 0.714 0.714 SCN
538
+ 233.727 587.076 m
539
+ 372.848 587.076 l
540
+ S
541
+ 1 w
542
+ 0.000 0.000 0.000 SCN
543
+
544
+ BT
545
+ 238.7274323960205 593.5221732283463 Td
546
+ /F2.0 12 Tf
547
+ <3234> Tj
548
+ ET
549
+
550
+ 0.000 0.000 0.000 scn
551
+ 0.5 w
552
+ 0.714 0.714 0.714 SCN
553
+ 372.848 587.076 m
554
+ 510.241 587.076 l
555
+ S
556
+ 1 w
557
+ 0.000 0.000 0.000 SCN
558
+
559
+ BT
560
+ 377.8475051485326 593.5221732283463 Td
561
+ /F2.0 12 Tf
562
+ <46> Tj
563
+ ET
564
+
565
+ 0.000 0.000 0.000 scn
566
+ 0.5 w
567
+ 0.714 0.714 0.714 SCN
568
+ 85.039 564.872 m
569
+ 233.727 564.872 l
570
+ S
571
+ 1 w
572
+ 0.000 0.000 0.000 SCN
573
+
574
+ BT
575
+ 90.03937007874016 571.3181732283464 Td
576
+ /F2.0 12 Tf
577
+ <417263686965> Tj
578
+ ET
579
+
580
+ 0.000 0.000 0.000 scn
581
+ 0.5 w
582
+ 0.714 0.714 0.714 SCN
583
+ 233.727 564.872 m
584
+ 372.848 564.872 l
585
+ S
586
+ 1 w
587
+ 0.000 0.000 0.000 SCN
588
+
589
+ BT
590
+ 238.7274323960205 571.3181732283464 Td
591
+ /F2.0 12 Tf
592
+ <3239> Tj
593
+ ET
594
+
595
+ 0.000 0.000 0.000 scn
596
+ 0.5 w
597
+ 0.714 0.714 0.714 SCN
598
+ 372.848 564.872 m
599
+ 510.241 564.872 l
600
+ S
601
+ 1 w
602
+ 0.000 0.000 0.000 SCN
603
+
604
+ BT
605
+ 377.8475051485326 571.3181732283464 Td
606
+ /F2.0 12 Tf
607
+ <4d> Tj
608
+ ET
609
+
610
+ 0.000 0.000 0.000 scn
611
+ 1 w
612
+ 0.000 0.000 0.000 SCN
613
+
614
+ BT
615
+ 90.03937007874016 549.1141732283463 Td
616
+ /F2.0 12 Tf
617
+ <42656c6c6f> Tj
618
+ ET
619
+
620
+ 0.000 0.000 0.000 scn
621
+ 1 w
622
+ 0.000 0.000 0.000 SCN
623
+
624
+ BT
625
+ 238.7274323960205 549.1141732283463 Td
626
+ /F2.0 12 Tf
627
+ <3435> Tj
628
+ ET
629
+
630
+ 0.000 0.000 0.000 scn
631
+ 1 w
632
+ 0.000 0.000 0.000 SCN
633
+
634
+ BT
635
+ 377.8475051485326 549.1141732283463 Td
636
+ /F2.0 12 Tf
637
+ <46> Tj
638
+ ET
639
+
640
+ 0.000 0.000 0.000 scn
641
+ 0.5 w
642
+ 0.714 0.714 0.714 SCN
643
+ 85.039 520.464 m
644
+ 233.727 520.464 l
645
+ S
646
+ 1 w
647
+ 0.000 0.000 0.000 SCN
648
+
649
+ BT
650
+ 90.03937007874016 526.9101732283464 Td
651
+ /F2.0 12 Tf
652
+ <4a6f616e> Tj
653
+ ET
654
+
655
+ 0.000 0.000 0.000 scn
656
+ 0.5 w
657
+ 0.714 0.714 0.714 SCN
658
+ 233.727 520.464 m
659
+ 372.848 520.464 l
660
+ S
661
+ 1 w
662
+ 0.000 0.000 0.000 SCN
663
+
664
+ BT
665
+ 238.7274323960205 526.9101732283464 Td
666
+ /F2.0 12 Tf
667
+ <3234> Tj
668
+ ET
669
+
670
+ 0.000 0.000 0.000 scn
671
+ 0.5 w
672
+ 0.714 0.714 0.714 SCN
673
+ 372.848 520.464 m
674
+ 510.241 520.464 l
675
+ S
676
+ 1 w
677
+ 0.000 0.000 0.000 SCN
678
+
679
+ BT
680
+ 377.8475051485326 526.9101732283464 Td
681
+ /F2.0 12 Tf
682
+ <46> Tj
683
+ ET
684
+
685
+ 0.000 0.000 0.000 scn
686
+ 0.5 w
687
+ 0.714 0.714 0.714 SCN
688
+ 85.039 498.260 m
689
+ 233.727 498.260 l
690
+ S
691
+ 1 w
692
+ 0.000 0.000 0.000 SCN
693
+
694
+ BT
695
+ 90.03937007874016 504.7061732283463 Td
696
+ /F2.0 12 Tf
697
+ <417263686965> Tj
698
+ ET
699
+
700
+ 0.000 0.000 0.000 scn
701
+ 0.5 w
702
+ 0.714 0.714 0.714 SCN
703
+ 233.727 498.260 m
704
+ 372.848 498.260 l
705
+ S
706
+ 1 w
707
+ 0.000 0.000 0.000 SCN
708
+
709
+ BT
710
+ 238.7274323960205 504.7061732283463 Td
711
+ /F2.0 12 Tf
712
+ <3239> Tj
713
+ ET
714
+
715
+ 0.000 0.000 0.000 scn
716
+ 0.5 w
717
+ 0.714 0.714 0.714 SCN
718
+ 372.848 498.260 m
719
+ 510.241 498.260 l
720
+ S
721
+ 1 w
722
+ 0.000 0.000 0.000 SCN
723
+
724
+ BT
725
+ 377.8475051485326 504.7061732283463 Td
726
+ /F2.0 12 Tf
727
+ <4d> Tj
728
+ ET
729
+
730
+ 0.000 0.000 0.000 scn
731
+ 1 w
732
+ 0.000 0.000 0.000 SCN
733
+
734
+ BT
735
+ 90.03937007874016 482.50217322834635 Td
736
+ /F2.0 12 Tf
737
+ <42656c6c6f> Tj
738
+ ET
739
+
740
+ 0.000 0.000 0.000 scn
741
+ 1 w
742
+ 0.000 0.000 0.000 SCN
743
+
744
+ BT
745
+ 238.7274323960205 482.50217322834635 Td
746
+ /F2.0 12 Tf
747
+ <3435> Tj
748
+ ET
749
+
750
+ 0.000 0.000 0.000 scn
751
+ 1 w
752
+ 0.000 0.000 0.000 SCN
753
+
754
+ BT
755
+ 377.8475051485326 482.50217322834635 Td
756
+ /F2.0 12 Tf
757
+ <46> Tj
758
+ ET
759
+
760
+ 0.000 0.000 0.000 scn
761
+ 0.5 w
762
+ 0.714 0.714 0.714 SCN
763
+ 85.039 453.852 m
764
+ 233.727 453.852 l
765
+ S
766
+ 1 w
767
+ 0.000 0.000 0.000 SCN
768
+
769
+ BT
770
+ 90.03937007874016 460.2981732283463 Td
771
+ /F2.0 12 Tf
772
+ <4a6f616e> Tj
773
+ ET
774
+
775
+ 0.000 0.000 0.000 scn
776
+ 0.5 w
777
+ 0.714 0.714 0.714 SCN
778
+ 233.727 453.852 m
779
+ 372.848 453.852 l
780
+ S
781
+ 1 w
782
+ 0.000 0.000 0.000 SCN
783
+
784
+ BT
785
+ 238.7274323960205 460.2981732283463 Td
786
+ /F2.0 12 Tf
787
+ <3234> Tj
788
+ ET
789
+
790
+ 0.000 0.000 0.000 scn
791
+ 0.5 w
792
+ 0.714 0.714 0.714 SCN
793
+ 372.848 453.852 m
794
+ 510.241 453.852 l
795
+ S
796
+ 1 w
797
+ 0.000 0.000 0.000 SCN
798
+
799
+ BT
800
+ 377.8475051485326 460.2981732283463 Td
801
+ /F2.0 12 Tf
802
+ <46> Tj
803
+ ET
804
+
805
+ 0.000 0.000 0.000 scn
806
+ 0.5 w
807
+ 0.714 0.714 0.714 SCN
808
+ 85.039 431.648 m
809
+ 233.727 431.648 l
810
+ S
811
+ 1 w
812
+ 0.000 0.000 0.000 SCN
813
+
814
+ BT
815
+ 90.03937007874016 438.09417322834634 Td
816
+ /F2.0 12 Tf
817
+ <417263686965> Tj
818
+ ET
819
+
820
+ 0.000 0.000 0.000 scn
821
+ 0.5 w
822
+ 0.714 0.714 0.714 SCN
823
+ 233.727 431.648 m
824
+ 372.848 431.648 l
825
+ S
826
+ 1 w
827
+ 0.000 0.000 0.000 SCN
828
+
829
+ BT
830
+ 238.7274323960205 438.09417322834634 Td
831
+ /F2.0 12 Tf
832
+ <3239> Tj
833
+ ET
834
+
835
+ 0.000 0.000 0.000 scn
836
+ 0.5 w
837
+ 0.714 0.714 0.714 SCN
838
+ 372.848 431.648 m
839
+ 510.241 431.648 l
840
+ S
841
+ 1 w
842
+ 0.000 0.000 0.000 SCN
843
+
844
+ BT
845
+ 377.8475051485326 438.09417322834634 Td
846
+ /F2.0 12 Tf
847
+ <4d> Tj
848
+ ET
849
+
850
+ 0.000 0.000 0.000 scn
851
+ 1 w
852
+ 0.000 0.000 0.000 SCN
853
+
854
+ BT
855
+ 90.03937007874016 415.8901732283463 Td
856
+ /F2.0 12 Tf
857
+ <42656c6c6f> Tj
858
+ ET
859
+
860
+ 0.000 0.000 0.000 scn
861
+ 1 w
862
+ 0.000 0.000 0.000 SCN
863
+
864
+ BT
865
+ 238.7274323960205 415.8901732283463 Td
866
+ /F2.0 12 Tf
867
+ <3435> Tj
868
+ ET
869
+
870
+ 0.000 0.000 0.000 scn
871
+ 1 w
872
+ 0.000 0.000 0.000 SCN
873
+
874
+ BT
875
+ 377.8475051485326 415.8901732283463 Td
876
+ /F2.0 12 Tf
877
+ <46> Tj
878
+ ET
879
+
880
+ 0.000 0.000 0.000 scn
881
+ 0.5 w
882
+ 0.714 0.714 0.714 SCN
883
+ 85.039 387.240 m
884
+ 233.727 387.240 l
885
+ S
886
+ 1 w
887
+ 0.000 0.000 0.000 SCN
888
+
889
+ BT
890
+ 90.03937007874016 393.6861732283463 Td
891
+ /F2.0 12 Tf
892
+ <4a6f616e> Tj
893
+ ET
894
+
895
+ 0.000 0.000 0.000 scn
896
+ 0.5 w
897
+ 0.714 0.714 0.714 SCN
898
+ 233.727 387.240 m
899
+ 372.848 387.240 l
900
+ S
901
+ 1 w
902
+ 0.000 0.000 0.000 SCN
903
+
904
+ BT
905
+ 238.7274323960205 393.6861732283463 Td
906
+ /F2.0 12 Tf
907
+ <3234> Tj
908
+ ET
909
+
910
+ 0.000 0.000 0.000 scn
911
+ 0.5 w
912
+ 0.714 0.714 0.714 SCN
913
+ 372.848 387.240 m
914
+ 510.241 387.240 l
915
+ S
916
+ 1 w
917
+ 0.000 0.000 0.000 SCN
918
+
919
+ BT
920
+ 377.8475051485326 393.6861732283463 Td
921
+ /F2.0 12 Tf
922
+ <46> Tj
923
+ ET
924
+
925
+ 0.000 0.000 0.000 scn
926
+ 0.5 w
927
+ 0.714 0.714 0.714 SCN
928
+ 85.039 365.036 m
929
+ 233.727 365.036 l
930
+ S
931
+ 1 w
932
+ 0.000 0.000 0.000 SCN
933
+
934
+ BT
935
+ 90.03937007874016 371.4821732283463 Td
936
+ /F2.0 12 Tf
937
+ <417263686965> Tj
938
+ ET
939
+
940
+ 0.000 0.000 0.000 scn
941
+ 0.5 w
942
+ 0.714 0.714 0.714 SCN
943
+ 233.727 365.036 m
944
+ 372.848 365.036 l
945
+ S
946
+ 1 w
947
+ 0.000 0.000 0.000 SCN
948
+
949
+ BT
950
+ 238.7274323960205 371.4821732283463 Td
951
+ /F2.0 12 Tf
952
+ <3239> Tj
953
+ ET
954
+
955
+ 0.000 0.000 0.000 scn
956
+ 0.5 w
957
+ 0.714 0.714 0.714 SCN
958
+ 372.848 365.036 m
959
+ 510.241 365.036 l
960
+ S
961
+ 1 w
962
+ 0.000 0.000 0.000 SCN
963
+
964
+ BT
965
+ 377.8475051485326 371.4821732283463 Td
966
+ /F2.0 12 Tf
967
+ <4d> Tj
968
+ ET
969
+
970
+ 0.000 0.000 0.000 scn
971
+ 1 w
972
+ 0.000 0.000 0.000 SCN
973
+
974
+ BT
975
+ 90.03937007874016 349.2781732283463 Td
976
+ /F2.0 12 Tf
977
+ <42656c6c6f> Tj
978
+ ET
979
+
980
+ 0.000 0.000 0.000 scn
981
+ 1 w
982
+ 0.000 0.000 0.000 SCN
983
+
984
+ BT
985
+ 238.7274323960205 349.2781732283463 Td
986
+ /F2.0 12 Tf
987
+ <3435> Tj
988
+ ET
989
+
990
+ 0.000 0.000 0.000 scn
991
+ 1 w
992
+ 0.000 0.000 0.000 SCN
993
+
994
+ BT
995
+ 377.8475051485326 349.2781732283463 Td
996
+ /F2.0 12 Tf
997
+ <46> Tj
998
+ ET
999
+
1000
+ 0.000 0.000 0.000 scn
1001
+ 0.5 w
1002
+ 0.714 0.714 0.714 SCN
1003
+ 85.039 320.628 m
1004
+ 233.727 320.628 l
1005
+ S
1006
+ 1 w
1007
+ 0.000 0.000 0.000 SCN
1008
+
1009
+ BT
1010
+ 90.03937007874016 327.0741732283463 Td
1011
+ /F2.0 12 Tf
1012
+ <4a6f616e> Tj
1013
+ ET
1014
+
1015
+ 0.000 0.000 0.000 scn
1016
+ 0.5 w
1017
+ 0.714 0.714 0.714 SCN
1018
+ 233.727 320.628 m
1019
+ 372.848 320.628 l
1020
+ S
1021
+ 1 w
1022
+ 0.000 0.000 0.000 SCN
1023
+
1024
+ BT
1025
+ 238.7274323960205 327.0741732283463 Td
1026
+ /F2.0 12 Tf
1027
+ <3234> Tj
1028
+ ET
1029
+
1030
+ 0.000 0.000 0.000 scn
1031
+ 0.5 w
1032
+ 0.714 0.714 0.714 SCN
1033
+ 372.848 320.628 m
1034
+ 510.241 320.628 l
1035
+ S
1036
+ 1 w
1037
+ 0.000 0.000 0.000 SCN
1038
+
1039
+ BT
1040
+ 377.8475051485326 327.0741732283463 Td
1041
+ /F2.0 12 Tf
1042
+ <46> Tj
1043
+ ET
1044
+
1045
+ 0.000 0.000 0.000 scn
1046
+ 0.5 w
1047
+ 0.714 0.714 0.714 SCN
1048
+ 85.039 298.424 m
1049
+ 233.727 298.424 l
1050
+ S
1051
+ 1 w
1052
+ 0.000 0.000 0.000 SCN
1053
+
1054
+ BT
1055
+ 90.03937007874016 304.8701732283463 Td
1056
+ /F2.0 12 Tf
1057
+ <417263686965> Tj
1058
+ ET
1059
+
1060
+ 0.000 0.000 0.000 scn
1061
+ 0.5 w
1062
+ 0.714 0.714 0.714 SCN
1063
+ 233.727 298.424 m
1064
+ 372.848 298.424 l
1065
+ S
1066
+ 1 w
1067
+ 0.000 0.000 0.000 SCN
1068
+
1069
+ BT
1070
+ 238.7274323960205 304.8701732283463 Td
1071
+ /F2.0 12 Tf
1072
+ <3239> Tj
1073
+ ET
1074
+
1075
+ 0.000 0.000 0.000 scn
1076
+ 0.5 w
1077
+ 0.714 0.714 0.714 SCN
1078
+ 372.848 298.424 m
1079
+ 510.241 298.424 l
1080
+ S
1081
+ 1 w
1082
+ 0.000 0.000 0.000 SCN
1083
+
1084
+ BT
1085
+ 377.8475051485326 304.8701732283463 Td
1086
+ /F2.0 12 Tf
1087
+ <4d> Tj
1088
+ ET
1089
+
1090
+ 0.000 0.000 0.000 scn
1091
+ 1 w
1092
+ 0.000 0.000 0.000 SCN
1093
+
1094
+ BT
1095
+ 90.03937007874016 282.6661732283463 Td
1096
+ /F2.0 12 Tf
1097
+ <42656c6c6f> Tj
1098
+ ET
1099
+
1100
+ 0.000 0.000 0.000 scn
1101
+ 1 w
1102
+ 0.000 0.000 0.000 SCN
1103
+
1104
+ BT
1105
+ 238.7274323960205 282.6661732283463 Td
1106
+ /F2.0 12 Tf
1107
+ <3435> Tj
1108
+ ET
1109
+
1110
+ 0.000 0.000 0.000 scn
1111
+ 1 w
1112
+ 0.000 0.000 0.000 SCN
1113
+
1114
+ BT
1115
+ 377.8475051485326 282.6661732283463 Td
1116
+ /F2.0 12 Tf
1117
+ <46> Tj
1118
+ ET
1119
+
1120
+ 0.000 0.000 0.000 scn
1121
+ 0.5 w
1122
+ 0.714 0.714 0.714 SCN
1123
+ 85.039 254.016 m
1124
+ 233.727 254.016 l
1125
+ S
1126
+ 1 w
1127
+ 0.000 0.000 0.000 SCN
1128
+
1129
+ BT
1130
+ 90.03937007874016 260.4621732283463 Td
1131
+ /F2.0 12 Tf
1132
+ <4a6f616e> Tj
1133
+ ET
1134
+
1135
+ 0.000 0.000 0.000 scn
1136
+ 0.5 w
1137
+ 0.714 0.714 0.714 SCN
1138
+ 233.727 254.016 m
1139
+ 372.848 254.016 l
1140
+ S
1141
+ 1 w
1142
+ 0.000 0.000 0.000 SCN
1143
+
1144
+ BT
1145
+ 238.7274323960205 260.4621732283463 Td
1146
+ /F2.0 12 Tf
1147
+ <3234> Tj
1148
+ ET
1149
+
1150
+ 0.000 0.000 0.000 scn
1151
+ 0.5 w
1152
+ 0.714 0.714 0.714 SCN
1153
+ 372.848 254.016 m
1154
+ 510.241 254.016 l
1155
+ S
1156
+ 1 w
1157
+ 0.000 0.000 0.000 SCN
1158
+
1159
+ BT
1160
+ 377.8475051485326 260.4621732283463 Td
1161
+ /F2.0 12 Tf
1162
+ <46> Tj
1163
+ ET
1164
+
1165
+ 0.000 0.000 0.000 scn
1166
+ 0.5 w
1167
+ 0.714 0.714 0.714 SCN
1168
+ 85.039 231.812 m
1169
+ 233.727 231.812 l
1170
+ S
1171
+ 1 w
1172
+ 0.000 0.000 0.000 SCN
1173
+
1174
+ BT
1175
+ 90.03937007874016 238.2581732283463 Td
1176
+ /F2.0 12 Tf
1177
+ <417263686965> Tj
1178
+ ET
1179
+
1180
+ 0.000 0.000 0.000 scn
1181
+ 0.5 w
1182
+ 0.714 0.714 0.714 SCN
1183
+ 233.727 231.812 m
1184
+ 372.848 231.812 l
1185
+ S
1186
+ 1 w
1187
+ 0.000 0.000 0.000 SCN
1188
+
1189
+ BT
1190
+ 238.7274323960205 238.2581732283463 Td
1191
+ /F2.0 12 Tf
1192
+ <3239> Tj
1193
+ ET
1194
+
1195
+ 0.000 0.000 0.000 scn
1196
+ 0.5 w
1197
+ 0.714 0.714 0.714 SCN
1198
+ 372.848 231.812 m
1199
+ 510.241 231.812 l
1200
+ S
1201
+ 1 w
1202
+ 0.000 0.000 0.000 SCN
1203
+
1204
+ BT
1205
+ 377.8475051485326 238.2581732283463 Td
1206
+ /F2.0 12 Tf
1207
+ <4d> Tj
1208
+ ET
1209
+
1210
+ 0.000 0.000 0.000 scn
1211
+ 1 w
1212
+ 0.000 0.000 0.000 SCN
1213
+
1214
+ BT
1215
+ 90.03937007874016 216.0541732283463 Td
1216
+ /F2.0 12 Tf
1217
+ <42656c6c6f> Tj
1218
+ ET
1219
+
1220
+ 0.000 0.000 0.000 scn
1221
+ 1 w
1222
+ 0.000 0.000 0.000 SCN
1223
+
1224
+ BT
1225
+ 238.7274323960205 216.0541732283463 Td
1226
+ /F2.0 12 Tf
1227
+ <3435> Tj
1228
+ ET
1229
+
1230
+ 0.000 0.000 0.000 scn
1231
+ 1 w
1232
+ 0.000 0.000 0.000 SCN
1233
+
1234
+ BT
1235
+ 377.8475051485326 216.0541732283463 Td
1236
+ /F2.0 12 Tf
1237
+ <46> Tj
1238
+ ET
1239
+
1240
+ 0.000 0.000 0.000 scn
1241
+ 1 w
1242
+ 0.000 0.000 0.000 SCN
1243
+
1244
+ BT
1245
+ 90.03937007874016 193.85017322834628 Td
1246
+ /F2.0 12 Tf
1247
+ <42656c6c6f> Tj
1248
+ ET
1249
+
1250
+ 0.000 0.000 0.000 scn
1251
+ 1 w
1252
+ 0.000 0.000 0.000 SCN
1253
+
1254
+ BT
1255
+ 238.7274323960205 193.85017322834628 Td
1256
+ /F2.0 12 Tf
1257
+ <3435> Tj
1258
+ ET
1259
+
1260
+ 0.000 0.000 0.000 scn
1261
+ 1 w
1262
+ 0.000 0.000 0.000 SCN
1263
+
1264
+ BT
1265
+ 377.8475051485326 193.85017322834628 Td
1266
+ /F2.0 12 Tf
1267
+ <46> Tj
1268
+ ET
1269
+
1270
+ 0.000 0.000 0.000 scn
1271
+ 0.5 w
1272
+ 0.714 0.714 0.714 SCN
1273
+ 85.039 165.200 m
1274
+ 233.727 165.200 l
1275
+ S
1276
+ 1 w
1277
+ 0.000 0.000 0.000 SCN
1278
+
1279
+ BT
1280
+ 90.03937007874016 171.64617322834627 Td
1281
+ /F2.0 12 Tf
1282
+ <4a6f616e> Tj
1283
+ ET
1284
+
1285
+ 0.000 0.000 0.000 scn
1286
+ 0.5 w
1287
+ 0.714 0.714 0.714 SCN
1288
+ 233.727 165.200 m
1289
+ 372.848 165.200 l
1290
+ S
1291
+ 1 w
1292
+ 0.000 0.000 0.000 SCN
1293
+
1294
+ BT
1295
+ 238.7274323960205 171.64617322834627 Td
1296
+ /F2.0 12 Tf
1297
+ <3234> Tj
1298
+ ET
1299
+
1300
+ 0.000 0.000 0.000 scn
1301
+ 0.5 w
1302
+ 0.714 0.714 0.714 SCN
1303
+ 372.848 165.200 m
1304
+ 510.241 165.200 l
1305
+ S
1306
+ 1 w
1307
+ 0.000 0.000 0.000 SCN
1308
+
1309
+ BT
1310
+ 377.8475051485326 171.64617322834627 Td
1311
+ /F2.0 12 Tf
1312
+ <46> Tj
1313
+ ET
1314
+
1315
+ 0.000 0.000 0.000 scn
1316
+ 0.5 w
1317
+ 0.714 0.714 0.714 SCN
1318
+ 85.039 142.996 m
1319
+ 233.727 142.996 l
1320
+ S
1321
+ 1 w
1322
+ 0.000 0.000 0.000 SCN
1323
+
1324
+ BT
1325
+ 90.03937007874016 149.44217322834632 Td
1326
+ /F2.0 12 Tf
1327
+ <417263686965> Tj
1328
+ ET
1329
+
1330
+ 0.000 0.000 0.000 scn
1331
+ 0.5 w
1332
+ 0.714 0.714 0.714 SCN
1333
+ 233.727 142.996 m
1334
+ 372.848 142.996 l
1335
+ S
1336
+ 1 w
1337
+ 0.000 0.000 0.000 SCN
1338
+
1339
+ BT
1340
+ 238.7274323960205 149.44217322834632 Td
1341
+ /F2.0 12 Tf
1342
+ <3239> Tj
1343
+ ET
1344
+
1345
+ 0.000 0.000 0.000 scn
1346
+ 0.5 w
1347
+ 0.714 0.714 0.714 SCN
1348
+ 372.848 142.996 m
1349
+ 510.241 142.996 l
1350
+ S
1351
+ 1 w
1352
+ 0.000 0.000 0.000 SCN
1353
+
1354
+ BT
1355
+ 377.8475051485326 149.44217322834632 Td
1356
+ /F2.0 12 Tf
1357
+ <4d> Tj
1358
+ ET
1359
+
1360
+ 0.000 0.000 0.000 scn
1361
+ 1 w
1362
+ 0.000 0.000 0.000 SCN
1363
+
1364
+ BT
1365
+ 90.03937007874016 127.23817322834638 Td
1366
+ /F2.0 12 Tf
1367
+ <42656c6c6f> Tj
1368
+ ET
1369
+
1370
+ 0.000 0.000 0.000 scn
1371
+ 1 w
1372
+ 0.000 0.000 0.000 SCN
1373
+
1374
+ BT
1375
+ 238.7274323960205 127.23817322834638 Td
1376
+ /F2.0 12 Tf
1377
+ <3435> Tj
1378
+ ET
1379
+
1380
+ 0.000 0.000 0.000 scn
1381
+ 1 w
1382
+ 0.000 0.000 0.000 SCN
1383
+
1384
+ BT
1385
+ 377.8475051485326 127.23817322834638 Td
1386
+ /F2.0 12 Tf
1387
+ <46> Tj
1388
+ ET
1389
+
1390
+ 0.000 0.000 0.000 scn
1391
+ 0.5 w
1392
+ 0.714 0.714 0.714 SCN
1393
+ 85.039 98.588 m
1394
+ 233.727 98.588 l
1395
+ S
1396
+ 1 w
1397
+ 0.000 0.000 0.000 SCN
1398
+
1399
+ BT
1400
+ 90.03937007874016 105.03417322834643 Td
1401
+ /F2.0 12 Tf
1402
+ <4a6f616e> Tj
1403
+ ET
1404
+
1405
+ 0.000 0.000 0.000 scn
1406
+ 0.5 w
1407
+ 0.714 0.714 0.714 SCN
1408
+ 233.727 98.588 m
1409
+ 372.848 98.588 l
1410
+ S
1411
+ 1 w
1412
+ 0.000 0.000 0.000 SCN
1413
+
1414
+ BT
1415
+ 238.7274323960205 105.03417322834643 Td
1416
+ /F2.0 12 Tf
1417
+ <3234> Tj
1418
+ ET
1419
+
1420
+ 0.000 0.000 0.000 scn
1421
+ 0.5 w
1422
+ 0.714 0.714 0.714 SCN
1423
+ 372.848 98.588 m
1424
+ 510.241 98.588 l
1425
+ S
1426
+ 1 w
1427
+ 0.000 0.000 0.000 SCN
1428
+
1429
+ BT
1430
+ 377.8475051485326 105.03417322834643 Td
1431
+ /F2.0 12 Tf
1432
+ <46> Tj
1433
+ ET
1434
+
1435
+ 0.000 0.000 0.000 scn
1436
+ 0.714 0.714 0.714 scn
1437
+
1438
+ BT
1439
+ 284.93 77.27937007874014 Td
1440
+ /F2.0 10 Tf
1441
+ <31206f662032> Tj
1442
+ ET
1443
+
1444
+ Q
1445
+
1446
+ endstream
1447
+ endobj
1448
+ 5 0 obj
1449
+ << /Type /Page
1450
+ /Parent 3 0 R
1451
+ /MediaBox [0 0 595.28 841.89]
1452
+ /Contents 4 0 R
1453
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
1454
+ /Font << /F1.0 6 0 R
1455
+ /F2.0 7 0 R
1456
+ >>
1457
+ >>
1458
+ >>
1459
+ endobj
1460
+ 6 0 obj
1461
+ << /Type /Font
1462
+ /BaseFont /AAAAAL+Ubuntu
1463
+ /Subtype /TrueType
1464
+ /FontDescriptor 16 0 R
1465
+ /FirstChar 32
1466
+ /LastChar 255
1467
+ /Widths 18 0 R
1468
+ /ToUnicode 17 0 R
1469
+ >>
1470
+ endobj
1471
+ 7 0 obj
1472
+ << /Type /Font
1473
+ /BaseFont /AAAAAM+Ubuntu-Light
1474
+ /Subtype /TrueType
1475
+ /FontDescriptor 20 0 R
1476
+ /FirstChar 32
1477
+ /LastChar 255
1478
+ /Widths 22 0 R
1479
+ /ToUnicode 21 0 R
1480
+ >>
1481
+ endobj
1482
+ 8 0 obj
1483
+ << /Length 6558
1484
+ >>
1485
+ stream
1486
+ q
1487
+ 0.5 w
1488
+ /DeviceRGB CS
1489
+ 0.714 0.714 0.714 SCN
1490
+ 85.039 734.647 m
1491
+ 233.727 734.647 l
1492
+ S
1493
+ 1 w
1494
+ 0.000 0.000 0.000 SCN
1495
+
1496
+ BT
1497
+ 90.03937007874016 741.0926299212598 Td
1498
+ /F1.0 12 Tf
1499
+ <4e616d65> Tj
1500
+ ET
1501
+
1502
+ /DeviceRGB cs
1503
+ 0.000 0.000 0.000 scn
1504
+ 0.5 w
1505
+ 0.714 0.714 0.714 SCN
1506
+ 233.727 734.647 m
1507
+ 372.848 734.647 l
1508
+ S
1509
+ 1 w
1510
+ 0.000 0.000 0.000 SCN
1511
+
1512
+ BT
1513
+ 238.7274323960205 741.0926299212598 Td
1514
+ /F1.0 12 Tf
1515
+ [<41> 16.0 <6765>] TJ
1516
+ ET
1517
+
1518
+ 0.000 0.000 0.000 scn
1519
+ 0.5 w
1520
+ 0.714 0.714 0.714 SCN
1521
+ 372.848 734.647 m
1522
+ 510.241 734.647 l
1523
+ S
1524
+ 1 w
1525
+ 0.000 0.000 0.000 SCN
1526
+
1527
+ BT
1528
+ 377.8475051485326 741.0926299212598 Td
1529
+ /F1.0 12 Tf
1530
+ <536578> Tj
1531
+ ET
1532
+
1533
+ 0.000 0.000 0.000 scn
1534
+ 1.000 1.000 1.000 scn
1535
+ 85.039 712.443 148.688 22.204 re
1536
+ f
1537
+ 0.000 0.000 0.000 scn
1538
+ 1.000 1.000 1.000 scn
1539
+ 233.727 712.443 139.120 22.204 re
1540
+ f
1541
+ 0.000 0.000 0.000 scn
1542
+ 1.000 1.000 1.000 scn
1543
+ 372.848 712.443 137.393 22.204 re
1544
+ f
1545
+ 0.000 0.000 0.000 scn
1546
+ 0.925 0.925 0.925 scn
1547
+ 85.039 690.239 148.688 22.204 re
1548
+ f
1549
+ 0.000 0.000 0.000 scn
1550
+ 0.925 0.925 0.925 scn
1551
+ 233.727 690.239 139.120 22.204 re
1552
+ f
1553
+ 0.000 0.000 0.000 scn
1554
+ 0.925 0.925 0.925 scn
1555
+ 372.848 690.239 137.393 22.204 re
1556
+ f
1557
+ 0.000 0.000 0.000 scn
1558
+ 1.000 1.000 1.000 scn
1559
+ 85.039 668.035 148.688 22.204 re
1560
+ f
1561
+ 0.000 0.000 0.000 scn
1562
+ 1.000 1.000 1.000 scn
1563
+ 233.727 668.035 139.120 22.204 re
1564
+ f
1565
+ 0.000 0.000 0.000 scn
1566
+ 1.000 1.000 1.000 scn
1567
+ 372.848 668.035 137.393 22.204 re
1568
+ f
1569
+ 0.000 0.000 0.000 scn
1570
+ 0.925 0.925 0.925 scn
1571
+ 85.039 645.831 148.688 22.204 re
1572
+ f
1573
+ 0.000 0.000 0.000 scn
1574
+ 0.925 0.925 0.925 scn
1575
+ 233.727 645.831 139.120 22.204 re
1576
+ f
1577
+ 0.000 0.000 0.000 scn
1578
+ 0.925 0.925 0.925 scn
1579
+ 372.848 645.831 137.393 22.204 re
1580
+ f
1581
+ 0.000 0.000 0.000 scn
1582
+ 1.000 1.000 1.000 scn
1583
+ 85.039 623.627 148.688 22.204 re
1584
+ f
1585
+ 0.000 0.000 0.000 scn
1586
+ 1.000 1.000 1.000 scn
1587
+ 233.727 623.627 139.120 22.204 re
1588
+ f
1589
+ 0.000 0.000 0.000 scn
1590
+ 1.000 1.000 1.000 scn
1591
+ 372.848 623.627 137.393 22.204 re
1592
+ f
1593
+ 0.000 0.000 0.000 scn
1594
+ 0.925 0.925 0.925 scn
1595
+ 85.039 601.423 148.688 22.204 re
1596
+ f
1597
+ 0.000 0.000 0.000 scn
1598
+ 0.925 0.925 0.925 scn
1599
+ 233.727 601.423 139.120 22.204 re
1600
+ f
1601
+ 0.000 0.000 0.000 scn
1602
+ 0.925 0.925 0.925 scn
1603
+ 372.848 601.423 137.393 22.204 re
1604
+ f
1605
+ 0.000 0.000 0.000 scn
1606
+ 1.000 1.000 1.000 scn
1607
+ 85.039 579.219 148.688 22.204 re
1608
+ f
1609
+ 0.000 0.000 0.000 scn
1610
+ 1.000 1.000 1.000 scn
1611
+ 233.727 579.219 139.120 22.204 re
1612
+ f
1613
+ 0.000 0.000 0.000 scn
1614
+ 1.000 1.000 1.000 scn
1615
+ 372.848 579.219 137.393 22.204 re
1616
+ f
1617
+ 0.000 0.000 0.000 scn
1618
+ 0.925 0.925 0.925 scn
1619
+ 85.039 557.015 148.688 22.204 re
1620
+ f
1621
+ 0.000 0.000 0.000 scn
1622
+ 0.925 0.925 0.925 scn
1623
+ 233.727 557.015 139.120 22.204 re
1624
+ f
1625
+ 0.000 0.000 0.000 scn
1626
+ 0.925 0.925 0.925 scn
1627
+ 372.848 557.015 137.393 22.204 re
1628
+ f
1629
+ 0.000 0.000 0.000 scn
1630
+ 0.5 w
1631
+ 0.714 0.714 0.714 SCN
1632
+ 85.039 712.443 m
1633
+ 233.727 712.443 l
1634
+ S
1635
+ 1 w
1636
+ 0.000 0.000 0.000 SCN
1637
+
1638
+ BT
1639
+ 90.03937007874016 718.8886299212598 Td
1640
+ /F2.0 12 Tf
1641
+ <417263686965> Tj
1642
+ ET
1643
+
1644
+ 0.000 0.000 0.000 scn
1645
+ 0.5 w
1646
+ 0.714 0.714 0.714 SCN
1647
+ 233.727 712.443 m
1648
+ 372.848 712.443 l
1649
+ S
1650
+ 1 w
1651
+ 0.000 0.000 0.000 SCN
1652
+
1653
+ BT
1654
+ 238.7274323960205 718.8886299212598 Td
1655
+ /F2.0 12 Tf
1656
+ <3239> Tj
1657
+ ET
1658
+
1659
+ 0.000 0.000 0.000 scn
1660
+ 0.5 w
1661
+ 0.714 0.714 0.714 SCN
1662
+ 372.848 712.443 m
1663
+ 510.241 712.443 l
1664
+ S
1665
+ 1 w
1666
+ 0.000 0.000 0.000 SCN
1667
+
1668
+ BT
1669
+ 377.8475051485326 718.8886299212598 Td
1670
+ /F2.0 12 Tf
1671
+ <4d> Tj
1672
+ ET
1673
+
1674
+ 0.000 0.000 0.000 scn
1675
+ 1 w
1676
+ 0.000 0.000 0.000 SCN
1677
+
1678
+ BT
1679
+ 90.03937007874016 696.6846299212599 Td
1680
+ /F2.0 12 Tf
1681
+ <42656c6c6f> Tj
1682
+ ET
1683
+
1684
+ 0.000 0.000 0.000 scn
1685
+ 1 w
1686
+ 0.000 0.000 0.000 SCN
1687
+
1688
+ BT
1689
+ 238.7274323960205 696.6846299212599 Td
1690
+ /F2.0 12 Tf
1691
+ <3435> Tj
1692
+ ET
1693
+
1694
+ 0.000 0.000 0.000 scn
1695
+ 1 w
1696
+ 0.000 0.000 0.000 SCN
1697
+
1698
+ BT
1699
+ 377.8475051485326 696.6846299212599 Td
1700
+ /F2.0 12 Tf
1701
+ <46> Tj
1702
+ ET
1703
+
1704
+ 0.000 0.000 0.000 scn
1705
+ 0.5 w
1706
+ 0.714 0.714 0.714 SCN
1707
+ 85.039 668.035 m
1708
+ 233.727 668.035 l
1709
+ S
1710
+ 1 w
1711
+ 0.000 0.000 0.000 SCN
1712
+
1713
+ BT
1714
+ 90.03937007874016 674.48062992126 Td
1715
+ /F2.0 12 Tf
1716
+ <4a6f616e> Tj
1717
+ ET
1718
+
1719
+ 0.000 0.000 0.000 scn
1720
+ 0.5 w
1721
+ 0.714 0.714 0.714 SCN
1722
+ 233.727 668.035 m
1723
+ 372.848 668.035 l
1724
+ S
1725
+ 1 w
1726
+ 0.000 0.000 0.000 SCN
1727
+
1728
+ BT
1729
+ 238.7274323960205 674.48062992126 Td
1730
+ /F2.0 12 Tf
1731
+ <3234> Tj
1732
+ ET
1733
+
1734
+ 0.000 0.000 0.000 scn
1735
+ 0.5 w
1736
+ 0.714 0.714 0.714 SCN
1737
+ 372.848 668.035 m
1738
+ 510.241 668.035 l
1739
+ S
1740
+ 1 w
1741
+ 0.000 0.000 0.000 SCN
1742
+
1743
+ BT
1744
+ 377.8475051485326 674.48062992126 Td
1745
+ /F2.0 12 Tf
1746
+ <46> Tj
1747
+ ET
1748
+
1749
+ 0.000 0.000 0.000 scn
1750
+ 0.5 w
1751
+ 0.714 0.714 0.714 SCN
1752
+ 85.039 645.831 m
1753
+ 233.727 645.831 l
1754
+ S
1755
+ 1 w
1756
+ 0.000 0.000 0.000 SCN
1757
+
1758
+ BT
1759
+ 90.03937007874016 652.27662992126 Td
1760
+ /F2.0 12 Tf
1761
+ <417263686965> Tj
1762
+ ET
1763
+
1764
+ 0.000 0.000 0.000 scn
1765
+ 0.5 w
1766
+ 0.714 0.714 0.714 SCN
1767
+ 233.727 645.831 m
1768
+ 372.848 645.831 l
1769
+ S
1770
+ 1 w
1771
+ 0.000 0.000 0.000 SCN
1772
+
1773
+ BT
1774
+ 238.7274323960205 652.27662992126 Td
1775
+ /F2.0 12 Tf
1776
+ <3239> Tj
1777
+ ET
1778
+
1779
+ 0.000 0.000 0.000 scn
1780
+ 0.5 w
1781
+ 0.714 0.714 0.714 SCN
1782
+ 372.848 645.831 m
1783
+ 510.241 645.831 l
1784
+ S
1785
+ 1 w
1786
+ 0.000 0.000 0.000 SCN
1787
+
1788
+ BT
1789
+ 377.8475051485326 652.27662992126 Td
1790
+ /F2.0 12 Tf
1791
+ <4d> Tj
1792
+ ET
1793
+
1794
+ 0.000 0.000 0.000 scn
1795
+ 1 w
1796
+ 0.000 0.000 0.000 SCN
1797
+
1798
+ BT
1799
+ 90.03937007874016 630.07262992126 Td
1800
+ /F2.0 12 Tf
1801
+ <42656c6c6f> Tj
1802
+ ET
1803
+
1804
+ 0.000 0.000 0.000 scn
1805
+ 1 w
1806
+ 0.000 0.000 0.000 SCN
1807
+
1808
+ BT
1809
+ 238.7274323960205 630.07262992126 Td
1810
+ /F2.0 12 Tf
1811
+ <3435> Tj
1812
+ ET
1813
+
1814
+ 0.000 0.000 0.000 scn
1815
+ 1 w
1816
+ 0.000 0.000 0.000 SCN
1817
+
1818
+ BT
1819
+ 377.8475051485326 630.07262992126 Td
1820
+ /F2.0 12 Tf
1821
+ <46> Tj
1822
+ ET
1823
+
1824
+ 0.000 0.000 0.000 scn
1825
+ 0.5 w
1826
+ 0.714 0.714 0.714 SCN
1827
+ 85.039 601.423 m
1828
+ 233.727 601.423 l
1829
+ S
1830
+ 1 w
1831
+ 0.000 0.000 0.000 SCN
1832
+
1833
+ BT
1834
+ 90.03937007874016 607.8686299212601 Td
1835
+ /F2.0 12 Tf
1836
+ <4a6f616e> Tj
1837
+ ET
1838
+
1839
+ 0.000 0.000 0.000 scn
1840
+ 0.5 w
1841
+ 0.714 0.714 0.714 SCN
1842
+ 233.727 601.423 m
1843
+ 372.848 601.423 l
1844
+ S
1845
+ 1 w
1846
+ 0.000 0.000 0.000 SCN
1847
+
1848
+ BT
1849
+ 238.7274323960205 607.8686299212601 Td
1850
+ /F2.0 12 Tf
1851
+ <3234> Tj
1852
+ ET
1853
+
1854
+ 0.000 0.000 0.000 scn
1855
+ 0.5 w
1856
+ 0.714 0.714 0.714 SCN
1857
+ 372.848 601.423 m
1858
+ 510.241 601.423 l
1859
+ S
1860
+ 1 w
1861
+ 0.000 0.000 0.000 SCN
1862
+
1863
+ BT
1864
+ 377.8475051485326 607.8686299212601 Td
1865
+ /F2.0 12 Tf
1866
+ <46> Tj
1867
+ ET
1868
+
1869
+ 0.000 0.000 0.000 scn
1870
+ 0.5 w
1871
+ 0.714 0.714 0.714 SCN
1872
+ 85.039 579.219 m
1873
+ 233.727 579.219 l
1874
+ S
1875
+ 1 w
1876
+ 0.000 0.000 0.000 SCN
1877
+
1878
+ BT
1879
+ 90.03937007874016 585.6646299212601 Td
1880
+ /F2.0 12 Tf
1881
+ <417263686965> Tj
1882
+ ET
1883
+
1884
+ 0.000 0.000 0.000 scn
1885
+ 0.5 w
1886
+ 0.714 0.714 0.714 SCN
1887
+ 233.727 579.219 m
1888
+ 372.848 579.219 l
1889
+ S
1890
+ 1 w
1891
+ 0.000 0.000 0.000 SCN
1892
+
1893
+ BT
1894
+ 238.7274323960205 585.6646299212601 Td
1895
+ /F2.0 12 Tf
1896
+ <3239> Tj
1897
+ ET
1898
+
1899
+ 0.000 0.000 0.000 scn
1900
+ 0.5 w
1901
+ 0.714 0.714 0.714 SCN
1902
+ 372.848 579.219 m
1903
+ 510.241 579.219 l
1904
+ S
1905
+ 1 w
1906
+ 0.000 0.000 0.000 SCN
1907
+
1908
+ BT
1909
+ 377.8475051485326 585.6646299212601 Td
1910
+ /F2.0 12 Tf
1911
+ <4d> Tj
1912
+ ET
1913
+
1914
+ 0.000 0.000 0.000 scn
1915
+ 1 w
1916
+ 0.000 0.000 0.000 SCN
1917
+
1918
+ BT
1919
+ 90.03937007874016 563.4606299212602 Td
1920
+ /F2.0 12 Tf
1921
+ <42656c6c6f> Tj
1922
+ ET
1923
+
1924
+ 0.000 0.000 0.000 scn
1925
+ 1 w
1926
+ 0.000 0.000 0.000 SCN
1927
+
1928
+ BT
1929
+ 238.7274323960205 563.4606299212602 Td
1930
+ /F2.0 12 Tf
1931
+ <3435> Tj
1932
+ ET
1933
+
1934
+ 0.000 0.000 0.000 scn
1935
+ 1 w
1936
+ 0.000 0.000 0.000 SCN
1937
+
1938
+ BT
1939
+ 377.8475051485326 563.4606299212602 Td
1940
+ /F2.0 12 Tf
1941
+ <46> Tj
1942
+ ET
1943
+
1944
+ 0.000 0.000 0.000 scn
1945
+
1946
+ BT
1947
+ 85.03937007874016 519.3561732283467 Td
1948
+ /F1.0 12 Tf
1949
+ [<5468697320697320746865206e657874206c696e6520616674> 10.0 <657220746865207461626c652e>] TJ
1950
+ ET
1951
+
1952
+ 0.714 0.714 0.714 scn
1953
+
1954
+ BT
1955
+ 284.93 77.27937007874014 Td
1956
+ /F2.0 10 Tf
1957
+ <32206f662032> Tj
1958
+ ET
1959
+
1960
+ Q
1961
+
1962
+ endstream
1963
+ endobj
1964
+ 9 0 obj
1965
+ << /Type /Page
1966
+ /Parent 3 0 R
1967
+ /MediaBox [0 0 595.28 841.89]
1968
+ /Contents 8 0 R
1969
+ /Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
1970
+ /Font << /F1.0 6 0 R
1971
+ /F2.0 7 0 R
1972
+ >>
1973
+ >>
1974
+ >>
1975
+ endobj
1976
+ 10 0 obj
1977
+ [5 0 R /Fit]
1978
+ endobj
1979
+ 11 0 obj
1980
+ << /Type /Names
1981
+ /Dests 12 0 R
1982
+ >>
1983
+ endobj
1984
+ 12 0 obj
1985
+ << /Names [(page1) 10 0 R (page2) 13 0 R]
1986
+ >>
1987
+ endobj
1988
+ 13 0 obj
1989
+ [9 0 R /Fit]
1990
+ endobj
1991
+ 14 0 obj
1992
+ << /Type /Outlines
1993
+ /Count 0
1994
+ /First null
1995
+ /Last null
1996
+ >>
1997
+ endobj
1998
+ 15 0 obj
1999
+ << /Length 8339
2000
+ /Length1 13424
2001
+ /Filter /FlateDecode
2002
+ >>
2003
+ stream
2004
+ x��y tו�{30��!�H 
2005
+ �G�er��")�)A$�E���X���L��mś�����qG�7�e;R���������>=���^7ݓu�Q"ol�nK���P��xO���13��w�}���"�ң*�@ύN�g��&'�.B�<1�0��\��}!�צR�������ζ��̽���@�Ϡ?59���k��T��t��Y�k����z��#_���П���l*�a~�^������L|:Q�b�����~��%B�����ٹ�����߃�;1��g'�����*B@_�=����v�"�0SFD> M%�g/��� v]�@z)�cS�*n=H�AZ��`�2�-V�lv��
2006
+ �����.E@ο`~
2007
+ 2!'z�22�>����7�:�Nũ5Z�����6��3�n-4�J�U�U(1Â�m�<��u�G��Ig5��fS�
2008
+ Q! g �+|���X��J���.�`�yĖ�-�X��lә�t��Fej�˼}{8Eb���X,v��f��
2009
+ ��ϗ���ɫ8�/�^U\�
2010
+ �;��{���
2011
+ }��̧�׳uQ�`�g�*����o^kH��57�M�m�
2012
+ K,����Zp�4���Z>m95�6�`�c6�qO��Aé������U�P1���Q>��*� �5���x��>����<��9(E��5!I1D3�ؑ�t5`���cA������Hlk��|��2��D5EM�V���]mM���&c‘�{FǏ�V��J��#�5 ^�"r�r⏙�Q���e�&��cM)~�+���?m��fl.A>�e�<�§������<��9^��2oF�и��@7ĸ�̖�����F{tN<x�<`HW9C{h�S
2013
+ ���w+z�V���7y�£�wU�� ���gD=�!*o;ay���`��~3Y�#��03'�x?�ilE
2014
+ �<��I�*�;������a��"5ՕLY%+šCU����f�0k#!
2015
+ �u���ܕw�J["E�O7L8���u��6{y���Y��Z[�-rn�B>�N� �Ww�z��Y��TZ�ԙ�֭�F�F��O/H9�.S>�B;Āz?��1fӋ�0�ȑƱMX��Q��p���ގ�V�Qa��k�����
2016
+ s�
2017
+ ֗�YE.t��6����/�S�rȌ|h��y�I����3��4Gb�#m���Q7w�؋��b�n�}�׃�_&:�ƍWM��? �gr:�A,!‚΂Q��`U�(�U�� Փ�Eج�Ci����@m^//�ZC����� �lb�hi�A>���T4�������
2018
+ �C]g�i@u���5v~�$��o��J���0ָs��Ļ���P� �PXm+?4�*`�ï���ҶD�α�rZHz� b��ѯ.CZ�z!]�]��
2019
+ �v�XM�L,�=U����Z�'-թ��{��7��~��0�Et��թ�tZ�I��
2020
+ !��cH�=4H�+~��v ��!�4J<�dNpfS_���=[�1�'Rb�
2021
+ �S��'��a��滘�j�b)P(��}�g�@�Ǽ��EE�xÙ���E>�������_��e:P'����Y���0T�Q( ��g(R^���.��7��m��#���ݹO�g�+-�[�`����� �v�<�kמR,��t���eԏ��X-|/H�D��׀��0����g��5L['3˯>��լd2
2022
+ a�h�m��'.f�4'����=�޺J���$8x
2023
+ xG������d�T�2��IeJ�F��B)(d
2024
+
2025
+ �t���dJ�4�:��93��&Ȃ<�¢�׃��y���s���NSg���M
2026
+ [�sY�XVI�v�Z�wIy��v�h8�C�D���m�=;Y��.��� �*嶋n�vG=����*��Z�>!�iq�<�ޝ�AcL�
2027
+ ���r\L�
2028
+ � B�� �?���B�٤������*�*l.Ma}q�ð�fǺ�;9H�(�b80��XJ)'�u��@�@�h��q�\���m�q�i�Tw��e����"�����p�z^x��M�/�n *���Yc����2n�S-ȋ�ty�����ds-���<�<�C�it޷�Åą�(<��AC3��� ���lv�ec_��*������7͈�~�7*��ԭ2SU]J3)'w��`M���@��mi�%7.�k/+k��;Aމ�'&�e�{�>&T"��
2029
+ �n�p��)��F8���H�;�a��dL
2030
+ \i�}B�¼��q)ym��0��|#��U(�����م�Ig��C}�$�2�w\F%�I5�c�-$��q��j'h$H4h���R'��K�Ɗemѣ�t��TT��8+<��巆���$q
2031
+ �̀ө����U���Y�.~N����0.\�n��p6(U��H�{ �ߋ6����� ��-e�VDz���B���� �Q�������^�����1,�:u��.�!� ��I7Ɵl����ԕ;���E��(��v���Jvl�m�m0�m�_q�K�*���+T�Ǚ�>S�ͬ1�ђ�N��O����v���B�^W���b-���y]�l׻z]�u,��9ud�]$Q���<��
2032
+ ޞY`W��"���^=Sg��_C�ܹ'b���e6AN1BJ����G�0,���̐T~|؟�j�q�?v�q�Mvp��/:h&�}��Ϋ(A0ّ�N�Tڋj�85�������� R���͋\�нr�tK{��P�>�b�/0`)�hq���� X}�RA7`XWH��s#������zhx�dQ$ɞAv�ʃ���#���"�u��>���BL'���[��y8������r nw�e����u�y�֧����,
2033
+ m�m�UZYe��a_c�����1�7,ˊ�[<3���^�`�ƫa8MI���!t�;�|��c|�g�,~�ŏ��(�E��Y��Cۡ�Pu*;��3��2v,v�D*��1��cǜpK*�8����eF�KN^�� �`�ɿ~�ı;��+�E����^[�����'Y�'}��2e�۩������
2034
+ �����~S�`٘f���h�yܚu��g2��M������cc��'0�txff�4�<:
2035
+ MM�K�gf�O��tb����Á�+ڬ�j���Y�;: �`��ڢQX4F���Ww�y�JZ�ּh�����*2�SD�;�E#����2�^-�i��NK����0vh;5�,%�mIVvp�p;��e]��7�cF㱭U�J��������,ꨋB���KZ���b)/���x�����}�*��n��rm�^kkyD�ݫ�~���V��������?��0ϲ��[�(4��JN9�|V�3� �������+�_h*u�u?����� *�{��'Ǽ��3V�cj�hP��A}pG�0����n��]P���&lB����9��q�cT�G��d�Ȍs` ���s�h����P.�tm�g���F�Ȁ�!T�<
2036
+ �!���3��Q�9�ϒ��1Ƭ�W�7�/��O�j��a�����C¡<�ƞF$"��
2037
+ X.� mc�G?��~X��WE��#a���;]n��)ф�PmE����V� �#r2��� z�G{�ڏ�At.\8�&o�� ��~z#%�����W΀&��p4� gQ1fd8�Zp@� %���H�gd����pr�d���r[�D|^�Q�Sd_�p��2�C�>��S2\
2038
+ 5�F:��J� 4�2`���UA��� `���(���
2039
+ ����l�=J��*���s�$&��s�3 `q������T&5��O��;��ɨBUe�V�<�p�.��8̖���{Lm�
2040
+ ��S���2n�������CO��f�'���Z��9��š)�I�y���8&��i�'�O���[�%CgOn�' 2�B�����;���T6�e�6�y����{田�� ��BkF��AZ!MyL��lȆ5�*�ji*���,]k�L�ȝ���Sk���)ќ��yʓd�I*EF��8Տ|H;C�r����ˣT��u���?B�"A禨���$
2041
+ ���ϢO1�����'+����'���X�������3���+,o#. s����.��b�"���^{��g��e���)&�/������=�=F<�w~�<;|?w�y��m����6����-���ɳJ�yV�}��Č�Y���k\�}��7��x����S'�O�S�.�L���W ���'�_��o{�c����U��}���أc��Gq���G��?��G����(�xy�����'�c�w�L���K���1/�$,U-�}K�K a��K��ۖ��!`��g^;��g�3 �>x����/��{z���/�7��0��"�{`!�=��:�� c�/2!�}�ܑ�������f\��x��Ǽ���7�
2042
+ ��ڻB(�e�HX��"pY�s��Z��6Ho���_������ܩ�� ��2�:<����w�����tS�� �t�G�3�.ܵ�)Tɧ�/�_��ރ��y���}��4D��9 B�kƈr��\"���H��,�ף,㯿��.��'��Z�7x�W�
2043
+ ̂�8DJ�V�zǯ��B�Z�����s7�] G��� #��>����d�K0s�.�H�0��q;���
2044
+ endstream
2045
+ endobj
2046
+ 16 0 obj
2047
+ << /Type /FontDescriptor
2048
+ /FontName /AAAAAL+Ubuntu
2049
+ /FontFile2 15 0 R
2050
+ /FontBBox [-167 -189 1561 962]
2051
+ /Flags 4
2052
+ /StemV 0
2053
+ /ItalicAngle 0.0
2054
+ /Ascent 776
2055
+ /Descent -185
2056
+ /CapHeight 693
2057
+ /XHeight 520
2058
+ >>
2059
+ endobj
2060
+ 17 0 obj
2061
+ << /Filter /FlateDecode
2062
+ /Length 1286
2063
+ >>
2064
+ stream
2065
+ 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
2066
+ ���J�����31���x;��
2067
+ ���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�
2068
+ endstream
2069
+ endobj
2070
+ 18 0 obj
2071
+ [231 500 500 500 500 500 500 500 500 500 500 500 246 500 246 500 500 500 500 500 500 500 500 500 500 500 246 500 500 500 500 500 500 663 500 500 500 500 500 500 500 500 500 500 500 500 728 500 500 500 500 532 565 500 500 500 500 500 500 500 500 500 500 500 500 522 589 500 589 559 386 578 571 253 500 500 273 861 574 590 500 500 386 446 402 574 500 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]
2072
+ endobj
2073
+ 19 0 obj
2074
+ << /Length 7191
2075
+ /Length1 12008
2076
+ /Filter /FlateDecode
2077
+ >>
2078
+ stream
2079
+ x��zmp�u轻v�� �Xp�$@��a�X� EE�%J�D2�L�ID$A�$:�#;�إ���L�i�I�6��jEr*7I�תn_^�ɛ���i\7M[��1U��Cic�swA���Lg:xw�=��s��=��;i!F򩹕��xM�4@���^\�\(��7�{��=���K�K�}�_p�K+�+��1����0�XZʤ���S0� ������X��a,�<����= c�3k�|�~�;�O�����J��ǟ�1�g�r�?�����Z�#k뙵��\qR�<�����r鋩����"Ĥ�]*��g�^B���XC �Ġk"?�Cp<1�]Z+��0C��� `]:�D������M�{?����}��D ��0:y*�f��o�$�z�u*�������[[���Z������w�qn��K����Hs���}7
2080
+ Ϝ�[>����W�g��-T�E��Qx߿�r3�}��j�<0o��^�!��(�=N�Ք�Ie�(˲��d4�n��Q�`)�I6�fs8�!s�̋fq���2"�&��d0��%��e��v�Joĥ7.L��bӑ��Ҟ�_ڎ��<P( |1Q��)��Ztɸ���Lk��9u�5ڭ �uz��r����NO���N?r�Bf!��9��o�@����$���� 8�B���CV�\.���AG@�$PT=*�Vty�H-v�N I�[F�x`Pv0o�}\Z��sΪPW��K[,u�4qJNNt�5Y2>�T�דL���ò��ݝ� ��������;~az�қ��\���(�˵�E9t.S@GA� �M��r�A�_�
2081
+ }�qM�i�3�������ڞ�����;Qw����
2082
+ v�Dk.o �o#�nLt�t
2083
+ �;<�HO��+g�ɝM��l���ֺ�X�n��,�����ͤM�69�ω��X����W,��D�"?L9�X-���L��X�Uƾ�)��Ϋ�f�M�Ǿ���+@[�s�e�]F�U�D7��.�vpar�F��� ��`#�����}G�#P��-� !4�������6}V�"[8Kyg�>`1��dc���t\�!���4|Jɤv_�Oď���eo���C=ѐ(�+5U�O�M|<���^�C�H��Y�5�j�r4��VEfe�L���#�(�����]�y/�|Qm���p@vHd$��U$+NV����T��n
2084
+ ��UpbjnAgJv�8Tﰤ�W�j�� paA�TЋ 89g!��������{@��`�}#�D���H$�y����ۑ��t�ɸ?���������sT?Bk��z'(G�,y`)w��:��a�/[j�-M5��i0�\=��@��O��].�y�䴋5M-�Z�|�tzq*帶���"��d�c/�|G�Ͽ���'w~Mk�9RS���ȭ-�?����D:�7T��7[��`O/���yK
2085
+ �ɱ�OR����L{���mK��V�7ܯt�q�OeR�ψ��ĂW�����Ǧ�b�5���9x|��N�P+<�8^ܘ`�x'pcF�(P���d3�e�2jq�IW�N�c�F ��Ī9�vR?z��Tk�=ǭ�pt)��#���.ڭ���c_�j�4\V��F��葎�8w4����;�[����\hrI*����5�?
2086
+ ���S�'4v������3"�&�\Se1f�V���/Ur\`�^���&��<o��a,a&K�;P8%\�^�J$F+�׹>�?�s����T��\�5��'�����5ɉ��������2� r;�F���q+�ET�뚁�pW%���e�d��a�����"Fq%:�&QS��v������U^o6�� _e��f�������䴪HN����yنf��^��hV⤢S���m������$X��q�a�fś�
2087
+ ��k��E�v�R���ְ������3�Z�]��{�_��������e����],�U@�~m�,e�mh,��X��MWk,c�5�g|_�q�1r��k2�<�y��3��6�<d0��R�U�{�d� ��D,}�������v�Y��>�\道�+��� V�*���
2088
+ sa/ 㳌=��q�4oy�X*�:6�o�`�a�Ƴ'�����a ӊ3��e�y'�>od��fzx�)�@��K8T�7K��?i��Rنs*�smm�J�=85::��rG�����?V_l�h:�O���u�l�$�j�A��]I��ٯJV�����d�E\����"���.�]lmhL�}� �i1v�6��ct���~�=� 4J����8��-�w�CƟ�n �Y�h��#��߷lY�8�>���B赑���š
2089
+ ���z���@�m��]2�}n��F������2���������������J"12I�Q6��a��Fi��n pA{�o�N��������-��"�K�S}�}D%�? ��{�t�&_� ��s�#g�;!2�N���u���O9�����G��
2090
+ �Z ��f�BR �0�0N�r����d����=9���p#����H�SH#�������@��p4���y"S��
2091
+ ���b��:�@�`
2092
+ �s�_��̓(���� ���9�
2093
+ Q�# y>��.�ʗs��
2094
+ ��%�Nvem9��Y-� h�lHfW��*�/fVq�}RiT �k��4D,ȧW����zv�I��g��ɵ��Y@�2���:@pO�\I�n��A¥�j$Zȭ�s���la�./rk {%7�]��s����2��[�@�G��9���`����Wbvunyc�^^f8���ō�"@6�6z v�m�K`j���6PK0*[�W���*���%�>/�-e�s���Ҧ|y);�$�A�@���.șK��MFO�/�6��lFNςL���z�r ��hp�b��d�1���L��]�,�2����41m]�ș+k8�44
2095
+ $�[�t��,ȸ=LF'
2096
+ K�^��E&��>�+0�e^�aksLLg���E��c5
2097
+ �6 k%��*M��f����,;p�g~O�ef��e��"�}Q���;�5[�p/����<l��������`��e˺�W� �hsY�w�j=��Ƭ� ��LK��� :���u_��/�8Amd�g�is��ĸ[�e�0�gu;�K�%޳�:�Av.ExI�G��Ͳ���Z1����l�/s�^N���}�u��ʐ+�;�5��(���YoyOR\S`W�@���i�t
2098
+ ���E�ɋ�;[�p["�3ۼ2���D�Oâ-~pk���+R<�������D����`1����6�Ec���[? ����B�:�T+��`E�S̗�xA�pyy�JfaP�>6��!AV~����d����;���q��^��[>���T�3�ߥ%������g���r��������̖�Jiz;;QTS�QӺ��7Zb���!�����bLY+z�~
2099
+ K�:O�ڢ����=��}ޗ5
2100
+ ��zjeC]3��8����`�ֽ�쁑6߹7����8�P��dS6>��{�ᇦ����-Q9qf )+:A"o/pY���ݦ���7e(�Ȓ<����{}v놪n�
2101
+ endstream
2102
+ endobj
2103
+ 20 0 obj
2104
+ << /Type /FontDescriptor
2105
+ /FontName /AAAAAM+Ubuntu-Light
2106
+ /FontFile2 19 0 R
2107
+ /FontBBox [-157 -196 1551 958]
2108
+ /Flags 4
2109
+ /StemV 0
2110
+ /ItalicAngle 0.0
2111
+ /Ascent 776
2112
+ /Descent -185
2113
+ /CapHeight 693
2114
+ /XHeight 517
2115
+ >>
2116
+ endobj
2117
+ 21 0 obj
2118
+ << /Filter /FlateDecode
2119
+ /Length 1286
2120
+ >>
2121
+ stream
2122
+ 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
2123
+ ���J�����31���x;��
2124
+ ���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�
2125
+ endstream
2126
+ endobj
2127
+ 22 0 obj
2128
+ [228 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 564 564 500 564 564 500 500 500 564 500 500 500 500 500 500 500 641 630 500 500 500 520 500 500 500 487 500 500 865 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 509 500 460 500 548 376 500 569 237 500 500 255 500 569 582 500 500 374 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500 500]
2129
+ endobj
2130
+ xref
2131
+ 0 23
2132
+ 0000000000 65535 f
2133
+ 0000000015 00000 n
2134
+ 0000000109 00000 n
2135
+ 0000000189 00000 n
2136
+ 0000000252 00000 n
2137
+ 0000020120 00000 n
2138
+ 0000020312 00000 n
2139
+ 0000020473 00000 n
2140
+ 0000020640 00000 n
2141
+ 0000027250 00000 n
2142
+ 0000027442 00000 n
2143
+ 0000027471 00000 n
2144
+ 0000027520 00000 n
2145
+ 0000027581 00000 n
2146
+ 0000027610 00000 n
2147
+ 0000027680 00000 n
2148
+ 0000036108 00000 n
2149
+ 0000036315 00000 n
2150
+ 0000037675 00000 n
2151
+ 0000038589 00000 n
2152
+ 0000045869 00000 n
2153
+ 0000046082 00000 n
2154
+ 0000047442 00000 n
2155
+ trailer
2156
+ << /Size 23
2157
+ /Root 2 0 R
2158
+ /Info 1 0 R
2159
+ >>
2160
+ startxref
2161
+ 48356
2162
+ %%EOF