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_slabregular" horiz-adv-x="1128" >
7
+ <font-face units-per-em="2048" ascent="1638" descent="-410" />
8
+ <missing-glyph horiz-adv-x="509" />
9
+ <glyph unicode="&#xfb01;" horiz-adv-x="1239" d="M45 936v146h169v117q0 182 107 282t296 100q66 0 132 -16t152 -45l-33 -160q-53 21 -113 36t-123 15q-118 0 -169.5 -52t-51.5 -160v-117h617v-928l163 -28v-126h-523v126l163 28v782h-420v-782l163 -28v-126h-523v126l163 28v782h-169z" />
10
+ <glyph unicode="&#xfb02;" horiz-adv-x="1350" d="M51 0v126l163 28v782h-144v146h144v78q0 201 117.5 311t325.5 110q86 0 170 -16t195 -46h89v-1365l163 -28v-126h-523v126l163 28v1226q-58 14 -119 22.5t-123 8.5q-138 0 -199.5 -62t-61.5 -189v-78h251v-146h-251v-782l163 -28v-126h-523z" />
11
+ <glyph horiz-adv-x="0" />
12
+ <glyph unicode="&#xd;" horiz-adv-x="509" />
13
+ <glyph horiz-adv-x="0" />
14
+ <glyph unicode="&#x9;" horiz-adv-x="0" />
15
+ <glyph unicode=" " horiz-adv-x="509" />
16
+ <glyph unicode="&#x09;" horiz-adv-x="509" />
17
+ <glyph unicode="&#xa0;" horiz-adv-x="509" />
18
+ <glyph unicode="!" horiz-adv-x="483" d="M143 0v204h197v-204h-197zM143 478v978h197v-978h-197z" />
19
+ <glyph unicode="&#x22;" horiz-adv-x="765" d="M166 1040v520h158v-270l-61 -250h-97zM474 1040v520h158v-270l-61 -250h-97z" />
20
+ <glyph unicode="#" horiz-adv-x="1246" d="M63 410v140h263l68 348h-255v142h283l82 416h151l-82 -416h255l82 416h151l-82 -416h200v-142h-227l-68 -348h220v-140h-248l-80 -410h-151l80 410h-256l-80 -410h-151l80 410h-235zM477 550h256l68 348h-256z" />
21
+ <glyph unicode="$" horiz-adv-x="1110" d="M82 424l2 5h190q0 -154 77.5 -219.5t190.5 -65.5q129 0 201 61.5t72 170.5q0 90 -63.5 153.5t-210.5 113.5q-202 61 -305 163t-103 272q0 165 95 269t261 125v221h158v-222q167 -24 259.5 -143.5t92.5 -320.5h-196q0 136 -62.5 220t-174.5 84q-118 0 -177 -61.5 t-59 -168.5q0 -97 61 -157t219 -114q204 -66 303 -164.5t99 -267.5q0 -172 -103 -274t-283 -121v-191h-156v191q-172 18 -282 125.5t-106 315.5z" />
22
+ <glyph unicode="%" horiz-adv-x="1460" d="M77 1099v77q0 127 82 214t218 87q138 0 220 -86.5t82 -214.5v-77q0 -127 -82 -213t-218 -86q-137 0 -219.5 86t-82.5 213zM223 1099q0 -74 40.5 -125.5t115.5 -51.5q73 0 113.5 51t40.5 126v77q0 74 -41 126.5t-115 52.5t-114 -52.5t-40 -126.5v-77zM333 177l711 1138 l109 -67l-711 -1138zM782 279v78q0 126 82 213t218 87q137 0 219.5 -86.5t82.5 -213.5v-78q0 -128 -82 -214t-218 -86q-138 0 -220 86t-82 214zM928 279q0 -75 40.5 -126.5t115.5 -51.5q74 0 114 51.5t40 126.5v78q0 74 -41 126t-115 52t-114 -52t-40 -126v-78z" />
23
+ <glyph unicode="&#x26;" horiz-adv-x="1289" d="M74 392q0 122 70.5 213.5t210.5 183.5q-78 99 -116 176.5t-38 159.5q0 169 97.5 260.5t268.5 91.5q158 0 257 -91t99 -219q0 -98 -52.5 -169.5t-155.5 -146.5l-109 -80l340 -409q41 65 64 144t23 167h176q0 -131 -39 -243t-113 -201l185 -224l-2 -5h-229l-85 102 q-80 -60 -177 -91.5t-201 -31.5q-217 0 -345.5 115t-128.5 298zM271 392q0 -113 71 -186t206 -73q72 0 142 24.5t132 70.5l-361 435l-40 -29q-91 -68 -120.5 -130t-29.5 -112zM398 1127q0 -53 27 -110.5t81 -125.5l138 95q57 38 77.5 82.5t20.5 98.5q0 61 -48.5 108 t-126.5 47q-81 0 -125 -56.5t-44 -138.5z" />
24
+ <glyph unicode="'" horiz-adv-x="460" d="M166 1055v505h158v-223l-61 -282h-97z" />
25
+ <glyph unicode="(" horiz-adv-x="662" d="M114 582v9q0 394 159 673t334 372l6 -1l37 -116q-137 -107 -238 -343t-101 -583v-13q0 -348 100.5 -583.5t238.5 -351.5l-37 -108h-6q-175 93 -334 371.5t-159 673.5z" />
26
+ <glyph unicode=")" horiz-adv-x="654" d="M11 -355q135 105 237 345.5t102 589.5v13q0 343 -105 584t-234 351l37 108h6q174 -93 333.5 -372t159.5 -673v-9q0 -395 -159.5 -673.5t-333.5 -371.5h-6z" />
27
+ <glyph unicode="*" horiz-adv-x="958" d="M66 1071l49 154l296 -111l-10 342h161l-10 -348l293 110l48 -156l-302 -89l193 -270l-131 -96l-181 287l-176 -279l-132 93l198 274z" />
28
+ <glyph unicode="+" horiz-adv-x="1145" d="M73 605v178h401v423h197v-423h400v-178h-400v-459h-197v459h-401z" />
29
+ <glyph unicode="," horiz-adv-x="404" d="M23 -237q47 72 71 147t24 159v152h197v-149q0 -98 -49 -205t-132 -178z" />
30
+ <glyph unicode="-" horiz-adv-x="797" d="M154 538v154h489v-154h-489z" />
31
+ <glyph unicode="." horiz-adv-x="493" d="M145 0v202h197v-202h-197z" />
32
+ <glyph unicode="/" horiz-adv-x="824" d="M0 -125l608 1581h166l-607 -1581h-167z" />
33
+ <glyph unicode="0" horiz-adv-x="1168" d="M121 555v345q0 278 124 427.5t338 149.5q215 0 340 -149.5t125 -427.5v-345q0 -279 -124 -427.5t-339 -148.5q-214 0 -339 149t-125 427zM318 515q0 -189 69 -285.5t198 -96.5q131 0 198.5 96t67.5 286v427q0 189 -68.5 284.5t-199.5 95.5q-129 0 -197 -95.5t-68 -284.5 v-427z" />
34
+ <glyph unicode="1" horiz-adv-x="844" d="M117 1241v123l426 92v-1302l224 -28v-126h-646v126l225 28v1091z" />
35
+ <glyph unicode="2" horiz-adv-x="1131" d="M76 1033q-5 188 124.5 316t359.5 128q197 0 313.5 -114.5t116.5 -291.5q0 -119 -70.5 -238t-198.5 -257l-383 -417l2 -5h517l16 167h167v-321h-943v135l477 530q128 143 173.5 227t45.5 172q0 109 -64 183.5t-169 74.5q-151 0 -222 -77t-71 -218h-189z" />
36
+ <glyph unicode="3" horiz-adv-x="1106" d="M75 378l3 6h188q0 -115 70.5 -183t193.5 -68q125 0 196 68t71 201q0 135 -63 199t-199 64h-172v154h172q131 0 185.5 65.5t54.5 182.5q0 125 -62 190t-183 65q-115 0 -184.5 -67.5t-69.5 -179.5h-189l-2 6q-5 165 119.5 280.5t325.5 115.5q202 0 322 -107.5t120 -306.5 q0 -90 -54.5 -179.5t-163.5 -136.5q131 -43 185.5 -135t54.5 -206q0 -199 -130.5 -313t-333.5 -114q-200 0 -330 107.5t-125 291.5z" />
37
+ <glyph unicode="4" horiz-adv-x="1187" d="M63 336v111l642 1009h208v-966h201v-154h-201v-182l163 -28v-126h-522v126l163 28v182h-654zM273 490h444v685l-6 2l-20 -53z" />
38
+ <glyph unicode="5" horiz-adv-x="1081" d="M97 377l2 6h178q0 -118 68.5 -184t176.5 -66q125 0 194 88t69 241q0 141 -69.5 230.5t-192.5 89.5q-116 0 -168.5 -35t-76.5 -107l-164 17l84 799h769v-288h-148l-19 113h-435l-47 -409q45 34 101.5 56.5t130.5 24.5q201 2 316.5 -131t115.5 -358q0 -219 -117.5 -352 t-342.5 -133q-185 0 -307.5 101t-117.5 297z" />
39
+ <glyph unicode="6" horiz-adv-x="1144" d="M121 573v196q0 346 152 527t391 181q74 0 147.5 -17t121.5 -43l-38 -147q-47 23 -103 37.5t-128 14.5q-153 0 -243.5 -115.5t-96.5 -348.5l4 -4q56 52 137 82.5t175 30.5q195 0 311 -135t116 -342q0 -226 -123.5 -368.5t-329.5 -142.5q-213 0 -353 155t-140 439zM317 554 q0 -203 84.5 -312t212.5 -109q121 0 188.5 102.5t67.5 254.5q0 144 -72.5 237t-200.5 93q-101 0 -172 -40.5t-108 -108.5v-117z" />
40
+ <glyph unicode="7" d="M76 1134v322h984v-155q-264 -314 -356.5 -556.5t-133.5 -587.5l-16 -157h-197l16 157q42 344 163 615t331 529h-608l-15 -167h-168z" />
41
+ <glyph unicode="8" horiz-adv-x="1131" d="M92 394q0 123 74 217t200 138q-109 42 -171 127.5t-62 199.5q0 192 118.5 296.5t312.5 104.5q192 0 313.5 -104.5t121.5 -296.5q0 -114 -64 -199.5t-173 -127.5q126 -44 201.5 -138t75.5 -217q0 -202 -131.5 -308.5t-341.5 -106.5q-214 0 -344 106.5t-130 308.5zM289 398 q0 -124 75.5 -194.5t201.5 -70.5q123 0 200 71t77 194q0 120 -79 197t-200 77q-122 0 -198.5 -76.5t-76.5 -197.5zM330 1072q0 -111 65 -178t171 -67q104 0 170 67t66 178q0 108 -67.5 179t-170.5 71q-105 0 -169.5 -68.5t-64.5 -181.5z" />
42
+ <glyph unicode="9" horiz-adv-x="1154" d="M84 958q0 228 131.5 373.5t319.5 145.5q228 0 359.5 -142.5t131.5 -421.5v-263q0 -341 -140.5 -506t-374.5 -165q-76 0 -155.5 14.5t-142.5 44.5l30 149q61 -29 124.5 -41.5t143.5 -12.5q142 0 224.5 108.5t85.5 349.5l-4 5q-40 -67 -112 -103t-162 -36 q-213 0 -336 131.5t-123 369.5zM281 958q0 -157 70 -251.5t192 -94.5q109 0 181.5 47t104.5 120v154q0 193 -73.5 291t-214.5 98q-109 0 -184.5 -102t-75.5 -262z" />
43
+ <glyph unicode=":" horiz-adv-x="419" d="M145 0v202h197v-202h-197zM145 0zM145 880v202h197v-202h-197z" />
44
+ <glyph unicode=";" horiz-adv-x="424" d="M53 0zM53 -237q47 72 71 147t24 159v152h197v-149q0 -98 -49 -205t-132 -178zM146 880v202h197v-202h-197z" />
45
+ <glyph unicode="&#x3c;" horiz-adv-x="1017" d="M76 486v149l816 378v-201l-559 -233l-85 -18v-6l85 -19l559 -228v-201z" />
46
+ <glyph unicode="=" horiz-adv-x="1127" d="M147 407v164h834v-164h-834zM147 823v164h834v-164h-834z" />
47
+ <glyph unicode="&#x3e;" horiz-adv-x="1060" d="M125 87v196l598 238l84 17v6l-84 20l-598 234v195l855 -378v-149z" />
48
+ <glyph unicode="?" horiz-adv-x="953" d="M66 1122q-3 161 113 258t296 97q197 0 306 -100.5t109 -280.5q0 -129 -70.5 -236t-186.5 -219q-53 -54 -64.5 -97t-11.5 -134h-197q1 146 24.5 201.5t125.5 147.5q99 117 141 180t42 152q0 106 -56.5 163t-161.5 57q-91 0 -154.5 -49.5t-63.5 -145.5h-188zM358 0v208h205 v-208h-205z" />
49
+ <glyph unicode="@" horiz-adv-x="1821" d="M86 478q19 423 249 688t602 265q379 0 581.5 -250t185.5 -679q-9 -214 -120 -368.5t-332 -154.5q-73 0 -126.5 41.5t-76.5 116.5q-50 -80 -122 -119t-167 -39q-125 0 -194 120.5t-51 316.5q23 259 137.5 415.5t278.5 156.5q105 0 168.5 -26t140.5 -80l-4 -4h6l-51 -585 q-9 -110 21.5 -151.5t81.5 -41.5q123 0 196.5 113.5t81.5 288.5q17 382 -143.5 595.5t-495.5 213.5q-309 0 -496 -231t-202 -602q-18 -376 150 -594.5t482 -218.5q88 0 178 21.5t152 56.5l39 -107q-68 -42 -171.5 -65.5t-201.5 -23.5q-380 0 -588 249.5t-189 681.5zM691 416 q-11 -141 22 -215.5t107 -74.5q63 0 116.5 25t97.5 88q-1 12 -0.5 25t2.5 29l47 538q-26 12 -54.5 19t-59.5 7q-125 0 -191 -109t-87 -332z" />
50
+ <glyph unicode="A" horiz-adv-x="1500" d="M55 0v126l108 15l509 1315h169l500 -1315l107 -15v-126h-418v126l110 19l-96 268h-583l-99 -268l110 -19v-126h-417zM522 578h462l-226 625h-6z" />
51
+ <glyph unicode="B" horiz-adv-x="1345" d="M71 0v126l163 28v1147l-163 28v127h163h475q228 0 356.5 -98.5t128.5 -295.5q0 -97 -61.5 -173.5t-162.5 -113.5q131 -28 207 -129t76 -235q0 -200 -130 -305.5t-352 -105.5h-700zM431 154h340q135 0 209.5 66.5t74.5 188.5q0 128 -62.5 201t-191.5 73h-370v-529z M431 837h329q106 3 171.5 63t65.5 166q0 118 -74 176.5t-214 58.5h-278v-464z" />
52
+ <glyph unicode="C" horiz-adv-x="1321" d="M71 717v21q0 320 179 529.5t469 209.5q166 0 292 -64.5t189 -144.5v-259h-139l-37 206q-48 47 -118 77t-167 30q-227 0 -349 -164.5t-122 -417.5v-23q0 -253 119.5 -418.5t331.5 -165.5q99 0 180 31t125 76l37 206h139v-259q-63 -81 -189 -144.5t-292 -63.5 q-284 0 -466 210t-182 528z" />
53
+ <glyph unicode="D" horiz-adv-x="1419" d="M71 0v126l163 28v1147l-163 28v127h163h447q285 0 458.5 -175.5t173.5 -453.5v-199q0 -279 -173.5 -453.5t-458.5 -174.5h-610zM431 154h250q202 0 318.5 133t116.5 341v201q0 206 -116.5 339t-318.5 133h-250v-1147z" />
54
+ <glyph unicode="E" horiz-adv-x="1306" d="M71 0v126l163 28v1147l-163 28v127h1118v-350h-169l-16 195h-573v-471h557v-155h-557v-521h585l16 195h168v-349h-1129z" />
55
+ <glyph unicode="F" horiz-adv-x="1273" d="M71 0v126l163 28v1147l-163 28v127h1125v-350h-168l-16 195h-581v-502h563v-155h-563v-490l163 -28v-126h-523z" />
56
+ <glyph unicode="G" horiz-adv-x="1387" d="M55 716v24q0 329 182.5 533t485.5 204q162 0 284.5 -50.5t206.5 -133.5v-264h-138l-48 201q-49 40 -118.5 66t-166.5 26q-236 0 -363.5 -161.5t-127.5 -418.5v-26q0 -261 123.5 -422t340.5 -161q119 0 195 25t122 55v319l-239 10v145h436v-522q-64 -67 -189 -126.5 t-325 -59.5q-292 0 -476.5 205t-184.5 532z" />
57
+ <glyph unicode="H" horiz-adv-x="1573" d="M71 0v126l163 28v1147l-163 28v127h523v-127l-163 -28v-503h706v503l-163 28v127h163h197h163v-127l-163 -28v-1147l163 -28v-126h-523v126l163 28v489h-706v-489l163 -28v-126h-523z" />
58
+ <glyph unicode="I" horiz-adv-x="662" d="M70 0v126l163 28v1147l-163 28v127h523v-127l-163 -28v-1147l163 -28v-126h-523z" />
59
+ <glyph unicode="J" horiz-adv-x="1183" d="M64 395l2 6h189q0 -135 68.5 -201.5t193.5 -66.5q109 0 178 73.5t69 196.5v898l-163 28v127h360h163v-127l-163 -28v-898q0 -195 -123.5 -309.5t-320.5 -114.5q-210 0 -334 107q-119 102 -119 293v16z" />
60
+ <glyph unicode="K" horiz-adv-x="1452" d="M71 0v126l163 28v1147l-163 28v127h523v-127l-163 -28v-489h151l407 503l-109 14v127h462v-127l-137 -25l-445 -552l486 -601l137 -25v-126h-478v126l111 14l-415 517h-170v-503l163 -28v-126h-523z" />
61
+ <glyph unicode="L" horiz-adv-x="1199" d="M71 0v126l163 28v1147l-163 28v127h163h197h163v-127l-163 -28v-1147h506l15 167h168v-321h-1049z" />
62
+ <glyph unicode="M" horiz-adv-x="1905" d="M71 0v126l163 28v1147l-163 28v127h163h252l464 -1183h6l463 1183h416v-127l-163 -28v-1147l163 -28v-126h-523v126l163 28v422l19 590l-5 1l-471 -1167h-131l-471 1166l-5 -1l20 -589v-422l163 -28v-126h-523z" />
63
+ <glyph unicode="N" horiz-adv-x="1560" d="M71 0v126l163 28v1147l-163 28v127h163h197l700 -1123l6 2v966l-163 28v127h360h163v-127l-163 -28v-1301h-197l-700 1124l-6 -2v-968l163 -28v-126h-523z" />
64
+ <glyph unicode="O" horiz-adv-x="1445" d="M79 717v21q0 317 176 528t458 211q290 0 472.5 -211t182.5 -528v-21q0 -318 -182.5 -528t-472.5 -210q-282 0 -458 210t-176 528zM276 717q0 -256 115.5 -416.5t321.5 -160.5q218 0 338 160t120 417v23q0 254 -121.5 414.5t-336.5 160.5q-206 0 -321.5 -161t-115.5 -414 v-23z" />
65
+ <glyph unicode="P" horiz-adv-x="1301" d="M71 0v126l163 28v1147l-163 28v127h163h506q233 0 362.5 -120t129.5 -316q0 -198 -129.5 -317t-362.5 -119h-309v-430l163 -28v-126h-523zM431 738h309q148 0 221.5 79.5t73.5 200.5t-73.5 202t-221.5 81h-309v-563z" />
66
+ <glyph unicode="Q" horiz-adv-x="1446" d="M79 717v21q0 317 176 528t458 211q290 0 472.5 -211t182.5 -528v-21q0 -194 -72 -354t-201 -258l295 -208l-135 -120l-331 236q-50 -16 -103 -25t-108 -9q-282 0 -458 210t-176 528zM276 717q0 -256 115.5 -416.5t321.5 -160.5q218 0 338 160t120 417v23 q0 254 -121.5 414.5t-336.5 160.5q-206 0 -321.5 -161t-115.5 -414v-23z" />
67
+ <glyph unicode="R" horiz-adv-x="1386" d="M71 0v126l163 28v1147l-163 28v126h163h476q238 0 365 -105.5t127 -299.5q0 -106 -59 -188t-169 -129q119 -39 171.5 -127t52.5 -217v-117q0 -67 17 -99t56 -38l48 -6v-129h-106q-115 0 -163.5 80t-48.5 194v113q0 119 -69 191t-185 72h-316v-496l163 -28v-126h-523z M431 805h259q165 0 240 63t75 184q0 115 -72 182t-223 67h-279v-496z" />
68
+ <glyph unicode="S" horiz-adv-x="1247" d="M121 178v271h148l38 -209q57 -47 136 -77t189 -30q149 0 235.5 63t86.5 171q0 100 -75 167.5t-265 113.5q-231 55 -361 162t-130 269q0 171 145 284.5t377 113.5q153 0 278.5 -52.5t201.5 -127.5v-271h-149l-37 208q-45 38 -120 63t-174 25q-157 0 -241 -66.5t-84 -173.5 q0 -95 85.5 -158.5t276.5 -111.5q230 -57 349.5 -168t119.5 -275q0 -176 -143.5 -283t-375.5 -107q-168 0 -298.5 55t-212.5 144z" />
69
+ <glyph unicode="T" horiz-adv-x="1284" d="M37 1134v322h1210v-322h-168l-15 167h-323v-1147l163 -28v-126h-523v126l163 28v1147h-324l-14 -167h-169z" />
70
+ <glyph unicode="U" horiz-adv-x="1541" d="M60 1329v127h163h360v-127l-163 -28v-832q0 -165 94 -250.5t248 -85.5q162 0 261 85t99 251v832l-163 28v127h360h163v-127l-163 -28v-832q0 -237 -154.5 -363.5t-402.5 -126.5q-241 0 -390 126.5t-149 363.5v832z" />
71
+ <glyph unicode="V" horiz-adv-x="1470" d="M47 1329v127h460v-127l-133 -21l326 -946l33 -115h6l33 115l325 947l-131 20v127h459v-127l-117 -16l-488 -1313h-169l-488 1313z" />
72
+ <glyph unicode="W" horiz-adv-x="1910" d="M27 1329v127h462v-127l-148 -23l187 -802l27 -182l6 -1l39 183l268 952h174l269 -952l40 -187h6l29 187l183 802l-149 23v127h463v-127l-117 -15l-317 -1314h-176l-288 1010l-26 131h-6l-25 -131l-292 -1010h-175l-317 1314z" />
73
+ <glyph unicode="X" horiz-adv-x="1404" d="M43 0v126l131 22l414 586l-404 573l-131 22v127h472v-127l-117 -13l291 -437l294 437l-117 13v127h475v-127l-131 -22l-404 -573l413 -586l132 -22v-126h-471v126l115 13l-302 448l-303 -448l117 -13v-126h-474z" />
74
+ <glyph unicode="Y" horiz-adv-x="1416" d="M55 1329v127h500v-127l-157 -19l305 -594l305 594l-156 19v127h500v-127l-123 -19l-432 -798v-358l163 -28v-126h-522v126l163 28v373l-424 783z" />
75
+ <glyph unicode="Z" horiz-adv-x="1220" d="M92 0v146l777 1155h-584l-14 -167h-169v322h993v-141l-782 -1161h631l16 167h168v-321h-1036z" />
76
+ <glyph unicode="[" horiz-adv-x="573" d="M157 -312v1976h384v-155h-187v-1666h187v-155h-384z" />
77
+ <glyph unicode="\" horiz-adv-x="841" d="M36 1456h186l608 -1581h-186z" />
78
+ <glyph unicode="]" horiz-adv-x="552" d="M23 -157h188v1666h-188v155h385v-1976h-385v155z" />
79
+ <glyph unicode="^" horiz-adv-x="864" d="M71 729l299 727h134l298 -727h-182l-166 419l-16 70h-6l-16 -70l-163 -419h-182z" />
80
+ <glyph unicode="_" horiz-adv-x="1168" d="M119 0h922v-154h-922v154z" />
81
+ <glyph unicode="`" horiz-adv-x="582" d="M84 1471l3 6h230l175 -266h-159z" />
82
+ <glyph unicode="a" d="M104 294q0 154 124.5 237.5t341.5 83.5h203v126q0 95 -60 150.5t-167 55.5q-74 0 -130.5 -19t-91.5 -52l-21 -114h-152v210q74 59 179 94.5t228 35.5q184 0 298 -94t114 -269v-521q0 -21 0.5 -41t2.5 -40l80 -11v-126h-258q-9 44 -14 79t-7 70q-57 -73 -142.5 -121.5 t-182.5 -48.5q-169 0 -257 82.5t-88 232.5zM301 290q0 -71 44 -108.5t133 -37.5q98 0 179 47t116 113v178h-210q-121 0 -191.5 -56t-70.5 -136z" />
83
+ <glyph unicode="b" horiz-adv-x="1186" d="M-8 1433v127h360v-606q51 72 126.5 110t176.5 38q200 0 312 -160t112 -421v-21q0 -234 -112.5 -377.5t-309.5 -143.5q-106 0 -184 40.5t-130 119.5l-18 -139h-170v1405zM352 302q37 -75 100.5 -119t154.5 -44q139 0 206.5 99t67.5 262v21q0 187 -68 304t-208 117 q-91 0 -153.5 -44t-99.5 -118v-478z" />
84
+ <glyph unicode="c" horiz-adv-x="1104" d="M90 520v42q0 231 125 385.5t360 154.5q130 0 233.5 -43t171.5 -118l9 -240h-157l-43 170q-35 34 -90 55t-124 21q-155 0 -221.5 -111.5t-66.5 -273.5v-42q0 -166 66 -276.5t222 -110.5q98 0 172.5 60.5t74.5 148.5h177l2 -6v-10q-1 -134 -125 -238q-130 -108 -301 -109 q-236 0 -360.5 154t-124.5 387z" />
85
+ <glyph unicode="d" horiz-adv-x="1229" d="M90 500v21q0 261 111.5 421t311.5 160q96 0 169.5 -35.5t125.5 -102.5v441l-163 28v127h163h197v-1406l163 -28v-126h-334l-16 129q-53 -74 -129.5 -112t-177.5 -38q-198 0 -309.5 143.5t-111.5 377.5zM287 500q0 -163 67 -262t207 -99q88 0 148 40t99 113v502 q-38 68 -99 108t-146 40q-141 0 -208.5 -117t-67.5 -304v-21z" />
86
+ <glyph unicode="e" horiz-adv-x="1101" d="M90 520v44q0 231 137.5 384.5t325.5 153.5q218 0 330.5 -132t112.5 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -56 -153.5 -94.5t-229.5 -38.5q-226 0 -359.5 150.5t-133.5 390.5zM298 654l2 -5h499v26q0 116 -62 194 t-184 78q-99 0 -169 -83.5t-86 -209.5z" />
87
+ <glyph unicode="f" horiz-adv-x="728" d="M70 936v146h169v137q0 173 90.5 267.5t252.5 94.5q34 0 68.5 -5.5t76.5 -15.5l-24 -150q-18 4 -43.5 7t-52.5 3q-87 0 -129 -51.5t-42 -149.5v-137h226v-146h-226v-782l163 -28v-126h-523v126l163 28v782h-169z" />
88
+ <glyph unicode="g" horiz-adv-x="1159" d="M90 500v21q0 261 114 421t315 160q102 0 179 -40t129 -116l18 136h166v-1068q0 -210 -117 -330.5t-333 -120.5q-78 0 -169 21.5t-160 58.5l51 153q55 -29 130 -48t146 -19q132 0 193.5 74t61.5 211v103q-53 -68 -127 -103t-170 -35q-199 0 -313 144t-114 377zM287 500 q0 -163 69 -262t210 -99q89 0 149 40.5t99 114.5v498q-38 69 -99 109.5t-147 40.5q-141 0 -211 -118t-70 -303v-21z" />
89
+ <glyph unicode="h" horiz-adv-x="1322" d="M62 0v126l163 28v1251l-163 28v127h360v-622q56 78 137 121t180 43q174 0 270 -104t96 -320v-524l163 -28v-126h-523v126l163 28v526q0 134 -57.5 198t-171.5 64q-81 0 -147.5 -38.5t-109.5 -104.5v-645l163 -28v-126h-523z" />
90
+ <glyph unicode="i" horiz-adv-x="673" d="M89 0v126l163 28v773l-163 28v127h360v-928l163 -28v-126h-523zM252 1359v201h197v-201h-197z" />
91
+ <glyph unicode="j" horiz-adv-x="571" d="M-13 -419l13 155q14 -5 41 -8.5t44 -3.5q65 0 103.5 44t38.5 143v1016l-163 28v127h360v-1171q0 -167 -86 -257.5t-239 -90.5q-32 0 -58 4.5t-54 13.5zM221 1363v197h197v-197h-197z" />
92
+ <glyph unicode="k" horiz-adv-x="1245" d="M62 0v126l163 28v1251l-163 28v127h360v-904h126l231 286l-99 13v127h453v-127l-132 -26l-285 -340l347 -439l123 -24v-126h-449v126l101 13l-287 360h-129v-345l163 -28v-126h-523z" />
93
+ <glyph unicode="l" horiz-adv-x="645" d="M62 0v126l163 28v1251l-163 28v127h360v-1406l163 -28v-126h-523z" />
94
+ <glyph unicode="m" horiz-adv-x="1935" d="M50 0v126l163 28v773l-163 28v127h340l13 -141q52 77 134 119t190 42t185.5 -50t116.5 -150q51 92 135 146t196 54q166 0 262 -113.5t96 -341.5v-493l163 -28v-126h-524v126l163 28v495q0 160 -55 226.5t-163 66.5q-103 0 -165.5 -72.5t-72.5 -182.5v-533l163 -28v-126 h-523v126l163 28v495q0 152 -56.5 222.5t-163.5 70.5q-90 0 -148 -37t-89 -104v-647l163 -28v-126h-523z" />
95
+ <glyph unicode="n" horiz-adv-x="1318" d="M60 0v126l163 28v773l-163 28v127h339l14 -161q54 86 135.5 133.5t185.5 47.5q175 0 271 -102.5t96 -316.5v-529l163 -28v-126h-523v126l163 28v525q0 143 -56.5 203t-172.5 60q-85 0 -150.5 -41t-104.5 -112v-635l163 -28v-126h-523z" />
96
+ <glyph unicode="o" horiz-adv-x="1149" d="M90 529v22q0 240 130 395.5t353 155.5q224 0 354.5 -155t130.5 -396v-22q0 -242 -130 -396t-353 -154q-225 0 -355 154.5t-130 395.5zM287 529q0 -172 72.5 -284t215.5 -112q140 0 213 112t73 284v22q0 170 -73 283t-215 113t-214 -113t-72 -283v-22z" />
97
+ <glyph unicode="p" horiz-adv-x="1240" d="M65 -289l163 28v1188l-163 28v127h332l18 -132q54 74 131.5 113t179.5 39q201 0 312.5 -159.5t111.5 -421.5v-21q0 -234 -112 -377.5t-309 -143.5q-100 0 -175.5 33.5t-128.5 99.5v-373l163 -28v-127h-523v127zM425 273q37 -67 96.5 -103.5t146.5 -36.5q140 0 212 102 t72 265v21q0 185 -72 303t-214 118q-84 0 -144 -38t-97 -104v-527z" />
98
+ <glyph unicode="q" horiz-adv-x="1155" d="M90 500v21q0 261 111.5 421t311.5 160q95 0 169 -35.5t126 -103.5l16 119h170v-1343l163 -28v-127h-523v127l163 28v363q-52 -61 -123.5 -92t-162.5 -31q-198 0 -309.5 143.5t-111.5 377.5zM287 500q0 -164 67 -265.5t207 -101.5q82 0 139.5 36t96.5 102v543 q-39 61 -97 97t-137 36q-141 0 -208.5 -119.5t-67.5 -306.5v-21z" />
99
+ <glyph unicode="r" horiz-adv-x="847" d="M89 0v126l163 28v773l-163 28v127h339l19 -157q46 83 113.5 130t154.5 47q23 0 47.5 -3.5t37.5 -7.5l-26 -183l-112 6q-78 0 -131 -36.5t-82 -102.5v-621l163 -28v-126h-523z" />
100
+ <glyph unicode="s" horiz-adv-x="1044" d="M118 784q0 132 112.5 225t292.5 93q123 0 221 -32t163 -89l10 -239h-148l-32 130q-36 34 -90.5 54.5t-123.5 20.5q-105 0 -156 -46t-51 -111q0 -64 45 -101t183 -66q205 -44 305 -119.5t100 -202.5q0 -144 -116.5 -233t-304.5 -89q-123 0 -221 28.5t-175 82.5l-1 247h148 l37 -145q34 -31 92.5 -45t119.5 -14q105 0 164.5 42.5t59.5 111.5q0 65 -49.5 107t-187.5 73q-197 43 -297 117t-100 200z" />
101
+ <glyph unicode="t" horiz-adv-x="750" d="M65 936v146h171v261h197v-261h205v-146h-205v-657q0 -76 31.5 -107t83.5 -31q26 0 58.5 4.5t54.5 9.5l27 -135q-28 -18 -82 -29.5t-108 -11.5q-120 0 -191 72.5t-71 227.5v657h-171z" />
102
+ <glyph unicode="u" horiz-adv-x="1244" d="M48 955v127h124h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v625l-145 28v127h145h197v-928l124 -28v-126h-301l-13 160q-51 -87 -131.5 -134t-185.5 -47q-176 0 -275 113t-99 352v483z" />
103
+ <glyph unicode="v" horiz-adv-x="1143" d="M42 955v127h418v-127l-130 -20l223 -616l18 -78h6l19 78l216 616l-131 20v127h418v-127l-89 -15l-363 -940h-149l-367 940z" />
104
+ <glyph unicode="w" horiz-adv-x="1693" d="M61 955v127h412v-127l-124 -22l141 -539l23 -131h6l28 131l216 688h158l217 -688l31 -146h6l29 146l133 539l-126 22v127h412v-127l-94 -14l-273 -941h-159l-210 659l-45 182l-6 -1l-42 -181l-206 -659h-159l-273 941z" />
105
+ <glyph unicode="x" horiz-adv-x="1192" d="M62 0v126l116 23l319 398l-309 385l-116 23v127h424v-127l-98 -12l202 -260l203 261l-97 11v127h427v-127l-116 -23l-309 -385l318 -398l117 -23v-126h-424v126l96 11l-212 272l-212 -272l97 -11v-126h-426z" />
106
+ <glyph unicode="y" horiz-adv-x="1162" d="M35 955v127h437v-127l-122 -20l187 -534l36 -138h6l225 672l-123 20v127h436v-127l-97 -15l-412 -1106q-41 -109 -118 -190t-207 -81q-23 0 -60 5.5t-57 10.5l20 155q-6 1 35.5 -2t52.5 -3q63 0 102 54.5t68 125.5l47 112l-357 918z" />
107
+ <glyph unicode="z" horiz-adv-x="1084" d="M112 0v138l585 788h-396l-15 -166h-168v322h820v-134l-592 -794h442l16 167h167v-321h-859z" />
108
+ <glyph unicode="{" horiz-adv-x="701" d="M63 543v147q106 0 157 61.5t51 174.5v206q0 171 82.5 290.5t277.5 174.5l40 -117q-110 -35 -156.5 -125.5t-46.5 -222.5v-206q0 -105 -42 -185t-127 -125q85 -46 127 -126.5t42 -183.5v-205q0 -132 46.5 -221.5t156.5 -125.5l-40 -118q-195 55 -277.5 175t-82.5 290v205 q0 112 -51 174.5t-157 62.5z" />
109
+ <glyph unicode="|" horiz-adv-x="451" d="M150 -270v1726h157v-1726h-157z" />
110
+ <glyph unicode="}" horiz-adv-x="701" d="M27 -246q108 36 155 125.5t47 221.5v205q0 107 45 187t139 123q-94 41 -139 121t-45 189v206q0 132 -47 222.5t-155 125.5l40 117q194 -55 276.5 -174.5t82.5 -290.5v-206q0 -113 51 -174.5t158 -61.5v-147q-107 0 -158 -62.5t-51 -174.5v-205q0 -170 -82.5 -290 t-276.5 -175z" />
111
+ <glyph unicode="~" horiz-adv-x="1386" d="M121 474q0 136 85.5 232.5t217.5 96.5q88 0 163 -34.5t160 -104.5q59 -51 106.5 -74t98.5 -23q66 0 114.5 57t48.5 134l142 -18q0 -137 -87.5 -238t-217.5 -101q-89 0 -162.5 33t-158.5 107q-60 48 -109 72t-98 24q-67 0 -114.5 -53t-47.5 -128z" />
112
+ <glyph unicode="&#xa1;" horiz-adv-x="481" d="M142 -374v978h197v-978h-197zM142 876v206h197v-206h-197z" />
113
+ <glyph unicode="&#xa2;" horiz-adv-x="1118" d="M104 520v42q0 197 92.5 342t270.5 185v229h197v-220q104 -12 188 -52.5t142 -104.5l9 -240h-157l-43 170q-35 34 -90 55t-124 21q-155 0 -221.5 -111.5t-66.5 -273.5v-42q0 -166 66 -276.5t222 -110.5q98 0 172.5 60.5t74.5 148.5h178l2 -6q4 -123 -99.5 -225 t-252.5 -126v-230h-197v237q-178 38 -270.5 183t-92.5 345z" />
114
+ <glyph unicode="&#xa3;" horiz-adv-x="1179" d="M68 615v155h157l-10 270q0 204 112 320.5t300 116.5q200 0 310 -104.5t106 -276.5l-2 -6h-189q0 118 -63.5 175t-161.5 57q-99 0 -157 -74.5t-58 -207.5l10 -270h419v-155h-414l6 -149q0 -90 -15.5 -171.5t-44.5 -140.5h551l16 167h167v-167h1l-1 -154h-975v154h10 q47 13 71 111t24 201l-6 149h-163z" />
115
+ <glyph unicode="&#xa4;" horiz-adv-x="1461" d="M94 112l138 140q-50 76 -76.5 166.5t-26.5 189.5q0 102 28.5 196t82.5 172l-146 149l138 139l143 -146q74 55 163.5 85.5t185.5 30.5q97 0 186 -31t164 -87l146 149l140 -140l-150 -153q52 -78 80.5 -170.5t28.5 -193.5q0 -98 -26.5 -187.5t-74.5 -165.5l142 -143 l-140 -139l-133 135q-77 -62 -169.5 -95t-193.5 -33t-193 32.5t-169 94.5l-130 -133zM311 608q0 -188 120.5 -320.5t292.5 -132.5q170 0 290.5 132.5t120.5 320.5q0 186 -120.5 318t-290.5 132q-172 0 -292.5 -132t-120.5 -318z" />
116
+ <glyph unicode="&#xa5;" horiz-adv-x="1386" d="M59 1329v127h442v-127l-87 -15l283 -521l283 521l-86 15v127h441v-127l-139 -20l-333 -571h312v-123h-383v-167h383v-122h-383v-172l163 -28v-126h-523v126l163 28v172h-375v122h375v167h-375v123h311l-333 570z" />
117
+ <glyph unicode="&#xa6;" horiz-adv-x="496" d="M150 -270v792h197v-792h-197zM150 698v758h197v-758h-197z" />
118
+ <glyph unicode="&#xa7;" horiz-adv-x="1233" d="M90 551q0 91 46.5 161.5t133.5 111.5q-68 50 -101.5 119.5t-33.5 166.5q0 166 133.5 266.5t358.5 100.5q232 0 362.5 -111.5t126.5 -313.5l-3 -6h-188q0 118 -79.5 197t-218.5 79q-146 0 -220.5 -59.5t-74.5 -150.5q0 -99 67 -148.5t278 -107.5q244 -69 355.5 -159.5 t111.5 -265.5q0 -94 -48 -164t-136 -110q70 -51 105 -119t35 -166q0 -172 -133 -269.5t-358 -97.5q-222 0 -372.5 102.5t-145.5 322.5l2 6l188 2q0 -143 96.5 -210.5t231.5 -67.5q136 0 215 59.5t79 150.5t-72 141.5t-276 113.5q-239 63 -352 156t-113 270zM287 553 q0 -101 67.5 -152t278.5 -110q52 -16 90 -27.5t72 -23.5q73 20 113 70t40 118q0 91 -73.5 144.5t-275.5 116.5q-48 12 -89.5 25t-77.5 27q-73 -19 -109 -69t-36 -119z" />
119
+ <glyph unicode="&#xa8;" horiz-adv-x="992" d="M152 1256v200h218v-200h-218zM622 1256v200h218v-200h-218z" />
120
+ <glyph unicode="&#xa9;" horiz-adv-x="1595" d="M92 729q0 315 207 531t503 216q295 0 502 -216t207 -531q0 -316 -207.5 -533t-501.5 -217q-296 0 -503 217t-207 533zM212 729q0 -265 172 -447t418 -182q244 0 416 182t172 447q0 263 -172 444t-416 181q-246 0 -418 -180.5t-172 -444.5zM439 669v119q0 173 94.5 280 t254.5 107q157 0 245 -79t84 -228l-2 -6h-146q0 95 -45.5 138.5t-135.5 43.5q-95 0 -146 -70.5t-51 -184.5v-120q0 -117 51 -187t146 -70q90 0 135 43t45 141h146l2 -6q4 -151 -83.5 -229.5t-244.5 -78.5q-160 0 -254.5 106t-94.5 281z" />
121
+ <glyph unicode="&#xaa;" horiz-adv-x="894" d="M106 920q0 110 84 170t246 60h138v52q0 63 -29.5 97t-87.5 34q-67 0 -103.5 -27t-36.5 -76l-163 13l-1 6q-6 98 79 163t225 65q133 0 211.5 -71t78.5 -205v-314q0 -51 6 -95t20 -86h-175q-8 21 -13 45t-8 50q-33 -47 -89 -78t-133 -31q-119 0 -184 61t-65 167zM278 924 q0 -45 29.5 -69t89.5 -24q51 0 105 29.5t72 65.5v110h-137q-75 0 -117 -33t-42 -79z" />
122
+ <glyph unicode="&#xab;" horiz-adv-x="935" d="M58 117zM58 506v19l295 389h148l-255 -399l255 -398h-148zM392 506v19l295 389h148l-255 -399l255 -398h-148z" />
123
+ <glyph unicode="&#xac;" horiz-adv-x="1122" d="M121 637v165h834v-427h-197v262h-637z" />
124
+ <glyph unicode="&#xad;" horiz-adv-x="797" d="M154 538v154h489v-154h-489zM154 538z" />
125
+ <glyph unicode="&#xae;" horiz-adv-x="1595" d="M92 729q0 315 207 531t503 216q295 0 502 -216t207 -531q0 -316 -207.5 -533t-501.5 -217q-296 0 -503 217t-207 533zM212 729q0 -265 172 -447t418 -182q244 0 416 182t172 447q0 263 -172 444t-416 181q-246 0 -418 -180.5t-172 -444.5zM508 316v850h280 q152 0 238 -65.5t86 -191.5q0 -61 -33 -108.5t-95 -78.5q66 -26 95.5 -79t29.5 -128v-56q0 -41 3.5 -73.5t13.5 -53.5v-16h-153q-9 21 -11 61.5t-2 82.5v54q0 72 -33.5 106t-110.5 34h-159v-338h-149zM657 784h152q65 1 110 32.5t45 87.5q0 73 -39 102.5t-137 29.5h-131 v-252z" />
126
+ <glyph unicode="&#xaf;" horiz-adv-x="1028" d="M154 1310v146h721v-146h-721z" />
127
+ <glyph unicode="&#xb0;" horiz-adv-x="757" d="M124 1216q0 106 75.5 183.5t180.5 77.5q104 0 178.5 -77.5t74.5 -183.5q0 -108 -74.5 -182.5t-178.5 -74.5q-106 0 -181 74.5t-75 182.5zM254 1216q0 -55 36.5 -91t89.5 -36q52 0 87.5 36t35.5 91t-35.5 92.5t-87.5 37.5q-53 0 -89.5 -37.5t-36.5 -92.5z" />
128
+ <glyph unicode="&#xb1;" horiz-adv-x="1057" d="M75 702v154h380v411h178v-411h358v-154h-358v-413h-178v413h-380zM124 5v155h835v-155h-835z" />
129
+ <glyph unicode="&#xb2;" horiz-adv-x="827" d="M119 1240q-6 99 78 169t225 70q135 0 211 -64t76 -180q0 -80 -44.5 -136t-160.5 -161l-153 -135l2 -6h361v-130h-592v130l302 262q69 59 90.5 96.5t21.5 80.5q0 50 -28 81t-86 31q-67 0 -103.5 -32t-36.5 -82h-161z" />
130
+ <glyph unicode="&#xb3;" horiz-adv-x="845" d="M111 882l1 6h163q0 -46 37.5 -74.5t101.5 -28.5q72 0 113.5 29.5t41.5 77.5q0 63 -36 91t-109 28h-133v126h133q67 0 99 28.5t32 80.5q0 44 -36 72.5t-105 28.5q-56 0 -91 -24t-35 -64h-162l-2 6q-6 94 78.5 153.5t211.5 59.5q145 0 229 -59.5t84 -169.5 q0 -55 -35.5 -100.5t-97.5 -71.5q71 -24 108.5 -71.5t37.5 -115.5q0 -111 -90 -173t-236 -62q-127 0 -218 58t-85 169z" />
131
+ <glyph unicode="&#xb4;" horiz-adv-x="599" d="M95 1212l184 266h230l2 -6l-269 -260h-147z" />
132
+ <glyph unicode="&#xb5;" horiz-adv-x="1315" d="M66 955v127h163h196v-622q0 -189 55 -258t157 -69q99 0 160 36.5t92 107.5v650l-163 28v127h360v-928l163 -28v-126h-340l-9 109q-44 -64 -108 -97t-147 -33q-72 0 -126 16.5t-94 51.5v-463h-196v1343z" />
133
+ <glyph unicode="&#xb6;" horiz-adv-x="1090" d="M78 988q0 207 129.5 337.5t362.5 130.5h443v-127l-163 -28v-1147l163 -28v-126h-523v126l163 28v366h-83q-234 0 -363 129.5t-129 338.5z" />
134
+ <glyph unicode="&#xb7;" horiz-adv-x="516" d="M159 624v212h198v-212h-198z" />
135
+ <glyph unicode="&#xb8;" horiz-adv-x="470" d="M103 -135l32 135h141l-12 -52q65 -11 108 -52t43 -121q0 -96 -79 -153t-226 -57l-7 109q72 0 115.5 24.5t43.5 73.5q0 48 -36 67t-123 26z" />
136
+ <glyph unicode="&#xb9;" horiz-adv-x="547" d="M95 1320v134l301 23v-812h-174v655h-127z" />
137
+ <glyph unicode="&#xba;" horiz-adv-x="941" d="M121 1025v117q0 148 93.5 241.5t251.5 93.5t252 -93.5t94 -241.5v-117q0 -149 -93.5 -241.5t-250.5 -92.5q-159 0 -253 92.5t-94 241.5zM293 1025q0 -88 44 -140.5t131 -52.5q83 0 127 53t44 140v117q0 84 -44.5 137.5t-128.5 53.5t-128.5 -53.5t-44.5 -137.5v-117z" />
138
+ <glyph unicode="&#xbb;" horiz-adv-x="938" d="M105 152l254 398l-254 399h148l295 -389v-19l-295 -389h-148zM105 152zM450 152l254 398l-254 399h148l295 -389v-19l-295 -389h-148z" />
139
+ <glyph unicode="&#xbc;" horiz-adv-x="1443" d="M183 0zM183 1319v134l301 23v-812h-174v655h-127zM321 185l711 1138l109 -67l-711 -1138zM785 254l421 547h174v-519h126v-130h-126v-152h-170v152h-417zM967 282h243v310l-6 1l-13 -22z" />
140
+ <glyph unicode="&#xbd;" horiz-adv-x="1480" d="M183 0zM183 1319v134l301 23v-812h-174v655h-127zM334 185l711 1138l109 -67l-711 -1138zM929 573q-6 99 78 169t225 70q135 0 211 -64t76 -180q0 -80 -44.5 -136t-160.5 -161l-153 -135l2 -6h361v-130h-592v130l302 262q69 59 90.5 96.5t21.5 80.5q0 50 -28 81t-86 31 q-67 0 -103.5 -32t-36.5 -82h-161z" />
141
+ <glyph unicode="&#xbe;" horiz-adv-x="1690" d="M121 0zM127 883l1 6h163q0 -46 37.5 -74.5t101.5 -28.5q72 0 113.5 29.5t41.5 77.5q0 63 -36 91t-109 28h-133v126h133q67 0 99 28.5t32 80.5q0 44 -36 72.5t-105 28.5q-56 0 -91 -24t-35 -64h-162l-2 6q-6 94 78.5 153.5t211.5 59.5q145 0 229 -59.5t84 -169.5 q0 -55 -35.5 -100.5t-97.5 -71.5q71 -24 108.5 -71.5t37.5 -115.5q0 -111 -90 -173t-236 -62q-127 0 -218 58t-85 169zM505 185l711 1138l109 -67l-711 -1138zM974 254l421 547h174v-519h126v-130h-126v-152h-170v152h-417zM1156 282h243v310l-6 1l-13 -22z" />
142
+ <glyph unicode="&#xbf;" horiz-adv-x="890" d="M58 -13q0 127 69.5 233.5t186.5 220.5q53 53 65 96t12 135h197q-2 -146 -26 -202t-125 -147q-101 -120 -141.5 -182t-40.5 -149q0 -107 55.5 -163.5t161.5 -56.5q90 0 154.5 49.5t64.5 145.5h188l3 -6q2 -161 -114.5 -258t-295.5 -97q-198 0 -306 100.5t-108 280.5z M385 874v209h205v-209h-205z" />
143
+ <glyph unicode="&#xc0;" horiz-adv-x="1500" d="M55 0v126l108 15l509 1315h169l500 -1315l107 -15v-126h-418v126l110 19l-96 268h-583l-99 -268l110 -19v-126h-417zM55 0zM435 1819l3 6h230l175 -266h-159zM522 578h462l-226 625h-6z" />
144
+ <glyph unicode="&#xc1;" horiz-adv-x="1500" d="M55 0v126l108 15l509 1315h169l500 -1315l107 -15v-126h-418v126l110 19l-96 268h-583l-99 -268l110 -19v-126h-417zM55 0zM522 578h462l-226 625h-6zM631 1556l184 266h230l2 -6l-269 -260h-147z" />
145
+ <glyph unicode="&#xc2;" horiz-adv-x="1500" d="M55 0v126l108 15l509 1315h169l500 -1315l107 -15v-126h-418v126l110 19l-96 268h-583l-99 -268l110 -19v-126h-417zM55 0zM452 1587v26l246 237h119l248 -238v-25h-161l-147 148l-145 -148h-160zM522 578h462l-226 625h-6z" />
146
+ <glyph unicode="&#xc3;" horiz-adv-x="1500" d="M55 0v126l108 15l509 1315h169l500 -1315l107 -15v-126h-418v126l110 19l-96 268h-583l-99 -268l110 -19v-126h-417zM55 0zM402 1627q0 93 58.5 161.5t149.5 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5l108 -32q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5 t-128 46.5q-42 0 -71.5 -32.5t-29.5 -78.5zM522 578h462l-226 625h-6z" />
147
+ <glyph unicode="&#xc4;" horiz-adv-x="1500" d="M55 0v126l108 15l509 1315h169l500 -1315l107 -15v-126h-418v126l110 19l-96 268h-583l-99 -268l110 -19v-126h-417zM55 0zM395 1604v200h218v-200h-218zM522 578h462l-226 625h-6zM865 1604v200h218v-200h-218z" />
148
+ <glyph unicode="&#xc5;" horiz-adv-x="1500" d="M55 0v126l108 15l509 1315h169l500 -1315l107 -15v-126h-418v126l110 19l-96 268h-583l-99 -268l110 -19v-126h-417zM55 0zM522 578h462l-226 625h-6zM555 1735q0 84 60.5 141t147.5 57q85 0 145 -56.5t60 -141.5q0 -86 -60 -140t-145 -54q-87 0 -147.5 54t-60.5 140z M658 1735q0 -43 31 -73.5t74 -30.5q42 0 72 29.5t30 74.5t-30 76t-72 31q-44 0 -74.5 -31t-30.5 -76z" />
149
+ <glyph unicode="&#xc6;" horiz-adv-x="2096" d="M51 0v126l141 20l793 1310h967v-322h-168l-15 167h-508l20 -466h590v-155h-584l22 -526h522l16 167h167v-321h-1058v126l156 27l-8 197h-556l-121 -210l82 -14v-126h-458zM651 529h446l-31 710l-5 2z" />
150
+ <glyph unicode="&#xc7;" horiz-adv-x="1321" d="M71 0zM71 717v21q0 320 179 529.5t469 209.5q166 0 292 -64.5t189 -144.5v-259h-139l-37 206q-48 47 -118 77t-167 30q-227 0 -349 -164.5t-122 -417.5v-23q0 -253 119.5 -418.5t331.5 -165.5q99 0 180 31t125 76l37 206h139v-259q-63 -81 -189 -144.5t-292 -63.5 q-284 0 -466 210t-182 528zM601 -143l32 135h141l-12 -52q65 -11 108 -52t43 -121q0 -96 -79 -153t-226 -57l-7 109q72 0 115.5 24.5t43.5 73.5q0 48 -36 67t-123 26z" />
151
+ <glyph unicode="&#xc8;" horiz-adv-x="1306" d="M71 0v126l163 28v1147l-163 28v127h1118v-350h-169l-16 195h-573v-471h557v-155h-557v-521h585l16 195h168v-349h-1129zM71 0zM329 1820l3 6h230l175 -266h-159z" />
152
+ <glyph unicode="&#xc9;" horiz-adv-x="1306" d="M71 0v126l163 28v1147l-163 28v127h1118v-350h-169l-16 195h-573v-471h557v-155h-557v-521h585l16 195h168v-349h-1129zM71 0zM525 1557l184 266h230l2 -6l-269 -260h-147z" />
153
+ <glyph unicode="&#xca;" horiz-adv-x="1306" d="M71 0v126l163 28v1147l-163 28v127h1118v-350h-169l-16 195h-573v-471h557v-155h-557v-521h585l16 195h168v-349h-1129zM71 0zM346 1588v26l246 237h119l248 -238v-25h-161l-147 148l-145 -148h-160z" />
154
+ <glyph unicode="&#xcb;" horiz-adv-x="1306" d="M71 0v126l163 28v1147l-163 28v127h1118v-350h-169l-16 195h-573v-471h557v-155h-557v-521h585l16 195h168v-349h-1129zM71 0zM289 1605v200h218v-200h-218zM759 1605v200h218v-200h-218z" />
155
+ <glyph unicode="&#xcc;" horiz-adv-x="662" d="M16 0zM16 1818l3 6h230l175 -266h-159zM70 0v126l163 28v1147l-163 28v127h523v-127l-163 -28v-1147l163 -28v-126h-523z" />
156
+ <glyph unicode="&#xcd;" horiz-adv-x="662" d="M70 0v126l163 28v1147l-163 28v127h523v-127l-163 -28v-1147l163 -28v-126h-523zM70 0zM211 1555l184 266h230l2 -6l-269 -260h-147z" />
157
+ <glyph unicode="&#xce;" horiz-adv-x="662" d="M33 0zM33 1586v26l246 237h119l248 -238v-25h-161l-147 148l-145 -148h-160zM70 0v126l163 28v1147l-163 28v127h523v-127l-163 -28v-1147l163 -28v-126h-523z" />
158
+ <glyph unicode="&#xcf;" horiz-adv-x="662" d="M-24 1603v200h218v-200h-218zM0 0zM70 0v126l163 28v1147l-163 28v127h523v-127l-163 -28v-1147l163 -28v-126h-523zM446 1603v200h218v-200h-218z" />
159
+ <glyph unicode="&#xd0;" horiz-adv-x="1449" d="M66 663v155h198v483l-163 28v127h610q285 0 458.5 -175.5t173.5 -453.5v-199q0 -279 -173.5 -453.5t-458.5 -174.5h-610v126l163 28v509h-198zM461 154h250q202 0 318.5 133t116.5 341v201q0 206 -116.5 339t-318.5 133h-250v-483h246v-155h-246v-509z" />
160
+ <glyph unicode="&#xd1;" horiz-adv-x="1560" d="M71 0v126l163 28v1147l-163 28v127h163h197l700 -1123l6 2v966l-163 28v127h360h163v-127l-163 -28v-1301h-197l-700 1124l-6 -2v-968l163 -28v-126h-523zM71 0zM396 1628q0 93 58.5 161.5t149.5 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5l108 -32 q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-42 0 -71.5 -32.5t-29.5 -78.5z" />
161
+ <glyph unicode="&#xd2;" horiz-adv-x="1445" d="M79 0zM79 717v21q0 317 176 528t458 211q290 0 472.5 -211t182.5 -528v-21q0 -318 -182.5 -528t-472.5 -210q-282 0 -458 210t-176 528zM276 717q0 -256 115.5 -416.5t321.5 -160.5q218 0 338 160t120 417v23q0 254 -121.5 414.5t-336.5 160.5q-206 0 -321.5 -161 t-115.5 -414v-23zM397 1819l3 6h230l175 -266h-159z" />
162
+ <glyph unicode="&#xd3;" horiz-adv-x="1445" d="M79 0zM79 717v21q0 317 176 528t458 211q290 0 472.5 -211t182.5 -528v-21q0 -318 -182.5 -528t-472.5 -210q-282 0 -458 210t-176 528zM276 717q0 -256 115.5 -416.5t321.5 -160.5q218 0 338 160t120 417v23q0 254 -121.5 414.5t-336.5 160.5q-206 0 -321.5 -161 t-115.5 -414v-23zM593 1556l184 266h230l2 -6l-269 -260h-147z" />
163
+ <glyph unicode="&#xd4;" horiz-adv-x="1445" d="M79 0zM79 717v21q0 317 176 528t458 211q290 0 472.5 -211t182.5 -528v-21q0 -318 -182.5 -528t-472.5 -210q-282 0 -458 210t-176 528zM276 717q0 -256 115.5 -416.5t321.5 -160.5q218 0 338 160t120 417v23q0 254 -121.5 414.5t-336.5 160.5q-206 0 -321.5 -161 t-115.5 -414v-23zM414 1587v26l246 237h119l248 -238v-25h-161l-147 148l-145 -148h-160z" />
164
+ <glyph unicode="&#xd5;" horiz-adv-x="1445" d="M79 0zM79 717v21q0 317 176 528t458 211q290 0 472.5 -211t182.5 -528v-21q0 -318 -182.5 -528t-472.5 -210q-282 0 -458 210t-176 528zM276 717q0 -256 115.5 -416.5t321.5 -160.5q218 0 338 160t120 417v23q0 254 -121.5 414.5t-336.5 160.5q-206 0 -321.5 -161 t-115.5 -414v-23zM364 1627q0 93 58.5 161.5t149.5 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5l108 -32q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-42 0 -71.5 -32.5t-29.5 -78.5z" />
165
+ <glyph unicode="&#xd6;" horiz-adv-x="1445" d="M79 0zM79 717v21q0 317 176 528t458 211q290 0 472.5 -211t182.5 -528v-21q0 -318 -182.5 -528t-472.5 -210q-282 0 -458 210t-176 528zM276 717q0 -256 115.5 -416.5t321.5 -160.5q218 0 338 160t120 417v23q0 254 -121.5 414.5t-336.5 160.5q-206 0 -321.5 -161 t-115.5 -414v-23zM357 1604v200h218v-200h-218zM827 1604v200h218v-200h-218z" />
166
+ <glyph unicode="&#xd7;" horiz-adv-x="1070" d="M79 351l327 334l-327 334l126 126l326 -333l327 333l126 -126l-328 -334l328 -334l-126 -126l-327 332l-326 -332z" />
167
+ <glyph unicode="&#xd8;" horiz-adv-x="1404" d="M79 717v21q0 317 176 528t458 211q87 0 166.5 -21.5t150.5 -61.5l73 123h149l-118 -199q111 -102 172.5 -252.5t61.5 -327.5v-21q0 -318 -182.5 -528t-472.5 -210q-90 0 -170.5 23t-149.5 67l-97 -163h-149l144 244q-102 101 -157 247.5t-55 319.5zM276 717 q0 -123 27.5 -226.5t80.5 -174.5h6l555 935q-50 31 -108 47.5t-124 16.5q-206 0 -321.5 -161t-115.5 -414v-23zM478 213q48 -36 107 -54.5t128 -18.5q218 0 338 160t120 417v23q0 129 -33 236.5t-94 180.5l-6 1z" />
168
+ <glyph unicode="&#xd9;" horiz-adv-x="1541" d="M60 0zM60 1329v127h163h360v-127l-163 -28v-832q0 -165 94 -250.5t248 -85.5q162 0 261 85t99 251v832l-163 28v127h360h163v-127l-163 -28v-832q0 -237 -154.5 -363.5t-402.5 -126.5q-241 0 -390 126.5t-149 363.5v832zM430 1819l3 6h230l175 -266h-159z" />
169
+ <glyph unicode="&#xda;" horiz-adv-x="1541" d="M60 0zM60 1329v127h163h360v-127l-163 -28v-832q0 -165 94 -250.5t248 -85.5q162 0 261 85t99 251v832l-163 28v127h360h163v-127l-163 -28v-832q0 -237 -154.5 -363.5t-402.5 -126.5q-241 0 -390 126.5t-149 363.5v832zM626 1556l184 266h230l2 -6l-269 -260h-147z" />
170
+ <glyph unicode="&#xdb;" horiz-adv-x="1541" d="M60 0zM60 1329v127h163h360v-127l-163 -28v-832q0 -165 94 -250.5t248 -85.5q162 0 261 85t99 251v832l-163 28v127h360h163v-127l-163 -28v-832q0 -237 -154.5 -363.5t-402.5 -126.5q-241 0 -390 126.5t-149 363.5v832zM447 1587v26l246 237h119l248 -238v-25h-161 l-147 148l-145 -148h-160z" />
171
+ <glyph unicode="&#xdc;" horiz-adv-x="1541" d="M60 0zM60 1329v127h163h360v-127l-163 -28v-832q0 -165 94 -250.5t248 -85.5q162 0 261 85t99 251v832l-163 28v127h360h163v-127l-163 -28v-832q0 -237 -154.5 -363.5t-402.5 -126.5q-241 0 -390 126.5t-149 363.5v832zM390 1604v200h218v-200h-218zM860 1604v200h218 v-200h-218z" />
172
+ <glyph unicode="&#xdd;" horiz-adv-x="1416" d="M55 0zM55 1329v127h500v-127l-157 -19l305 -594l305 594l-156 19v127h500v-127l-123 -19l-432 -798v-358l163 -28v-126h-522v126l163 28v373l-424 783zM573 1556l184 266h230l2 -6l-269 -260h-147z" />
173
+ <glyph unicode="&#xde;" horiz-adv-x="1277" d="M70 0v126l163 28v1147l-163 28v127h360h163v-127l-163 -28v-138h269q231 0 361 -118t130 -307q0 -190 -130 -307.5t-361 -117.5h-269v-159l163 -28v-126h-523zM430 467h269q146 0 220 78t74 191q0 114 -74 193.5t-220 79.5h-269v-542z" />
174
+ <glyph unicode="&#xdf;" horiz-adv-x="1288" d="M55 0v126l163 28v928q0 223 117 348t301 125q160 0 261 -86t101 -253q0 -118 -64 -228t-64 -167q0 -82 173 -224t173 -281q0 -167 -104 -252t-282 -85q-84 0 -172.5 20.5t-125.5 50.5l43 159q42 -28 108 -52t126 -24q109 0 159.5 47t50.5 126q0 84 -173 227.5t-173 289.5 q0 80 70 190.5t70 186.5q0 94 -50.5 147.5t-116.5 53.5q-105 0 -168.5 -83t-63.5 -236v-1082h-359z" />
175
+ <glyph unicode="&#xe0;" d="M104 0zM104 294q0 154 124.5 237.5t341.5 83.5h203v126q0 95 -60 150.5t-167 55.5q-74 0 -130.5 -19t-91.5 -52l-21 -114h-152v210q74 59 179 94.5t228 35.5q184 0 298 -94t114 -269v-521q0 -21 0.5 -41t2.5 -40l80 -11v-126h-258q-9 44 -14 79t-7 70 q-57 -73 -142.5 -121.5t-182.5 -48.5q-169 0 -257 82.5t-88 232.5zM233 1495l3 6h230l175 -266h-159zM301 290q0 -71 44 -108.5t133 -37.5q98 0 179 47t116 113v178h-210q-121 0 -191.5 -56t-70.5 -136z" />
176
+ <glyph unicode="&#xe1;" d="M104 0zM104 294q0 154 124.5 237.5t341.5 83.5h203v126q0 95 -60 150.5t-167 55.5q-74 0 -130.5 -19t-91.5 -52l-21 -114h-152v210q74 59 179 94.5t228 35.5q184 0 298 -94t114 -269v-521q0 -21 0.5 -41t2.5 -40l80 -11v-126h-258q-9 44 -14 79t-7 70 q-57 -73 -142.5 -121.5t-182.5 -48.5q-169 0 -257 82.5t-88 232.5zM301 290q0 -71 44 -108.5t133 -37.5q98 0 179 47t116 113v178h-210q-121 0 -191.5 -56t-70.5 -136zM429 1232l184 266h230l2 -6l-269 -260h-147z" />
177
+ <glyph unicode="&#xe2;" d="M104 0zM104 294q0 154 124.5 237.5t341.5 83.5h203v126q0 95 -60 150.5t-167 55.5q-74 0 -130.5 -19t-91.5 -52l-21 -114h-152v210q74 59 179 94.5t228 35.5q184 0 298 -94t114 -269v-521q0 -21 0.5 -41t2.5 -40l80 -11v-126h-258q-9 44 -14 79t-7 70 q-57 -73 -142.5 -121.5t-182.5 -48.5q-169 0 -257 82.5t-88 232.5zM250 1263v26l246 237h119l248 -238v-25h-161l-147 148l-145 -148h-160zM301 290q0 -71 44 -108.5t133 -37.5q98 0 179 47t116 113v178h-210q-121 0 -191.5 -56t-70.5 -136z" />
178
+ <glyph unicode="&#xe3;" d="M104 0zM104 294q0 154 124.5 237.5t341.5 83.5h203v126q0 95 -60 150.5t-167 55.5q-74 0 -130.5 -19t-91.5 -52l-21 -114h-152v210q74 59 179 94.5t228 35.5q184 0 298 -94t114 -269v-521q0 -21 0.5 -41t2.5 -40l80 -11v-126h-258q-9 44 -14 79t-7 70 q-57 -73 -142.5 -121.5t-182.5 -48.5q-169 0 -257 82.5t-88 232.5zM200 1303q0 93 58.5 161.5t149.5 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5l108 -32q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-42 0 -71.5 -32.5t-29.5 -78.5zM301 290 q0 -71 44 -108.5t133 -37.5q98 0 179 47t116 113v178h-210q-121 0 -191.5 -56t-70.5 -136z" />
179
+ <glyph unicode="&#xe4;" d="M104 0zM104 294q0 154 124.5 237.5t341.5 83.5h203v126q0 95 -60 150.5t-167 55.5q-74 0 -130.5 -19t-91.5 -52l-21 -114h-152v210q74 59 179 94.5t228 35.5q184 0 298 -94t114 -269v-521q0 -21 0.5 -41t2.5 -40l80 -11v-126h-258q-9 44 -14 79t-7 70 q-57 -73 -142.5 -121.5t-182.5 -48.5q-169 0 -257 82.5t-88 232.5zM193 1280v200h218v-200h-218zM301 290q0 -71 44 -108.5t133 -37.5q98 0 179 47t116 113v178h-210q-121 0 -191.5 -56t-70.5 -136zM663 1280v200h218v-200h-218z" />
180
+ <glyph unicode="&#xe5;" d="M104 0zM104 294q0 154 124.5 237.5t341.5 83.5h203v126q0 95 -60 150.5t-167 55.5q-74 0 -130.5 -19t-91.5 -52l-21 -114h-152v210q74 59 179 94.5t228 35.5q184 0 298 -94t114 -269v-521q0 -21 0.5 -41t2.5 -40l80 -11v-126h-258q-9 44 -14 79t-7 70 q-57 -73 -142.5 -121.5t-182.5 -48.5q-169 0 -257 82.5t-88 232.5zM301 290q0 -71 44 -108.5t133 -37.5q98 0 179 47t116 113v178h-210q-121 0 -191.5 -56t-70.5 -136zM353 1411q0 84 60.5 141t147.5 57q85 0 145 -56.5t60 -141.5q0 -86 -60 -140t-145 -54q-87 0 -147.5 54 t-60.5 140zM456 1411q0 -43 31 -73.5t74 -30.5q42 0 72 29.5t30 74.5t-30 76t-72 31q-44 0 -74.5 -31t-30.5 -76z" />
181
+ <glyph unicode="&#xe6;" horiz-adv-x="1795" d="M97 304q0 158 114.5 244.5t334.5 86.5h229v85q0 106 -51.5 166.5t-149.5 60.5q-103 0 -164 -55t-61 -133l-188 18l-2 6q-5 138 110 228.5t305 90.5q115 0 202 -40.5t137 -117.5q64 75 151.5 116.5t189.5 41.5q214 0 329.5 -130t115.5 -358v-119h-710l-2 -5 q1 -159 79.5 -258t233.5 -99q104 0 170 27.5t144 78.5l68 -138q-55 -45 -149 -83.5t-233 -38.5q-135 0 -239 48.5t-170 137.5q-56 -79 -168 -132.5t-271 -53.5q-170 0 -262.5 87t-92.5 238zM294 300q0 -74 50 -120.5t147 -46.5q76 0 158.5 43t125.5 100v217h-227 q-120 0 -187 -56t-67 -137zM991 645l2 -5h509v31q0 122 -60 199t-188 77q-114 0 -183 -84.5t-80 -217.5z" />
182
+ <glyph unicode="&#xe7;" horiz-adv-x="1104" d="M90 0zM90 520v42q0 231 125 385.5t360 154.5q130 0 233.5 -43t171.5 -118l9 -240h-157l-43 170q-35 34 -90 55t-124 21q-155 0 -221.5 -111.5t-66.5 -273.5v-42q0 -166 66 -276.5t222 -110.5q98 0 172.5 60.5t74.5 148.5h177l2 -6q5 -140 -124.5 -248.5t-301.5 -108.5 q-236 0 -360.5 154t-124.5 387zM410 -144l32 135h141l-12 -52q65 -11 108 -52t43 -121q0 -96 -79 -153t-226 -57l-7 109q72 0 115.5 24.5t43.5 73.5q0 48 -36 67t-123 26z" />
183
+ <glyph unicode="&#xe8;" horiz-adv-x="1101" d="M90 0zM90 520v44q0 231 137.5 384.5t325.5 153.5q218 0 330.5 -132t112.5 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -56 -153.5 -94.5t-229.5 -38.5q-226 0 -359.5 150.5t-133.5 390.5zM233 1495l3 6h230l175 -266 h-159zM298 654l2 -5h499v26q0 116 -62 194t-184 78q-99 0 -169 -83.5t-86 -209.5z" />
184
+ <glyph unicode="&#xe9;" horiz-adv-x="1101" d="M90 0zM90 520v44q0 231 137.5 384.5t325.5 153.5q218 0 330.5 -132t112.5 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -56 -153.5 -94.5t-229.5 -38.5q-226 0 -359.5 150.5t-133.5 390.5zM298 654l2 -5h499v26 q0 116 -62 194t-184 78q-99 0 -169 -83.5t-86 -209.5zM429 1232l184 266h230l2 -6l-269 -260h-147z" />
185
+ <glyph unicode="&#xea;" horiz-adv-x="1101" d="M90 0zM90 520v44q0 231 137.5 384.5t325.5 153.5q218 0 330.5 -132t112.5 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -56 -153.5 -94.5t-229.5 -38.5q-226 0 -359.5 150.5t-133.5 390.5zM250 1263v26l246 237h119 l248 -238v-25h-161l-147 148l-145 -148h-160zM298 654l2 -5h499v26q0 116 -62 194t-184 78q-99 0 -169 -83.5t-86 -209.5z" />
186
+ <glyph unicode="&#xeb;" horiz-adv-x="1101" d="M90 0zM90 520v44q0 231 137.5 384.5t325.5 153.5q218 0 330.5 -132t112.5 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -56 -153.5 -94.5t-229.5 -38.5q-226 0 -359.5 150.5t-133.5 390.5zM193 1280v200h218v-200h-218z M298 654l2 -5h499v26q0 116 -62 194t-184 78q-99 0 -169 -83.5t-86 -209.5zM663 1280v200h218v-200h-218z" />
187
+ <glyph unicode="&#xec;" horiz-adv-x="672" d="M24 0zM24 1494l3 6h230l175 -266h-159zM90 0v126l163 28v773l-163 28v127h360v-928l163 -28v-126h-523z" />
188
+ <glyph unicode="&#xed;" horiz-adv-x="672" d="M90 0v126l163 28v773l-163 28v127h360v-928l163 -28v-126h-523zM90 0zM219 1231l184 266h230l2 -6l-269 -260h-147z" />
189
+ <glyph unicode="&#xee;" horiz-adv-x="672" d="M41 0zM41 1262v26l246 237h119l248 -238v-25h-161l-147 148l-145 -148h-160zM90 0v126l163 28v773l-163 28v127h360v-928l163 -28v-126h-523z" />
190
+ <glyph unicode="&#xef;" horiz-adv-x="672" d="M-16 1279v200h218v-200h-218zM0 0zM90 0v126l163 28v773l-163 28v127h360v-928l163 -28v-126h-523zM454 1279v200h218v-200h-218z" />
191
+ <glyph unicode="&#xf0;" horiz-adv-x="1191" d="M78 466q0 228 138 370t351 142q83 0 157.5 -32t126.5 -84l4 5q-20 98 -62 179.5t-101 143.5l-272 -155l-77 102l245 140q-36 23 -74.5 41.5t-80.5 34.5l60 164q75 -22 143 -57t128 -82l233 133l77 -102l-215 -123q104 -121 161.5 -287t57.5 -366v-98q0 -245 -144 -400.5 t-359 -155.5q-218 0 -357.5 140t-139.5 347zM275 466q0 -132 82 -232.5t222 -100.5q133 0 217.5 114t84.5 288v100q0 8 -0.5 25t-0.5 25q-35 58 -115.5 98t-197.5 40q-131 0 -211.5 -104t-80.5 -253z" />
192
+ <glyph unicode="&#xf1;" horiz-adv-x="1318" d="M60 0v126l163 28v773l-163 28v127h339l14 -161q54 86 135.5 133.5t185.5 47.5q175 0 271 -102.5t96 -316.5v-529l163 -28v-126h-523v126l163 28v525q0 143 -56.5 203t-172.5 60q-85 0 -150.5 -41t-104.5 -112v-635l163 -28v-126h-523zM60 0zM314 1303q0 93 58.5 161.5 t149.5 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5l108 -32q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-42 0 -71.5 -32.5t-29.5 -78.5z" />
193
+ <glyph unicode="&#xf2;" horiz-adv-x="1149" d="M90 0zM90 529v22q0 240 130 395.5t353 155.5q224 0 354.5 -155t130.5 -396v-22q0 -242 -130 -396t-353 -154q-225 0 -355 154.5t-130 395.5zM251 1495l3 6h230l175 -266h-159zM287 529q0 -172 72.5 -284t215.5 -112q140 0 213 112t73 284v22q0 170 -73 283t-215 113 t-214 -113t-72 -283v-22z" />
194
+ <glyph unicode="&#xf3;" horiz-adv-x="1149" d="M90 0zM90 529v22q0 240 130 395.5t353 155.5q224 0 354.5 -155t130.5 -396v-22q0 -242 -130 -396t-353 -154q-225 0 -355 154.5t-130 395.5zM287 529q0 -172 72.5 -284t215.5 -112q140 0 213 112t73 284v22q0 170 -73 283t-215 113t-214 -113t-72 -283v-22zM447 1232 l184 266h230l2 -6l-269 -260h-147z" />
195
+ <glyph unicode="&#xf4;" horiz-adv-x="1149" d="M90 0zM90 529v22q0 240 130 395.5t353 155.5q224 0 354.5 -155t130.5 -396v-22q0 -242 -130 -396t-353 -154q-225 0 -355 154.5t-130 395.5zM268 1263v26l246 237h119l248 -238v-25h-161l-147 148l-145 -148h-160zM287 529q0 -172 72.5 -284t215.5 -112q140 0 213 112 t73 284v22q0 170 -73 283t-215 113t-214 -113t-72 -283v-22z" />
196
+ <glyph unicode="&#xf5;" horiz-adv-x="1149" d="M90 0zM90 529v22q0 240 130 395.5t353 155.5q224 0 354.5 -155t130.5 -396v-22q0 -242 -130 -396t-353 -154q-225 0 -355 154.5t-130 395.5zM218 1303q0 93 58.5 161.5t149.5 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5l108 -32q0 -94 -59.5 -159t-149.5 -65 q-71 0 -148 46.5t-128 46.5q-42 0 -71.5 -32.5t-29.5 -78.5zM287 529q0 -172 72.5 -284t215.5 -112q140 0 213 112t73 284v22q0 170 -73 283t-215 113t-214 -113t-72 -283v-22z" />
197
+ <glyph unicode="&#xf6;" horiz-adv-x="1149" d="M90 0zM90 529v22q0 240 130 395.5t353 155.5q224 0 354.5 -155t130.5 -396v-22q0 -242 -130 -396t-353 -154q-225 0 -355 154.5t-130 395.5zM211 1280v200h218v-200h-218zM287 529q0 -172 72.5 -284t215.5 -112q140 0 213 112t73 284v22q0 170 -73 283t-215 113 t-214 -113t-72 -283v-22zM681 1280v200h218v-200h-218z" />
198
+ <glyph unicode="&#xf7;" horiz-adv-x="1148" d="M74 597v188h998v-188h-998zM475 180v203h198v-203h-198zM475 999v203h198v-203h-198z" />
199
+ <glyph unicode="&#xf8;" horiz-adv-x="1149" d="M90 529v22q0 240 130 395.5t353 155.5q55 0 105.5 -11t97.5 -30l73 148h129l-104 -210q88 -74 136 -190t48 -258v-22q0 -242 -130 -396t-353 -154q-52 0 -99 9t-89 25l-73 -148h-129l101 206q-95 72 -145.5 191t-50.5 267zM287 529q0 -89 19.5 -164t58.5 -123h6l332 672 q-28 16 -61 24.5t-69 8.5q-142 0 -214 -113t-72 -283v-22zM459 158q25 -13 54 -19t62 -6q140 0 213 112t73 284v22q0 81 -17.5 152t-50.5 119h-6z" />
200
+ <glyph unicode="&#xf9;" horiz-adv-x="1244" d="M48 0zM48 955v127h124h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v625l-145 28v127h145h197v-928l124 -28v-126h-301l-13 160q-51 -87 -131.5 -134t-185.5 -47q-176 0 -275 113t-99 352v483zM263 1494l3 6h230l175 -266h-159z" />
201
+ <glyph unicode="&#xfa;" horiz-adv-x="1244" d="M48 0zM48 955v127h124h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v625l-145 28v127h145h197v-928l124 -28v-126h-301l-13 160q-51 -87 -131.5 -134t-185.5 -47q-176 0 -275 113t-99 352v483zM459 1231l184 266h230l2 -6l-269 -260h-147z" />
202
+ <glyph unicode="&#xfb;" horiz-adv-x="1244" d="M48 0zM48 955v127h124h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v625l-145 28v127h145h197v-928l124 -28v-126h-301l-13 160q-51 -87 -131.5 -134t-185.5 -47q-176 0 -275 113t-99 352v483zM280 1262v26l246 237h119l248 -238v-25h-161l-147 148 l-145 -148h-160z" />
203
+ <glyph unicode="&#xfc;" horiz-adv-x="1244" d="M48 0zM48 955v127h124h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v625l-145 28v127h145h197v-928l124 -28v-126h-301l-13 160q-51 -87 -131.5 -134t-185.5 -47q-176 0 -275 113t-99 352v483zM223 1279v200h218v-200h-218zM693 1279v200h218v-200 h-218z" />
204
+ <glyph unicode="&#xfd;" horiz-adv-x="1162" d="M35 0zM35 955v127h437v-127l-122 -20l187 -534l36 -138h6l225 672l-123 20v127h436v-127l-97 -15l-412 -1106q-41 -109 -118 -190t-207 -81q-23 0 -60 5.5t-57 10.5l20 155q-6 1 35.5 -2t52.5 -3q63 0 102 54.5t68 125.5l47 112l-357 918zM451 1231l184 266h230l2 -6 l-269 -260h-147z" />
205
+ <glyph unicode="&#xfe;" horiz-adv-x="1273" d="M25 -289l163 28v1666l-163 28v127h360v-598q53 68 128.5 104t173.5 36q200 0 311.5 -159.5t111.5 -421.5v-21q0 -234 -111.5 -377.5t-308.5 -143.5q-100 0 -176 33.5t-129 100.5v-374l163 -28v-127h-523v127zM385 275q37 -67 97 -104.5t147 -37.5q140 0 212 102t72 265 v21q0 185 -72 303t-214 118q-85 0 -145 -38.5t-97 -105.5v-523z" />
206
+ <glyph unicode="&#xff;" horiz-adv-x="1162" d="M35 0zM35 955v127h437v-127l-122 -20l187 -534l36 -138h6l225 672l-123 20v127h436v-127l-97 -15l-412 -1106q-41 -109 -118 -190t-207 -81q-23 0 -60 5.5t-57 10.5l20 155q-6 1 35.5 -2t52.5 -3q63 0 102 54.5t68 125.5l47 112l-357 918zM215 1279v200h218v-200h-218z M685 1279v200h218v-200h-218z" />
207
+ <glyph unicode="&#x152;" horiz-adv-x="1969" d="M114 576v304q0 265 154.5 431t403.5 166q69 0 140.5 -6t150.5 -15h910v-350h-169l-16 195h-573v-471h557v-155h-557v-521h585l16 195h168v-349h-921q-91 -10 -156.5 -15.5t-132.5 -5.5q-249 0 -404.5 166t-155.5 431zM311 576q0 -214 97 -328t266 -114q53 0 107 3.5 t107 11.5l30 5v1147l-53 9q-50 5 -98 8.5t-95 3.5q-169 0 -265 -113.5t-96 -326.5v-306z" />
208
+ <glyph unicode="&#x153;" horiz-adv-x="1898" d="M104 529v22q0 240 129.5 395.5t352.5 155.5q130 0 230.5 -55t164.5 -154q64 98 161.5 153.5t206.5 55.5q218 0 330.5 -132t112.5 -352v-123h-702l-3 -5q3 -156 78.5 -256.5t213.5 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-59 -57 -153.5 -95t-229.5 -38 q-132 0 -234 53t-166 150q-64 -97 -163.5 -150t-227.5 -53q-224 0 -354 154.5t-130 395.5zM301 529q0 -172 72 -284t215 -112q141 0 214 112t73 284v22q0 170 -73.5 283t-215.5 113q-141 0 -213 -113t-72 -283v-22zM1094 654l2 -5h499v26q0 116 -62 194t-184 78 q-99 0 -169 -83.5t-86 -209.5z" />
209
+ <glyph unicode="&#x178;" horiz-adv-x="1416" d="M55 0zM55 1329v127h500v-127l-157 -19l305 -594l305 594l-156 19v127h500v-127l-123 -19l-432 -798v-358l163 -28v-126h-522v126l163 28v373l-424 783zM337 1604v200h218v-200h-218zM807 1604v200h218v-200h-218z" />
210
+ <glyph unicode="&#x2c6;" horiz-adv-x="828" d="M104 1252v26l246 237h119l248 -238v-25h-161l-147 148l-145 -148h-160z" />
211
+ <glyph unicode="&#x2dc;" horiz-adv-x="948" d="M127 1275q0 93 58.5 161.5t149.5 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5l108 -32q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-42 0 -71.5 -32.5t-29.5 -78.5z" />
212
+ <glyph unicode="&#x2000;" horiz-adv-x="966" />
213
+ <glyph unicode="&#x2001;" horiz-adv-x="1933" />
214
+ <glyph unicode="&#x2002;" horiz-adv-x="966" />
215
+ <glyph unicode="&#x2003;" horiz-adv-x="1933" />
216
+ <glyph unicode="&#x2004;" horiz-adv-x="644" />
217
+ <glyph unicode="&#x2005;" horiz-adv-x="483" />
218
+ <glyph unicode="&#x2006;" horiz-adv-x="322" />
219
+ <glyph unicode="&#x2007;" horiz-adv-x="322" />
220
+ <glyph unicode="&#x2008;" horiz-adv-x="241" />
221
+ <glyph unicode="&#x2009;" horiz-adv-x="386" />
222
+ <glyph unicode="&#x200a;" horiz-adv-x="107" />
223
+ <glyph unicode="&#x2010;" horiz-adv-x="797" d="M154 538v154h489v-154h-489z" />
224
+ <glyph unicode="&#x2011;" horiz-adv-x="797" d="M154 538v154h489v-154h-489z" />
225
+ <glyph unicode="&#x2012;" horiz-adv-x="797" d="M154 538v154h489v-154h-489z" />
226
+ <glyph unicode="&#x2013;" horiz-adv-x="1400" d="M149 648v155h1086v-155h-1086zM161 648z" />
227
+ <glyph unicode="&#x2014;" horiz-adv-x="1613" d="M116 648v155h1336v-155h-1336zM165 648z" />
228
+ <glyph unicode="&#x2018;" horiz-adv-x="418" d="M96 1020v176q0 99 48 206t132 177l112 -73q-48 -73 -71.5 -147.5t-23.5 -159.5v-179h-197z" />
229
+ <glyph unicode="&#x2019;" horiz-adv-x="418" d="M45 1067q47 71 71 145.5t24 160.5v187h197v-184q0 -100 -48.5 -207t-131.5 -176z" />
230
+ <glyph unicode="&#x201a;" horiz-adv-x="417" d="M35 -231q47 72 71 146.5t24 159.5v174h197v-171q0 -98 -49 -205.5t-132 -177.5z" />
231
+ <glyph unicode="&#x201c;" horiz-adv-x="744" d="M96 1020v176q0 99 48 206t132 177l112 -73q-48 -73 -71.5 -147.5t-23.5 -159.5v-179h-197zM96 1020zM422 1020v176q0 99 48 206t132 177l112 -73q-48 -73 -71.5 -147.5t-23.5 -159.5v-179h-197z" />
232
+ <glyph unicode="&#x201d;" horiz-adv-x="752" d="M58 993zM58 1067q47 71 71 145.5t24 160.5v187h197v-184q0 -100 -48.5 -207t-131.5 -176zM376 1067q47 71 71 145.5t24 160.5v187h197v-184q0 -100 -48.5 -207t-131.5 -176z" />
233
+ <glyph unicode="&#x201e;" horiz-adv-x="726" d="M35 -231q47 72 71 146.5t24 159.5v174h197v-171q0 -98 -49 -205.5t-132 -177.5zM342 -231q47 72 71 146.5t24 159.5v174h197v-171q0 -98 -49 -205.5t-132 -177.5z" />
234
+ <glyph unicode="&#x2022;" horiz-adv-x="691" d="M135 733v60q0 88 56 144t150 56q95 0 151.5 -56t56.5 -144v-60q0 -89 -56.5 -143.5t-150.5 -54.5q-95 0 -151 54.5t-56 143.5z" />
235
+ <glyph unicode="&#x2026;" horiz-adv-x="1346" d="M146 0v202h197v-202h-197zM146 0zM588 0v202h197v-202h-197zM1007 0v202h197v-202h-197z" />
236
+ <glyph unicode="&#x202f;" horiz-adv-x="386" />
237
+ <glyph unicode="&#x2039;" horiz-adv-x="593" d="M68 541v19l295 389h148l-255 -399l255 -398h-148z" />
238
+ <glyph unicode="&#x203a;" horiz-adv-x="593" d="M83 152l254 398l-254 399h148l295 -389v-19l-295 -389h-148z" />
239
+ <glyph unicode="&#x205f;" horiz-adv-x="483" />
240
+ <glyph unicode="&#x20ac;" horiz-adv-x="1056" d="M71 512v124h146v166h-146v125h146v15q0 244 141.5 389.5t372.5 145.5q59 0 117.5 -8t124.5 -23l-20 -159q-53 16 -109.5 25.5t-112.5 9.5q-146 0 -231.5 -103t-85.5 -275v-17h491v-125h-491v-166h491v-124h-484l-2 -5q-4 -169 81.5 -271.5t232.5 -102.5q57 0 113 8.5 t107 25.5l20 -157q-56 -15 -117.5 -23t-122.5 -8q-231 0 -373.5 144.5t-142.5 388.5h-146z" />
241
+ <glyph unicode="&#x2122;" horiz-adv-x="1256" d="M98 1374v82h384v-82h-146v-455h-94v455h-144zM560 919v537h116l160 -390h6l163 390h110v-537h-94v341l-6 2l-150 -343h-51l-155 357l-6 -1v-356h-93z" />
242
+ <glyph unicode="&#x25fc;" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
243
+ <glyph unicode="&#xfb03;" horiz-adv-x="1967" d="M70 0zM70 936v146h169v137q0 173 90.5 267.5t252.5 94.5q34 0 68.5 -5.5t76.5 -15.5l-24 -150q-18 4 -43.5 7t-52.5 3q-87 0 -129 -51.5t-42 -149.5v-137h226v-146h-226v-782l163 -28v-126h-523v126l163 28v782h-169zM773 936v146h169v117q0 182 107 282t296 100 q66 0 132 -16t152 -45l-33 -160q-53 21 -113 36t-123 15q-118 0 -169.5 -52t-51.5 -160v-117h617v-928l163 -28v-126h-523v126l163 28v782h-420v-782l163 -28v-126h-523v126l163 28v782h-169z" />
244
+ <glyph unicode="&#xfb04;" horiz-adv-x="2101" d="M70 0zM70 936v146h169v137q0 173 90.5 267.5t252.5 94.5q34 0 68.5 -5.5t76.5 -15.5l-24 -150q-18 4 -43.5 7t-52.5 3q-87 0 -129 -51.5t-42 -149.5v-137h226v-146h-226v-782l163 -28v-126h-523v126l163 28v782h-169zM798 936v146h169v137q0 173 90.5 267.5t252.5 94.5 q34 0 68.5 -5.5t76.5 -15.5l-24 -150q-18 4 -43.5 7t-52.5 3q-87 0 -129 -51.5t-42 -149.5v-137h226v-146h-226v-782l163 -28v-126h-523v126l163 28v782h-169zM1518 0v126l163 28v1251l-163 28v127h360v-1406l163 -28v-126h-523z" />
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>