ela 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (300) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +5 -0
  3. data/.gitlab-ci.yml +23 -0
  4. data/Gemfile +7 -0
  5. data/Gemfile.lock +139 -0
  6. data/Guardfile +25 -0
  7. data/LICENSE.txt +205 -0
  8. data/README.de.md +195 -0
  9. data/README.md +66 -0
  10. data/Rakefile +96 -0
  11. data/app/css/screen.styl +425 -0
  12. data/app/css/vendor/stackedit.styl +140 -0
  13. data/app/fonts/Roboto-Italic-webfont.eot +0 -0
  14. data/app/fonts/Roboto-Italic-webfont.svg +642 -0
  15. data/app/fonts/Roboto-Italic-webfont.ttf +0 -0
  16. data/app/fonts/Roboto-Italic-webfont.woff +0 -0
  17. data/app/fonts/Roboto-Light-webfont.eot +0 -0
  18. data/app/fonts/Roboto-Light-webfont.svg +641 -0
  19. data/app/fonts/Roboto-Light-webfont.ttf +0 -0
  20. data/app/fonts/Roboto-Light-webfont.woff +0 -0
  21. data/app/fonts/Roboto-LightItalic-webfont.eot +0 -0
  22. data/app/fonts/Roboto-LightItalic-webfont.svg +641 -0
  23. data/app/fonts/Roboto-LightItalic-webfont.ttf +0 -0
  24. data/app/fonts/Roboto-LightItalic-webfont.woff +0 -0
  25. data/app/fonts/Roboto-Medium-webfont.eot +0 -0
  26. data/app/fonts/Roboto-Medium-webfont.svg +593 -0
  27. data/app/fonts/Roboto-Medium-webfont.ttf +0 -0
  28. data/app/fonts/Roboto-Medium-webfont.woff +0 -0
  29. data/app/fonts/Roboto-MediumItalic-webfont.eot +0 -0
  30. data/app/fonts/Roboto-MediumItalic-webfont.svg +642 -0
  31. data/app/fonts/Roboto-MediumItalic-webfont.ttf +0 -0
  32. data/app/fonts/Roboto-MediumItalic-webfont.woff +0 -0
  33. data/app/fonts/Roboto-Regular-webfont.eot +0 -0
  34. data/app/fonts/Roboto-Regular-webfont.svg +621 -0
  35. data/app/fonts/Roboto-Regular-webfont.ttf +0 -0
  36. data/app/fonts/Roboto-Regular-webfont.woff +0 -0
  37. data/app/fonts/Roboto-Thin-webfont.eot +0 -0
  38. data/app/fonts/Roboto-Thin-webfont.svg +631 -0
  39. data/app/fonts/Roboto-Thin-webfont.ttf +0 -0
  40. data/app/fonts/Roboto-Thin-webfont.woff +0 -0
  41. data/app/fonts/Roboto-ThinItalic-webfont.eot +0 -0
  42. data/app/fonts/Roboto-ThinItalic-webfont.svg +631 -0
  43. data/app/fonts/Roboto-ThinItalic-webfont.ttf +0 -0
  44. data/app/fonts/Roboto-ThinItalic-webfont.woff +0 -0
  45. data/app/fonts/droid_sans_regular.typeface.svg +1 -0
  46. data/app/fonts/fontawesome-webfont.eot +0 -0
  47. data/app/fonts/fontawesome-webfont.svg +2671 -0
  48. data/app/fonts/fontawesome-webfont.ttf +0 -0
  49. data/app/fonts/fontawesome-webfont.woff +0 -0
  50. data/app/fonts/fontawesome-webfont.woff2 +0 -0
  51. data/app/js/lib/application.coffee +83 -0
  52. data/app/js/lib/bootstrap_data.coffee +70 -0
  53. data/app/js/lib/collections/00_limited_collection.coffee +85 -0
  54. data/app/js/lib/collections/curves.coffee +3 -0
  55. data/app/js/lib/collections/named_object_collection.coffee +7 -0
  56. data/app/js/lib/mathjaxConfig.coffee +241 -0
  57. data/app/js/lib/models/app.coffee +58 -0
  58. data/app/js/lib/models/base_app.coffee +62 -0
  59. data/app/js/lib/models/base_app_model.coffee +61 -0
  60. data/app/js/lib/models/base_calculator.coffee +212 -0
  61. data/app/js/lib/models/base_subapp_container.coffee +35 -0
  62. data/app/js/lib/models/curve.coffee +179 -0
  63. data/app/js/lib/router.coffee +26 -0
  64. data/app/js/lib/views/app.coffee +56 -0
  65. data/app/js/lib/views/base_app.coffee +274 -0
  66. data/app/js/lib/views/base_aside.coffee +9 -0
  67. data/app/js/lib/views/base_graph.coffee +477 -0
  68. data/app/js/lib/views/base_subapp_container.coffee +44 -0
  69. data/app/js/lib/views/canvas.coffee +73 -0
  70. data/app/js/lib/views/curve_graph.coffee +163 -0
  71. data/app/js/lib/views/curves_aside.coffee +21 -0
  72. data/app/js/lib/views/curves_list_item.coffee +8 -0
  73. data/app/js/lib/views/grouped_parameters_aside.coffee +14 -0
  74. data/app/js/lib/views/headup.coffee +15 -0
  75. data/app/js/lib/views/help.coffee +86 -0
  76. data/app/js/lib/views/interpolated_graph.coffee +281 -0
  77. data/app/js/lib/views/legend.coffee +138 -0
  78. data/app/js/lib/views/legend_handler.coffee +51 -0
  79. data/app/js/lib/views/overview.coffee +85 -0
  80. data/app/js/lib/views/overview_tile.coffee +18 -0
  81. data/app/js/lib/views/parameters_aside.coffee +12 -0
  82. data/app/js/lib/views/three_graph.coffee +92 -0
  83. data/app/js/vendor/Markdown.Converter.js +1519 -0
  84. data/app/js/vendor/Markdown.Extra.js +874 -0
  85. data/app/js/vendor/Markdown.Toc.coffee +79 -0
  86. data/app/js/vendor/backbone-1.3.3.min.js +2 -0
  87. data/app/js/vendor/backbone-validation-0.11.5.js +8 -0
  88. data/app/js/vendor/backbone.poised/form.coffee +156 -0
  89. data/app/js/vendor/backbone.poised/form/anchor.coffee +26 -0
  90. data/app/js/vendor/backbone.poised/form/base_control.coffee +42 -0
  91. data/app/js/vendor/backbone.poised/form/linked_control.coffee +79 -0
  92. data/app/js/vendor/backbone.poised/form/linked_number_control.coffee +27 -0
  93. data/app/js/vendor/backbone.poised/form/linked_range_control.coffee +53 -0
  94. data/app/js/vendor/backbone.poised/form/linked_select_control.coffee +18 -0
  95. data/app/js/vendor/backbone.poised/form/linked_string_control.coffee +27 -0
  96. data/app/js/vendor/backbone.poised/form/number_control.coffee +25 -0
  97. data/app/js/vendor/backbone.poised/form/range_control.coffee +48 -0
  98. data/app/js/vendor/backbone.poised/form/select_control.coffee +16 -0
  99. data/app/js/vendor/backbone.poised/form/selectbox.coffee +78 -0
  100. data/app/js/vendor/backbone.poised/form/slider.coffee +109 -0
  101. data/app/js/vendor/backbone.poised/form/string_control.coffee +23 -0
  102. data/app/js/vendor/backbone.poised/form/submit_control.coffee +39 -0
  103. data/app/js/vendor/backbone.poised/form/textarea.coffee +36 -0
  104. data/app/js/vendor/backbone.poised/form/textfield.coffee +86 -0
  105. data/app/js/vendor/backbone.poised/form/value.coffee +33 -0
  106. data/app/js/vendor/backbone.poised/form/value_control.coffee +15 -0
  107. data/app/js/vendor/backbone.poised/linked_form.coffee +43 -0
  108. data/app/js/vendor/backbone.poised/list.coffee +97 -0
  109. data/app/js/vendor/backbone.poised/list/add_button.coffee +16 -0
  110. data/app/js/vendor/backbone.poised/list/anchor.coffee +32 -0
  111. data/app/js/vendor/backbone.poised/list/item.coffee +68 -0
  112. data/app/js/vendor/backbone.poised/list/searchfield.coffee +26 -0
  113. data/app/js/vendor/backbone.poised/list/selectable_item.coffee +65 -0
  114. data/app/js/vendor/backbone.poised/patches.coffee +6 -0
  115. data/app/js/vendor/backbone.poised/string_mixin.coffee +23 -0
  116. data/app/js/vendor/backbone.poised/underscore_ext.coffee +2 -0
  117. data/app/js/vendor/backbone.poised/view.coffee +59 -0
  118. data/app/js/vendor/gaussianElimination.coffee +40 -0
  119. data/app/js/vendor/hammer-2.0.8.min.js +7 -0
  120. data/app/js/vendor/jquery-3.1.1.min.js +4 -0
  121. data/app/js/vendor/jquery.after-transition.coffee +20 -0
  122. data/app/js/vendor/jquery.backbone-hammer.coffee +28 -0
  123. data/app/js/vendor/jquery.keyboard-modifiers.coffee +22 -0
  124. data/app/js/vendor/jquery.mark-5.2.3.min.js +7 -0
  125. data/app/js/vendor/jquery.scrollTo-2.1.2.min.js +7 -0
  126. data/app/js/vendor/js-yaml-3.4.3.min.js +3 -0
  127. data/app/js/vendor/markup_text.coffee +95 -0
  128. data/app/js/vendor/mathjax/MathJax.js +19 -0
  129. data/app/js/vendor/mathjax/extensions/MathEvents.js +19 -0
  130. data/app/js/vendor/mathjax/extensions/tex2jax.js +19 -0
  131. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_AMS-Regular.eot +0 -0
  132. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Bold.eot +0 -0
  133. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Caligraphic-Regular.eot +0 -0
  134. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Bold.eot +0 -0
  135. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Fraktur-Regular.eot +0 -0
  136. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Bold.eot +0 -0
  137. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Italic.eot +0 -0
  138. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Main-Regular.eot +0 -0
  139. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-BoldItalic.eot +0 -0
  140. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Italic.eot +0 -0
  141. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Math-Regular.eot +0 -0
  142. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Bold.eot +0 -0
  143. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Italic.eot +0 -0
  144. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_SansSerif-Regular.eot +0 -0
  145. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Script-Regular.eot +0 -0
  146. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size1-Regular.eot +0 -0
  147. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size2-Regular.eot +0 -0
  148. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size3-Regular.eot +0 -0
  149. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Size4-Regular.eot +0 -0
  150. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_Typewriter-Regular.eot +0 -0
  151. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/eot/MathJax_WinIE6-Regular.eot +0 -0
  152. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf +0 -0
  153. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf +0 -0
  154. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf +0 -0
  155. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf +0 -0
  156. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf +0 -0
  157. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf +0 -0
  158. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf +0 -0
  159. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf +0 -0
  160. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf +0 -0
  161. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf +0 -0
  162. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf +0 -0
  163. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf +0 -0
  164. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf +0 -0
  165. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf +0 -0
  166. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf +0 -0
  167. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf +0 -0
  168. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf +0 -0
  169. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf +0 -0
  170. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf +0 -0
  171. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf +0 -0
  172. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf +0 -0
  173. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf +0 -0
  174. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_AMS-Regular.svg +765 -0
  175. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Bold.svg +136 -0
  176. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Caligraphic-Regular.svg +134 -0
  177. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Bold.svg +319 -0
  178. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Fraktur-Regular.svg +309 -0
  179. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Bold.svg +656 -0
  180. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Italic.svg +374 -0
  181. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Main-Regular.svg +659 -0
  182. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-BoldItalic.svg +331 -0
  183. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-Italic.svg +331 -0
  184. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Math-Regular.svg +330 -0
  185. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Bold.svg +280 -0
  186. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Italic.svg +245 -0
  187. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_SansSerif-Regular.svg +211 -0
  188. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Script-Regular.svg +160 -0
  189. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size1-Regular.svg +110 -0
  190. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size2-Regular.svg +109 -0
  191. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size3-Regular.svg +49 -0
  192. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Size4-Regular.svg +102 -0
  193. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_Typewriter-Regular.svg +322 -0
  194. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/svg/MathJax_WinChrome-Regular.svg +39 -0
  195. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_AMS-Regular.woff +0 -0
  196. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Bold.woff +0 -0
  197. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Caligraphic-Regular.woff +0 -0
  198. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Bold.woff +0 -0
  199. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Fraktur-Regular.woff +0 -0
  200. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Bold.woff +0 -0
  201. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Italic.woff +0 -0
  202. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff +0 -0
  203. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-BoldItalic.woff +0 -0
  204. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff +0 -0
  205. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Math-Regular.woff +0 -0
  206. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Bold.woff +0 -0
  207. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Italic.woff +0 -0
  208. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_SansSerif-Regular.woff +0 -0
  209. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Script-Regular.woff +0 -0
  210. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size1-Regular.woff +0 -0
  211. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size2-Regular.woff +0 -0
  212. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size3-Regular.woff +0 -0
  213. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Size4-Regular.woff +0 -0
  214. data/app/js/vendor/mathjax/fonts/HTML-CSS/TeX/woff/MathJax_Typewriter-Regular.woff +0 -0
  215. data/app/js/vendor/mathjax/jax/element/mml/jax.js +19 -0
  216. data/app/js/vendor/mathjax/jax/element/mml/optable/Arrows.js +19 -0
  217. data/app/js/vendor/mathjax/jax/element/mml/optable/BasicLatin.js +19 -0
  218. data/app/js/vendor/mathjax/jax/element/mml/optable/CombDiacritMarks.js +19 -0
  219. data/app/js/vendor/mathjax/jax/element/mml/optable/CombDiactForSymbols.js +19 -0
  220. data/app/js/vendor/mathjax/jax/element/mml/optable/Dingbats.js +19 -0
  221. data/app/js/vendor/mathjax/jax/element/mml/optable/GeneralPunctuation.js +19 -0
  222. data/app/js/vendor/mathjax/jax/element/mml/optable/GeometricShapes.js +19 -0
  223. data/app/js/vendor/mathjax/jax/element/mml/optable/GreekAndCoptic.js +19 -0
  224. data/app/js/vendor/mathjax/jax/element/mml/optable/Latin1Supplement.js +19 -0
  225. data/app/js/vendor/mathjax/jax/element/mml/optable/LetterlikeSymbols.js +19 -0
  226. data/app/js/vendor/mathjax/jax/element/mml/optable/MathOperators.js +19 -0
  227. data/app/js/vendor/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js +19 -0
  228. data/app/js/vendor/mathjax/jax/element/mml/optable/MiscMathSymbolsB.js +19 -0
  229. data/app/js/vendor/mathjax/jax/element/mml/optable/MiscSymbolsAndArrows.js +19 -0
  230. data/app/js/vendor/mathjax/jax/element/mml/optable/MiscTechnical.js +19 -0
  231. data/app/js/vendor/mathjax/jax/element/mml/optable/SpacingModLetters.js +19 -0
  232. data/app/js/vendor/mathjax/jax/element/mml/optable/SuppMathOperators.js +19 -0
  233. data/app/js/vendor/mathjax/jax/element/mml/optable/SupplementalArrowsA.js +19 -0
  234. data/app/js/vendor/mathjax/jax/element/mml/optable/SupplementalArrowsB.js +19 -0
  235. data/app/js/vendor/mathjax/jax/input/TeX/config.js +19 -0
  236. data/app/js/vendor/mathjax/jax/input/TeX/jax.js +19 -0
  237. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/annotation-xml.js +19 -0
  238. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/maction.js +19 -0
  239. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/menclose.js +19 -0
  240. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mglyph.js +19 -0
  241. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mmultiscripts.js +19 -0
  242. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/ms.js +19 -0
  243. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/mtable.js +19 -0
  244. data/app/js/vendor/mathjax/jax/output/CommonHTML/autoload/multiline.js +19 -0
  245. data/app/js/vendor/mathjax/jax/output/CommonHTML/config.js +19 -0
  246. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/AMS-Regular.js +19 -0
  247. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Caligraphic-Bold.js +19 -0
  248. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Bold.js +19 -0
  249. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Fraktur-Regular.js +19 -0
  250. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Main-Bold.js +19 -0
  251. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Math-BoldItalic.js +19 -0
  252. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Bold.js +19 -0
  253. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Italic.js +19 -0
  254. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/SansSerif-Regular.js +19 -0
  255. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Script-Regular.js +19 -0
  256. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/Typewriter-Regular.js +19 -0
  257. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata-extra.js +19 -0
  258. data/app/js/vendor/mathjax/jax/output/CommonHTML/fonts/TeX/fontdata.js +19 -0
  259. data/app/js/vendor/mathjax/jax/output/CommonHTML/jax.js +19 -0
  260. data/app/js/vendor/modernizr-custom-3.3.1.min.js +3 -0
  261. data/app/js/vendor/persistjs-git.js +1136 -0
  262. data/app/js/vendor/poised/poised.general.coffee +21 -0
  263. data/app/js/vendor/poised/poised.tabs.coffee +31 -0
  264. data/app/js/vendor/poised/utils.coffee +11 -0
  265. data/app/js/vendor/request_animation_frame.coffee +19 -0
  266. data/app/js/vendor/three-82.min.js +15 -0
  267. data/app/js/vendor/three-CanvasRenderer-82.js +1118 -0
  268. data/app/js/vendor/three-Projector-82.js +929 -0
  269. data/app/js/vendor/underscore-1.8.3.min.js +6 -0
  270. data/app/js/vendor/webfontloader-1.6.26.min.js +33 -0
  271. data/app/views/aliasing/legend.jst.hamlc +6 -0
  272. data/app/views/composites/composites_list_item_label.jst.hamlc +3 -0
  273. data/app/views/composites/import_composites_aside.jst.hamlc +6 -0
  274. data/app/views/composites/mix_preset_list_item_label.jst.hamlc +8 -0
  275. data/app/views/composites/share_aside.jst.hamlc +7 -0
  276. data/app/views/doc/airplanes_list_item_label.jst.hamlc +3 -0
  277. data/app/views/doc/import_airplanes_aside.jst.hamlc +6 -0
  278. data/app/views/doc/share_aside.jst.hamlc +7 -0
  279. data/app/views/general/app.jst.hamlc +42 -0
  280. data/app/views/general/curves_list_item_label.jst.hamlc +5 -0
  281. data/app/views/general/help.jst.hamlc +7 -0
  282. data/app/views/general/tabs.jst.hamlc +6 -0
  283. data/app/views/index.haml +24 -0
  284. data/app/views/overview/app.jst.hamlc +7 -0
  285. data/app/views/overview/tile.jst.hamlc +4 -0
  286. data/bin/console +14 -0
  287. data/bin/setup +8 -0
  288. data/ela.gemspec +50 -0
  289. data/exe/ela +59 -0
  290. data/lib/ela.rb +8 -0
  291. data/lib/ela/jasmine.rb +87 -0
  292. data/lib/ela/server.rb +136 -0
  293. data/lib/ela/utils.rb +131 -0
  294. data/lib/ela/version.rb +3 -0
  295. data/package-lock.json +899 -0
  296. data/package.json +11 -0
  297. data/support/project/Guardfile +64 -0
  298. data/support/project/jasmine.yml +3 -0
  299. data/support/server.ru +5 -0
  300. metadata +4365 -0
