prawn-graph 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (317) hide show
  1. data/README.markdown +3 -0
  2. data/Rakefile +34 -0
  3. data/examples/example_helper.rb +10 -0
  4. data/examples/graph/advanced_bar_chart.rb +22 -0
  5. data/examples/graph/bar_chart.rb +18 -0
  6. data/examples/graph/line_chart.rb +18 -0
  7. data/lib/prawn/graph.rb +94 -0
  8. data/lib/prawn/graph/bar.rb +172 -0
  9. data/lib/prawn/graph/chart.rb +4 -0
  10. data/lib/prawn/graph/errors.rb +6 -0
  11. data/lib/prawn/graph/grid.rb +43 -0
  12. data/lib/prawn/graph/line.rb +43 -0
  13. data/vendor/prawn-core/COPYING +340 -0
  14. data/vendor/prawn-core/HACKING +46 -0
  15. data/vendor/prawn-core/LICENSE +56 -0
  16. data/vendor/prawn-core/README +138 -0
  17. data/vendor/prawn-core/Rakefile +75 -0
  18. data/vendor/prawn-core/bench/afm_text_bench.rb +18 -0
  19. data/vendor/prawn-core/bench/png_type_6.rb +15 -0
  20. data/vendor/prawn-core/bench/ttf_text_bench.rb +19 -0
  21. data/vendor/prawn-core/bugs/indentation_across_pagebreaks.rb +15 -0
  22. data/vendor/prawn-core/bugs/resolved/canvas_sets_y_to_0.rb +15 -0
  23. data/vendor/prawn-core/bugs/resolved/png_barcode_issue.rb +11 -0
  24. data/vendor/prawn-core/bugs/resolved/transaction_page_number_issue_79.rb +21 -0
  25. data/vendor/prawn-core/bugs/resolved/ttf_fails_in_transactions.rb +24 -0
  26. data/vendor/prawn-core/data/encodings/win_ansi.txt +29 -0
  27. data/vendor/prawn-core/data/fonts/Action Man.dfont +0 -0
  28. data/vendor/prawn-core/data/fonts/Activa.ttf +0 -0
  29. data/vendor/prawn-core/data/fonts/Chalkboard.ttf +0 -0
  30. data/vendor/prawn-core/data/fonts/Courier-Bold.afm +342 -0
  31. data/vendor/prawn-core/data/fonts/Courier-BoldOblique.afm +342 -0
  32. data/vendor/prawn-core/data/fonts/Courier-Oblique.afm +342 -0
  33. data/vendor/prawn-core/data/fonts/Courier.afm +342 -0
  34. data/vendor/prawn-core/data/fonts/DejaVuSans.ttf +0 -0
  35. data/vendor/prawn-core/data/fonts/Dustismo_Roman.ttf +0 -0
  36. data/vendor/prawn-core/data/fonts/Helvetica-Bold.afm +2827 -0
  37. data/vendor/prawn-core/data/fonts/Helvetica-BoldOblique.afm +2827 -0
  38. data/vendor/prawn-core/data/fonts/Helvetica-Oblique.afm +3051 -0
  39. data/vendor/prawn-core/data/fonts/Helvetica.afm +3051 -0
  40. data/vendor/prawn-core/data/fonts/MustRead.html +19 -0
  41. data/vendor/prawn-core/data/fonts/Symbol.afm +213 -0
  42. data/vendor/prawn-core/data/fonts/Times-Bold.afm +2588 -0
  43. data/vendor/prawn-core/data/fonts/Times-BoldItalic.afm +2384 -0
  44. data/vendor/prawn-core/data/fonts/Times-Italic.afm +2667 -0
  45. data/vendor/prawn-core/data/fonts/Times-Roman.afm +2419 -0
  46. data/vendor/prawn-core/data/fonts/ZapfDingbats.afm +225 -0
  47. data/vendor/prawn-core/data/fonts/comicsans.ttf +0 -0
  48. data/vendor/prawn-core/data/fonts/gkai00mp.ttf +0 -0
  49. data/vendor/prawn-core/data/images/16bit.alpha +0 -0
  50. data/vendor/prawn-core/data/images/16bit.dat +0 -0
  51. data/vendor/prawn-core/data/images/16bit.png +0 -0
  52. data/vendor/prawn-core/data/images/arrow.png +0 -0
  53. data/vendor/prawn-core/data/images/arrow2.png +0 -0
  54. data/vendor/prawn-core/data/images/barcode_issue.png +0 -0
  55. data/vendor/prawn-core/data/images/dice.alpha +0 -0
  56. data/vendor/prawn-core/data/images/dice.dat +0 -0
  57. data/vendor/prawn-core/data/images/dice.png +0 -0
  58. data/vendor/prawn-core/data/images/dice_interlaced.png +0 -0
  59. data/vendor/prawn-core/data/images/fractal.jpg +0 -0
  60. data/vendor/prawn-core/data/images/letterhead.jpg +0 -0
  61. data/vendor/prawn-core/data/images/page_white_text.alpha +0 -0
  62. data/vendor/prawn-core/data/images/page_white_text.dat +0 -0
  63. data/vendor/prawn-core/data/images/page_white_text.png +0 -0
  64. data/vendor/prawn-core/data/images/pigs.jpg +0 -0
  65. data/vendor/prawn-core/data/images/rails.dat +0 -0
  66. data/vendor/prawn-core/data/images/rails.png +0 -0
  67. data/vendor/prawn-core/data/images/ruport.png +0 -0
  68. data/vendor/prawn-core/data/images/ruport_data.dat +0 -0
  69. data/vendor/prawn-core/data/images/ruport_transparent.png +0 -0
  70. data/vendor/prawn-core/data/images/ruport_type0.png +0 -0
  71. data/vendor/prawn-core/data/images/stef.jpg +0 -0
  72. data/vendor/prawn-core/data/images/tru256.bmp +0 -0
  73. data/vendor/prawn-core/data/images/web-links.dat +1 -0
  74. data/vendor/prawn-core/data/images/web-links.png +0 -0
  75. data/vendor/prawn-core/data/shift_jis_text.txt +1 -0
  76. data/vendor/prawn-core/examples/bounding_box/bounding_boxes.rb +43 -0
  77. data/vendor/prawn-core/examples/bounding_box/indentation.rb +34 -0
  78. data/vendor/prawn-core/examples/bounding_box/russian_boxes.rb +36 -0
  79. data/vendor/prawn-core/examples/bounding_box/stretched_nesting.rb +67 -0
  80. data/vendor/prawn-core/examples/column_box/column_box_example.rb +43 -0
  81. data/vendor/prawn-core/examples/example_helper.rb +3 -0
  82. data/vendor/prawn-core/examples/general/background.rb +23 -0
  83. data/vendor/prawn-core/examples/general/canvas.rb +15 -0
  84. data/vendor/prawn-core/examples/general/context_sensitive_headers.rb +37 -0
  85. data/vendor/prawn-core/examples/general/float.rb +11 -0
  86. data/vendor/prawn-core/examples/general/margin.rb +36 -0
  87. data/vendor/prawn-core/examples/general/measurement_units.rb +51 -0
  88. data/vendor/prawn-core/examples/general/metadata-info.rb +16 -0
  89. data/vendor/prawn-core/examples/general/multi_page_layout.rb +18 -0
  90. data/vendor/prawn-core/examples/general/outlines.rb +50 -0
  91. data/vendor/prawn-core/examples/general/page_geometry.rb +31 -0
  92. data/vendor/prawn-core/examples/general/page_numbering.rb +15 -0
  93. data/vendor/prawn-core/examples/general/repeaters.rb +47 -0
  94. data/vendor/prawn-core/examples/general/stamp.rb +41 -0
  95. data/vendor/prawn-core/examples/graphics/basic_images.rb +23 -0
  96. data/vendor/prawn-core/examples/graphics/cmyk.rb +12 -0
  97. data/vendor/prawn-core/examples/graphics/curves.rb +11 -0
  98. data/vendor/prawn-core/examples/graphics/hexagon.rb +13 -0
  99. data/vendor/prawn-core/examples/graphics/image_fit.rb +15 -0
  100. data/vendor/prawn-core/examples/graphics/image_flow.rb +37 -0
  101. data/vendor/prawn-core/examples/graphics/image_position.rb +17 -0
  102. data/vendor/prawn-core/examples/graphics/line.rb +32 -0
  103. data/vendor/prawn-core/examples/graphics/png_types.rb +22 -0
  104. data/vendor/prawn-core/examples/graphics/polygons.rb +16 -0
  105. data/vendor/prawn-core/examples/graphics/remote_images.rb +12 -0
  106. data/vendor/prawn-core/examples/graphics/rounded_polygons.rb +19 -0
  107. data/vendor/prawn-core/examples/graphics/rounded_rectangle.rb +20 -0
  108. data/vendor/prawn-core/examples/graphics/ruport_style_helpers.rb +19 -0
  109. data/vendor/prawn-core/examples/graphics/stroke_bounds.rb +20 -0
  110. data/vendor/prawn-core/examples/graphics/stroke_cap_and_join.rb +45 -0
  111. data/vendor/prawn-core/examples/graphics/stroke_dash.rb +42 -0
  112. data/vendor/prawn-core/examples/graphics/transformations.rb +52 -0
  113. data/vendor/prawn-core/examples/graphics/transparency.rb +26 -0
  114. data/vendor/prawn-core/examples/m17n/chinese_text_wrapping.rb +17 -0
  115. data/vendor/prawn-core/examples/m17n/euro.rb +15 -0
  116. data/vendor/prawn-core/examples/m17n/sjis.rb +28 -0
  117. data/vendor/prawn-core/examples/m17n/utf8.rb +13 -0
  118. data/vendor/prawn-core/examples/m17n/win_ansi_charset.rb +54 -0
  119. data/vendor/prawn-core/examples/text/alignment.rb +18 -0
  120. data/vendor/prawn-core/examples/text/dfont.rb +48 -0
  121. data/vendor/prawn-core/examples/text/family_based_styling.rb +24 -0
  122. data/vendor/prawn-core/examples/text/font_calculations.rb +91 -0
  123. data/vendor/prawn-core/examples/text/font_size.rb +33 -0
  124. data/vendor/prawn-core/examples/text/indent_paragraphs.rb +18 -0
  125. data/vendor/prawn-core/examples/text/kerning.rb +30 -0
  126. data/vendor/prawn-core/examples/text/rotated.rb +98 -0
  127. data/vendor/prawn-core/examples/text/simple_text.rb +17 -0
  128. data/vendor/prawn-core/examples/text/simple_text_ttf.rb +17 -0
  129. data/vendor/prawn-core/examples/text/span.rb +29 -0
  130. data/vendor/prawn-core/examples/text/text_box.rb +88 -0
  131. data/vendor/prawn-core/examples/text/text_box_returning_excess.rb +51 -0
  132. data/vendor/prawn-core/examples/text/text_flow.rb +67 -0
  133. data/vendor/prawn-core/lib/prawn/byte_string.rb +7 -0
  134. data/vendor/prawn-core/lib/prawn/compatibility.rb +51 -0
  135. data/vendor/prawn-core/lib/prawn/core.rb +87 -0
  136. data/vendor/prawn-core/lib/prawn/core/page.rb +88 -0
  137. data/vendor/prawn-core/lib/prawn/core/text.rb +65 -0
  138. data/vendor/prawn-core/lib/prawn/document.rb +596 -0
  139. data/vendor/prawn-core/lib/prawn/document/annotations.rb +65 -0
  140. data/vendor/prawn-core/lib/prawn/document/bounding_box.rb +402 -0
  141. data/vendor/prawn-core/lib/prawn/document/column_box.rb +113 -0
  142. data/vendor/prawn-core/lib/prawn/document/destinations.rb +92 -0
  143. data/vendor/prawn-core/lib/prawn/document/graphics_state.rb +49 -0
  144. data/vendor/prawn-core/lib/prawn/document/internals.rb +153 -0
  145. data/vendor/prawn-core/lib/prawn/document/page_geometry.rb +136 -0
  146. data/vendor/prawn-core/lib/prawn/document/snapshot.rb +80 -0
  147. data/vendor/prawn-core/lib/prawn/document/span.rb +55 -0
  148. data/vendor/prawn-core/lib/prawn/encoding.rb +121 -0
  149. data/vendor/prawn-core/lib/prawn/errors.rb +83 -0
  150. data/vendor/prawn-core/lib/prawn/font.rb +329 -0
  151. data/vendor/prawn-core/lib/prawn/font/afm.rb +217 -0
  152. data/vendor/prawn-core/lib/prawn/font/dfont.rb +34 -0
  153. data/vendor/prawn-core/lib/prawn/font/ttf.rb +341 -0
  154. data/vendor/prawn-core/lib/prawn/graphics.rb +321 -0
  155. data/vendor/prawn-core/lib/prawn/graphics/cap_style.rb +38 -0
  156. data/vendor/prawn-core/lib/prawn/graphics/color.rb +205 -0
  157. data/vendor/prawn-core/lib/prawn/graphics/dash.rb +71 -0
  158. data/vendor/prawn-core/lib/prawn/graphics/join_style.rb +38 -0
  159. data/vendor/prawn-core/lib/prawn/graphics/transformation.rb +157 -0
  160. data/vendor/prawn-core/lib/prawn/graphics/transparency.rb +99 -0
  161. data/vendor/prawn-core/lib/prawn/images.rb +337 -0
  162. data/vendor/prawn-core/lib/prawn/images/jpg.rb +46 -0
  163. data/vendor/prawn-core/lib/prawn/images/png.rb +219 -0
  164. data/vendor/prawn-core/lib/prawn/literal_string.rb +14 -0
  165. data/vendor/prawn-core/lib/prawn/measurement_extensions.rb +46 -0
  166. data/vendor/prawn-core/lib/prawn/measurements.rb +71 -0
  167. data/vendor/prawn-core/lib/prawn/name_tree.rb +166 -0
  168. data/vendor/prawn-core/lib/prawn/object_store.rb +93 -0
  169. data/vendor/prawn-core/lib/prawn/outline.rb +278 -0
  170. data/vendor/prawn-core/lib/prawn/pdf_object.rb +83 -0
  171. data/vendor/prawn-core/lib/prawn/reference.rb +92 -0
  172. data/vendor/prawn-core/lib/prawn/repeater.rb +129 -0
  173. data/vendor/prawn-core/lib/prawn/stamp.rb +128 -0
  174. data/vendor/prawn-core/lib/prawn/text.rb +271 -0
  175. data/vendor/prawn-core/lib/prawn/text/box.rb +414 -0
  176. data/vendor/prawn-core/meta/Rakefile +36 -0
  177. data/vendor/prawn-core/meta/lib/prawn.rb +2 -0
  178. data/vendor/prawn-core/reference_pdfs/alignment.pdf +229 -0
  179. data/vendor/prawn-core/reference_pdfs/background.pdf +0 -0
  180. data/vendor/prawn-core/reference_pdfs/basic_images.pdf +0 -0
  181. data/vendor/prawn-core/reference_pdfs/bounding_boxes.pdf +128 -0
  182. data/vendor/prawn-core/reference_pdfs/canvas.pdf +78 -0
  183. data/vendor/prawn-core/reference_pdfs/chinese_flow.pdf +0 -0
  184. data/vendor/prawn-core/reference_pdfs/cmyk.pdf +0 -0
  185. data/vendor/prawn-core/reference_pdfs/column_box.pdf +3671 -0
  186. data/vendor/prawn-core/reference_pdfs/context_sensitive_headers.pdf +2331 -0
  187. data/vendor/prawn-core/reference_pdfs/curves.pdf +62 -0
  188. data/vendor/prawn-core/reference_pdfs/dfont.pdf +0 -0
  189. data/vendor/prawn-core/reference_pdfs/euro.pdf +75 -0
  190. data/vendor/prawn-core/reference_pdfs/family_style.pdf +286 -0
  191. data/vendor/prawn-core/reference_pdfs/flow.pdf +964 -0
  192. data/vendor/prawn-core/reference_pdfs/font_calculations.pdf +0 -0
  193. data/vendor/prawn-core/reference_pdfs/font_size.pdf +142 -0
  194. data/vendor/prawn-core/reference_pdfs/hexagon.pdf +61 -0
  195. data/vendor/prawn-core/reference_pdfs/image-flow.pdf +0 -0
  196. data/vendor/prawn-core/reference_pdfs/image_fit.pdf +0 -0
  197. data/vendor/prawn-core/reference_pdfs/image_position.pdf +0 -0
  198. data/vendor/prawn-core/reference_pdfs/indentation.pdf +124 -0
  199. data/vendor/prawn-core/reference_pdfs/kerning.pdf +0 -0
  200. data/vendor/prawn-core/reference_pdfs/landscape_a4.pdf +52 -0
  201. data/vendor/prawn-core/reference_pdfs/landscape_legal.pdf +52 -0
  202. data/vendor/prawn-core/reference_pdfs/landscape_letter.pdf +52 -0
  203. data/vendor/prawn-core/reference_pdfs/lines.pdf +116 -0
  204. data/vendor/prawn-core/reference_pdfs/margin.pdf +3850 -0
  205. data/vendor/prawn-core/reference_pdfs/measurement_units.pdf +4667 -0
  206. data/vendor/prawn-core/reference_pdfs/metadata-info.pdf +88 -0
  207. data/vendor/prawn-core/reference_pdfs/multi-layout.pdf +209 -0
  208. data/vendor/prawn-core/reference_pdfs/page_with_numbering.pdf +156 -0
  209. data/vendor/prawn-core/reference_pdfs/png_types.pdf +0 -0
  210. data/vendor/prawn-core/reference_pdfs/portrait_a4.pdf +52 -0
  211. data/vendor/prawn-core/reference_pdfs/portrait_legal.pdf +52 -0
  212. data/vendor/prawn-core/reference_pdfs/portrait_letter.pdf +52 -0
  213. data/vendor/prawn-core/reference_pdfs/pretty_polygons.pdf +122 -0
  214. data/vendor/prawn-core/reference_pdfs/remote_images.pdf +0 -0
  215. data/vendor/prawn-core/reference_pdfs/ruport.pdf +101 -0
  216. data/vendor/prawn-core/reference_pdfs/russian_boxes.pdf +2780 -0
  217. data/vendor/prawn-core/reference_pdfs/simple_text.pdf +136 -0
  218. data/vendor/prawn-core/reference_pdfs/simple_text_ttf.pdf +0 -0
  219. data/vendor/prawn-core/reference_pdfs/sjis.pdf +0 -0
  220. data/vendor/prawn-core/reference_pdfs/span.pdf +1975 -0
  221. data/vendor/prawn-core/reference_pdfs/stamp.pdf +649 -0
  222. data/vendor/prawn-core/reference_pdfs/stretched_nesting.pdf +200 -0
  223. data/vendor/prawn-core/reference_pdfs/stroke_bounds.pdf +135 -0
  224. data/vendor/prawn-core/reference_pdfs/stroke_cap_and_join.pdf +80 -0
  225. data/vendor/prawn-core/reference_pdfs/stroke_dash.pdf +457 -0
  226. data/vendor/prawn-core/reference_pdfs/text_box.pdf +962 -0
  227. data/vendor/prawn-core/reference_pdfs/text_box_returning_excess.pdf +271 -0
  228. data/vendor/prawn-core/reference_pdfs/transparency.pdf +347 -0
  229. data/vendor/prawn-core/reference_pdfs/utf8.pdf +0 -0
  230. data/vendor/prawn-core/reference_pdfs/win-ansi.pdf +6172 -0
  231. data/vendor/prawn-core/spec/annotations_spec.rb +90 -0
  232. data/vendor/prawn-core/spec/bounding_box_spec.rb +185 -0
  233. data/vendor/prawn-core/spec/destinations_spec.rb +15 -0
  234. data/vendor/prawn-core/spec/document_spec.rb +408 -0
  235. data/vendor/prawn-core/spec/font_spec.rb +314 -0
  236. data/vendor/prawn-core/spec/graphics_spec.rb +438 -0
  237. data/vendor/prawn-core/spec/images_spec.rb +79 -0
  238. data/vendor/prawn-core/spec/jpg_spec.rb +25 -0
  239. data/vendor/prawn-core/spec/measurement_units_spec.rb +23 -0
  240. data/vendor/prawn-core/spec/name_tree_spec.rb +112 -0
  241. data/vendor/prawn-core/spec/object_store_spec.rb +75 -0
  242. data/vendor/prawn-core/spec/outline_spec.rb +229 -0
  243. data/vendor/prawn-core/spec/pdf_object_spec.rb +122 -0
  244. data/vendor/prawn-core/spec/png_spec.rb +236 -0
  245. data/vendor/prawn-core/spec/reference_spec.rb +82 -0
  246. data/vendor/prawn-core/spec/repeater_spec.rb +96 -0
  247. data/vendor/prawn-core/spec/snapshot_spec.rb +138 -0
  248. data/vendor/prawn-core/spec/span_spec.rb +49 -0
  249. data/vendor/prawn-core/spec/spec_helper.rb +24 -0
  250. data/vendor/prawn-core/spec/stamp_spec.rb +108 -0
  251. data/vendor/prawn-core/spec/stroke_styles_spec.rb +152 -0
  252. data/vendor/prawn-core/spec/text_at_spec.rb +119 -0
  253. data/vendor/prawn-core/spec/text_box_spec.rb +603 -0
  254. data/vendor/prawn-core/spec/text_spec.rb +308 -0
  255. data/vendor/prawn-core/spec/transparency_spec.rb +75 -0
  256. data/vendor/prawn-core/vendor/pdf-inspector/README +18 -0
  257. data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector.rb +26 -0
  258. data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/extgstate.rb +18 -0
  259. data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/graphics.rb +131 -0
  260. data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/page.rb +25 -0
  261. data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/text.rb +31 -0
  262. data/vendor/prawn-core/vendor/pdf-inspector/lib/pdf/inspector/xobject.rb +19 -0
  263. data/vendor/prawn-core/vendor/ttfunk/data/fonts/DejaVuSans.ttf +0 -0
  264. data/vendor/prawn-core/vendor/ttfunk/data/fonts/comicsans.ttf +0 -0
  265. data/vendor/prawn-core/vendor/ttfunk/example.rb +45 -0
  266. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk.rb +102 -0
  267. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/directory.rb +17 -0
  268. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/encoding/mac_roman.rb +88 -0
  269. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/encoding/windows_1252.rb +69 -0
  270. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/reader.rb +44 -0
  271. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/resource_file.rb +78 -0
  272. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset.rb +18 -0
  273. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/base.rb +141 -0
  274. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/mac_roman.rb +46 -0
  275. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/unicode.rb +48 -0
  276. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/unicode_8bit.rb +63 -0
  277. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset/windows_1252.rb +51 -0
  278. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/subset_collection.rb +72 -0
  279. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table.rb +46 -0
  280. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/cmap.rb +34 -0
  281. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb +54 -0
  282. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/cmap/format04.rb +126 -0
  283. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/cmap/subtable.rb +79 -0
  284. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/glyf.rb +64 -0
  285. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/glyf/compound.rb +81 -0
  286. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/glyf/simple.rb +37 -0
  287. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/head.rb +44 -0
  288. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/hhea.rb +41 -0
  289. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/hmtx.rb +47 -0
  290. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/kern.rb +79 -0
  291. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/kern/format0.rb +62 -0
  292. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/loca.rb +43 -0
  293. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/maxp.rb +40 -0
  294. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/name.rb +119 -0
  295. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/os2.rb +78 -0
  296. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post.rb +91 -0
  297. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format10.rb +43 -0
  298. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format20.rb +35 -0
  299. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format25.rb +23 -0
  300. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format30.rb +17 -0
  301. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/post/format40.rb +17 -0
  302. data/vendor/prawn-core/vendor/ttfunk/lib/ttfunk/table/simple.rb +14 -0
  303. data/vendor/prawn-core/www/index.html +196 -0
  304. data/vendor/prawn-core/www/media/bounding_boxes.pdf +146 -0
  305. data/vendor/prawn-core/www/media/bounding_boxes.png +0 -0
  306. data/vendor/prawn-core/www/media/bounding_boxes_out.png +0 -0
  307. data/vendor/prawn-core/www/media/fancy_table.pdf +350 -0
  308. data/vendor/prawn-core/www/media/image.pdf +0 -0
  309. data/vendor/prawn-core/www/media/images.png +0 -0
  310. data/vendor/prawn-core/www/media/prawn_logo.png +0 -0
  311. data/vendor/prawn-core/www/media/tables.png +0 -0
  312. data/vendor/prawn-core/www/media/utf8.pdf +0 -0
  313. data/vendor/prawn-core/www/media/utf8.png +0 -0
  314. data/vendor/prawn-core/www/prawn-Chinese.html +113 -0
  315. data/vendor/prawn-core/www/prawn.css +86 -0
  316. data/vendor/prawn-core/www/twilight.css +266 -0
  317. metadata +374 -0
