ext_yarn 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (618) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +125 -0
  3. data/.ruby-version +1 -0
  4. data/Gemfile +21 -0
  5. data/Gemfile.lock +78 -0
  6. data/MIT-LICENSE +20 -0
  7. data/README.md +3 -0
  8. data/bin/yarn +12 -0
  9. data/ext_yarn.gemspec +23 -0
  10. data/lib/ext_yarn/engine.rb +21 -0
  11. data/lib/ext_yarn/version.rb +3 -0
  12. data/lib/ext_yarn.rb +5 -0
  13. data/node_modules/.yarn-integrity +64 -0
  14. data/node_modules/bootstrap-sass/LICENSE +22 -0
  15. data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/affix.js +162 -0
  16. data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/alert.js +94 -0
  17. data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/button.js +125 -0
  18. data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/carousel.js +237 -0
  19. data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/collapse.js +212 -0
  20. data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/dropdown.js +165 -0
  21. data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/modal.js +339 -0
  22. data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/popover.js +108 -0
  23. data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/scrollspy.js +172 -0
  24. data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/tab.js +155 -0
  25. data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/tooltip.js +520 -0
  26. data/node_modules/bootstrap-sass/assets/javascripts/bootstrap/transition.js +59 -0
  27. data/node_modules/bootstrap-sass/assets/javascripts/bootstrap-sprockets.js +12 -0
  28. data/node_modules/bootstrap-sass/assets/javascripts/bootstrap.js +2377 -0
  29. data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap-compass.scss +9 -0
  30. data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap-mincer.scss +19 -0
  31. data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
  32. data/node_modules/bootstrap-sass/assets/stylesheets/_bootstrap.scss +56 -0
  33. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_alerts.scss +73 -0
  34. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_badges.scss +68 -0
  35. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_breadcrumbs.scss +28 -0
  36. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_button-groups.scss +244 -0
  37. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_buttons.scss +168 -0
  38. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_carousel.scss +270 -0
  39. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_close.scss +36 -0
  40. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_code.scss +69 -0
  41. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_component-animations.scss +37 -0
  42. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_dropdowns.scss +216 -0
  43. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_forms.scss +617 -0
  44. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_glyphicons.scss +307 -0
  45. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_grid.scss +84 -0
  46. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_input-groups.scss +171 -0
  47. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_jumbotron.scss +54 -0
  48. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_labels.scss +66 -0
  49. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_list-group.scss +130 -0
  50. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_media.scss +66 -0
  51. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_mixins.scss +40 -0
  52. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_modals.scss +150 -0
  53. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navbar.scss +662 -0
  54. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_navs.scss +242 -0
  55. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_normalize.scss +424 -0
  56. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_pager.scss +54 -0
  57. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_pagination.scss +89 -0
  58. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_panels.scss +271 -0
  59. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_popovers.scss +131 -0
  60. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_print.scss +101 -0
  61. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
  62. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
  63. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_responsive-utilities.scss +179 -0
  64. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_scaffolding.scss +161 -0
  65. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_tables.scss +234 -0
  66. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_theme.scss +291 -0
  67. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
  68. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_tooltip.scss +101 -0
  69. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_type.scss +298 -0
  70. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_utilities.scss +55 -0
  71. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss +874 -0
  72. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_wells.scss +29 -0
  73. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
  74. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_background-variant.scss +12 -0
  75. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
  76. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_buttons.scss +65 -0
  77. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
  78. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
  79. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
  80. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
  81. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
  82. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
  83. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
  84. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_image.scss +33 -0
  85. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
  86. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_list-group.scss +32 -0
  87. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
  88. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  89. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
  90. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_pagination.scss +24 -0
  91. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
  92. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
  93. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
  94. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_reset-text.scss +18 -0
  95. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  96. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
  97. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
  98. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
  99. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
  100. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +12 -0
  101. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
  102. data/node_modules/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  103. data/node_modules/bootstrap-sass/package.json +44 -0
  104. data/node_modules/bootswatch/cerulean/_bootswatch.scss +131 -0
  105. data/node_modules/bootswatch/cerulean/_variables.scss +870 -0
  106. data/node_modules/bootswatch/cosmo/_bootswatch.scss +262 -0
  107. data/node_modules/bootswatch/cosmo/_variables.scss +870 -0
  108. data/node_modules/bootswatch/cyborg/_bootswatch.scss +243 -0
  109. data/node_modules/bootswatch/cyborg/_variables.scss +870 -0
  110. data/node_modules/bootswatch/darkly/_bootswatch.scss +351 -0
  111. data/node_modules/bootswatch/darkly/_variables.scss +870 -0
  112. data/node_modules/bootswatch/flatly/_bootswatch.scss +330 -0
  113. data/node_modules/bootswatch/flatly/_variables.scss +870 -0
  114. data/node_modules/bootswatch/journal/_bootswatch.scss +145 -0
  115. data/node_modules/bootswatch/journal/_variables.scss +870 -0
  116. data/node_modules/bootswatch/lumen/_bootswatch.scss +523 -0
  117. data/node_modules/bootswatch/lumen/_variables.scss +870 -0
  118. data/node_modules/bootswatch/package.json +26 -0
  119. data/node_modules/bootswatch/paper/_bootswatch.scss +620 -0
  120. data/node_modules/bootswatch/paper/_variables.scss +870 -0
  121. data/node_modules/bootswatch/readable/_bootswatch.scss +183 -0
  122. data/node_modules/bootswatch/readable/_variables.scss +870 -0
  123. data/node_modules/bootswatch/sandstone/_bootswatch.scss +196 -0
  124. data/node_modules/bootswatch/sandstone/_variables.scss +870 -0
  125. data/node_modules/bootswatch/simplex/_bootswatch.scss +170 -0
  126. data/node_modules/bootswatch/simplex/_variables.scss +870 -0
  127. data/node_modules/bootswatch/slate/_bootswatch.scss +448 -0
  128. data/node_modules/bootswatch/slate/_variables.scss +870 -0
  129. data/node_modules/bootswatch/spacelab/_bootswatch.scss +142 -0
  130. data/node_modules/bootswatch/spacelab/_variables.scss +870 -0
  131. data/node_modules/bootswatch/superhero/_bootswatch.scss +360 -0
  132. data/node_modules/bootswatch/superhero/_variables.scss +870 -0
  133. data/node_modules/bootswatch/united/_bootswatch.scss +56 -0
  134. data/node_modules/bootswatch/united/_variables.scss +870 -0
  135. data/node_modules/bootswatch/yeti/_bootswatch.scss +445 -0
  136. data/node_modules/bootswatch/yeti/_variables.scss +870 -0
  137. data/node_modules/chart.js/dist/Chart.bundle.js +18919 -0
  138. data/node_modules/chart.js/dist/Chart.js +14384 -0
  139. data/node_modules/chart.js/package.json +57 -0
  140. data/node_modules/chartkick/chartkick.js +1853 -0
  141. data/node_modules/chartkick/package.json +25 -0
  142. data/node_modules/eonasdan-bootstrap-datetimepicker/package.json +51 -0
  143. data/node_modules/eonasdan-bootstrap-datetimepicker/src/js/bootstrap-datetimepicker.js +2636 -0
  144. data/node_modules/eonasdan-bootstrap-datetimepicker/src/sass/_bootstrap-datetimepicker.scss +344 -0
  145. data/node_modules/eonasdan-bootstrap-datetimepicker/src/sass/bootstrap-datetimepicker-build.scss +16 -0
  146. data/node_modules/file-saver/FileSaver.js +188 -0
  147. data/node_modules/file-saver/package.json +28 -0
  148. data/node_modules/font-awesome-sass/LICENSE.txt +22 -0
  149. data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.eot +0 -0
  150. data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.svg +2671 -0
  151. data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.ttf +0 -0
  152. data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.woff +0 -0
  153. data/node_modules/font-awesome-sass/assets/fonts/font-awesome/fontawesome-webfont.woff2 +0 -0
  154. data/node_modules/font-awesome-sass/assets/stylesheets/_font-awesome-compass.scss +5 -0
  155. data/node_modules/font-awesome-sass/assets/stylesheets/_font-awesome-sprockets.scss +5 -0
  156. data/node_modules/font-awesome-sass/assets/stylesheets/_font-awesome.scss +18 -0
  157. data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_animated.scss +34 -0
  158. data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_bordered-pulled.scss +25 -0
  159. data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_core.scss +12 -0
  160. data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_fixed-width.scss +6 -0
  161. data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_icons.scss +789 -0
  162. data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_larger.scss +13 -0
  163. data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_list.scss +19 -0
  164. data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_mixins.scss +60 -0
  165. data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_path.scss +14 -0
  166. data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_rotated-flipped.scss +20 -0
  167. data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_screen-reader.scss +5 -0
  168. data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_stacked.scss +20 -0
  169. data/node_modules/font-awesome-sass/assets/stylesheets/font-awesome/_variables.scss +802 -0
  170. data/node_modules/font-awesome-sass/package.json +19 -0
  171. data/node_modules/jquery/dist/jquery.js +10253 -0
  172. data/node_modules/jquery/dist/jquery.slim.js +8160 -0
  173. data/node_modules/jquery/package.json +97 -0
  174. data/node_modules/jquery-pjax/jquery.pjax.js +903 -0
  175. data/node_modules/jquery-pjax/package.json +18 -0
  176. data/node_modules/jquery-ui/package.json +74 -0
  177. data/node_modules/jquery-ui/themes/base/accordion.css +23 -0
  178. data/node_modules/jquery-ui/themes/base/all.css +12 -0
  179. data/node_modules/jquery-ui/themes/base/autocomplete.css +16 -0
  180. data/node_modules/jquery-ui/themes/base/base.css +30 -0
  181. data/node_modules/jquery-ui/themes/base/button.css +82 -0
  182. data/node_modules/jquery-ui/themes/base/checkboxradio.css +34 -0
  183. data/node_modules/jquery-ui/themes/base/controlgroup.css +65 -0
  184. data/node_modules/jquery-ui/themes/base/core.css +97 -0
  185. data/node_modules/jquery-ui/themes/base/datepicker.css +185 -0
  186. data/node_modules/jquery-ui/themes/base/dialog.css +101 -0
  187. data/node_modules/jquery-ui/themes/base/draggable.css +12 -0
  188. data/node_modules/jquery-ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  189. data/node_modules/jquery-ui/themes/base/images/ui-icons_444444_256x240.png +0 -0
  190. data/node_modules/jquery-ui/themes/base/images/ui-icons_555555_256x240.png +0 -0
  191. data/node_modules/jquery-ui/themes/base/images/ui-icons_777620_256x240.png +0 -0
  192. data/node_modules/jquery-ui/themes/base/images/ui-icons_777777_256x240.png +0 -0
  193. data/node_modules/jquery-ui/themes/base/images/ui-icons_cc0000_256x240.png +0 -0
  194. data/node_modules/jquery-ui/themes/base/images/ui-icons_ffffff_256x240.png +0 -0
  195. data/node_modules/jquery-ui/themes/base/menu.css +64 -0
  196. data/node_modules/jquery-ui/themes/base/progressbar.css +28 -0
  197. data/node_modules/jquery-ui/themes/base/resizable.css +78 -0
  198. data/node_modules/jquery-ui/themes/base/selectable.css +17 -0
  199. data/node_modules/jquery-ui/themes/base/selectmenu.css +50 -0
  200. data/node_modules/jquery-ui/themes/base/slider.css +75 -0
  201. data/node_modules/jquery-ui/themes/base/sortable.css +12 -0
  202. data/node_modules/jquery-ui/themes/base/spinner.css +52 -0
  203. data/node_modules/jquery-ui/themes/base/tabs.css +51 -0
  204. data/node_modules/jquery-ui/themes/base/theme.css +443 -0
  205. data/node_modules/jquery-ui/themes/base/tooltip.css +19 -0
  206. data/node_modules/jquery-ui/ui/core.js +21 -0
  207. data/node_modules/jquery-ui/ui/data.js +39 -0
  208. data/node_modules/jquery-ui/ui/disable-selection.js +46 -0
  209. data/node_modules/jquery-ui/ui/effect.js +1635 -0
  210. data/node_modules/jquery-ui/ui/effects/effect-blind.js +70 -0
  211. data/node_modules/jquery-ui/ui/effects/effect-bounce.js +110 -0
  212. data/node_modules/jquery-ui/ui/effects/effect-clip.js +65 -0
  213. data/node_modules/jquery-ui/ui/effects/effect-drop.js +69 -0
  214. data/node_modules/jquery-ui/ui/effects/effect-explode.js +111 -0
  215. data/node_modules/jquery-ui/ui/effects/effect-fade.js +47 -0
  216. data/node_modules/jquery-ui/ui/effects/effect-fold.js +89 -0
  217. data/node_modules/jquery-ui/ui/effects/effect-highlight.js +57 -0
  218. data/node_modules/jquery-ui/ui/effects/effect-puff.js +42 -0
  219. data/node_modules/jquery-ui/ui/effects/effect-pulsate.js +64 -0
  220. data/node_modules/jquery-ui/ui/effects/effect-scale.js +56 -0
  221. data/node_modules/jquery-ui/ui/effects/effect-shake.js +74 -0
  222. data/node_modules/jquery-ui/ui/effects/effect-size.js +191 -0
  223. data/node_modules/jquery-ui/ui/effects/effect-slide.js +76 -0
  224. data/node_modules/jquery-ui/ui/effects/effect-transfer.js +40 -0
  225. data/node_modules/jquery-ui/ui/escape-selector.js +21 -0
  226. data/node_modules/jquery-ui/ui/focusable.js +84 -0
  227. data/node_modules/jquery-ui/ui/form-reset-mixin.js +77 -0
  228. data/node_modules/jquery-ui/ui/form.js +20 -0
  229. data/node_modules/jquery-ui/ui/i18n/datepicker-af.js +37 -0
  230. data/node_modules/jquery-ui/ui/i18n/datepicker-ar-DZ.js +39 -0
  231. data/node_modules/jquery-ui/ui/i18n/datepicker-ar.js +39 -0
  232. data/node_modules/jquery-ui/ui/i18n/datepicker-az.js +37 -0
  233. data/node_modules/jquery-ui/ui/i18n/datepicker-be.js +37 -0
  234. data/node_modules/jquery-ui/ui/i18n/datepicker-bg.js +38 -0
  235. data/node_modules/jquery-ui/ui/i18n/datepicker-bs.js +37 -0
  236. data/node_modules/jquery-ui/ui/i18n/datepicker-ca.js +37 -0
  237. data/node_modules/jquery-ui/ui/i18n/datepicker-cs.js +37 -0
  238. data/node_modules/jquery-ui/ui/i18n/datepicker-cy-GB.js +45 -0
  239. data/node_modules/jquery-ui/ui/i18n/datepicker-da.js +37 -0
  240. data/node_modules/jquery-ui/ui/i18n/datepicker-de.js +37 -0
  241. data/node_modules/jquery-ui/ui/i18n/datepicker-el.js +37 -0
  242. data/node_modules/jquery-ui/ui/i18n/datepicker-en-AU.js +37 -0
  243. data/node_modules/jquery-ui/ui/i18n/datepicker-en-GB.js +37 -0
  244. data/node_modules/jquery-ui/ui/i18n/datepicker-en-NZ.js +37 -0
  245. data/node_modules/jquery-ui/ui/i18n/datepicker-eo.js +37 -0
  246. data/node_modules/jquery-ui/ui/i18n/datepicker-es.js +37 -0
  247. data/node_modules/jquery-ui/ui/i18n/datepicker-et.js +45 -0
  248. data/node_modules/jquery-ui/ui/i18n/datepicker-eu.js +36 -0
  249. data/node_modules/jquery-ui/ui/i18n/datepicker-fa.js +73 -0
  250. data/node_modules/jquery-ui/ui/i18n/datepicker-fi.js +37 -0
  251. data/node_modules/jquery-ui/ui/i18n/datepicker-fo.js +45 -0
  252. data/node_modules/jquery-ui/ui/i18n/datepicker-fr-CA.js +37 -0
  253. data/node_modules/jquery-ui/ui/i18n/datepicker-fr-CH.js +37 -0
  254. data/node_modules/jquery-ui/ui/i18n/datepicker-fr.js +39 -0
  255. data/node_modules/jquery-ui/ui/i18n/datepicker-gl.js +37 -0
  256. data/node_modules/jquery-ui/ui/i18n/datepicker-he.js +37 -0
  257. data/node_modules/jquery-ui/ui/i18n/datepicker-hi.js +37 -0
  258. data/node_modules/jquery-ui/ui/i18n/datepicker-hr.js +37 -0
  259. data/node_modules/jquery-ui/ui/i18n/datepicker-hu.js +36 -0
  260. data/node_modules/jquery-ui/ui/i18n/datepicker-hy.js +37 -0
  261. data/node_modules/jquery-ui/ui/i18n/datepicker-id.js +37 -0
  262. data/node_modules/jquery-ui/ui/i18n/datepicker-is.js +45 -0
  263. data/node_modules/jquery-ui/ui/i18n/datepicker-it-CH.js +37 -0
  264. data/node_modules/jquery-ui/ui/i18n/datepicker-it.js +37 -0
  265. data/node_modules/jquery-ui/ui/i18n/datepicker-ja.js +37 -0
  266. data/node_modules/jquery-ui/ui/i18n/datepicker-ka.js +48 -0
  267. data/node_modules/jquery-ui/ui/i18n/datepicker-kk.js +37 -0
  268. data/node_modules/jquery-ui/ui/i18n/datepicker-km.js +37 -0
  269. data/node_modules/jquery-ui/ui/i18n/datepicker-ko.js +37 -0
  270. data/node_modules/jquery-ui/ui/i18n/datepicker-ky.js +38 -0
  271. data/node_modules/jquery-ui/ui/i18n/datepicker-lb.js +45 -0
  272. data/node_modules/jquery-ui/ui/i18n/datepicker-lt.js +45 -0
  273. data/node_modules/jquery-ui/ui/i18n/datepicker-lv.js +45 -0
  274. data/node_modules/jquery-ui/ui/i18n/datepicker-mk.js +37 -0
  275. data/node_modules/jquery-ui/ui/i18n/datepicker-ml.js +37 -0
  276. data/node_modules/jquery-ui/ui/i18n/datepicker-ms.js +37 -0
  277. data/node_modules/jquery-ui/ui/i18n/datepicker-nb.js +49 -0
  278. data/node_modules/jquery-ui/ui/i18n/datepicker-nl-BE.js +37 -0
  279. data/node_modules/jquery-ui/ui/i18n/datepicker-nl.js +37 -0
  280. data/node_modules/jquery-ui/ui/i18n/datepicker-nn.js +49 -0
  281. data/node_modules/jquery-ui/ui/i18n/datepicker-no.js +50 -0
  282. data/node_modules/jquery-ui/ui/i18n/datepicker-pl.js +37 -0
  283. data/node_modules/jquery-ui/ui/i18n/datepicker-pt-BR.js +45 -0
  284. data/node_modules/jquery-ui/ui/i18n/datepicker-pt.js +44 -0
  285. data/node_modules/jquery-ui/ui/i18n/datepicker-rm.js +61 -0
  286. data/node_modules/jquery-ui/ui/i18n/datepicker-ro.js +40 -0
  287. data/node_modules/jquery-ui/ui/i18n/datepicker-ru.js +37 -0
  288. data/node_modules/jquery-ui/ui/i18n/datepicker-sk.js +37 -0
  289. data/node_modules/jquery-ui/ui/i18n/datepicker-sl.js +38 -0
  290. data/node_modules/jquery-ui/ui/i18n/datepicker-sq.js +37 -0
  291. data/node_modules/jquery-ui/ui/i18n/datepicker-sr-SR.js +37 -0
  292. data/node_modules/jquery-ui/ui/i18n/datepicker-sr.js +37 -0
  293. data/node_modules/jquery-ui/ui/i18n/datepicker-sv.js +37 -0
  294. data/node_modules/jquery-ui/ui/i18n/datepicker-ta.js +53 -0
  295. data/node_modules/jquery-ui/ui/i18n/datepicker-th.js +37 -0
  296. data/node_modules/jquery-ui/ui/i18n/datepicker-tj.js +37 -0
  297. data/node_modules/jquery-ui/ui/i18n/datepicker-tr.js +37 -0
  298. data/node_modules/jquery-ui/ui/i18n/datepicker-uk.js +38 -0
  299. data/node_modules/jquery-ui/ui/i18n/datepicker-vi.js +37 -0
  300. data/node_modules/jquery-ui/ui/i18n/datepicker-zh-CN.js +37 -0
  301. data/node_modules/jquery-ui/ui/i18n/datepicker-zh-HK.js +37 -0
  302. data/node_modules/jquery-ui/ui/i18n/datepicker-zh-TW.js +37 -0
  303. data/node_modules/jquery-ui/ui/ie.js +15 -0
  304. data/node_modules/jquery-ui/ui/jquery-1-7.js +89 -0
  305. data/node_modules/jquery-ui/ui/keycode.js +45 -0
  306. data/node_modules/jquery-ui/ui/labels.js +62 -0
  307. data/node_modules/jquery-ui/ui/plugin.js +44 -0
  308. data/node_modules/jquery-ui/ui/position.js +498 -0
  309. data/node_modules/jquery-ui/ui/safe-active-element.js +40 -0
  310. data/node_modules/jquery-ui/ui/safe-blur.js +21 -0
  311. data/node_modules/jquery-ui/ui/scroll-parent.js +45 -0
  312. data/node_modules/jquery-ui/ui/tabbable.js +35 -0
  313. data/node_modules/jquery-ui/ui/unique-id.js +49 -0
  314. data/node_modules/jquery-ui/ui/version.js +17 -0
  315. data/node_modules/jquery-ui/ui/widget.js +733 -0
  316. data/node_modules/jquery-ui/ui/widgets/accordion.js +613 -0
  317. data/node_modules/jquery-ui/ui/widgets/autocomplete.js +682 -0
  318. data/node_modules/jquery-ui/ui/widgets/button.js +386 -0
  319. data/node_modules/jquery-ui/ui/widgets/checkboxradio.js +286 -0
  320. data/node_modules/jquery-ui/ui/widgets/controlgroup.js +298 -0
  321. data/node_modules/jquery-ui/ui/widgets/datepicker.js +2120 -0
  322. data/node_modules/jquery-ui/ui/widgets/dialog.js +940 -0
  323. data/node_modules/jquery-ui/ui/widgets/draggable.js +1250 -0
  324. data/node_modules/jquery-ui/ui/widgets/droppable.js +497 -0
  325. data/node_modules/jquery-ui/ui/widgets/menu.js +673 -0
  326. data/node_modules/jquery-ui/ui/widgets/mouse.js +226 -0
  327. data/node_modules/jquery-ui/ui/widgets/progressbar.js +178 -0
  328. data/node_modules/jquery-ui/ui/widgets/resizable.js +1201 -0
  329. data/node_modules/jquery-ui/ui/widgets/selectable.js +310 -0
  330. data/node_modules/jquery-ui/ui/widgets/selectmenu.js +687 -0
  331. data/node_modules/jquery-ui/ui/widgets/slider.js +752 -0
  332. data/node_modules/jquery-ui/ui/widgets/sortable.js +1554 -0
  333. data/node_modules/jquery-ui/ui/widgets/spinner.js +575 -0
  334. data/node_modules/jquery-ui/ui/widgets/tabs.js +924 -0
  335. data/node_modules/jquery-ui/ui/widgets/tooltip.js +520 -0
  336. data/node_modules/jquery-ujs/package.json +26 -0
  337. data/node_modules/jquery-ujs/src/rails.js +555 -0
  338. data/node_modules/js-cookie/package.json +49 -0
  339. data/node_modules/js-cookie/src/js.cookie.js +165 -0
  340. data/node_modules/jstz/dist/jstz.js +1428 -0
  341. data/node_modules/jstz/package.json +57 -0
  342. data/node_modules/lodash/core.js +3836 -0
  343. data/node_modules/lodash/lodash.js +17084 -0
  344. data/node_modules/lodash/package.json +17 -0
  345. data/node_modules/moment/locale/af.js +74 -0
  346. data/node_modules/moment/locale/ar-dz.js +60 -0
  347. data/node_modules/moment/locale/ar-kw.js +60 -0
  348. data/node_modules/moment/locale/ar-ly.js +127 -0
  349. data/node_modules/moment/locale/ar-ma.js +61 -0
  350. data/node_modules/moment/locale/ar-sa.js +106 -0
  351. data/node_modules/moment/locale/ar-tn.js +60 -0
  352. data/node_modules/moment/locale/ar.js +143 -0
  353. data/node_modules/moment/locale/az.js +106 -0
  354. data/node_modules/moment/locale/be.js +135 -0
  355. data/node_modules/moment/locale/bg.js +91 -0
  356. data/node_modules/moment/locale/bm.js +60 -0
  357. data/node_modules/moment/locale/bn.js +120 -0
  358. data/node_modules/moment/locale/bo.js +120 -0
  359. data/node_modules/moment/locale/br.js +109 -0
  360. data/node_modules/moment/locale/bs.js +153 -0
  361. data/node_modules/moment/locale/ca.js +89 -0
  362. data/node_modules/moment/locale/cs.js +180 -0
  363. data/node_modules/moment/locale/cv.js +64 -0
  364. data/node_modules/moment/locale/cy.js +82 -0
  365. data/node_modules/moment/locale/da.js +61 -0
  366. data/node_modules/moment/locale/de-at.js +80 -0
  367. data/node_modules/moment/locale/de-ch.js +79 -0
  368. data/node_modules/moment/locale/de.js +79 -0
  369. data/node_modules/moment/locale/dv.js +101 -0
  370. data/node_modules/moment/locale/el.js +101 -0
  371. data/node_modules/moment/locale/en-au.js +68 -0
  372. data/node_modules/moment/locale/en-ca.js +64 -0
  373. data/node_modules/moment/locale/en-gb.js +68 -0
  374. data/node_modules/moment/locale/en-ie.js +68 -0
  375. data/node_modules/moment/locale/en-nz.js +68 -0
  376. data/node_modules/moment/locale/eo.js +74 -0
  377. data/node_modules/moment/locale/es-do.js +92 -0
  378. data/node_modules/moment/locale/es-us.js +84 -0
  379. data/node_modules/moment/locale/es.js +93 -0
  380. data/node_modules/moment/locale/et.js +82 -0
  381. data/node_modules/moment/locale/eu.js +67 -0
  382. data/node_modules/moment/locale/fa.js +108 -0
  383. data/node_modules/moment/locale/fi.js +110 -0
  384. data/node_modules/moment/locale/fo.js +61 -0
  385. data/node_modules/moment/locale/fr-ca.js +75 -0
  386. data/node_modules/moment/locale/fr-ch.js +79 -0
  387. data/node_modules/moment/locale/fr.js +84 -0
  388. data/node_modules/moment/locale/fy.js +76 -0
  389. data/node_modules/moment/locale/gd.js +77 -0
  390. data/node_modules/moment/locale/gl.js +78 -0
  391. data/node_modules/moment/locale/gom-latn.js +124 -0
  392. data/node_modules/moment/locale/gu.js +125 -0
  393. data/node_modules/moment/locale/he.js +100 -0
  394. data/node_modules/moment/locale/hi.js +125 -0
  395. data/node_modules/moment/locale/hr.js +155 -0
  396. data/node_modules/moment/locale/hu.js +111 -0
  397. data/node_modules/moment/locale/hy-am.js +96 -0
  398. data/node_modules/moment/locale/id.js +84 -0
  399. data/node_modules/moment/locale/is.js +133 -0
  400. data/node_modules/moment/locale/it.js +71 -0
  401. data/node_modules/moment/locale/ja.js +81 -0
  402. data/node_modules/moment/locale/jv.js +84 -0
  403. data/node_modules/moment/locale/ka.js +90 -0
  404. data/node_modules/moment/locale/kk.js +88 -0
  405. data/node_modules/moment/locale/km.js +59 -0
  406. data/node_modules/moment/locale/kn.js +127 -0
  407. data/node_modules/moment/locale/ko.js +83 -0
  408. data/node_modules/moment/locale/ky.js +89 -0
  409. data/node_modules/moment/locale/lb.js +138 -0
  410. data/node_modules/moment/locale/lo.js +71 -0
  411. data/node_modules/moment/locale/lt.js +119 -0
  412. data/node_modules/moment/locale/lv.js +99 -0
  413. data/node_modules/moment/locale/me.js +113 -0
  414. data/node_modules/moment/locale/mi.js +65 -0
  415. data/node_modules/moment/locale/mk.js +91 -0
  416. data/node_modules/moment/locale/ml.js +82 -0
  417. data/node_modules/moment/locale/mr.js +162 -0
  418. data/node_modules/moment/locale/ms-my.js +84 -0
  419. data/node_modules/moment/locale/ms.js +83 -0
  420. data/node_modules/moment/locale/mt.js +61 -0
  421. data/node_modules/moment/locale/my.js +97 -0
  422. data/node_modules/moment/locale/nb.js +64 -0
  423. data/node_modules/moment/locale/ne.js +124 -0
  424. data/node_modules/moment/locale/nl-be.js +89 -0
  425. data/node_modules/moment/locale/nl.js +89 -0
  426. data/node_modules/moment/locale/nn.js +61 -0
  427. data/node_modules/moment/locale/pa-in.js +125 -0
  428. data/node_modules/moment/locale/pl.js +127 -0
  429. data/node_modules/moment/locale/pt-br.js +62 -0
  430. data/node_modules/moment/locale/pt.js +66 -0
  431. data/node_modules/moment/locale/ro.js +77 -0
  432. data/node_modules/moment/locale/ru.js +185 -0
  433. data/node_modules/moment/locale/sd.js +99 -0
  434. data/node_modules/moment/locale/se.js +62 -0
  435. data/node_modules/moment/locale/si.js +72 -0
  436. data/node_modules/moment/locale/sk.js +158 -0
  437. data/node_modules/moment/locale/sl.js +174 -0
  438. data/node_modules/moment/locale/sq.js +71 -0
  439. data/node_modules/moment/locale/sr-cyrl.js +112 -0
  440. data/node_modules/moment/locale/sr.js +112 -0
  441. data/node_modules/moment/locale/ss.js +90 -0
  442. data/node_modules/moment/locale/sv.js +70 -0
  443. data/node_modules/moment/locale/sw.js +60 -0
  444. data/node_modules/moment/locale/ta.js +131 -0
  445. data/node_modules/moment/locale/te.js +90 -0
  446. data/node_modules/moment/locale/tet.js +69 -0
  447. data/node_modules/moment/locale/th.js +68 -0
  448. data/node_modules/moment/locale/tl-ph.js +63 -0
  449. data/node_modules/moment/locale/tlh.js +123 -0
  450. data/node_modules/moment/locale/tr.js +91 -0
  451. data/node_modules/moment/locale/tzl.js +93 -0
  452. data/node_modules/moment/locale/tzm-latn.js +59 -0
  453. data/node_modules/moment/locale/tzm.js +59 -0
  454. data/node_modules/moment/locale/uk.js +153 -0
  455. data/node_modules/moment/locale/ur.js +100 -0
  456. data/node_modules/moment/locale/uz-latn.js +59 -0
  457. data/node_modules/moment/locale/uz.js +59 -0
  458. data/node_modules/moment/locale/vi.js +80 -0
  459. data/node_modules/moment/locale/x-pseudo.js +69 -0
  460. data/node_modules/moment/locale/yo.js +61 -0
  461. data/node_modules/moment/locale/zh-cn.js +112 -0
  462. data/node_modules/moment/locale/zh-hk.js +106 -0
  463. data/node_modules/moment/locale/zh-tw.js +105 -0
  464. data/node_modules/moment/min/locales.js +9769 -0
  465. data/node_modules/moment/min/moment-with-locales.js +14289 -0
  466. data/node_modules/moment/moment.js +4535 -0
  467. data/node_modules/moment/package.json +99 -0
  468. data/node_modules/moment-timezone/builds/moment-timezone-with-data-2012-2022.js +1204 -0
  469. data/node_modules/moment-timezone/builds/moment-timezone-with-data.js +1204 -0
  470. data/node_modules/moment-timezone/moment-timezone-utils.js +316 -0
  471. data/node_modules/moment-timezone/moment-timezone.js +605 -0
  472. data/node_modules/moment-timezone/package.json +50 -0
  473. data/node_modules/nprogress/nprogress.css +74 -0
  474. data/node_modules/nprogress/nprogress.js +480 -0
  475. data/node_modules/nprogress/package.json +47 -0
  476. data/node_modules/nprogress/support/extras.css +4 -0
  477. data/node_modules/roboto-fontface/css/mixins.scss +36 -0
  478. data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-black-italic.scss +3 -0
  479. data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-black.scss +3 -0
  480. data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-bold-italic.scss +3 -0
  481. data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-bold.scss +3 -0
  482. data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-light-italic.scss +3 -0
  483. data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-light.scss +3 -0
  484. data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-medium-italic.scss +3 -0
  485. data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-medium.scss +3 -0
  486. data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-regular-italic.scss +3 -0
  487. data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-regular.scss +3 -0
  488. data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-thin-italic.scss +3 -0
  489. data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface-thin.scss +3 -0
  490. data/node_modules/roboto-fontface/css/roboto/sass/roboto-fontface.scss +12 -0
  491. data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-bold-italic.scss +3 -0
  492. data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-bold.scss +3 -0
  493. data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-light-italic.scss +3 -0
  494. data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-light.scss +3 -0
  495. data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-regular-italic.scss +3 -0
  496. data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface-regular.scss +3 -0
  497. data/node_modules/roboto-fontface/css/roboto-condensed/sass/roboto-condensed-fontface.scss +6 -0
  498. data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-bold.scss +3 -0
  499. data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-light.scss +3 -0
  500. data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-regular.scss +3 -0
  501. data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface-thin.scss +3 -0
  502. data/node_modules/roboto-fontface/css/roboto-slab/sass/roboto-slab-fontface.scss +4 -0
  503. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.eot +0 -0
  504. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.svg +10968 -0
  505. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.ttf +0 -0
  506. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.woff +0 -0
  507. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Black.woff2 +0 -0
  508. data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.eot +0 -0
  509. data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.svg +11086 -0
  510. data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.ttf +0 -0
  511. data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff +0 -0
  512. data/node_modules/roboto-fontface/fonts/roboto/Roboto-BlackItalic.woff2 +0 -0
  513. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.eot +0 -0
  514. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.svg +11010 -0
  515. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.ttf +0 -0
  516. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.woff +0 -0
  517. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Bold.woff2 +0 -0
  518. data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.eot +0 -0
  519. data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.svg +11096 -0
  520. data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.ttf +0 -0
  521. data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff +0 -0
  522. data/node_modules/roboto-fontface/fonts/roboto/Roboto-BoldItalic.woff2 +0 -0
  523. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.eot +0 -0
  524. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.svg +10564 -0
  525. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.ttf +0 -0
  526. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.woff +0 -0
  527. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Light.woff2 +0 -0
  528. data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.eot +0 -0
  529. data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.svg +10646 -0
  530. data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.ttf +0 -0
  531. data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff +0 -0
  532. data/node_modules/roboto-fontface/fonts/roboto/Roboto-LightItalic.woff2 +0 -0
  533. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.eot +0 -0
  534. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.svg +10999 -0
  535. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.ttf +0 -0
  536. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.woff +0 -0
  537. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Medium.woff2 +0 -0
  538. data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.eot +0 -0
  539. data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.svg +11100 -0
  540. data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.ttf +0 -0
  541. data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff +0 -0
  542. data/node_modules/roboto-fontface/fonts/roboto/Roboto-MediumItalic.woff2 +0 -0
  543. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.eot +0 -0
  544. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.svg +10520 -0
  545. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.ttf +0 -0
  546. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.woff +0 -0
  547. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Regular.woff2 +0 -0
  548. data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.eot +0 -0
  549. data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.svg +10629 -0
  550. data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.ttf +0 -0
  551. data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff +0 -0
  552. data/node_modules/roboto-fontface/fonts/roboto/Roboto-RegularItalic.woff2 +0 -0
  553. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.eot +0 -0
  554. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.svg +10617 -0
  555. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.ttf +0 -0
  556. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.woff +0 -0
  557. data/node_modules/roboto-fontface/fonts/roboto/Roboto-Thin.woff2 +0 -0
  558. data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.eot +0 -0
  559. data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.svg +10726 -0
  560. data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.ttf +0 -0
  561. data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff +0 -0
  562. data/node_modules/roboto-fontface/fonts/roboto/Roboto-ThinItalic.woff2 +0 -0
  563. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.eot +0 -0
  564. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.svg +643 -0
  565. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.ttf +0 -0
  566. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.woff +0 -0
  567. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Bold.woff2 +0 -0
  568. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.eot +0 -0
  569. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.svg +643 -0
  570. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.ttf +0 -0
  571. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff +0 -0
  572. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-BoldItalic.woff2 +0 -0
  573. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.eot +0 -0
  574. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.svg +643 -0
  575. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.ttf +0 -0
  576. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.woff +0 -0
  577. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Light.woff2 +0 -0
  578. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.eot +0 -0
  579. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.svg +643 -0
  580. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.ttf +0 -0
  581. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff +0 -0
  582. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-LightItalic.woff2 +0 -0
  583. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.eot +0 -0
  584. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.svg +644 -0
  585. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.ttf +0 -0
  586. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.woff +0 -0
  587. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-Regular.woff2 +0 -0
  588. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.eot +0 -0
  589. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.svg +644 -0
  590. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.ttf +0 -0
  591. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff +0 -0
  592. data/node_modules/roboto-fontface/fonts/roboto-condensed/Roboto-Condensed-RegularItalic.woff2 +0 -0
  593. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.eot +0 -0
  594. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.svg +679 -0
  595. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.ttf +0 -0
  596. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.woff +0 -0
  597. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Bold.woff2 +0 -0
  598. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.eot +0 -0
  599. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.svg +678 -0
  600. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.ttf +0 -0
  601. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.woff +0 -0
  602. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Light.woff2 +0 -0
  603. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.eot +0 -0
  604. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.svg +678 -0
  605. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.ttf +0 -0
  606. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.woff +0 -0
  607. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Regular.woff2 +0 -0
  608. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.eot +0 -0
  609. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.svg +678 -0
  610. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.ttf +0 -0
  611. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.woff +0 -0
  612. data/node_modules/roboto-fontface/fonts/roboto-slab/Roboto-Slab-Thin.woff2 +0 -0
  613. data/node_modules/roboto-fontface/package.json +28 -0
  614. data/node_modules/signature_pad/dist/signature_pad.js +610 -0
  615. data/node_modules/signature_pad/package.json +41 -0
  616. data/package.json +25 -0
  617. data/yarn.lock +126 -0
  618. metadata +708 -0