Binary file
@@ -0,0 +1,642 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata></metadata>
5
+ <defs>
6
+ <font id="robotomedium_italic" horiz-adv-x="1092" >
7
+ <font-face units-per-em="2048" ascent="1638" descent="-410" />
8
+ <missing-glyph horiz-adv-x="486" />
9
+ <glyph unicode="&#xfb01;" horiz-adv-x="1127" d="M91 0l180 902h-152l36 180h152l19 92q41 208 168 307.5t328 99.5q64 0 130.5 -16t144.5 -44l-77 -201q-50 21 -104.5 34.5t-118.5 13.5q-94 0 -153.5 -49.5t-78.5 -144.5l-19 -92h193l-36 -180h-193l-180 -902h-239zM666 0l216 1082h239l-216 -1082h-239z" />
10
+ <glyph horiz-adv-x="2048" />
11
+ <glyph horiz-adv-x="2048" />
12
+ <glyph unicode="&#xd;" horiz-adv-x="486" />
13
+ <glyph unicode=" " horiz-adv-x="486" />
14
+ <glyph unicode="&#x09;" horiz-adv-x="486" />
15
+ <glyph unicode="&#xa0;" horiz-adv-x="486" />
16
+ <glyph unicode="!" horiz-adv-x="531" d="M64 0l47 234h236l-47 -234h-236zM160 491l193 965h240l-193 -965h-240z" />
17
+ <glyph unicode="&#x22;" horiz-adv-x="638" d="M173 1038l37 237l46 285h177l-44 -273l-108 -249h-108zM478 1038l38 246l45 276h178l-44 -273l-109 -249h-108z" />
18
+ <glyph unicode="#" horiz-adv-x="1171" d="M57 410l32 158h240l117 313h-224l32 159h251l156 416h163l-156 -416h199l156 416h164l-156 -416h190l-32 -159h-218l-117 -313h204l-32 -158h-231l-153 -410h-163l153 410h-199l-153 -410h-163l153 410h-213zM492 568h199l117 313h-199z" />
19
+ <glyph unicode="$" horiz-adv-x="1096" d="M98 443h239q-24 -148 27 -206t145 -58q95 0 159.5 54.5t80.5 146.5q14 88 -26 142t-150 101q-186 72 -268.5 173.5t-53.5 276.5q27 172 136.5 275.5t275.5 123.5l35 219h156l-36 -222q149 -27 221 -148t42 -316h-238q20 130 -17.5 200.5t-124.5 70.5q-86 0 -141.5 -55.5 t-69.5 -145.5q-15 -89 24.5 -141t156.5 -102q185 -76 265 -176t52 -274q-30 -180 -142.5 -280t-286.5 -118l-31 -195h-156l31 195q-158 21 -249 133t-56 326z" />
20
+ <glyph unicode="%" horiz-adv-x="1407" d="M232 1099l15 77q27 136 119.5 218.5t229.5 82.5q126 0 190.5 -87.5t39.5 -213.5l-15 -77q-28 -136 -120 -217.5t-228 -81.5q-127 0 -192 87t-39 212zM263 181l890 1138l107 -72l-889 -1138zM397 1099q-14 -68 9.5 -110.5t85.5 -42.5q54 0 97 45t56 108l15 77 q14 69 -9.5 112t-83.5 43q-56 0 -99.5 -46t-55.5 -109zM715 279l15 78q27 135 120 217.5t229 82.5q126 0 190.5 -87.5t39.5 -212.5l-15 -78q-28 -137 -120 -218.5t-228 -81.5q-126 0 -191.5 87.5t-39.5 212.5zM880 279q-14 -68 10.5 -111t84.5 -43q58 0 99.5 44.5 t54.5 109.5l15 78q14 68 -9.5 111t-84.5 43q-56 0 -99.5 -46t-55.5 -108z" />
21
+ <glyph unicode="&#x26;" horiz-adv-x="1232" d="M52 393q19 124 94.5 208.5t220.5 177.5q-54 96 -75.5 173t-8.5 157q28 178 139 273t279 95q144 0 226 -96.5t61 -229.5q-17 -102 -76 -176t-162 -144l-100 -69l220 -355q45 61 76 133.5t45 153.5h193q-23 -141 -75 -254t-135 -201l149 -239h-276l-57 91 q-85 -55 -175 -83.5t-184 -28.5q-196 0 -302.5 116.5t-76.5 297.5zM292 401q-17 -103 29.5 -165.5t147.5 -62.5q54 0 112 18t114 53l-238 384l-28 -19q-71 -55 -100 -107t-37 -101zM508 1112q-8 -49 6 -97.5t49 -109.5l109 71q59 37 82.5 77t32.5 90q8 56 -23.5 97.5 t-93.5 41.5t-107 -49.5t-55 -120.5z" />
22
+ <glyph unicode="'" horiz-adv-x="332" d="M172 1028l42 267l43 265h174l-40 -249l-111 -283h-108z" />
23
+ <glyph unicode="(" horiz-adv-x="663" d="M145 576l3 16q65 410 253.5 677t376.5 355l6 -2l22 -133q-139 -103 -263 -328t-178 -567l-3 -20q-57 -357 -6 -573.5t160 -328.5l-64 -128l-6 1q-157 86 -260.5 361.5t-40.5 669.5z" />
24
+ <glyph unicode=")" horiz-adv-x="666" d="M-102 -328q137 103 262.5 330.5t180.5 570.5l3 20q56 353 2 573t-157 328l66 129l6 -1q156 -84 263 -364t45 -667l-3 -16q-65 -404 -257 -673t-381 -358l-6 1z" />
25
+ <glyph unicode="*" horiz-adv-x="845" d="M157 1061l86 169l247 -117l55 343h170l-84 -350l289 115l18 -171l-296 -88l125 -266l-159 -105l-102 287l-214 -279l-120 102l239 271z" />
26
+ <glyph unicode="+" horiz-adv-x="1070" d="M99 579l44 222h350l81 405h232l-81 -405h346l-44 -222h-347l-86 -433h-232l86 433h-349z" />
27
+ <glyph unicode="," horiz-adv-x="430" d="M-95 -281l129 321l39 195h226l-41 -204l-214 -312h-139z" />
28
+ <glyph unicode="-" horiz-adv-x="640" d="M91 521l39 196h492l-39 -196h-492z" />
29
+ <glyph unicode="." horiz-adv-x="551" d="M61 0l47 233h236l-47 -233h-236z" />
30
+ <glyph unicode="/" horiz-adv-x="765" d="M-106 -125l847 1581h186l-846 -1581h-187z" />
31
+ <glyph unicode="0" d="M126 561l67 333q60 302 205.5 442.5t356.5 140.5q193 0 289.5 -152.5t41.5 -430.5l-67 -333q-61 -303 -206 -442.5t-355 -139.5q-193 0 -290.5 151.5t-41.5 430.5zM356 253.5q37 -80.5 141 -80.5q95 0 167.5 87.5t108.5 265.5l81 405q38 190 2 270.5t-140 80.5 q-95 0 -168.5 -88t-108.5 -263l-81 -405q-39 -192 -2 -272.5z" />
32
+ <glyph unicode="1" horiz-adv-x="1096" d="M304 1195l33 165l562 96l-291 -1456h-239l239 1195h-304z" />
33
+ <glyph unicode="2" horiz-adv-x="1096" d="M33 0l27 167l523 517q126 126 179 208t66 160q16 101 -24 165.5t-126 64.5q-111 0 -180.5 -72.5t-88.5 -197.5h-230l-2 6q27 201 170 330t362 129q190 0 289.5 -117t69.5 -302q-21 -130 -102 -240t-248 -276l-350 -342l2 -6h600l-31 -194h-906z" />
34
+ <glyph unicode="3" horiz-adv-x="1096" d="M74 385l2 5h232q-16 -101 31 -159t144 -58q96 0 165.5 61.5t87.5 172.5q20 129 -21.5 184.5t-153.5 55.5h-161l8 55l13 79l9 57h161q101 0 157.5 59t73.5 165q17 108 -23.5 164t-137.5 56q-84 0 -150.5 -57t-80.5 -148h-230l-2 6q23 174 161 284t330 110t297.5 -109 t74.5 -306q-16 -97 -82.5 -183.5t-172.5 -133.5q106 -44 146.5 -134t23.5 -203q-34 -208 -179 -318.5t-348 -110.5q-183 0 -296.5 108t-78.5 298z" />
35
+ <glyph unicode="4" horiz-adv-x="1096" d="M41 323l23 149l772 984h245l-188 -937h167l-39 -196h-167l-64 -323h-238l64 323h-575zM312 524l3 -5h340l116 578l-6 2l-19 -30z" />
36
+ <glyph unicode="5" horiz-adv-x="1096" d="M118 384l2 5l226 8q-19 -110 27 -167t135 -57q96 0 163.5 80.5t88.5 209.5q21 136 -20 216.5t-143 80.5q-86 0 -135.5 -33t-77.5 -93l-203 17l207 805h721l-34 -210h-522l-98 -365q43 31 98 52t116 23q194 2 280.5 -130t49.5 -361q-36 -221 -170 -353.5t-352 -132.5 q-173 0 -283.5 106.5t-75.5 298.5z" />
37
+ <glyph unicode="6" horiz-adv-x="1096" d="M130 571l45 278q47 295 223.5 461.5t408.5 166.5q71 0 137 -16.5t113 -43.5l-74 -188q-46 24 -93 37.5t-113 13.5q-128 0 -228.5 -111t-125.5 -293l3 -5q55 47 131.5 74t162.5 27q174 0 261 -138t54 -346q-37 -232 -179.5 -370.5t-342.5 -138.5q-201 0 -314 157t-69 435z M366 558q-31 -192 20.5 -288.5t157.5 -96.5q91 0 160 92t91 223q21 136 -22.5 215.5t-142.5 79.5q-80 0 -142.5 -31.5t-104.5 -85.5z" />
38
+ <glyph unicode="7" horiz-adv-x="1096" d="M201 1261l31 195h941l-31 -195q-284 -293 -398.5 -525.5t-206.5 -581.5l-40 -154h-239l40 154q87 330 237.5 599t375.5 508h-710z" />
39
+ <glyph unicode="8" horiz-adv-x="1096" d="M89 397q26 130 108.5 220.5t205.5 134.5q-86 46 -126 129.5t-18 190.5q41 207 172.5 306t325.5 99q175 0 275 -107t62 -298q-24 -119 -96 -203t-178 -126q99 -49 147.5 -139.5t25.5 -206.5q-43 -217 -185 -317.5t-348 -100.5q-192 0 -301.5 109t-69.5 309zM331 409 q-24 -117 21.5 -176.5t146.5 -59.5q88 0 162.5 64.5t96.5 171.5q22 114 -24 177.5t-142 63.5q-90 0 -165 -67.5t-96 -173.5zM497 1063q-22 -106 14.5 -162t121.5 -56q75 0 138 60.5t83 157.5q20 103 -17.5 161t-118.5 58q-78 0 -140 -60.5t-81 -158.5z" />
40
+ <glyph unicode="9" horiz-adv-x="1096" d="M140 39l61 184q53 -26 110.5 -38t130.5 -12q113 0 202.5 97.5t119.5 280.5l5 29q-54 -62 -123 -93t-144 -31q-188 0 -282.5 133.5t-56.5 367.5q37 234 185.5 377t336.5 143q204 0 310.5 -150t62.5 -426l-54 -341q-47 -287 -208 -434t-385 -147q-67 0 -141 15.5t-130 44.5 zM402 957q-24 -148 16 -230t137 -82q78 0 141.5 36t103.5 93l25 156q28 181 -15 266.5t-152 85.5q-83 0 -158.5 -94t-97.5 -231z" />
41
+ <glyph unicode=":" horiz-adv-x="534" d="M63 0l47 233h236l-47 -233h-236zM233 849l47 233h236l-47 -233h-236z" />
42
+ <glyph unicode=";" horiz-adv-x="529" d="M-47 -281l129 321l39 195h226l-41 -204l-214 -312h-139zM228 849l47 233h236l-47 -233h-236z" />
43
+ <glyph unicode="&#x3c;" horiz-adv-x="977" d="M69 458l12 61l14 71l12 61l854 372l-49 -242l-576 -222l-19 -3v-6l16 -3l489 -218l-49 -243z" />
44
+ <glyph unicode="=" horiz-adv-x="1096" d="M128 366l40 201h803l-40 -201h-803zM213 790l40 202h803l-40 -202h-803z" />
45
+ <glyph unicode="&#x3e;" horiz-adv-x="1002" d="M54 86l48 239l604 226l19 3v6l-16 3l-515 221l48 239l731 -372l-12 -61l-14 -71l-12 -61z" />
46
+ <glyph unicode="?" horiz-adv-x="943" d="M180 1100q33 178 168.5 277.5t318.5 99.5q185 0 280.5 -109t59.5 -295q-28 -136 -114 -237t-214 -197q-62 -50 -85 -95.5t-40 -131.5h-240q30 142 73 203.5t166 155.5q87 78 142 146.5t72 152.5q20 103 -15.5 153.5t-124.5 50.5q-70 0 -133.5 -46t-80.5 -134h-231zM232 0 l47 233h242l-47 -233h-242z" />
47
+ <glyph unicode="@" horiz-adv-x="1702" d="M98 478q102 425 371 685.5t622 260.5q331 0 483.5 -251t53.5 -666q-51 -216 -189.5 -372t-354.5 -156q-65 0 -109 42.5t-52 119.5q-60 -81 -131 -120.5t-156 -39.5q-115 0 -161.5 121.5t8.5 313.5q73 256 212 411t293 155q97 0 161 -27.5t125 -78.5l-4 -4h5l-162 -579 q-28 -101 -13 -139t54 -38q100 0 191.5 113t131.5 278q89 367 -14 572t-404 205q-264 0 -486 -225t-306 -581q-89 -365 20.5 -575t394.5 -210q76 0 166.5 20.5t155.5 52.5l11 -130q-72 -42 -173 -65.5t-193 -23.5q-337 0 -493.5 253.5t-57.5 677.5zM657 214q13 -69 74 -69 q49 0 99 24t99 85q1 9 3.5 19t5.5 20l145 518q-20 7 -41.5 12t-44.5 5q-102 0 -181 -104.5t-136 -307.5q-36 -133 -23 -202z" />
48
+ <glyph unicode="A" horiz-adv-x="1257" d="M-59 0l787 1456h226l199 -1456h-242l-39 340h-514l-176 -340h-241zM463 543h386l-68 602l-6 1z" />
49
+ <glyph unicode="B" horiz-adv-x="1236" d="M65 0l291 1456h457q212 0 326 -101q86 -76 86 -204q0 -43 -10 -92q-21 -105 -89 -181t-170 -113q116 -29 161 -125q29 -62 29 -136q0 -41 -9 -86q-45 -218 -187 -318t-369 -100h-516zM343 194h277q106 0 181.5 58.5t97.5 165.5q9 48 9 86q0 60 -22 98q-38 60 -147 60 h-303zM472 843h245q92 0 164.5 54.5t92.5 150.5q7 35 7 64q1 66 -35 100q-50 49 -172 49h-218z" />
50
+ <glyph unicode="C" horiz-adv-x="1219" d="M135 596l55 276q57 288 217 446.5t396 158.5q225 -1 353 -141q105 -115 104 -288q0 -38 -5 -79l-2 -5h-233q3 29 3 55q1 111 -47 179q-58 84 -198 84q-123 0 -218 -115t-130 -293l-56 -278q-14 -71 -14 -131q0 -101 40 -175q64 -116 206 -117q123 0 195.5 72.5 t119.5 224.5h230l2 -6q-61 -230 -200 -357.5t-369 -127.5q-226 0 -364 179q-100 130 -99 302q0 65 14 136z" />
51
+ <glyph unicode="D" horiz-adv-x="1262" d="M65 0l291 1456h407q245 0 395 -182q112 -135 113 -315q0 -63 -14 -131l-45 -221q-59 -294 -231.5 -450.5t-434.5 -156.5h-481zM343 194h235q152 0 254.5 112.5t140.5 300.5l45 223q12 60 12 113q0 117 -58 199q-84 119 -255 119h-161z" />
52
+ <glyph unicode="E" horiz-adv-x="1115" d="M65 0l291 1456h913l-39 -195h-674l-82 -411h586l-39 -195h-586l-92 -461h681l-39 -194h-920z" />
53
+ <glyph unicode="F" horiz-adv-x="1116" d="M65 0l291 1456h920l-39 -195h-681l-89 -445h586l-39 -195h-586l-124 -621h-239z" />
54
+ <glyph unicode="G" horiz-adv-x="1295" d="M133 576l61 304q56 281 235.5 439t420.5 158q224 0 334 -127q95 -108 95 -273q0 -27 -3 -56l-3 -6h-227v18q0 112 -48 178q-51 71 -184 71q-126 0 -237 -114.5t-145 -285.5l-61 -306q-13 -66 -13 -122q0 -104 44 -174q68 -107 215 -107q94 0 166.5 27t107.5 62l59 292 h-258l36 182h497l-108 -539q-72 -84 -208.5 -151t-330.5 -67q-230 0 -364 169q-96 122 -96 290q0 65 15 138z" />
55
+ <glyph unicode="H" horiz-adv-x="1365" d="M65 0l291 1456h239l-128 -640h587l128 640h238l-291 -1456h-238l124 621h-587l-124 -621h-239z" />
56
+ <glyph unicode="I" horiz-adv-x="562" d="M76 0l291 1456h239l-291 -1456h-239z" />
57
+ <glyph unicode="J" horiz-adv-x="1079" d="M59 408l3 5h232q-10 -51 -10 -90q0 -63 26 -96q43 -54 143 -54q80 0 151 68t94 180l207 1035h239l-207 -1035q-44 -217 -186 -329.5t-337 -112.5q-192 0 -296 111q-73 76 -73 200q0 54 14 118z" />
58
+ <glyph unicode="K" horiz-adv-x="1168" d="M49 0l291 1456h240l-123 -612h128l470 612h301l2 -5l-610 -727l341 -724h-273l-279 628h-123l-125 -628h-240z" />
59
+ <glyph unicode="L" horiz-adv-x="1044" d="M65 0l291 1456h239l-252 -1262h617l-39 -194h-856z" />
60
+ <glyph unicode="M" horiz-adv-x="1681" d="M65 0l291 1456h310l154 -1118l6 -1l601 1119h309l-291 -1456h-239l99 496l145 606l-6 3l-610 -1105h-160l-167 1102h-6l-98 -606l-99 -496h-239z" />
61
+ <glyph unicode="N" horiz-adv-x="1365" d="M65 0l291 1456h239l372 -1041h6l208 1041h239l-291 -1456h-239l-372 1042h-6l-208 -1042h-239z" />
62
+ <glyph unicode="O" horiz-adv-x="1313" d="M135 603l52 262q57 287 226 449.5t415 162.5q234 1 378 -183q105 -135 106 -310q0 -63 -14 -132l-52 -262q-58 -287 -232.5 -449t-426.5 -162q-229 1 -367 183q-99 132 -100 303q0 66 15 138zM373 603q-14 -67 -14 -126q0 -107 47 -183q72 -116 221 -116q138 0 241 114 t140 298l53 264q12 61 12 115q-1 113 -53 191q-78 116 -232 117q-132 0 -229.5 -114t-133.5 -296z" />
63
+ <glyph unicode="P" horiz-adv-x="1247" d="M65 0l291 1456h537q210 0 320 -127q81 -94 81 -226q0 -47 -10 -99q-44 -217 -193 -334.5t-379 -117.5h-298l-110 -552h-239zM453 747h298q112 0 191.5 74t101.5 181q8 40 8 74q0 66 -30 114q-45 70 -168 71h-298z" />
64
+ <glyph unicode="Q" horiz-adv-x="1329" d="M137 603l52 262q57 287 226 449.5t415 162.5q235 0 378 -183q106 -135 106 -310q0 -63 -14 -132l-52 -262q-30 -150 -94 -267.5t-156 -197.5l173 -214l-185 -139l-187 240q-50 -16 -103 -24.5t-107 -8.5q-230 0 -367 183q-100 131 -100 303q0 66 15 138zM375 603 q-14 -67 -14 -126q0 -107 47 -183q72 -116 221 -116q138 0 241 114t140 298l53 264q12 61 12 115q0 113 -53 191q-77 117 -232 117q-132 0 -229.5 -114t-133.5 -296z" />
65
+ <glyph unicode="R" horiz-adv-x="1272" d="M65 0l291 1456h506q213 0 322 -112q80 -82 80 -211q0 -47 -11 -101q-24 -121 -94 -200.5t-187 -127.5q101 -42 137 -130q22 -53 22 -118q0 -44 -10 -94l-24 -121q-11 -54 -11 -103v-24q4 -59 33 -91l-5 -23h-246q-28 30 -28 90v14q4 72 19 139l23 117q8 42 8 77 q0 65 -28 105q-42 62 -143 62h-294l-120 -604h-240zM464 799h255q121 0 196 57.5t98 169.5q8 39 8 72q-1 65 -31 104q-46 59 -167 59h-266z" />
66
+ <glyph unicode="S" horiz-adv-x="1175" d="M111 425l2 6h230q-8 -38 -7 -69q0 -90 60 -132q82 -56 215 -57q87 0 161 49t89 123q6 30 6 56q1 65 -37 107q-52 58 -209 117q-219 75 -316 185q-70 79 -70 198q0 47 11 101q35 178 175.5 273t341.5 95q219 1 341 -119q89 -87 88 -221q0 -50 -12 -106l-3 -6h-230 q6 32 6 60q-1 75 -45 127q-62 70 -184 70q-86 0 -155.5 -49.5t-83.5 -121.5q-7 -33 -7 -60q0 -63 36 -100q50 -52 225 -120q215 -75 307 -183q65 -76 64 -195q0 -49 -11 -106q-37 -186 -178 -277t-349 -91q-216 0 -364 109q-110 81 -110 228q0 50 13 109z" />
67
+ <glyph unicode="T" horiz-adv-x="1109" d="M199 1261l39 195h1045l-39 -195h-403l-252 -1261h-239l252 1261h-403z" />
68
+ <glyph unicode="U" horiz-adv-x="1310" d="M137 480l195 976h239l-195 -976q-12 -57 -11 -103q-1 -85 39 -132q62 -72 197 -72q128 0 228 78t130 229l195 976h239l-195 -976q-52 -258 -221 -379.5t-415 -121.5q-220 -1 -346 131q-92 95 -92 247q0 58 13 123z" />
69
+ <glyph unicode="V" horiz-adv-x="1234" d="M186 1456h254l141 -1075l8 -96l6 -1l39 95l486 1077h255l-715 -1456h-227z" />
70
+ <glyph unicode="W" horiz-adv-x="1692" d="M204 1456h235l38 -1036l6 -1l426 1037h190l96 -1038l6 -1l370 1039h234l-551 -1456h-217l-98 1025l-6 1l-427 -1026h-218z" />
71
+ <glyph unicode="X" horiz-adv-x="1224" d="M-19 0l539 734l-297 722h281l185 -538l360 538h284l-529 -722l311 -734h-287l-194 547l-369 -547h-284z" />
72
+ <glyph unicode="Y" horiz-adv-x="1207" d="M227 1456h267l174 -684l6 -1l451 685h266l-656 -947l-102 -509h-238l105 527z" />
73
+ <glyph unicode="Z" horiz-adv-x="1083" d="M27 0l3 152l783 1109h-569l39 195h856l-29 -146l-787 -1116h644l-39 -194h-901z" />
74
+ <glyph unicode="[" horiz-adv-x="540" d="M2 -324l320 2002h389l-30 -190h-149l-260 -1623h149l-30 -189h-389z" />
75
+ <glyph unicode="\" horiz-adv-x="811" d="M228 1456h232l249 -1581h-232z" />
76
+ <glyph unicode="]" horiz-adv-x="540" d="M-104 -324l30 189h151l260 1623h-151l30 190h390l-320 -2002h-390z" />
77
+ <glyph unicode="^" horiz-adv-x="826" d="M113 729l423 727h167l132 -727h-201l-67 413l-1 42l-6 1l-17 -43l-228 -413h-202z" />
78
+ <glyph unicode="_" horiz-adv-x="875" d="M-115 -191l38 191h858l-38 -191h-858z" />
79
+ <glyph unicode="`" horiz-adv-x="632" d="M238 1478h269l128 -266h-191z" />
80
+ <glyph unicode="a" horiz-adv-x="1048" d="M69 305q33 167 162 249.5t342 82.5h158l19 95q6 31 6 56q0 50 -22 80q-34 46 -119 45q-71 0 -126 -40.5t-67 -102.5h-229l-2 6q22 136 155 231t321 95q166 0 262 -98q70 -72 70 -186q0 -41 -9 -88l-96 -481q-14 -72 -18 -131l-2 -36q0 -41 6 -82h-242q-4 34 -4 67 q0 5 -1 9q0 28 3 57q-62 -67 -142.5 -110.5t-166.5 -43.5q-143 -1 -215 89q-51 63 -52 156q0 38 9 81zM309 309q-5 -22 -5 -41q0 -38 18 -60q28 -34 97 -34q66 0 135 36t109 87l38 188h-162q-86 0 -151 -53t-79 -123z" />
81
+ <glyph unicode="b" d="M36 0l312 1560h239l-114 -571q55 55 120.5 84t140.5 29q178 0 262 -172q52 -107 52 -244q0 -84 -19 -180l-4 -21q-51 -253 -168.5 -379.5t-307.5 -126.5q-82 0 -149 43t-109 120l-48 -142h-207zM333 292q20 -55 66.5 -85t120.5 -30q107 0 171.5 80.5t94.5 227.5l4 21 q18 92 18 165q0 69 -16 123q-34 108 -151 109q-63 0 -117.5 -39.5t-97.5 -107.5z" />
82
+ <glyph unicode="c" horiz-adv-x="1012" d="M93 523l5 35q39 244 181.5 394t368.5 150q178 0 276 -114q74 -86 74 -207q0 -39 -8 -82l-2 -5h-218q4 25 4 47q0 62 -30 106q-41 60 -127 60q-118 0 -187 -101t-93 -248l-5 -35q-11 -68 -12 -124q0 -75 20 -130q34 -96 160 -96q77 0 140 52.5t76 131.5h216l2 -6 q-21 -159 -157 -265.5t-308 -106.5q-216 -1 -315 155q-72 112 -72 266q0 58 11 123z" />
83
+ <glyph unicode="d" d="M99 525l4 21q55 276 176 416t311 140q77 0 140.5 -33t105.5 -93l117 584h239l-312 -1560h-206l6 107q-59 -63 -129.5 -95.5t-148.5 -32.5q-174 -1 -262 157q-57 103 -57 239q0 70 16 150zM339 525q-15 -74 -15 -134q0 -69 20 -120q37 -94 152 -94q60 0 112.5 35.5 t95.5 99.5l95 479q-22 53 -67.5 82.5t-111.5 29.5q-105 0 -174.5 -96.5t-102.5 -260.5z" />
84
+ <glyph unicode="e" horiz-adv-x="1022" d="M101 516l6 40q39 245 189 396q149 150 338 150h3q199 0 289 -134q65 -96 66 -238q0 -55 -10 -116l-23 -143h-625q-3 -30 -3 -58q0 -97 38 -159q49 -80 163 -81q85 0 156 24.5t138 68.5l50 -159q-65 -54 -165 -91t-225 -37q-208 0 -316 152q-79 112 -79 269q0 55 10 116z M373 654l2 -5h376l4 25q5 34 5 63q0 64 -24 107q-35 63 -130 63q-76 0 -139.5 -71.5t-93.5 -181.5z" />
85
+ <glyph unicode="f" horiz-adv-x="684" d="M116 0l180 902h-152l36 180h152l26 126q37 190 146 281.5t278 91.5q32 0 66 -6t73 -15l-61 -188q-17 4 -39.5 7t-48.5 3q-67 0 -113 -45.5t-62 -128.5l-26 -126h200l-36 -180h-200l-180 -902h-239z" />
86
+ <glyph unicode="g" horiz-adv-x="1091" d="M34 -355l89 191q48 -31 113 -48.5t135 -17.5q109 0 182.5 68t97.5 186l12 59q-56 -51 -120 -77.5t-136 -26.5q-174 0 -263 158q-59 104 -59 240q0 70 16 148l4 21q55 276 177 416t313 140q83 0 150 -38t109 -107l43 125h205l-211 -1059q-46 -226 -190 -343t-369 -117 q-69 0 -153 22.5t-145 59.5zM340 525q-14 -72 -14 -130q0 -72 21 -123q39 -95 154 -95q62 0 113.5 34.5t93.5 97.5l96 483q-22 53 -67 82t-112 29q-105 0 -176.5 -97t-104.5 -260z" />
87
+ <glyph unicode="h" d="M33 0l312 1560h239l-121 -603q64 70 141.5 107.5t163.5 37.5q151 0 224 -110q46 -69 45 -182q0 -68 -16 -151l-132 -659h-239l132 661q12 62 12 106q0 53 -18 83q-33 52 -129 53q-58 0 -115 -30t-102 -82l-158 -791h-239z" />
88
+ <glyph unicode="i" horiz-adv-x="511" d="M51 0l216 1082h239l-216 -1082h-239zM320 1347l43 213h239l-43 -213h-239z" />
89
+ <glyph unicode="j" horiz-adv-x="516" d="M-233 -420l52 194q15 -5 37.5 -8.5t40.5 -3.5q52 0 93 43t59 132l229 1145h239l-229 -1145q-39 -190 -142.5 -282t-263.5 -92q-31 0 -59 4t-56 13zM326 1350l42 210h240l-42 -210h-240z" />
90
+ <glyph unicode="k" horiz-adv-x="1014" d="M37 0l312 1560h238l-179 -892h93l321 414h274l2 -5l-418 -486l257 -591h-277l-193 473h-98l-94 -473h-238z" />
91
+ <glyph unicode="l" horiz-adv-x="511" d="M51 0l312 1560h239l-312 -1560h-239z" />
92
+ <glyph unicode="m" horiz-adv-x="1662" d="M37 0l216 1082h218l-13 -128q62 72 143 110t179 38q88 0 150 -46.5t82 -138.5q63 88 148.5 136.5t188.5 48.5q141 0 211 -114q43 -70 43 -180q0 -70 -17 -156l-130 -652h-240l131 653q14 73 14 122q0 51 -15 77q-30 51 -117 51q-63 0 -120.5 -43.5t-95.5 -114.5 q-3 -18 -4.5 -26.5t-2.5 -17.5l-140 -701h-239l131 653q13 68 13 116q1 52 -15 80q-30 54 -118 54q-61 0 -112.5 -29.5t-90.5 -81.5l-159 -792h-239z" />
93
+ <glyph unicode="n" d="M34 0l216 1082h219l-16 -144q65 79 147.5 121.5t174.5 42.5q147 0 219 -104q45 -66 46 -176q0 -64 -16 -142l-136 -680h-239l136 678q11 56 11 96q0 54 -20 82q-34 48 -129 47q-59 0 -116 -32t-102 -88l-156 -783h-239z" />
94
+ <glyph unicode="o" d="M97 530l3 21q40 251 186 401t364 150q209 0 312 -156q75 -114 75 -272q0 -58 -10 -123l-3 -21q-41 -253 -186.5 -402t-364.5 -149q-209 -1 -312 155q-75 113 -75 271q0 59 11 125zM336 530q-11 -68 -11 -123q0 -81 23 -138q39 -96 156 -96q109 0 182.5 100.5t98.5 256.5 l3 21q10 63 10 117q0 83 -24 142q-39 97 -155 97q-109 0 -182.5 -101.5t-97.5 -254.5z" />
95
+ <glyph unicode="p" d="M-47 -416l299 1498h214l-8 -105q58 60 127 92.5t148 32.5q175 0 259 -172q54 -108 54 -248q0 -82 -19 -176l-4 -21q-51 -252 -169 -379t-305 -127q-81 0 -146.5 31t-107.5 89l-103 -515h-239zM330 274q20 -49 65.5 -75t116.5 -26q105 0 174.5 83.5t98.5 228.5l4 21 q17 84 17 153q0 76 -20 133q-39 111 -153 111q-60 0 -111.5 -35t-92.5 -97z" />
96
+ <glyph unicode="q" d="M99 525l4 21q55 276 176 416t311 140q80 0 145 -35.5t107 -99.5l41 115h206l-299 -1498h-239l99 496q-55 -50 -117 -75.5t-131 -25.5q-174 0 -262 157q-57 104 -57 239q0 70 16 150zM339 525q-15 -74 -15 -135q0 -70 20 -121q37 -96 152 -96q57 0 106.5 32t90.5 90 l102 514q-23 47 -67 72.5t-108 25.5q-104 0 -174 -98.5t-103 -262.5z" />
97
+ <glyph unicode="r" horiz-adv-x="692" d="M36 0l216 1082h219l-14 -143q53 78 119.5 120.5t142.5 42.5q20 0 43.5 -3.5t36.5 -8.5l-74 -230l-110 4q-59 0 -107 -30t-83 -84l-150 -750h-239z" />
98
+ <glyph unicode="s" horiz-adv-x="1004" d="M70 335l2 6h223q-2 -18 -2 -34q0 -68 40 -103q50 -43 132 -43q80 0 132.5 36.5t62.5 96.5q2 11 2 22q0 42 -30 72q-36 36 -151 64q-173 41 -255 117q-65 60 -65 154q0 24 4 51q22 141 144.5 234.5t300.5 93.5t276 -98q76 -77 76 -180q0 -30 -7 -61l-2 -6h-230q3 16 3 30 q0 49 -29 86q-37 47 -116 47q-74 0 -123 -40t-58 -96q-2 -12 -2 -23q0 -42 26 -68q34 -33 150 -59q184 -42 264 -118q63 -61 64 -156q0 -25 -5 -53q-24 -151 -150 -239.5t-314 -88.5q-189 -1 -290 109q-79 86 -79 189q0 28 6 58z" />
99
+ <glyph unicode="t" horiz-adv-x="692" d="M126 902l36 180h151l53 263h239l-53 -263h179l-36 -180h-179l-119 -598q-6 -30 -6 -53q-1 -30 11 -45q20 -26 65 -26q24 0 52 3.5t50 9.5l-11 -178q-38 -17 -88.5 -26.5t-104.5 -9.5q-119 0 -180 80q-39 51 -39 138q0 48 12 107l119 598h-151z" />
100
+ <glyph unicode="u" d="M118 435l129 647h238l-129 -649q-16 -79 -16 -131q0 -48 14 -73q28 -52 114 -52q73 0 134.5 32.5t105.5 92.5l156 780h239l-216 -1082h-212l13 137q-63 -78 -142.5 -118t-173.5 -40q-153 0 -227 113q-45 69 -45 182q0 72 18 161z" />
101
+ <glyph unicode="v" horiz-adv-x="980" d="M137 1082h247l84 -716l2 -74l6 -1l27 75l306 716h247l-528 -1082h-207z" />
102
+ <glyph unicode="w" horiz-adv-x="1432" d="M167 1082h229l7 -735l6 -1l349 736h173l58 -747l6 -1l298 748h229l-490 -1082h-195l-62 721l-6 1l-349 -722h-195z" />
103
+ <glyph unicode="x" horiz-adv-x="980" d="M-36 0l410 547l-228 535h271l112 -364l6 -1l231 365h274l-399 -535l234 -547h-271l-120 373l-6 1l-241 -374h-273z" />
104
+ <glyph unicode="y" horiz-adv-x="980" d="M-71 -417l64 188q12 -1 33.5 -3t33.5 -2q55 0 105 48.5t78 100.5l56 97l-150 1070h261l52 -648l1 -89l6 -1l359 738h262l-663 -1246q-63 -112 -152.5 -192.5t-223.5 -80.5q-27 0 -60 6.5t-62 13.5z" />
105
+ <glyph unicode="z" horiz-adv-x="980" d="M-1 0l32 159l644 722l-2 5h-488l39 196h789l-30 -154l-652 -729l2 -5h525l-39 -194h-820z" />
106
+ <glyph unicode="{" horiz-adv-x="651" d="M71 529l6 37l22 141q86 0 140 58.5t71 163.5l32 203q28 177 123 292.5t285 167.5l6 -2l23 -133q-93 -33 -142.5 -117t-68.5 -208l-32 -203q-18 -109 -71.5 -189t-143.5 -124q73 -48 102 -128t13 -179l-32 -203q-22 -130 0.5 -211t106.5 -114l-70 -141q-174 55 -232.5 175 t-30.5 291l32 203q17 108 -16 164t-123 56z" />
107
+ <glyph unicode="|" horiz-adv-x="496" d="M53 -270l276 1726h164l-276 -1726h-164z" />
108
+ <glyph unicode="}" horiz-adv-x="651" d="M-73 -224q92 33 142 115.5t70 207.5l32 203q17 113 72.5 194.5t151.5 124.5q-79 44 -110 122.5t-14 181.5l32 200q21 129 -2 210.5t-106 114.5l70 140q173 -55 231 -174.5t31 -290.5l-32 -200q-18 -110 15.5 -164t125.5 -54l-21 -135h-1l-6 -43q-88 0 -142.5 -61 t-70.5 -166l-32 -203q-29 -177 -123 -292t-284 -167l-6 2z" />
109
+ <glyph unicode="~" horiz-adv-x="1272" d="M115 460q24 156 120.5 255.5t224.5 99.5q77 0 144 -34.5t129 -100.5q41 -48 76.5 -69t78.5 -21q50 0 99.5 55t61.5 128l162 -23q-25 -157 -123.5 -260t-224.5 -103q-77 0 -141.5 33t-129.5 103q-44 46 -79.5 68t-77.5 22q-52 0 -99.5 -52t-58.5 -123z" />
110
+ <glyph unicode="&#xa1;" horiz-adv-x="524" d="M-24 -374l193 964h240l-193 -964h-240zM222 847l47 235h236l-47 -235h-236z" />
111
+ <glyph unicode="&#xa2;" horiz-adv-x="1081" d="M113 523l5 35q34 220 155.5 365.5t314.5 172.5l45 222h196l-47 -231q127 -35 191 -141t42 -252h-225q15 93 -26 153t-127 60q-118 0 -187 -101t-93 -248l-5 -35q-26 -158 8.5 -254t159.5 -96q77 0 140 52.5t76 131.5h217l2 -6q-19 -141 -131 -242.5t-263 -123.5l-45 -230 h-196l48 240q-154 43 -220.5 188t-34.5 340z" />
112
+ <glyph unicode="&#xa3;" horiz-adv-x="1135" d="M55 0l39 194h9q44 13 82 101.5t57 182.5l20 122h-146l39 195h139l39 238q43 221 172.5 332.5t316.5 111.5q182 0 275 -111t54 -285l-2 -5h-233q22 112 -16.5 159t-116.5 47q-70 0 -128.5 -66.5t-81.5 -182.5l-39 -238h354l-39 -195h-348l-18 -114q-18 -88 -53 -162.5 t-85 -129.5h672l-40 -194h-922z" />
113
+ <glyph unicode="&#xa4;" horiz-adv-x="1342" d="M29 118l159 142q-32 76 -40 164t12 184q21 107 64.5 200.5t105.5 169.5l-101 142l167 144l98 -137q78 52 165.5 79.5t178.5 27.5q83 0 157.5 -31t134.5 -87l166 149l110 -145l-172 -155q33 -78 42 -168.5t-10 -188.5q-21 -102 -61 -191.5t-96 -162.5l97 -136l-168 -145 l-90 126q-83 -59 -175 -89t-186 -30q-87 0 -164 33t-136 95l-149 -134zM341 608q-40 -197 42.5 -320t240.5 -123q144 0 283.5 130.5t176.5 312.5q38 196 -44 318t-239 122q-145 0 -285 -130t-175 -310z" />
114
+ <glyph unicode="&#xa5;" horiz-adv-x="1174" d="M96 237l39 195h326l23 115h-326l39 195h262l-226 714h267l163 -615l6 -1l409 616h267l-511 -714h251l-39 -195h-323l-23 -115h323l-39 -195h-323l-47 -237h-239l47 237h-326z" />
115
+ <glyph unicode="&#xa6;" horiz-adv-x="490" d="M-10 -270l159 795h225l-159 -795h-225zM184 698l151 758h225l-151 -758h-225z" />
116
+ <glyph unicode="&#xa7;" horiz-adv-x="1196" d="M-3 -56l3 6l230 1q-26 -131 38 -181.5t178 -50.5q102 0 177.5 50t91.5 126q16 82 -34 123.5t-214 99.5q-212 64 -300 157t-53 267q19 95 72.5 164.5t137.5 111.5q-51 50 -68.5 119t2.5 165q36 180 182 277.5t367 97.5q209 0 319 -113.5t66 -311.5l-2 -5h-232 q22 107 -27 171t-163 64q-109 0 -182 -51.5t-87 -126.5q-19 -92 26.5 -131t218.5 -93q214 -66 301 -158.5t53 -266.5q-20 -98 -73.5 -167t-136.5 -109q51 -50 68 -118t-2 -164q-38 -187 -181.5 -280t-365.5 -93q-200 0 -328.5 102t-81.5 318zM356 558q-19 -94 26 -136 t213 -99q43 -14 72.5 -24.5t56.5 -20.5q52 22 87.5 64t47.5 97q16 85 -33.5 130t-210.5 104q-40 12 -72 23t-60 24q-51 -23 -84 -65.5t-43 -96.5z" />
117
+ <glyph unicode="&#xa8;" horiz-adv-x="1001" d="M288 1252l33 204h232l-33 -204h-232zM738 1252l33 204h233l-33 -204h-233z" />
118
+ <glyph unicode="&#xa9;" horiz-adv-x="1497" d="M130 729q52 327 276.5 537t503.5 210q263 0 426 -218t114 -529q-53 -328 -277.5 -539t-501.5 -211q-265 0 -428.5 218.5t-112.5 531.5zM248 729q-45 -274 84 -449.5t359 -175.5q216 0 407 182t234 443q43 273 -85.5 447.5t-356.5 174.5q-218 0 -409.5 -181t-232.5 -441z M441 669l19 119q28 179 132 283t256 104q142 0 214.5 -80.5t45.5 -228.5l-2 -5h-145q15 97 -18.5 138t-116.5 41q-82 0 -140 -69.5t-76 -181.5l-19 -120q-20 -119 15 -185.5t121 -66.5q79 0 127 42t63 137h143l2 -6q-21 -156 -114 -232t-243 -76q-144 0 -218 107.5 t-46 279.5z" />
119
+ <glyph unicode="&#xaa;" horiz-adv-x="860" d="M210 920q23 117 112 174t244 57h122l10 51q13 66 -5.5 96.5t-70.5 30.5q-55 0 -93.5 -26.5t-47.5 -72.5l-158 13l-2 6q16 104 106 166t224 62q118 0 181 -72.5t37 -203.5l-63 -314q-11 -53 -13.5 -95t1.5 -86h-173q-3 21 -3 45t3 49q-41 -47 -98 -77.5t-128 -30.5 q-103 0 -154.5 62.5t-30.5 165.5zM382 924q-10 -46 11 -67t74 -21q41 0 96 28.5t80 63.5l21 106h-120q-62 0 -108 -33t-54 -77z" />
120
+ <glyph unicode="&#xab;" horiz-adv-x="941" d="M95 541l1 6l3 13l346 390h162l-307 -400l147 -399h-162zM436 541l1 6l3 13l346 390h162l-307 -400l147 -399h-162z" />
121
+ <glyph unicode="&#xac;" horiz-adv-x="1066" d="M165 634l34 171h780l-16 -77h1l-19 -94l-52 -260h-196l52 260h-584z" />
122
+ <glyph unicode="&#xad;" horiz-adv-x="640" d="M91 521l39 196h492l-39 -196h-492z" />
123
+ <glyph unicode="&#xae;" horiz-adv-x="1497" d="M131 729q52 327 276.5 537t502.5 210q264 0 427 -218t114 -529q-53 -328 -278 -539t-502 -211q-265 0 -428 218.5t-112 531.5zM249 729q-45 -274 84 -449.5t358 -175.5q216 0 407 182t234 443q43 273 -85.5 447.5t-356.5 174.5q-218 0 -409 -181t-232 -441zM446 316 l136 850h265q136 0 209.5 -67.5t53.5 -192.5q-10 -62 -46 -106.5t-97 -74.5q52 -29 70.5 -83t7.5 -127l-9 -56q-7 -42 -8.5 -74t4.5 -53l-2 -16h-151q-5 22 -0.5 63.5t11.5 80.5l8 54q12 74 -13 106.5t-95 32.5h-143l-53 -337h-148zM669 787h128q62 0 109 30.5t56 85.5 q12 75 -18 102.5t-119 27.5h-117z" />
124
+ <glyph unicode="&#xaf;" horiz-adv-x="940" d="M272 1298l25 158h683l-25 -158h-683z" />
125
+ <glyph unicode="&#xb0;" horiz-adv-x="733" d="M278 1208q22 117 109.5 193t191.5 76q93 0 152 -80.5t38 -188.5q-24 -117 -109 -190.5t-187 -73.5q-96 0 -156.5 78t-38.5 186zM413 1208q-12 -56 14 -90t74 -34q43 0 82.5 35.5t51.5 88.5q11 58 -13.5 93t-70.5 35q-44 0 -86 -37.5t-52 -90.5z" />
126
+ <glyph unicode="&#xb1;" horiz-adv-x="1034" d="M58 0l39 196h776l-39 -196h-776zM138 707l32 199h326l62 384h211l-62 -384h315l-32 -199h-314l-63 -395h-211l63 395h-327z" />
127
+ <glyph unicode="&#xb2;" horiz-adv-x="819" d="M165 667l29 145l333 256q70 54 94.5 89t32.5 76q9 47 -7.5 73.5t-64.5 26.5q-50 0 -86 -30.5t-45 -77.5h-176l-2 6q16 110 109.5 179t231.5 69q123 0 186.5 -66t41.5 -181q-18 -87 -71 -141t-194 -163l-136 -110l2 -6h319l-29 -145h-568z" />
128
+ <glyph unicode="&#xb3;" horiz-adv-x="819" d="M193 888l2 6h179q-10 -46 15 -70t81 -24q53 0 93.5 26.5t49.5 70.5q12 59 -13.5 85t-88.5 26h-115l16 77l3 14l8 40h115q53 0 87 27t44 74q7 41 -16 66.5t-78 25.5q-44 0 -77 -22.5t-39 -55.5h-178l-2 6q15 105 106 161.5t216 56.5q131 0 204.5 -60.5t52.5 -168.5 q-12 -59 -54 -104t-105 -70q59 -25 85.5 -72t13.5 -112q-24 -119 -118.5 -177.5t-237.5 -58.5q-121 0 -199 61t-50 172z" />
129
+ <glyph unicode="&#xb4;" horiz-adv-x="663" d="M240 1212l219 266h271l-304 -266h-186z" />
130
+ <glyph unicode="&#xb5;" horiz-adv-x="1143" d="M-29 -416l299 1498h238l-130 -649q-28 -160 5 -209t120 -49q73 0 129 32t97 93l156 782h239l-216 -1082h-220l9 72q-50 -46 -108 -69.5t-125 -23.5q-52 0 -93.5 13.5t-71.5 41.5l-90 -450h-238z" />
131
+ <glyph unicode="&#xb6;" horiz-adv-x="984" d="M173 988q43 220 187 344t364 124h313l-291 -1456h-239l104 520h-74q-203 0 -304 132t-60 336z" />
132
+ <glyph unicode="&#xb7;" horiz-adv-x="555" d="M187 594l48 240h234l-48 -240h-234z" />
133
+ <glyph unicode="&#xb8;" horiz-adv-x="504" d="M-44 -440l19 130q51 0 89 22.5t48 66.5q9 47 -18 63.5t-101 21.5l58 139h174l-22 -54q55 -11 85.5 -52t15.5 -121q-22 -109 -110 -165t-233 -54z" />
134
+ <glyph unicode="&#xb9;" horiz-adv-x="542" d="M263 665l128 639h-116l30 150l308 23l-162 -812h-188z" />
135
+ <glyph unicode="&#xba;" horiz-adv-x="881" d="M234 1026l23 116q32 157 136.5 246t254.5 89q139 0 213.5 -95t45.5 -240l-23 -116q-32 -158 -136 -246t-255 -88q-139 0 -213.5 94.5t-45.5 239.5zM405 1026q-18 -90 11 -139t106 -49q68 0 121 52.5t70 135.5l23 116q17 88 -12 137.5t-105 49.5q-70 0 -122.5 -53 t-68.5 -134z" />
136
+ <glyph unicode="&#xbb;" horiz-adv-x="941" d="M33 151l306 399l-146 400h162l189 -390l-2 -6h1l-3 -13l-345 -390h-162zM387 151l306 399l-146 400h162l189 -390l-2 -6h1l-3 -13l-345 -390h-162z" />
137
+ <glyph unicode="&#xbc;" horiz-adv-x="1451" d="M232 189l890 1138l107 -72l-889 -1138zM314 664l128 639h-116l30 150l308 23l-162 -812h-188zM657 145l13 116l500 540h187l-102 -511h102l-29 -145h-102l-29 -145h-187l29 145h-382zM873 295l2 -5h193l53 271l-5 2l-11 -14z" />
138
+ <glyph unicode="&#xbd;" horiz-adv-x="1547" d="M237 189l890 1138l107 -72l-889 -1138zM306 664l128 639h-116l30 150l308 23l-162 -812h-188zM747 0l29 145l333 256q70 54 94.5 89t32.5 76q9 47 -7.5 73.5t-64.5 26.5q-50 0 -86 -30.5t-45 -77.5h-176l-2 6q16 110 109.5 179t231.5 69q123 0 186.5 -66t41.5 -181 q-18 -87 -71 -141t-194 -163l-136 -110l2 -6h319l-29 -145h-568z" />
139
+ <glyph unicode="&#xbe;" horiz-adv-x="1641" d="M196 889l2 6h179q-10 -46 15 -70t81 -24q53 0 93.5 26.5t49.5 70.5q12 59 -13.5 85t-88.5 26h-115l16 77l3 14l8 40h115q53 0 87 27t44 74q7 41 -16 66.5t-78 25.5q-44 0 -77 -22.5t-39 -55.5h-178l-2 6q15 105 106 161.5t216 56.5q131 0 204.5 -60.5t52.5 -168.5 q-12 -59 -54 -104t-105 -70q59 -25 85.5 -72t13.5 -112q-24 -119 -118.5 -177.5t-237.5 -58.5q-121 0 -199 61t-50 172zM415 189l890 1138l107 -72l-889 -1138zM829 145l13 116l500 540h187l-102 -511h102l-29 -145h-102l-29 -145h-187l29 145h-382zM1045 295l2 -5h193 l53 271l-5 2l-11 -14z" />
140
+ <glyph unicode="&#xbf;" horiz-adv-x="971" d="M11 8q26 135 112 237t215 197q62 49 85 94.5t41 132.5h238q-31 -144 -73.5 -205t-164.5 -153q-89 -81 -143.5 -148.5t-70.5 -150.5q-21 -103 15.5 -153.5t126.5 -50.5q67 0 130.5 46.5t83.5 134.5h230l2 -6q-35 -178 -170 -277.5t-317 -99.5q-186 0 -281.5 109t-58.5 293 zM498 849l46 233h242l-46 -233h-242z" />
141
+ <glyph unicode="&#xc0;" horiz-adv-x="1257" d="M-59 0l787 1456h226l199 -1456h-242l-39 340h-514l-176 -340h-241zM463 543h386l-68 602l-6 1zM598 1826h269l128 -266h-191z" />
142
+ <glyph unicode="&#xc1;" horiz-adv-x="1257" d="M-59 0l787 1456h226l199 -1456h-242l-39 340h-514l-176 -340h-241zM463 543h386l-68 602l-6 1zM770 1559l219 266h271l-304 -266h-186z" />
143
+ <glyph unicode="&#xc2;" horiz-adv-x="1257" d="M-59 0l787 1456h226l199 -1456h-242l-39 340h-514l-176 -340h-241zM463 543h386l-68 602l-6 1zM572 1597l6 26l298 241h137l202 -243l-5 -24h-190l-102 139l-157 -139h-189z" />
144
+ <glyph unicode="&#xc3;" horiz-adv-x="1257" d="M-59 0l787 1456h226l199 -1456h-242l-39 340h-514l-176 -340h-241zM463 543h386l-68 602l-6 1zM561 1637q15 97 81 165t152 68q49 0 126.5 -44.5t126.5 -44.5q34 0 65 32t38 78l121 -39q-16 -98 -82.5 -163.5t-152.5 -65.5q-62 0 -133 44.5t-119 44.5q-34 0 -64.5 -32.5 t-37.5 -77.5z" />
145
+ <glyph unicode="&#xc4;" horiz-adv-x="1257" d="M-59 0l787 1456h226l199 -1456h-242l-39 340h-514l-176 -340h-241zM463 543h386l-68 602l-6 1zM549 1601l33 204h232l-33 -204h-232zM999 1601l33 204h233l-33 -204h-233z" />
146
+ <glyph unicode="&#xc5;" horiz-adv-x="1257" d="M-59 0l787 1456h226l199 -1456h-242l-39 340h-514l-176 -340h-241zM463 543h386l-68 602l-6 1zM717 1737q18 90 86.5 144t155.5 54q78 0 126.5 -57.5t32.5 -140.5q-19 -91 -85.5 -142.5t-151.5 -51.5q-80 0 -130.5 55t-33.5 139zM823 1737q-9 -46 13 -73.5t63 -27.5 q37 0 70.5 29t42.5 72q10 48 -11 76t-61 28q-38 0 -73 -30t-44 -74z" />
147
+ <glyph unicode="&#xc6;" horiz-adv-x="1808" d="M-94 0l1065 1456h938l-39 -197h-599l-66 -408h507l-39 -197h-499l-74 -458h614l-39 -196h-845l54 340h-455l-237 -340h-286zM580 555h339l99 617l-6 2z" />
148
+ <glyph unicode="&#xc7;" horiz-adv-x="1219" d="M135 596l55 276q57 288 217 446.5t396 158.5q225 0 352.5 -140.5t99.5 -367.5l-2 -5h-233q14 150 -44.5 234t-197.5 84q-123 0 -218 -115t-130 -293l-56 -278q-38 -190 26 -306.5t206 -116.5q123 0 195.5 72.5t119.5 224.5h230l2 -6q-61 -230 -200 -357.5t-369 -127.5 q-226 0 -363.5 179t-85.5 438zM366 -444l19 130q51 0 89 22.5t48 66.5q9 47 -18 63.5t-101 21.5l58 139h174l-22 -54q55 -11 85.5 -52t15.5 -121q-22 -109 -110 -165t-233 -54z" />
149
+ <glyph unicode="&#xc8;" horiz-adv-x="1115" d="M65 0l291 1456h913l-39 -195h-674l-82 -411h586l-39 -195h-586l-92 -461h681l-39 -194h-920zM521 1826h269l128 -266h-191z" />
150
+ <glyph unicode="&#xc9;" horiz-adv-x="1115" d="M65 0l291 1456h913l-39 -195h-674l-82 -411h586l-39 -195h-586l-92 -461h681l-39 -194h-920zM693 1559l219 266h271l-304 -266h-186z" />
151
+ <glyph unicode="&#xca;" horiz-adv-x="1115" d="M65 0l291 1456h913l-39 -195h-674l-82 -411h586l-39 -195h-586l-92 -461h681l-39 -194h-920zM495 1597l6 26l298 241h137l202 -243l-5 -24h-190l-102 139l-157 -139h-189z" />
152
+ <glyph unicode="&#xcb;" horiz-adv-x="1115" d="M65 0l291 1456h913l-39 -195h-674l-82 -411h586l-39 -195h-586l-92 -461h681l-39 -194h-920zM472 1601l33 204h232l-33 -204h-232zM922 1601l33 204h233l-33 -204h-233z" />
153
+ <glyph unicode="&#xcc;" horiz-adv-x="562" d="M76 0l291 1456h239l-291 -1456h-239zM224 1826h269l128 -266h-191z" />
154
+ <glyph unicode="&#xcd;" horiz-adv-x="562" d="M76 0l291 1456h239l-291 -1456h-239zM394 1559l219 266h271l-304 -266h-186z" />
155
+ <glyph unicode="&#xce;" horiz-adv-x="562" d="M76 0l291 1456h239l-291 -1456h-239zM198 1597l6 26l298 241h137l202 -243l-5 -24h-190l-102 139l-157 -139h-189z" />
156
+ <glyph unicode="&#xcf;" horiz-adv-x="562" d="M76 0l291 1456h239l-291 -1456h-239zM175 1601l33 204h232l-33 -204h-232zM625 1601l33 204h233l-33 -204h-233z" />
157
+ <glyph unicode="&#xd0;" horiz-adv-x="1292" d="M82 657l34 170h144l126 629h407q245 0 395.5 -181.5t98.5 -446.5l-45 -221q-59 -294 -231.5 -450.5t-434.5 -156.5h-481l131 657h-144zM373 194h235q152 0 254.5 112.5t140.5 300.5l45 223q38 193 -46 312t-255 119h-161l-87 -434h231l-34 -170h-231z" />
158
+ <glyph unicode="&#xd1;" horiz-adv-x="1365" d="M65 0l291 1456h239l372 -1041h6l208 1041h239l-291 -1456h-239l-372 1042h-6l-208 -1042h-239zM585 1637q15 97 81 165t152 68q49 0 126.5 -44.5t126.5 -44.5q34 0 65 32t38 78l121 -39q-16 -98 -82.5 -163.5t-152.5 -65.5q-62 0 -133 44.5t-119 44.5q-34 0 -64.5 -32.5 t-37.5 -77.5z" />
159
+ <glyph unicode="&#xd2;" horiz-adv-x="1313" d="M135 603l52 262q57 287 226 449.5t415 162.5q235 0 378.5 -183.5t91.5 -441.5l-52 -262q-58 -287 -232.5 -449t-426.5 -162q-230 0 -367.5 182.5t-84.5 441.5zM373 603q-39 -192 33 -308.5t221 -116.5q138 0 241 114t140 298l53 264q37 190 -40.5 306.5t-232.5 116.5 q-132 0 -229.5 -114t-133.5 -296zM604 1847h269l128 -266h-191z" />
160
+ <glyph unicode="&#xd3;" horiz-adv-x="1313" d="M135 603l52 262q57 287 226 449.5t415 162.5q235 0 378.5 -183.5t91.5 -441.5l-52 -262q-58 -287 -232.5 -449t-426.5 -162q-230 0 -367.5 182.5t-84.5 441.5zM373 603q-39 -192 33 -308.5t221 -116.5q138 0 241 114t140 298l53 264q37 190 -40.5 306.5t-232.5 116.5 q-132 0 -229.5 -114t-133.5 -296zM776 1580l219 266h271l-304 -266h-186z" />
161
+ <glyph unicode="&#xd4;" horiz-adv-x="1313" d="M135 603l52 262q57 287 226 449.5t415 162.5q235 0 378.5 -183.5t91.5 -441.5l-52 -262q-58 -287 -232.5 -449t-426.5 -162q-230 0 -367.5 182.5t-84.5 441.5zM373 603q-39 -192 33 -308.5t221 -116.5q138 0 241 114t140 298l53 264q37 190 -40.5 306.5t-232.5 116.5 q-132 0 -229.5 -114t-133.5 -296zM578 1618l6 26l298 241h137l202 -243l-5 -24h-190l-102 139l-157 -139h-189z" />
162
+ <glyph unicode="&#xd5;" horiz-adv-x="1313" d="M135 603l52 262q57 287 226 449.5t415 162.5q235 0 378.5 -183.5t91.5 -441.5l-52 -262q-58 -287 -232.5 -449t-426.5 -162q-230 0 -367.5 182.5t-84.5 441.5zM373 603q-39 -192 33 -308.5t221 -116.5q138 0 241 114t140 298l53 264q37 190 -40.5 306.5t-232.5 116.5 q-132 0 -229.5 -114t-133.5 -296zM567 1658q15 97 81 165t152 68q49 0 126.5 -44.5t126.5 -44.5q34 0 65 32t38 78l121 -39q-16 -98 -82.5 -163.5t-152.5 -65.5q-62 0 -133 44.5t-119 44.5q-34 0 -64.5 -32.5t-37.5 -77.5z" />
163
+ <glyph unicode="&#xd6;" horiz-adv-x="1313" d="M135 603l52 262q57 287 226 449.5t415 162.5q235 0 378.5 -183.5t91.5 -441.5l-52 -262q-58 -287 -232.5 -449t-426.5 -162q-230 0 -367.5 182.5t-84.5 441.5zM373 603q-39 -192 33 -308.5t221 -116.5q138 0 241 114t140 298l53 264q37 190 -40.5 306.5t-232.5 116.5 q-132 0 -229.5 -114t-133.5 -296zM555 1622l33 204h232l-33 -204h-232zM1005 1622l33 204h233l-33 -204h-233z" />
164
+ <glyph unicode="&#xd7;" horiz-adv-x="1028" d="M63 364l357 321l-230 323l176 150l226 -319l355 319l115 -150l-360 -323l229 -321l-175 -150l-226 316l-352 -316z" />
165
+ <glyph unicode="&#xd8;" horiz-adv-x="1318" d="M54 -95l171 230q-69 85 -93.5 204.5t3.5 257.5l53 262q56 283 240 450.5t432 167.5q83 0 157 -26t133 -74l105 141h143l-169 -227q58 -85 77.5 -196.5t-4.5 -235.5l-53 -262q-57 -284 -245 -451t-442 -167q-72 0 -136 19.5t-117 57.5l-112 -151h-143zM358 454.5 q1 -65.5 17 -109.5l6 -1l635 853q-34 38 -83.5 59t-112.5 21q-134 0 -246 -119t-148 -297l-53 -264q-16 -77 -15 -142.5zM440 232q30 -27 70.5 -40.5t91.5 -13.5q140 0 256.5 119.5t152.5 299.5l53 264q12 61 13.5 114t-7.5 93l-6 2z" />
166
+ <glyph unicode="&#xd9;" horiz-adv-x="1310" d="M137 480l195 976h239l-195 -976q-33 -163 28.5 -235t196.5 -72q128 0 228 78t130 229l195 976h239l-195 -976q-52 -258 -221 -379.5t-415 -121.5q-220 0 -346.5 131.5t-78.5 369.5zM598 1826h269l128 -266h-191z" />
167
+ <glyph unicode="&#xda;" horiz-adv-x="1310" d="M137 480l195 976h239l-195 -976q-33 -163 28.5 -235t196.5 -72q128 0 228 78t130 229l195 976h239l-195 -976q-52 -258 -221 -379.5t-415 -121.5q-220 0 -346.5 131.5t-78.5 369.5zM770 1559l219 266h271l-304 -266h-186z" />
168
+ <glyph unicode="&#xdb;" horiz-adv-x="1310" d="M137 480l195 976h239l-195 -976q-33 -163 28.5 -235t196.5 -72q128 0 228 78t130 229l195 976h239l-195 -976q-52 -258 -221 -379.5t-415 -121.5q-220 0 -346.5 131.5t-78.5 369.5zM572 1597l6 26l298 241h137l202 -243l-5 -24h-190l-102 139l-157 -139h-189z" />
169
+ <glyph unicode="&#xdc;" horiz-adv-x="1310" d="M137 480l195 976h239l-195 -976q-33 -163 28.5 -235t196.5 -72q128 0 228 78t130 229l195 976h239l-195 -976q-52 -258 -221 -379.5t-415 -121.5q-220 0 -346.5 131.5t-78.5 369.5zM549 1601l33 204h232l-33 -204h-232zM999 1601l33 204h233l-33 -204h-233z" />
170
+ <glyph unicode="&#xdd;" horiz-adv-x="1207" d="M227 1456h267l174 -684l6 -1l451 685h266l-656 -947l-102 -509h-238l105 527zM720 1559l219 266h271l-304 -266h-186z" />
171
+ <glyph unicode="&#xde;" horiz-adv-x="1151" d="M54 0l291 1456h239l-56 -280h220q212 0 322 -123.5t73 -314.5q-43 -209 -190.5 -323.5t-379.5 -114.5h-220l-60 -300h-239zM392 495h220q113 0 192 71t99 170q22 110 -24.5 177.5t-169.5 67.5h-218l-2 2z" />
172
+ <glyph unicode="&#xdf;" horiz-adv-x="1182" d="M45 0l219 1093q47 239 184.5 356.5t333.5 117.5q151 0 240.5 -93t56.5 -263q-25 -125 -99.5 -223.5t-85.5 -158.5q-16 -77 105 -215t94 -275q-39 -192 -154.5 -276t-307.5 -84q-72 0 -148.5 17.5t-106.5 44.5l87 197q33 -25 84.5 -45t109.5 -20q78 0 129 42.5t65 111.5 q17 85 -105 220t-93 278q18 94 98 195.5t95 174.5q16 85 -17 131t-91 46q-76 0 -143.5 -75t-93.5 -206l-218 -1091h-238z" />
173
+ <glyph unicode="&#xe0;" horiz-adv-x="1048" d="M69 305q33 167 162 249.5t342 82.5h158l19 95q18 90 -16.5 135.5t-118.5 45.5q-71 0 -126 -40.5t-67 -102.5h-229l-2 6q22 136 155 231t321 95q166 0 262 -98t61 -274l-96 -481q-15 -72 -18.5 -131t4.5 -118h-242q-4 34 -4.5 67t2.5 66q-62 -67 -142.5 -110.5 t-166.5 -43.5q-143 0 -215.5 89.5t-42.5 236.5zM309 309q-14 -66 13.5 -100.5t96.5 -34.5q66 0 135 36t109 87l38 188h-162q-86 0 -151 -53t-79 -123zM396 1504h269l128 -266h-191z" />
174
+ <glyph unicode="&#xe1;" horiz-adv-x="1048" d="M69 305q33 167 162 249.5t342 82.5h158l19 95q18 90 -16.5 135.5t-118.5 45.5q-71 0 -126 -40.5t-67 -102.5h-229l-2 6q22 136 155 231t321 95q166 0 262 -98t61 -274l-96 -481q-15 -72 -18.5 -131t4.5 -118h-242q-4 34 -4.5 67t2.5 66q-62 -67 -142.5 -110.5 t-166.5 -43.5q-143 0 -215.5 89.5t-42.5 236.5zM309 309q-14 -66 13.5 -100.5t96.5 -34.5q66 0 135 36t109 87l38 188h-162q-86 0 -151 -53t-79 -123zM568 1237l219 266h271l-304 -266h-186z" />
175
+ <glyph unicode="&#xe2;" horiz-adv-x="1048" d="M69 305q33 167 162 249.5t342 82.5h158l19 95q18 90 -16.5 135.5t-118.5 45.5q-71 0 -126 -40.5t-67 -102.5h-229l-2 6q22 136 155 231t321 95q166 0 262 -98t61 -274l-96 -481q-15 -72 -18.5 -131t4.5 -118h-242q-4 34 -4.5 67t2.5 66q-62 -67 -142.5 -110.5 t-166.5 -43.5q-143 0 -215.5 89.5t-42.5 236.5zM309 309q-14 -66 13.5 -100.5t96.5 -34.5q66 0 135 36t109 87l38 188h-162q-86 0 -151 -53t-79 -123zM370 1275l6 26l298 241h137l202 -243l-5 -24h-190l-102 139l-157 -139h-189z" />
176
+ <glyph unicode="&#xe3;" horiz-adv-x="1048" d="M69 305q33 167 162 249.5t342 82.5h158l19 95q18 90 -16.5 135.5t-118.5 45.5q-71 0 -126 -40.5t-67 -102.5h-229l-2 6q22 136 155 231t321 95q166 0 262 -98t61 -274l-96 -481q-15 -72 -18.5 -131t4.5 -118h-242q-4 34 -4.5 67t2.5 66q-62 -67 -142.5 -110.5 t-166.5 -43.5q-143 0 -215.5 89.5t-42.5 236.5zM309 309q-14 -66 13.5 -100.5t96.5 -34.5q66 0 135 36t109 87l38 188h-162q-86 0 -151 -53t-79 -123zM359 1315q15 97 81 165t152 68q49 0 126.5 -44.5t126.5 -44.5q34 0 65 32t38 78l121 -39q-16 -98 -82.5 -163.5 t-152.5 -65.5q-62 0 -133 44.5t-119 44.5q-34 0 -64.5 -32.5t-37.5 -77.5z" />
177
+ <glyph unicode="&#xe4;" horiz-adv-x="1048" d="M69 305q33 167 162 249.5t342 82.5h158l19 95q18 90 -16.5 135.5t-118.5 45.5q-71 0 -126 -40.5t-67 -102.5h-229l-2 6q22 136 155 231t321 95q166 0 262 -98t61 -274l-96 -481q-15 -72 -18.5 -131t4.5 -118h-242q-4 34 -4.5 67t2.5 66q-62 -67 -142.5 -110.5 t-166.5 -43.5q-143 0 -215.5 89.5t-42.5 236.5zM309 309q-14 -66 13.5 -100.5t96.5 -34.5q66 0 135 36t109 87l38 188h-162q-86 0 -151 -53t-79 -123zM347 1279l33 204h232l-33 -204h-232zM797 1279l33 204h233l-33 -204h-233z" />
178
+ <glyph unicode="&#xe5;" horiz-adv-x="1048" d="M69 305q33 167 162 249.5t342 82.5h158l19 95q18 90 -16.5 135.5t-118.5 45.5q-71 0 -126 -40.5t-67 -102.5h-229l-2 6q22 136 155 231t321 95q166 0 262 -98t61 -274l-96 -481q-15 -72 -18.5 -131t4.5 -118h-242q-4 34 -4.5 67t2.5 66q-62 -67 -142.5 -110.5 t-166.5 -43.5q-143 0 -215.5 89.5t-42.5 236.5zM309 309q-14 -66 13.5 -100.5t96.5 -34.5q66 0 135 36t109 87l38 188h-162q-86 0 -151 -53t-79 -123zM515 1415q18 90 86.5 144t155.5 54q78 0 126.5 -57.5t32.5 -140.5q-19 -91 -85.5 -142.5t-151.5 -51.5q-80 0 -130.5 55 t-33.5 139zM621 1415q-9 -46 13 -73.5t63 -27.5q37 0 70.5 29t42.5 72q10 48 -11 76t-61 28q-38 0 -73 -30t-44 -74z" />
179
+ <glyph unicode="&#xe6;" horiz-adv-x="1618" d="M27 312q34 168 161 249t347 81h187l14 71q19 96 -12 145t-108 49q-76 0 -135.5 -45.5t-71.5 -109.5l-225 18l-2 6q26 150 155 238t320 88q90 0 162 -31.5t115 -91.5q70 61 155.5 92t180.5 31q188 0 278.5 -133.5t45.5 -356.5l-28 -141h-633q-22 -143 25.5 -220.5 t175.5 -77.5q85 0 152.5 24.5t147.5 67.5l38 -165q-61 -45 -163.5 -83t-227.5 -38q-115 0 -201.5 45.5t-135.5 128.5q-69 -74 -180 -124t-250 -50q-158 0 -237 91t-50 242zM267 308q-14 -69 17.5 -106.5t113.5 -37.5q55 0 130 36.5t122 84.5l38 190h-184q-90 0 -157 -49.5 t-80 -117.5zM976 648l3 -6h385l6 30q22 112 -10 173.5t-129 61.5q-86 0 -154 -72.5t-101 -186.5z" />
180
+ <glyph unicode="&#xe7;" horiz-adv-x="1012" d="M93 523l5 35q39 244 181.5 394t368.5 150q177 0 275.5 -114.5t66.5 -288.5l-2 -5h-218q15 93 -26 153t-127 60q-118 0 -187 -101t-93 -248l-5 -35q-26 -158 8.5 -254t159.5 -96q77 0 140 52.5t76 131.5h216l2 -6q-21 -159 -157 -265.5t-308 -106.5q-216 0 -315 155.5 t-61 388.5zM263 -444l19 130q51 0 89 22.5t48 66.5q9 47 -18 63.5t-101 21.5l58 139h174l-22 -54q55 -11 85.5 -52t15.5 -121q-22 -109 -110 -165t-233 -54z" />
181
+ <glyph unicode="&#xe8;" horiz-adv-x="1022" d="M101 516l6 40q39 245 188.5 396t341.5 150q199 0 289.5 -133.5t55.5 -354.5l-23 -143h-625q-14 -137 35 -217.5t163 -80.5q85 0 156 24.5t138 68.5l50 -159q-65 -54 -165 -91t-225 -37q-208 0 -315.5 152t-69.5 385zM359 1505h269l128 -266h-191zM373 654l2 -5h376l4 25 q16 107 -19 170t-130 63q-76 0 -139.5 -71.5t-93.5 -181.5z" />
182
+ <glyph unicode="&#xe9;" horiz-adv-x="1022" d="M101 516l6 40q39 245 188.5 396t341.5 150q199 0 289.5 -133.5t55.5 -354.5l-23 -143h-625q-14 -137 35 -217.5t163 -80.5q85 0 156 24.5t138 68.5l50 -159q-65 -54 -165 -91t-225 -37q-208 0 -315.5 152t-69.5 385zM373 654l2 -5h376l4 25q16 107 -19 170t-130 63 q-76 0 -139.5 -71.5t-93.5 -181.5zM531 1238l219 266h271l-304 -266h-186z" />
183
+ <glyph unicode="&#xea;" horiz-adv-x="1022" d="M101 516l6 40q39 245 188.5 396t341.5 150q199 0 289.5 -133.5t55.5 -354.5l-23 -143h-625q-14 -137 35 -217.5t163 -80.5q85 0 156 24.5t138 68.5l50 -159q-65 -54 -165 -91t-225 -37q-208 0 -315.5 152t-69.5 385zM333 1276l6 26l298 241h137l202 -243l-5 -24h-190 l-102 139l-157 -139h-189zM373 654l2 -5h376l4 25q16 107 -19 170t-130 63q-76 0 -139.5 -71.5t-93.5 -181.5z" />
184
+ <glyph unicode="&#xeb;" horiz-adv-x="1022" d="M101 516l6 40q39 245 188.5 396t341.5 150q199 0 289.5 -133.5t55.5 -354.5l-23 -143h-625q-14 -137 35 -217.5t163 -80.5q85 0 156 24.5t138 68.5l50 -159q-65 -54 -165 -91t-225 -37q-208 0 -315.5 152t-69.5 385zM310 1280l33 204h232l-33 -204h-232zM373 654l2 -5 h376l4 25q16 107 -19 170t-130 63q-76 0 -139.5 -71.5t-93.5 -181.5zM760 1280l33 204h233l-33 -204h-233z" />
185
+ <glyph unicode="&#xec;" horiz-adv-x="520" d="M50 0l216 1082h240l-216 -1082h-240zM131 1483h269l128 -266h-191z" />
186
+ <glyph unicode="&#xed;" horiz-adv-x="520" d="M50 0l216 1082h240l-216 -1082h-240zM301 1216l219 266h271l-304 -266h-186z" />
187
+ <glyph unicode="&#xee;" horiz-adv-x="520" d="M50 0l216 1082h240l-216 -1082h-240zM105 1254l6 26l298 241h137l202 -243l-5 -24h-190l-102 139l-157 -139h-189z" />
188
+ <glyph unicode="&#xef;" horiz-adv-x="520" d="M50 0l216 1082h240l-216 -1082h-240zM82 1258l33 204h232l-33 -204h-232zM532 1258l33 204h233l-33 -204h-233z" />
189
+ <glyph unicode="&#xf0;" horiz-adv-x="1137" d="M65 468q47 241 200 373t364 132q69 0 129 -28.5t100 -76.5l4 4q1 91 -20.5 164.5t-60.5 129.5l-264 -142l-54 109l227 122q-28 19 -59.5 35.5t-66.5 30.5l112 196q70 -20 131 -55t111 -83l226 122l54 -109l-202 -109q76 -119 98.5 -280t-15.5 -354l-18 -87 q-55 -274 -224 -428.5t-385 -154.5q-200 0 -314.5 143t-72.5 346zM305 468q-26 -128 24 -211.5t166 -83.5q105 0 199.5 111.5t127.5 277.5l18 89l5 26q-22 47 -81.5 77.5t-151.5 30.5q-104 0 -192.5 -92t-114.5 -225z" />
190
+ <glyph unicode="&#xf1;" d="M34 0l216 1082h219l-16 -144q65 79 147.5 121.5t174.5 42.5q147 0 219 -104.5t30 -317.5l-136 -680h-239l136 678q25 130 -8.5 177.5t-129.5 47.5q-59 0 -116 -32t-102 -88l-156 -783h-239zM383 1315q15 97 81 165t152 68q49 0 126.5 -44.5t126.5 -44.5q34 0 65 32t38 78 l121 -39q-16 -98 -82.5 -163.5t-152.5 -65.5q-62 0 -133 44.5t-119 44.5q-34 0 -64.5 -32.5t-37.5 -77.5z" />
191
+ <glyph unicode="&#xf2;" d="M97 530l3 21q40 251 186 401t364 150q209 0 312 -156t65 -395l-3 -21q-41 -253 -186.5 -402t-364.5 -149q-209 0 -312 155.5t-64 395.5zM336 530q-27 -165 12 -261t156 -96q109 0 182.5 100.5t98.5 256.5l3 21q25 162 -14 259t-155 97q-109 0 -182.5 -101.5t-97.5 -254.5 zM384 1504h269l128 -266h-191z" />
192
+ <glyph unicode="&#xf3;" d="M97 530l3 21q40 251 186 401t364 150q209 0 312 -156t65 -395l-3 -21q-41 -253 -186.5 -402t-364.5 -149q-209 0 -312 155.5t-64 395.5zM336 530q-27 -165 12 -261t156 -96q109 0 182.5 100.5t98.5 256.5l3 21q25 162 -14 259t-155 97q-109 0 -182.5 -101.5t-97.5 -254.5 zM556 1237l219 266h271l-304 -266h-186z" />
193
+ <glyph unicode="&#xf4;" d="M97 530l3 21q40 251 186 401t364 150q209 0 312 -156t65 -395l-3 -21q-41 -253 -186.5 -402t-364.5 -149q-209 0 -312 155.5t-64 395.5zM336 530q-27 -165 12 -261t156 -96q109 0 182.5 100.5t98.5 256.5l3 21q25 162 -14 259t-155 97q-109 0 -182.5 -101.5t-97.5 -254.5 zM358 1275l6 26l298 241h137l202 -243l-5 -24h-190l-102 139l-157 -139h-189z" />
194
+ <glyph unicode="&#xf5;" d="M97 530l3 21q40 251 186 401t364 150q209 0 312 -156t65 -395l-3 -21q-41 -253 -186.5 -402t-364.5 -149q-209 0 -312 155.5t-64 395.5zM336 530q-27 -165 12 -261t156 -96q109 0 182.5 100.5t98.5 256.5l3 21q25 162 -14 259t-155 97q-109 0 -182.5 -101.5t-97.5 -254.5 zM347 1315q15 97 81 165t152 68q49 0 126.5 -44.5t126.5 -44.5q34 0 65 32t38 78l121 -39q-16 -98 -82.5 -163.5t-152.5 -65.5q-62 0 -133 44.5t-119 44.5q-34 0 -64.5 -32.5t-37.5 -77.5z" />
195
+ <glyph unicode="&#xf6;" d="M97 530l3 21q40 251 186 401t364 150q209 0 312 -156t65 -395l-3 -21q-41 -253 -186.5 -402t-364.5 -149q-209 0 -312 155.5t-64 395.5zM335 1279l33 204h232l-33 -204h-232zM336 530q-27 -165 12 -261t156 -96q109 0 182.5 100.5t98.5 256.5l3 21q25 162 -14 259 t-155 97q-109 0 -182.5 -101.5t-97.5 -254.5zM785 1279l33 204h233l-33 -204h-233z" />
196
+ <glyph unicode="&#xf7;" horiz-adv-x="1098" d="M98 582l43 212h942l-43 -212h-942zM370 170l44 221h236l-44 -221h-236zM533 985l44 221h236l-44 -221h-236z" />
197
+ <glyph unicode="&#xf8;" horiz-adv-x="1093" d="M62 -138l143 218q-75 73 -103.5 190.5t-4.5 259.5l3 21q40 251 186 401t364 150q55 0 103.5 -12.5t91.5 -34.5l103 157h140l-152 -232q64 -75 87.5 -186.5t3.5 -242.5l-3 -21q-41 -253 -186.5 -402t-364.5 -149q-48 0 -91.5 9.5t-80.5 25.5l-100 -152h-139zM324 395.5 q1 -60.5 17 -98.5l6 -2l379 579q-21 16 -47.5 24.5t-59.5 8.5q-109 0 -182.5 -101.5t-97.5 -254.5l-3 -21q-13 -74 -12 -134.5zM417 192q17 -10 39 -14.5t48 -4.5q109 0 182.5 100.5t98.5 256.5l3 21q9 60 9.5 111t-7.5 86l-6 2z" />
198
+ <glyph unicode="&#xf9;" d="M118 435l129 647h238l-129 -649q-31 -152 -2.5 -204t114.5 -52q73 0 134.5 32.5t105.5 92.5l156 780h239l-216 -1082h-212l13 137q-63 -78 -142.5 -118t-173.5 -40q-153 0 -227 113t-27 343zM416 1483h269l128 -266h-191z" />
199
+ <glyph unicode="&#xfa;" d="M118 435l129 647h238l-129 -649q-31 -152 -2.5 -204t114.5 -52q73 0 134.5 32.5t105.5 92.5l156 780h239l-216 -1082h-212l13 137q-63 -78 -142.5 -118t-173.5 -40q-153 0 -227 113t-27 343zM588 1216l219 266h271l-304 -266h-186z" />
200
+ <glyph unicode="&#xfb;" d="M118 435l129 647h238l-129 -649q-31 -152 -2.5 -204t114.5 -52q73 0 134.5 32.5t105.5 92.5l156 780h239l-216 -1082h-212l13 137q-63 -78 -142.5 -118t-173.5 -40q-153 0 -227 113t-27 343zM390 1254l6 26l298 241h137l202 -243l-5 -24h-190l-102 139l-157 -139h-189z " />
201
+ <glyph unicode="&#xfc;" d="M118 435l129 647h238l-129 -649q-31 -152 -2.5 -204t114.5 -52q73 0 134.5 32.5t105.5 92.5l156 780h239l-216 -1082h-212l13 137q-63 -78 -142.5 -118t-173.5 -40q-153 0 -227 113t-27 343zM367 1258l33 204h232l-33 -204h-232zM817 1258l33 204h233l-33 -204h-233z" />
202
+ <glyph unicode="&#xfd;" horiz-adv-x="980" d="M-71 -417l64 188q12 -1 33.5 -3t33.5 -2q55 0 105 48.5t78 100.5l56 97l-150 1070h261l52 -648l1 -89l6 -1l359 738h262l-663 -1246q-63 -112 -152.5 -192.5t-223.5 -80.5q-27 0 -60 6.5t-62 13.5zM533 1216l219 266h271l-304 -266h-186z" />
203
+ <glyph unicode="&#xfe;" horiz-adv-x="1107" d="M-40 -416l83 416l16 83l200 999l96 478h239l-113 -567q55 52 120.5 80.5t138.5 28.5q175 0 259.5 -172t34.5 -424l-4 -21q-51 -252 -169 -379t-305 -127q-81 0 -146.5 31t-107.5 89l-20 -99l-83 -416h-239zM337 274q20 -49 65.5 -75t116.5 -26q105 0 174.5 83.5 t98.5 228.5l4 21q35 176 -3.5 286.5t-152.5 110.5q-59 0 -111 -35.5t-93 -96.5z" />
204
+ <glyph unicode="&#xff;" horiz-adv-x="980" d="M-71 -417l64 188q12 -1 33.5 -3t33.5 -2q55 0 105 48.5t78 100.5l56 97l-150 1070h261l52 -648l1 -89l6 -1l359 738h262l-663 -1246q-63 -112 -152.5 -192.5t-223.5 -80.5q-27 0 -60 6.5t-62 13.5zM312 1258l33 204h232l-33 -204h-232zM762 1258l33 204h233l-33 -204 h-233z" />
205
+ <glyph unicode="&#x152;" horiz-adv-x="1851" d="M128 576l61 304q56 282 235 439.5t428 157.5q59 0 127 -6t136 -15h841l-39 -195h-674l-82 -411h586l-39 -195h-586l-92 -461h681l-39 -194h-848q-87 -10 -147.5 -15.5t-121.5 -5.5q-228 0 -353.5 168.5t-73.5 428.5zM366 576q-42 -209 19 -305.5t209 -96.5q44 0 94.5 3.5 t101.5 11.5l215 1077q-51 7 -98 11.5t-94 4.5q-135 0 -241.5 -104.5t-144.5 -295.5z" />
206
+ <glyph unicode="&#x153;" horiz-adv-x="1725" d="M111 530l4 21q51 257 201 404t370 147q104 0 183.5 -44.5t126.5 -124.5q76 82 171 125.5t198 43.5q193 0 281 -135t45 -353l-29 -143h-626q-19 -140 26.5 -219t160.5 -79q83 0 157 25t140 68l45 -159q-68 -54 -169 -91t-226 -37q-105 0 -186 43t-129 123 q-76 -82 -175 -124t-216 -42q-203 0 -302 156.5t-51 394.5zM349 530q-34 -169 1.5 -263t152.5 -94q106 0 185 101.5t110 255.5l4 21q33 165 -2.5 260.5t-152.5 95.5q-106 0 -185 -102.5t-109 -253.5zM1082 655l3 -6h377l5 25q22 109 -11.5 171t-129.5 62q-72 0 -140 -72 t-104 -180z" />
207
+ <glyph unicode="&#x178;" horiz-adv-x="1207" d="M227 1456h267l174 -684l6 -1l451 685h266l-656 -947l-102 -509h-238l105 527zM499 1601l33 204h232l-33 -204h-232zM949 1601l33 204h233l-33 -204h-233z" />
208
+ <glyph unicode="&#x2c6;" horiz-adv-x="952" d="M314 1252l6 26l298 241h137l202 -243l-5 -24h-190l-102 139l-157 -139h-189z" />
209
+ <glyph unicode="&#x2dc;" horiz-adv-x="937" d="M262 1273q15 97 81 165t152 68q49 0 126.5 -44.5t126.5 -44.5q34 0 65 32t38 78l121 -39q-16 -98 -82.5 -163.5t-152.5 -65.5q-62 0 -133 44.5t-119 44.5q-34 0 -64.5 -32.5t-37.5 -77.5z" />
210
+ <glyph unicode="&#x2000;" horiz-adv-x="967" />
211
+ <glyph unicode="&#x2001;" horiz-adv-x="1935" />
212
+ <glyph unicode="&#x2002;" horiz-adv-x="967" />
213
+ <glyph unicode="&#x2003;" horiz-adv-x="1935" />
214
+ <glyph unicode="&#x2004;" horiz-adv-x="645" />
215
+ <glyph unicode="&#x2005;" horiz-adv-x="483" />
216
+ <glyph unicode="&#x2006;" horiz-adv-x="322" />
217
+ <glyph unicode="&#x2007;" horiz-adv-x="322" />
218
+ <glyph unicode="&#x2008;" horiz-adv-x="241" />
219
+ <glyph unicode="&#x2009;" horiz-adv-x="387" />
220
+ <glyph unicode="&#x200a;" horiz-adv-x="107" />
221
+ <glyph unicode="&#x2010;" horiz-adv-x="640" d="M91 521l39 196h492l-39 -196h-492z" />
222
+ <glyph unicode="&#x2011;" horiz-adv-x="640" d="M91 521l39 196h492l-39 -196h-492z" />
223
+ <glyph unicode="&#x2012;" horiz-adv-x="640" d="M91 521l39 196h492l-39 -196h-492z" />
224
+ <glyph unicode="&#x2013;" horiz-adv-x="1326" d="M212 621l51 196h1009l-51 -196h-1009z" />
225
+ <glyph unicode="&#x2014;" horiz-adv-x="1558" d="M199 621l62 196h1242l-63 -196h-1241z" />
226
+ <glyph unicode="&#x2018;" horiz-adv-x="401" d="M182 1015l38 188l228 357h116l-128 -358l-37 -187h-217z" />
227
+ <glyph unicode="&#x2019;" horiz-adv-x="401" d="M185 1016l125 348l39 196h218l-39 -194l-227 -350h-116z" />
228
+ <glyph unicode="&#x201a;" horiz-adv-x="402" d="M-73 -262l110 265l53 266h217l-50 -249l-207 -282h-123z" />
229
+ <glyph unicode="&#x201c;" horiz-adv-x="721" d="M182 1015l38 188l228 357h116l-128 -358l-37 -187h-217zM501 1015l38 188l228 357h116l-128 -358l-37 -187h-217z" />
230
+ <glyph unicode="&#x201d;" horiz-adv-x="729" d="M184 1016l125 348l39 196h218l-39 -194l-227 -350h-116zM509 1016l125 348l39 196h218l-39 -194l-227 -350h-116z" />
231
+ <glyph unicode="&#x201e;" horiz-adv-x="707" d="M-68 -233l116 295l46 228h210l-43 -217l-220 -306h-109zM244 -233l118 303l44 220h210l-43 -217l-220 -306h-109z" />
232
+ <glyph unicode="&#x2022;" horiz-adv-x="681" d="M190 724l15 77q20 101 88 158t165 57q90 0 138 -61t30 -154l-15 -77q-21 -102 -88 -157.5t-166 -55.5q-89 0 -137.5 60t-29.5 153z" />
233
+ <glyph unicode="&#x2026;" horiz-adv-x="1368" d="M61 0l47 233h236l-47 -233h-236zM492 0l47 233h236l-47 -233h-236zM908 0l47 233h236l-47 -233h-236z" />
234
+ <glyph unicode="&#x202f;" horiz-adv-x="387" />
235
+ <glyph unicode="&#x2039;" horiz-adv-x="594" d="M128 541l1 6l3 13l346 390h162l-307 -400l147 -399h-162z" />
236
+ <glyph unicode="&#x203a;" horiz-adv-x="585" d="M27 151l306 399l-146 400h162l189 -390l-2 -6h1l-3 -13l-345 -390h-162z" />
237
+ <glyph unicode="&#x205f;" horiz-adv-x="483" />
238
+ <glyph unicode="&#x20ac;" horiz-adv-x="1037" d="M81 456l38 195h133l26 130h-133l41 195h133l3 12q41 217 202 353t388 136q52 0 108.5 -8.5t113.5 -22.5l-60 -199q-47 16 -97.5 25.5t-103.5 9.5q-111 0 -201.5 -91t-110.5 -201l-3 -14h419l-41 -195h-419l-26 -130h419l-38 -195h-419v-2q-26 -120 26.5 -200.5 t174.5 -80.5q50 0 105.5 8.5t106.5 25.5l-19 -197q-57 -15 -115.5 -23t-116.5 -8q-209 0 -325 141.5t-76 333.5v2h-133z" />
239
+ <glyph unicode="&#x2122;" horiz-adv-x="1212" d="M286 1361l19 95h364l-19 -95h-127l-88 -443h-113l88 443h-124zM629 916l108 540h132l54 -372l6 -1l203 373h126l-108 -540h-106l61 307l-5 2l-179 -309h-57l-57 320h-6l-64 -320h-108z" />
240
+ <glyph unicode="&#xe000;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
241
+ <glyph unicode="&#xfb02;" horiz-adv-x="1195" d="M116 0l180 902h-152l36 180h152l26 126q37 190 146 281.5t278 91.5q32 0 66 -6t73 -15l-61 -188q-17 4 -39.5 7t-48.5 3q-67 0 -113 -45.5t-62 -128.5l-26 -126h200l-36 -180h-200l-180 -902h-239zM735 0l312 1560h239l-312 -1560h-239z" />
242
+ <glyph unicode="&#xfb03;" horiz-adv-x="1811" d="M116 0l180 902h-152l36 180h152l26 126q37 190 146 281.5t278 91.5q32 0 66 -6t73 -15l-61 -188q-17 4 -39.5 7t-48.5 3q-67 0 -113 -45.5t-62 -128.5l-26 -126h200l-36 -180h-200l-180 -902h-239zM775 0l180 902h-152l36 180h152l19 92q41 208 168 307.5t328 99.5 q64 0 130.5 -16t144.5 -44l-77 -201q-50 21 -104.5 34.5t-118.5 13.5q-94 0 -153.5 -49.5t-78.5 -144.5l-19 -92h193l-36 -180h-193l-180 -902h-239zM1350 0l216 1082h239l-216 -1082h-239z" />
243
+ <glyph unicode="&#xfb04;" horiz-adv-x="1879" d="M116 0l180 902h-152l36 180h152l26 126q37 190 146 281.5t278 91.5q32 0 66 -6t73 -15l-61 -188q-17 4 -39.5 7t-48.5 3q-67 0 -113 -45.5t-62 -128.5l-26 -126h200l-36 -180h-200l-180 -902h-239zM800 0l180 902h-152l36 180h152l26 126q37 190 146 281.5t278 91.5 q32 0 66 -6t73 -15l-61 -188q-17 4 -39.5 7t-48.5 3q-67 0 -113 -45.5t-62 -128.5l-26 -126h200l-36 -180h-200l-180 -902h-239zM1419 0l312 1560h239l-312 -1560h-239z" />
244
+ <hkern u1="&#x22;" u2="w" k="-11" />
245
+ <hkern u1="&#x27;" u2="w" k="-11" />
246
+ <hkern u1="&#x28;" u2="&#x178;" k="-22" />
247
+ <hkern u1="&#x28;" u2="&#xdd;" k="-22" />
248
+ <hkern u1="&#x28;" u2="Y" k="-22" />
249
+ <hkern u1="&#x28;" u2="W" k="-38" />
250
+ <hkern u1="&#x28;" u2="V" k="-20" />
251
+ <hkern u1="&#x2f;" u2="&#x2f;" k="248" />
252
+ <hkern u1="A" u2="w" k="33" />
253
+ <hkern u1="A" u2="t" k="17" />
254
+ <hkern u1="A" u2="&#x3f;" k="81" />
255
+ <hkern u1="C" u2="&#x7d;" k="17" />
256
+ <hkern u1="C" u2="]" k="12" />
257
+ <hkern u1="C" u2="&#x29;" k="26" />
258
+ <hkern u1="D" u2="&#xc6;" k="33" />
259
+ <hkern u1="E" u2="w" k="22" />
260
+ <hkern u1="E" u2="f" k="18" />
261
+ <hkern u1="F" u2="&#x2026;" k="274" />
262
+ <hkern u1="F" u2="&#x201e;" k="274" />
263
+ <hkern u1="F" u2="&#x201a;" k="274" />
264
+ <hkern u1="F" u2="&#x153;" k="21" />
265
+ <hkern u1="F" u2="&#xff;" k="24" />
266
+ <hkern u1="F" u2="&#xfd;" k="24" />
267
+ <hkern u1="F" u2="&#xfc;" k="22" />
268
+ <hkern u1="F" u2="&#xfb;" k="22" />
269
+ <hkern u1="F" u2="&#xfa;" k="22" />
270
+ <hkern u1="F" u2="&#xf9;" k="22" />
271
+ <hkern u1="F" u2="&#xf6;" k="21" />
272
+ <hkern u1="F" u2="&#xf5;" k="21" />
273
+ <hkern u1="F" u2="&#xf4;" k="21" />
274
+ <hkern u1="F" u2="&#xf3;" k="21" />
275
+ <hkern u1="F" u2="&#xf2;" k="21" />
276
+ <hkern u1="F" u2="&#xeb;" k="21" />
277
+ <hkern u1="F" u2="&#xea;" k="21" />
278
+ <hkern u1="F" u2="&#xe9;" k="21" />
279
+ <hkern u1="F" u2="&#xe8;" k="21" />
280
+ <hkern u1="F" u2="&#xe7;" k="21" />
281
+ <hkern u1="F" u2="&#xe5;" k="34" />
282
+ <hkern u1="F" u2="&#xe4;" k="34" />
283
+ <hkern u1="F" u2="&#xe3;" k="34" />
284
+ <hkern u1="F" u2="&#xe2;" k="34" />
285
+ <hkern u1="F" u2="&#xe1;" k="34" />
286
+ <hkern u1="F" u2="&#xe0;" k="34" />
287
+ <hkern u1="F" u2="&#xc5;" k="59" />
288
+ <hkern u1="F" u2="&#xc4;" k="59" />
289
+ <hkern u1="F" u2="&#xc3;" k="59" />
290
+ <hkern u1="F" u2="&#xc2;" k="59" />
291
+ <hkern u1="F" u2="&#xc1;" k="59" />
292
+ <hkern u1="F" u2="&#xc0;" k="59" />
293
+ <hkern u1="F" u2="y" k="24" />
294
+ <hkern u1="F" u2="v" k="24" />
295
+ <hkern u1="F" u2="u" k="22" />
296
+ <hkern u1="F" u2="r" k="26" />
297
+ <hkern u1="F" u2="q" k="21" />
298
+ <hkern u1="F" u2="o" k="21" />
299
+ <hkern u1="F" u2="g" k="21" />
300
+ <hkern u1="F" u2="e" k="21" />
301
+ <hkern u1="F" u2="d" k="21" />
302
+ <hkern u1="F" u2="c" k="21" />
303
+ <hkern u1="F" u2="a" k="34" />
304
+ <hkern u1="F" u2="T" k="-20" />
305
+ <hkern u1="F" u2="J" k="208" />
306
+ <hkern u1="F" u2="A" k="59" />
307
+ <hkern u1="F" u2="&#x2e;" k="274" />
308
+ <hkern u1="F" u2="&#x2c;" k="274" />
309
+ <hkern u1="K" u2="w" k="63" />
310
+ <hkern u1="L" u2="w" k="52" />
311
+ <hkern u1="O" u2="&#xc6;" k="33" />
312
+ <hkern u1="P" u2="&#xc6;" k="297" />
313
+ <hkern u1="P" u2="t" k="-14" />
314
+ <hkern u1="Q" u2="&#x178;" k="35" />
315
+ <hkern u1="Q" u2="&#xdd;" k="35" />
316
+ <hkern u1="Q" u2="Y" k="35" />
317
+ <hkern u1="Q" u2="W" k="20" />
318
+ <hkern u1="Q" u2="V" k="28" />
319
+ <hkern u1="Q" u2="T" k="33" />
320
+ <hkern u1="R" u2="&#x178;" k="48" />
321
+ <hkern u1="R" u2="&#xdd;" k="48" />
322
+ <hkern u1="R" u2="Y" k="48" />
323
+ <hkern u1="R" u2="V" k="19" />
324
+ <hkern u1="R" u2="T" k="50" />
325
+ <hkern u1="T" u2="&#xf8;" k="95" />
326
+ <hkern u1="T" u2="&#xe6;" k="84" />
327
+ <hkern u1="T" u2="&#xc6;" k="189" />
328
+ <hkern u1="T" u2="&#xbb;" k="146" />
329
+ <hkern u1="T" u2="&#xab;" k="148" />
330
+ <hkern u1="T" u2="w" k="47" />
331
+ <hkern u1="T" u2="r" k="65" />
332
+ <hkern u1="V" u2="&#x7d;" k="-19" />
333
+ <hkern u1="V" u2="r" k="30" />
334
+ <hkern u1="V" u2="]" k="-17" />
335
+ <hkern u1="V" u2="&#x29;" k="-20" />
336
+ <hkern u1="W" u2="&#x7d;" k="-14" />
337
+ <hkern u1="W" u2="r" k="21" />
338
+ <hkern u1="W" u2="]" k="-12" />
339
+ <hkern u1="W" u2="&#x29;" k="-15" />
340
+ <hkern u1="Y" u2="&#x2022;" k="45" />
341
+ <hkern u1="Y" u2="&#xf8;" k="64" />
342
+ <hkern u1="Y" u2="&#xe6;" k="63" />
343
+ <hkern u1="Y" u2="&#xc6;" k="96" />
344
+ <hkern u1="Y" u2="&#xbb;" k="51" />
345
+ <hkern u1="Y" u2="&#xab;" k="82" />
346
+ <hkern u1="Y" u2="&#x7d;" k="-19" />
347
+ <hkern u1="Y" u2="t" k="22" />
348
+ <hkern u1="Y" u2="r" k="40" />
349
+ <hkern u1="Y" u2="f" k="22" />
350
+ <hkern u1="Y" u2="]" k="-18" />
351
+ <hkern u1="Y" u2="&#x2a;" k="49" />
352
+ <hkern u1="Y" u2="&#x29;" k="-20" />
353
+ <hkern u1="Y" u2="&#x26;" k="30" />
354
+ <hkern u1="Z" u2="w" k="27" />
355
+ <hkern u1="[" u2="&#xdc;" k="18" />
356
+ <hkern u1="[" u2="&#xdb;" k="18" />
357
+ <hkern u1="[" u2="&#xda;" k="18" />
358
+ <hkern u1="[" u2="&#xd9;" k="18" />
359
+ <hkern u1="[" u2="U" k="18" />
360
+ <hkern u1="[" u2="J" k="18" />
361
+ <hkern u1="f" u2="&#x201d;" k="-16" />
362
+ <hkern u1="f" u2="&#x201c;" k="-16" />
363
+ <hkern u1="f" u2="&#x2019;" k="-16" />
364
+ <hkern u1="f" u2="&#x2018;" k="-16" />
365
+ <hkern u1="f" u2="&#x153;" k="24" />
366
+ <hkern u1="f" u2="&#xeb;" k="24" />
367
+ <hkern u1="f" u2="&#xea;" k="24" />
368
+ <hkern u1="f" u2="&#xe9;" k="24" />
369
+ <hkern u1="f" u2="&#xe8;" k="24" />
370
+ <hkern u1="f" u2="&#xe7;" k="24" />
371
+ <hkern u1="f" u2="&#x7d;" k="-19" />
372
+ <hkern u1="f" u2="q" k="24" />
373
+ <hkern u1="f" u2="g" k="24" />
374
+ <hkern u1="f" u2="e" k="24" />
375
+ <hkern u1="f" u2="d" k="24" />
376
+ <hkern u1="f" u2="c" k="24" />
377
+ <hkern u1="f" u2="]" k="-18" />
378
+ <hkern u1="f" u2="&#x29;" k="-20" />
379
+ <hkern u1="f" u2="&#x27;" k="-16" />
380
+ <hkern u1="f" u2="&#x22;" k="-16" />
381
+ <hkern u1="k" u2="&#x153;" k="20" />
382
+ <hkern u1="k" u2="&#xeb;" k="20" />
383
+ <hkern u1="k" u2="&#xea;" k="20" />
384
+ <hkern u1="k" u2="&#xe9;" k="20" />
385
+ <hkern u1="k" u2="&#xe8;" k="20" />
386
+ <hkern u1="k" u2="&#xe7;" k="20" />
387
+ <hkern u1="k" u2="q" k="20" />
388
+ <hkern u1="k" u2="g" k="20" />
389
+ <hkern u1="k" u2="e" k="20" />
390
+ <hkern u1="k" u2="d" k="20" />
391
+ <hkern u1="k" u2="c" k="20" />
392
+ <hkern u1="r" u2="w" k="-17" />
393
+ <hkern u1="r" u2="t" k="-24" />
394
+ <hkern u1="r" u2="f" k="-20" />
395
+ <hkern u1="t" u2="&#xf6;" k="30" />
396
+ <hkern u1="t" u2="&#xf5;" k="30" />
397
+ <hkern u1="t" u2="&#xf4;" k="30" />
398
+ <hkern u1="t" u2="&#xf3;" k="30" />
399
+ <hkern u1="t" u2="&#xf2;" k="30" />
400
+ <hkern u1="t" u2="o" k="30" />
401
+ <hkern u1="v" u2="f" k="-13" />
402
+ <hkern u1="w" u2="&#x2026;" k="124" />
403
+ <hkern u1="w" u2="&#x201e;" k="124" />
404
+ <hkern u1="w" u2="&#x201a;" k="124" />
405
+ <hkern u1="w" u2="&#x2e;" k="124" />
406
+ <hkern u1="w" u2="&#x2c;" k="124" />
407
+ <hkern u1="y" u2="f" k="-13" />
408
+ <hkern u1="&#x7b;" u2="&#xdc;" k="20" />
409
+ <hkern u1="&#x7b;" u2="&#xdb;" k="20" />
410
+ <hkern u1="&#x7b;" u2="&#xda;" k="20" />
411
+ <hkern u1="&#x7b;" u2="&#xd9;" k="20" />
412
+ <hkern u1="&#x7b;" u2="U" k="20" />
413
+ <hkern u1="&#x7b;" u2="J" k="20" />
414
+ <hkern u1="&#xc0;" u2="w" k="33" />
415
+ <hkern u1="&#xc0;" u2="t" k="17" />
416
+ <hkern u1="&#xc0;" u2="&#x3f;" k="81" />
417
+ <hkern u1="&#xc1;" u2="w" k="33" />
418
+ <hkern u1="&#xc1;" u2="t" k="17" />
419
+ <hkern u1="&#xc1;" u2="&#x3f;" k="81" />
420
+ <hkern u1="&#xc2;" u2="w" k="33" />
421
+ <hkern u1="&#xc2;" u2="t" k="17" />
422
+ <hkern u1="&#xc2;" u2="&#x3f;" k="81" />
423
+ <hkern u1="&#xc3;" u2="w" k="33" />
424
+ <hkern u1="&#xc3;" u2="t" k="17" />
425
+ <hkern u1="&#xc3;" u2="&#x3f;" k="81" />
426
+ <hkern u1="&#xc4;" u2="w" k="33" />
427
+ <hkern u1="&#xc4;" u2="t" k="17" />
428
+ <hkern u1="&#xc4;" u2="&#x3f;" k="81" />
429
+ <hkern u1="&#xc5;" u2="w" k="33" />
430
+ <hkern u1="&#xc5;" u2="t" k="17" />
431
+ <hkern u1="&#xc5;" u2="&#x3f;" k="81" />
432
+ <hkern u1="&#xc7;" u2="&#x7d;" k="17" />
433
+ <hkern u1="&#xc7;" u2="]" k="12" />
434
+ <hkern u1="&#xc7;" u2="&#x29;" k="26" />
435
+ <hkern u1="&#xc8;" u2="w" k="22" />
436
+ <hkern u1="&#xc8;" u2="f" k="18" />
437
+ <hkern u1="&#xc9;" u2="w" k="22" />
438
+ <hkern u1="&#xc9;" u2="f" k="18" />
439
+ <hkern u1="&#xca;" u2="w" k="22" />
440
+ <hkern u1="&#xca;" u2="f" k="18" />
441
+ <hkern u1="&#xcb;" u2="w" k="22" />
442
+ <hkern u1="&#xcb;" u2="f" k="18" />
443
+ <hkern u1="&#xd0;" u2="&#xc6;" k="33" />
444
+ <hkern u1="&#xd2;" u2="&#xc6;" k="33" />
445
+ <hkern u1="&#xd3;" u2="&#xc6;" k="33" />
446
+ <hkern u1="&#xd4;" u2="&#xc6;" k="33" />
447
+ <hkern u1="&#xd5;" u2="&#xc6;" k="33" />
448
+ <hkern u1="&#xd6;" u2="&#xc6;" k="33" />
449
+ <hkern u1="&#xdd;" u2="&#x2022;" k="45" />
450
+ <hkern u1="&#xdd;" u2="&#xf8;" k="64" />
451
+ <hkern u1="&#xdd;" u2="&#xe6;" k="63" />
452
+ <hkern u1="&#xdd;" u2="&#xc6;" k="96" />
453
+ <hkern u1="&#xdd;" u2="&#xbb;" k="51" />
454
+ <hkern u1="&#xdd;" u2="&#xab;" k="82" />
455
+ <hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
456
+ <hkern u1="&#xdd;" u2="t" k="22" />
457
+ <hkern u1="&#xdd;" u2="r" k="40" />
458
+ <hkern u1="&#xdd;" u2="f" k="22" />
459
+ <hkern u1="&#xdd;" u2="]" k="-18" />
460
+ <hkern u1="&#xdd;" u2="&#x2a;" k="49" />
461
+ <hkern u1="&#xdd;" u2="&#x29;" k="-20" />
462
+ <hkern u1="&#xdd;" u2="&#x26;" k="30" />
463
+ <hkern u1="&#xfd;" u2="f" k="-13" />
464
+ <hkern u1="&#xff;" u2="f" k="-13" />
465
+ <hkern u1="&#x178;" u2="&#x2022;" k="45" />
466
+ <hkern u1="&#x178;" u2="&#xf8;" k="64" />
467
+ <hkern u1="&#x178;" u2="&#xe6;" k="63" />
468
+ <hkern u1="&#x178;" u2="&#xc6;" k="96" />
469
+ <hkern u1="&#x178;" u2="&#xbb;" k="51" />
470
+ <hkern u1="&#x178;" u2="&#xab;" k="82" />
471
+ <hkern u1="&#x178;" u2="&#x7d;" k="-19" />
472
+ <hkern u1="&#x178;" u2="t" k="22" />
473
+ <hkern u1="&#x178;" u2="r" k="40" />
474
+ <hkern u1="&#x178;" u2="f" k="22" />
475
+ <hkern u1="&#x178;" u2="]" k="-18" />
476
+ <hkern u1="&#x178;" u2="&#x2a;" k="49" />
477
+ <hkern u1="&#x178;" u2="&#x29;" k="-20" />
478
+ <hkern u1="&#x178;" u2="&#x26;" k="30" />
479
+ <hkern u1="&#x2018;" u2="w" k="-11" />
480
+ <hkern u1="&#x2019;" u2="w" k="-11" />
481
+ <hkern u1="&#x201c;" u2="w" k="-11" />
482
+ <hkern u1="&#x201d;" u2="w" k="-11" />
483
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="285" />
484
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
485
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="m,n,p,ntilde" k="48" />
486
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
487
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="11" />
488
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="89" />
489
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="17" />
490
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="77" />
491
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="39" />
492
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="150" />
493
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="11" />
494
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="50" />
495
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="z" k="-12" />
496
+ <hkern g1="B" g2="T" k="27" />
497
+ <hkern g1="B" g2="V" k="24" />
498
+ <hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
499
+ <hkern g1="C,Ccedilla" g2="T" k="29" />
500
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
501
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
502
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
503
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
504
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="122" />
505
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
506
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
507
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
508
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
509
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
510
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
511
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
512
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
513
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
514
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
515
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
516
+ <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
517
+ <hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
518
+ <hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
519
+ <hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
520
+ <hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
521
+ <hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
522
+ <hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="164" />
523
+ <hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="258" />
524
+ <hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
525
+ <hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
526
+ <hkern g1="L" g2="T" k="205" />
527
+ <hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="24" />
528
+ <hkern g1="L" g2="V" k="206" />
529
+ <hkern g1="L" g2="W" k="93" />
530
+ <hkern g1="L" g2="Y,Yacute,Ydieresis" k="279" />
531
+ <hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="14" />
532
+ <hkern g1="L" g2="v,y,yacute,ydieresis" k="123" />
533
+ <hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="178" />
534
+ <hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
535
+ <hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
536
+ <hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
537
+ <hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
538
+ <hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="404" />
539
+ <hkern g1="P" g2="X" k="51" />
540
+ <hkern g1="P" g2="Z" k="36" />
541
+ <hkern g1="P" g2="J" k="184" />
542
+ <hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="109" />
543
+ <hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="83" />
544
+ <hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="89" />
545
+ <hkern g1="T" g2="m,n,p,ntilde" k="89" />
546
+ <hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="79" />
547
+ <hkern g1="T" g2="s" k="76" />
548
+ <hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
549
+ <hkern g1="T" g2="T" k="-16" />
550
+ <hkern g1="T" g2="V" k="-16" />
551
+ <hkern g1="T" g2="W" k="-15" />
552
+ <hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
553
+ <hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="65" />
554
+ <hkern g1="T" g2="v,y,yacute,ydieresis" k="82" />
555
+ <hkern g1="T" g2="z" k="60" />
556
+ <hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="258" />
557
+ <hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="272" />
558
+ <hkern g1="T" g2="J" k="216" />
559
+ <hkern g1="T" g2="S" k="16" />
560
+ <hkern g1="T" g2="x" k="77" />
561
+ <hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
562
+ <hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
563
+ <hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
564
+ <hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
565
+ <hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
566
+ <hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
567
+ <hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
568
+ <hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="215" />
569
+ <hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="157" />
570
+ <hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
571
+ <hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
572
+ <hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
573
+ <hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
574
+ <hkern g1="W" g2="T" k="-14" />
575
+ <hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
576
+ <hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="143" />
577
+ <hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
578
+ <hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
579
+ <hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
580
+ <hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
581
+ <hkern g1="X" g2="V" k="-14" />
582
+ <hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
583
+ <hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
584
+ <hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="156" />
585
+ <hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="150" />
586
+ <hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="63" />
587
+ <hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
588
+ <hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
589
+ <hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
590
+ <hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
591
+ <hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
592
+ <hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
593
+ <hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
594
+ <hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
595
+ <hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
596
+ <hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
597
+ <hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
598
+ <hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
599
+ <hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
600
+ <hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="231" />
601
+ <hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
602
+ <hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="152" />
603
+ <hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
604
+ <hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
605
+ <hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
606
+ <hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
607
+ <hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
608
+ <hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
609
+ <hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
610
+ <hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
611
+ <hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
612
+ <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="17" />
613
+ <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
614
+ <hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
615
+ <hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
616
+ <hkern g1="b,p,thorn" g2="z" k="15" />
617
+ <hkern g1="b,p,thorn" g2="x" k="15" />
618
+ <hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
619
+ <hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
620
+ <hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
621
+ <hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
622
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
623
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
624
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
625
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
626
+ <hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
627
+ <hkern g1="r" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="20" />
628
+ <hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
629
+ <hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
630
+ <hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
631
+ <hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="173" />
632
+ <hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
633
+ <hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
634
+ <hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
635
+ <hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
636
+ <hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="167" />
637
+ <hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
638
+ <hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="40" />
639
+ <hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
640
+ <hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
641
+ </font>
642
+ </defs></svg>