@@ -0,0 +1,2419 @@
1
+ StartFontMetrics 4.1
2
+ Comment Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved.
3
+ Comment Creation Date: Thu May 1 12:49:17 1997
4
+ Comment UniqueID 43068
5
+ Comment VMusage 43909 54934
6
+ FontName Times-Roman
7
+ FullName Times Roman
8
+ FamilyName Times
9
+ Weight Roman
10
+ ItalicAngle 0
11
+ IsFixedPitch false
12
+ CharacterSet ExtendedRoman
13
+ FontBBox -168 -218 1000 898
14
+ UnderlinePosition -100
15
+ UnderlineThickness 50
16
+ Version 002.000
17
+ Notice Copyright (c) 1985, 1987, 1989, 1990, 1993, 1997 Adobe Systems Incorporated. All Rights Reserved.Times is a trademark of Linotype-Hell AG and/or its subsidiaries.
18
+ EncodingScheme AdobeStandardEncoding
19
+ CapHeight 662
20
+ XHeight 450
21
+ Ascender 683
22
+ Descender -217
23
+ StdHW 28
24
+ StdVW 84
25
+ StartCharMetrics 315
26
+ C 32 ; WX 250 ; N space ; B 0 0 0 0 ;
27
+ C 33 ; WX 333 ; N exclam ; B 130 -9 238 676 ;
28
+ C 34 ; WX 408 ; N quotedbl ; B 77 431 331 676 ;
29
+ C 35 ; WX 500 ; N numbersign ; B 5 0 496 662 ;
30
+ C 36 ; WX 500 ; N dollar ; B 44 -87 457 727 ;
31
+ C 37 ; WX 833 ; N percent ; B 61 -13 772 676 ;
32
+ C 38 ; WX 778 ; N ampersand ; B 42 -13 750 676 ;
33
+ C 39 ; WX 333 ; N quoteright ; B 79 433 218 676 ;
34
+ C 40 ; WX 333 ; N parenleft ; B 48 -177 304 676 ;
35
+ C 41 ; WX 333 ; N parenright ; B 29 -177 285 676 ;
36
+ C 42 ; WX 500 ; N asterisk ; B 69 265 432 676 ;
37
+ C 43 ; WX 564 ; N plus ; B 30 0 534 506 ;
38
+ C 44 ; WX 250 ; N comma ; B 56 -141 195 102 ;
39
+ C 45 ; WX 333 ; N hyphen ; B 39 194 285 257 ;
40
+ C 46 ; WX 250 ; N period ; B 70 -11 181 100 ;
41
+ C 47 ; WX 278 ; N slash ; B -9 -14 287 676 ;
42
+ C 48 ; WX 500 ; N zero ; B 24 -14 476 676 ;
43
+ C 49 ; WX 500 ; N one ; B 111 0 394 676 ;
44
+ C 50 ; WX 500 ; N two ; B 30 0 475 676 ;
45
+ C 51 ; WX 500 ; N three ; B 43 -14 431 676 ;
46
+ C 52 ; WX 500 ; N four ; B 12 0 472 676 ;
47
+ C 53 ; WX 500 ; N five ; B 32 -14 438 688 ;
48
+ C 54 ; WX 500 ; N six ; B 34 -14 468 684 ;
49
+ C 55 ; WX 500 ; N seven ; B 20 -8 449 662 ;
50
+ C 56 ; WX 500 ; N eight ; B 56 -14 445 676 ;
51
+ C 57 ; WX 500 ; N nine ; B 30 -22 459 676 ;
52
+ C 58 ; WX 278 ; N colon ; B 81 -11 192 459 ;
53
+ C 59 ; WX 278 ; N semicolon ; B 80 -141 219 459 ;
54
+ C 60 ; WX 564 ; N less ; B 28 -8 536 514 ;
55
+ C 61 ; WX 564 ; N equal ; B 30 120 534 386 ;
56
+ C 62 ; WX 564 ; N greater ; B 28 -8 536 514 ;
57
+ C 63 ; WX 444 ; N question ; B 68 -8 414 676 ;
58
+ C 64 ; WX 921 ; N at ; B 116 -14 809 676 ;
59
+ C 65 ; WX 722 ; N A ; B 15 0 706 674 ;
60
+ C 66 ; WX 667 ; N B ; B 17 0 593 662 ;
61
+ C 67 ; WX 667 ; N C ; B 28 -14 633 676 ;
62
+ C 68 ; WX 722 ; N D ; B 16 0 685 662 ;
63
+ C 69 ; WX 611 ; N E ; B 12 0 597 662 ;
64
+ C 70 ; WX 556 ; N F ; B 12 0 546 662 ;
65
+ C 71 ; WX 722 ; N G ; B 32 -14 709 676 ;
66
+ C 72 ; WX 722 ; N H ; B 19 0 702 662 ;
67
+ C 73 ; WX 333 ; N I ; B 18 0 315 662 ;
68
+ C 74 ; WX 389 ; N J ; B 10 -14 370 662 ;
69
+ C 75 ; WX 722 ; N K ; B 34 0 723 662 ;
70
+ C 76 ; WX 611 ; N L ; B 12 0 598 662 ;
71
+ C 77 ; WX 889 ; N M ; B 12 0 863 662 ;
72
+ C 78 ; WX 722 ; N N ; B 12 -11 707 662 ;
73
+ C 79 ; WX 722 ; N O ; B 34 -14 688 676 ;
74
+ C 80 ; WX 556 ; N P ; B 16 0 542 662 ;
75
+ C 81 ; WX 722 ; N Q ; B 34 -178 701 676 ;
76
+ C 82 ; WX 667 ; N R ; B 17 0 659 662 ;
77
+ C 83 ; WX 556 ; N S ; B 42 -14 491 676 ;
78
+ C 84 ; WX 611 ; N T ; B 17 0 593 662 ;
79
+ C 85 ; WX 722 ; N U ; B 14 -14 705 662 ;
80
+ C 86 ; WX 722 ; N V ; B 16 -11 697 662 ;
81
+ C 87 ; WX 944 ; N W ; B 5 -11 932 662 ;
82
+ C 88 ; WX 722 ; N X ; B 10 0 704 662 ;
83
+ C 89 ; WX 722 ; N Y ; B 22 0 703 662 ;
84
+ C 90 ; WX 611 ; N Z ; B 9 0 597 662 ;
85
+ C 91 ; WX 333 ; N bracketleft ; B 88 -156 299 662 ;
86
+ C 92 ; WX 278 ; N backslash ; B -9 -14 287 676 ;
87
+ C 93 ; WX 333 ; N bracketright ; B 34 -156 245 662 ;
88
+ C 94 ; WX 469 ; N asciicircum ; B 24 297 446 662 ;
89
+ C 95 ; WX 500 ; N underscore ; B 0 -125 500 -75 ;
90
+ C 96 ; WX 333 ; N quoteleft ; B 115 433 254 676 ;
91
+ C 97 ; WX 444 ; N a ; B 37 -10 442 460 ;
92
+ C 98 ; WX 500 ; N b ; B 3 -10 468 683 ;
93
+ C 99 ; WX 444 ; N c ; B 25 -10 412 460 ;
94
+ C 100 ; WX 500 ; N d ; B 27 -10 491 683 ;
95
+ C 101 ; WX 444 ; N e ; B 25 -10 424 460 ;
96
+ C 102 ; WX 333 ; N f ; B 20 0 383 683 ; L i fi ; L l fl ;
97
+ C 103 ; WX 500 ; N g ; B 28 -218 470 460 ;
98
+ C 104 ; WX 500 ; N h ; B 9 0 487 683 ;
99
+ C 105 ; WX 278 ; N i ; B 16 0 253 683 ;
100
+ C 106 ; WX 278 ; N j ; B -70 -218 194 683 ;
101
+ C 107 ; WX 500 ; N k ; B 7 0 505 683 ;
102
+ C 108 ; WX 278 ; N l ; B 19 0 257 683 ;
103
+ C 109 ; WX 778 ; N m ; B 16 0 775 460 ;
104
+ C 110 ; WX 500 ; N n ; B 16 0 485 460 ;
105
+ C 111 ; WX 500 ; N o ; B 29 -10 470 460 ;
106
+ C 112 ; WX 500 ; N p ; B 5 -217 470 460 ;
107
+ C 113 ; WX 500 ; N q ; B 24 -217 488 460 ;
108
+ C 114 ; WX 333 ; N r ; B 5 0 335 460 ;
109
+ C 115 ; WX 389 ; N s ; B 51 -10 348 460 ;
110
+ C 116 ; WX 278 ; N t ; B 13 -10 279 579 ;
111
+ C 117 ; WX 500 ; N u ; B 9 -10 479 450 ;
112
+ C 118 ; WX 500 ; N v ; B 19 -14 477 450 ;
113
+ C 119 ; WX 722 ; N w ; B 21 -14 694 450 ;
114
+ C 120 ; WX 500 ; N x ; B 17 0 479 450 ;
115
+ C 121 ; WX 500 ; N y ; B 14 -218 475 450 ;
116
+ C 122 ; WX 444 ; N z ; B 27 0 418 450 ;
117
+ C 123 ; WX 480 ; N braceleft ; B 100 -181 350 680 ;
118
+ C 124 ; WX 200 ; N bar ; B 67 -218 133 782 ;
119
+ C 125 ; WX 480 ; N braceright ; B 130 -181 380 680 ;
120
+ C 126 ; WX 541 ; N asciitilde ; B 40 183 502 323 ;
121
+ C 161 ; WX 333 ; N exclamdown ; B 97 -218 205 467 ;
122
+ C 162 ; WX 500 ; N cent ; B 53 -138 448 579 ;
123
+ C 163 ; WX 500 ; N sterling ; B 12 -8 490 676 ;
124
+ C 164 ; WX 167 ; N fraction ; B -168 -14 331 676 ;
125
+ C 165 ; WX 500 ; N yen ; B -53 0 512 662 ;
126
+ C 166 ; WX 500 ; N florin ; B 7 -189 490 676 ;
127
+ C 167 ; WX 500 ; N section ; B 70 -148 426 676 ;
128
+ C 168 ; WX 500 ; N currency ; B -22 58 522 602 ;
129
+ C 169 ; WX 180 ; N quotesingle ; B 48 431 133 676 ;
130
+ C 170 ; WX 444 ; N quotedblleft ; B 43 433 414 676 ;
131
+ C 171 ; WX 500 ; N guillemotleft ; B 42 33 456 416 ;
132
+ C 172 ; WX 333 ; N guilsinglleft ; B 63 33 285 416 ;
133
+ C 173 ; WX 333 ; N guilsinglright ; B 48 33 270 416 ;
134
+ C 174 ; WX 556 ; N fi ; B 31 0 521 683 ;
135
+ C 175 ; WX 556 ; N fl ; B 32 0 521 683 ;
136
+ C 177 ; WX 500 ; N endash ; B 0 201 500 250 ;
137
+ C 178 ; WX 500 ; N dagger ; B 59 -149 442 676 ;
138
+ C 179 ; WX 500 ; N daggerdbl ; B 58 -153 442 676 ;
139
+ C 180 ; WX 250 ; N periodcentered ; B 70 199 181 310 ;
140
+ C 182 ; WX 453 ; N paragraph ; B -22 -154 450 662 ;
141
+ C 183 ; WX 350 ; N bullet ; B 40 196 310 466 ;
142
+ C 184 ; WX 333 ; N quotesinglbase ; B 79 -141 218 102 ;
143
+ C 185 ; WX 444 ; N quotedblbase ; B 45 -141 416 102 ;
144
+ C 186 ; WX 444 ; N quotedblright ; B 30 433 401 676 ;
145
+ C 187 ; WX 500 ; N guillemotright ; B 44 33 458 416 ;
146
+ C 188 ; WX 1000 ; N ellipsis ; B 111 -11 888 100 ;
147
+ C 189 ; WX 1000 ; N perthousand ; B 7 -19 994 706 ;
148
+ C 191 ; WX 444 ; N questiondown ; B 30 -218 376 466 ;
149
+ C 193 ; WX 333 ; N grave ; B 19 507 242 678 ;
150
+ C 194 ; WX 333 ; N acute ; B 93 507 317 678 ;
151
+ C 195 ; WX 333 ; N circumflex ; B 11 507 322 674 ;
152
+ C 196 ; WX 333 ; N tilde ; B 1 532 331 638 ;
153
+ C 197 ; WX 333 ; N macron ; B 11 547 322 601 ;
154
+ C 198 ; WX 333 ; N breve ; B 26 507 307 664 ;
155
+ C 199 ; WX 333 ; N dotaccent ; B 118 581 216 681 ;
156
+ C 200 ; WX 333 ; N dieresis ; B 18 581 315 681 ;
157
+ C 202 ; WX 333 ; N ring ; B 67 512 266 711 ;
158
+ C 203 ; WX 333 ; N cedilla ; B 52 -215 261 0 ;
159
+ C 205 ; WX 333 ; N hungarumlaut ; B -3 507 377 678 ;
160
+ C 206 ; WX 333 ; N ogonek ; B 62 -165 243 0 ;
161
+ C 207 ; WX 333 ; N caron ; B 11 507 322 674 ;
162
+ C 208 ; WX 1000 ; N emdash ; B 0 201 1000 250 ;
163
+ C 225 ; WX 889 ; N AE ; B 0 0 863 662 ;
164
+ C 227 ; WX 276 ; N ordfeminine ; B 4 394 270 676 ;
165
+ C 232 ; WX 611 ; N Lslash ; B 12 0 598 662 ;
166
+ C 233 ; WX 722 ; N Oslash ; B 34 -80 688 734 ;
167
+ C 234 ; WX 889 ; N OE ; B 30 -6 885 668 ;
168
+ C 235 ; WX 310 ; N ordmasculine ; B 6 394 304 676 ;
169
+ C 241 ; WX 667 ; N ae ; B 38 -10 632 460 ;
170
+ C 245 ; WX 278 ; N dotlessi ; B 16 0 253 460 ;
171
+ C 248 ; WX 278 ; N lslash ; B 19 0 259 683 ;
172
+ C 249 ; WX 500 ; N oslash ; B 29 -112 470 551 ;
173
+ C 250 ; WX 722 ; N oe ; B 30 -10 690 460 ;
174
+ C 251 ; WX 500 ; N germandbls ; B 12 -9 468 683 ;
175
+ C -1 ; WX 333 ; N Idieresis ; B 18 0 315 835 ;
176
+ C -1 ; WX 444 ; N eacute ; B 25 -10 424 678 ;
177
+ C -1 ; WX 444 ; N abreve ; B 37 -10 442 664 ;
178
+ C -1 ; WX 500 ; N uhungarumlaut ; B 9 -10 501 678 ;
179
+ C -1 ; WX 444 ; N ecaron ; B 25 -10 424 674 ;
180
+ C -1 ; WX 722 ; N Ydieresis ; B 22 0 703 835 ;
181
+ C -1 ; WX 564 ; N divide ; B 30 -10 534 516 ;
182
+ C -1 ; WX 722 ; N Yacute ; B 22 0 703 890 ;
183
+ C -1 ; WX 722 ; N Acircumflex ; B 15 0 706 886 ;
184
+ C -1 ; WX 444 ; N aacute ; B 37 -10 442 678 ;
185
+ C -1 ; WX 722 ; N Ucircumflex ; B 14 -14 705 886 ;
186
+ C -1 ; WX 500 ; N yacute ; B 14 -218 475 678 ;
187
+ C -1 ; WX 389 ; N scommaaccent ; B 51 -218 348 460 ;
188
+ C -1 ; WX 444 ; N ecircumflex ; B 25 -10 424 674 ;
189
+ C -1 ; WX 722 ; N Uring ; B 14 -14 705 898 ;
190
+ C -1 ; WX 722 ; N Udieresis ; B 14 -14 705 835 ;
191
+ C -1 ; WX 444 ; N aogonek ; B 37 -165 469 460 ;
192
+ C -1 ; WX 722 ; N Uacute ; B 14 -14 705 890 ;
193
+ C -1 ; WX 500 ; N uogonek ; B 9 -155 487 450 ;
194
+ C -1 ; WX 611 ; N Edieresis ; B 12 0 597 835 ;
195
+ C -1 ; WX 722 ; N Dcroat ; B 16 0 685 662 ;
196
+ C -1 ; WX 250 ; N commaaccent ; B 59 -218 184 -50 ;
197
+ C -1 ; WX 760 ; N copyright ; B 38 -14 722 676 ;
198
+ C -1 ; WX 611 ; N Emacron ; B 12 0 597 813 ;
199
+ C -1 ; WX 444 ; N ccaron ; B 25 -10 412 674 ;
200
+ C -1 ; WX 444 ; N aring ; B 37 -10 442 711 ;
201
+ C -1 ; WX 722 ; N Ncommaaccent ; B 12 -198 707 662 ;
202
+ C -1 ; WX 278 ; N lacute ; B 19 0 290 890 ;
203
+ C -1 ; WX 444 ; N agrave ; B 37 -10 442 678 ;
204
+ C -1 ; WX 611 ; N Tcommaaccent ; B 17 -218 593 662 ;
205
+ C -1 ; WX 667 ; N Cacute ; B 28 -14 633 890 ;
206
+ C -1 ; WX 444 ; N atilde ; B 37 -10 442 638 ;
207
+ C -1 ; WX 611 ; N Edotaccent ; B 12 0 597 835 ;
208
+ C -1 ; WX 389 ; N scaron ; B 39 -10 350 674 ;
209
+ C -1 ; WX 389 ; N scedilla ; B 51 -215 348 460 ;
210
+ C -1 ; WX 278 ; N iacute ; B 16 0 290 678 ;
211
+ C -1 ; WX 471 ; N lozenge ; B 13 0 459 724 ;
212
+ C -1 ; WX 667 ; N Rcaron ; B 17 0 659 886 ;
213
+ C -1 ; WX 722 ; N Gcommaaccent ; B 32 -218 709 676 ;
214
+ C -1 ; WX 500 ; N ucircumflex ; B 9 -10 479 674 ;
215
+ C -1 ; WX 444 ; N acircumflex ; B 37 -10 442 674 ;
216
+ C -1 ; WX 722 ; N Amacron ; B 15 0 706 813 ;
217
+ C -1 ; WX 333 ; N rcaron ; B 5 0 335 674 ;
218
+ C -1 ; WX 444 ; N ccedilla ; B 25 -215 412 460 ;
219
+ C -1 ; WX 611 ; N Zdotaccent ; B 9 0 597 835 ;
220
+ C -1 ; WX 556 ; N Thorn ; B 16 0 542 662 ;
221
+ C -1 ; WX 722 ; N Omacron ; B 34 -14 688 813 ;
222
+ C -1 ; WX 667 ; N Racute ; B 17 0 659 890 ;
223
+ C -1 ; WX 556 ; N Sacute ; B 42 -14 491 890 ;
224
+ C -1 ; WX 588 ; N dcaron ; B 27 -10 589 695 ;
225
+ C -1 ; WX 722 ; N Umacron ; B 14 -14 705 813 ;
226
+ C -1 ; WX 500 ; N uring ; B 9 -10 479 711 ;
227
+ C -1 ; WX 300 ; N threesuperior ; B 15 262 291 676 ;
228
+ C -1 ; WX 722 ; N Ograve ; B 34 -14 688 890 ;
229
+ C -1 ; WX 722 ; N Agrave ; B 15 0 706 890 ;
230
+ C -1 ; WX 722 ; N Abreve ; B 15 0 706 876 ;
231
+ C -1 ; WX 564 ; N multiply ; B 38 8 527 497 ;
232
+ C -1 ; WX 500 ; N uacute ; B 9 -10 479 678 ;
233
+ C -1 ; WX 611 ; N Tcaron ; B 17 0 593 886 ;
234
+ C -1 ; WX 476 ; N partialdiff ; B 17 -38 459 710 ;
235
+ C -1 ; WX 500 ; N ydieresis ; B 14 -218 475 623 ;
236
+ C -1 ; WX 722 ; N Nacute ; B 12 -11 707 890 ;
237
+ C -1 ; WX 278 ; N icircumflex ; B -16 0 295 674 ;
238
+ C -1 ; WX 611 ; N Ecircumflex ; B 12 0 597 886 ;
239
+ C -1 ; WX 444 ; N adieresis ; B 37 -10 442 623 ;
240
+ C -1 ; WX 444 ; N edieresis ; B 25 -10 424 623 ;
241
+ C -1 ; WX 444 ; N cacute ; B 25 -10 413 678 ;
242
+ C -1 ; WX 500 ; N nacute ; B 16 0 485 678 ;
243
+ C -1 ; WX 500 ; N umacron ; B 9 -10 479 601 ;
244
+ C -1 ; WX 722 ; N Ncaron ; B 12 -11 707 886 ;
245
+ C -1 ; WX 333 ; N Iacute ; B 18 0 317 890 ;
246
+ C -1 ; WX 564 ; N plusminus ; B 30 0 534 506 ;
247
+ C -1 ; WX 200 ; N brokenbar ; B 67 -143 133 707 ;
248
+ C -1 ; WX 760 ; N registered ; B 38 -14 722 676 ;
249
+ C -1 ; WX 722 ; N Gbreve ; B 32 -14 709 876 ;
250
+ C -1 ; WX 333 ; N Idotaccent ; B 18 0 315 835 ;
251
+ C -1 ; WX 600 ; N summation ; B 15 -10 585 706 ;
252
+ C -1 ; WX 611 ; N Egrave ; B 12 0 597 890 ;
253
+ C -1 ; WX 333 ; N racute ; B 5 0 335 678 ;
254
+ C -1 ; WX 500 ; N omacron ; B 29 -10 470 601 ;
255
+ C -1 ; WX 611 ; N Zacute ; B 9 0 597 890 ;
256
+ C -1 ; WX 611 ; N Zcaron ; B 9 0 597 886 ;
257
+ C -1 ; WX 549 ; N greaterequal ; B 26 0 523 666 ;
258
+ C -1 ; WX 722 ; N Eth ; B 16 0 685 662 ;
259
+ C -1 ; WX 667 ; N Ccedilla ; B 28 -215 633 676 ;
260
+ C -1 ; WX 278 ; N lcommaaccent ; B 19 -218 257 683 ;
261
+ C -1 ; WX 326 ; N tcaron ; B 13 -10 318 722 ;
262
+ C -1 ; WX 444 ; N eogonek ; B 25 -165 424 460 ;
263
+ C -1 ; WX 722 ; N Uogonek ; B 14 -165 705 662 ;
264
+ C -1 ; WX 722 ; N Aacute ; B 15 0 706 890 ;
265
+ C -1 ; WX 722 ; N Adieresis ; B 15 0 706 835 ;
266
+ C -1 ; WX 444 ; N egrave ; B 25 -10 424 678 ;
267
+ C -1 ; WX 444 ; N zacute ; B 27 0 418 678 ;
268
+ C -1 ; WX 278 ; N iogonek ; B 16 -165 265 683 ;
269
+ C -1 ; WX 722 ; N Oacute ; B 34 -14 688 890 ;
270
+ C -1 ; WX 500 ; N oacute ; B 29 -10 470 678 ;
271
+ C -1 ; WX 444 ; N amacron ; B 37 -10 442 601 ;
272
+ C -1 ; WX 389 ; N sacute ; B 51 -10 348 678 ;
273
+ C -1 ; WX 278 ; N idieresis ; B -9 0 288 623 ;
274
+ C -1 ; WX 722 ; N Ocircumflex ; B 34 -14 688 886 ;
275
+ C -1 ; WX 722 ; N Ugrave ; B 14 -14 705 890 ;
276
+ C -1 ; WX 612 ; N Delta ; B 6 0 608 688 ;
277
+ C -1 ; WX 500 ; N thorn ; B 5 -217 470 683 ;
278
+ C -1 ; WX 300 ; N twosuperior ; B 1 270 296 676 ;
279
+ C -1 ; WX 722 ; N Odieresis ; B 34 -14 688 835 ;
280
+ C -1 ; WX 500 ; N mu ; B 36 -218 512 450 ;
281
+ C -1 ; WX 278 ; N igrave ; B -8 0 253 678 ;
282
+ C -1 ; WX 500 ; N ohungarumlaut ; B 29 -10 491 678 ;
283
+ C -1 ; WX 611 ; N Eogonek ; B 12 -165 597 662 ;
284
+ C -1 ; WX 500 ; N dcroat ; B 27 -10 500 683 ;
285
+ C -1 ; WX 750 ; N threequarters ; B 15 -14 718 676 ;
286
+ C -1 ; WX 556 ; N Scedilla ; B 42 -215 491 676 ;
287
+ C -1 ; WX 344 ; N lcaron ; B 19 0 347 695 ;
288
+ C -1 ; WX 722 ; N Kcommaaccent ; B 34 -198 723 662 ;
289
+ C -1 ; WX 611 ; N Lacute ; B 12 0 598 890 ;
290
+ C -1 ; WX 980 ; N trademark ; B 30 256 957 662 ;
291
+ C -1 ; WX 444 ; N edotaccent ; B 25 -10 424 623 ;
292
+ C -1 ; WX 333 ; N Igrave ; B 18 0 315 890 ;
293
+ C -1 ; WX 333 ; N Imacron ; B 11 0 322 813 ;
294
+ C -1 ; WX 611 ; N Lcaron ; B 12 0 598 676 ;
295
+ C -1 ; WX 750 ; N onehalf ; B 31 -14 746 676 ;
296
+ C -1 ; WX 549 ; N lessequal ; B 26 0 523 666 ;
297
+ C -1 ; WX 500 ; N ocircumflex ; B 29 -10 470 674 ;
298
+ C -1 ; WX 500 ; N ntilde ; B 16 0 485 638 ;
299
+ C -1 ; WX 722 ; N Uhungarumlaut ; B 14 -14 705 890 ;
300
+ C -1 ; WX 611 ; N Eacute ; B 12 0 597 890 ;
301
+ C -1 ; WX 444 ; N emacron ; B 25 -10 424 601 ;
302
+ C -1 ; WX 500 ; N gbreve ; B 28 -218 470 664 ;
303
+ C -1 ; WX 750 ; N onequarter ; B 37 -14 718 676 ;
304
+ C -1 ; WX 556 ; N Scaron ; B 42 -14 491 886 ;
305
+ C -1 ; WX 556 ; N Scommaaccent ; B 42 -218 491 676 ;
306
+ C -1 ; WX 722 ; N Ohungarumlaut ; B 34 -14 688 890 ;
307
+ C -1 ; WX 400 ; N degree ; B 57 390 343 676 ;
308
+ C -1 ; WX 500 ; N ograve ; B 29 -10 470 678 ;
309
+ C -1 ; WX 667 ; N Ccaron ; B 28 -14 633 886 ;
310
+ C -1 ; WX 500 ; N ugrave ; B 9 -10 479 678 ;
311
+ C -1 ; WX 453 ; N radical ; B 2 -60 452 768 ;
312
+ C -1 ; WX 722 ; N Dcaron ; B 16 0 685 886 ;
313
+ C -1 ; WX 333 ; N rcommaaccent ; B 5 -218 335 460 ;
314
+ C -1 ; WX 722 ; N Ntilde ; B 12 -11 707 850 ;
315
+ C -1 ; WX 500 ; N otilde ; B 29 -10 470 638 ;
316
+ C -1 ; WX 667 ; N Rcommaaccent ; B 17 -198 659 662 ;
317
+ C -1 ; WX 611 ; N Lcommaaccent ; B 12 -218 598 662 ;
318
+ C -1 ; WX 722 ; N Atilde ; B 15 0 706 850 ;
319
+ C -1 ; WX 722 ; N Aogonek ; B 15 -165 738 674 ;
320
+ C -1 ; WX 722 ; N Aring ; B 15 0 706 898 ;
321
+ C -1 ; WX 722 ; N Otilde ; B 34 -14 688 850 ;
322
+ C -1 ; WX 444 ; N zdotaccent ; B 27 0 418 623 ;
323
+ C -1 ; WX 611 ; N Ecaron ; B 12 0 597 886 ;
324
+ C -1 ; WX 333 ; N Iogonek ; B 18 -165 315 662 ;
325
+ C -1 ; WX 500 ; N kcommaaccent ; B 7 -218 505 683 ;
326
+ C -1 ; WX 564 ; N minus ; B 30 220 534 286 ;
327
+ C -1 ; WX 333 ; N Icircumflex ; B 11 0 322 886 ;
328
+ C -1 ; WX 500 ; N ncaron ; B 16 0 485 674 ;
329
+ C -1 ; WX 278 ; N tcommaaccent ; B 13 -218 279 579 ;
330
+ C -1 ; WX 564 ; N logicalnot ; B 30 108 534 386 ;
331
+ C -1 ; WX 500 ; N odieresis ; B 29 -10 470 623 ;
332
+ C -1 ; WX 500 ; N udieresis ; B 9 -10 479 623 ;
333
+ C -1 ; WX 549 ; N notequal ; B 12 -31 537 547 ;
334
+ C -1 ; WX 500 ; N gcommaaccent ; B 28 -218 470 749 ;
335
+ C -1 ; WX 500 ; N eth ; B 29 -10 471 686 ;
336
+ C -1 ; WX 444 ; N zcaron ; B 27 0 418 674 ;
337
+ C -1 ; WX 500 ; N ncommaaccent ; B 16 -218 485 460 ;
338
+ C -1 ; WX 300 ; N onesuperior ; B 57 270 248 676 ;
339
+ C -1 ; WX 278 ; N imacron ; B 6 0 271 601 ;
340
+ C -1 ; WX 500 ; N Euro ; B 0 0 0 0 ;
341
+ EndCharMetrics
342
+ StartKernData
343
+ StartKernPairs 2073
344
+ KPX A C -40
345
+ KPX A Cacute -40
346
+ KPX A Ccaron -40
347
+ KPX A Ccedilla -40
348
+ KPX A G -40
349
+ KPX A Gbreve -40
350
+ KPX A Gcommaaccent -40
351
+ KPX A O -55
352
+ KPX A Oacute -55
353
+ KPX A Ocircumflex -55
354
+ KPX A Odieresis -55
355
+ KPX A Ograve -55
356
+ KPX A Ohungarumlaut -55
357
+ KPX A Omacron -55
358
+ KPX A Oslash -55
359
+ KPX A Otilde -55
360
+ KPX A Q -55
361
+ KPX A T -111
362
+ KPX A Tcaron -111
363
+ KPX A Tcommaaccent -111
364
+ KPX A U -55
365
+ KPX A Uacute -55
366
+ KPX A Ucircumflex -55
367
+ KPX A Udieresis -55
368
+ KPX A Ugrave -55
369
+ KPX A Uhungarumlaut -55
370
+ KPX A Umacron -55
371
+ KPX A Uogonek -55
372
+ KPX A Uring -55
373
+ KPX A V -135
374
+ KPX A W -90
375
+ KPX A Y -105
376
+ KPX A Yacute -105
377
+ KPX A Ydieresis -105
378
+ KPX A quoteright -111
379
+ KPX A v -74
380
+ KPX A w -92
381
+ KPX A y -92
382
+ KPX A yacute -92
383
+ KPX A ydieresis -92
384
+ KPX Aacute C -40
385
+ KPX Aacute Cacute -40
386
+ KPX Aacute Ccaron -40
387
+ KPX Aacute Ccedilla -40
388
+ KPX Aacute G -40
389
+ KPX Aacute Gbreve -40
390
+ KPX Aacute Gcommaaccent -40
391
+ KPX Aacute O -55
392
+ KPX Aacute Oacute -55
393
+ KPX Aacute Ocircumflex -55
394
+ KPX Aacute Odieresis -55
395
+ KPX Aacute Ograve -55
396
+ KPX Aacute Ohungarumlaut -55
397
+ KPX Aacute Omacron -55
398
+ KPX Aacute Oslash -55
399
+ KPX Aacute Otilde -55
400
+ KPX Aacute Q -55
401
+ KPX Aacute T -111
402
+ KPX Aacute Tcaron -111
403
+ KPX Aacute Tcommaaccent -111
404
+ KPX Aacute U -55
405
+ KPX Aacute Uacute -55
406
+ KPX Aacute Ucircumflex -55
407
+ KPX Aacute Udieresis -55
408
+ KPX Aacute Ugrave -55
409
+ KPX Aacute Uhungarumlaut -55
410
+ KPX Aacute Umacron -55
411
+ KPX Aacute Uogonek -55
412
+ KPX Aacute Uring -55
413
+ KPX Aacute V -135
414
+ KPX Aacute W -90
415
+ KPX Aacute Y -105
416
+ KPX Aacute Yacute -105
417
+ KPX Aacute Ydieresis -105
418
+ KPX Aacute quoteright -111
419
+ KPX Aacute v -74
420
+ KPX Aacute w -92
421
+ KPX Aacute y -92
422
+ KPX Aacute yacute -92
423
+ KPX Aacute ydieresis -92
424
+ KPX Abreve C -40
425
+ KPX Abreve Cacute -40
426
+ KPX Abreve Ccaron -40
427
+ KPX Abreve Ccedilla -40
428
+ KPX Abreve G -40
429
+ KPX Abreve Gbreve -40
430
+ KPX Abreve Gcommaaccent -40
431
+ KPX Abreve O -55
432
+ KPX Abreve Oacute -55
433
+ KPX Abreve Ocircumflex -55
434
+ KPX Abreve Odieresis -55
435
+ KPX Abreve Ograve -55
436
+ KPX Abreve Ohungarumlaut -55
437
+ KPX Abreve Omacron -55
438
+ KPX Abreve Oslash -55
439
+ KPX Abreve Otilde -55
440
+ KPX Abreve Q -55
441
+ KPX Abreve T -111
442
+ KPX Abreve Tcaron -111
443
+ KPX Abreve Tcommaaccent -111
444
+ KPX Abreve U -55
445
+ KPX Abreve Uacute -55
446
+ KPX Abreve Ucircumflex -55
447
+ KPX Abreve Udieresis -55
448
+ KPX Abreve Ugrave -55
449
+ KPX Abreve Uhungarumlaut -55
450
+ KPX Abreve Umacron -55
451
+ KPX Abreve Uogonek -55
452
+ KPX Abreve Uring -55
453
+ KPX Abreve V -135
454
+ KPX Abreve W -90
455
+ KPX Abreve Y -105
456
+ KPX Abreve Yacute -105
457
+ KPX Abreve Ydieresis -105
458
+ KPX Abreve quoteright -111
459
+ KPX Abreve v -74
460
+ KPX Abreve w -92
461
+ KPX Abreve y -92
462
+ KPX Abreve yacute -92
463
+ KPX Abreve ydieresis -92
464
+ KPX Acircumflex C -40
465
+ KPX Acircumflex Cacute -40
466
+ KPX Acircumflex Ccaron -40
467
+ KPX Acircumflex Ccedilla -40
468
+ KPX Acircumflex G -40
469
+ KPX Acircumflex Gbreve -40
470
+ KPX Acircumflex Gcommaaccent -40
471
+ KPX Acircumflex O -55
472
+ KPX Acircumflex Oacute -55
473
+ KPX Acircumflex Ocircumflex -55
474
+ KPX Acircumflex Odieresis -55
475
+ KPX Acircumflex Ograve -55
476
+ KPX Acircumflex Ohungarumlaut -55
477
+ KPX Acircumflex Omacron -55
478
+ KPX Acircumflex Oslash -55
479
+ KPX Acircumflex Otilde -55
480
+ KPX Acircumflex Q -55
481
+ KPX Acircumflex T -111
482
+ KPX Acircumflex Tcaron -111
483
+ KPX Acircumflex Tcommaaccent -111
484
+ KPX Acircumflex U -55
485
+ KPX Acircumflex Uacute -55
486
+ KPX Acircumflex Ucircumflex -55
487
+ KPX Acircumflex Udieresis -55
488
+ KPX Acircumflex Ugrave -55
489
+ KPX Acircumflex Uhungarumlaut -55
490
+ KPX Acircumflex Umacron -55
491
+ KPX Acircumflex Uogonek -55
492
+ KPX Acircumflex Uring -55
493
+ KPX Acircumflex V -135
494
+ KPX Acircumflex W -90
495
+ KPX Acircumflex Y -105
496
+ KPX Acircumflex Yacute -105
497
+ KPX Acircumflex Ydieresis -105
498
+ KPX Acircumflex quoteright -111
499
+ KPX Acircumflex v -74
500
+ KPX Acircumflex w -92
501
+ KPX Acircumflex y -92
502
+ KPX Acircumflex yacute -92
503
+ KPX Acircumflex ydieresis -92
504
+ KPX Adieresis C -40
505
+ KPX Adieresis Cacute -40
506
+ KPX Adieresis Ccaron -40
507
+ KPX Adieresis Ccedilla -40
508
+ KPX Adieresis G -40
509
+ KPX Adieresis Gbreve -40
510
+ KPX Adieresis Gcommaaccent -40
511
+ KPX Adieresis O -55
512
+ KPX Adieresis Oacute -55
513
+ KPX Adieresis Ocircumflex -55
514
+ KPX Adieresis Odieresis -55
515
+ KPX Adieresis Ograve -55
516
+ KPX Adieresis Ohungarumlaut -55
517
+ KPX Adieresis Omacron -55
518
+ KPX Adieresis Oslash -55
519
+ KPX Adieresis Otilde -55
520
+ KPX Adieresis Q -55
521
+ KPX Adieresis T -111
522
+ KPX Adieresis Tcaron -111
523
+ KPX Adieresis Tcommaaccent -111
524
+ KPX Adieresis U -55
525
+ KPX Adieresis Uacute -55
526
+ KPX Adieresis Ucircumflex -55
527
+ KPX Adieresis Udieresis -55
528
+ KPX Adieresis Ugrave -55
529
+ KPX Adieresis Uhungarumlaut -55
530
+ KPX Adieresis Umacron -55
531
+ KPX Adieresis Uogonek -55
532
+ KPX Adieresis Uring -55
533
+ KPX Adieresis V -135
534
+ KPX Adieresis W -90
535
+ KPX Adieresis Y -105
536
+ KPX Adieresis Yacute -105
537
+ KPX Adieresis Ydieresis -105
538
+ KPX Adieresis quoteright -111
539
+ KPX Adieresis v -74
540
+ KPX Adieresis w -92
541
+ KPX Adieresis y -92
542
+ KPX Adieresis yacute -92
543
+ KPX Adieresis ydieresis -92
544
+ KPX Agrave C -40
545
+ KPX Agrave Cacute -40
546
+ KPX Agrave Ccaron -40
547
+ KPX Agrave Ccedilla -40
548
+ KPX Agrave G -40
549
+ KPX Agrave Gbreve -40
550
+ KPX Agrave Gcommaaccent -40
551
+ KPX Agrave O -55
552
+ KPX Agrave Oacute -55
553
+ KPX Agrave Ocircumflex -55
554
+ KPX Agrave Odieresis -55
555
+ KPX Agrave Ograve -55
556
+ KPX Agrave Ohungarumlaut -55
557
+ KPX Agrave Omacron -55
558
+ KPX Agrave Oslash -55
559
+ KPX Agrave Otilde -55
560
+ KPX Agrave Q -55
561
+ KPX Agrave T -111
562
+ KPX Agrave Tcaron -111
563
+ KPX Agrave Tcommaaccent -111
564
+ KPX Agrave U -55
565
+ KPX Agrave Uacute -55
566
+ KPX Agrave Ucircumflex -55
567
+ KPX Agrave Udieresis -55
568
+ KPX Agrave Ugrave -55
569
+ KPX Agrave Uhungarumlaut -55
570
+ KPX Agrave Umacron -55
571
+ KPX Agrave Uogonek -55
572
+ KPX Agrave Uring -55
573
+ KPX Agrave V -135
574
+ KPX Agrave W -90
575
+ KPX Agrave Y -105
576
+ KPX Agrave Yacute -105
577
+ KPX Agrave Ydieresis -105
578
+ KPX Agrave quoteright -111
579
+ KPX Agrave v -74
580
+ KPX Agrave w -92
581
+ KPX Agrave y -92
582
+ KPX Agrave yacute -92
583
+ KPX Agrave ydieresis -92
584
+ KPX Amacron C -40
585
+ KPX Amacron Cacute -40
586
+ KPX Amacron Ccaron -40
587
+ KPX Amacron Ccedilla -40
588
+ KPX Amacron G -40
589
+ KPX Amacron Gbreve -40
590
+ KPX Amacron Gcommaaccent -40
591
+ KPX Amacron O -55
592
+ KPX Amacron Oacute -55
593
+ KPX Amacron Ocircumflex -55
594
+ KPX Amacron Odieresis -55
595
+ KPX Amacron Ograve -55
596
+ KPX Amacron Ohungarumlaut -55
597
+ KPX Amacron Omacron -55
598
+ KPX Amacron Oslash -55
599
+ KPX Amacron Otilde -55
600
+ KPX Amacron Q -55
601
+ KPX Amacron T -111
602
+ KPX Amacron Tcaron -111
603
+ KPX Amacron Tcommaaccent -111
604
+ KPX Amacron U -55
605
+ KPX Amacron Uacute -55
606
+ KPX Amacron Ucircumflex -55
607
+ KPX Amacron Udieresis -55
608
+ KPX Amacron Ugrave -55
609
+ KPX Amacron Uhungarumlaut -55
610
+ KPX Amacron Umacron -55
611
+ KPX Amacron Uogonek -55
612
+ KPX Amacron Uring -55
613
+ KPX Amacron V -135
614
+ KPX Amacron W -90
615
+ KPX Amacron Y -105
616
+ KPX Amacron Yacute -105
617
+ KPX Amacron Ydieresis -105
618
+ KPX Amacron quoteright -111
619
+ KPX Amacron v -74
620
+ KPX Amacron w -92
621
+ KPX Amacron y -92
622
+ KPX Amacron yacute -92
623
+ KPX Amacron ydieresis -92
624
+ KPX Aogonek C -40
625
+ KPX Aogonek Cacute -40
626
+ KPX Aogonek Ccaron -40
627
+ KPX Aogonek Ccedilla -40
628
+ KPX Aogonek G -40
629
+ KPX Aogonek Gbreve -40
630
+ KPX Aogonek Gcommaaccent -40
631
+ KPX Aogonek O -55
632
+ KPX Aogonek Oacute -55
633
+ KPX Aogonek Ocircumflex -55
634
+ KPX Aogonek Odieresis -55
635
+ KPX Aogonek Ograve -55
636
+ KPX Aogonek Ohungarumlaut -55
637
+ KPX Aogonek Omacron -55
638
+ KPX Aogonek Oslash -55
639
+ KPX Aogonek Otilde -55
640
+ KPX Aogonek Q -55
641
+ KPX Aogonek T -111
642
+ KPX Aogonek Tcaron -111
643
+ KPX Aogonek Tcommaaccent -111
644
+ KPX Aogonek U -55
645
+ KPX Aogonek Uacute -55
646
+ KPX Aogonek Ucircumflex -55
647
+ KPX Aogonek Udieresis -55
648
+ KPX Aogonek Ugrave -55
649
+ KPX Aogonek Uhungarumlaut -55
650
+ KPX Aogonek Umacron -55
651
+ KPX Aogonek Uogonek -55
652
+ KPX Aogonek Uring -55
653
+ KPX Aogonek V -135
654
+ KPX Aogonek W -90
655
+ KPX Aogonek Y -105
656
+ KPX Aogonek Yacute -105
657
+ KPX Aogonek Ydieresis -105
658
+ KPX Aogonek quoteright -111
659
+ KPX Aogonek v -74
660
+ KPX Aogonek w -52
661
+ KPX Aogonek y -52
662
+ KPX Aogonek yacute -52
663
+ KPX Aogonek ydieresis -52
664
+ KPX Aring C -40
665
+ KPX Aring Cacute -40
666
+ KPX Aring Ccaron -40
667
+ KPX Aring Ccedilla -40
668
+ KPX Aring G -40
669
+ KPX Aring Gbreve -40
670
+ KPX Aring Gcommaaccent -40
671
+ KPX Aring O -55
672
+ KPX Aring Oacute -55
673
+ KPX Aring Ocircumflex -55
674
+ KPX Aring Odieresis -55
675
+ KPX Aring Ograve -55
676
+ KPX Aring Ohungarumlaut -55
677
+ KPX Aring Omacron -55
678
+ KPX Aring Oslash -55
679
+ KPX Aring Otilde -55
680
+ KPX Aring Q -55
681
+ KPX Aring T -111
682
+ KPX Aring Tcaron -111
683
+ KPX Aring Tcommaaccent -111
684
+ KPX Aring U -55
685
+ KPX Aring Uacute -55
686
+ KPX Aring Ucircumflex -55
687
+ KPX Aring Udieresis -55
688
+ KPX Aring Ugrave -55
689
+ KPX Aring Uhungarumlaut -55
690
+ KPX Aring Umacron -55
691
+ KPX Aring Uogonek -55
692
+ KPX Aring Uring -55
693
+ KPX Aring V -135
694
+ KPX Aring W -90
695
+ KPX Aring Y -105
696
+ KPX Aring Yacute -105
697
+ KPX Aring Ydieresis -105
698
+ KPX Aring quoteright -111
699
+ KPX Aring v -74
700
+ KPX Aring w -92
701
+ KPX Aring y -92
702
+ KPX Aring yacute -92
703
+ KPX Aring ydieresis -92
704
+ KPX Atilde C -40
705
+ KPX Atilde Cacute -40
706
+ KPX Atilde Ccaron -40
707
+ KPX Atilde Ccedilla -40
708
+ KPX Atilde G -40
709
+ KPX Atilde Gbreve -40
710
+ KPX Atilde Gcommaaccent -40
711
+ KPX Atilde O -55
712
+ KPX Atilde Oacute -55
713
+ KPX Atilde Ocircumflex -55
714
+ KPX Atilde Odieresis -55
715
+ KPX Atilde Ograve -55
716
+ KPX Atilde Ohungarumlaut -55
717
+ KPX Atilde Omacron -55
718
+ KPX Atilde Oslash -55
719
+ KPX Atilde Otilde -55
720
+ KPX Atilde Q -55
721
+ KPX Atilde T -111
722
+ KPX Atilde Tcaron -111
723
+ KPX Atilde Tcommaaccent -111
724
+ KPX Atilde U -55
725
+ KPX Atilde Uacute -55
726
+ KPX Atilde Ucircumflex -55
727
+ KPX Atilde Udieresis -55
728
+ KPX Atilde Ugrave -55
729
+ KPX Atilde Uhungarumlaut -55
730
+ KPX Atilde Umacron -55
731
+ KPX Atilde Uogonek -55
732
+ KPX Atilde Uring -55
733
+ KPX Atilde V -135
734
+ KPX Atilde W -90
735
+ KPX Atilde Y -105
736
+ KPX Atilde Yacute -105
737
+ KPX Atilde Ydieresis -105
738
+ KPX Atilde quoteright -111
739
+ KPX Atilde v -74
740
+ KPX Atilde w -92
741
+ KPX Atilde y -92
742
+ KPX Atilde yacute -92
743
+ KPX Atilde ydieresis -92
744
+ KPX B A -35
745
+ KPX B Aacute -35
746
+ KPX B Abreve -35
747
+ KPX B Acircumflex -35
748
+ KPX B Adieresis -35
749
+ KPX B Agrave -35
750
+ KPX B Amacron -35
751
+ KPX B Aogonek -35
752
+ KPX B Aring -35
753
+ KPX B Atilde -35
754
+ KPX B U -10
755
+ KPX B Uacute -10
756
+ KPX B Ucircumflex -10
757
+ KPX B Udieresis -10
758
+ KPX B Ugrave -10
759
+ KPX B Uhungarumlaut -10
760
+ KPX B Umacron -10
761
+ KPX B Uogonek -10
762
+ KPX B Uring -10
763
+ KPX D A -40
764
+ KPX D Aacute -40
765
+ KPX D Abreve -40
766
+ KPX D Acircumflex -40
767
+ KPX D Adieresis -40
768
+ KPX D Agrave -40
769
+ KPX D Amacron -40
770
+ KPX D Aogonek -40
771
+ KPX D Aring -40
772
+ KPX D Atilde -40
773
+ KPX D V -40
774
+ KPX D W -30
775
+ KPX D Y -55
776
+ KPX D Yacute -55
777
+ KPX D Ydieresis -55
778
+ KPX Dcaron A -40
779
+ KPX Dcaron Aacute -40
780
+ KPX Dcaron Abreve -40
781
+ KPX Dcaron Acircumflex -40
782
+ KPX Dcaron Adieresis -40
783
+ KPX Dcaron Agrave -40
784
+ KPX Dcaron Amacron -40
785
+ KPX Dcaron Aogonek -40
786
+ KPX Dcaron Aring -40
787
+ KPX Dcaron Atilde -40
788
+ KPX Dcaron V -40
789
+ KPX Dcaron W -30
790
+ KPX Dcaron Y -55
791
+ KPX Dcaron Yacute -55
792
+ KPX Dcaron Ydieresis -55
793
+ KPX Dcroat A -40
794
+ KPX Dcroat Aacute -40
795
+ KPX Dcroat Abreve -40
796
+ KPX Dcroat Acircumflex -40
797
+ KPX Dcroat Adieresis -40
798
+ KPX Dcroat Agrave -40
799
+ KPX Dcroat Amacron -40
800
+ KPX Dcroat Aogonek -40
801
+ KPX Dcroat Aring -40
802
+ KPX Dcroat Atilde -40
803
+ KPX Dcroat V -40
804
+ KPX Dcroat W -30
805
+ KPX Dcroat Y -55
806
+ KPX Dcroat Yacute -55
807
+ KPX Dcroat Ydieresis -55
808
+ KPX F A -74
809
+ KPX F Aacute -74
810
+ KPX F Abreve -74
811
+ KPX F Acircumflex -74
812
+ KPX F Adieresis -74
813
+ KPX F Agrave -74
814
+ KPX F Amacron -74
815
+ KPX F Aogonek -74
816
+ KPX F Aring -74
817
+ KPX F Atilde -74
818
+ KPX F a -15
819
+ KPX F aacute -15
820
+ KPX F abreve -15
821
+ KPX F acircumflex -15
822
+ KPX F adieresis -15
823
+ KPX F agrave -15
824
+ KPX F amacron -15
825
+ KPX F aogonek -15
826
+ KPX F aring -15
827
+ KPX F atilde -15
828
+ KPX F comma -80
829
+ KPX F o -15
830
+ KPX F oacute -15
831
+ KPX F ocircumflex -15
832
+ KPX F odieresis -15
833
+ KPX F ograve -15
834
+ KPX F ohungarumlaut -15
835
+ KPX F omacron -15
836
+ KPX F oslash -15
837
+ KPX F otilde -15
838
+ KPX F period -80
839
+ KPX J A -60
840
+ KPX J Aacute -60
841
+ KPX J Abreve -60
842
+ KPX J Acircumflex -60
843
+ KPX J Adieresis -60
844
+ KPX J Agrave -60
845
+ KPX J Amacron -60
846
+ KPX J Aogonek -60
847
+ KPX J Aring -60
848
+ KPX J Atilde -60
849
+ KPX K O -30
850
+ KPX K Oacute -30
851
+ KPX K Ocircumflex -30
852
+ KPX K Odieresis -30
853
+ KPX K Ograve -30
854
+ KPX K Ohungarumlaut -30
855
+ KPX K Omacron -30
856
+ KPX K Oslash -30
857
+ KPX K Otilde -30
858
+ KPX K e -25
859
+ KPX K eacute -25
860
+ KPX K ecaron -25
861
+ KPX K ecircumflex -25
862
+ KPX K edieresis -25
863
+ KPX K edotaccent -25
864
+ KPX K egrave -25
865
+ KPX K emacron -25
866
+ KPX K eogonek -25
867
+ KPX K o -35
868
+ KPX K oacute -35
869
+ KPX K ocircumflex -35
870
+ KPX K odieresis -35
871
+ KPX K ograve -35
872
+ KPX K ohungarumlaut -35
873
+ KPX K omacron -35
874
+ KPX K oslash -35
875
+ KPX K otilde -35
876
+ KPX K u -15
877
+ KPX K uacute -15
878
+ KPX K ucircumflex -15
879
+ KPX K udieresis -15
880
+ KPX K ugrave -15
881
+ KPX K uhungarumlaut -15
882
+ KPX K umacron -15
883
+ KPX K uogonek -15
884
+ KPX K uring -15
885
+ KPX K y -25
886
+ KPX K yacute -25
887
+ KPX K ydieresis -25
888
+ KPX Kcommaaccent O -30
889
+ KPX Kcommaaccent Oacute -30
890
+ KPX Kcommaaccent Ocircumflex -30
891
+ KPX Kcommaaccent Odieresis -30
892
+ KPX Kcommaaccent Ograve -30
893
+ KPX Kcommaaccent Ohungarumlaut -30
894
+ KPX Kcommaaccent Omacron -30
895
+ KPX Kcommaaccent Oslash -30
896
+ KPX Kcommaaccent Otilde -30
897
+ KPX Kcommaaccent e -25
898
+ KPX Kcommaaccent eacute -25
899
+ KPX Kcommaaccent ecaron -25
900
+ KPX Kcommaaccent ecircumflex -25
901
+ KPX Kcommaaccent edieresis -25
902
+ KPX Kcommaaccent edotaccent -25
903
+ KPX Kcommaaccent egrave -25
904
+ KPX Kcommaaccent emacron -25
905
+ KPX Kcommaaccent eogonek -25
906
+ KPX Kcommaaccent o -35
907
+ KPX Kcommaaccent oacute -35
908
+ KPX Kcommaaccent ocircumflex -35
909
+ KPX Kcommaaccent odieresis -35
910
+ KPX Kcommaaccent ograve -35
911
+ KPX Kcommaaccent ohungarumlaut -35
912
+ KPX Kcommaaccent omacron -35
913
+ KPX Kcommaaccent oslash -35
914
+ KPX Kcommaaccent otilde -35
915
+ KPX Kcommaaccent u -15
916
+ KPX Kcommaaccent uacute -15
917
+ KPX Kcommaaccent ucircumflex -15
918
+ KPX Kcommaaccent udieresis -15
919
+ KPX Kcommaaccent ugrave -15
920
+ KPX Kcommaaccent uhungarumlaut -15
921
+ KPX Kcommaaccent umacron -15
922
+ KPX Kcommaaccent uogonek -15
923
+ KPX Kcommaaccent uring -15
924
+ KPX Kcommaaccent y -25
925
+ KPX Kcommaaccent yacute -25
926
+ KPX Kcommaaccent ydieresis -25
927
+ KPX L T -92
928
+ KPX L Tcaron -92
929
+ KPX L Tcommaaccent -92
930
+ KPX L V -100
931
+ KPX L W -74
932
+ KPX L Y -100
933
+ KPX L Yacute -100
934
+ KPX L Ydieresis -100
935
+ KPX L quoteright -92
936
+ KPX L y -55
937
+ KPX L yacute -55
938
+ KPX L ydieresis -55
939
+ KPX Lacute T -92
940
+ KPX Lacute Tcaron -92
941
+ KPX Lacute Tcommaaccent -92
942
+ KPX Lacute V -100
943
+ KPX Lacute W -74
944
+ KPX Lacute Y -100
945
+ KPX Lacute Yacute -100
946
+ KPX Lacute Ydieresis -100
947
+ KPX Lacute quoteright -92
948
+ KPX Lacute y -55
949
+ KPX Lacute yacute -55
950
+ KPX Lacute ydieresis -55
951
+ KPX Lcaron quoteright -92
952
+ KPX Lcaron y -55
953
+ KPX Lcaron yacute -55
954
+ KPX Lcaron ydieresis -55
955
+ KPX Lcommaaccent T -92
956
+ KPX Lcommaaccent Tcaron -92
957
+ KPX Lcommaaccent Tcommaaccent -92
958
+ KPX Lcommaaccent V -100
959
+ KPX Lcommaaccent W -74
960
+ KPX Lcommaaccent Y -100
961
+ KPX Lcommaaccent Yacute -100
962
+ KPX Lcommaaccent Ydieresis -100
963
+ KPX Lcommaaccent quoteright -92
964
+ KPX Lcommaaccent y -55
965
+ KPX Lcommaaccent yacute -55
966
+ KPX Lcommaaccent ydieresis -55
967
+ KPX Lslash T -92
968
+ KPX Lslash Tcaron -92
969
+ KPX Lslash Tcommaaccent -92
970
+ KPX Lslash V -100
971
+ KPX Lslash W -74
972
+ KPX Lslash Y -100
973
+ KPX Lslash Yacute -100
974
+ KPX Lslash Ydieresis -100
975
+ KPX Lslash quoteright -92
976
+ KPX Lslash y -55
977
+ KPX Lslash yacute -55
978
+ KPX Lslash ydieresis -55
979
+ KPX N A -35
980
+ KPX N Aacute -35
981
+ KPX N Abreve -35
982
+ KPX N Acircumflex -35
983
+ KPX N Adieresis -35
984
+ KPX N Agrave -35
985
+ KPX N Amacron -35
986
+ KPX N Aogonek -35
987
+ KPX N Aring -35
988
+ KPX N Atilde -35
989
+ KPX Nacute A -35
990
+ KPX Nacute Aacute -35
991
+ KPX Nacute Abreve -35
992
+ KPX Nacute Acircumflex -35
993
+ KPX Nacute Adieresis -35
994
+ KPX Nacute Agrave -35
995
+ KPX Nacute Amacron -35
996
+ KPX Nacute Aogonek -35
997
+ KPX Nacute Aring -35
998
+ KPX Nacute Atilde -35
999
+ KPX Ncaron A -35
1000
+ KPX Ncaron Aacute -35
1001
+ KPX Ncaron Abreve -35
1002
+ KPX Ncaron Acircumflex -35
1003
+ KPX Ncaron Adieresis -35
1004
+ KPX Ncaron Agrave -35
1005
+ KPX Ncaron Amacron -35
1006
+ KPX Ncaron Aogonek -35
1007
+ KPX Ncaron Aring -35
1008
+ KPX Ncaron Atilde -35
1009
+ KPX Ncommaaccent A -35
1010
+ KPX Ncommaaccent Aacute -35
1011
+ KPX Ncommaaccent Abreve -35
1012
+ KPX Ncommaaccent Acircumflex -35
1013
+ KPX Ncommaaccent Adieresis -35
1014
+ KPX Ncommaaccent Agrave -35
1015
+ KPX Ncommaaccent Amacron -35
1016
+ KPX Ncommaaccent Aogonek -35
1017
+ KPX Ncommaaccent Aring -35
1018
+ KPX Ncommaaccent Atilde -35
1019
+ KPX Ntilde A -35
1020
+ KPX Ntilde Aacute -35
1021
+ KPX Ntilde Abreve -35
1022
+ KPX Ntilde Acircumflex -35
1023
+ KPX Ntilde Adieresis -35
1024
+ KPX Ntilde Agrave -35
1025
+ KPX Ntilde Amacron -35
1026
+ KPX Ntilde Aogonek -35
1027
+ KPX Ntilde Aring -35
1028
+ KPX Ntilde Atilde -35
1029
+ KPX O A -35
1030
+ KPX O Aacute -35
1031
+ KPX O Abreve -35
1032
+ KPX O Acircumflex -35
1033
+ KPX O Adieresis -35
1034
+ KPX O Agrave -35
1035
+ KPX O Amacron -35
1036
+ KPX O Aogonek -35
1037
+ KPX O Aring -35
1038
+ KPX O Atilde -35
1039
+ KPX O T -40
1040
+ KPX O Tcaron -40
1041
+ KPX O Tcommaaccent -40
1042
+ KPX O V -50
1043
+ KPX O W -35
1044
+ KPX O X -40
1045
+ KPX O Y -50
1046
+ KPX O Yacute -50
1047
+ KPX O Ydieresis -50
1048
+ KPX Oacute A -35
1049
+ KPX Oacute Aacute -35
1050
+ KPX Oacute Abreve -35
1051
+ KPX Oacute Acircumflex -35
1052
+ KPX Oacute Adieresis -35
1053
+ KPX Oacute Agrave -35
1054
+ KPX Oacute Amacron -35
1055
+ KPX Oacute Aogonek -35
1056
+ KPX Oacute Aring -35
1057
+ KPX Oacute Atilde -35
1058
+ KPX Oacute T -40
1059
+ KPX Oacute Tcaron -40
1060
+ KPX Oacute Tcommaaccent -40
1061
+ KPX Oacute V -50
1062
+ KPX Oacute W -35
1063
+ KPX Oacute X -40
1064
+ KPX Oacute Y -50
1065
+ KPX Oacute Yacute -50
1066
+ KPX Oacute Ydieresis -50
1067
+ KPX Ocircumflex A -35
1068
+ KPX Ocircumflex Aacute -35
1069
+ KPX Ocircumflex Abreve -35
1070
+ KPX Ocircumflex Acircumflex -35
1071
+ KPX Ocircumflex Adieresis -35
1072
+ KPX Ocircumflex Agrave -35
1073
+ KPX Ocircumflex Amacron -35
1074
+ KPX Ocircumflex Aogonek -35
1075
+ KPX Ocircumflex Aring -35
1076
+ KPX Ocircumflex Atilde -35
1077
+ KPX Ocircumflex T -40
1078
+ KPX Ocircumflex Tcaron -40
1079
+ KPX Ocircumflex Tcommaaccent -40
1080
+ KPX Ocircumflex V -50
1081
+ KPX Ocircumflex W -35
1082
+ KPX Ocircumflex X -40
1083
+ KPX Ocircumflex Y -50
1084
+ KPX Ocircumflex Yacute -50
1085
+ KPX Ocircumflex Ydieresis -50
1086
+ KPX Odieresis A -35
1087
+ KPX Odieresis Aacute -35
1088
+ KPX Odieresis Abreve -35
1089
+ KPX Odieresis Acircumflex -35
1090
+ KPX Odieresis Adieresis -35
1091
+ KPX Odieresis Agrave -35
1092
+ KPX Odieresis Amacron -35
1093
+ KPX Odieresis Aogonek -35
1094
+ KPX Odieresis Aring -35
1095
+ KPX Odieresis Atilde -35
1096
+ KPX Odieresis T -40
1097
+ KPX Odieresis Tcaron -40
1098
+ KPX Odieresis Tcommaaccent -40
1099
+ KPX Odieresis V -50
1100
+ KPX Odieresis W -35
1101
+ KPX Odieresis X -40
1102
+ KPX Odieresis Y -50
1103
+ KPX Odieresis Yacute -50
1104
+ KPX Odieresis Ydieresis -50
1105
+ KPX Ograve A -35
1106
+ KPX Ograve Aacute -35
1107
+ KPX Ograve Abreve -35
1108
+ KPX Ograve Acircumflex -35
1109
+ KPX Ograve Adieresis -35
1110
+ KPX Ograve Agrave -35
1111
+ KPX Ograve Amacron -35
1112
+ KPX Ograve Aogonek -35
1113
+ KPX Ograve Aring -35
1114
+ KPX Ograve Atilde -35
1115
+ KPX Ograve T -40
1116
+ KPX Ograve Tcaron -40
1117
+ KPX Ograve Tcommaaccent -40
1118
+ KPX Ograve V -50
1119
+ KPX Ograve W -35
1120
+ KPX Ograve X -40
1121
+ KPX Ograve Y -50
1122
+ KPX Ograve Yacute -50
1123
+ KPX Ograve Ydieresis -50
1124
+ KPX Ohungarumlaut A -35
1125
+ KPX Ohungarumlaut Aacute -35
1126
+ KPX Ohungarumlaut Abreve -35
1127
+ KPX Ohungarumlaut Acircumflex -35
1128
+ KPX Ohungarumlaut Adieresis -35
1129
+ KPX Ohungarumlaut Agrave -35
1130
+ KPX Ohungarumlaut Amacron -35
1131
+ KPX Ohungarumlaut Aogonek -35
1132
+ KPX Ohungarumlaut Aring -35
1133
+ KPX Ohungarumlaut Atilde -35
1134
+ KPX Ohungarumlaut T -40
1135
+ KPX Ohungarumlaut Tcaron -40
1136
+ KPX Ohungarumlaut Tcommaaccent -40
1137
+ KPX Ohungarumlaut V -50
1138
+ KPX Ohungarumlaut W -35
1139
+ KPX Ohungarumlaut X -40
1140
+ KPX Ohungarumlaut Y -50
1141
+ KPX Ohungarumlaut Yacute -50
1142
+ KPX Ohungarumlaut Ydieresis -50
1143
+ KPX Omacron A -35
1144
+ KPX Omacron Aacute -35
1145
+ KPX Omacron Abreve -35
1146
+ KPX Omacron Acircumflex -35
1147
+ KPX Omacron Adieresis -35
1148
+ KPX Omacron Agrave -35
1149
+ KPX Omacron Amacron -35
1150
+ KPX Omacron Aogonek -35
1151
+ KPX Omacron Aring -35
1152
+ KPX Omacron Atilde -35
1153
+ KPX Omacron T -40
1154
+ KPX Omacron Tcaron -40
1155
+ KPX Omacron Tcommaaccent -40
1156
+ KPX Omacron V -50
1157
+ KPX Omacron W -35
1158
+ KPX Omacron X -40
1159
+ KPX Omacron Y -50
1160
+ KPX Omacron Yacute -50
1161
+ KPX Omacron Ydieresis -50
1162
+ KPX Oslash A -35
1163
+ KPX Oslash Aacute -35
1164
+ KPX Oslash Abreve -35
1165
+ KPX Oslash Acircumflex -35
1166
+ KPX Oslash Adieresis -35
1167
+ KPX Oslash Agrave -35
1168
+ KPX Oslash Amacron -35
1169
+ KPX Oslash Aogonek -35
1170
+ KPX Oslash Aring -35
1171
+ KPX Oslash Atilde -35
1172
+ KPX Oslash T -40
1173
+ KPX Oslash Tcaron -40
1174
+ KPX Oslash Tcommaaccent -40
1175
+ KPX Oslash V -50
1176
+ KPX Oslash W -35
1177
+ KPX Oslash X -40
1178
+ KPX Oslash Y -50
1179
+ KPX Oslash Yacute -50
1180
+ KPX Oslash Ydieresis -50
1181
+ KPX Otilde A -35
1182
+ KPX Otilde Aacute -35
1183
+ KPX Otilde Abreve -35
1184
+ KPX Otilde Acircumflex -35
1185
+ KPX Otilde Adieresis -35
1186
+ KPX Otilde Agrave -35
1187
+ KPX Otilde Amacron -35
1188
+ KPX Otilde Aogonek -35
1189
+ KPX Otilde Aring -35
1190
+ KPX Otilde Atilde -35
1191
+ KPX Otilde T -40
1192
+ KPX Otilde Tcaron -40
1193
+ KPX Otilde Tcommaaccent -40
1194
+ KPX Otilde V -50
1195
+ KPX Otilde W -35
1196
+ KPX Otilde X -40
1197
+ KPX Otilde Y -50
1198
+ KPX Otilde Yacute -50
1199
+ KPX Otilde Ydieresis -50
1200
+ KPX P A -92
1201
+ KPX P Aacute -92
1202
+ KPX P Abreve -92
1203
+ KPX P Acircumflex -92
1204
+ KPX P Adieresis -92
1205
+ KPX P Agrave -92
1206
+ KPX P Amacron -92
1207
+ KPX P Aogonek -92
1208
+ KPX P Aring -92
1209
+ KPX P Atilde -92
1210
+ KPX P a -15
1211
+ KPX P aacute -15
1212
+ KPX P abreve -15
1213
+ KPX P acircumflex -15
1214
+ KPX P adieresis -15
1215
+ KPX P agrave -15
1216
+ KPX P amacron -15
1217
+ KPX P aogonek -15
1218
+ KPX P aring -15
1219
+ KPX P atilde -15
1220
+ KPX P comma -111
1221
+ KPX P period -111
1222
+ KPX Q U -10
1223
+ KPX Q Uacute -10
1224
+ KPX Q Ucircumflex -10
1225
+ KPX Q Udieresis -10
1226
+ KPX Q Ugrave -10
1227
+ KPX Q Uhungarumlaut -10
1228
+ KPX Q Umacron -10
1229
+ KPX Q Uogonek -10
1230
+ KPX Q Uring -10
1231
+ KPX R O -40
1232
+ KPX R Oacute -40
1233
+ KPX R Ocircumflex -40
1234
+ KPX R Odieresis -40
1235
+ KPX R Ograve -40
1236
+ KPX R Ohungarumlaut -40
1237
+ KPX R Omacron -40
1238
+ KPX R Oslash -40
1239
+ KPX R Otilde -40
1240
+ KPX R T -60
1241
+ KPX R Tcaron -60
1242
+ KPX R Tcommaaccent -60
1243
+ KPX R U -40
1244
+ KPX R Uacute -40
1245
+ KPX R Ucircumflex -40
1246
+ KPX R Udieresis -40
1247
+ KPX R Ugrave -40
1248
+ KPX R Uhungarumlaut -40
1249
+ KPX R Umacron -40
1250
+ KPX R Uogonek -40
1251
+ KPX R Uring -40
1252
+ KPX R V -80
1253
+ KPX R W -55
1254
+ KPX R Y -65
1255
+ KPX R Yacute -65
1256
+ KPX R Ydieresis -65
1257
+ KPX Racute O -40
1258
+ KPX Racute Oacute -40
1259
+ KPX Racute Ocircumflex -40
1260
+ KPX Racute Odieresis -40
1261
+ KPX Racute Ograve -40
1262
+ KPX Racute Ohungarumlaut -40
1263
+ KPX Racute Omacron -40
1264
+ KPX Racute Oslash -40
1265
+ KPX Racute Otilde -40
1266
+ KPX Racute T -60
1267
+ KPX Racute Tcaron -60
1268
+ KPX Racute Tcommaaccent -60
1269
+ KPX Racute U -40
1270
+ KPX Racute Uacute -40
1271
+ KPX Racute Ucircumflex -40
1272
+ KPX Racute Udieresis -40
1273
+ KPX Racute Ugrave -40
1274
+ KPX Racute Uhungarumlaut -40
1275
+ KPX Racute Umacron -40
1276
+ KPX Racute Uogonek -40
1277
+ KPX Racute Uring -40
1278
+ KPX Racute V -80
1279
+ KPX Racute W -55
1280
+ KPX Racute Y -65
1281
+ KPX Racute Yacute -65
1282
+ KPX Racute Ydieresis -65
1283
+ KPX Rcaron O -40
1284
+ KPX Rcaron Oacute -40
1285
+ KPX Rcaron Ocircumflex -40
1286
+ KPX Rcaron Odieresis -40
1287
+ KPX Rcaron Ograve -40
1288
+ KPX Rcaron Ohungarumlaut -40
1289
+ KPX Rcaron Omacron -40
1290
+ KPX Rcaron Oslash -40
1291
+ KPX Rcaron Otilde -40
1292
+ KPX Rcaron T -60
1293
+ KPX Rcaron Tcaron -60
1294
+ KPX Rcaron Tcommaaccent -60
1295
+ KPX Rcaron U -40
1296
+ KPX Rcaron Uacute -40
1297
+ KPX Rcaron Ucircumflex -40
1298
+ KPX Rcaron Udieresis -40
1299
+ KPX Rcaron Ugrave -40
1300
+ KPX Rcaron Uhungarumlaut -40
1301
+ KPX Rcaron Umacron -40
1302
+ KPX Rcaron Uogonek -40
1303
+ KPX Rcaron Uring -40
1304
+ KPX Rcaron V -80
1305
+ KPX Rcaron W -55
1306
+ KPX Rcaron Y -65
1307
+ KPX Rcaron Yacute -65
1308
+ KPX Rcaron Ydieresis -65
1309
+ KPX Rcommaaccent O -40
1310
+ KPX Rcommaaccent Oacute -40
1311
+ KPX Rcommaaccent Ocircumflex -40
1312
+ KPX Rcommaaccent Odieresis -40
1313
+ KPX Rcommaaccent Ograve -40
1314
+ KPX Rcommaaccent Ohungarumlaut -40
1315
+ KPX Rcommaaccent Omacron -40
1316
+ KPX Rcommaaccent Oslash -40
1317
+ KPX Rcommaaccent Otilde -40
1318
+ KPX Rcommaaccent T -60
1319
+ KPX Rcommaaccent Tcaron -60
1320
+ KPX Rcommaaccent Tcommaaccent -60
1321
+ KPX Rcommaaccent U -40
1322
+ KPX Rcommaaccent Uacute -40
1323
+ KPX Rcommaaccent Ucircumflex -40
1324
+ KPX Rcommaaccent Udieresis -40
1325
+ KPX Rcommaaccent Ugrave -40
1326
+ KPX Rcommaaccent Uhungarumlaut -40
1327
+ KPX Rcommaaccent Umacron -40
1328
+ KPX Rcommaaccent Uogonek -40
1329
+ KPX Rcommaaccent Uring -40
1330
+ KPX Rcommaaccent V -80
1331
+ KPX Rcommaaccent W -55
1332
+ KPX Rcommaaccent Y -65
1333
+ KPX Rcommaaccent Yacute -65
1334
+ KPX Rcommaaccent Ydieresis -65
1335
+ KPX T A -93
1336
+ KPX T Aacute -93
1337
+ KPX T Abreve -93
1338
+ KPX T Acircumflex -93
1339
+ KPX T Adieresis -93
1340
+ KPX T Agrave -93
1341
+ KPX T Amacron -93
1342
+ KPX T Aogonek -93
1343
+ KPX T Aring -93
1344
+ KPX T Atilde -93
1345
+ KPX T O -18
1346
+ KPX T Oacute -18
1347
+ KPX T Ocircumflex -18
1348
+ KPX T Odieresis -18
1349
+ KPX T Ograve -18
1350
+ KPX T Ohungarumlaut -18
1351
+ KPX T Omacron -18
1352
+ KPX T Oslash -18
1353
+ KPX T Otilde -18
1354
+ KPX T a -80
1355
+ KPX T aacute -80
1356
+ KPX T abreve -80
1357
+ KPX T acircumflex -80
1358
+ KPX T adieresis -40
1359
+ KPX T agrave -40
1360
+ KPX T amacron -40
1361
+ KPX T aogonek -80
1362
+ KPX T aring -80
1363
+ KPX T atilde -40
1364
+ KPX T colon -50
1365
+ KPX T comma -74
1366
+ KPX T e -70
1367
+ KPX T eacute -70
1368
+ KPX T ecaron -70
1369
+ KPX T ecircumflex -70
1370
+ KPX T edieresis -30
1371
+ KPX T edotaccent -70
1372
+ KPX T egrave -70
1373
+ KPX T emacron -30
1374
+ KPX T eogonek -70
1375
+ KPX T hyphen -92
1376
+ KPX T i -35
1377
+ KPX T iacute -35
1378
+ KPX T iogonek -35
1379
+ KPX T o -80
1380
+ KPX T oacute -80
1381
+ KPX T ocircumflex -80
1382
+ KPX T odieresis -80
1383
+ KPX T ograve -80
1384
+ KPX T ohungarumlaut -80
1385
+ KPX T omacron -80
1386
+ KPX T oslash -80
1387
+ KPX T otilde -80
1388
+ KPX T period -74
1389
+ KPX T r -35
1390
+ KPX T racute -35
1391
+ KPX T rcaron -35
1392
+ KPX T rcommaaccent -35
1393
+ KPX T semicolon -55
1394
+ KPX T u -45
1395
+ KPX T uacute -45
1396
+ KPX T ucircumflex -45
1397
+ KPX T udieresis -45
1398
+ KPX T ugrave -45
1399
+ KPX T uhungarumlaut -45
1400
+ KPX T umacron -45
1401
+ KPX T uogonek -45
1402
+ KPX T uring -45
1403
+ KPX T w -80
1404
+ KPX T y -80
1405
+ KPX T yacute -80
1406
+ KPX T ydieresis -80
1407
+ KPX Tcaron A -93
1408
+ KPX Tcaron Aacute -93
1409
+ KPX Tcaron Abreve -93
1410
+ KPX Tcaron Acircumflex -93
1411
+ KPX Tcaron Adieresis -93
1412
+ KPX Tcaron Agrave -93
1413
+ KPX Tcaron Amacron -93
1414
+ KPX Tcaron Aogonek -93
1415
+ KPX Tcaron Aring -93
1416
+ KPX Tcaron Atilde -93
1417
+ KPX Tcaron O -18
1418
+ KPX Tcaron Oacute -18
1419
+ KPX Tcaron Ocircumflex -18
1420
+ KPX Tcaron Odieresis -18
1421
+ KPX Tcaron Ograve -18
1422
+ KPX Tcaron Ohungarumlaut -18
1423
+ KPX Tcaron Omacron -18
1424
+ KPX Tcaron Oslash -18
1425
+ KPX Tcaron Otilde -18
1426
+ KPX Tcaron a -80
1427
+ KPX Tcaron aacute -80
1428
+ KPX Tcaron abreve -80
1429
+ KPX Tcaron acircumflex -80
1430
+ KPX Tcaron adieresis -40
1431
+ KPX Tcaron agrave -40
1432
+ KPX Tcaron amacron -40
1433
+ KPX Tcaron aogonek -80
1434
+ KPX Tcaron aring -80
1435
+ KPX Tcaron atilde -40
1436
+ KPX Tcaron colon -50
1437
+ KPX Tcaron comma -74
1438
+ KPX Tcaron e -70
1439
+ KPX Tcaron eacute -70
1440
+ KPX Tcaron ecaron -70
1441
+ KPX Tcaron ecircumflex -30
1442
+ KPX Tcaron edieresis -30
1443
+ KPX Tcaron edotaccent -70
1444
+ KPX Tcaron egrave -70
1445
+ KPX Tcaron emacron -30
1446
+ KPX Tcaron eogonek -70
1447
+ KPX Tcaron hyphen -92
1448
+ KPX Tcaron i -35
1449
+ KPX Tcaron iacute -35
1450
+ KPX Tcaron iogonek -35
1451
+ KPX Tcaron o -80
1452
+ KPX Tcaron oacute -80
1453
+ KPX Tcaron ocircumflex -80
1454
+ KPX Tcaron odieresis -80
1455
+ KPX Tcaron ograve -80
1456
+ KPX Tcaron ohungarumlaut -80
1457
+ KPX Tcaron omacron -80
1458
+ KPX Tcaron oslash -80
1459
+ KPX Tcaron otilde -80
1460
+ KPX Tcaron period -74
1461
+ KPX Tcaron r -35
1462
+ KPX Tcaron racute -35
1463
+ KPX Tcaron rcaron -35
1464
+ KPX Tcaron rcommaaccent -35
1465
+ KPX Tcaron semicolon -55
1466
+ KPX Tcaron u -45
1467
+ KPX Tcaron uacute -45
1468
+ KPX Tcaron ucircumflex -45
1469
+ KPX Tcaron udieresis -45
1470
+ KPX Tcaron ugrave -45
1471
+ KPX Tcaron uhungarumlaut -45
1472
+ KPX Tcaron umacron -45
1473
+ KPX Tcaron uogonek -45
1474
+ KPX Tcaron uring -45
1475
+ KPX Tcaron w -80
1476
+ KPX Tcaron y -80
1477
+ KPX Tcaron yacute -80
1478
+ KPX Tcaron ydieresis -80
1479
+ KPX Tcommaaccent A -93
1480
+ KPX Tcommaaccent Aacute -93
1481
+ KPX Tcommaaccent Abreve -93
1482
+ KPX Tcommaaccent Acircumflex -93
1483
+ KPX Tcommaaccent Adieresis -93
1484
+ KPX Tcommaaccent Agrave -93
1485
+ KPX Tcommaaccent Amacron -93
1486
+ KPX Tcommaaccent Aogonek -93
1487
+ KPX Tcommaaccent Aring -93
1488
+ KPX Tcommaaccent Atilde -93
1489
+ KPX Tcommaaccent O -18
1490
+ KPX Tcommaaccent Oacute -18
1491
+ KPX Tcommaaccent Ocircumflex -18
1492
+ KPX Tcommaaccent Odieresis -18
1493
+ KPX Tcommaaccent Ograve -18
1494
+ KPX Tcommaaccent Ohungarumlaut -18
1495
+ KPX Tcommaaccent Omacron -18
1496
+ KPX Tcommaaccent Oslash -18
1497
+ KPX Tcommaaccent Otilde -18
1498
+ KPX Tcommaaccent a -80
1499
+ KPX Tcommaaccent aacute -80
1500
+ KPX Tcommaaccent abreve -80
1501
+ KPX Tcommaaccent acircumflex -80
1502
+ KPX Tcommaaccent adieresis -40
1503
+ KPX Tcommaaccent agrave -40
1504
+ KPX Tcommaaccent amacron -40
1505
+ KPX Tcommaaccent aogonek -80
1506
+ KPX Tcommaaccent aring -80
1507
+ KPX Tcommaaccent atilde -40
1508
+ KPX Tcommaaccent colon -50
1509
+ KPX Tcommaaccent comma -74
1510
+ KPX Tcommaaccent e -70
1511
+ KPX Tcommaaccent eacute -70
1512
+ KPX Tcommaaccent ecaron -70
1513
+ KPX Tcommaaccent ecircumflex -30
1514
+ KPX Tcommaaccent edieresis -30
1515
+ KPX Tcommaaccent edotaccent -70
1516
+ KPX Tcommaaccent egrave -30
1517
+ KPX Tcommaaccent emacron -70
1518
+ KPX Tcommaaccent eogonek -70
1519
+ KPX Tcommaaccent hyphen -92
1520
+ KPX Tcommaaccent i -35
1521
+ KPX Tcommaaccent iacute -35
1522
+ KPX Tcommaaccent iogonek -35
1523
+ KPX Tcommaaccent o -80
1524
+ KPX Tcommaaccent oacute -80
1525
+ KPX Tcommaaccent ocircumflex -80
1526
+ KPX Tcommaaccent odieresis -80
1527
+ KPX Tcommaaccent ograve -80
1528
+ KPX Tcommaaccent ohungarumlaut -80
1529
+ KPX Tcommaaccent omacron -80
1530
+ KPX Tcommaaccent oslash -80
1531
+ KPX Tcommaaccent otilde -80
1532
+ KPX Tcommaaccent period -74
1533
+ KPX Tcommaaccent r -35
1534
+ KPX Tcommaaccent racute -35
1535
+ KPX Tcommaaccent rcaron -35
1536
+ KPX Tcommaaccent rcommaaccent -35
1537
+ KPX Tcommaaccent semicolon -55
1538
+ KPX Tcommaaccent u -45
1539
+ KPX Tcommaaccent uacute -45
1540
+ KPX Tcommaaccent ucircumflex -45
1541
+ KPX Tcommaaccent udieresis -45
1542
+ KPX Tcommaaccent ugrave -45
1543
+ KPX Tcommaaccent uhungarumlaut -45
1544
+ KPX Tcommaaccent umacron -45
1545
+ KPX Tcommaaccent uogonek -45
1546
+ KPX Tcommaaccent uring -45
1547
+ KPX Tcommaaccent w -80
1548
+ KPX Tcommaaccent y -80
1549
+ KPX Tcommaaccent yacute -80
1550
+ KPX Tcommaaccent ydieresis -80
1551
+ KPX U A -40
1552
+ KPX U Aacute -40
1553
+ KPX U Abreve -40
1554
+ KPX U Acircumflex -40
1555
+ KPX U Adieresis -40
1556
+ KPX U Agrave -40
1557
+ KPX U Amacron -40
1558
+ KPX U Aogonek -40
1559
+ KPX U Aring -40
1560
+ KPX U Atilde -40
1561
+ KPX Uacute A -40
1562
+ KPX Uacute Aacute -40
1563
+ KPX Uacute Abreve -40
1564
+ KPX Uacute Acircumflex -40
1565
+ KPX Uacute Adieresis -40
1566
+ KPX Uacute Agrave -40
1567
+ KPX Uacute Amacron -40
1568
+ KPX Uacute Aogonek -40
1569
+ KPX Uacute Aring -40
1570
+ KPX Uacute Atilde -40
1571
+ KPX Ucircumflex A -40
1572
+ KPX Ucircumflex Aacute -40
1573
+ KPX Ucircumflex Abreve -40
1574
+ KPX Ucircumflex Acircumflex -40
1575
+ KPX Ucircumflex Adieresis -40
1576
+ KPX Ucircumflex Agrave -40
1577
+ KPX Ucircumflex Amacron -40
1578
+ KPX Ucircumflex Aogonek -40
1579
+ KPX Ucircumflex Aring -40
1580
+ KPX Ucircumflex Atilde -40
1581
+ KPX Udieresis A -40
1582
+ KPX Udieresis Aacute -40
1583
+ KPX Udieresis Abreve -40
1584
+ KPX Udieresis Acircumflex -40
1585
+ KPX Udieresis Adieresis -40
1586
+ KPX Udieresis Agrave -40
1587
+ KPX Udieresis Amacron -40
1588
+ KPX Udieresis Aogonek -40
1589
+ KPX Udieresis Aring -40
1590
+ KPX Udieresis Atilde -40
1591
+ KPX Ugrave A -40
1592
+ KPX Ugrave Aacute -40
1593
+ KPX Ugrave Abreve -40
1594
+ KPX Ugrave Acircumflex -40
1595
+ KPX Ugrave Adieresis -40
1596
+ KPX Ugrave Agrave -40
1597
+ KPX Ugrave Amacron -40
1598
+ KPX Ugrave Aogonek -40
1599
+ KPX Ugrave Aring -40
1600
+ KPX Ugrave Atilde -40
1601
+ KPX Uhungarumlaut A -40
1602
+ KPX Uhungarumlaut Aacute -40
1603
+ KPX Uhungarumlaut Abreve -40
1604
+ KPX Uhungarumlaut Acircumflex -40
1605
+ KPX Uhungarumlaut Adieresis -40
1606
+ KPX Uhungarumlaut Agrave -40
1607
+ KPX Uhungarumlaut Amacron -40
1608
+ KPX Uhungarumlaut Aogonek -40
1609
+ KPX Uhungarumlaut Aring -40
1610
+ KPX Uhungarumlaut Atilde -40
1611
+ KPX Umacron A -40
1612
+ KPX Umacron Aacute -40
1613
+ KPX Umacron Abreve -40
1614
+ KPX Umacron Acircumflex -40
1615
+ KPX Umacron Adieresis -40
1616
+ KPX Umacron Agrave -40
1617
+ KPX Umacron Amacron -40
1618
+ KPX Umacron Aogonek -40
1619
+ KPX Umacron Aring -40
1620
+ KPX Umacron Atilde -40
1621
+ KPX Uogonek A -40
1622
+ KPX Uogonek Aacute -40
1623
+ KPX Uogonek Abreve -40
1624
+ KPX Uogonek Acircumflex -40
1625
+ KPX Uogonek Adieresis -40
1626
+ KPX Uogonek Agrave -40
1627
+ KPX Uogonek Amacron -40
1628
+ KPX Uogonek Aogonek -40
1629
+ KPX Uogonek Aring -40
1630
+ KPX Uogonek Atilde -40
1631
+ KPX Uring A -40
1632
+ KPX Uring Aacute -40
1633
+ KPX Uring Abreve -40
1634
+ KPX Uring Acircumflex -40
1635
+ KPX Uring Adieresis -40
1636
+ KPX Uring Agrave -40
1637
+ KPX Uring Amacron -40
1638
+ KPX Uring Aogonek -40
1639
+ KPX Uring Aring -40
1640
+ KPX Uring Atilde -40
1641
+ KPX V A -135
1642
+ KPX V Aacute -135
1643
+ KPX V Abreve -135
1644
+ KPX V Acircumflex -135
1645
+ KPX V Adieresis -135
1646
+ KPX V Agrave -135
1647
+ KPX V Amacron -135
1648
+ KPX V Aogonek -135
1649
+ KPX V Aring -135
1650
+ KPX V Atilde -135
1651
+ KPX V G -15
1652
+ KPX V Gbreve -15
1653
+ KPX V Gcommaaccent -15
1654
+ KPX V O -40
1655
+ KPX V Oacute -40
1656
+ KPX V Ocircumflex -40
1657
+ KPX V Odieresis -40
1658
+ KPX V Ograve -40
1659
+ KPX V Ohungarumlaut -40
1660
+ KPX V Omacron -40
1661
+ KPX V Oslash -40
1662
+ KPX V Otilde -40
1663
+ KPX V a -111
1664
+ KPX V aacute -111
1665
+ KPX V abreve -111
1666
+ KPX V acircumflex -71
1667
+ KPX V adieresis -71
1668
+ KPX V agrave -71
1669
+ KPX V amacron -71
1670
+ KPX V aogonek -111
1671
+ KPX V aring -111
1672
+ KPX V atilde -71
1673
+ KPX V colon -74
1674
+ KPX V comma -129
1675
+ KPX V e -111
1676
+ KPX V eacute -111
1677
+ KPX V ecaron -71
1678
+ KPX V ecircumflex -71
1679
+ KPX V edieresis -71
1680
+ KPX V edotaccent -111
1681
+ KPX V egrave -71
1682
+ KPX V emacron -71
1683
+ KPX V eogonek -111
1684
+ KPX V hyphen -100
1685
+ KPX V i -60
1686
+ KPX V iacute -60
1687
+ KPX V icircumflex -20
1688
+ KPX V idieresis -20
1689
+ KPX V igrave -20
1690
+ KPX V imacron -20
1691
+ KPX V iogonek -60
1692
+ KPX V o -129
1693
+ KPX V oacute -129
1694
+ KPX V ocircumflex -129
1695
+ KPX V odieresis -89
1696
+ KPX V ograve -89
1697
+ KPX V ohungarumlaut -129
1698
+ KPX V omacron -89
1699
+ KPX V oslash -129
1700
+ KPX V otilde -89
1701
+ KPX V period -129
1702
+ KPX V semicolon -74
1703
+ KPX V u -75
1704
+ KPX V uacute -75
1705
+ KPX V ucircumflex -75
1706
+ KPX V udieresis -75
1707
+ KPX V ugrave -75
1708
+ KPX V uhungarumlaut -75
1709
+ KPX V umacron -75
1710
+ KPX V uogonek -75
1711
+ KPX V uring -75
1712
+ KPX W A -120
1713
+ KPX W Aacute -120
1714
+ KPX W Abreve -120
1715
+ KPX W Acircumflex -120
1716
+ KPX W Adieresis -120
1717
+ KPX W Agrave -120
1718
+ KPX W Amacron -120
1719
+ KPX W Aogonek -120
1720
+ KPX W Aring -120
1721
+ KPX W Atilde -120
1722
+ KPX W O -10
1723
+ KPX W Oacute -10
1724
+ KPX W Ocircumflex -10
1725
+ KPX W Odieresis -10
1726
+ KPX W Ograve -10
1727
+ KPX W Ohungarumlaut -10
1728
+ KPX W Omacron -10
1729
+ KPX W Oslash -10
1730
+ KPX W Otilde -10
1731
+ KPX W a -80
1732
+ KPX W aacute -80
1733
+ KPX W abreve -80
1734
+ KPX W acircumflex -80
1735
+ KPX W adieresis -80
1736
+ KPX W agrave -80
1737
+ KPX W amacron -80
1738
+ KPX W aogonek -80
1739
+ KPX W aring -80
1740
+ KPX W atilde -80
1741
+ KPX W colon -37
1742
+ KPX W comma -92
1743
+ KPX W e -80
1744
+ KPX W eacute -80
1745
+ KPX W ecaron -80
1746
+ KPX W ecircumflex -80
1747
+ KPX W edieresis -40
1748
+ KPX W edotaccent -80
1749
+ KPX W egrave -40
1750
+ KPX W emacron -40
1751
+ KPX W eogonek -80
1752
+ KPX W hyphen -65
1753
+ KPX W i -40
1754
+ KPX W iacute -40
1755
+ KPX W iogonek -40
1756
+ KPX W o -80
1757
+ KPX W oacute -80
1758
+ KPX W ocircumflex -80
1759
+ KPX W odieresis -80
1760
+ KPX W ograve -80
1761
+ KPX W ohungarumlaut -80
1762
+ KPX W omacron -80
1763
+ KPX W oslash -80
1764
+ KPX W otilde -80
1765
+ KPX W period -92
1766
+ KPX W semicolon -37
1767
+ KPX W u -50
1768
+ KPX W uacute -50
1769
+ KPX W ucircumflex -50
1770
+ KPX W udieresis -50
1771
+ KPX W ugrave -50
1772
+ KPX W uhungarumlaut -50
1773
+ KPX W umacron -50
1774
+ KPX W uogonek -50
1775
+ KPX W uring -50
1776
+ KPX W y -73
1777
+ KPX W yacute -73
1778
+ KPX W ydieresis -73
1779
+ KPX Y A -120
1780
+ KPX Y Aacute -120
1781
+ KPX Y Abreve -120
1782
+ KPX Y Acircumflex -120
1783
+ KPX Y Adieresis -120
1784
+ KPX Y Agrave -120
1785
+ KPX Y Amacron -120
1786
+ KPX Y Aogonek -120
1787
+ KPX Y Aring -120
1788
+ KPX Y Atilde -120
1789
+ KPX Y O -30
1790
+ KPX Y Oacute -30
1791
+ KPX Y Ocircumflex -30
1792
+ KPX Y Odieresis -30
1793
+ KPX Y Ograve -30
1794
+ KPX Y Ohungarumlaut -30
1795
+ KPX Y Omacron -30
1796
+ KPX Y Oslash -30
1797
+ KPX Y Otilde -30
1798
+ KPX Y a -100
1799
+ KPX Y aacute -100
1800
+ KPX Y abreve -100
1801
+ KPX Y acircumflex -100
1802
+ KPX Y adieresis -60
1803
+ KPX Y agrave -60
1804
+ KPX Y amacron -60
1805
+ KPX Y aogonek -100
1806
+ KPX Y aring -100
1807
+ KPX Y atilde -60
1808
+ KPX Y colon -92
1809
+ KPX Y comma -129
1810
+ KPX Y e -100
1811
+ KPX Y eacute -100
1812
+ KPX Y ecaron -100
1813
+ KPX Y ecircumflex -100
1814
+ KPX Y edieresis -60
1815
+ KPX Y edotaccent -100
1816
+ KPX Y egrave -60
1817
+ KPX Y emacron -60
1818
+ KPX Y eogonek -100
1819
+ KPX Y hyphen -111
1820
+ KPX Y i -55
1821
+ KPX Y iacute -55
1822
+ KPX Y iogonek -55
1823
+ KPX Y o -110
1824
+ KPX Y oacute -110
1825
+ KPX Y ocircumflex -110
1826
+ KPX Y odieresis -70
1827
+ KPX Y ograve -70
1828
+ KPX Y ohungarumlaut -110
1829
+ KPX Y omacron -70
1830
+ KPX Y oslash -110
1831
+ KPX Y otilde -70
1832
+ KPX Y period -129
1833
+ KPX Y semicolon -92
1834
+ KPX Y u -111
1835
+ KPX Y uacute -111
1836
+ KPX Y ucircumflex -111
1837
+ KPX Y udieresis -71
1838
+ KPX Y ugrave -71
1839
+ KPX Y uhungarumlaut -111
1840
+ KPX Y umacron -71
1841
+ KPX Y uogonek -111
1842
+ KPX Y uring -111
1843
+ KPX Yacute A -120
1844
+ KPX Yacute Aacute -120
1845
+ KPX Yacute Abreve -120
1846
+ KPX Yacute Acircumflex -120
1847
+ KPX Yacute Adieresis -120
1848
+ KPX Yacute Agrave -120
1849
+ KPX Yacute Amacron -120
1850
+ KPX Yacute Aogonek -120
1851
+ KPX Yacute Aring -120
1852
+ KPX Yacute Atilde -120
1853
+ KPX Yacute O -30
1854
+ KPX Yacute Oacute -30
1855
+ KPX Yacute Ocircumflex -30
1856
+ KPX Yacute Odieresis -30
1857
+ KPX Yacute Ograve -30
1858
+ KPX Yacute Ohungarumlaut -30
1859
+ KPX Yacute Omacron -30
1860
+ KPX Yacute Oslash -30
1861
+ KPX Yacute Otilde -30
1862
+ KPX Yacute a -100
1863
+ KPX Yacute aacute -100
1864
+ KPX Yacute abreve -100
1865
+ KPX Yacute acircumflex -100
1866
+ KPX Yacute adieresis -60
1867
+ KPX Yacute agrave -60
1868
+ KPX Yacute amacron -60
1869
+ KPX Yacute aogonek -100
1870
+ KPX Yacute aring -100
1871
+ KPX Yacute atilde -60
1872
+ KPX Yacute colon -92
1873
+ KPX Yacute comma -129
1874
+ KPX Yacute e -100
1875
+ KPX Yacute eacute -100
1876
+ KPX Yacute ecaron -100
1877
+ KPX Yacute ecircumflex -100
1878
+ KPX Yacute edieresis -60
1879
+ KPX Yacute edotaccent -100
1880
+ KPX Yacute egrave -60
1881
+ KPX Yacute emacron -60
1882
+ KPX Yacute eogonek -100
1883
+ KPX Yacute hyphen -111
1884
+ KPX Yacute i -55
1885
+ KPX Yacute iacute -55
1886
+ KPX Yacute iogonek -55
1887
+ KPX Yacute o -110
1888
+ KPX Yacute oacute -110
1889
+ KPX Yacute ocircumflex -110
1890
+ KPX Yacute odieresis -70
1891
+ KPX Yacute ograve -70
1892
+ KPX Yacute ohungarumlaut -110
1893
+ KPX Yacute omacron -70
1894
+ KPX Yacute oslash -110
1895
+ KPX Yacute otilde -70
1896
+ KPX Yacute period -129
1897
+ KPX Yacute semicolon -92
1898
+ KPX Yacute u -111
1899
+ KPX Yacute uacute -111
1900
+ KPX Yacute ucircumflex -111
1901
+ KPX Yacute udieresis -71
1902
+ KPX Yacute ugrave -71
1903
+ KPX Yacute uhungarumlaut -111
1904
+ KPX Yacute umacron -71
1905
+ KPX Yacute uogonek -111
1906
+ KPX Yacute uring -111
1907
+ KPX Ydieresis A -120
1908
+ KPX Ydieresis Aacute -120
1909
+ KPX Ydieresis Abreve -120
1910
+ KPX Ydieresis Acircumflex -120
1911
+ KPX Ydieresis Adieresis -120
1912
+ KPX Ydieresis Agrave -120
1913
+ KPX Ydieresis Amacron -120
1914
+ KPX Ydieresis Aogonek -120
1915
+ KPX Ydieresis Aring -120
1916
+ KPX Ydieresis Atilde -120
1917
+ KPX Ydieresis O -30
1918
+ KPX Ydieresis Oacute -30
1919
+ KPX Ydieresis Ocircumflex -30
1920
+ KPX Ydieresis Odieresis -30
1921
+ KPX Ydieresis Ograve -30
1922
+ KPX Ydieresis Ohungarumlaut -30
1923
+ KPX Ydieresis Omacron -30
1924
+ KPX Ydieresis Oslash -30
1925
+ KPX Ydieresis Otilde -30
1926
+ KPX Ydieresis a -100
1927
+ KPX Ydieresis aacute -100
1928
+ KPX Ydieresis abreve -100
1929
+ KPX Ydieresis acircumflex -100
1930
+ KPX Ydieresis adieresis -60
1931
+ KPX Ydieresis agrave -60
1932
+ KPX Ydieresis amacron -60
1933
+ KPX Ydieresis aogonek -100
1934
+ KPX Ydieresis aring -100
1935
+ KPX Ydieresis atilde -100
1936
+ KPX Ydieresis colon -92
1937
+ KPX Ydieresis comma -129
1938
+ KPX Ydieresis e -100
1939
+ KPX Ydieresis eacute -100
1940
+ KPX Ydieresis ecaron -100
1941
+ KPX Ydieresis ecircumflex -100
1942
+ KPX Ydieresis edieresis -60
1943
+ KPX Ydieresis edotaccent -100
1944
+ KPX Ydieresis egrave -60
1945
+ KPX Ydieresis emacron -60
1946
+ KPX Ydieresis eogonek -100
1947
+ KPX Ydieresis hyphen -111
1948
+ KPX Ydieresis i -55
1949
+ KPX Ydieresis iacute -55
1950
+ KPX Ydieresis iogonek -55
1951
+ KPX Ydieresis o -110
1952
+ KPX Ydieresis oacute -110
1953
+ KPX Ydieresis ocircumflex -110
1954
+ KPX Ydieresis odieresis -70
1955
+ KPX Ydieresis ograve -70
1956
+ KPX Ydieresis ohungarumlaut -110
1957
+ KPX Ydieresis omacron -70
1958
+ KPX Ydieresis oslash -110
1959
+ KPX Ydieresis otilde -70
1960
+ KPX Ydieresis period -129
1961
+ KPX Ydieresis semicolon -92
1962
+ KPX Ydieresis u -111
1963
+ KPX Ydieresis uacute -111
1964
+ KPX Ydieresis ucircumflex -111
1965
+ KPX Ydieresis udieresis -71
1966
+ KPX Ydieresis ugrave -71
1967
+ KPX Ydieresis uhungarumlaut -111
1968
+ KPX Ydieresis umacron -71
1969
+ KPX Ydieresis uogonek -111
1970
+ KPX Ydieresis uring -111
1971
+ KPX a v -20
1972
+ KPX a w -15
1973
+ KPX aacute v -20
1974
+ KPX aacute w -15
1975
+ KPX abreve v -20
1976
+ KPX abreve w -15
1977
+ KPX acircumflex v -20
1978
+ KPX acircumflex w -15
1979
+ KPX adieresis v -20
1980
+ KPX adieresis w -15
1981
+ KPX agrave v -20
1982
+ KPX agrave w -15
1983
+ KPX amacron v -20
1984
+ KPX amacron w -15
1985
+ KPX aogonek v -20
1986
+ KPX aogonek w -15
1987
+ KPX aring v -20
1988
+ KPX aring w -15
1989
+ KPX atilde v -20
1990
+ KPX atilde w -15
1991
+ KPX b period -40
1992
+ KPX b u -20
1993
+ KPX b uacute -20
1994
+ KPX b ucircumflex -20
1995
+ KPX b udieresis -20
1996
+ KPX b ugrave -20
1997
+ KPX b uhungarumlaut -20
1998
+ KPX b umacron -20
1999
+ KPX b uogonek -20
2000
+ KPX b uring -20
2001
+ KPX b v -15
2002
+ KPX c y -15
2003
+ KPX c yacute -15
2004
+ KPX c ydieresis -15
2005
+ KPX cacute y -15
2006
+ KPX cacute yacute -15
2007
+ KPX cacute ydieresis -15
2008
+ KPX ccaron y -15
2009
+ KPX ccaron yacute -15
2010
+ KPX ccaron ydieresis -15
2011
+ KPX ccedilla y -15
2012
+ KPX ccedilla yacute -15
2013
+ KPX ccedilla ydieresis -15
2014
+ KPX comma quotedblright -70
2015
+ KPX comma quoteright -70
2016
+ KPX e g -15
2017
+ KPX e gbreve -15
2018
+ KPX e gcommaaccent -15
2019
+ KPX e v -25
2020
+ KPX e w -25
2021
+ KPX e x -15
2022
+ KPX e y -15
2023
+ KPX e yacute -15
2024
+ KPX e ydieresis -15
2025
+ KPX eacute g -15
2026
+ KPX eacute gbreve -15
2027
+ KPX eacute gcommaaccent -15
2028
+ KPX eacute v -25
2029
+ KPX eacute w -25
2030
+ KPX eacute x -15
2031
+ KPX eacute y -15
2032
+ KPX eacute yacute -15
2033
+ KPX eacute ydieresis -15
2034
+ KPX ecaron g -15
2035
+ KPX ecaron gbreve -15
2036
+ KPX ecaron gcommaaccent -15
2037
+ KPX ecaron v -25
2038
+ KPX ecaron w -25
2039
+ KPX ecaron x -15
2040
+ KPX ecaron y -15
2041
+ KPX ecaron yacute -15
2042
+ KPX ecaron ydieresis -15
2043
+ KPX ecircumflex g -15
2044
+ KPX ecircumflex gbreve -15
2045
+ KPX ecircumflex gcommaaccent -15
2046
+ KPX ecircumflex v -25
2047
+ KPX ecircumflex w -25
2048
+ KPX ecircumflex x -15
2049
+ KPX ecircumflex y -15
2050
+ KPX ecircumflex yacute -15
2051
+ KPX ecircumflex ydieresis -15
2052
+ KPX edieresis g -15
2053
+ KPX edieresis gbreve -15
2054
+ KPX edieresis gcommaaccent -15
2055
+ KPX edieresis v -25
2056
+ KPX edieresis w -25
2057
+ KPX edieresis x -15
2058
+ KPX edieresis y -15
2059
+ KPX edieresis yacute -15
2060
+ KPX edieresis ydieresis -15
2061
+ KPX edotaccent g -15
2062
+ KPX edotaccent gbreve -15
2063
+ KPX edotaccent gcommaaccent -15
2064
+ KPX edotaccent v -25
2065
+ KPX edotaccent w -25
2066
+ KPX edotaccent x -15
2067
+ KPX edotaccent y -15
2068
+ KPX edotaccent yacute -15
2069
+ KPX edotaccent ydieresis -15
2070
+ KPX egrave g -15
2071
+ KPX egrave gbreve -15
2072
+ KPX egrave gcommaaccent -15
2073
+ KPX egrave v -25
2074
+ KPX egrave w -25
2075
+ KPX egrave x -15
2076
+ KPX egrave y -15
2077
+ KPX egrave yacute -15
2078
+ KPX egrave ydieresis -15
2079
+ KPX emacron g -15
2080
+ KPX emacron gbreve -15
2081
+ KPX emacron gcommaaccent -15
2082
+ KPX emacron v -25
2083
+ KPX emacron w -25
2084
+ KPX emacron x -15
2085
+ KPX emacron y -15
2086
+ KPX emacron yacute -15
2087
+ KPX emacron ydieresis -15
2088
+ KPX eogonek g -15
2089
+ KPX eogonek gbreve -15
2090
+ KPX eogonek gcommaaccent -15
2091
+ KPX eogonek v -25
2092
+ KPX eogonek w -25
2093
+ KPX eogonek x -15
2094
+ KPX eogonek y -15
2095
+ KPX eogonek yacute -15
2096
+ KPX eogonek ydieresis -15
2097
+ KPX f a -10
2098
+ KPX f aacute -10
2099
+ KPX f abreve -10
2100
+ KPX f acircumflex -10
2101
+ KPX f adieresis -10
2102
+ KPX f agrave -10
2103
+ KPX f amacron -10
2104
+ KPX f aogonek -10
2105
+ KPX f aring -10
2106
+ KPX f atilde -10
2107
+ KPX f dotlessi -50
2108
+ KPX f f -25
2109
+ KPX f i -20
2110
+ KPX f iacute -20
2111
+ KPX f quoteright 55
2112
+ KPX g a -5
2113
+ KPX g aacute -5
2114
+ KPX g abreve -5
2115
+ KPX g acircumflex -5
2116
+ KPX g adieresis -5
2117
+ KPX g agrave -5
2118
+ KPX g amacron -5
2119
+ KPX g aogonek -5
2120
+ KPX g aring -5
2121
+ KPX g atilde -5
2122
+ KPX gbreve a -5
2123
+ KPX gbreve aacute -5
2124
+ KPX gbreve abreve -5
2125
+ KPX gbreve acircumflex -5
2126
+ KPX gbreve adieresis -5
2127
+ KPX gbreve agrave -5
2128
+ KPX gbreve amacron -5
2129
+ KPX gbreve aogonek -5
2130
+ KPX gbreve aring -5
2131
+ KPX gbreve atilde -5
2132
+ KPX gcommaaccent a -5
2133
+ KPX gcommaaccent aacute -5
2134
+ KPX gcommaaccent abreve -5
2135
+ KPX gcommaaccent acircumflex -5
2136
+ KPX gcommaaccent adieresis -5
2137
+ KPX gcommaaccent agrave -5
2138
+ KPX gcommaaccent amacron -5
2139
+ KPX gcommaaccent aogonek -5
2140
+ KPX gcommaaccent aring -5
2141
+ KPX gcommaaccent atilde -5
2142
+ KPX h y -5
2143
+ KPX h yacute -5
2144
+ KPX h ydieresis -5
2145
+ KPX i v -25
2146
+ KPX iacute v -25
2147
+ KPX icircumflex v -25
2148
+ KPX idieresis v -25
2149
+ KPX igrave v -25
2150
+ KPX imacron v -25
2151
+ KPX iogonek v -25
2152
+ KPX k e -10
2153
+ KPX k eacute -10
2154
+ KPX k ecaron -10
2155
+ KPX k ecircumflex -10
2156
+ KPX k edieresis -10
2157
+ KPX k edotaccent -10
2158
+ KPX k egrave -10
2159
+ KPX k emacron -10
2160
+ KPX k eogonek -10
2161
+ KPX k o -10
2162
+ KPX k oacute -10
2163
+ KPX k ocircumflex -10
2164
+ KPX k odieresis -10
2165
+ KPX k ograve -10
2166
+ KPX k ohungarumlaut -10
2167
+ KPX k omacron -10
2168
+ KPX k oslash -10
2169
+ KPX k otilde -10
2170
+ KPX k y -15
2171
+ KPX k yacute -15
2172
+ KPX k ydieresis -15
2173
+ KPX kcommaaccent e -10
2174
+ KPX kcommaaccent eacute -10
2175
+ KPX kcommaaccent ecaron -10
2176
+ KPX kcommaaccent ecircumflex -10
2177
+ KPX kcommaaccent edieresis -10
2178
+ KPX kcommaaccent edotaccent -10
2179
+ KPX kcommaaccent egrave -10
2180
+ KPX kcommaaccent emacron -10
2181
+ KPX kcommaaccent eogonek -10
2182
+ KPX kcommaaccent o -10
2183
+ KPX kcommaaccent oacute -10
2184
+ KPX kcommaaccent ocircumflex -10
2185
+ KPX kcommaaccent odieresis -10
2186
+ KPX kcommaaccent ograve -10
2187
+ KPX kcommaaccent ohungarumlaut -10
2188
+ KPX kcommaaccent omacron -10
2189
+ KPX kcommaaccent oslash -10
2190
+ KPX kcommaaccent otilde -10
2191
+ KPX kcommaaccent y -15
2192
+ KPX kcommaaccent yacute -15
2193
+ KPX kcommaaccent ydieresis -15
2194
+ KPX l w -10
2195
+ KPX lacute w -10
2196
+ KPX lcommaaccent w -10
2197
+ KPX lslash w -10
2198
+ KPX n v -40
2199
+ KPX n y -15
2200
+ KPX n yacute -15
2201
+ KPX n ydieresis -15
2202
+ KPX nacute v -40
2203
+ KPX nacute y -15
2204
+ KPX nacute yacute -15
2205
+ KPX nacute ydieresis -15
2206
+ KPX ncaron v -40
2207
+ KPX ncaron y -15
2208
+ KPX ncaron yacute -15
2209
+ KPX ncaron ydieresis -15
2210
+ KPX ncommaaccent v -40
2211
+ KPX ncommaaccent y -15
2212
+ KPX ncommaaccent yacute -15
2213
+ KPX ncommaaccent ydieresis -15
2214
+ KPX ntilde v -40
2215
+ KPX ntilde y -15
2216
+ KPX ntilde yacute -15
2217
+ KPX ntilde ydieresis -15
2218
+ KPX o v -15
2219
+ KPX o w -25
2220
+ KPX o y -10
2221
+ KPX o yacute -10
2222
+ KPX o ydieresis -10
2223
+ KPX oacute v -15
2224
+ KPX oacute w -25
2225
+ KPX oacute y -10
2226
+ KPX oacute yacute -10
2227
+ KPX oacute ydieresis -10
2228
+ KPX ocircumflex v -15
2229
+ KPX ocircumflex w -25
2230
+ KPX ocircumflex y -10
2231
+ KPX ocircumflex yacute -10
2232
+ KPX ocircumflex ydieresis -10
2233
+ KPX odieresis v -15
2234
+ KPX odieresis w -25
2235
+ KPX odieresis y -10
2236
+ KPX odieresis yacute -10
2237
+ KPX odieresis ydieresis -10
2238
+ KPX ograve v -15
2239
+ KPX ograve w -25
2240
+ KPX ograve y -10
2241
+ KPX ograve yacute -10
2242
+ KPX ograve ydieresis -10
2243
+ KPX ohungarumlaut v -15
2244
+ KPX ohungarumlaut w -25
2245
+ KPX ohungarumlaut y -10
2246
+ KPX ohungarumlaut yacute -10
2247
+ KPX ohungarumlaut ydieresis -10
2248
+ KPX omacron v -15
2249
+ KPX omacron w -25
2250
+ KPX omacron y -10
2251
+ KPX omacron yacute -10
2252
+ KPX omacron ydieresis -10
2253
+ KPX oslash v -15
2254
+ KPX oslash w -25
2255
+ KPX oslash y -10
2256
+ KPX oslash yacute -10
2257
+ KPX oslash ydieresis -10
2258
+ KPX otilde v -15
2259
+ KPX otilde w -25
2260
+ KPX otilde y -10
2261
+ KPX otilde yacute -10
2262
+ KPX otilde ydieresis -10
2263
+ KPX p y -10
2264
+ KPX p yacute -10
2265
+ KPX p ydieresis -10
2266
+ KPX period quotedblright -70
2267
+ KPX period quoteright -70
2268
+ KPX quotedblleft A -80
2269
+ KPX quotedblleft Aacute -80
2270
+ KPX quotedblleft Abreve -80
2271
+ KPX quotedblleft Acircumflex -80
2272
+ KPX quotedblleft Adieresis -80
2273
+ KPX quotedblleft Agrave -80
2274
+ KPX quotedblleft Amacron -80
2275
+ KPX quotedblleft Aogonek -80
2276
+ KPX quotedblleft Aring -80
2277
+ KPX quotedblleft Atilde -80
2278
+ KPX quoteleft A -80
2279
+ KPX quoteleft Aacute -80
2280
+ KPX quoteleft Abreve -80
2281
+ KPX quoteleft Acircumflex -80
2282
+ KPX quoteleft Adieresis -80
2283
+ KPX quoteleft Agrave -80
2284
+ KPX quoteleft Amacron -80
2285
+ KPX quoteleft Aogonek -80
2286
+ KPX quoteleft Aring -80
2287
+ KPX quoteleft Atilde -80
2288
+ KPX quoteleft quoteleft -74
2289
+ KPX quoteright d -50
2290
+ KPX quoteright dcroat -50
2291
+ KPX quoteright l -10
2292
+ KPX quoteright lacute -10
2293
+ KPX quoteright lcommaaccent -10
2294
+ KPX quoteright lslash -10
2295
+ KPX quoteright quoteright -74
2296
+ KPX quoteright r -50
2297
+ KPX quoteright racute -50
2298
+ KPX quoteright rcaron -50
2299
+ KPX quoteright rcommaaccent -50
2300
+ KPX quoteright s -55
2301
+ KPX quoteright sacute -55
2302
+ KPX quoteright scaron -55
2303
+ KPX quoteright scedilla -55
2304
+ KPX quoteright scommaaccent -55
2305
+ KPX quoteright space -74
2306
+ KPX quoteright t -18
2307
+ KPX quoteright tcommaaccent -18
2308
+ KPX quoteright v -50
2309
+ KPX r comma -40
2310
+ KPX r g -18
2311
+ KPX r gbreve -18
2312
+ KPX r gcommaaccent -18
2313
+ KPX r hyphen -20
2314
+ KPX r period -55
2315
+ KPX racute comma -40
2316
+ KPX racute g -18
2317
+ KPX racute gbreve -18
2318
+ KPX racute gcommaaccent -18
2319
+ KPX racute hyphen -20
2320
+ KPX racute period -55
2321
+ KPX rcaron comma -40
2322
+ KPX rcaron g -18
2323
+ KPX rcaron gbreve -18
2324
+ KPX rcaron gcommaaccent -18
2325
+ KPX rcaron hyphen -20
2326
+ KPX rcaron period -55
2327
+ KPX rcommaaccent comma -40
2328
+ KPX rcommaaccent g -18
2329
+ KPX rcommaaccent gbreve -18
2330
+ KPX rcommaaccent gcommaaccent -18
2331
+ KPX rcommaaccent hyphen -20
2332
+ KPX rcommaaccent period -55
2333
+ KPX space A -55
2334
+ KPX space Aacute -55
2335
+ KPX space Abreve -55
2336
+ KPX space Acircumflex -55
2337
+ KPX space Adieresis -55
2338
+ KPX space Agrave -55
2339
+ KPX space Amacron -55
2340
+ KPX space Aogonek -55
2341
+ KPX space Aring -55
2342
+ KPX space Atilde -55
2343
+ KPX space T -18
2344
+ KPX space Tcaron -18
2345
+ KPX space Tcommaaccent -18
2346
+ KPX space V -50
2347
+ KPX space W -30
2348
+ KPX space Y -90
2349
+ KPX space Yacute -90
2350
+ KPX space Ydieresis -90
2351
+ KPX v a -25
2352
+ KPX v aacute -25
2353
+ KPX v abreve -25
2354
+ KPX v acircumflex -25
2355
+ KPX v adieresis -25
2356
+ KPX v agrave -25
2357
+ KPX v amacron -25
2358
+ KPX v aogonek -25
2359
+ KPX v aring -25
2360
+ KPX v atilde -25
2361
+ KPX v comma -65
2362
+ KPX v e -15
2363
+ KPX v eacute -15
2364
+ KPX v ecaron -15
2365
+ KPX v ecircumflex -15
2366
+ KPX v edieresis -15
2367
+ KPX v edotaccent -15
2368
+ KPX v egrave -15
2369
+ KPX v emacron -15
2370
+ KPX v eogonek -15
2371
+ KPX v o -20
2372
+ KPX v oacute -20
2373
+ KPX v ocircumflex -20
2374
+ KPX v odieresis -20
2375
+ KPX v ograve -20
2376
+ KPX v ohungarumlaut -20
2377
+ KPX v omacron -20
2378
+ KPX v oslash -20
2379
+ KPX v otilde -20
2380
+ KPX v period -65
2381
+ KPX w a -10
2382
+ KPX w aacute -10
2383
+ KPX w abreve -10
2384
+ KPX w acircumflex -10
2385
+ KPX w adieresis -10
2386
+ KPX w agrave -10
2387
+ KPX w amacron -10
2388
+ KPX w aogonek -10
2389
+ KPX w aring -10
2390
+ KPX w atilde -10
2391
+ KPX w comma -65
2392
+ KPX w o -10
2393
+ KPX w oacute -10
2394
+ KPX w ocircumflex -10
2395
+ KPX w odieresis -10
2396
+ KPX w ograve -10
2397
+ KPX w ohungarumlaut -10
2398
+ KPX w omacron -10
2399
+ KPX w oslash -10
2400
+ KPX w otilde -10
2401
+ KPX w period -65
2402
+ KPX x e -15
2403
+ KPX x eacute -15
2404
+ KPX x ecaron -15
2405
+ KPX x ecircumflex -15
2406
+ KPX x edieresis -15
2407
+ KPX x edotaccent -15
2408
+ KPX x egrave -15
2409
+ KPX x emacron -15
2410
+ KPX x eogonek -15
2411
+ KPX y comma -65
2412
+ KPX y period -65
2413
+ KPX yacute comma -65
2414
+ KPX yacute period -65
2415
+ KPX ydieresis comma -65
2416
+ KPX ydieresis period -65
2417
+ EndKernPairs
2418
+ EndKernData
2419
+ EndFontMetrics