@@ -0,0 +1,678 @@
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" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
4
+ <metadata></metadata>
5
+ <defs>
6
+ <font id="roboto_slabthin" horiz-adv-x="1104" >
7
+ <font-face units-per-em="2048" ascent="1638" descent="-410" />
8
+ <missing-glyph horiz-adv-x="490" />
9
+ <glyph unicode="&#xfb01;" horiz-adv-x="1183" d="M71 1027v55h188v158q0 163 85.5 252t237.5 89q67 0 135 -13.5t133 -43.5l-8 -52q-66 29 -121.5 42t-137.5 13q-126 0 -198 -76t-72 -211v-158h626v-1028h163v-54h-380v54h163v973h-572v-973h163v-54h-380v54h163v973h-188z" />
10
+ <glyph unicode="&#xfb02;" horiz-adv-x="1303" d="M89 1027v55h170v138q0 172 101.5 266.5t281.5 94.5q88 0 179.5 -17.5t174.5 -56.5h5v-1453h163v-54h-380v54h163v1419q-68 27 -139 40.5t-165 13.5q-169 0 -249.5 -79t-80.5 -228v-138h304v-55h-304v-973h163v-54h-380v54h163v973h-170z" />
11
+ <glyph horiz-adv-x="0" />
12
+ <glyph unicode="&#xd;" horiz-adv-x="490" />
13
+ <glyph horiz-adv-x="0" />
14
+ <glyph unicode="&#x9;" horiz-adv-x="0" />
15
+ <glyph unicode=" " horiz-adv-x="490" />
16
+ <glyph unicode="&#x09;" horiz-adv-x="490" />
17
+ <glyph unicode="&#xa0;" horiz-adv-x="490" />
18
+ <glyph unicode="!" horiz-adv-x="437" d="M143 0v134h95v-134h-95zM163 478v978h54v-978h-54z" />
19
+ <glyph unicode="&#x22;" horiz-adv-x="665" d="M166 1122l5 268v170h55v-167l-10 -271h-50zM347 1122l6 268v170h54v-167l-10 -271h-50z" />
20
+ <glyph unicode="#" horiz-adv-x="1246" d="M63 410v52h281l95 524h-300v54h310l75 416h56l-76 -416h365l76 416h56l-76 -416h254v-54h-264l-96 -524h285v-52h-294l-75 -410h-56l75 410h-364l-74 -410h-56l74 410h-271zM400 462h363l96 524h-365z" />
21
+ <glyph unicode="$" horiz-adv-x="1086" d="M83 403l2 6h46q0 -199 121.5 -288t289.5 -89q163 0 262 92t99 220q0 130 -79 205.5t-292 152.5q-215 71 -311.5 156t-96.5 252q0 160 104.5 259.5t281.5 106.5v187h55v-187q181 -10 281.5 -120.5t97.5 -303.5l-2 -5h-47q0 166 -95 271.5t-265 105.5q-174 0 -265.5 -91.5 t-91.5 -220.5q0 -131 73.5 -208t297.5 -150q210 -73 309 -158t99 -250q0 -161 -104 -258.5t-277 -107.5v-188h-55v187q-189 6 -316 108t-122 316z" />
22
+ <glyph unicode="%" horiz-adv-x="1457" d="M77 1099v77q0 126 76 213.5t196 87.5q119 0 195 -87.5t76 -213.5v-77q0 -126 -75.5 -212.5t-193.5 -86.5q-122 0 -198 86.5t-76 212.5zM132 1099q0 -100 56.5 -172t162.5 -72q102 0 158 72t56 172v77q0 100 -56.5 173t-159.5 73t-160 -73.5t-57 -172.5v-77zM394 162 l711 1138l45 -31l-711 -1138zM833 279v78q0 125 75.5 212.5t195.5 87.5t196 -87t76 -213v-78q0 -126 -75.5 -213t-194.5 -87q-121 0 -197 87t-76 213zM888 279q0 -101 56 -173t162 -72q103 0 159 72t56 173v78q0 106 -56 175.5t-161 69.5q-103 0 -159.5 -70t-56.5 -175v-78z " />
23
+ <glyph unicode="&#x26;" horiz-adv-x="1253" d="M74 352q0 114 67.5 211t188.5 199l51 41q-82 103 -121 188t-39 176q0 149 81.5 229.5t223.5 80.5q132 0 204 -72t72 -190q0 -84 -38.5 -142.5t-108.5 -114.5l-202 -161l475 -540q54 76 84.5 171t30.5 204h55q0 -125 -35 -227.5t-98 -188.5l185 -211l-2 -5h-60l-157 177 l-8 -8t-4 -5q-90 -89 -188.5 -137t-222.5 -48q-202 0 -318 100.5t-116 272.5zM128 352q0 -134 98 -226.5t282 -92.5q110 0 211 47.5t177 135.5l-449 509q-8 8 -15.5 17t-18.5 22l-52 -41q-137 -118 -185 -205.5t-48 -165.5zM276 1169q0 -79 35 -163t110 -172l209 166 q60 50 88 103.5t28 111.5q0 94 -56.5 151t-163.5 57q-120 0 -185 -72.5t-65 -181.5z" />
24
+ <glyph unicode="'" horiz-adv-x="421" d="M166 1122l15 267v171h55v-169l-20 -269h-50z" />
25
+ <glyph unicode="(" horiz-adv-x="615" d="M114 566v20q0 338 120.5 632.5t290.5 397.5h6l16 -36q-153 -101 -266 -387.5t-113 -602.5v-26q0 -317 113 -603.5t266 -387.5l-16 -36h-6q-172 105 -291.5 390.5t-119.5 638.5z" />
26
+ <glyph unicode=")" horiz-adv-x="608" d="M11 -427q152 101 265.5 387.5t113.5 603.5v26q0 316 -113.5 602.5t-265.5 387.5l16 36h6q169 -103 290 -397.5t121 -632.5v-20q0 -353 -120 -638.5t-291 -390.5h-6z" />
27
+ <glyph unicode="*" horiz-adv-x="948" d="M66 1141l18 54l362 -133l1 394h56l-7 -395l352 143l20 -53l-360 -137l249 -317l-47 -33l-242 322l-228 -325l-45 32l234 324z" />
28
+ <glyph unicode="+" horiz-adv-x="1145" d="M73 649v53h462v504h55v-504h481v-53h-481v-503h-55v503h-462z" />
29
+ <glyph unicode="," horiz-adv-x="383" d="M92 -223q46 61 67.5 117.5t21.5 130.5v134h54v-132q0 -88 -28 -158t-78 -124z" />
30
+ <glyph unicode="-" horiz-adv-x="789" d="M154 599v54h470v-54h-470z" />
31
+ <glyph unicode="." horiz-adv-x="444" d="M145 0v130h86v-130h-86z" />
32
+ <glyph unicode="/" horiz-adv-x="776" d="M0 -125l608 1581h59l-608 -1581h-59z" />
33
+ <glyph unicode="0" horiz-adv-x="1150" d="M121 574v308q0 284 116 439.5t327 155.5t327.5 -155.5t116.5 -439.5v-308q0 -285 -115.5 -440t-326.5 -155t-328 155.5t-117 439.5zM175 576q0 -252 100.5 -397.5t290.5 -145.5q189 0 288.5 145t99.5 398v306q0 254 -100 397.5t-290 143.5t-289.5 -143.5t-99.5 -397.5 v-306z" />
34
+ <glyph unicode="1" horiz-adv-x="821" d="M63 1330v50l392 84v-1410h293v-54h-640v54h293v1352z" />
35
+ <glyph unicode="2" d="M76 1052q-5 177 111.5 301t311.5 124q181 0 290.5 -102.5t109.5 -288.5q0 -121 -78.5 -247t-221.5 -293l-417 -487l2 -5h739v239h54v-293h-871v54l477 550q136 157 198.5 271t62.5 211q0 159 -88 248t-257 89q-179 0 -277 -105t-98 -272h-46z" />
36
+ <glyph unicode="3" horiz-adv-x="1098" d="M75 399l2 6h46q0 -162 118.5 -267t297.5 -105q180 0 280 92.5t100 256.5q0 170 -114.5 251.5t-310.5 81.5h-111v56h111q183 0 288 91t105 224q0 147 -90.5 242t-266.5 95q-162 0 -269 -95t-107 -253h-46l-2 6q-5 177 118.5 286.5t305.5 109.5q188 0 299.5 -106.5 t111.5 -288.5q0 -115 -72.5 -206t-195.5 -131q142 -35 221 -127t79 -232q0 -190 -121 -298.5t-313 -108.5q-185 0 -327 109.5t-137 310.5z" />
37
+ <glyph unicode="4" horiz-adv-x="1170" d="M63 397v30l695 1029h65v-1005h252v-54h-252v-343h163v-54h-380v54h163v343h-706zM147 451h622v929l-6 2l-78 -129z" />
38
+ <glyph unicode="5" horiz-adv-x="1061" d="M97 377l2 6h47q0 -172 96 -261t261 -89q194 0 284.5 107t90.5 322q0 184 -90.5 290t-253.5 106q-160 0 -251.5 -53.5t-131.5 -158.5l-41 16l78 794h700v-191h-54v138h-597l-61 -618q63 63 137.5 95t219.5 36q174 5 287 -119t113 -333q0 -223 -105 -354t-325 -131 q-177 0 -294 100.5t-112 297.5z" />
39
+ <glyph unicode="6" horiz-adv-x="1107" d="M121 552v328q0 292 128 444.5t325 152.5q76 0 148.5 -16.5t136.5 -53.5l-21 -51q-66 38 -122.5 52.5t-141.5 14.5q-175 0 -287 -134.5t-112 -407.5v-175q47 109 150.5 180t239.5 71q197 0 309 -136t112 -361q0 -207 -121.5 -344t-309.5 -137q-193 0 -313.5 150 t-120.5 423zM175 553q0 -248 104 -384.5t276 -136.5q167 0 272 126t105 302q0 202 -96 322.5t-278 120.5q-153 0 -267.5 -102.5t-114.5 -244.5h-1v-3z" />
40
+ <glyph unicode="7" d="M76 1163v293h930v-54q-215 -250 -365.5 -570.5t-195.5 -740.5l-6 -91h-54l6 91q43 394 183.5 719t366.5 592h-811v-239h-54z" />
41
+ <glyph unicode="8" horiz-adv-x="1123" d="M92 379q0 133 84.5 231t224.5 135q-122 37 -195 127.5t-73 213.5q0 184 118.5 287.5t303.5 103.5q183 0 303 -104t120 -287q0 -122 -74.5 -213t-195.5 -128q139 -38 225.5 -136t86.5 -230q0 -192 -130.5 -296t-332.5 -104q-206 0 -335.5 104t-129.5 296zM146 374 q0 -161 115 -251t296 -90q176 0 292 90.5t116 250.5q0 154 -118 249t-292 95q-177 0 -293 -95t-116 -249zM187 1091q0 -146 104 -232.5t266 -86.5q157 0 262 87t105 232q0 143 -107 237.5t-262 94.5q-161 0 -264.5 -90.5t-103.5 -241.5z" />
42
+ <glyph unicode="9" horiz-adv-x="1125" d="M84 958q0 215 123 367t313 152q200 0 321 -136t121 -418v-343q0 -299 -124 -450t-337 -151q-78 0 -156 16t-157 47l16 57q75 -34 143 -50t154 -16q188 0 293.5 138t105.5 407v123q-56 -109 -158.5 -171t-229.5 -62q-188 0 -308 143.5t-120 346.5zM146 958 q0 -178 100 -307.5t266 -129.5q148 0 248 85.5t140 204.5v111q0 256 -102.5 378.5t-273.5 122.5q-168 0 -273 -140t-105 -325z" />
43
+ <glyph unicode=":" horiz-adv-x="364" d="M118 0v130h86v-130h-86zM118 0zM118 949v130h86v-130h-86z" />
44
+ <glyph unicode=";" horiz-adv-x="364" d="M76 0zM76 -223q46 61 67.5 117.5t21.5 130.5v134h54v-132q0 -88 -28 -158t-78 -124zM125 952v130h86v-130h-86z" />
45
+ <glyph unicode="&#x3c;" horiz-adv-x="1027" d="M76 515v50l837 378v-58l-661 -308l-119 -37v-6l119 -36l661 -303v-59z" />
46
+ <glyph unicode="=" horiz-adv-x="1127" d="M147 436v54h834v-54h-834zM147 843v54h834v-54h-834z" />
47
+ <glyph unicode="&#x3e;" horiz-adv-x="1052" d="M125 137v59l660 307l118 36v6l-118 37l-660 304v58l836 -378v-50z" />
48
+ <glyph unicode="?" horiz-adv-x="901" d="M65 1122q-2 170 96.5 262.5t253.5 92.5q164 0 258.5 -101t94.5 -266q0 -141 -62.5 -243t-190.5 -217q-69 -53 -84 -101.5t-15 -148.5h-54q1 117 20.5 165.5t104.5 126.5q121 116 174 197.5t53 222.5q0 146 -78 229t-221 83q-142 0 -220 -84.5t-81 -223.5h-46zM358 0v106 h82v-106h-82z" />
49
+ <glyph unicode="@" horiz-adv-x="1799" d="M86 478q18 427 255.5 680t616.5 253q402 0 592.5 -234t173.5 -654q-10 -219 -114 -381.5t-296 -162.5q-83 0 -135 61t-61 169q-55 -114 -139 -172t-193 -58q-136 0 -203 119t-48 318q23 250 144 401t293 151q83 0 135 -27.5t115 -82.5l-49 -565q-11 -152 36.5 -205.5 t107.5 -53.5q158 0 248.5 134.5t101.5 354.5q20 396 -154 613.5t-559 217.5q-336 0 -564.5 -239.5t-248.5 -636.5q-20 -383 174.5 -629.5t551.5 -246.5q87 0 177.5 22t152.5 58l24 -46q-62 -40 -164 -64.5t-194 -24.5q-380 0 -588 249.5t-189 681.5zM589 416 q-19 -167 31.5 -275t163.5 -108q108 0 194 66.5t144 245.5l42 486q-34 39 -82.5 60.5t-112.5 21.5q-142 0 -248 -126.5t-132 -370.5z" />
50
+ <glyph unicode="A" horiz-adv-x="1472" d="M55 0v54h107l524 1402h66l525 -1402h107v-54h-309v54h143l-143 381h-712l-142 -381h143v-54h-309zM383 489h672l-305 820l-28 82h-6l-27 -82z" />
51
+ <glyph unicode="B" horiz-adv-x="1303" d="M71 0v54h163v1348h-163v54h163h383q226 0 351 -93t125 -280q0 -130 -67 -219t-189 -111q136 -18 229 -119t93 -233q0 -191 -123.5 -296t-326.5 -105h-638zM288 54h421q184 0 290 91t106 254q0 134 -101.5 227t-284.5 93h-431v-665zM288 773h349q199 0 300 77.5t101 236.5 q0 156 -106.5 235.5t-314.5 79.5h-329v-629z" />
52
+ <glyph unicode="C" horiz-adv-x="1373" d="M130 719v18q0 330 176 535t461 205q158 0 286.5 -62t202.5 -169v-254h-55v234q-67 90 -179 143.5t-255 53.5q-259 0 -421 -189t-162 -495v-20q0 -307 161 -496.5t412 -189.5q144 0 261 53.5t183 143.5v234h55v-254q-73 -107 -206 -169t-293 -62q-277 0 -452 205.5 t-175 534.5z" />
53
+ <glyph unicode="D" horiz-adv-x="1386" d="M71 0v54h163v1348h-163v54h163h403q251 0 426 -180t175 -459v-178q0 -280 -175 -459.5t-426 -179.5h-566zM288 54h349q227 0 387 166t160 419v181q0 250 -160 416t-387 166h-349v-1348z" />
54
+ <glyph unicode="E" horiz-adv-x="1270" d="M71 0v54h163v1348h-163v54h1049v-293h-54v239h-778v-616h630v-54h-630v-678h778v239h54v-293h-1049z" />
55
+ <glyph unicode="F" horiz-adv-x="1246" d="M71 0v54h163v1348h-163v54h1065v-293h-54v239h-794v-630h646v-56h-646v-662h163v-54h-380z" />
56
+ <glyph unicode="G" horiz-adv-x="1449" d="M130 720v38q0 319 173 519t451 200q166 0 294.5 -57.5t204.5 -163.5v-244h-54l1 224q-69 89 -182 138t-264 49q-257 0 -413.5 -185t-156.5 -478v-40q0 -305 155.5 -496t411.5 -191q161 0 281.5 47t161.5 101v384h-315v55h369v-464q-46 -64 -176.5 -120.5t-320.5 -56.5 q-277 0 -449 205.5t-172 535.5z" />
57
+ <glyph unicode="H" horiz-adv-x="1506" d="M71 0v54h163v1348h-163v54h380v-54h-163v-653h930v653h-163v54h163h54h163v-54h-163v-1348h163v-54h-380v54h163v641h-930v-641h163v-54h-380z" />
58
+ <glyph unicode="I" horiz-adv-x="598" d="M109 0v54h163v1348h-163v54h380v-54h-163v-1348h163v-54h-380z" />
59
+ <glyph unicode="J" horiz-adv-x="1137" d="M46 395l2 6h46q0 -178 97 -273t280 -95q153 0 254 105t101 284v980h-163v54h380v-54h-163v-980q0 -203 -114.5 -323t-294.5 -120q-200 0 -315 106q-110 102 -110 293v17z" />
60
+ <glyph unicode="K" horiz-adv-x="1388" d="M71 0v54h163v1348h-163v54h380v-54h-163v-638h238l565 633l-2 5h-168v54h361v-54h-115l-596 -672l639 -676h118v-54h-361v54h163l3 6l-622 651h-223v-657h163v-54h-380z" />
61
+ <glyph unicode="L" horiz-adv-x="1161" d="M71 0v54h163v1348h-163v54h163h55h163v-54h-163v-1348h693v239h54v-293h-965z" />
62
+ <glyph unicode="M" horiz-adv-x="1824" d="M71 0v54h163v1348h-163v54h163h77l596 -1370h6l598 1370h242v-54h-163v-1348h163v-54h-380v54h163v1307l-6 2l-598 -1363h-43l-595 1356l-6 -2v-1300h163v-54h-380z" />
63
+ <glyph unicode="N" horiz-adv-x="1517" d="M71 0v54h163v1348h-163v54h163h55l934 -1353l6 2v1297h-163v54h217h163v-54h-163v-1402h-54l-934 1356l-6 -2v-1300h163v-54h-381z" />
64
+ <glyph unicode="O" horiz-adv-x="1488" d="M130 719v18q0 335 168 537.5t440 202.5q271 0 440.5 -202.5t169.5 -537.5v-18q0 -336 -168.5 -538t-439.5 -202q-272 0 -441 202.5t-169 537.5zM185 719q0 -311 151 -498.5t404 -187.5t403.5 187.5t150.5 498.5v20q0 309 -151.5 496.5t-404.5 187.5q-252 0 -402.5 -187.5 t-150.5 -496.5v-20z" />
65
+ <glyph unicode="P" horiz-adv-x="1255" d="M71 0v54h163v1348h-163v54h163h405q226 0 348 -113.5t122 -301.5q0 -190 -121.5 -303t-348.5 -113h-351v-571h163v-54h-380zM288 679h351q207 0 311.5 103t104.5 257q0 158 -104 260.5t-312 102.5h-351v-723z" />
66
+ <glyph unicode="Q" horiz-adv-x="1478" d="M130 719v18q0 335 168 537.5t440 202.5q271 0 440.5 -202.5t169.5 -537.5v-18q0 -232 -83.5 -404.5t-231.5 -258.5l310 -221l-39 -38l-325 231q-55 -25 -115 -37t-124 -12q-272 0 -441 202.5t-169 537.5zM185 719q0 -311 151 -498.5t404 -187.5t403.5 187.5t150.5 498.5 v20q0 309 -151.5 496.5t-404.5 187.5q-252 0 -402.5 -187.5t-150.5 -496.5v-20z" />
67
+ <glyph unicode="R" horiz-adv-x="1364" d="M71 -1v54h163v1348h-163v54h163h414q230 0 354 -99.5t124 -290.5q0 -123 -78.5 -223.5t-214.5 -130.5q157 -27 225 -115t68 -225v-147q0 -86 29.5 -128t87.5 -42h51v-54h-51q-97 0 -134 65.5t-37 160.5v143q0 148 -101.5 231t-289.5 83h-393v-630h163v-54h-380zM288 737 h350q223 0 328.5 94t105.5 234q0 163 -106.5 249.5t-317.5 86.5h-360v-664z" />
68
+ <glyph unicode="S" horiz-adv-x="1198" d="M100 204v240h54v-217q78 -102 199 -148t251 -46q192 0 315.5 88t123.5 228q0 137 -100.5 219t-348.5 150q-249 67 -364.5 152.5t-115.5 249.5q0 163 136 260t347 97q164 0 286.5 -56.5t193.5 -169.5v-229h-54v204q-64 97 -171.5 147t-254.5 50q-198 0 -313.5 -88.5 t-115.5 -212.5t95.5 -206t345.5 -146q242 -64 365.5 -156.5t123.5 -262.5q0 -173 -141 -272.5t-353 -99.5q-146 0 -280.5 54.5t-223.5 170.5z" />
69
+ <glyph unicode="T" horiz-adv-x="1277" d="M80 1163v293h1114v-293h-54v239h-476v-1348h163v-54h-380v54h163v1348h-476v-239h-54z" />
70
+ <glyph unicode="U" horiz-adv-x="1441" d="M60 1402v54h163h54h163v-54h-163v-933q0 -205 124 -320.5t320 -115.5q195 0 319 115.5t124 320.5v933h-163v54h217h163v-54h-163v-933q0 -238 -138 -364t-359 -126q-223 0 -360.5 126.5t-137.5 363.5v933h-163z" />
71
+ <glyph unicode="V" horiz-adv-x="1442" d="M57 1402v54h309v-54h-143l469 -1260l26 -79h6l26 79l469 1260h-143v54h309v-54h-107l-524 -1402h-66l-524 1402h-107z" />
72
+ <glyph unicode="W" horiz-adv-x="1960" d="M57 1402v54h310v-54h-150l269 -1072l63 -229h6l63 229l364 1126h60l362 -1126l62 -229h6l65 229l266 1072h-149v54h309v-54h-101l-358 -1402h-61l-381 1214l-48 145h-6l-46 -145l-384 -1214h-61l-359 1402h-101z" />
73
+ <glyph unicode="X" horiz-adv-x="1391" d="M63 0v54h115l486 689l-466 659h-115v54h338v-54h-156l432 -617l433 617h-155v54h337v-54h-115l-465 -659l486 -689h115v-54h-337v54h155l-454 647l-453 -647h155v-54h-336z" />
74
+ <glyph unicode="Y" horiz-adv-x="1429" d="M55 1402v54h316v-54h-131l449 -755l26 -50l27 50l451 755h-131v54h316v-54h-120l-514 -849v-499h163v-54h-381v54h163v499l-515 849h-119z" />
75
+ <glyph unicode="Z" horiz-adv-x="1220" d="M92 0v44l929 1359h-835v-240h-54v293h964v-38l-930 -1364h908v239h54v-293h-1036z" />
76
+ <glyph unicode="[" horiz-adv-x="527" d="M157 -312v1976h283v-54h-229v-1868h229v-54h-283z" />
77
+ <glyph unicode="\" horiz-adv-x="784" d="M36 1456h58l608 -1581h-58z" />
78
+ <glyph unicode="]" horiz-adv-x="505" d="M23 -258h228v1868h-228v54h283v-1976h-283v54z" />
79
+ <glyph unicode="^" horiz-adv-x="828" d="M71 729l299 727h52l299 -727h-61l-222 543l-40 114h-6l-43 -114l-219 -543h-59z" />
80
+ <glyph unicode="_" horiz-adv-x="1134" d="M119 0h846v-54h-846v54z" />
81
+ <glyph unicode="`" horiz-adv-x="546" d="M84 1471l2 5h89l220 -261l-2 -5h-75z" />
82
+ <glyph unicode="a" horiz-adv-x="1132" d="M104 274q0 146 133 238t357 92h269v158q0 135 -86.5 210.5t-243.5 75.5q-103 0 -192.5 -29t-152.5 -80l-1 -173h-54l1 206q77 57 181.5 93.5t217.5 36.5q174 0 279 -88t105 -254v-542q0 -42 3.5 -83t11.5 -81h130v-54h-177q-13 71 -17.5 106.5t-4.5 76.5v16 q-62 -97 -173.5 -158.5t-262.5 -61.5q-150 0 -236.5 81.5t-86.5 213.5zM158 270q0 -101 74 -169.5t195 -68.5q153 0 266 69t170 191v257h-266q-199 0 -319 -77.5t-120 -201.5z" />
83
+ <glyph unicode="b" horiz-adv-x="1088" d="M-8 1506v54h217v-675q54 101 146 159t221 58q191 0 299.5 -151.5t108.5 -408.5v-21q0 -250 -108 -396t-298 -146q-129 0 -223.5 52.5t-147.5 141.5l-7 -173h-45v1506h-163zM209 274q39 -110 132.5 -175.5t237.5 -65.5q171 0 260 132t89 356v21q0 225 -90 365.5 t-261 140.5q-158 0 -244.5 -80.5t-123.5 -197.5v-496z" />
84
+ <glyph unicode="c" horiz-adv-x="1086" d="M104 520v42q0 242 117 391t323 149q122 0 226 -50.5t167 -136.5v-232h-54v212q-57 70 -143.5 111.5t-195.5 41.5q-190 0 -288 -136t-98 -350v-42q0 -216 98 -351.5t290 -135.5q137 0 242 75t105 225h46l2 -6v-10q-1 -151 -117 -243q-120 -94 -278 -95q-207 0 -324.5 149 t-117.5 392z" />
85
+ <glyph unicode="d" horiz-adv-x="1205" d="M104 521v21q0 257 108 408.5t300 151.5q128 0 220 -58.5t147 -160.5v623h-163v54h163h54v-1506h163v-54h-215l-2 173q-53 -89 -147 -141.5t-222 -52.5q-191 0 -298.5 146t-107.5 396zM160 521q0 -224 88.5 -356t260.5 -132q141 0 234.5 64t135.5 171v507 q-39 116 -126 194.5t-242 78.5q-172 0 -261.5 -140.5t-89.5 -365.5v-21z" />
86
+ <glyph unicode="e" d="M112 500v64q0 233 130 385.5t321 152.5q183 0 298.5 -120t115.5 -322v-83h-811v-13v-64q0 -196 115 -331.5t285 -135.5q121 0 202.5 33t139.5 99l29 -42q-64 -71 -155.5 -107.5t-215.5 -36.5q-185 0 -319.5 149.5t-134.5 371.5zM174 637l3 -6h746v33q0 165 -100 274.5 t-260 109.5q-161 0 -268 -117.5t-121 -293.5z" />
87
+ <glyph unicode="f" horiz-adv-x="722" d="M89 1027v55h188v178q0 153 74.5 237t208.5 84q33 0 65.5 -4t62.5 -13l-8 -52q-32 8 -56.5 11.5t-62.5 3.5q-108 0 -169 -71t-61 -196v-178h286v-55h-286v-973h163v-54h-380v54h163v973h-188z" />
88
+ <glyph unicode="g" horiz-adv-x="1140" d="M112 521v21q0 257 108 408.5t300 151.5q128 0 220.5 -59t146.5 -161l8 200h46v-1068q0 -208 -109.5 -329.5t-299.5 -121.5q-79 0 -164.5 16.5t-149.5 45.5l16 54q73 -32 141 -47.5t155 -15.5q173 0 264.5 106.5t91.5 291.5v157q-54 -88 -147.5 -140t-220.5 -52 q-191 0 -298.5 146t-107.5 396zM167 521q0 -224 89 -356t261 -132q144 0 236.5 66t132.5 177v491q-38 119 -123.5 200t-243.5 81q-172 0 -262 -140.5t-90 -365.5v-21z" />
89
+ <glyph unicode="h" horiz-adv-x="1278" d="M62 0v54h163v1452h-163v54h217v-706q50 118 147 183t237 65q169 0 256.5 -107t87.5 -337v-604h163v-54h-381v54h163v606q0 213 -78.5 300.5t-209.5 87.5q-175 0 -268 -104.5t-117 -267.5v-622h163v-54h-380z" />
90
+ <glyph unicode="i" horiz-adv-x="609" d="M89 0v54h163v974h-163v54h217v-1028h163v-54h-380zM252 1422v138h54v-138h-54z" />
91
+ <glyph unicode="j" horiz-adv-x="555" d="M-13 -417l13 52q18 -6 45.5 -12t53.5 -6q110 0 170.5 77t60.5 217v1117h-163v54h217v-1171q0 -167 -75 -257.5t-210 -90.5q-30 0 -56 5t-56 15zM324 1426v134h54v-134h-54z" />
92
+ <glyph unicode="k" horiz-adv-x="1152" d="M62 0v54h163v1452h-163v54h217v-953h127l430 415l-2 6h-119v54h321v-54h-122l-447 -439l489 -535h117v-54h-320v54h126l2 5l-454 494h-148v-499h163v-54h-380z" />
93
+ <glyph unicode="l" horiz-adv-x="581" d="M82 0v54h163v1452h-163v54h217v-1506h163v-54h-380z" />
94
+ <glyph unicode="m" horiz-adv-x="1980" d="M89 0v54h163v974h-163v54h210l7 -223q49 115 141 179t224 64q140 0 227.5 -71.5t120.5 -220.5q43 138 140.5 215.5t243.5 77.5q179 0 272 -117t93 -368v-563h163v-54h-381v54h163v565q0 235 -84 332t-224 97q-172 0 -260 -103.5t-110 -267.5q0 -20 1 -34.5t1 -28.5v-561 h163v-54h-381v54h163v565q0 236 -84 332.5t-225 96.5q-168 0 -255 -98.5t-111 -255.5v-640h163v-54h-381z" />
95
+ <glyph unicode="n" horiz-adv-x="1320" d="M89 0v54h163v974h-163v54h209l7 -223q49 116 143 179.5t232 63.5q177 0 265.5 -111.5t88.5 -353.5v-583h163v-54h-380v54h163v585q0 225 -80.5 317t-218.5 92q-175 0 -264 -104.5t-111 -267.5v-622h163v-54h-380z" />
96
+ <glyph unicode="o" horiz-adv-x="1155" d="M104 520v42q0 238 131.5 389t341.5 151q211 0 342.5 -151t131.5 -389v-42q0 -239 -131.5 -390t-340.5 -151q-211 0 -343 151t-132 390zM158 520q0 -204 114 -345.5t307 -141.5q190 0 304 142t114 345v42q0 199 -115 342.5t-305 143.5q-191 0 -305 -143.5t-114 -342.5v-42 z" />
97
+ <glyph unicode="p" horiz-adv-x="1161" d="M65 -362h163v1390h-163v54h205l11 -194q54 100 147 157t221 57q191 0 299.5 -151.5t108.5 -408.5v-21q0 -250 -108 -396t-298 -146q-127 0 -221.5 51t-147.5 138v-530h163v-54h-380v54zM282 269q40 -108 134 -172t236 -64q171 0 260.5 132t89.5 356v21q0 225 -90.5 365.5 t-261.5 140.5q-157 0 -244 -79t-124 -194v-506z" />
98
+ <glyph unicode="q" horiz-adv-x="1136" d="M104 521v21q0 257 108 408.5t300 151.5q127 0 219.5 -57.5t147.5 -158.5l5 196h49v-1444h163v-54h-380v54h163v532q-54 -88 -148 -139.5t-221 -51.5q-191 0 -298.5 146t-107.5 396zM160 521q0 -224 88.5 -356t260.5 -132q143 0 236.5 65.5t133.5 175.5v494 q-38 115 -126 197.5t-242 82.5q-172 0 -261.5 -140.5t-89.5 -365.5v-21z" />
99
+ <glyph unicode="r" horiz-adv-x="803" d="M89 0v54h163v974h-163v54h163h44l10 -188v-37q45 116 134 180.5t219 64.5q23 0 42.5 -3.5t33.5 -7.5l-6 -48l-70 6q-145 0 -235.5 -93.5t-117.5 -246.5v-655h163v-54h-380z" />
100
+ <glyph unicode="s" horiz-adv-x="1009" d="M103 122v193h54v-163q59 -63 146 -91t184 -28q150 0 238 70t88 162q0 86 -73.5 156.5t-256.5 110.5q-191 40 -278.5 106.5t-87.5 190.5q0 116 98 194.5t264 78.5q116 0 214.5 -40t158.5 -107v-202h-54v175q-52 58 -132.5 89t-186.5 31q-152 0 -230 -65.5t-78 -151.5 q0 -85 66 -145t262 -105q181 -42 274.5 -114.5t93.5 -202.5q0 -127 -104 -206t-276 -79q-118 0 -217.5 38t-166.5 105z" />
101
+ <glyph unicode="t" horiz-adv-x="719" d="M65 1027v55h200v292h55v-292h266v-55h-266v-748q0 -133 45 -189.5t119 -56.5q32 0 57 2t69 7l10 -49q-30 -8 -61.5 -11t-71.5 -3q-109 0 -165.5 71t-56.5 229v748h-200z" />
102
+ <glyph unicode="u" horiz-adv-x="1222" d="M44 1028v54h143h54v-619q0 -220 81 -325t219 -105q169 0 259.5 83t115.5 220v692h-163v54h163h55v-1028h163v-54h-208l-8 194q-51 -103 -145.5 -159t-229.5 -56q-167 0 -261.5 118.5t-94.5 367.5v563h-143z" />
103
+ <glyph unicode="v" horiz-adv-x="1165" d="M52 1028v54h318v-54h-142l313 -799l51 -146h6l52 146l312 799h-142v54h318v-54h-118l-400 -1027l1 -1h-52l-399 1028h-118z" />
104
+ <glyph unicode="w" horiz-adv-x="1687" d="M52 1028v54h322v-54h-148l206 -715l56 -222l6 -1l71 223l243 769h55l242 -769l70 -223l6 1l58 222l204 715h-147v54h323v-54h-113l-299 -1028h-54l-267 813l-48 183h-6l-52 -183l-263 -813h-54l-299 1028h-112z" />
105
+ <glyph unicode="x" horiz-adv-x="1192" d="M82 0v54h126l361 501l-341 473h-126v54h318v-54h-124l307 -426l306 426h-124v54h318v-54h-126l-341 -473l361 -501h126v-54h-317v54h124l-328 454l-327 -454h124v-54h-317z" />
106
+ <glyph unicode="y" horiz-adv-x="1185" d="M55 1028v54h319v-54h-142l335 -832l40 -108h6l6 16l353 924h-142v54h320v-54h-118l-460 -1208q-44 -114 -102.5 -185.5t-186.5 -71.5q-19 0 -42 3.5t-34 7.5l9 51q11 -3 33 -6t34 -3q92 0 143.5 54t91.5 160l65 176l-410 1022h-118z" />
107
+ <glyph unicode="z" horiz-adv-x="1077" d="M120 0v44l711 983h-656v-238h-54v293h783v-48l-711 -980h716v239h54v-293h-843z" />
108
+ <glyph unicode="{" horiz-adv-x="693" d="M63 543v66q128 0 189 72t61 204v247q0 171 73 290.5t246 174.5l15 -45q-143 -46 -211.5 -155.5t-68.5 -264.5v-247q0 -120 -52 -202t-159 -107q107 -26 159 -109t52 -202v-245q0 -154 70.5 -260t214.5 -155l-20 -46q-173 55 -246 173t-73 288v245q0 132 -61 205t-189 73z " />
109
+ <glyph unicode="|" horiz-adv-x="405" d="M150 -270v1726h54v-1726h-54z" />
110
+ <glyph unicode="}" horiz-adv-x="692" d="M27 -395q143 49 213.5 155t70.5 260v245q0 119 51.5 202t159.5 109q-108 25 -159.5 107t-51.5 202v247q0 155 -68.5 264.5t-210.5 155.5l14 45q172 -55 245.5 -174.5t73.5 -290.5v-247q0 -132 61 -204t189 -72v-66q-128 0 -189 -73.5t-61 -204.5v-245q0 -171 -73 -288.5 t-246 -172.5z" />
111
+ <glyph unicode="~" horiz-adv-x="1368" d="M121 474q0 128 73.5 214t188.5 86q86 0 158.5 -39.5t164.5 -120.5q67 -62 125 -90t121 -28q86 0 144.5 70.5t58.5 186.5l61 -13q0 -121 -75.5 -209t-188.5 -88q-87 0 -158.5 38t-162.5 121q-68 59 -127.5 88.5t-120.5 29.5q-89 0 -146 -68t-57 -190z" />
112
+ <glyph unicode="&#xa1;" horiz-adv-x="435" d="M142 918v164h95v-164h-95zM162 -374v978h54v-978h-54z" />
113
+ <glyph unicode="&#xa2;" horiz-adv-x="1063" d="M141 520v42q0 240 115.5 388.5t319.5 151.5v216h55v-218q106 -10 196 -59.5t147 -125.5v-232h-54v212q-57 70 -143.5 111.5t-195.5 41.5q-190 0 -288 -136t-98 -350v-42q0 -216 98 -351.5t290 -135.5q137 0 242 75t105 225h46l2 -6q4 -146 -99 -238t-248 -107v-227h-55 v224q-205 3 -320 151.5t-115 389.5z" />
114
+ <glyph unicode="&#xa3;" horiz-adv-x="1151" d="M68 667v54h241l-11 319q0 204 101 320.5t270 116.5q175 0 256 -102t78 -280l-2 -5h-47q0 176 -73.5 254.5t-211.5 78.5q-147 0 -232 -100t-85 -283l11 -319h478v-54h-476l8 -201q0 -125 -36 -235.5t-102 -176.5h755v239h54v-293h-912v54h10q89 16 133 145.5t44 266.5 l-8 201h-243z" />
115
+ <glyph unicode="&#xa4;" horiz-adv-x="1461" d="M94 13l179 182q-69 84 -106.5 189.5t-37.5 223.5q0 122 40 230.5t114 193.5l-189 193l40 39l188 -192q80 77 183.5 119.5t219.5 42.5q114 0 217.5 -43t185.5 -121l191 195l41 -40l-193 -196q72 -85 112 -193t40 -228q0 -117 -37 -221.5t-104 -187.5l182 -186l-41 -40 l-180 183q-82 -84 -188.5 -130t-225.5 -46q-120 0 -226.5 45.5t-188.5 128.5l-176 -180zM184 608q0 -238 159 -406.5t382 -168.5q221 0 380.5 168.5t159.5 406.5q0 237 -159.5 405t-380.5 168q-223 0 -382 -168t-159 -405z" />
116
+ <glyph unicode="&#xa5;" horiz-adv-x="1381" d="M59 1402v54h315v-54h-129l418 -664l24 -51h5l24 51l417 664h-129v54h316v-54h-121l-455 -726h424v-55h-452v-240h452v-55h-452v-272h163v-54h-380v54h163v272h-450v55h450v240h-450v55h421l-453 726h-121z" />
117
+ <glyph unicode="&#xa6;" horiz-adv-x="432" d="M150 -270v752h54v-752h-54zM150 698v758h54v-758h-54z" />
118
+ <glyph unicode="&#xa7;" horiz-adv-x="1197" d="M90 -69l2 5l46 2q0 -199 127 -289t304 -90q185 0 290 80.5t105 209.5q0 120 -80.5 188.5t-307.5 128.5q-245 58 -365.5 142.5t-120.5 242.5q0 108 76 179t211 92q-122 48 -182 120.5t-60 187.5q0 157 123 252t329 95q214 0 333 -111.5t115 -313.5l-2 -6h-46 q0 162 -106.5 269.5t-293.5 107.5q-197 0 -297.5 -81.5t-100.5 -208.5q0 -126 79.5 -194t316.5 -135q252 -64 365 -140.5t113 -232.5q0 -105 -82 -176t-222 -91q131 -50 195.5 -122t64.5 -191q0 -161 -122 -253.5t-328 -92.5q-205 0 -344.5 102.5t-134.5 323.5zM144 553 q0 -130 88 -195.5t361 -142.5l69 -19q161 1 254 67t93 165q0 123 -95.5 194.5t-354.5 143.5q-30 6 -57 13.5t-51 16.5q-152 -7 -229.5 -74t-77.5 -169z" />
119
+ <glyph unicode="&#xa8;" horiz-adv-x="956" d="M152 1338v118h137v-118h-137zM622 1338v118h136v-118h-136z" />
120
+ <glyph unicode="&#xa9;" horiz-adv-x="1596" d="M92 729q0 315 207 531t503 216q295 0 502.5 -216t207.5 -531q0 -316 -207.5 -533t-502.5 -217t-502.5 217t-207.5 533zM148 729q0 -290 191.5 -492.5t462.5 -202.5q269 0 461.5 202.5t192.5 492.5q0 289 -192 490.5t-462 201.5q-271 0 -462.5 -201.5t-191.5 -490.5z M475 669v119q0 172 88.5 279.5t231.5 107.5q139 0 218 -79.5t76 -227.5l-3 -6h-44q0 129 -64 194.5t-183 65.5q-123 0 -194 -95t-71 -238v-120q0 -145 70.5 -238.5t194.5 -93.5q120 0 183 63.5t63 195.5h44l3 -6q3 -150 -75.5 -229t-217.5 -79q-144 0 -232 107t-88 280z" />
121
+ <glyph unicode="&#xaa;" horiz-adv-x="860" d="M106 920q0 101 74 157t215 56h220v69q0 105 -51 163t-148 58q-114 0 -175.5 -47t-61.5 -138l-46 5l-2 6q-5 98 74.5 163t210.5 65q115 0 184.5 -71.5t69.5 -204.5v-314q0 -48 6 -92.5t20 -88.5h-58q-10 28 -15.5 58.5t-6.5 61.5q-40 -58 -106.5 -96t-154.5 -38 q-119 0 -184 61t-65 167zM160 924q0 -84 48 -130.5t148 -46.5q87 0 163 47.5t96 105.5v177h-219q-113 0 -174.5 -44t-61.5 -109z" />
122
+ <glyph unicode="&#xab;" horiz-adv-x="905" d="M105 146zM105 516v19l295 370h70l-294 -380l294 -379h-70zM392 516v19l295 370h70l-294 -380l294 -379h-70z" />
123
+ <glyph unicode="&#xac;" d="M121 700v53h793v-357h-54v304h-739z" />
124
+ <glyph unicode="&#xad;" horiz-adv-x="789" d="M154 599v54h470v-54h-470zM154 599z" />
125
+ <glyph unicode="&#xae;" horiz-adv-x="1595" d="M92 729q0 315 207 531t503 216q295 0 502.5 -216t207.5 -531q0 -316 -207.5 -533t-502.5 -217q-296 0 -503 217t-207 533zM147 729q0 -290 192 -492.5t463 -202.5q269 0 461.5 202.5t192.5 492.5q0 289 -192 490.5t-462 201.5q-271 0 -463 -201.5t-192 -490.5zM570 316 v850h239q143 0 216 -61t73 -179q0 -73 -40 -125t-113 -81q70 -22 101 -75.5t31 -129.5v-56q0 -38 4 -71.5t13 -55.5v-16h-59q-10 21 -12 61.5t-2 82.5v54q0 94 -42 134t-142 40h-212v-372h-55zM625 744h205q91 0 152 48t61 135q0 96 -52.5 140t-181.5 44h-184v-367z" />
126
+ <glyph unicode="&#xaf;" horiz-adv-x="986" d="M154 1403v53h627v-53h-627z" />
127
+ <glyph unicode="&#xb0;" horiz-adv-x="739" d="M124 1237q0 98 69 169t167 71q95 0 163.5 -71t68.5 -169q0 -100 -68.5 -168.5t-163.5 -68.5q-98 0 -167 68.5t-69 168.5zM179 1237q0 -79 51.5 -130t129.5 -51q76 0 126 51t50 130q0 80 -50 132.5t-126 52.5q-78 0 -129.5 -53t-51.5 -132z" />
128
+ <glyph unicode="&#xb1;" d="M75 751v54h443v462h54v-462h419v-54h-419v-462h-54v462h-443zM231 88v54h835v-54h-835z" />
129
+ <glyph unicode="&#xb2;" horiz-adv-x="807" d="M106 667v55l327 300q83 80 114.5 131t31.5 102q0 78 -48 123.5t-144 45.5q-104 0 -160 -51t-56 -131h-48l-3 6q-5 95 69 163t198 68q115 0 181.5 -57.5t66.5 -167.5q0 -70 -49.5 -136.5t-140.5 -154.5l-265 -235l2 -6h475v-55h-551z" />
130
+ <glyph unicode="&#xb3;" horiz-adv-x="831" d="M99 882l2 6h48q0 -78 62.5 -128t163.5 -50q106 0 164 45.5t58 125.5q0 86 -55.5 126t-165.5 40h-114v56h114q107 0 157.5 40.5t50.5 116.5q0 73 -52.5 118t-156.5 45q-92 0 -153 -45.5t-61 -119.5h-46l-2 6q-6 94 71 154t191 60q122 0 193 -57.5t71 -163.5 q0 -61 -36 -109t-101 -72q74 -21 112.5 -69.5t38.5 -123.5q0 -107 -77.5 -167.5t-200.5 -60.5q-115 0 -198 58.5t-78 168.5z" />
131
+ <glyph unicode="&#xb4;" horiz-adv-x="553" d="M100 1217l220 261h78l2 -5l-231 -261h-67z" />
132
+ <glyph unicode="&#xb5;" horiz-adv-x="1282" d="M66 1028v54h163h52v-642q0 -223 85 -315t221 -92q184 0 268 93t102 263v639h-163v54h217v-577h2q0 -16 -0.5 -30.5t-1.5 -36.5v-384h163v-54h-204l-11 205q-48 -109 -138 -167.5t-225 -58.5q-103 0 -185.5 45t-129.5 147v-587h-52v1444h-163z" />
133
+ <glyph unicode="&#xb6;" horiz-adv-x="1044" d="M78 988q0 207 129.5 337.5t362.5 130.5h342v-54h-163v-1348h163v-54h-380v54h163v466h-125q-234 0 -363 129.5t-129 338.5z" />
134
+ <glyph unicode="&#xb7;" horiz-adv-x="480" d="M159 624v152h118v-152h-118z" />
135
+ <glyph unicode="&#xb8;" horiz-adv-x="470" d="M103 -386q104 0 180.5 36t76.5 105q0 64 -45.5 89t-163.5 35l25 121h53l-11 -76q91 -7 144 -45.5t53 -123.5q0 -87 -79 -138.5t-226 -51.5z" />
136
+ <glyph unicode="&#xb9;" horiz-adv-x="471" d="M88 1398v56l220 23v-812h-54v747z" />
137
+ <glyph unicode="&#xba;" horiz-adv-x="904" d="M121 1025v117q0 148 82 241.5t222 93.5t222.5 -93.5t82.5 -241.5v-117q0 -149 -82 -241.5t-221 -92.5q-141 0 -223.5 92.5t-82.5 241.5zM175 1025q0 -125 63 -202.5t189 -77.5q120 0 185 78.5t65 201.5v117q0 122 -65 201.5t-187 79.5q-121 0 -185.5 -79.5t-64.5 -201.5 v-117z" />
138
+ <glyph unicode="&#xbb;" horiz-adv-x="897" d="M105 171l293 379l-293 390h70l294 -380v-19l-294 -370h-70zM105 171zM395 171l293 379l-293 390h70l294 -380v-19l-294 -370h-70z" />
139
+ <glyph unicode="&#xbc;" horiz-adv-x="1533" d="M150 0zM150 1397v56l220 23v-812h-54v747zM293 170l711 1138l45 -31l-711 -1138zM748 186v36l435 579h62v-560h176v-55h-176v-186h-55v186h-442zM831 241h359v481l-6 2l-36 -60z" />
140
+ <glyph unicode="&#xbd;" horiz-adv-x="1447" d="M150 0zM150 1397v56l220 23v-812h-54v747zM305 170l711 1138l45 -31l-711 -1138zM887 0v55l327 300q83 80 114.5 131t31.5 102q0 78 -48 123.5t-144 45.5q-104 0 -160 -51t-56 -131h-48l-3 6q-5 95 69 163t198 68q115 0 181.5 -57.5t66.5 -167.5q0 -70 -49.5 -136.5 t-140.5 -154.5l-265 -235l2 -6h475v-55h-551z" />
141
+ <glyph unicode="&#xbe;" horiz-adv-x="1653" d="M126 0zM131 883l2 6h48q0 -78 62.5 -128t163.5 -50q106 0 164 45.5t58 125.5q0 86 -55.5 126t-165.5 40h-114v56h114q107 0 157.5 40.5t50.5 116.5q0 73 -52.5 118t-156.5 45q-92 0 -153 -45.5t-61 -119.5h-46l-2 6q-6 94 71 154t191 60q122 0 193 -57.5t71 -163.5 q0 -61 -36 -109t-101 -72q74 -21 112.5 -69.5t38.5 -123.5q0 -107 -77.5 -167.5t-200.5 -60.5q-115 0 -198 58.5t-78 168.5zM520 170l711 1138l45 -31l-711 -1138zM973 186v36l435 579h62v-560h176v-55h-176v-186h-55v186h-442zM1056 241h359v481l-6 2l-36 -60z" />
142
+ <glyph unicode="&#xbf;" horiz-adv-x="839" d="M58 -27q0 140 62 242t191 218q68 52 83.5 100.5t15.5 149.5h54q-2 -118 -21.5 -166.5t-103.5 -125.5q-122 -117 -174.5 -198.5t-52.5 -221.5q0 -146 77.5 -229t221.5 -83q141 0 219 84.5t82 223.5h46l3 -6q1 -170 -97.5 -262.5t-252.5 -92.5q-165 0 -259 101t-94 266z M386 977v106h82v-106h-82z" />
143
+ <glyph unicode="&#xc0;" horiz-adv-x="1472" d="M55 0v54h107l524 1402h66l525 -1402h107v-54h-309v54h143l-143 381h-712l-142 -381h143v-54h-309zM55 0zM383 489h672l-305 820l-28 82h-6l-27 -82zM453 1833l2 5h89l220 -261l-2 -5h-75z" />
144
+ <glyph unicode="&#xc1;" horiz-adv-x="1472" d="M55 0v54h107l524 1402h66l525 -1402h107v-54h-309v54h143l-143 381h-712l-142 -381h143v-54h-309zM55 0zM383 489h672l-305 820l-28 82h-6l-27 -82zM649 1550l220 261h78l2 -5l-231 -261h-67z" />
145
+ <glyph unicode="&#xc2;" horiz-adv-x="1472" d="M55 0v54h107l524 1402h66l525 -1402h107v-54h-309v54h143l-143 381h-712l-142 -381h143v-54h-309zM55 0zM383 489h672l-305 820l-28 82h-6l-27 -82zM466 1599v17l210 206h80l214 -210v-13h-70l-185 186l-183 -186h-66z" />
146
+ <glyph unicode="&#xc3;" horiz-adv-x="1472" d="M55 0v54h107l524 1402h66l525 -1402h107v-54h-309v54h143l-143 381h-712l-142 -381h143v-54h-309zM55 0zM383 489h672l-305 820l-28 82h-6l-27 -82zM424 1613q0 80 50 129.5t126 49.5q72 0 153 -62t134 -62q50 0 85.5 39.5t35.5 101.5l55 -10q0 -82 -51 -134t-125 -52 q-76 0 -154 62.5t-133 62.5q-52 0 -86.5 -37t-34.5 -98z" />
147
+ <glyph unicode="&#xc4;" horiz-adv-x="1472" d="M55 0v54h107l524 1402h66l525 -1402h107v-54h-309v54h143l-143 381h-712l-142 -381h143v-54h-309zM55 0zM383 489h672l-305 820l-28 82h-6l-27 -82zM416 1671v118h137v-118h-137zM886 1671v118h136v-118h-136z" />
148
+ <glyph unicode="&#xc5;" horiz-adv-x="1472" d="M55 0v54h107l524 1402h66l525 -1402h107v-54h-309v54h143l-143 381h-712l-142 -381h143v-54h-309zM55 0zM383 489h672l-305 820l-28 82h-6l-27 -82zM578 1745q0 56 40 97.5t96 41.5q54 0 93.5 -41t39.5 -98t-39 -96t-94 -39q-56 0 -96 39t-40 96zM635 1745 q0 -34 23 -56.5t56 -22.5q32 0 54 22t22 57t-22 58.5t-54 23.5q-33 0 -56 -23.5t-23 -58.5z" />
149
+ <glyph unicode="&#xc6;" horiz-adv-x="2026" d="M51 0v54h119l849 1402h776v-293h-54v239h-642l26 -616h588v-54h-586l28 -678h647v239h54v-293h-915v54h160l-15 371h-628l-223 -371h131v-54h-315zM490 478h594l-39 924l-5 1l-57 -105z" />
150
+ <glyph unicode="&#xc7;" horiz-adv-x="1373" d="M130 0zM130 719v18q0 330 176 535t461 205q158 0 286.5 -62t202.5 -169v-254h-55v234q-67 90 -179 143.5t-255 53.5q-259 0 -421 -189t-162 -495v-20q0 -307 161 -496.5t412 -189.5q144 0 261 53.5t183 143.5v234h55v-254q-73 -107 -206 -169t-293 -62q-277 0 -452 205.5 t-175 534.5zM674 -386q104 0 180.5 36t76.5 105q0 64 -45.5 89t-163.5 35l25 121h53l-11 -76q91 -7 144 -45.5t53 -123.5q0 -87 -79 -138.5t-226 -51.5z" />
151
+ <glyph unicode="&#xc8;" horiz-adv-x="1270" d="M71 0v54h163v1348h-163v54h1049v-293h-54v239h-778v-616h630v-54h-630v-678h778v239h54v-293h-1049zM71 0zM358 1835l2 5h89l220 -261l-2 -5h-75z" />
152
+ <glyph unicode="&#xc9;" horiz-adv-x="1270" d="M71 0v54h163v1348h-163v54h1049v-293h-54v239h-778v-616h630v-54h-630v-678h778v239h54v-293h-1049zM71 0zM554 1552l220 261h78l2 -5l-231 -261h-67z" />
153
+ <glyph unicode="&#xca;" horiz-adv-x="1270" d="M71 0v54h163v1348h-163v54h1049v-293h-54v239h-778v-616h630v-54h-630v-678h778v239h54v-293h-1049zM71 0zM371 1601v17l210 206h80l214 -210v-13h-70l-185 186l-183 -186h-66z" />
154
+ <glyph unicode="&#xcb;" horiz-adv-x="1270" d="M71 0v54h163v1348h-163v54h1049v-293h-54v239h-778v-616h630v-54h-630v-678h778v239h54v-293h-1049zM71 0zM321 1673v118h137v-118h-137zM791 1673v118h136v-118h-136z" />
155
+ <glyph unicode="&#xcc;" horiz-adv-x="598" d="M47 0zM47 1835l2 5h89l220 -261l-2 -5h-75zM109 0v54h163v1348h-163v54h380v-54h-163v-1348h163v-54h-380z" />
156
+ <glyph unicode="&#xcd;" horiz-adv-x="598" d="M109 0v54h163v1348h-163v54h380v-54h-163v-1348h163v-54h-380zM109 0zM242 1552l220 261h78l2 -5l-231 -261h-67z" />
157
+ <glyph unicode="&#xce;" horiz-adv-x="598" d="M60 0zM60 1601v17l210 206h80l214 -210v-13h-70l-185 186l-183 -186h-66zM109 0v54h163v1348h-163v54h380v-54h-163v-1348h163v-54h-380z" />
158
+ <glyph unicode="&#xcf;" horiz-adv-x="598" d="M10 0zM10 1673v118h137v-118h-137zM109 0v54h163v1348h-163v54h380v-54h-163v-1348h163v-54h-380zM480 1673v118h136v-118h-136z" />
159
+ <glyph unicode="&#xd0;" horiz-adv-x="1416" d="M101 0v54h163v659h-128v54h128v635h-163v54h566q251 0 426 -180t175 -459v-178q0 -280 -175 -459.5t-426 -179.5h-566zM318 54h349q227 0 387 166t160 419v181q0 250 -160 416t-387 166h-349v-635h405v-54h-405v-659z" />
160
+ <glyph unicode="&#xd1;" horiz-adv-x="1517" d="M71 0v54h163v1348h-163v54h163h55l934 -1353l6 2v1297h-163v54h217h163v-54h-163v-1402h-54l-934 1356l-6 -2v-1300h163v-54h-381zM71 0zM436 1615q0 80 50 129.5t126 49.5q72 0 153 -62t134 -62q50 0 85.5 39.5t35.5 101.5l55 -10q0 -82 -51 -134t-125 -52 q-76 0 -154 62.5t-133 62.5q-52 0 -86.5 -37t-34.5 -98z" />
161
+ <glyph unicode="&#xd2;" horiz-adv-x="1488" d="M130 0zM130 719v18q0 335 168 537.5t440 202.5q271 0 440.5 -202.5t169.5 -537.5v-18q0 -336 -168.5 -538t-439.5 -202q-272 0 -441 202.5t-169 537.5zM185 719q0 -311 151 -498.5t404 -187.5t403.5 187.5t150.5 498.5v20q0 309 -151.5 496.5t-404.5 187.5 q-252 0 -402.5 -187.5t-150.5 -496.5v-20zM476 1856l2 5h89l220 -261l-2 -5h-75z" />
162
+ <glyph unicode="&#xd3;" horiz-adv-x="1488" d="M130 0zM130 719v18q0 335 168 537.5t440 202.5q271 0 440.5 -202.5t169.5 -537.5v-18q0 -336 -168.5 -538t-439.5 -202q-272 0 -441 202.5t-169 537.5zM185 719q0 -311 151 -498.5t404 -187.5t403.5 187.5t150.5 498.5v20q0 309 -151.5 496.5t-404.5 187.5 q-252 0 -402.5 -187.5t-150.5 -496.5v-20zM672 1573l220 261h78l2 -5l-231 -261h-67z" />
163
+ <glyph unicode="&#xd4;" horiz-adv-x="1488" d="M130 0zM130 719v18q0 335 168 537.5t440 202.5q271 0 440.5 -202.5t169.5 -537.5v-18q0 -336 -168.5 -538t-439.5 -202q-272 0 -441 202.5t-169 537.5zM185 719q0 -311 151 -498.5t404 -187.5t403.5 187.5t150.5 498.5v20q0 309 -151.5 496.5t-404.5 187.5 q-252 0 -402.5 -187.5t-150.5 -496.5v-20zM489 1622v17l210 206h80l214 -210v-13h-70l-185 186l-183 -186h-66z" />
164
+ <glyph unicode="&#xd5;" horiz-adv-x="1488" d="M130 0zM130 719v18q0 335 168 537.5t440 202.5q271 0 440.5 -202.5t169.5 -537.5v-18q0 -336 -168.5 -538t-439.5 -202q-272 0 -441 202.5t-169 537.5zM185 719q0 -311 151 -498.5t404 -187.5t403.5 187.5t150.5 498.5v20q0 309 -151.5 496.5t-404.5 187.5 q-252 0 -402.5 -187.5t-150.5 -496.5v-20zM447 1636q0 80 50 129.5t126 49.5q72 0 153 -62t134 -62q50 0 85.5 39.5t35.5 101.5l55 -10q0 -82 -51 -134t-125 -52q-76 0 -154 62.5t-133 62.5q-52 0 -86.5 -37t-34.5 -98z" />
165
+ <glyph unicode="&#xd6;" horiz-adv-x="1488" d="M130 0zM130 719v18q0 335 168 537.5t440 202.5q271 0 440.5 -202.5t169.5 -537.5v-18q0 -336 -168.5 -538t-439.5 -202q-272 0 -441 202.5t-169 537.5zM185 719q0 -311 151 -498.5t404 -187.5t403.5 187.5t150.5 498.5v20q0 309 -151.5 496.5t-404.5 187.5 q-252 0 -402.5 -187.5t-150.5 -496.5v-20zM439 1694v118h137v-118h-137zM909 1694v118h136v-118h-136z" />
166
+ <glyph unicode="&#xd7;" horiz-adv-x="1044" d="M79 289l384 393l-357 364l39 39l356 -364l357 364l39 -39l-357 -364l385 -393l-39 -37l-384 391l-384 -391z" />
167
+ <glyph unicode="&#xd8;" horiz-adv-x="1411" d="M120 719v18q0 335 168 537.5t440 202.5q104 0 197 -33t168 -94l92 145h66l-116 -183q96 -99 149.5 -246t53.5 -329v-18q0 -336 -168.5 -538t-439.5 -202q-105 0 -197 31.5t-166 93.5l-113 -179h-66l137 217q-99 98 -152 245t-53 332zM175 719q0 -169 46 -303.5 t132 -220.5l6 -1l705 1111q-68 57 -153 87.5t-183 30.5q-252 0 -402.5 -187.5t-150.5 -496.5v-20zM396 149q68 -57 152 -86.5t182 -29.5q253 0 403.5 187.5t150.5 498.5v20q0 166 -46 300t-130 220l-6 1z" />
168
+ <glyph unicode="&#xd9;" horiz-adv-x="1441" d="M60 0zM60 1402v54h163h54h163v-54h-163v-933q0 -205 124 -320.5t320 -115.5q195 0 319 115.5t124 320.5v933h-163v54h217h163v-54h-163v-933q0 -238 -138 -364t-359 -126q-223 0 -360.5 126.5t-137.5 363.5v933h-163zM466 1823l2 5h89l220 -261l-2 -5h-75z" />
169
+ <glyph unicode="&#xda;" horiz-adv-x="1441" d="M60 0zM60 1402v54h163h54h163v-54h-163v-933q0 -205 124 -320.5t320 -115.5q195 0 319 115.5t124 320.5v933h-163v54h217h163v-54h-163v-933q0 -238 -138 -364t-359 -126q-223 0 -360.5 126.5t-137.5 363.5v933h-163zM662 1540l220 261h78l2 -5l-231 -261h-67z" />
170
+ <glyph unicode="&#xdb;" horiz-adv-x="1441" d="M60 0zM60 1402v54h163h54h163v-54h-163v-933q0 -205 124 -320.5t320 -115.5q195 0 319 115.5t124 320.5v933h-163v54h217h163v-54h-163v-933q0 -238 -138 -364t-359 -126q-223 0 -360.5 126.5t-137.5 363.5v933h-163zM479 1589v17l210 206h80l214 -210v-13h-70l-185 186 l-183 -186h-66z" />
171
+ <glyph unicode="&#xdc;" horiz-adv-x="1441" d="M60 0zM60 1402v54h163h54h163v-54h-163v-933q0 -205 124 -320.5t320 -115.5q195 0 319 115.5t124 320.5v933h-163v54h217h163v-54h-163v-933q0 -238 -138 -364t-359 -126q-223 0 -360.5 126.5t-137.5 363.5v933h-163zM429 1661v118h137v-118h-137zM899 1661v118h136v-118 h-136z" />
172
+ <glyph unicode="&#xdd;" horiz-adv-x="1429" d="M55 0zM55 1402v54h316v-54h-131l449 -755l26 -50l27 50l451 755h-131v54h316v-54h-120l-514 -849v-499h163v-54h-381v54h163v499l-515 849h-119zM658 1541l220 261h78l2 -5l-231 -261h-67z" />
173
+ <glyph unicode="&#xde;" horiz-adv-x="1240" d="M70 0v54h163v1348h-163v54h217h163v-54h-163v-259h371q212 0 331 -113t119 -292q0 -180 -119 -292t-331 -112h-371v-280h163v-54h-380zM287 388h371q195 0 295.5 104t100.5 244q0 144 -100 248.5t-296 104.5h-371v-701z" />
174
+ <glyph unicode="&#xdf;" horiz-adv-x="1243" d="M55 0v54h163v1028q0 188 89 290t250 102q123 0 207.5 -73t84.5 -195q0 -101 -59.5 -204.5t-59.5 -201.5q0 -90 193 -231.5t193 -291.5q0 -141 -114 -219.5t-253 -78.5q-87 0 -179.5 26t-132.5 63l25 49q42 -34 122.5 -59.5t156.5 -25.5q140 0 230.5 71.5t90.5 182.5 q0 113 -193 252t-193 264q0 105 56.5 212t56.5 194q0 90 -67.5 151t-154.5 61q-134 0 -214.5 -87.5t-80.5 -250.5v-1082h-217z" />
175
+ <glyph unicode="&#xe0;" horiz-adv-x="1132" d="M104 0zM104 274q0 146 133 238t357 92h269v158q0 135 -86.5 210.5t-243.5 75.5q-103 0 -192.5 -29t-152.5 -80l-1 -173h-54l1 206q77 57 181.5 93.5t217.5 36.5q174 0 279 -88t105 -254v-542q0 -42 3.5 -83t11.5 -81h130v-54h-177q-13 71 -17.5 106.5t-4.5 76.5v16 q-62 -97 -173.5 -158.5t-262.5 -61.5q-150 0 -236.5 81.5t-86.5 213.5zM158 270q0 -101 74 -169.5t195 -68.5q153 0 266 69t170 191v257h-266q-199 0 -319 -77.5t-120 -201.5zM273 1515l2 5h89l220 -261l-2 -5h-75z" />
176
+ <glyph unicode="&#xe1;" horiz-adv-x="1132" d="M104 0zM104 274q0 146 133 238t357 92h269v158q0 135 -86.5 210.5t-243.5 75.5q-103 0 -192.5 -29t-152.5 -80l-1 -173h-54l1 206q77 57 181.5 93.5t217.5 36.5q174 0 279 -88t105 -254v-542q0 -42 3.5 -83t11.5 -81h130v-54h-177q-13 71 -17.5 106.5t-4.5 76.5v16 q-62 -97 -173.5 -158.5t-262.5 -61.5q-150 0 -236.5 81.5t-86.5 213.5zM158 270q0 -101 74 -169.5t195 -68.5q153 0 266 69t170 191v257h-266q-199 0 -319 -77.5t-120 -201.5zM469 1232l220 261h78l2 -5l-231 -261h-67z" />
177
+ <glyph unicode="&#xe2;" horiz-adv-x="1132" d="M104 0zM104 274q0 146 133 238t357 92h269v158q0 135 -86.5 210.5t-243.5 75.5q-103 0 -192.5 -29t-152.5 -80l-1 -173h-54l1 206q77 57 181.5 93.5t217.5 36.5q174 0 279 -88t105 -254v-542q0 -42 3.5 -83t11.5 -81h130v-54h-177q-13 71 -17.5 106.5t-4.5 76.5v16 q-62 -97 -173.5 -158.5t-262.5 -61.5q-150 0 -236.5 81.5t-86.5 213.5zM158 270q0 -101 74 -169.5t195 -68.5q153 0 266 69t170 191v257h-266q-199 0 -319 -77.5t-120 -201.5zM286 1281v17l210 206h80l214 -210v-13h-70l-185 186l-183 -186h-66z" />
178
+ <glyph unicode="&#xe3;" horiz-adv-x="1132" d="M104 0zM104 274q0 146 133 238t357 92h269v158q0 135 -86.5 210.5t-243.5 75.5q-103 0 -192.5 -29t-152.5 -80l-1 -173h-54l1 206q77 57 181.5 93.5t217.5 36.5q174 0 279 -88t105 -254v-542q0 -42 3.5 -83t11.5 -81h130v-54h-177q-13 71 -17.5 106.5t-4.5 76.5v16 q-62 -97 -173.5 -158.5t-262.5 -61.5q-150 0 -236.5 81.5t-86.5 213.5zM158 270q0 -101 74 -169.5t195 -68.5q153 0 266 69t170 191v257h-266q-199 0 -319 -77.5t-120 -201.5zM244 1295q0 80 50 129.5t126 49.5q72 0 153 -62t134 -62q50 0 85.5 39.5t35.5 101.5l55 -10 q0 -82 -51 -134t-125 -52q-76 0 -154 62.5t-133 62.5q-52 0 -86.5 -37t-34.5 -98z" />
179
+ <glyph unicode="&#xe4;" horiz-adv-x="1132" d="M104 0zM104 274q0 146 133 238t357 92h269v158q0 135 -86.5 210.5t-243.5 75.5q-103 0 -192.5 -29t-152.5 -80l-1 -173h-54l1 206q77 57 181.5 93.5t217.5 36.5q174 0 279 -88t105 -254v-542q0 -42 3.5 -83t11.5 -81h130v-54h-177q-13 71 -17.5 106.5t-4.5 76.5v16 q-62 -97 -173.5 -158.5t-262.5 -61.5q-150 0 -236.5 81.5t-86.5 213.5zM158 270q0 -101 74 -169.5t195 -68.5q153 0 266 69t170 191v257h-266q-199 0 -319 -77.5t-120 -201.5zM236 1353v118h137v-118h-137zM706 1353v118h136v-118h-136z" />
180
+ <glyph unicode="&#xe5;" horiz-adv-x="1132" d="M104 0zM104 274q0 146 133 238t357 92h269v158q0 135 -86.5 210.5t-243.5 75.5q-103 0 -192.5 -29t-152.5 -80l-1 -173h-54l1 206q77 57 181.5 93.5t217.5 36.5q174 0 279 -88t105 -254v-542q0 -42 3.5 -83t11.5 -81h130v-54h-177q-13 71 -17.5 106.5t-4.5 76.5v16 q-62 -97 -173.5 -158.5t-262.5 -61.5q-150 0 -236.5 81.5t-86.5 213.5zM158 270q0 -101 74 -169.5t195 -68.5q153 0 266 69t170 191v257h-266q-199 0 -319 -77.5t-120 -201.5zM398 1427q0 56 40 97.5t96 41.5q54 0 93.5 -41t39.5 -98t-39 -96t-94 -39q-56 0 -96 39t-40 96z M455 1427q0 -34 23 -56.5t56 -22.5q32 0 54 22t22 57t-22 58.5t-54 23.5q-33 0 -56 -23.5t-23 -58.5z" />
181
+ <glyph unicode="&#xe6;" horiz-adv-x="1779" d="M97 284q0 157 111.5 251.5t318.5 94.5h290v90q0 158 -73 243t-219 85q-162 0 -254.5 -78t-92.5 -199l-45 6l-2 6q-5 138 103.5 228.5t290.5 90.5q138 0 227 -73.5t112 -214.5q53 133 157 210.5t236 77.5q188 0 296 -118.5t108 -323.5v-83h-787v-13v-64q0 -208 99 -337.5 t299 -129.5q102 0 186.5 34.5t145.5 96.5l30 -42q-65 -66 -148.5 -104.5t-213.5 -38.5q-143 0 -245 66t-155 185v-12h1q-44 -95 -153 -167t-268 -72q-169 0 -262 82t-93 223zM152 280q0 -117 77.5 -183t221.5 -66q130 0 237 65.5t129 128.5v350h-288q-185 0 -281 -84 t-96 -211zM882 637l2 -5h723v32q0 168 -91.5 276t-258.5 108q-159 0 -260.5 -116.5t-114.5 -294.5z" />
182
+ <glyph unicode="&#xe7;" horiz-adv-x="1086" d="M104 0zM104 520v42q0 242 117 391t323 149q122 0 226 -50.5t167 -136.5v-232h-54v212q-57 70 -143.5 111.5t-195.5 41.5q-190 0 -288 -136t-98 -350v-42q0 -216 98 -351.5t290 -135.5q137 0 242 75t105 225h46l2 -6q4 -159 -116.5 -253.5t-278.5 -94.5q-207 0 -324.5 149 t-117.5 392zM471 -395q104 0 180.5 36t76.5 105q0 64 -45.5 89t-163.5 35l25 121h53l-11 -76q91 -7 144 -45.5t53 -123.5q0 -87 -79 -138.5t-226 -51.5z" />
183
+ <glyph unicode="&#xe8;" d="M112 0zM112 500v64q0 233 130 385.5t321 152.5q183 0 298.5 -120t115.5 -322v-83h-811v-13v-64q0 -196 115 -331.5t285 -135.5q121 0 202.5 33t139.5 99l29 -42q-64 -71 -155.5 -107.5t-215.5 -36.5q-185 0 -319.5 149.5t-134.5 371.5zM174 637l3 -6h746v33 q0 165 -100 274.5t-260 109.5q-161 0 -268 -117.5t-121 -293.5zM306 1514l2 5h89l220 -261l-2 -5h-75z" />
184
+ <glyph unicode="&#xe9;" d="M112 0zM112 500v64q0 233 130 385.5t321 152.5q183 0 298.5 -120t115.5 -322v-83h-811v-13v-64q0 -196 115 -331.5t285 -135.5q121 0 202.5 33t139.5 99l29 -42q-64 -71 -155.5 -107.5t-215.5 -36.5q-185 0 -319.5 149.5t-134.5 371.5zM174 637l3 -6h746v33 q0 165 -100 274.5t-260 109.5q-161 0 -268 -117.5t-121 -293.5zM502 1231l220 261h78l2 -5l-231 -261h-67z" />
185
+ <glyph unicode="&#xea;" d="M112 0zM112 500v64q0 233 130 385.5t321 152.5q183 0 298.5 -120t115.5 -322v-83h-811v-13v-64q0 -196 115 -331.5t285 -135.5q121 0 202.5 33t139.5 99l29 -42q-64 -71 -155.5 -107.5t-215.5 -36.5q-185 0 -319.5 149.5t-134.5 371.5zM174 637l3 -6h746v33 q0 165 -100 274.5t-260 109.5q-161 0 -268 -117.5t-121 -293.5zM319 1280v17l210 206h80l214 -210v-13h-70l-185 186l-183 -186h-66z" />
186
+ <glyph unicode="&#xeb;" d="M112 0zM112 500v64q0 233 130 385.5t321 152.5q183 0 298.5 -120t115.5 -322v-83h-811v-13v-64q0 -196 115 -331.5t285 -135.5q121 0 202.5 33t139.5 99l29 -42q-64 -71 -155.5 -107.5t-215.5 -36.5q-185 0 -319.5 149.5t-134.5 371.5zM174 637l3 -6h746v33 q0 165 -100 274.5t-260 109.5q-161 0 -268 -117.5t-121 -293.5zM269 1352v118h137v-118h-137zM739 1352v118h136v-118h-136z" />
187
+ <glyph unicode="&#xec;" horiz-adv-x="608" d="M24 0zM24 1492l2 5h89l220 -261l-2 -5h-75zM90 0v54h163v974h-163v54h217v-1028h163v-54h-380z" />
188
+ <glyph unicode="&#xed;" horiz-adv-x="608" d="M90 0v54h163v974h-163v54h217v-1028h163v-54h-380zM90 0zM219 1210l220 261h78l2 -5l-231 -261h-67z" />
189
+ <glyph unicode="&#xee;" horiz-adv-x="608" d="M37 0zM37 1258v17l210 206h80l214 -210v-13h-70l-185 186l-183 -186h-66zM90 0v54h163v974h-163v54h217v-1028h163v-54h-380z" />
190
+ <glyph unicode="&#xef;" horiz-adv-x="608" d="M-13 1331v118h137v-118h-137zM0 0zM90 0v54h163v974h-163v54h217v-1028h163v-54h-380zM457 1331v118h136v-118h-136z" />
191
+ <glyph unicode="&#xf0;" horiz-adv-x="1170" d="M78 446q0 241 123.5 374t344.5 133q125 0 226.5 -46.5t153.5 -127.5l5 4q-16 163 -73 286t-148 213l-338 -193l-28 48l323 185q-50 41 -108 76.5t-126 68.5l20 50q77 -37 143 -78t121 -88l280 160l29 -48l-266 -152q120 -122 178 -290.5t58 -405.5v-80 q0 -245 -131.5 -400.5t-330.5 -155.5t-327.5 134.5t-128.5 332.5zM133 446q0 -164 109.5 -286.5t295.5 -122.5q179 0 291.5 139.5t112.5 358.5v82q0 10 -0.5 29.5t-0.5 29.5q-40 92 -138.5 155.5t-256.5 63.5q-208 0 -310.5 -124.5t-102.5 -324.5z" />
192
+ <glyph unicode="&#xf1;" horiz-adv-x="1320" d="M89 0v54h163v974h-163v54h209l7 -223q49 116 143 179.5t232 63.5q177 0 265.5 -111.5t88.5 -353.5v-583h163v-54h-380v54h163v585q0 225 -80.5 317t-218.5 92q-175 0 -264 -104.5t-111 -267.5v-622h163v-54h-380zM89 0zM347 1293q0 80 50 129.5t126 49.5q72 0 153 -62 t134 -62q50 0 85.5 39.5t35.5 101.5l55 -10q0 -82 -51 -134t-125 -52q-76 0 -154 62.5t-133 62.5q-52 0 -86.5 -37t-34.5 -98z" />
193
+ <glyph unicode="&#xf2;" horiz-adv-x="1155" d="M104 0zM104 520v42q0 238 131.5 389t341.5 151q211 0 342.5 -151t131.5 -389v-42q0 -239 -131.5 -390t-340.5 -151q-211 0 -343 151t-132 390zM158 520q0 -204 114 -345.5t307 -141.5q190 0 304 142t114 345v42q0 199 -115 342.5t-305 143.5q-191 0 -305 -143.5 t-114 -342.5v-42zM321 1513l2 5h89l220 -261l-2 -5h-75z" />
194
+ <glyph unicode="&#xf3;" horiz-adv-x="1155" d="M104 0zM104 520v42q0 238 131.5 389t341.5 151q211 0 342.5 -151t131.5 -389v-42q0 -239 -131.5 -390t-340.5 -151q-211 0 -343 151t-132 390zM158 520q0 -204 114 -345.5t307 -141.5q190 0 304 142t114 345v42q0 199 -115 342.5t-305 143.5q-191 0 -305 -143.5 t-114 -342.5v-42zM517 1230l220 261h78l2 -5l-231 -261h-67z" />
195
+ <glyph unicode="&#xf4;" horiz-adv-x="1155" d="M104 0zM104 520v42q0 238 131.5 389t341.5 151q211 0 342.5 -151t131.5 -389v-42q0 -239 -131.5 -390t-340.5 -151q-211 0 -343 151t-132 390zM158 520q0 -204 114 -345.5t307 -141.5q190 0 304 142t114 345v42q0 199 -115 342.5t-305 143.5q-191 0 -305 -143.5 t-114 -342.5v-42zM334 1279v17l210 206h80l214 -210v-13h-70l-185 186l-183 -186h-66z" />
196
+ <glyph unicode="&#xf5;" horiz-adv-x="1155" d="M104 0zM104 520v42q0 238 131.5 389t341.5 151q211 0 342.5 -151t131.5 -389v-42q0 -239 -131.5 -390t-340.5 -151q-211 0 -343 151t-132 390zM158 520q0 -204 114 -345.5t307 -141.5q190 0 304 142t114 345v42q0 199 -115 342.5t-305 143.5q-191 0 -305 -143.5 t-114 -342.5v-42zM292 1293q0 80 50 129.5t126 49.5q72 0 153 -62t134 -62q50 0 85.5 39.5t35.5 101.5l55 -10q0 -82 -51 -134t-125 -52q-76 0 -154 62.5t-133 62.5q-52 0 -86.5 -37t-34.5 -98z" />
197
+ <glyph unicode="&#xf6;" horiz-adv-x="1155" d="M104 0zM104 520v42q0 238 131.5 389t341.5 151q211 0 342.5 -151t131.5 -389v-42q0 -239 -131.5 -390t-340.5 -151q-211 0 -343 151t-132 390zM158 520q0 -204 114 -345.5t307 -141.5q190 0 304 142t114 345v42q0 199 -115 342.5t-305 143.5q-191 0 -305 -143.5 t-114 -342.5v-42zM284 1351v118h137v-118h-137zM754 1351v118h136v-118h-136z" />
198
+ <glyph unicode="&#xf7;" horiz-adv-x="1148" d="M74 686v52h998v-52h-998zM536 241v122h96v-122h-96zM536 1020v122h96v-122h-96z" />
199
+ <glyph unicode="&#xf8;" horiz-adv-x="1155" d="M104 520v42q0 238 131.5 389t341.5 151q69 0 130.5 -17.5t114.5 -50.5l98 185h63l-116 -218q87 -73 135.5 -186t48.5 -253v-42q0 -239 -131.5 -390t-340.5 -151q-62 0 -118.5 14t-105.5 41l-95 -179h-63l111 209q-97 70 -150.5 188.5t-53.5 267.5zM158 520 q0 -126 45 -232.5t128 -167.5h6l458 864q-47 30 -102 47t-116 17q-191 0 -305 -143.5t-114 -342.5v-42zM381 83q42 -25 92 -37.5t106 -12.5q190 0 304 142t114 345v42q0 114 -41 215.5t-113 164.5l-6 1z" />
200
+ <glyph unicode="&#xf9;" horiz-adv-x="1222" d="M44 0zM44 1028v54h143h54v-619q0 -220 81 -325t219 -105q169 0 259.5 83t115.5 220v692h-163v54h163h55v-1028h163v-54h-208l-8 194q-51 -103 -145.5 -159t-229.5 -56q-167 0 -261.5 118.5t-94.5 367.5v563h-143zM275 1492l2 5h89l220 -261l-2 -5h-75z" />
201
+ <glyph unicode="&#xfa;" horiz-adv-x="1222" d="M44 0zM44 1028v54h143h54v-619q0 -220 81 -325t219 -105q169 0 259.5 83t115.5 220v692h-163v54h163h55v-1028h163v-54h-208l-8 194q-51 -103 -145.5 -159t-229.5 -56q-167 0 -261.5 118.5t-94.5 367.5v563h-143zM471 1210l220 261h78l2 -5l-231 -261h-67z" />
202
+ <glyph unicode="&#xfb;" horiz-adv-x="1222" d="M44 0zM44 1028v54h143h54v-619q0 -220 81 -325t219 -105q169 0 259.5 83t115.5 220v692h-163v54h163h55v-1028h163v-54h-208l-8 194q-51 -103 -145.5 -159t-229.5 -56q-167 0 -261.5 118.5t-94.5 367.5v563h-143zM288 1258v17l210 206h80l214 -210v-13h-70l-185 186 l-183 -186h-66z" />
203
+ <glyph unicode="&#xfc;" horiz-adv-x="1222" d="M44 0zM44 1028v54h143h54v-619q0 -220 81 -325t219 -105q169 0 259.5 83t115.5 220v692h-163v54h163h55v-1028h163v-54h-208l-8 194q-51 -103 -145.5 -159t-229.5 -56q-167 0 -261.5 118.5t-94.5 367.5v563h-143zM238 1331v118h137v-118h-137zM708 1331v118h136v-118 h-136z" />
204
+ <glyph unicode="&#xfd;" horiz-adv-x="1185" d="M55 0zM55 1028v54h319v-54h-142l335 -832l40 -108h6l6 16l353 924h-142v54h320v-54h-118l-460 -1208q-44 -114 -102.5 -185.5t-186.5 -71.5q-19 0 -42 3.5t-34 7.5l9 51q11 -3 33 -6t34 -3q92 0 143.5 54t91.5 160l65 176l-410 1022h-118zM544 1210l220 261h78l2 -5 l-231 -261h-67z" />
205
+ <glyph unicode="&#xfe;" horiz-adv-x="1121" d="M65 -362h163v1868h-163v54h217v-671q54 99 147 156t220 57q191 0 299.5 -151.5t108.5 -408.5v-21q0 -250 -108 -396t-298 -146q-127 0 -221.5 51t-147.5 138v-530h163v-54h-380v54zM282 269q40 -108 134 -172t236 -64q171 0 260.5 132t89.5 356v21q0 225 -90.5 365.5 t-261.5 140.5q-157 0 -244 -79t-124 -194v-506z" />
206
+ <glyph unicode="&#xff;" horiz-adv-x="1185" d="M55 0zM55 1028v54h319v-54h-142l335 -832l40 -108h6l6 16l353 924h-142v54h320v-54h-118l-460 -1208q-44 -114 -102.5 -185.5t-186.5 -71.5q-19 0 -42 3.5t-34 7.5l9 51q11 -3 33 -6t34 -3q92 0 143.5 54t91.5 160l65 176l-410 1022h-118zM311 1331v118h137v-118h-137z M781 1331v118h136v-118h-136z" />
207
+ <glyph unicode="&#x152;" horiz-adv-x="1973" d="M114 576v304q0 265 143 431t374 166q80 0 161.5 -6t170.5 -15h872v-293h-54v239h-778v-616h630v-54h-630v-678h778v239h54v-293h-872q-103 -10 -178 -15.5t-152 -5.5q-231 0 -375 166t-144 431zM168 576q0 -240 127.5 -391.5t337.5 -151.5q37 0 76 0.5t77 2.5v18h163 v1348h-163v18q-38 1 -77 2t-78 1q-211 0 -337 -149t-126 -392v-306z" />
208
+ <glyph unicode="&#x153;" horiz-adv-x="1932" d="M104 520v42q0 238 131.5 389t341.5 151q165 0 284.5 -96t165.5 -259q45 161 161 258t265 97q183 0 298.5 -120t115.5 -322v-83h-811v-13v-64q0 -196 115 -331.5t285 -135.5q121 0 202.5 33t139.5 99l29 -42q-64 -71 -155.5 -107.5t-215.5 -36.5q-146 0 -265 97t-165 255 q-47 -163 -165.5 -257.5t-281.5 -94.5q-211 0 -343 151t-132 390zM158 520q0 -204 114 -345.5t307 -141.5q190 0 304 142t114 345v42q0 199 -115 342.5t-305 143.5q-191 0 -305 -143.5t-114 -342.5v-42zM1064 637l3 -6h746v33q0 165 -100 274.5t-260 109.5 q-161 0 -268 -117.5t-121 -293.5z" />
209
+ <glyph unicode="&#x178;" horiz-adv-x="1429" d="M55 0zM55 1402v54h316v-54h-131l449 -755l26 -50l27 50l451 755h-131v54h316v-54h-120l-514 -849v-499h163v-54h-381v54h163v499l-515 849h-119zM425 1662v118h137v-118h-137zM895 1662v118h136v-118h-136z" />
210
+ <glyph unicode="&#x2c6;" horiz-adv-x="779" d="M104 1252v17l210 206h80l214 -210v-13h-70l-185 186l-183 -186h-66z" />
211
+ <glyph unicode="&#x2dc;" horiz-adv-x="923" d="M127 1286q0 80 50 129.5t126 49.5q72 0 153 -62t134 -62q50 0 85.5 39.5t35.5 101.5l55 -10q0 -82 -51 -134t-125 -52q-76 0 -154 62.5t-133 62.5q-52 0 -86.5 -37t-34.5 -98z" />
212
+ <glyph unicode="&#x2000;" horiz-adv-x="942" />
213
+ <glyph unicode="&#x2001;" horiz-adv-x="1884" />
214
+ <glyph unicode="&#x2002;" horiz-adv-x="942" />
215
+ <glyph unicode="&#x2003;" horiz-adv-x="1884" />
216
+ <glyph unicode="&#x2004;" horiz-adv-x="628" />
217
+ <glyph unicode="&#x2005;" horiz-adv-x="471" />
218
+ <glyph unicode="&#x2006;" horiz-adv-x="314" />
219
+ <glyph unicode="&#x2007;" horiz-adv-x="314" />
220
+ <glyph unicode="&#x2008;" horiz-adv-x="235" />
221
+ <glyph unicode="&#x2009;" horiz-adv-x="376" />
222
+ <glyph unicode="&#x200a;" horiz-adv-x="104" />
223
+ <glyph unicode="&#x2010;" horiz-adv-x="789" d="M154 599v54h470v-54h-470z" />
224
+ <glyph unicode="&#x2011;" horiz-adv-x="789" d="M154 599v54h470v-54h-470z" />
225
+ <glyph unicode="&#x2012;" horiz-adv-x="789" d="M154 599v54h470v-54h-470z" />
226
+ <glyph unicode="&#x2013;" horiz-adv-x="1412" d="M149 721v54h1086v-54h-1086zM161 721z" />
227
+ <glyph unicode="&#x2014;" horiz-adv-x="1673" d="M116 721v54h1336v-54h-1336zM165 721z" />
228
+ <glyph unicode="&#x2018;" horiz-adv-x="320" d="M101 1128v168q0 88 27.5 158t78.5 124l37 -32q-47 -61 -68 -117.5t-21 -130.5v-170h-54z" />
229
+ <glyph unicode="&#x2019;" horiz-adv-x="320" d="M77 1143q46 60 67.5 116.5t21.5 131.5v169h54v-167q0 -89 -28 -159t-78 -123z" />
230
+ <glyph unicode="&#x201a;" horiz-adv-x="300" d="M47 -150q46 61 67.5 117t21.5 131v170h54v-168q0 -89 -28 -158.5t-78 -123.5z" />
231
+ <glyph unicode="&#x201c;" horiz-adv-x="500" d="M101 1128v168q0 88 27.5 158t78.5 124l37 -32q-47 -61 -68 -117.5t-21 -130.5v-170h-54zM101 1128zM281 1128v168q0 88 27.5 158t78.5 124l37 -32q-47 -61 -68 -117.5t-21 -130.5v-170h-54z" />
232
+ <glyph unicode="&#x201d;" horiz-adv-x="502" d="M77 1111zM77 1143q46 60 67.5 116.5t21.5 131.5v169h54v-167q0 -89 -28 -159t-78 -123zM259 1143q46 60 67.5 116.5t21.5 131.5v169h54v-167q0 -89 -28 -159t-78 -123z" />
233
+ <glyph unicode="&#x201e;" horiz-adv-x="481" d="M47 -150q46 61 67.5 117t21.5 131v170h54v-168q0 -89 -28 -158.5t-78 -123.5zM218 -150q46 61 67.5 117t21.5 131v170h54v-168q0 -89 -28 -158.5t-78 -123.5z" />
234
+ <glyph unicode="&#x2022;" horiz-adv-x="655" d="M135 703v70q0 70 45 115t121 45t122 -45.5t46 -114.5v-70q0 -70 -45.5 -114t-121.5 -44q-77 0 -122 44t-45 114z" />
235
+ <glyph unicode="&#x2026;" horiz-adv-x="1255" d="M183 0v130h86v-130h-86zM183 0zM567 0v130h86v-130h-86zM936 0v130h86v-130h-86z" />
236
+ <glyph unicode="&#x202f;" horiz-adv-x="376" />
237
+ <glyph unicode="&#x2039;" horiz-adv-x="559" d="M68 551v19l295 370h70l-294 -380l294 -379h-70z" />
238
+ <glyph unicode="&#x203a;" horiz-adv-x="557" d="M83 171l293 379l-293 390h70l294 -380v-19l-294 -370h-70z" />
239
+ <glyph unicode="&#x205f;" horiz-adv-x="471" />
240
+ <glyph unicode="&#x20ac;" horiz-adv-x="1047" d="M71 553v55h187v222h-187v56h187v56q0 244 130.5 389.5t342.5 145.5q54 0 107 -8t115 -23v-58q-53 16 -109.5 25.5t-112.5 9.5q-193 0 -306 -128.5t-113 -350.5v-58h593v-56h-593v-222h593v-55h-593v-39q0 -219 114.5 -350t306.5 -131q57 0 113 8.5t107 25.5v-57 q-52 -15 -108 -23t-112 -8q-212 0 -343.5 145t-131.5 390v39h-187z" />
241
+ <glyph unicode="&#x2122;" horiz-adv-x="1238" d="M98 1399v57h384v-57h-158v-480h-56v480h-170zM560 919v537h75l181 -452h6l183 452h69v-537h-55v421l-6 1l-169 -422h-51l-172 436l-6 -1v-435h-55z" />
242
+ <glyph unicode="&#x25fc;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
243
+ <glyph unicode="&#xfb03;" horiz-adv-x="1905" d="M89 0zM89 1027v55h188v178q0 153 74.5 237t208.5 84q33 0 65.5 -4t62.5 -13l-8 -52q-32 8 -56.5 11.5t-62.5 3.5q-108 0 -169 -71t-61 -196v-178h286v-55h-286v-973h163v-54h-380v54h163v973h-188zM793 1027v55h188v158q0 163 85.5 252t237.5 89q67 0 135 -13.5 t133 -43.5l-8 -52q-66 29 -121.5 42t-137.5 13q-126 0 -198 -76t-72 -211v-158h626v-1028h163v-54h-380v54h163v973h-572v-973h163v-54h-380v54h163v973h-188z" />
244
+ <glyph unicode="&#xfb04;" horiz-adv-x="2025" d="M89 0zM89 1027v55h188v178q0 153 74.5 237t208.5 84q33 0 65.5 -4t62.5 -13l-8 -52q-32 8 -56.5 11.5t-62.5 3.5q-108 0 -169 -71t-61 -196v-178h286v-55h-286v-973h163v-54h-380v54h163v973h-188zM811 1027v55h188v178q0 153 74.5 237t208.5 84q33 0 65.5 -4t62.5 -13 l-8 -52q-32 8 -56.5 11.5t-62.5 3.5q-108 0 -169 -71t-61 -196v-178h286v-55h-286v-973h163v-54h-380v54h163v973h-188zM1526 0v54h163v1452h-163v54h217v-1506h163v-54h-380z" />
245
+ <hkern u1="&#x22;" u2="w" k="-11" />
246
+ <hkern u1="&#x27;" u2="w" k="-11" />
247
+ <hkern u1="&#x28;" u2="&#x178;" k="-22" />
248
+ <hkern u1="&#x28;" u2="&#xdd;" k="-22" />
249
+ <hkern u1="&#x28;" u2="Y" k="-22" />
250
+ <hkern u1="&#x28;" u2="W" k="-18" />
251
+ <hkern u1="&#x28;" u2="V" k="-20" />
252
+ <hkern u1="&#x2f;" u2="&#x2f;" k="224" />
253
+ <hkern u1="A" u2="w" k="123" />
254
+ <hkern u1="A" u2="t" k="107" />
255
+ <hkern u1="A" u2="&#x3f;" k="61" />
256
+ <hkern u1="C" u2="&#x7d;" k="17" />
257
+ <hkern u1="C" u2="]" k="12" />
258
+ <hkern u1="C" u2="&#x29;" k="26" />
259
+ <hkern u1="D" u2="&#xc6;" k="33" />
260
+ <hkern u1="E" u2="w" k="22" />
261
+ <hkern u1="E" u2="f" k="18" />
262
+ <hkern u1="F" u2="&#x2026;" k="234" />
263
+ <hkern u1="F" u2="&#x201e;" k="234" />
264
+ <hkern u1="F" u2="&#x201a;" k="234" />
265
+ <hkern u1="F" u2="&#x153;" k="21" />
266
+ <hkern u1="F" u2="&#x152;" k="50" />
267
+ <hkern u1="F" u2="&#xff;" k="24" />
268
+ <hkern u1="F" u2="&#xfd;" k="24" />
269
+ <hkern u1="F" u2="&#xfc;" k="22" />
270
+ <hkern u1="F" u2="&#xfb;" k="22" />
271
+ <hkern u1="F" u2="&#xfa;" k="22" />
272
+ <hkern u1="F" u2="&#xf9;" k="22" />
273
+ <hkern u1="F" u2="&#xf6;" k="21" />
274
+ <hkern u1="F" u2="&#xf5;" k="21" />
275
+ <hkern u1="F" u2="&#xf4;" k="21" />
276
+ <hkern u1="F" u2="&#xf3;" k="21" />
277
+ <hkern u1="F" u2="&#xf2;" k="21" />
278
+ <hkern u1="F" u2="&#xeb;" k="21" />
279
+ <hkern u1="F" u2="&#xea;" k="21" />
280
+ <hkern u1="F" u2="&#xe9;" k="21" />
281
+ <hkern u1="F" u2="&#xe8;" k="21" />
282
+ <hkern u1="F" u2="&#xe7;" k="21" />
283
+ <hkern u1="F" u2="&#xe5;" k="34" />
284
+ <hkern u1="F" u2="&#xe4;" k="34" />
285
+ <hkern u1="F" u2="&#xe3;" k="34" />
286
+ <hkern u1="F" u2="&#xe2;" k="34" />
287
+ <hkern u1="F" u2="&#xe1;" k="34" />
288
+ <hkern u1="F" u2="&#xe0;" k="34" />
289
+ <hkern u1="F" u2="&#xd8;" k="50" />
290
+ <hkern u1="F" u2="&#xd6;" k="50" />
291
+ <hkern u1="F" u2="&#xd5;" k="50" />
292
+ <hkern u1="F" u2="&#xd4;" k="50" />
293
+ <hkern u1="F" u2="&#xd3;" k="50" />
294
+ <hkern u1="F" u2="&#xd2;" k="50" />
295
+ <hkern u1="F" u2="&#xc7;" k="50" />
296
+ <hkern u1="F" u2="&#xc5;" k="299" />
297
+ <hkern u1="F" u2="&#xc4;" k="299" />
298
+ <hkern u1="F" u2="&#xc3;" k="299" />
299
+ <hkern u1="F" u2="&#xc2;" k="299" />
300
+ <hkern u1="F" u2="&#xc1;" k="299" />
301
+ <hkern u1="F" u2="&#xc0;" k="299" />
302
+ <hkern u1="F" u2="y" k="24" />
303
+ <hkern u1="F" u2="v" k="24" />
304
+ <hkern u1="F" u2="u" k="22" />
305
+ <hkern u1="F" u2="q" k="21" />
306
+ <hkern u1="F" u2="o" k="21" />
307
+ <hkern u1="F" u2="g" k="21" />
308
+ <hkern u1="F" u2="e" k="21" />
309
+ <hkern u1="F" u2="d" k="21" />
310
+ <hkern u1="F" u2="c" k="21" />
311
+ <hkern u1="F" u2="a" k="34" />
312
+ <hkern u1="F" u2="T" k="-20" />
313
+ <hkern u1="F" u2="Q" k="50" />
314
+ <hkern u1="F" u2="O" k="50" />
315
+ <hkern u1="F" u2="J" k="320" />
316
+ <hkern u1="F" u2="G" k="50" />
317
+ <hkern u1="F" u2="C" k="50" />
318
+ <hkern u1="F" u2="A" k="299" />
319
+ <hkern u1="F" u2="&#x2e;" k="234" />
320
+ <hkern u1="F" u2="&#x2c;" k="234" />
321
+ <hkern u1="F" u2="r" k="26" />
322
+ <hkern u1="K" u2="w" k="63" />
323
+ <hkern u1="L" u2="w" k="92" />
324
+ <hkern u1="N" u2="&#xc5;" k="85" />
325
+ <hkern u1="N" u2="&#xc4;" k="85" />
326
+ <hkern u1="N" u2="&#xc3;" k="85" />
327
+ <hkern u1="N" u2="&#xc2;" k="85" />
328
+ <hkern u1="N" u2="&#xc1;" k="85" />
329
+ <hkern u1="N" u2="&#xc0;" k="85" />
330
+ <hkern u1="N" u2="A" k="85" />
331
+ <hkern u1="O" u2="&#xc6;" k="33" />
332
+ <hkern u1="P" u2="&#xc6;" k="97" />
333
+ <hkern u1="P" u2="t" k="-14" />
334
+ <hkern u1="Q" u2="&#x178;" k="35" />
335
+ <hkern u1="Q" u2="&#xdd;" k="35" />
336
+ <hkern u1="Q" u2="Y" k="35" />
337
+ <hkern u1="Q" u2="W" k="20" />
338
+ <hkern u1="Q" u2="V" k="28" />
339
+ <hkern u1="Q" u2="T" k="43" />
340
+ <hkern u1="R" u2="&#x178;" k="100" />
341
+ <hkern u1="R" u2="&#xdd;" k="100" />
342
+ <hkern u1="R" u2="Y" k="100" />
343
+ <hkern u1="R" u2="V" k="80" />
344
+ <hkern u1="R" u2="T" k="80" />
345
+ <hkern u1="T" u2="&#xf8;" k="95" />
346
+ <hkern u1="T" u2="&#xe6;" k="114" />
347
+ <hkern u1="T" u2="&#xc6;" k="179" />
348
+ <hkern u1="T" u2="&#xbb;" k="216" />
349
+ <hkern u1="T" u2="&#xab;" k="328" />
350
+ <hkern u1="T" u2="w" k="57" />
351
+ <hkern u1="T" u2="r" k="75" />
352
+ <hkern u1="V" u2="&#x7d;" k="-19" />
353
+ <hkern u1="V" u2="r" k="30" />
354
+ <hkern u1="V" u2="]" k="-17" />
355
+ <hkern u1="V" u2="&#x29;" k="-20" />
356
+ <hkern u1="W" u2="&#x7d;" k="-14" />
357
+ <hkern u1="W" u2="r" k="21" />
358
+ <hkern u1="W" u2="]" k="-12" />
359
+ <hkern u1="W" u2="&#x29;" k="-15" />
360
+ <hkern u1="Y" u2="&#x2022;" k="45" />
361
+ <hkern u1="Y" u2="&#xf8;" k="64" />
362
+ <hkern u1="Y" u2="&#xe6;" k="63" />
363
+ <hkern u1="Y" u2="&#xc6;" k="96" />
364
+ <hkern u1="Y" u2="&#xbb;" k="51" />
365
+ <hkern u1="Y" u2="&#xab;" k="82" />
366
+ <hkern u1="Y" u2="&#x7d;" k="-19" />
367
+ <hkern u1="Y" u2="t" k="22" />
368
+ <hkern u1="Y" u2="r" k="40" />
369
+ <hkern u1="Y" u2="f" k="22" />
370
+ <hkern u1="Y" u2="]" k="-18" />
371
+ <hkern u1="Y" u2="&#x2a;" k="49" />
372
+ <hkern u1="Y" u2="&#x29;" k="-20" />
373
+ <hkern u1="Y" u2="&#x26;" k="30" />
374
+ <hkern u1="Z" u2="w" k="27" />
375
+ <hkern u1="[" u2="&#xdc;" k="18" />
376
+ <hkern u1="[" u2="&#xdb;" k="18" />
377
+ <hkern u1="[" u2="&#xda;" k="18" />
378
+ <hkern u1="[" u2="&#xd9;" k="18" />
379
+ <hkern u1="[" u2="U" k="18" />
380
+ <hkern u1="[" u2="J" k="18" />
381
+ <hkern u1="f" u2="&#x201d;" k="-16" />
382
+ <hkern u1="f" u2="&#x201c;" k="-16" />
383
+ <hkern u1="f" u2="&#x2019;" k="-16" />
384
+ <hkern u1="f" u2="&#x2018;" k="-16" />
385
+ <hkern u1="f" u2="&#x153;" k="24" />
386
+ <hkern u1="f" u2="&#xeb;" k="24" />
387
+ <hkern u1="f" u2="&#xea;" k="24" />
388
+ <hkern u1="f" u2="&#xe9;" k="24" />
389
+ <hkern u1="f" u2="&#xe8;" k="24" />
390
+ <hkern u1="f" u2="&#xe7;" k="24" />
391
+ <hkern u1="f" u2="q" k="24" />
392
+ <hkern u1="f" u2="g" k="24" />
393
+ <hkern u1="f" u2="e" k="24" />
394
+ <hkern u1="f" u2="d" k="24" />
395
+ <hkern u1="f" u2="c" k="24" />
396
+ <hkern u1="f" u2="&#x27;" k="-16" />
397
+ <hkern u1="f" u2="&#x22;" k="-16" />
398
+ <hkern u1="f" u2="&#x7d;" k="-19" />
399
+ <hkern u1="f" u2="]" k="-18" />
400
+ <hkern u1="f" u2="&#x29;" k="-20" />
401
+ <hkern u1="k" u2="&#x153;" k="20" />
402
+ <hkern u1="k" u2="&#xeb;" k="20" />
403
+ <hkern u1="k" u2="&#xea;" k="20" />
404
+ <hkern u1="k" u2="&#xe9;" k="20" />
405
+ <hkern u1="k" u2="&#xe8;" k="20" />
406
+ <hkern u1="k" u2="&#xe7;" k="20" />
407
+ <hkern u1="k" u2="q" k="20" />
408
+ <hkern u1="k" u2="g" k="20" />
409
+ <hkern u1="k" u2="e" k="20" />
410
+ <hkern u1="k" u2="d" k="20" />
411
+ <hkern u1="k" u2="c" k="20" />
412
+ <hkern u1="l" u2="&#xf6;" k="20" />
413
+ <hkern u1="l" u2="&#xf5;" k="20" />
414
+ <hkern u1="l" u2="&#xf4;" k="20" />
415
+ <hkern u1="l" u2="&#xf3;" k="20" />
416
+ <hkern u1="l" u2="&#xf2;" k="20" />
417
+ <hkern u1="l" u2="o" k="20" />
418
+ <hkern u1="l" u2="g" k="10" />
419
+ <hkern u1="r" u2="w" k="-17" />
420
+ <hkern u1="r" u2="t" k="-32" />
421
+ <hkern u1="r" u2="f" k="-15" />
422
+ <hkern u1="t" u2="&#xf6;" k="20" />
423
+ <hkern u1="t" u2="&#xf5;" k="20" />
424
+ <hkern u1="t" u2="&#xf4;" k="20" />
425
+ <hkern u1="t" u2="&#xf3;" k="20" />
426
+ <hkern u1="t" u2="&#xf2;" k="20" />
427
+ <hkern u1="t" u2="o" k="20" />
428
+ <hkern u1="v" u2="f" k="-13" />
429
+ <hkern u1="w" u2="&#x2026;" k="124" />
430
+ <hkern u1="w" u2="&#x201e;" k="124" />
431
+ <hkern u1="w" u2="&#x201a;" k="124" />
432
+ <hkern u1="w" u2="&#x2e;" k="124" />
433
+ <hkern u1="w" u2="&#x2c;" k="124" />
434
+ <hkern u1="y" u2="f" k="-13" />
435
+ <hkern u1="&#x7b;" u2="&#xdc;" k="20" />
436
+ <hkern u1="&#x7b;" u2="&#xdb;" k="20" />
437
+ <hkern u1="&#x7b;" u2="&#xda;" k="20" />
438
+ <hkern u1="&#x7b;" u2="&#xd9;" k="20" />
439
+ <hkern u1="&#x7b;" u2="U" k="20" />
440
+ <hkern u1="&#x7b;" u2="J" k="20" />
441
+ <hkern u1="&#xc0;" u2="w" k="123" />
442
+ <hkern u1="&#xc0;" u2="t" k="107" />
443
+ <hkern u1="&#xc0;" u2="&#x3f;" k="61" />
444
+ <hkern u1="&#xc1;" u2="w" k="123" />
445
+ <hkern u1="&#xc1;" u2="t" k="107" />
446
+ <hkern u1="&#xc1;" u2="&#x3f;" k="61" />
447
+ <hkern u1="&#xc2;" u2="w" k="123" />
448
+ <hkern u1="&#xc2;" u2="t" k="107" />
449
+ <hkern u1="&#xc2;" u2="&#x3f;" k="61" />
450
+ <hkern u1="&#xc3;" u2="w" k="123" />
451
+ <hkern u1="&#xc3;" u2="t" k="107" />
452
+ <hkern u1="&#xc3;" u2="&#x3f;" k="61" />
453
+ <hkern u1="&#xc4;" u2="w" k="123" />
454
+ <hkern u1="&#xc4;" u2="t" k="107" />
455
+ <hkern u1="&#xc4;" u2="&#x3f;" k="61" />
456
+ <hkern u1="&#xc5;" u2="w" k="123" />
457
+ <hkern u1="&#xc5;" u2="t" k="107" />
458
+ <hkern u1="&#xc5;" u2="&#x3f;" k="61" />
459
+ <hkern u1="&#xc7;" u2="&#x7d;" k="17" />
460
+ <hkern u1="&#xc7;" u2="]" k="12" />
461
+ <hkern u1="&#xc7;" u2="&#x29;" k="26" />
462
+ <hkern u1="&#xc8;" u2="w" k="22" />
463
+ <hkern u1="&#xc8;" u2="f" k="18" />
464
+ <hkern u1="&#xc9;" u2="w" k="22" />
465
+ <hkern u1="&#xc9;" u2="f" k="18" />
466
+ <hkern u1="&#xca;" u2="w" k="22" />
467
+ <hkern u1="&#xca;" u2="f" k="18" />
468
+ <hkern u1="&#xcb;" u2="w" k="22" />
469
+ <hkern u1="&#xcb;" u2="f" k="18" />
470
+ <hkern u1="&#xd0;" u2="&#xc6;" k="33" />
471
+ <hkern u1="&#xd2;" u2="&#xc6;" k="33" />
472
+ <hkern u1="&#xd3;" u2="&#xc6;" k="33" />
473
+ <hkern u1="&#xd4;" u2="&#xc6;" k="33" />
474
+ <hkern u1="&#xd5;" u2="&#xc6;" k="33" />
475
+ <hkern u1="&#xd6;" u2="&#xc6;" k="33" />
476
+ <hkern u1="&#xdd;" u2="&#x2022;" k="45" />
477
+ <hkern u1="&#xdd;" u2="&#xf8;" k="64" />
478
+ <hkern u1="&#xdd;" u2="&#xe6;" k="63" />
479
+ <hkern u1="&#xdd;" u2="&#xc6;" k="96" />
480
+ <hkern u1="&#xdd;" u2="&#xbb;" k="51" />
481
+ <hkern u1="&#xdd;" u2="&#xab;" k="82" />
482
+ <hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
483
+ <hkern u1="&#xdd;" u2="t" k="22" />
484
+ <hkern u1="&#xdd;" u2="r" k="40" />
485
+ <hkern u1="&#xdd;" u2="f" k="22" />
486
+ <hkern u1="&#xdd;" u2="]" k="-18" />
487
+ <hkern u1="&#xdd;" u2="&#x2a;" k="49" />
488
+ <hkern u1="&#xdd;" u2="&#x29;" k="-20" />
489
+ <hkern u1="&#xdd;" u2="&#x26;" k="30" />
490
+ <hkern u1="&#xfd;" u2="f" k="-13" />
491
+ <hkern u1="&#xff;" u2="f" k="-13" />
492
+ <hkern u1="&#x178;" u2="&#x2022;" k="45" />
493
+ <hkern u1="&#x178;" u2="&#xf8;" k="64" />
494
+ <hkern u1="&#x178;" u2="&#xe6;" k="63" />
495
+ <hkern u1="&#x178;" u2="&#xc6;" k="96" />
496
+ <hkern u1="&#x178;" u2="&#xbb;" k="51" />
497
+ <hkern u1="&#x178;" u2="&#xab;" k="82" />
498
+ <hkern u1="&#x178;" u2="&#x7d;" k="-19" />
499
+ <hkern u1="&#x178;" u2="t" k="22" />
500
+ <hkern u1="&#x178;" u2="r" k="40" />
501
+ <hkern u1="&#x178;" u2="f" k="22" />
502
+ <hkern u1="&#x178;" u2="]" k="-18" />
503
+ <hkern u1="&#x178;" u2="&#x2a;" k="49" />
504
+ <hkern u1="&#x178;" u2="&#x29;" k="-20" />
505
+ <hkern u1="&#x178;" u2="&#x26;" k="30" />
506
+ <hkern u1="&#x2018;" u2="w" k="-11" />
507
+ <hkern u1="&#x2019;" u2="w" k="-11" />
508
+ <hkern u1="&#x201c;" u2="w" k="-11" />
509
+ <hkern u1="&#x201d;" u2="w" k="-11" />
510
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v,y,yacute,ydieresis" k="120" />
511
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="80" />
512
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="60" />
513
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="120" />
514
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="12" />
515
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="W" k="149" />
516
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="180" />
517
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="71" />
518
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="264" />
519
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="256" />
520
+ <hkern g1="B" g2="T" k="27" />
521
+ <hkern g1="B" g2="V" k="24" />
522
+ <hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
523
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
524
+ <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
525
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
526
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
527
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
528
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="50" />
529
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
530
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="80" />
531
+ <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
532
+ <hkern g1="C,Ccedilla" g2="T" k="29" />
533
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
534
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
535
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
536
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
537
+ <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
538
+ <hkern g1="T" g2="v,y,yacute,ydieresis" k="72" />
539
+ <hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
540
+ <hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="99" />
541
+ <hkern g1="T" g2="W" k="-15" />
542
+ <hkern g1="T" g2="T" k="-16" />
543
+ <hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="95" />
544
+ <hkern g1="T" g2="V" k="-16" />
545
+ <hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
546
+ <hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="218" />
547
+ <hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="180" />
548
+ <hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="99" />
549
+ <hkern g1="T" g2="x" k="77" />
550
+ <hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="232" />
551
+ <hkern g1="T" g2="m,n,p,ntilde" k="79" />
552
+ <hkern g1="T" g2="S" k="16" />
553
+ <hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="113" />
554
+ <hkern g1="T" g2="z" k="60" />
555
+ <hkern g1="T" g2="s" k="106" />
556
+ <hkern g1="T" g2="J" k="240" />
557
+ <hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
558
+ <hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="120" />
559
+ <hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
560
+ <hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
561
+ <hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
562
+ <hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="224" />
563
+ <hkern g1="K" g2="m,n,p,ntilde" k="23" />
564
+ <hkern g1="L" g2="v,y,yacute,ydieresis" k="133" />
565
+ <hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="65" />
566
+ <hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="54" />
567
+ <hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="138" />
568
+ <hkern g1="L" g2="W" k="143" />
569
+ <hkern g1="L" g2="T" k="275" />
570
+ <hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="44" />
571
+ <hkern g1="L" g2="V" k="256" />
572
+ <hkern g1="L" g2="Y,Yacute,Ydieresis" k="239" />
573
+ <hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
574
+ <hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
575
+ <hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
576
+ <hkern g1="P" g2="X" k="31" />
577
+ <hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="324" />
578
+ <hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="256" />
579
+ <hkern g1="P" g2="Z" k="26" />
580
+ <hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
581
+ <hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
582
+ <hkern g1="P" g2="J" k="200" />
583
+ <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="60" />
584
+ <hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
585
+ <hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
586
+ <hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
587
+ <hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
588
+ <hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="225" />
589
+ <hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="264" />
590
+ <hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
591
+ <hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
592
+ <hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
593
+ <hkern g1="V" g2="J" k="214" />
594
+ <hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
595
+ <hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="50" />
596
+ <hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
597
+ <hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
598
+ <hkern g1="X" g2="V" k="-14" />
599
+ <hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
600
+ <hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="46" />
601
+ <hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
602
+ <hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
603
+ <hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
604
+ <hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="105" />
605
+ <hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
606
+ <hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
607
+ <hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
608
+ <hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
609
+ <hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
610
+ <hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
611
+ <hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="211" />
612
+ <hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="256" />
613
+ <hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
614
+ <hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
615
+ <hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="52" />
616
+ <hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
617
+ <hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
618
+ <hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="73" />
619
+ <hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
620
+ <hkern g1="Y,Yacute,Ydieresis" g2="s" k="108" />
621
+ <hkern g1="Y,Yacute,Ydieresis" g2="J" k="213" />
622
+ <hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
623
+ <hkern g1="W" g2="T" k="-14" />
624
+ <hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
625
+ <hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
626
+ <hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
627
+ <hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
628
+ <hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
629
+ <hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
630
+ <hkern g1="W" g2="J" k="64" />
631
+ <hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
632
+ <hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
633
+ <hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
634
+ <hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
635
+ <hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
636
+ <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
637
+ <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="67" />
638
+ <hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
639
+ <hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
640
+ <hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
641
+ <hkern g1="b,p,thorn" g2="x" k="15" />
642
+ <hkern g1="b,p,thorn" g2="z" k="15" />
643
+ <hkern g1="b,p,thorn" g2="h,k,l" k="10" />
644
+ <hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
645
+ <hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
646
+ <hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
647
+ <hkern g1="h,m,n,ntilde" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="10" />
648
+ <hkern g1="h,m,n,ntilde" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="10" />
649
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
650
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
651
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
652
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
653
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="h,k,l" k="20" />
654
+ <hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
655
+ <hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
656
+ <hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="107" />
657
+ <hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
658
+ <hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
659
+ <hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
660
+ <hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
661
+ <hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
662
+ <hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
663
+ <hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
664
+ <hkern g1="r" g2="h,k,l" k="20" />
665
+ <hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
666
+ <hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
667
+ <hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
668
+ <hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
669
+ <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="107" />
670
+ <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="61" />
671
+ <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="120" />
672
+ <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="59" />
673
+ <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="m,n,p,ntilde" k="20" />
674
+ <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="50" />
675
+ <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="s" k="80" />
676
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="170" />
677
+ </font>
678
+ </defs></svg>