fontastic 0.1.7 → 0.2.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 (455) hide show
  1. package/.editorconfig +16 -16
  2. package/.github/FUNDING.yml +3 -12
  3. package/.github/ISSUE_TEMPLATE/bug_report.yml +41 -0
  4. package/.github/ISSUE_TEMPLATE/feature_request.yml +29 -0
  5. package/.github/dependabot.yml +6 -6
  6. package/.github/pull_request_template.md +21 -21
  7. package/.github/workflows/claude-code-review.yml +45 -0
  8. package/.github/workflows/claude.yml +46 -0
  9. package/.github/workflows/macos.yml +77 -58
  10. package/.github/workflows/release.yml +165 -0
  11. package/.github/workflows/ubuntu.yml +87 -70
  12. package/.github/workflows/windows.yml +81 -64
  13. package/.husky/pre-commit +1 -0
  14. package/.lintstagedrc.json +6 -0
  15. package/.node-version +1 -1
  16. package/.postcssrc.json +5 -0
  17. package/.prettierignore +8 -0
  18. package/.prettierrc +18 -0
  19. package/.vscode/launch.json +42 -45
  20. package/.vscode/tasks.json +48 -48
  21. package/CODE_OF_CONDUCT.md +128 -45
  22. package/HOW_TO.md +39 -0
  23. package/LICENSE.md +7 -0
  24. package/README.md +103 -111
  25. package/angular.json +166 -202
  26. package/app/Application.js +39 -39
  27. package/app/Application.ts +38 -38
  28. package/app/config/alert.ts +31 -31
  29. package/app/config/database.js +194 -202
  30. package/app/config/database.ts +194 -202
  31. package/app/config/index.js +19 -19
  32. package/app/config/index.ts +2 -2
  33. package/app/config/mimes.js +48 -48
  34. package/app/config/mimes.ts +53 -53
  35. package/app/config/system.js +578 -496
  36. package/app/config/system.ts +580 -498
  37. package/app/config/themes.ts +38 -38
  38. package/app/core/AppLogger.js +30 -30
  39. package/app/core/AppLogger.ts +37 -37
  40. package/app/core/ConfigManager.js +129 -113
  41. package/app/core/ConfigManager.ts +150 -137
  42. package/app/core/ConnectionManager.js +93 -82
  43. package/app/core/ConnectionManager.ts +107 -95
  44. package/app/core/FontCatalog.js +32 -50
  45. package/app/core/FontCatalog.ts +20 -42
  46. package/app/core/FontFinder.js +72 -85
  47. package/app/core/FontFinder.ts +75 -96
  48. package/app/core/FontManager.js +128 -164
  49. package/app/core/FontManager.ts +136 -172
  50. package/app/core/FontObject.js +53 -53
  51. package/app/core/FontObject.ts +62 -62
  52. package/app/core/MessageHandler.js +270 -271
  53. package/app/core/MessageHandler.ts +330 -337
  54. package/app/core/SystemManager.js +132 -139
  55. package/app/core/SystemManager.ts +160 -171
  56. package/app/core/menu/Example.ts +279 -279
  57. package/app/core/menu/MenuBuilder.js +43 -44
  58. package/app/core/menu/MenuBuilder.ts +51 -53
  59. package/app/core/menu/templates/DarwinTemplate.js +124 -126
  60. package/app/core/menu/templates/DarwinTemplate.ts +144 -142
  61. package/app/core/menu/templates/SystemTemplate.js +121 -123
  62. package/app/core/menu/templates/SystemTemplate.ts +136 -139
  63. package/app/database/entity/Collection.schema.js +98 -98
  64. package/app/database/entity/Collection.schema.ts +68 -68
  65. package/app/database/entity/Logger.schema.js +49 -49
  66. package/app/database/entity/Logger.schema.ts +26 -26
  67. package/app/database/entity/Store.schema.js +159 -164
  68. package/app/database/entity/Store.schema.ts +110 -116
  69. package/app/database/entity/index.js +19 -19
  70. package/app/database/entity/index.ts +2 -2
  71. package/app/database/repository/Collection.repository.js +277 -180
  72. package/app/database/repository/Collection.repository.ts +291 -190
  73. package/app/database/repository/Logger.repository.js +24 -24
  74. package/app/database/repository/Logger.repository.ts +10 -10
  75. package/app/database/repository/Store.repository.js +324 -327
  76. package/app/database/repository/Store.repository.ts +349 -358
  77. package/app/database/repository/User.repository.js +11 -11
  78. package/app/database/repository/User.repository.ts +8 -8
  79. package/app/database/repository/index.js +19 -19
  80. package/app/database/repository/index.ts +2 -2
  81. package/app/enums/ChannelType.js +62 -61
  82. package/app/enums/ChannelType.ts +67 -65
  83. package/app/enums/StorageType.js +19 -18
  84. package/app/enums/{storageType.ts → StorageType.ts} +15 -14
  85. package/app/enums/index.js +18 -18
  86. package/app/enums/index.ts +2 -2
  87. package/app/helpers/command.js +27 -27
  88. package/app/helpers/command.ts +19 -19
  89. package/app/helpers/random.js +15 -15
  90. package/app/helpers/random.ts +12 -12
  91. package/app/main.js +97 -81
  92. package/app/main.ts +114 -94
  93. package/app/package-lock.json +2240 -2649
  94. package/app/package.json +23 -35
  95. package/app/types/AppAlert.js +2 -2
  96. package/app/types/AppAlert.ts +8 -8
  97. package/app/types/AuthUser.js +6 -6
  98. package/app/types/AuthUser.ts +5 -5
  99. package/app/types/Breadcrumb.js +2 -2
  100. package/app/types/Breadcrumb.ts +4 -4
  101. package/app/types/FontMetrics.ts +7 -0
  102. package/app/types/ImportOptions.js +6 -6
  103. package/app/types/ImportOptions.ts +3 -3
  104. package/app/types/QueryOptions.js +2 -2
  105. package/app/types/QueryOptions.ts +12 -12
  106. package/app/types/SystemConfig.js +2 -2
  107. package/app/types/SystemConfig.ts +127 -132
  108. package/app/types/SystemStats.js +2 -2
  109. package/app/types/SystemStats.ts +6 -7
  110. package/app/types/SystemTheme.js +2 -2
  111. package/app/types/SystemTheme.ts +5 -5
  112. package/app/types/index.js +24 -24
  113. package/app/types/index.ts +9 -8
  114. package/commitlint.config.mjs +3 -0
  115. package/e2e/main.spec.ts +57 -59
  116. package/e2e/playwright.config.ts +20 -19
  117. package/e2e/tsconfig.e2e.json +13 -13
  118. package/electron-builder.json +34 -71
  119. package/eslint.config.mjs +111 -0
  120. package/package.json +122 -123
  121. package/src/app/app.component.html +1 -2
  122. package/src/app/app.component.spec.ts +21 -0
  123. package/src/app/app.component.ts +40 -37
  124. package/src/app/core/core.module.ts +8 -11
  125. package/src/app/core/services/database/database.service.ts +410 -286
  126. package/src/app/core/services/electron/electron.service.spec.ts +12 -12
  127. package/src/app/core/services/electron/electron.service.ts +62 -62
  128. package/src/app/core/services/index.ts +5 -14
  129. package/src/app/core/services/message/message.service.ts +291 -289
  130. package/src/app/core/services/news/news.service.ts +52 -94
  131. package/src/app/core/services/presentation/presentation.service.ts +253 -341
  132. package/src/app/home/home.component.html +7 -0
  133. package/src/app/home/home.component.spec.ts +31 -0
  134. package/src/app/home/home.component.ts +15 -0
  135. package/src/app/layout/aside/aside.component.html +35 -9
  136. package/src/app/layout/aside/aside.component.ts +60 -26
  137. package/src/app/layout/footer/footer.component.html +5 -11
  138. package/src/app/layout/footer/footer.component.ts +13 -32
  139. package/src/app/layout/header/header.component.html +118 -35
  140. package/src/app/layout/header/header.component.ts +52 -229
  141. package/src/app/layout/layout.component.html +32 -14
  142. package/src/app/layout/layout.component.ts +19 -23
  143. package/src/app/layout/main/main.component.html +46 -0
  144. package/src/app/layout/main/main.component.ts +20 -0
  145. package/src/app/layout/navigation/library/library.component.ts +51 -0
  146. package/src/app/layout/navigation/navigation.component.html +126 -142
  147. package/src/app/layout/navigation/navigation.component.ts +372 -302
  148. package/src/app/layout/navigation/stats/stats.component.ts +56 -0
  149. package/src/app/settings/ai-keys/ai-keys.component.html +56 -0
  150. package/src/app/settings/ai-keys/ai-keys.component.ts +44 -0
  151. package/src/app/settings/danger-zone/danger-zone.component.html +22 -0
  152. package/src/app/settings/danger-zone/danger-zone.component.ts +37 -0
  153. package/src/app/settings/logs/logs.component.html +41 -0
  154. package/src/app/settings/logs/logs.component.ts +43 -0
  155. package/src/app/settings/news-api/news-api.component.html +40 -0
  156. package/src/app/settings/news-api/news-api.component.ts +57 -0
  157. package/src/app/settings/pages/general/general.component.html +7 -0
  158. package/src/app/settings/pages/general/general.component.ts +20 -0
  159. package/src/app/settings/pages/logs/logs.component.html +1 -0
  160. package/src/app/settings/pages/logs/logs.component.ts +10 -0
  161. package/src/app/settings/pages/system/system.component.html +1 -0
  162. package/src/app/settings/pages/system/system.component.ts +10 -0
  163. package/src/app/settings/quick-actions/quick-actions.component.html +49 -0
  164. package/src/app/settings/quick-actions/quick-actions.component.ts +40 -0
  165. package/src/app/settings/settings.component.html +47 -0
  166. package/src/app/settings/settings.component.ts +10 -0
  167. package/src/app/settings/system-info/system-info.component.html +21 -0
  168. package/src/app/settings/system-info/system-info.component.ts +42 -0
  169. package/src/app/settings/theme/theme.component.html +15 -0
  170. package/src/app/settings/theme/theme.component.ts +22 -0
  171. package/src/app/shared/components/collapsible-panel/collapsible-panel.component.ts +43 -0
  172. package/src/app/shared/components/context-menu/context-menu.component.ts +67 -0
  173. package/src/app/shared/components/datagrid/datagrid.component.html +96 -0
  174. package/src/app/shared/components/datagrid/datagrid.component.ts +49 -0
  175. package/src/app/shared/components/index.ts +11 -17
  176. package/src/app/shared/components/inspector/inspector.component.html +140 -0
  177. package/src/app/shared/components/inspector/inspector.component.ts +41 -0
  178. package/src/app/shared/components/page-not-found/page-not-found.component.html +1 -3
  179. package/src/app/shared/components/page-not-found/page-not-found.component.spec.ts +22 -0
  180. package/src/app/shared/components/page-not-found/page-not-found.component.ts +14 -12
  181. package/src/app/shared/components/panel/panel.component.html +5 -0
  182. package/src/app/shared/components/panel/panel.component.ts +8 -0
  183. package/src/app/shared/components/preview/preview.component.html +36 -0
  184. package/src/app/shared/components/preview/preview.component.ts +68 -0
  185. package/src/app/shared/components/prompt-dialog/prompt-dialog.component.html +36 -0
  186. package/src/app/shared/components/prompt-dialog/prompt-dialog.component.ts +39 -0
  187. package/src/app/shared/components/search/search.component.html +329 -54
  188. package/src/app/shared/components/search/search.component.ts +221 -77
  189. package/src/app/shared/components/spinner/spinner.component.ts +10 -26
  190. package/src/app/shared/components/toolbar/toolbar.component.html +207 -0
  191. package/src/app/shared/components/toolbar/toolbar.component.ts +99 -0
  192. package/src/app/shared/components/waterfall/waterfall.component.html +119 -0
  193. package/src/app/shared/components/waterfall/waterfall.component.ts +119 -0
  194. package/src/app/shared/directives/autofocus/autofocus.directive.ts +14 -0
  195. package/src/app/shared/directives/index.ts +2 -2
  196. package/src/app/shared/directives/webview/webview.directive.spec.ts +8 -0
  197. package/src/app/shared/directives/webview/webview.directive.ts +9 -8
  198. package/src/app/shared/shared.module.ts +13 -94
  199. package/src/assets/background.jpg +0 -0
  200. package/src/assets/fonts/md/MaterialIcons-Regular.woff2 +0 -0
  201. package/src/assets/fonts/md/MaterialSymbolsOutlined.woff2 +0 -0
  202. package/src/assets/i18n/en.json +12 -12
  203. package/src/assets/icons/electron.bmp +0 -0
  204. package/src/assets/icons/favicon.256x256.png +0 -0
  205. package/src/assets/icons/favicon.512x512.png +0 -0
  206. package/src/assets/icons/favicon.icns +0 -0
  207. package/src/assets/icons/favicon.ico +0 -0
  208. package/src/assets/icons/favicon.png +0 -0
  209. package/src/environments/environment.dev.ts +4 -4
  210. package/src/environments/environment.prod.ts +4 -4
  211. package/src/environments/environment.ts +4 -4
  212. package/src/favicon.ico +0 -0
  213. package/src/index.html +19 -13
  214. package/src/main.ts +65 -15
  215. package/src/styles/base/reset.css +41 -0
  216. package/src/styles/base/variables.css +356 -0
  217. package/src/styles/components/buttons.css +108 -0
  218. package/src/styles/components/cards.css +60 -0
  219. package/src/styles/components/forms.css +70 -0
  220. package/src/styles/components/navigation.css +24 -0
  221. package/src/styles/components/scrollbox.css +50 -0
  222. package/src/styles/components/spinner.css +7 -0
  223. package/src/styles/components/splash.css +47 -0
  224. package/src/styles/components/toolbar.css +92 -0
  225. package/src/styles/fonts/md.css +39 -0
  226. package/src/styles/themes/dashboard.scss +293 -294
  227. package/src/styles/themes/euphoria.scss +284 -283
  228. package/src/styles/themes/mellow.scss +281 -280
  229. package/src/styles/themes/midnight.scss +284 -283
  230. package/src/styles/themes/passion.scss +281 -280
  231. package/src/styles/themes/swiss.scss +284 -283
  232. package/src/styles.css +17 -0
  233. package/src/tsconfig.app.json +11 -20
  234. package/src/tsconfig.spec.json +10 -23
  235. package/src/typings.d.ts +9 -9
  236. package/src/vitest.d.ts +1 -0
  237. package/tsconfig.json +38 -44
  238. package/tsconfig.serve.json +27 -27
  239. package/.eslintrc.json +0 -54
  240. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -29
  241. package/.github/ISSUE_TEMPLATE/feature_request.md +0 -20
  242. package/.github/stale.yml +0 -17
  243. package/CONTRIBUTING.md +0 -72
  244. package/LICENSE +0 -21
  245. package/angular.webpack.js +0 -35
  246. package/app/core/FontInstaller.js +0 -67
  247. package/app/core/FontInstaller.ts +0 -63
  248. package/docs/logo.png +0 -0
  249. package/docs/screenshots/readme.md +0 -7
  250. package/docs/screenshots/screen-grab1.png +0 -0
  251. package/docs/screenshots/screen-grab2.png +0 -0
  252. package/docs/screenshots/screen-grab3.png +0 -0
  253. package/src/app/app-routing.module.ts +0 -15
  254. package/src/app/app.component.scss +0 -0
  255. package/src/app/app.component.spec.ts.dist +0 -33
  256. package/src/app/app.module.ts +0 -63
  257. package/src/app/core/model/AuthUserModel.ts +0 -7
  258. package/src/app/core/model/CustomThemeModel.ts +0 -7
  259. package/src/app/core/model/DbConnectionModel.ts +0 -16
  260. package/src/app/core/model/ImportOptionsModel.ts +0 -5
  261. package/src/app/core/model/LatestNewsModel.ts +0 -7
  262. package/src/app/core/model/SearchFormModel.ts +0 -10
  263. package/src/app/core/model/index.ts +0 -6
  264. package/src/app/core/services/alert/alert.service.spec.ts +0 -22
  265. package/src/app/core/services/alert/alert.service.ts +0 -71
  266. package/src/app/core/services/auth/auth.service.ts +0 -30
  267. package/src/app/core/services/boot/boot.service.ts +0 -33
  268. package/src/app/core/services/breadcrumb/breadcrumb.service.spec.ts +0 -22
  269. package/src/app/core/services/breadcrumb/breadcrumb.service.ts +0 -30
  270. package/src/app/core/services/config/config.service.ts +0 -63
  271. package/src/app/core/services/font/font.service.ts +0 -79
  272. package/src/app/core/services/gravatar/gravatar.service.spec.ts +0 -16
  273. package/src/app/core/services/gravatar/gravatar.service.ts +0 -18
  274. package/src/app/core/services/modal/modal.service.spec.ts +0 -16
  275. package/src/app/core/services/modal/modal.service.ts +0 -34
  276. package/src/app/core/services/utils/utils.service.spec.ts +0 -12
  277. package/src/app/core/services/utils/utils.service.ts +0 -144
  278. package/src/app/layout/aside/aside.component.scss +0 -1
  279. package/src/app/layout/footer/footer.component.scss +0 -27
  280. package/src/app/layout/header/header.component.scss +0 -60
  281. package/src/app/layout/layout.component.scss +0 -119
  282. package/src/app/layout/layout.module.ts +0 -32
  283. package/src/app/layout/layout.service.ts +0 -13
  284. package/src/app/layout/navigation/navigation.component.scss +0 -0
  285. package/src/app/pages/main/grid/grid.component.html +0 -183
  286. package/src/app/pages/main/grid/grid.component.scss +0 -3
  287. package/src/app/pages/main/grid/grid.component.ts +0 -98
  288. package/src/app/pages/main/inspect/inspect.component.html +0 -7
  289. package/src/app/pages/main/inspect/inspect.component.scss +0 -3
  290. package/src/app/pages/main/inspect/inspect.component.ts +0 -66
  291. package/src/app/pages/main/main-routing.module.ts +0 -30
  292. package/src/app/pages/main/main.component.html +0 -6
  293. package/src/app/pages/main/main.component.scss +0 -191
  294. package/src/app/pages/main/main.component.ts +0 -35
  295. package/src/app/pages/main/main.module.ts +0 -28
  296. package/src/app/pages/main/preview/preview.component.html +0 -46
  297. package/src/app/pages/main/preview/preview.component.scss +0 -0
  298. package/src/app/pages/main/preview/preview.component.ts +0 -239
  299. package/src/app/pages/main/toolbar/toolbar.component.html +0 -78
  300. package/src/app/pages/main/toolbar/toolbar.component.scss +0 -3
  301. package/src/app/pages/main/toolbar/toolbar.component.ts +0 -132
  302. package/src/app/shared/components/alert/alert.component.html +0 -9
  303. package/src/app/shared/components/alert/alert.component.scss +0 -0
  304. package/src/app/shared/components/alert/alert.component.ts +0 -37
  305. package/src/app/shared/components/breadcrumbs/breadcrumbs.component.html +0 -14
  306. package/src/app/shared/components/breadcrumbs/breadcrumbs.component.scss +0 -0
  307. package/src/app/shared/components/breadcrumbs/breadcrumbs.component.ts +0 -36
  308. package/src/app/shared/components/button/button.component.html +0 -3
  309. package/src/app/shared/components/button/button.component.scss +0 -2
  310. package/src/app/shared/components/button/button.component.ts +0 -22
  311. package/src/app/shared/components/collection/create-collection/create-collection.component.html +0 -41
  312. package/src/app/shared/components/collection/create-collection/create-collection.component.scss +0 -0
  313. package/src/app/shared/components/collection/create-collection/create-collection.component.ts +0 -68
  314. package/src/app/shared/components/collection/form-collection/form-collection.component.html +0 -1
  315. package/src/app/shared/components/collection/form-collection/form-collection.component.scss +0 -0
  316. package/src/app/shared/components/collection/form-collection/form-collection.component.ts +0 -15
  317. package/src/app/shared/components/collection/update-collection/update-collection.component.html +0 -40
  318. package/src/app/shared/components/collection/update-collection/update-collection.component.scss +0 -0
  319. package/src/app/shared/components/collection/update-collection/update-collection.component.ts +0 -71
  320. package/src/app/shared/components/glyph-list/glyph-list.component.html +0 -40
  321. package/src/app/shared/components/glyph-list/glyph-list.component.scss +0 -1
  322. package/src/app/shared/components/glyph-list/glyph-list.component.ts +0 -165
  323. package/src/app/shared/components/glyph-view/glyph-view.component.html +0 -23
  324. package/src/app/shared/components/glyph-view/glyph-view.component.scss +0 -0
  325. package/src/app/shared/components/glyph-view/glyph-view.component.ts +0 -228
  326. package/src/app/shared/components/loading/loading.component.html +0 -1
  327. package/src/app/shared/components/loading/loading.component.scss +0 -0
  328. package/src/app/shared/components/loading/loading.component.ts +0 -26
  329. package/src/app/shared/components/modal/modal.component.html +0 -31
  330. package/src/app/shared/components/modal/modal.component.scss +0 -0
  331. package/src/app/shared/components/modal/modal.component.ts +0 -51
  332. package/src/app/shared/components/page-not-found/page-not-found.component.scss +0 -0
  333. package/src/app/shared/components/paginator/paginator.component.html +0 -21
  334. package/src/app/shared/components/paginator/paginator.component.scss +0 -3
  335. package/src/app/shared/components/paginator/paginator.component.ts +0 -133
  336. package/src/app/shared/components/pairing/pairing.component.html +0 -20
  337. package/src/app/shared/components/pairing/pairing.component.scss +0 -0
  338. package/src/app/shared/components/pairing/pairing.component.ts +0 -33
  339. package/src/app/shared/components/search/search.component.scss +0 -10
  340. package/src/app/shared/components/settings/database/database.component.html +0 -151
  341. package/src/app/shared/components/settings/database/database.component.scss +0 -0
  342. package/src/app/shared/components/settings/database/database.component.ts +0 -145
  343. package/src/app/shared/components/settings/general/general.component.html +0 -170
  344. package/src/app/shared/components/settings/general/general.component.scss +0 -0
  345. package/src/app/shared/components/settings/general/general.component.ts +0 -150
  346. package/src/app/shared/components/settings/logs/logs.component.html +0 -44
  347. package/src/app/shared/components/settings/logs/logs.component.scss +0 -0
  348. package/src/app/shared/components/settings/logs/logs.component.ts +0 -37
  349. package/src/app/shared/components/settings/news/news.component.html +0 -41
  350. package/src/app/shared/components/settings/news/news.component.scss +0 -0
  351. package/src/app/shared/components/settings/news/news.component.ts +0 -52
  352. package/src/app/shared/components/settings/settings.component.html +0 -46
  353. package/src/app/shared/components/settings/settings.component.scss +0 -0
  354. package/src/app/shared/components/settings/settings.component.ts +0 -23
  355. package/src/app/shared/components/settings/system/system.component.html +0 -30
  356. package/src/app/shared/components/settings/system/system.component.scss +0 -0
  357. package/src/app/shared/components/settings/system/system.component.ts +0 -43
  358. package/src/app/shared/components/settings/theme/theme.component.html +0 -22
  359. package/src/app/shared/components/settings/theme/theme.component.scss +0 -0
  360. package/src/app/shared/components/settings/theme/theme.component.ts +0 -50
  361. package/src/app/shared/components/spinner/spinner.component.html +0 -1
  362. package/src/app/shared/components/spinner/spinner.component.scss +0 -0
  363. package/src/app/shared/components/splash-screen/splash-screen.component.html +0 -5
  364. package/src/app/shared/components/splash-screen/splash-screen.component.scss +0 -31
  365. package/src/app/shared/components/splash-screen/splash-screen.component.ts +0 -17
  366. package/src/app/shared/components/store/store.component.html +0 -22
  367. package/src/app/shared/components/store/store.component.scss +0 -10
  368. package/src/app/shared/components/store/store.component.ts +0 -58
  369. package/src/app/shared/components/tables/tables.component.html +0 -47
  370. package/src/app/shared/components/tables/tables.component.scss +0 -10
  371. package/src/app/shared/components/tables/tables.component.ts +0 -81
  372. package/src/app/shared/components/typescale/typescale.component.html +0 -53
  373. package/src/app/shared/components/typescale/typescale.component.scss +0 -0
  374. package/src/app/shared/components/typescale/typescale.component.ts +0 -168
  375. package/src/app/shared/directives/gravatar/gravatar.directive.ts +0 -29
  376. package/src/app/shared/pipes/installable.pipe.ts +0 -10
  377. package/src/app/shared/pipes/prettybytes.pipe.ts +0 -10
  378. package/src/app/shared/pipes/safehtml.pipe.ts +0 -10
  379. package/src/assets/fonts/fa/fa-brands-400.eot +0 -0
  380. package/src/assets/fonts/fa/fa-brands-400.svg +0 -3535
  381. package/src/assets/fonts/fa/fa-brands-400.ttf +0 -0
  382. package/src/assets/fonts/fa/fa-brands-400.woff +0 -0
  383. package/src/assets/fonts/fa/fa-brands-400.woff2 +0 -0
  384. package/src/assets/fonts/fa/fa-regular-400.eot +0 -0
  385. package/src/assets/fonts/fa/fa-regular-400.svg +0 -803
  386. package/src/assets/fonts/fa/fa-regular-400.ttf +0 -0
  387. package/src/assets/fonts/fa/fa-regular-400.woff +0 -0
  388. package/src/assets/fonts/fa/fa-regular-400.woff2 +0 -0
  389. package/src/assets/fonts/fa/fa-solid-900.eot +0 -0
  390. package/src/assets/fonts/fa/fa-solid-900.svg +0 -4700
  391. package/src/assets/fonts/fa/fa-solid-900.ttf +0 -0
  392. package/src/assets/fonts/fa/fa-solid-900.woff +0 -0
  393. package/src/assets/fonts/fa/fa-solid-900.woff2 +0 -0
  394. package/src/assets/fonts/md/MaterialIcons-Regular.eot +0 -0
  395. package/src/assets/fonts/md/MaterialIcons-Regular.ijmap +0 -1
  396. package/src/assets/fonts/md/MaterialIcons-Regular.svg +0 -2373
  397. package/src/assets/fonts/md/MaterialIcons-Regular.ttf +0 -0
  398. package/src/assets/fonts/md/MaterialIcons-Regular.woff +0 -0
  399. package/src/assets/fonts/md/README.md +0 -9
  400. package/src/assets/fonts/md/codepoints +0 -932
  401. package/src/assets/fonts/md/material-icons.css +0 -36
  402. package/src/assets/fonts/octicon/octicon.eot +0 -0
  403. package/src/assets/fonts/octicon/octicon.svg +0 -378
  404. package/src/assets/fonts/octicon/octicon.ttf +0 -0
  405. package/src/assets/fonts/octicon/octicon.woff +0 -0
  406. package/src/assets/fonts/octicon/octicon.woff2 +0 -0
  407. package/src/assets/fonts/roboto/Roboto-Bold-webfont.eot +0 -0
  408. package/src/assets/fonts/roboto/Roboto-Bold-webfont.svg +0 -607
  409. package/src/assets/fonts/roboto/Roboto-Bold-webfont.ttf +0 -0
  410. package/src/assets/fonts/roboto/Roboto-Bold-webfont.woff +0 -0
  411. package/src/assets/fonts/roboto/Roboto-Medium-webfont.eot +0 -0
  412. package/src/assets/fonts/roboto/Roboto-Medium-webfont.svg +0 -607
  413. package/src/assets/fonts/roboto/Roboto-Medium-webfont.ttf +0 -0
  414. package/src/assets/fonts/roboto/Roboto-Medium-webfont.woff +0 -0
  415. package/src/assets/fonts/roboto/Roboto-Regular-webfont.eot +0 -0
  416. package/src/assets/fonts/roboto/Roboto-Regular-webfont.svg +0 -635
  417. package/src/assets/fonts/roboto/Roboto-Regular-webfont.ttf +0 -0
  418. package/src/assets/fonts/roboto/Roboto-Regular-webfont.woff +0 -0
  419. package/src/assets/icons/android-chrome-192x192.png +0 -0
  420. package/src/assets/icons/android-chrome-512x512.png +0 -0
  421. package/src/assets/icons/apple-touch-icon.png +0 -0
  422. package/src/assets/icons/favicon-16x16.png +0 -0
  423. package/src/assets/icons/favicon-32x32.png +0 -0
  424. package/src/assets/icons/site.webmanifest +0 -1
  425. package/src/assets/images/electron.bmp +0 -0
  426. package/src/bin/activator +0 -0
  427. package/src/bin/activator.exe +0 -0
  428. package/src/environments/environment.web.prod.ts +0 -4
  429. package/src/environments/environment.web.ts +0 -4
  430. package/src/karma.conf.js +0 -50
  431. package/src/polyfills-test.ts +0 -1
  432. package/src/polyfills.ts +0 -53
  433. package/src/styles/base/loading.scss +0 -87
  434. package/src/styles/base/reset.scss +0 -408
  435. package/src/styles/components/alert.scss +0 -54
  436. package/src/styles/components/buttons.scss +0 -93
  437. package/src/styles/components/forms.scss +0 -96
  438. package/src/styles/components/inputs.scss +0 -113
  439. package/src/styles/components/modal.scss +0 -52
  440. package/src/styles/components/paginator.scss +0 -108
  441. package/src/styles/components/scrollbox.scss +0 -71
  442. package/src/styles/components/spinner.scss +0 -11
  443. package/src/styles/components/tables.scss +0 -42
  444. package/src/styles/components/tabs.scss +0 -44
  445. package/src/styles/components/toolbar.scss +0 -130
  446. package/src/styles/fonts/md.scss +0 -54
  447. package/src/styles/fonts/octicons.scss +0 -1351
  448. package/src/styles/fonts/roboto.scss +0 -32
  449. package/src/styles/tools/_functions.scss +0 -5
  450. package/src/styles/tools/_mixins.scss +0 -159
  451. package/src/styles/tools/_placeholders.scss +0 -17
  452. package/src/styles/tools/_variables.scss +0 -67
  453. package/src/styles.scss +0 -37
  454. package/src/test.ts +0 -17
  455. package/tailwind.config.js +0 -67
@@ -1,635 +0,0 @@
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="robotoregular" horiz-adv-x="1164" >
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="1140" d="M198 0v936h-170v146h170v117q0 182 106.5 282t295.5 100q67 0 132 -15.5t153 -45.5l-34 -160q-53 21 -113 36t-123 15q-117 0 -168.5 -52t-51.5 -160v-117h215v-146h-215v-936h-197zM981 0h-198v1082h198v-1082z" />
10
- <glyph horiz-adv-x="0" />
11
- <glyph unicode="&#xd;" horiz-adv-x="509" />
12
- <glyph unicode=" " horiz-adv-x="509" />
13
- <glyph unicode="&#x09;" horiz-adv-x="509" />
14
- <glyph unicode="&#xa0;" horiz-adv-x="509" />
15
- <glyph unicode="!" horiz-adv-x="539" d="M368 478h-197v978h197v-978zM369 0h-198v204h198v-204z" />
16
- <glyph unicode="&#x22;" horiz-adv-x="668" d="M278 1290l-101 -250h-97l1 240v280h197v-270zM587 1290l-101 -250h-97l1 248v272h197v-270z" />
17
- <glyph unicode="#" horiz-adv-x="1276" d="M712 410h-255l-80 -410h-151l80 410h-236v140h264l68 348h-256v142h284l82 416h151l-82 -416h255l82 416h151l-82 -416h199v-142h-226l-68 -348h219v-140h-247l-80 -410h-152zM485 550h255l68 348h-255z" />
18
- <glyph unicode="$" horiz-adv-x="1153" d="M848 376q0 89 -64 153t-210 114q-202 61 -305 163t-103 272q0 165 94.5 269t260.5 125v221h158v-222q168 -24 260.5 -143.5t92.5 -320.5h-196q0 136 -63 220t-175 84q-118 0 -176.5 -61.5t-58.5 -168.5q0 -97 60.5 -157t218.5 -114q205 -66 304 -164.5t99 -267.5 q0 -172 -103 -273.5t-283 -120.5v-192h-157v191q-172 18 -282 125.5t-106 315.5l2 5h190q0 -154 77.5 -219.5t190.5 -65.5q129 0 201.5 61.5t72.5 170.5z" />
19
- <glyph unicode="%" horiz-adv-x="1498" d="M104 1176q0 127 82 214t219 87t219 -86.5t82 -214.5v-77q0 -127 -81.5 -213t-217.5 -86q-138 0 -220.5 86t-82.5 213v77zM250 1099q0 -74 40.5 -125.5t116.5 -51.5q73 0 113 51t40 126v77q0 74 -40.5 126.5t-114.5 52.5q-75 0 -115 -52.5t-40 -126.5v-77zM809 357 q0 127 82 213.5t219 86.5q136 0 218.5 -86.5t82.5 -213.5v-78q0 -128 -82 -214t-217 -86q-138 0 -220.5 86t-82.5 214v78zM955 279q0 -75 40.5 -126.5t116.5 -51.5q73 0 113 51.5t40 126.5v78q0 74 -41 126t-114 52q-74 0 -114.5 -52t-40.5 -126v-78zM458 110l-109 67 l711 1138l109 -67z" />
20
- <glyph unicode="&#x26;" horiz-adv-x="1276" d="M64 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 -132 -39 -244t-113 -201l185 -223l-2 -5h-229l-85 102 q-80 -60 -177 -91.5t-201 -31.5q-217 0 -345.5 115t-128.5 298zM538 133q72 0 142 24.5t132 70.5l-361 435l-40 -29q-91 -68 -120.5 -130t-29.5 -112q0 -113 71 -186t206 -73zM388 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" />
21
- <glyph unicode="'" horiz-adv-x="359" d="M278 1337l-101 -282h-97l1 265v240h197v-223z" />
22
- <glyph unicode="(" horiz-adv-x="679" d="M132 591q0 394 159 673t334 372l6 -1l38 -116q-137 -107 -238.5 -343t-101.5 -583v-13q0 -347 101 -583t239 -352l-38 -108h-6q-175 93 -334 371.5t-159 673.5v9z" />
23
- <glyph unicode=")" horiz-adv-x="687" d="M543 582q0 -395 -159.5 -673.5t-333.5 -371.5h-6l-38 108q135 105 237.5 345.5t102.5 589.5v13q0 342 -105.5 583.5t-234.5 351.5l38 108h6q174 -93 333.5 -372t159.5 -673v-9z" />
24
- <glyph unicode="*" horiz-adv-x="884" d="M324 982l-296 89l49 154l296 -111l-10 342h161l-10 -348l293 110l48 -156l-302 -89l193 -270l-131 -96l-181 287l-176 -279l-132 93z" />
25
- <glyph unicode="+" horiz-adv-x="1162" d="M677 783h399v-178h-399v-459h-197v459h-402v178h402v423h197v-423z" />
26
- <glyph unicode="," horiz-adv-x="404" d="M315 48l-150 -306h-117l70 316v163h197v-173z" />
27
- <glyph unicode="-" horiz-adv-x="561" d="M525 538h-490v154h490v-154z" />
28
- <glyph unicode="." horiz-adv-x="548" d="M358 0h-197v202h197v-202z" />
29
- <glyph unicode="/" horiz-adv-x="850" d="M184 -125h-168l608 1581h167z" />
30
- <glyph unicode="0" horiz-adv-x="1154" d="M1040 555q0 -279 -123.5 -427.5t-338.5 -148.5t-340 149t-125 427v345q0 278 124.5 427.5t338.5 149.5q215 0 339.5 -149.5t124.5 -427.5v-345zM843 942q0 189 -68.5 284.5t-198.5 95.5t-198 -95.5t-68 -284.5v-427q0 -189 69 -285.5t199 -96.5t197.5 96t67.5 286v427z " />
31
- <glyph unicode="1" horiz-adv-x="1153" d="M681 0h-197v1264l-298 -4v142l495 54v-1456z" />
32
- <glyph unicode="2" horiz-adv-x="1153" d="M1062 0h-944v135l477 530q128 143 173.5 227t45.5 172q0 109 -63.5 183.5t-168.5 74.5q-151 0 -222.5 -77.5t-71.5 -217.5h-189l-2 6q-5 188 125 316t360 128q196 0 312.5 -114.5t116.5 -291.5q0 -119 -70.5 -238.5t-197.5 -256.5l-383 -417l2 -5h700v-154z" />
33
- <glyph unicode="3" horiz-adv-x="1153" d="M388 819h172q131 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.5q0 -90 -54.5 -179.5t-163.5 -136.5q131 -43 185.5 -135t54.5 -206q0 -199 -130.5 -313 t-333.5 -114q-199 0 -329.5 107.5t-125.5 291.5l3 6h188q0 -115 70.5 -183t193.5 -68q125 0 196 68t71 201q0 135 -63 199t-199 64h-172v154z" />
34
- <glyph unicode="4" horiz-adv-x="1153" d="M905 490h201v-154h-201v-336h-196v336h-654v111l642 1009h208v-966zM265 490h444v683l-6 1l-19 -50z" />
35
- <glyph unicode="5" horiz-adv-x="1153" d="M175 657l84 799h729v-175h-562l-48 -409q46 34 102.5 56.5t130.5 24.5q201 2 316.5 -131t115.5 -358q0 -219 -117.5 -352t-342.5 -133q-185 0 -308 101t-118 297l2 6h178q0 -119 68.5 -184.5t177.5 -65.5q125 0 194 88t69 241q0 140 -70 230t-193 90q-116 0 -168 -35 t-76 -107z" />
36
- <glyph unicode="6" horiz-adv-x="1153" d="M675 1477q75 0 148.5 -17t121.5 -43l-42 -151q-49 25 -102.5 40.5t-125.5 15.5q-156 0 -251.5 -125t-95.5 -326v-23q64 56 146.5 87.5t177.5 31.5q195 0 311 -135t116 -342q0 -226 -123.5 -368.5t-329.5 -142.5q-214 0 -354 155t-140 437v278q0 280 156 454t387 174z M608 820q-101 0 -172 -41t-108 -109v-118q0 -201 85 -310t213 -109q121 0 188.5 102.5t67.5 254.5q0 144 -72.5 237t-201.5 93z" />
37
- <glyph unicode="7" horiz-adv-x="1153" d="M1062 1301q-264 -314 -356.5 -556.5t-133.5 -587.5l-16 -157h-197l16 157q42 344 163 615t331 529h-792v155h985v-155z" />
38
- <glyph unicode="8" horiz-adv-x="1153" d="M1010 1076q0 -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.5 106.5t-130.5 308.5q0 123 74 217t200 138q-109 42 -171 127.5t-62 199.5q0 192 118.5 296.5t313.5 104.5q192 0 313.5 -104.5t121.5 -296.5z M854 398q0 120 -79 197t-200 77q-123 0 -199.5 -77t-76.5 -197q0 -124 76 -194.5t202 -70.5q123 0 200 71t77 194zM813 1072q0 108 -67.5 179t-170.5 71q-105 0 -170 -68.5t-65 -181.5q0 -111 65.5 -178t171.5 -67q104 0 170 67t66 178z" />
39
- <glyph unicode="9" horiz-adv-x="1153" d="M511 133q144 0 230.5 109t86.5 324v66q-49 -71 -122.5 -107.5t-163.5 -36.5q-211 0 -335 130.5t-124 359.5q0 219 131.5 359t319.5 140q228 0 359.5 -142.5t131.5 -419.5v-347q0 -285 -142.5 -437t-371.5 -152q-77 0 -156.5 14.5t-142.5 44.5l30 151q59 -31 122.5 -43.5 t146.5 -12.5zM542 642q109 0 181.5 47t104.5 120v126q0 191 -73.5 289t-214.5 98q-108 0 -184 -96.5t-76 -247.5q0 -150 70.5 -243t191.5 -93z" />
40
- <glyph unicode=":" horiz-adv-x="517" d="M358 0h-197v202h197v-202zM358 876h-197v202h197v-202z" />
41
- <glyph unicode=";" horiz-adv-x="525" d="M359 876h-197v202h197v-202zM366 48l-150 -306h-117l70 316v163h197v-173z" />
42
- <glyph unicode="&#x3c;" horiz-adv-x="1040" d="M328 559l-85 -18v-6l85 -19l559 -228v-201l-816 379v149l816 378v-201z" />
43
- <glyph unicode="=" horiz-adv-x="1153" d="M986 823h-834v164h834v-164zM986 407h-834v164h834v-164z" />
44
- <glyph unicode="&#x3e;" horiz-adv-x="1072" d="M136 798v195l856 -378v-149l-856 -379v196l598 238l85 17v6l-85 20z" />
45
- <glyph unicode="?" horiz-adv-x="974" d="M355 410q1 145 25 201t126 148q99 117 141 180t42 152q0 106 -56.5 163t-161.5 57q-91 0 -155 -49.5t-64 -145.5h-188l-3 6q-3 161 113.5 258t296.5 97q197 0 306 -100.5t109 -280.5q0 -129 -70.5 -236t-186.5 -219q-54 -54 -65.5 -97t-11.5 -134h-197zM559 0h-206v208 h206v-208z" />
46
- <glyph unicode="@" horiz-adv-x="1833" d="M1732 502q-9 -214 -120 -368.5t-332 -154.5q-73 0 -126 41.5t-76 117.5q-50 -80 -122 -119.5t-168 -39.5q-125 0 -194 120.5t-51 316.5q23 259 137.5 415.5t279.5 156.5q105 0 169 -26t139 -80l-4 -4h6l-51 -585q-9 -110 21.5 -151.5t81.5 -41.5q123 0 197 113.5 t82 288.5q16 382 -144 595.5t-496 213.5q-308 0 -495.5 -231t-202.5 -602q-18 -376 150 -594.5t482 -218.5q88 0 178.5 21.5t152.5 56.5l38 -107q-67 -42 -170.5 -65.5t-202.5 -23.5q-380 0 -587.5 249.5t-189.5 681.5q19 423 249 688t602 265q379 0 581.5 -250t185.5 -679z M720 416q-11 -142 21.5 -216t106.5 -74q64 0 117 24.5t97 87.5q-1 12 -0.5 25.5t2.5 29.5l47 538q-26 12 -54.5 19t-59.5 7q-125 0 -191 -109.5t-86 -331.5z" />
47
- <glyph unicode="A" horiz-adv-x="1326" d="M969 375h-610l-138 -375h-201l563 1456h169l554 -1456h-201zM420 540h490l-240 663h-6z" />
48
- <glyph unicode="B" horiz-adv-x="1309" d="M180 0v1456h475q228 0 357 -98.5t129 -295.5q0 -97 -62 -173.5t-163 -113.5q132 -28 207.5 -129t75.5 -235q0 -200 -129.5 -305.5t-351.5 -105.5h-538zM377 683v-529h341q134 0 209 66.5t75 188.5q0 128 -62.5 201t-192.5 73h-370zM377 837h319q110 0 179 60.5t69 168.5 q0 118 -74.5 176.5t-214.5 58.5h-278v-464z" />
49
- <glyph unicode="C" horiz-adv-x="1297" d="M1209 466l2 -6q4 -205 -144 -343t-391 -138q-247 0 -402.5 175t-155.5 444v259q0 269 155.5 444.5t402.5 175.5t393 -131.5t142 -348.5l-2 -6h-189q0 153 -90 242t-254 89q-165 0 -263 -133t-98 -330v-261q0 -199 98 -332t263 -133q164 0 254 88.5t90 244.5h189z" />
50
- <glyph unicode="D" horiz-adv-x="1349" d="M180 0v1456h447q286 0 459 -175.5t173 -453.5v-199q0 -279 -173 -453.5t-459 -174.5h-447zM377 1301v-1147h250q202 0 318.5 133t116.5 341v201q0 206 -116.5 339t-318.5 133h-250z" />
51
- <glyph unicode="E" horiz-adv-x="1197" d="M1044 675h-667v-521h769v-154h-966v1456h955v-155h-758v-471h667v-155z" />
52
- <glyph unicode="F" horiz-adv-x="1193" d="M1041 644h-664v-644h-197v1456h963v-155h-766v-502h664v-155z" />
53
- <glyph unicode="G" horiz-adv-x="1396" d="M1235 193q-52 -80 -180.5 -147t-332.5 -67q-261 0 -431.5 167t-170.5 432v300q0 265 159 432t410 167q250 0 393 -123t146 -317l-2 -6h-188q-9 127 -96.5 209t-252.5 82q-167 0 -269 -125t-102 -317v-302q0 -194 114 -319.5t290 -125.5q124 0 203 33t113 75v331h-319v155 h516v-534z" />
54
- <glyph unicode="H" horiz-adv-x="1461" d="M1281 0h-197v643h-707v-643h-197v1456h197v-658h707v658h197v-1456z" />
55
- <glyph unicode="I" horiz-adv-x="579" d="M388 0h-198v1456h198v-1456z" />
56
- <glyph unicode="J" horiz-adv-x="1130" d="M766 1456h197v-1053q0 -195 -123.5 -309.5t-320.5 -114.5q-210 0 -334 106.5t-119 309.5l2 6h189q0 -135 68.5 -201.5t193.5 -66.5q109 0 178 73.5t69 196.5v1053z" />
57
- <glyph unicode="K" horiz-adv-x="1317" d="M547 657h-170v-657h-197v1456h197v-644h152l521 644h218l3 -5l-565 -699l606 -747l-3 -5h-235z" />
58
- <glyph unicode="L" horiz-adv-x="1106" d="M377 154h689v-154h-886v1456h197v-1302z" />
59
- <glyph unicode="M" horiz-adv-x="1799" d="M432 1456l464 -1183h6l464 1183h252v-1456h-197v576l20 592l-5 1l-472 -1169h-131l-470 1166l-5 -1l19 -589v-576h-197v1456h252z" />
60
- <glyph unicode="N" horiz-adv-x="1461" d="M1281 0h-197l-701 1126l-6 -2v-1124h-197v1456h197l701 -1124l6 2v1122h197v-1456z" />
61
- <glyph unicode="O" horiz-adv-x="1396" d="M1282 598q0 -267 -165.5 -443t-429.5 -176q-255 0 -414.5 176t-159.5 443v259q0 266 159.5 443t414.5 177q264 0 429.5 -176.5t165.5 -443.5v-259zM1085 859q0 200 -108 328t-290 128q-172 0 -274.5 -128t-102.5 -328v-261q0 -202 102.5 -330t274.5 -128 q183 0 290.5 127.5t107.5 330.5v261z" />
62
- <glyph unicode="P" horiz-adv-x="1312" d="M377 584v-584h-197v1456h557q233 0 362 -120t129 -316q0 -199 -129 -317.5t-362 -118.5h-360zM377 738h360q148 0 221 79.5t73 200.5t-73.5 202t-220.5 81h-360v-563z" />
63
- <glyph unicode="Q" horiz-adv-x="1396" d="M1282 598q0 -142 -50 -263t-140 -205l247 -233l-135 -129l-276 257q-56 -23 -116.5 -34.5t-124.5 -11.5q-255 0 -414.5 176t-159.5 443v259q0 266 159.5 443t414.5 177q264 0 429.5 -176.5t165.5 -443.5v-259zM1085 859q0 200 -108 328t-290 128q-172 0 -274.5 -128 t-102.5 -328v-261q0 -202 102.5 -330t274.5 -128q183 0 290.5 127.5t107.5 330.5v261z" />
64
- <glyph unicode="R" horiz-adv-x="1357" d="M377 631v-631h-197v1455h527q239 0 365 -106t126 -308q0 -112 -58.5 -195t-170.5 -132q120 -39 172.5 -126.5t52.5 -216.5v-137q0 -68 15 -122t52 -88v-24h-203q-39 34 -50 100t-11 136v133q0 118 -69 190t-185 72h-366zM377 786h310q167 0 240.5 63.5t73.5 193.5 q0 123 -71.5 190.5t-222.5 67.5h-330v-515z" />
65
- <glyph unicode="S" horiz-adv-x="1277" d="M973 367q0 100 -75 167.5t-266 113.5q-231 55 -360.5 162t-129.5 269q0 170 139.5 284t361.5 114q239 0 380.5 -131t136.5 -304l-2 -6h-188q0 128 -84.5 207t-242.5 79q-147 0 -225.5 -66.5t-78.5 -173.5q0 -95 85 -158.5t276 -111.5q230 -57 350 -168t120 -275 q0 -176 -144 -283t-376 -107q-218 0 -385.5 118t-162.5 316l2 6h188q0 -140 103 -213t255 -73q149 0 236 63t87 171z" />
66
- <glyph unicode="T" horiz-adv-x="1200" d="M1166 1301h-468v-1301h-197v1301h-467v155h1132v-155z" />
67
- <glyph unicode="U" horiz-adv-x="1386" d="M1244 1456v-987q0 -238 -154.5 -364t-403.5 -126q-240 0 -389.5 126.5t-149.5 363.5v987h197v-987q0 -165 94 -250.5t248 -85.5q162 0 261.5 85.5t99.5 250.5v987h197z" />
68
- <glyph unicode="V" horiz-adv-x="1295" d="M612 362l33 -115h6l33 115l376 1094h213l-541 -1456h-169l-541 1456h214z" />
69
- <glyph unicode="W" horiz-adv-x="1809" d="M472 504l27 -182l6 -1l39 183l267 952h174l269 -952l40 -187h6l29 187l217 952h197l-351 -1456h-176l-287 1010l-26 131h-6l-25 -131l-292 -1010h-176l-350 1456h196z" />
70
- <glyph unicode="X" horiz-adv-x="1295" d="M650 888l340 568h238l-462 -722l472 -734h-235l-349 578l-350 -578h-238l472 734l-462 722h236z" />
71
- <glyph unicode="Y" horiz-adv-x="1250" d="M625 716l380 740h225l-511 -944v-512h-196v525l-503 931h225z" />
72
- <glyph unicode="Z" horiz-adv-x="1225" d="M319 154h814v-154h-1036v146l778 1155h-767v155h992v-141z" />
73
- <glyph unicode="[" horiz-adv-x="552" d="M528 1509h-188v-1666h188v-155h-385v1976h385v-155z" />
74
- <glyph unicode="\" horiz-adv-x="846" d="M39 1456h186l608 -1581h-186z" />
75
- <glyph unicode="]" horiz-adv-x="552" d="M11 1664h386v-1976h-386v155h189v1666h-189v155z" />
76
- <glyph unicode="^" horiz-adv-x="856" d="M244 729h-183l299 727h134l298 -727h-181l-166 419l-16 70h-6l-16 -70z" />
77
- <glyph unicode="_" horiz-adv-x="931" d="M927 -154h-923v154h923v-154z" />
78
- <glyph unicode="`" horiz-adv-x="641" d="M490 1211h-158l-250 260l3 6h230z" />
79
- <glyph unicode="a" horiz-adv-x="1126" d="M808 0q-10 49 -15.5 86.5t-6.5 75.5q-55 -78 -143.5 -130.5t-190.5 -52.5q-169 0 -257.5 86.5t-88.5 238.5q0 155 125.5 242.5t340.5 87.5h214v107q0 95 -58 150.5t-164 55.5q-95 0 -154.5 -48.5t-59.5 -116.5h-188l-2 6q-6 118 111.5 216t303.5 98q184 0 296 -93.5 t112 -269.5v-521q0 -58 6 -112t22 -106h-203zM481 144q107 0 193 55t112 126v176h-221q-119 0 -190.5 -60t-71.5 -141q0 -72 45 -114t133 -42z" />
80
- <glyph unicode="b" d="M1067 500q0 -234 -112.5 -377.5t-309.5 -143.5q-107 0 -186 41.5t-131 122.5l-24 -143h-161v1560h197v-606q51 72 126.5 110t176.5 38q200 0 312 -160t112 -421v-21zM870 521q0 186 -68.5 303.5t-208.5 117.5q-91 0 -153.5 -44.5t-99.5 -119.5v-469q38 -80 99.5 -125 t155.5 -45q139 0 207 99t68 262v21z" />
81
- <glyph unicode="c" horiz-adv-x="1087" d="M583 133q98 0 172.5 60.5t74.5 148.5h177l2 -6q5 -140 -124.5 -248.5t-301.5 -108.5q-236 0 -361 154t-125 387v42q0 231 125.5 385.5t360.5 154.5q190 0 310.5 -112t116.5 -275l-2 -6h-178q0 99 -70 168.5t-177 69.5q-155 0 -221.5 -111.5t-66.5 -273.5v-42 q0 -166 66 -276.5t222 -110.5z" />
82
- <glyph unicode="d" d="M98 521q0 261 111.5 421t312.5 160q95 0 168.5 -35t125.5 -102v595h197v-1560h-161l-23 133q-53 -76 -130 -115t-179 -39q-198 0 -310 143.5t-112 377.5v21zM295 500q0 -164 67 -262.5t208 -98.5q88 0 148 40t98 112v505q-38 67 -98.5 106.5t-145.5 39.5 q-142 0 -209.5 -117t-67.5 -304v-21z" />
83
- <glyph unicode="e" horiz-adv-x="1083" d="M592 -21q-226 0 -359.5 150.5t-133.5 390.5v44q0 231 137.5 384.5t325.5 153.5q219 0 331 -132t112 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -57 -153 -95t-230 -38zM562 947q-99 0 -169 -83.5t-86 -209.5l2 -5h499 v26q0 116 -62 194t-184 78z" />
84
- <glyph unicode="f" horiz-adv-x="707" d="M225 0v936h-169v146h169v137q0 173 90.5 267.5t252.5 94.5q34 0 68.5 -5.5t76.5 -15.5l-24 -150q-18 4 -43.5 7t-53.5 3q-86 0 -128 -51.5t-42 -149.5v-137h225v-146h-225v-936h-197z" />
85
- <glyph unicode="g" d="M100 521q0 261 114 421t315 160q103 0 181 -41.5t130 -119.5l24 141h157v-1088q0 -208 -121 -319.5t-349 -111.5q-78 0 -168.5 21.5t-159.5 58.5l50 153q53 -30 128 -48.5t148 -18.5q144 0 209.5 65.5t65.5 199.5v122q-53 -68 -127 -102.5t-170 -34.5q-199 0 -313 144 t-114 377v21zM297 500q0 -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" />
86
- <glyph unicode="h" d="M340 937q56 78 137.5 121.5t180.5 43.5q173 0 269.5 -104t96.5 -320v-678h-197v680q0 134 -57.5 198t-171.5 64q-82 0 -148.5 -38.5t-109.5 -104.5v-799h-197v1560h197v-623z" />
87
- <glyph unicode="i" horiz-adv-x="516" d="M356 0h-197v1082h197v-1082zM356 1359h-197v201h197v-201z" />
88
- <glyph unicode="j" horiz-adv-x="530" d="M370 1082v-1171q0 -167 -86 -257.5t-239 -90.5q-31 0 -56.5 4.5t-54.5 13.5l14 155q14 -5 40 -8.5t43 -3.5q65 0 103.5 44t38.5 143v1171h197zM364 1363h-197v197h197v-197z" />
89
- <glyph unicode="k" horiz-adv-x="1050" d="M469 499h-128v-499h-197v1560h197v-904h126l296 426h236l-370 -492l423 -590h-232z" />
90
- <glyph unicode="l" horiz-adv-x="516" d="M356 0h-197v1560h197v-1560z" />
91
- <glyph unicode="m" horiz-adv-x="1790" d="M319 1082l14 -142q53 77 134.5 119.5t189.5 42.5t185.5 -50t116.5 -150q51 92 135 146t196 54q165 0 261 -113.5t96 -341.5v-647h-197v649q0 160 -55 226.5t-164 66.5q-101 0 -163.5 -70t-73.5 -177v-8v-687h-198v649q0 152 -56.5 222.5t-162.5 70.5q-90 0 -148 -37 t-89 -104v-801h-197v1082h176z" />
92
- <glyph unicode="n" d="M319 1082l14 -161q54 86 135.5 133.5t185.5 47.5q175 0 271 -102.5t96 -316.5v-683h-197v679q0 143 -56.5 203t-172.5 60q-85 0 -150.5 -41t-104.5 -112v-789h-197v1082h176z" />
93
- <glyph unicode="o" d="M97 551q0 240 130 395.5t353 155.5q225 0 355.5 -155t130.5 -396v-22q0 -242 -130 -396t-354 -154t-354.5 154.5t-130.5 395.5v22zM294 529q0 -172 72.5 -284t215.5 -112q141 0 214 112t73 284v22q0 170 -73.5 283t-215.5 113q-141 0 -213.5 -113t-72.5 -283v-22z" />
94
- <glyph unicode="p" d="M1065 500q0 -234 -112 -377.5t-309 -143.5q-100 0 -175.5 33.5t-128.5 100.5v-529h-197v1498h151l31 -140q53 78 132 119t184 41q201 0 312.5 -159.5t111.5 -421.5v-21zM868 521q0 184 -72.5 302.5t-213.5 118.5q-85 0 -145 -38.5t-97 -105.5v-523q37 -67 97 -104.5 t147 -37.5q140 0 212 102.5t72 264.5v21z" />
95
- <glyph unicode="q" d="M98 521q0 261 111.5 421t312.5 160q99 0 174 -37.5t127 -109.5l29 127h150v-1498h-197v518q-52 -61 -123 -92t-162 -31q-198 0 -310 143.5t-112 377.5v21zM295 500q0 -164 67.5 -265.5t207.5 -101.5q81 0 138.5 36t96.5 101v546q-39 61 -96.5 96t-136.5 35 q-141 0 -209 -119.5t-68 -306.5v-21z" />
96
- <glyph unicode="r" horiz-adv-x="702" d="M655 908l-101 6q-78 0 -131.5 -37t-82.5 -104v-773h-197v1082h176l19 -158q46 84 113.5 131t155.5 47q22 0 42 -3.5t33 -7.5z" />
97
- <glyph unicode="s" horiz-adv-x="1071" d="M772 287q0 65 -49.5 107t-187.5 73q-197 43 -296.5 116.5t-99.5 200.5q0 132 112 225t292 93q189 0 300.5 -97t106.5 -236l-2 -6h-188q0 71 -59.5 127.5t-157.5 56.5q-105 0 -156 -46t-51 -111q0 -64 45 -101t183 -66q205 -44 305 -119.5t100 -202.5q0 -144 -116.5 -233 t-304.5 -89q-207 0 -326 105t-113 245l2 6h188q5 -105 78 -153.5t171 -48.5q105 0 164.5 42.5t59.5 111.5z" />
98
- <glyph unicode="t" horiz-adv-x="708" d="M403 1343v-261h205v-146h-205v-657q0 -76 31.5 -107t83.5 -31q17 0 37.5 4t36.5 10l26 -135q-22 -18 -64.5 -29.5t-85.5 -11.5q-120 0 -191 72.5t-71 227.5v657h-172v146h172v261h197z" />
99
- <glyph unicode="u" d="M830 160q-51 -87 -131 -134t-185 -47q-177 0 -276 113t-99 352v638h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v780h197v-1082h-177z" />
100
- <glyph unicode="v" horiz-adv-x="1030" d="M504 319l17 -76h6l19 76l249 763h201l-398 -1082h-149l-403 1082h202z" />
101
- <glyph unicode="w" horiz-adv-x="1550" d="M420 394l23 -131h6l28 131l216 688h158l217 -688l31 -146h6l29 146l170 688h196l-314 -1082h-159l-209 659l-45 184l-6 -1l-43 -183l-206 -659h-159l-314 1082h196z" />
102
- <glyph unicode="x" horiz-adv-x="1030" d="M510 683l230 399h230l-351 -535l361 -547h-226l-240 409l-240 -409h-228l361 547l-351 535h227z" />
103
- <glyph unicode="y" horiz-adv-x="1030" d="M474 401l35 -136h6l266 817h219l-455 -1248q-41 -109 -117.5 -190t-206.5 -81q-24 0 -61 5.5t-57 10.5l20 155q-6 1 35.5 -2t52.5 -3q63 0 103 56t67 124l47 113l-402 1060h220z" />
104
- <glyph unicode="z" horiz-adv-x="1030" d="M329 154h625v-154h-860v138l585 788h-578v156h819v-134z" />
105
- <glyph unicode="{" horiz-adv-x="696" d="M631 -364q-195 55 -277 175t-82 290v205q0 112 -51.5 174.5t-157.5 62.5v147q106 0 157.5 61.5t51.5 174.5v206q0 171 82 290.5t277 174.5l40 -117q-110 -35 -156 -125.5t-46 -222.5v-206q0 -105 -42.5 -185t-127.5 -125q85 -46 127.5 -126.5t42.5 -183.5v-205 q0 -132 46 -221.5t156 -125.5z" />
106
- <glyph unicode="|" horiz-adv-x="507" d="M333 -270h-158v1726h158v-1726z" />
107
- <glyph unicode="}" horiz-adv-x="696" d="M21 -246q109 36 156 125.5t47 221.5v205q0 107 45 187t139 123q-94 41 -139 121t-45 189v206q0 132 -47 222.5t-156 125.5l41 117q194 -55 276.5 -174.5t82.5 -290.5v-206q0 -113 50.5 -174.5t158.5 -61.5v-147q-108 0 -158.5 -62.5t-50.5 -174.5v-205q0 -170 -82.5 -290 t-276.5 -175z" />
108
- <glyph unicode="~" horiz-adv-x="1391" d="M1264 740q0 -137 -87 -238t-217 -101q-90 0 -163.5 33t-158.5 107q-59 48 -108 72t-99 24q-67 0 -114.5 -53t-47.5 -128l-141 18q0 136 85.5 232.5t217.5 96.5q88 0 163 -34.5t160 -104.5q58 -51 106 -74t100 -23q66 0 114.5 57t48.5 134z" />
109
- <glyph unicode="&#xa1;" horiz-adv-x="507" d="M341 -374h-197v978h197v-978zM341 876h-197v206h197v-206z" />
110
- <glyph unicode="&#xa2;" horiz-adv-x="1122" d="M593 133q98 0 172.5 60.5t74.5 148.5h178l3 -6q3 -122 -98 -223t-247 -126v-232h-198v236q-182 36 -276.5 182t-94.5 347v42q0 199 95 344.5t276 183.5v228h198v-223q157 -24 252.5 -130.5t92.5 -250.5l-2 -5h-179q0 99 -70 168.5t-177 69.5q-155 0 -221.5 -111.5 t-66.5 -273.5v-42q0 -166 66 -276.5t222 -110.5z" />
111
- <glyph unicode="&#xa3;" horiz-adv-x="1194" d="M430 615l6 -149q0 -90 -15.5 -171.5t-44.5 -140.5h735l-1 -154h-976v154h10q48 13 72 111t24 201l-6 149h-164v155h158l-10 270q0 204 112 320.5t300 116.5q200 0 310 -104.5t106 -276.5l-2 -6h-190q0 118 -63 175t-161 57q-99 0 -157 -74.5t-58 -207.5l10 -270h418v-155 h-413z" />
112
- <glyph unicode="&#xa4;" horiz-adv-x="1456" d="M1097 108q-77 -62 -169.5 -95t-193.5 -33t-193.5 32.5t-167.5 93.5l-130 -132l-139 138l138 140q-50 76 -76.5 166.5t-26.5 189.5q0 102 28.5 196t82.5 172l-146 149l139 139l143 -146q74 55 163 85.5t185 30.5q97 0 186 -31t164 -87l146 149l140 -140l-150 -153 q52 -78 80.5 -170.5t28.5 -193.5q0 -98 -26.5 -187.5t-74.5 -165.5l142 -143l-140 -139zM321 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" />
113
- <glyph unicode="&#xa5;" horiz-adv-x="1243" d="M615 793l360 663h224l-418 -718h312v-155h-383v-135h383v-155h-383v-293h-197v293h-375v155h375v135h-375v155h311l-419 718h226z" />
114
- <glyph unicode="&#xa6;" horiz-adv-x="499" d="M145 -270v792h197v-792h-197zM342 698h-197v758h197v-758z" />
115
- <glyph unicode="&#xa7;" horiz-adv-x="1259" d="M1148 431q0 -94 -48 -164t-135 -110q69 -51 104 -119t35 -166q0 -172 -133 -269.5t-358 -97.5q-221 0 -372 102.5t-146 322.5l2 6l188 2q0 -143 96.5 -210.5t231.5 -67.5q137 0 215.5 59.5t78.5 150.5t-72 141.5t-276 113.5q-239 63 -352 156t-113 270q0 91 47 161.5 t134 111.5q-68 50 -102 119.5t-34 166.5q0 166 134 266.5t358 100.5q233 0 363 -111.5t126 -313.5l-3 -6h-188q0 118 -79 197t-219 79q-145 0 -220 -59.5t-75 -150.5q0 -99 67 -148.5t278 -107.5q244 -69 355.5 -159.5t111.5 -265.5zM603 689q-47 12 -88.5 24.5t-77.5 27.5 q-73 -19 -109.5 -69t-36.5 -119q0 -100 68 -151.5t278 -110.5q56 -17 93 -28t70 -23q72 20 112 69.5t40 118.5q0 91 -73.5 144.5t-275.5 116.5z" />
116
- <glyph unicode="&#xa8;" horiz-adv-x="1021" d="M859 1256h-219v200h219v-200zM389 1256h-219v200h219v-200z" />
117
- <glyph unicode="&#xa9;" horiz-adv-x="1604" d="M1111 596l2 -6q4 -151 -84 -229.5t-245 -78.5q-160 0 -254 106.5t-94 280.5v119q0 173 94 280t254 107q157 0 245.5 -79t84.5 -228l-2 -6h-146q0 95 -45.5 138.5t-136.5 43.5q-94 0 -145 -70.5t-51 -184.5v-120q0 -117 51 -187t145 -70q91 0 136 43t45 141h146zM209 729 q0 -265 171.5 -447t417.5 -182q245 0 417 182t172 447q0 263 -172 444t-417 181q-246 0 -417.5 -181t-171.5 -444zM88 729q0 315 207 531t503 216q295 0 502 -216t207 -531q0 -316 -207.5 -533t-501.5 -217q-296 0 -503 217t-207 533z" />
118
- <glyph unicode="&#xaa;" horiz-adv-x="917" d="M613 706q-8 21 -13 45t-8 50q-33 -47 -89.5 -78t-133.5 -31q-119 0 -184 61t-65 167q0 110 84.5 170t245.5 60h139v52q0 63 -30 97t-88 34q-67 0 -103.5 -27t-36.5 -76l-162 13l-1 6q-6 98 78.5 163t224.5 65q134 0 212 -71t78 -205v-314q0 -50 6 -94t20 -87h-174z M411 831q51 0 105.5 30t72.5 65v110h-138q-75 0 -116.5 -33t-41.5 -79q0 -45 29 -69t89 -24z" />
119
- <glyph unicode="&#xab;" horiz-adv-x="966" d="M286 516l255 -398h-148l-295 389v19l295 389h148zM620 516l255 -398h-148l-295 389v19l295 389h148z" />
120
- <glyph unicode="&#xac;" horiz-adv-x="1137" d="M962 375h-198v262h-637v165h835v-427z" />
121
- <glyph unicode="&#xad;" horiz-adv-x="561" d="M525 538h-490v154h490v-154z" />
122
- <glyph unicode="&#xae;" horiz-adv-x="1604" d="M88 729q0 315 207 531t503 216q295 0 502 -216t207 -531q0 -316 -207.5 -533t-501.5 -217q-296 0 -503 217t-207 533zM209 729q0 -266 171.5 -447.5t417.5 -181.5q244 0 416 182t172 447q0 264 -171.5 444.5t-416.5 180.5q-246 0 -417.5 -180.5t-171.5 -444.5zM653 654 v-338h-149v850h280q152 0 238.5 -65.5t86.5 -191.5q0 -62 -33 -109t-96 -78q66 -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-159zM653 784h152q65 1 110.5 32.5t45.5 87.5q0 73 -39.5 102.5 t-137.5 29.5h-131v-252z" />
123
- <glyph unicode="&#xaf;" horiz-adv-x="950" d="M844 1310h-721v146h721v-146z" />
124
- <glyph unicode="&#xb0;" horiz-adv-x="763" d="M128 1216q0 106 76 183.5t181 77.5q103 0 177.5 -77.5t74.5 -183.5q0 -108 -74 -182.5t-178 -74.5q-106 0 -181.5 74.5t-75.5 182.5zM259 1216q0 -55 36.5 -91t89.5 -36q52 0 87.5 36t35.5 91t-36 92.5t-87 37.5q-53 0 -89.5 -37.5t-36.5 -92.5z" />
125
- <glyph unicode="&#xb1;" horiz-adv-x="1097" d="M657 856h358v-154h-358v-413h-177v413h-381v154h381v411h177v-411zM971 4h-835v155h835v-155z" />
126
- <glyph unicode="&#xb2;" horiz-adv-x="868" d="M714 667h-592v130l302 262q69 60 91 97.5t22 79.5q0 50 -28.5 81t-86.5 31q-67 0 -103.5 -32t-36.5 -82h-161l-2 6q-6 99 78 169t225 70q135 0 211 -64t76 -180q0 -80 -44.5 -136t-160.5 -161l-153 -135l2 -6h361v-130z" />
127
- <glyph unicode="&#xb3;" horiz-adv-x="876" d="M424 1137q67 0 99.5 28.5t32.5 80.5q0 43 -36.5 72t-105.5 29q-56 0 -90.5 -24t-34.5 -64h-162l-2 6q-6 94 78.5 153.5t210.5 59.5q145 0 229 -59.5t84 -169.5q0 -55 -35.5 -100.5t-97.5 -71.5q70 -23 108 -71t38 -116q0 -111 -90 -173t-236 -62q-127 0 -217.5 58 t-84.5 169l1 6h163q0 -46 37.5 -74.5t100.5 -28.5q72 0 114 29.5t42 77.5q0 62 -36.5 90.5t-109.5 28.5h-132v126h132z" />
128
- <glyph unicode="&#xb4;" horiz-adv-x="654" d="M316 1477h230l2 -6l-270 -260h-147z" />
129
- <glyph unicode="&#xb5;" d="M349 1082v-642q2 -178 57.5 -242.5t155.5 -64.5q98 0 158.5 36t92.5 106v807h197v-1082h-177l-9 108q-44 -63 -107.5 -96t-146.5 -33q-72 0 -126.5 16.5t-94.5 51.5v-463h-196v1498h196z" />
130
- <glyph unicode="&#xb6;" horiz-adv-x="1006" d="M639 0v520h-84q-233 0 -362.5 129.5t-129.5 338.5q0 207 129.5 337.5t362.5 130.5h281v-1456h-197z" />
131
- <glyph unicode="&#xb7;" horiz-adv-x="540" d="M359 624h-198v212h198v-212z" />
132
- <glyph unicode="&#xb8;" horiz-adv-x="509" d="M292 0l-12 -52q65 -11 108 -52t43 -121q0 -96 -79 -153t-226 -57l-7 109q72 0 116 24.5t44 73.5q0 48 -36 67t-123 26l32 135h140z" />
133
- <glyph unicode="&#xb9;" horiz-adv-x="557" d="M396 665h-174v655h-127v134l301 23v-812z" />
134
- <glyph unicode="&#xba;" horiz-adv-x="933" d="M120 1142q0 148 94 241.5t251 93.5q158 0 252 -93.5t94 -241.5v-117q0 -149 -93.5 -241.5t-250.5 -92.5q-158 0 -252.5 92.5t-94.5 241.5v117zM293 1025q0 -88 44 -140.5t130 -52.5q83 0 127.5 53t44.5 140v117q0 84 -45 137.5t-129 53.5t-128 -53.5t-44 -137.5v-117z " />
135
- <glyph unicode="&#xbb;" horiz-adv-x="966" d="M258 949l295 -389v-19l-295 -389h-148l255 398l-255 399h148zM604 949l295 -389v-19l-295 -389h-148l255 398l-255 399h148z" />
136
- <glyph unicode="&#xbc;" horiz-adv-x="1595" d="M485 664h-174v655h-127v134l301 23v-812zM448 118l-109 67l711 1138l109 -67zM1380 282h126v-130h-126v-152h-170v152h-417l-8 102l422 547h173v-519zM967 282h243v310l-6 1l-13 -22z" />
137
- <glyph unicode="&#xbd;" horiz-adv-x="1708" d="M461 118l-109 67l711 1138l109 -67zM485 664h-174v655h-127v134l301 23v-812zM1525 0h-592v130l302 262q69 60 91 97.5t22 79.5q0 50 -28.5 81t-86.5 31q-67 0 -103.5 -32t-36.5 -82h-161l-2 6q-6 99 78 169t225 70q135 0 211 -64t76 -180q0 -80 -44.5 -136t-160.5 -161 l-153 -135l2 -6h361v-130z" />
138
- <glyph unicode="&#xbe;" horiz-adv-x="1781" d="M631 118l-109 67l711 1138l109 -67zM1569 282h126v-130h-126v-152h-170v152h-417l-8 102l422 547h173v-519zM1156 282h243v310l-6 1l-13 -22zM440 1138q67 0 99.5 28.5t32.5 80.5q0 43 -36.5 72t-105.5 29q-56 0 -90.5 -24t-34.5 -64h-162l-2 6q-6 94 78.5 153.5 t210.5 59.5q145 0 229 -59.5t84 -169.5q0 -55 -35.5 -100.5t-97.5 -71.5q70 -23 108 -71t38 -116q0 -111 -90 -173t-236 -62q-127 0 -217.5 58t-84.5 169l1 6h163q0 -46 37.5 -74.5t100.5 -28.5q72 0 114 29.5t42 77.5q0 62 -36.5 90.5t-109.5 28.5h-132v126h132z" />
139
- <glyph unicode="&#xbf;" horiz-adv-x="1013" d="M645 672q-2 -146 -26 -202t-125 -147q-100 -118 -141.5 -181t-41.5 -150q0 -106 56 -163t162 -57q90 0 154.5 49.5t64.5 145.5h188l3 -6q2 -161 -114.5 -258t-295.5 -97q-198 0 -306.5 100.5t-108.5 280.5q0 127 70 233.5t187 220.5q53 53 65 96t12 135h197zM441 1083 h206v-209h-206v209z" />
140
- <glyph unicode="&#xc0;" horiz-adv-x="1326" d="M969 375h-610l-138 -375h-201l563 1456h169l554 -1456h-201zM420 540h490l-240 663h-6zM786 1560h-158l-250 260l3 6h230z" />
141
- <glyph unicode="&#xc1;" horiz-adv-x="1326" d="M969 375h-610l-138 -375h-201l563 1456h169l554 -1456h-201zM420 540h490l-240 663h-6zM798 1822h230l2 -6l-270 -260h-147z" />
142
- <glyph unicode="&#xc2;" horiz-adv-x="1326" d="M969 375h-610l-138 -375h-201l563 1456h169l554 -1456h-201zM420 540h490l-240 663h-6zM970 1626v-25h-161l-147 148l-146 -148h-160v26l246 237h120z" />
143
- <glyph unicode="&#xc3;" horiz-adv-x="1326" d="M969 375h-610l-138 -375h-201l563 1456h169l554 -1456h-201zM420 540h490l-240 663h-6zM1010 1844q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-43 0 -72 -32.5t-29 -78.5l-108 26q0 93 59 161.5t150 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5z" />
144
- <glyph unicode="&#xc4;" horiz-adv-x="1326" d="M969 375h-610l-138 -375h-201l563 1456h169l554 -1456h-201zM420 540h490l-240 663h-6zM1008 1605h-219v200h219v-200zM538 1605h-219v200h219v-200z" />
145
- <glyph unicode="&#xc5;" horiz-adv-x="1326" d="M969 375h-610l-138 -375h-201l563 1456h169l554 -1456h-201zM420 540h490l-240 663h-6zM457 1734q0 84 60.5 141t147.5 57q85 0 145 -56.5t60 -141.5q0 -86 -59.5 -140t-145.5 -54q-87 0 -147.5 54t-60.5 140zM560 1734q0 -43 31 -73.5t74 -30.5q42 0 72 29.5t30 74.5 t-30 76t-72 31q-43 0 -74 -31t-31 -76z" />
146
- <glyph unicode="&#xc6;" horiz-adv-x="1922" d="M1889 0h-895l-15 350h-557l-202 -350h-240l880 1456h967v-155h-691l20 -466h590v-155h-584l22 -526h705v-154zM525 529h447l-31 710l-5 2z" />
147
- <glyph unicode="&#xc7;" horiz-adv-x="1297" d="M1209 466l2 -6q4 -205 -144 -343t-391 -138q-247 0 -402.5 175t-155.5 444v259q0 269 155.5 444.5t402.5 175.5t393 -131.5t142 -348.5l-2 -6h-189q0 153 -90 242t-254 89q-165 0 -263 -133t-98 -330v-261q0 -199 98 -332t263 -133q164 0 254 88.5t90 244.5h189zM754 -8 l-12 -52q65 -11 108 -52t43 -121q0 -96 -79 -153t-226 -57l-7 109q72 0 116 24.5t44 73.5q0 48 -36 67t-123 26l32 135h140z" />
148
- <glyph unicode="&#xc8;" horiz-adv-x="1197" d="M1044 675h-667v-521h769v-154h-966v1456h955v-155h-758v-471h667v-155zM711 1560h-158l-250 260l3 6h230z" />
149
- <glyph unicode="&#xc9;" horiz-adv-x="1197" d="M1044 675h-667v-521h769v-154h-966v1456h955v-155h-758v-471h667v-155zM723 1822h230l2 -6l-270 -260h-147z" />
150
- <glyph unicode="&#xca;" horiz-adv-x="1197" d="M1044 675h-667v-521h769v-154h-966v1456h955v-155h-758v-471h667v-155zM936 1626v-25h-161l-147 148l-146 -148h-160v26l246 237h120z" />
151
- <glyph unicode="&#xcb;" horiz-adv-x="1197" d="M1044 675h-667v-521h769v-154h-966v1456h955v-155h-758v-471h667v-155zM973 1605h-219v200h219v-200zM503 1605h-219v200h219v-200z" />
152
- <glyph unicode="&#xcc;" horiz-adv-x="579" d="M388 0h-198v1456h198v-1456zM374 1560h-158l-250 260l3 6h230z" />
153
- <glyph unicode="&#xcd;" horiz-adv-x="579" d="M388 0h-198v1456h198v-1456zM384 1822h230l2 -6l-270 -260h-147z" />
154
- <glyph unicode="&#xce;" horiz-adv-x="579" d="M388 0h-198v1456h198v-1456zM599 1626v-25h-161l-147 148l-146 -148h-160v26l246 237h120z" />
155
- <glyph unicode="&#xcf;" horiz-adv-x="579" d="M388 0h-198v1456h198v-1456zM636 1605h-219v200h219v-200zM166 1605h-219v200h219v-200z" />
156
- <glyph unicode="&#xd0;" horiz-adv-x="1379" d="M210 0v663h-168v155h168v638h447q286 0 459 -175.5t173 -453.5v-199q0 -279 -173 -453.5t-459 -174.5h-447zM683 663h-276v-509h250q202 0 318.5 133t116.5 341v201q0 206 -116.5 339t-318.5 133h-250v-483h276v-155z" />
157
- <glyph unicode="&#xd1;" horiz-adv-x="1461" d="M1281 0h-197l-701 1126l-6 -2v-1124h-197v1456h197l701 -1124l6 2v1122h197v-1456zM1075 1844q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-43 0 -72 -32.5t-29 -78.5l-108 26q0 93 59 161.5t150 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5z" />
158
- <glyph unicode="&#xd2;" horiz-adv-x="1396" d="M1282 598q0 -267 -165.5 -443t-429.5 -176q-255 0 -414.5 176t-159.5 443v259q0 266 159.5 443t414.5 177q264 0 429.5 -176.5t165.5 -443.5v-259zM1085 859q0 200 -108 328t-290 128q-172 0 -274.5 -128t-102.5 -328v-261q0 -202 102.5 -330t274.5 -128 q183 0 290.5 127.5t107.5 330.5v261zM781 1581h-158l-250 260l3 6h230z" />
159
- <glyph unicode="&#xd3;" horiz-adv-x="1396" d="M1282 598q0 -267 -165.5 -443t-429.5 -176q-255 0 -414.5 176t-159.5 443v259q0 266 159.5 443t414.5 177q264 0 429.5 -176.5t165.5 -443.5v-259zM1085 859q0 200 -108 328t-290 128q-172 0 -274.5 -128t-102.5 -328v-261q0 -202 102.5 -330t274.5 -128 q183 0 290.5 127.5t107.5 330.5v261zM793 1843h230l2 -6l-270 -260h-147z" />
160
- <glyph unicode="&#xd4;" horiz-adv-x="1396" d="M1282 598q0 -267 -165.5 -443t-429.5 -176q-255 0 -414.5 176t-159.5 443v259q0 266 159.5 443t414.5 177q264 0 429.5 -176.5t165.5 -443.5v-259zM1085 859q0 200 -108 328t-290 128q-172 0 -274.5 -128t-102.5 -328v-261q0 -202 102.5 -330t274.5 -128 q183 0 290.5 127.5t107.5 330.5v261zM1006 1647v-25h-161l-147 148l-146 -148h-160v26l246 237h120z" />
161
- <glyph unicode="&#xd5;" horiz-adv-x="1396" d="M1282 598q0 -267 -165.5 -443t-429.5 -176q-255 0 -414.5 176t-159.5 443v259q0 266 159.5 443t414.5 177q264 0 429.5 -176.5t165.5 -443.5v-259zM1085 859q0 200 -108 328t-290 128q-172 0 -274.5 -128t-102.5 -328v-261q0 -202 102.5 -330t274.5 -128 q183 0 290.5 127.5t107.5 330.5v261zM1045 1865q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-43 0 -72 -32.5t-29 -78.5l-108 26q0 93 59 161.5t150 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5z" />
162
- <glyph unicode="&#xd6;" horiz-adv-x="1396" d="M1282 598q0 -267 -165.5 -443t-429.5 -176q-255 0 -414.5 176t-159.5 443v259q0 266 159.5 443t414.5 177q264 0 429.5 -176.5t165.5 -443.5v-259zM1085 859q0 200 -108 328t-290 128q-172 0 -274.5 -128t-102.5 -328v-261q0 -202 102.5 -330t274.5 -128 q183 0 290.5 127.5t107.5 330.5v261zM1043 1626h-219v200h219v-200zM573 1626h-219v200h219v-200z" />
163
- <glyph unicode="&#xd7;" horiz-adv-x="1096" d="M88 351l327 334l-327 334l126 126l326 -333l327 333l126 -126l-328 -334l328 -334l-126 -126l-327 332l-326 -332z" />
164
- <glyph unicode="&#xd8;" horiz-adv-x="1396" d="M1282 598q0 -267 -165.5 -443t-429.5 -176q-85 0 -160.5 20.5t-139.5 60.5l-91 -154h-149l139 234q-84 84 -128.5 202t-44.5 256v259q0 266 159.5 443t414.5 177q94 0 178.5 -25.5t156.5 -71.5l81 137h149l-132 -221q77 -84 119.5 -197t42.5 -242v-259zM310 598 q0 -85 19 -158t54 -125l6 -1l544 916q-50 41 -112 63t-134 22q-172 0 -274.5 -128t-102.5 -328v-261zM1085 859q0 75 -16.5 142t-46.5 117l-6 1l-541 -911q44 -34 97 -51t115 -17q183 0 290.5 127.5t107.5 330.5v261z" />
165
- <glyph unicode="&#xd9;" horiz-adv-x="1386" d="M1244 1456v-987q0 -238 -154.5 -364t-403.5 -126q-240 0 -389.5 126.5t-149.5 363.5v987h197v-987q0 -165 94 -250.5t248 -85.5q162 0 261.5 85.5t99.5 250.5v987h197zM780 1560h-158l-250 260l3 6h230z" />
166
- <glyph unicode="&#xda;" horiz-adv-x="1386" d="M1244 1456v-987q0 -238 -154.5 -364t-403.5 -126q-240 0 -389.5 126.5t-149.5 363.5v987h197v-987q0 -165 94 -250.5t248 -85.5q162 0 261.5 85.5t99.5 250.5v987h197zM792 1822h230l2 -6l-270 -260h-147z" />
167
- <glyph unicode="&#xdb;" horiz-adv-x="1386" d="M1244 1456v-987q0 -238 -154.5 -364t-403.5 -126q-240 0 -389.5 126.5t-149.5 363.5v987h197v-987q0 -165 94 -250.5t248 -85.5q162 0 261.5 85.5t99.5 250.5v987h197zM1005 1626v-25h-161l-147 148l-146 -148h-160v26l246 237h120z" />
168
- <glyph unicode="&#xdc;" horiz-adv-x="1386" d="M1244 1456v-987q0 -238 -154.5 -364t-403.5 -126q-240 0 -389.5 126.5t-149.5 363.5v987h197v-987q0 -165 94 -250.5t248 -85.5q162 0 261.5 85.5t99.5 250.5v987h197zM1042 1605h-219v200h219v-200zM572 1605h-219v200h219v-200z" />
169
- <glyph unicode="&#xdd;" horiz-adv-x="1250" d="M625 716l380 740h225l-511 -944v-512h-196v525l-503 931h225zM720 1821h230l2 -6l-270 -260h-147z" />
170
- <glyph unicode="&#xde;" horiz-adv-x="1209" d="M360 1456v-293h269q232 0 362 -118t130 -307q0 -190 -130 -307.5t-362 -117.5h-269v-313h-197v1456h197zM360 1009v-542h269q147 0 220.5 78t73.5 191q0 114 -73.5 193.5t-220.5 79.5h-269z" />
171
- <glyph unicode="&#xdf;" horiz-adv-x="1221" d="M333 0h-196v1082q0 223 117.5 348t300.5 125q161 0 262 -86t101 -253q0 -118 -64.5 -228t-64.5 -167q0 -82 173.5 -224t173.5 -281q0 -167 -104.5 -252t-282.5 -85q-84 0 -172.5 20.5t-125.5 50.5l44 159q43 -28 108 -52t126 -24q108 0 159 47.5t51 125.5 q0 84 -173.5 227.5t-173.5 289.5q0 80 70.5 190.5t70.5 186.5q0 93 -51 147t-117 54q-104 0 -168 -83.5t-64 -235.5v-1082z" />
172
- <glyph unicode="&#xe0;" horiz-adv-x="1126" d="M808 0q-10 49 -15.5 86.5t-6.5 75.5q-55 -78 -143.5 -130.5t-190.5 -52.5q-169 0 -257.5 86.5t-88.5 238.5q0 155 125.5 242.5t340.5 87.5h214v107q0 95 -58 150.5t-164 55.5q-95 0 -154.5 -48.5t-59.5 -116.5h-188l-2 6q-6 118 111.5 216t303.5 98q184 0 296 -93.5 t112 -269.5v-521q0 -58 6 -112t22 -106h-203zM481 144q107 0 193 55t112 126v176h-221q-119 0 -190.5 -60t-71.5 -141q0 -72 45 -114t133 -42zM638 1238h-158l-250 260l3 6h230z" />
173
- <glyph unicode="&#xe1;" horiz-adv-x="1126" d="M808 0q-10 49 -15.5 86.5t-6.5 75.5q-55 -78 -143.5 -130.5t-190.5 -52.5q-169 0 -257.5 86.5t-88.5 238.5q0 155 125.5 242.5t340.5 87.5h214v107q0 95 -58 150.5t-164 55.5q-95 0 -154.5 -48.5t-59.5 -116.5h-188l-2 6q-6 118 111.5 216t303.5 98q184 0 296 -93.5 t112 -269.5v-521q0 -58 6 -112t22 -106h-203zM481 144q107 0 193 55t112 126v176h-221q-119 0 -190.5 -60t-71.5 -141q0 -72 45 -114t133 -42zM650 1500h230l2 -6l-270 -260h-147z" />
174
- <glyph unicode="&#xe2;" horiz-adv-x="1126" d="M808 0q-10 49 -15.5 86.5t-6.5 75.5q-55 -78 -143.5 -130.5t-190.5 -52.5q-169 0 -257.5 86.5t-88.5 238.5q0 155 125.5 242.5t340.5 87.5h214v107q0 95 -58 150.5t-164 55.5q-95 0 -154.5 -48.5t-59.5 -116.5h-188l-2 6q-6 118 111.5 216t303.5 98q184 0 296 -93.5 t112 -269.5v-521q0 -58 6 -112t22 -106h-203zM481 144q107 0 193 55t112 126v176h-221q-119 0 -190.5 -60t-71.5 -141q0 -72 45 -114t133 -42zM863 1304v-25h-161l-147 148l-146 -148h-160v26l246 237h120z" />
175
- <glyph unicode="&#xe3;" horiz-adv-x="1126" d="M808 0q-10 49 -15.5 86.5t-6.5 75.5q-55 -78 -143.5 -130.5t-190.5 -52.5q-169 0 -257.5 86.5t-88.5 238.5q0 155 125.5 242.5t340.5 87.5h214v107q0 95 -58 150.5t-164 55.5q-95 0 -154.5 -48.5t-59.5 -116.5h-188l-2 6q-6 118 111.5 216t303.5 98q184 0 296 -93.5 t112 -269.5v-521q0 -58 6 -112t22 -106h-203zM481 144q107 0 193 55t112 126v176h-221q-119 0 -190.5 -60t-71.5 -141q0 -72 45 -114t133 -42zM902 1522q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-43 0 -72 -32.5t-29 -78.5l-108 26q0 93 59 161.5t150 68.5 q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5z" />
176
- <glyph unicode="&#xe4;" horiz-adv-x="1126" d="M808 0q-10 49 -15.5 86.5t-6.5 75.5q-55 -78 -143.5 -130.5t-190.5 -52.5q-169 0 -257.5 86.5t-88.5 238.5q0 155 125.5 242.5t340.5 87.5h214v107q0 95 -58 150.5t-164 55.5q-95 0 -154.5 -48.5t-59.5 -116.5h-188l-2 6q-6 118 111.5 216t303.5 98q184 0 296 -93.5 t112 -269.5v-521q0 -58 6 -112t22 -106h-203zM481 144q107 0 193 55t112 126v176h-221q-119 0 -190.5 -60t-71.5 -141q0 -72 45 -114t133 -42zM900 1283h-219v200h219v-200zM430 1283h-219v200h219v-200z" />
177
- <glyph unicode="&#xe5;" horiz-adv-x="1126" d="M808 0q-10 49 -15.5 86.5t-6.5 75.5q-55 -78 -143.5 -130.5t-190.5 -52.5q-169 0 -257.5 86.5t-88.5 238.5q0 155 125.5 242.5t340.5 87.5h214v107q0 95 -58 150.5t-164 55.5q-95 0 -154.5 -48.5t-59.5 -116.5h-188l-2 6q-6 118 111.5 216t303.5 98q184 0 296 -93.5 t112 -269.5v-521q0 -58 6 -112t22 -106h-203zM481 144q107 0 193 55t112 126v176h-221q-119 0 -190.5 -60t-71.5 -141q0 -72 45 -114t133 -42zM346 1412q0 84 60.5 141t147.5 57q85 0 145 -56.5t60 -141.5q0 -86 -59.5 -140t-145.5 -54q-87 0 -147.5 54t-60.5 140zM449 1412 q0 -43 31 -73.5t74 -30.5q42 0 72 29.5t30 74.5t-30 76t-72 31q-43 0 -74 -31t-31 -76z" />
178
- <glyph unicode="&#xe6;" horiz-adv-x="1729" d="M1262 -21q-136 0 -240 48.5t-170 138.5q-56 -79 -167.5 -133t-271.5 -54q-170 0 -262.5 87t-92.5 238q0 158 115 244.5t335 86.5h229v85q0 106 -51.5 166.5t-149.5 60.5q-103 0 -164 -55t-61 -133l-188 18l-2 6q-5 138 109.5 228.5t305.5 90.5q114 0 201.5 -40.5 t137.5 -117.5q64 75 151.5 116.5t188.5 41.5q214 0 329.5 -130t115.5 -358v-119h-709l-2 -5q1 -159 79.5 -258t233.5 -99q103 0 169.5 27.5t144.5 78.5l67 -138q-53 -44 -147 -83t-234 -39zM452 133q76 0 159 43.5t126 100.5v216h-227q-120 0 -187.5 -56t-67.5 -137 q0 -74 50 -120.5t147 -46.5zM1215 947q-113 0 -182 -84.5t-80 -217.5l2 -5h508v31q0 122 -60 199t-188 77z" />
179
- <glyph unicode="&#xe7;" horiz-adv-x="1087" d="M583 133q98 0 172.5 60.5t74.5 148.5h177l2 -6q5 -140 -124.5 -248.5t-301.5 -108.5q-236 0 -361 154t-125 387v42q0 231 125.5 385.5t360.5 154.5q190 0 310.5 -112t116.5 -275l-2 -6h-178q0 99 -70 168.5t-177 69.5q-155 0 -221.5 -111.5t-66.5 -273.5v-42 q0 -166 66 -276.5t222 -110.5zM613 -8l-12 -52q65 -11 108 -52t43 -121q0 -96 -79 -153t-226 -57l-7 109q72 0 116 24.5t44 73.5q0 48 -36 67t-123 26l32 135h140z" />
180
- <glyph unicode="&#xe8;" horiz-adv-x="1083" d="M592 -21q-226 0 -359.5 150.5t-133.5 390.5v44q0 231 137.5 384.5t325.5 153.5q219 0 331 -132t112 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -57 -153 -95t-230 -38zM562 947q-99 0 -169 -83.5t-86 -209.5l2 -5h499 v26q0 116 -62 194t-184 78zM641 1239h-158l-250 260l3 6h230z" />
181
- <glyph unicode="&#xe9;" horiz-adv-x="1083" d="M592 -21q-226 0 -359.5 150.5t-133.5 390.5v44q0 231 137.5 384.5t325.5 153.5q219 0 331 -132t112 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -57 -153 -95t-230 -38zM562 947q-99 0 -169 -83.5t-86 -209.5l2 -5h499 v26q0 116 -62 194t-184 78zM653 1501h230l2 -6l-270 -260h-147z" />
182
- <glyph unicode="&#xea;" horiz-adv-x="1083" d="M592 -21q-226 0 -359.5 150.5t-133.5 390.5v44q0 231 137.5 384.5t325.5 153.5q219 0 331 -132t112 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -57 -153 -95t-230 -38zM562 947q-99 0 -169 -83.5t-86 -209.5l2 -5h499 v26q0 116 -62 194t-184 78zM866 1305v-25h-161l-147 148l-146 -148h-160v26l246 237h120z" />
183
- <glyph unicode="&#xeb;" horiz-adv-x="1083" d="M592 -21q-226 0 -359.5 150.5t-133.5 390.5v44q0 231 137.5 384.5t325.5 153.5q219 0 331 -132t112 -352v-123h-702l-3 -5q3 -156 79 -256.5t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -57 -153 -95t-230 -38zM562 947q-99 0 -169 -83.5t-86 -209.5l2 -5h499 v26q0 116 -62 194t-184 78zM903 1284h-219v200h219v-200zM433 1284h-219v200h219v-200z" />
184
- <glyph unicode="&#xec;" horiz-adv-x="515" d="M350 0h-197v1082h197v-1082zM337 1217h-158l-250 260l3 6h230z" />
185
- <glyph unicode="&#xed;" horiz-adv-x="515" d="M350 0h-197v1082h197v-1082zM347 1479h230l2 -6l-270 -260h-147z" />
186
- <glyph unicode="&#xee;" horiz-adv-x="515" d="M350 0h-197v1082h197v-1082zM562 1283v-25h-161l-147 148l-146 -148h-160v26l246 237h120z" />
187
- <glyph unicode="&#xef;" horiz-adv-x="515" d="M350 0h-197v1082h197v-1082zM599 1262h-219v200h219v-200zM129 1262h-219v200h219v-200z" />
188
- <glyph unicode="&#xf0;" horiz-adv-x="1202" d="M873 1297q95 -104 147 -241.5t52 -300.5v-220q0 -245 -144 -400.5t-359 -155.5q-218 0 -357.5 140t-139.5 347q0 228 138 370t351 142q90 0 169.5 -37t131.5 -97l4 5q-9 109 -51.5 197t-110.5 154l-290 -165l-77 102l256 146q-39 22 -80.5 39t-85.5 31l60 164 q79 -19 151 -52t135 -79l218 125l77 -102zM573 133q133 0 217.5 114t84.5 288v148q-35 59 -115.5 99.5t-198.5 40.5q-131 0 -211.5 -104t-80.5 -253q0 -132 82 -232.5t222 -100.5z" />
189
- <glyph unicode="&#xf1;" d="M319 1082l14 -161q54 86 135.5 133.5t185.5 47.5q175 0 271 -102.5t96 -316.5v-683h-197v679q0 143 -56.5 203t-172.5 60q-85 0 -150.5 -41t-104.5 -112v-789h-197v1082h176zM925 1522q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-43 0 -72 -32.5t-29 -78.5 l-108 26q0 93 59 161.5t150 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5z" />
190
- <glyph unicode="&#xf2;" d="M97 551q0 240 130 395.5t353 155.5q225 0 355.5 -155t130.5 -396v-22q0 -242 -130 -396t-354 -154t-354.5 154.5t-130.5 395.5v22zM294 529q0 -172 72.5 -284t215.5 -112q141 0 214 112t73 284v22q0 170 -73.5 283t-215.5 113q-141 0 -213.5 -113t-72.5 -283v-22z M665 1238h-158l-250 260l3 6h230z" />
191
- <glyph unicode="&#xf3;" d="M97 551q0 240 130 395.5t353 155.5q225 0 355.5 -155t130.5 -396v-22q0 -242 -130 -396t-354 -154t-354.5 154.5t-130.5 395.5v22zM294 529q0 -172 72.5 -284t215.5 -112q141 0 214 112t73 284v22q0 170 -73.5 283t-215.5 113q-141 0 -213.5 -113t-72.5 -283v-22z M677 1500h230l2 -6l-270 -260h-147z" />
192
- <glyph unicode="&#xf4;" d="M97 551q0 240 130 395.5t353 155.5q225 0 355.5 -155t130.5 -396v-22q0 -242 -130 -396t-354 -154t-354.5 154.5t-130.5 395.5v22zM294 529q0 -172 72.5 -284t215.5 -112q141 0 214 112t73 284v22q0 170 -73.5 283t-215.5 113q-141 0 -213.5 -113t-72.5 -283v-22z M890 1304v-25h-161l-147 148l-146 -148h-160v26l246 237h120z" />
193
- <glyph unicode="&#xf5;" d="M97 551q0 240 130 395.5t353 155.5q225 0 355.5 -155t130.5 -396v-22q0 -242 -130 -396t-354 -154t-354.5 154.5t-130.5 395.5v22zM294 529q0 -172 72.5 -284t215.5 -112q141 0 214 112t73 284v22q0 170 -73.5 283t-215.5 113q-141 0 -213.5 -113t-72.5 -283v-22z M929 1522q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-43 0 -72 -32.5t-29 -78.5l-108 26q0 93 59 161.5t150 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5z" />
194
- <glyph unicode="&#xf6;" d="M97 551q0 240 130 395.5t353 155.5q225 0 355.5 -155t130.5 -396v-22q0 -242 -130 -396t-354 -154t-354.5 154.5t-130.5 395.5v22zM294 529q0 -172 72.5 -284t215.5 -112q141 0 214 112t73 284v22q0 170 -73.5 283t-215.5 113q-141 0 -213.5 -113t-72.5 -283v-22z M927 1283h-219v200h219v-200zM457 1283h-219v200h219v-200z" />
195
- <glyph unicode="&#xf7;" horiz-adv-x="1170" d="M1069 597h-998v188h998v-188zM670 999h-198v203h198v-203zM670 180h-198v203h198v-203z" />
196
- <glyph unicode="&#xf8;" d="M97 551q0 240 130 395.5t353 155.5q56 0 107.5 -11t97.5 -31l74 149h129l-104 -211q88 -74 135 -190t47 -257v-22q0 -242 -130 -396t-354 -154q-51 0 -97 8.5t-88 24.5l-72 -147h-129l100 204q-96 71 -147.5 191t-51.5 269v22zM294 529q0 -91 20 -166.5t61 -123.5h6 l332 674q-29 16 -62.5 25t-70.5 9q-141 0 -213.5 -113t-72.5 -283v-22zM869 551q0 80 -17.5 150.5t-49.5 117.5h-6l-327 -663q24 -12 52 -17.5t61 -5.5q141 0 214 112t73 284v22z" />
197
- <glyph unicode="&#xf9;" d="M830 160q-51 -87 -131 -134t-185 -47q-177 0 -276 113t-99 352v638h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v780h197v-1082h-177zM663 1217h-158l-250 260l3 6h230z" />
198
- <glyph unicode="&#xfa;" d="M830 160q-51 -87 -131 -134t-185 -47q-177 0 -276 113t-99 352v638h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v780h197v-1082h-177zM675 1479h230l2 -6l-270 -260h-147z" />
199
- <glyph unicode="&#xfb;" d="M830 160q-51 -87 -131 -134t-185 -47q-177 0 -276 113t-99 352v638h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v780h197v-1082h-177zM888 1283v-25h-161l-147 148l-146 -148h-160v26l246 237h120z" />
200
- <glyph unicode="&#xfc;" d="M830 160q-51 -87 -131 -134t-185 -47q-177 0 -276 113t-99 352v638h197v-640q0 -173 51 -238t159 -65q105 0 173.5 42.5t103.5 120.5v780h197v-1082h-177zM925 1262h-219v200h219v-200zM455 1262h-219v200h219v-200z" />
201
- <glyph unicode="&#xfd;" horiz-adv-x="1030" d="M474 401l35 -136h6l266 817h219l-455 -1248q-41 -109 -117.5 -190t-206.5 -81q-24 0 -61 5.5t-57 10.5l20 155q-6 1 35.5 -2t52.5 -3q63 0 103 56t67 124l47 113l-402 1060h220zM609 1479h230l2 -6l-270 -260h-147z" />
202
- <glyph unicode="&#xfe;" horiz-adv-x="1186" d="M1075 500q0 -234 -112 -377.5t-309 -143.5q-100 0 -175.5 33.5t-128.5 100.5v-529h-197v1976h197v-598q53 68 128 104t173 36q201 0 312.5 -159.5t111.5 -421.5v-21zM878 521q0 184 -72.5 302.5t-213.5 118.5q-85 0 -145 -38.5t-97 -105.5v-523q37 -67 97 -104.5 t147 -37.5q140 0 212 102.5t72 264.5v21z" />
203
- <glyph unicode="&#xff;" horiz-adv-x="1030" d="M474 401l35 -136h6l266 817h219l-455 -1248q-41 -109 -117.5 -190t-206.5 -81q-24 0 -61 5.5t-57 10.5l20 155q-6 1 35.5 -2t52.5 -3q63 0 103 56t67 124l47 113l-402 1060h220zM859 1262h-219v200h219v-200zM389 1262h-219v200h219v-200z" />
204
- <glyph unicode="&#x131;" horiz-adv-x="515" d="M350 0h-197v1082h197v-1082z" />
205
- <glyph unicode="&#x152;" horiz-adv-x="1960" d="M1871 0h-918q-92 -10 -157 -15.5t-132 -5.5q-249 0 -404.5 166t-155.5 431v304q0 265 154.5 431t403.5 166q69 0 140.5 -6t150.5 -15h907v-155h-758v-471h667v-155h-667v-521h769v-154zM664 134q61 0 122 4.5t119 13.5v1151q-61 8 -122 13.5t-121 5.5q-169 0 -265 -113.5 t-96 -326.5v-306q0 -214 97 -328t266 -114z" />
206
- <glyph unicode="&#x153;" horiz-adv-x="1854" d="M1370 -21q-131 0 -232.5 52.5t-166.5 148.5q-64 -96 -163 -148.5t-226 -52.5q-224 0 -354.5 154.5t-130.5 395.5v22q0 240 130 395.5t353 155.5q130 0 230 -54.5t164 -152.5q65 97 161.5 152t204.5 55q219 0 331 -132t112 -352v-123h-702l-3 -5q3 -156 79 -256.5 t213 -100.5q100 0 175.5 28.5t130.5 78.5l77 -128q-58 -57 -153 -95t-230 -38zM294 529q0 -172 72.5 -284t215.5 -112q141 0 214 112t73 284v22q0 170 -73.5 283t-215.5 113q-141 0 -213.5 -113t-72.5 -283v-22zM1340 947q-99 0 -169 -83.5t-86 -209.5l2 -5h499v26 q0 116 -62 194t-184 78z" />
207
- <glyph unicode="&#x178;" horiz-adv-x="1250" d="M625 716l380 740h225l-511 -944v-512h-196v525l-503 931h225zM970 1604h-219v200h219v-200zM500 1604h-219v200h219v-200z" />
208
- <glyph unicode="&#x2c6;" horiz-adv-x="979" d="M785 1277v-25h-161l-147 148l-146 -148h-160v26l246 237h120z" />
209
- <glyph unicode="&#x2da;" horiz-adv-x="696" d="M133 1308q0 84 60.5 141t147.5 57q85 0 145 -56.5t60 -141.5q0 -86 -59.5 -140t-145.5 -54q-87 0 -147.5 54t-60.5 140zM236 1308q0 -43 31 -73.5t74 -30.5q42 0 72 29.5t30 74.5t-30 76t-72 31q-43 0 -74 -31t-31 -76z" />
210
- <glyph unicode="&#x2dc;" horiz-adv-x="979" d="M829 1491q0 -94 -59.5 -159t-149.5 -65q-71 0 -148 46.5t-128 46.5q-43 0 -72 -32.5t-29 -78.5l-108 26q0 93 59 161.5t150 68.5q56 0 140 -47t136 -47q41 0 71 32.5t30 79.5z" />
211
- <glyph unicode="&#x2000;" horiz-adv-x="966" />
212
- <glyph unicode="&#x2001;" horiz-adv-x="1932" />
213
- <glyph unicode="&#x2002;" horiz-adv-x="966" />
214
- <glyph unicode="&#x2003;" horiz-adv-x="1932" />
215
- <glyph unicode="&#x2004;" horiz-adv-x="644" />
216
- <glyph unicode="&#x2005;" horiz-adv-x="483" />
217
- <glyph unicode="&#x2006;" horiz-adv-x="322" />
218
- <glyph unicode="&#x2007;" horiz-adv-x="322" />
219
- <glyph unicode="&#x2008;" horiz-adv-x="241" />
220
- <glyph unicode="&#x2009;" horiz-adv-x="386" />
221
- <glyph unicode="&#x200a;" horiz-adv-x="107" />
222
- <glyph unicode="&#x2010;" horiz-adv-x="561" d="M525 538h-490v154h490v-154z" />
223
- <glyph unicode="&#x2011;" horiz-adv-x="561" d="M525 538h-490v154h490v-154z" />
224
- <glyph unicode="&#x2012;" horiz-adv-x="561" d="M525 538h-490v154h490v-154z" />
225
- <glyph unicode="&#x2013;" horiz-adv-x="1416" d="M1265.89 648h-1085.49v155h1085.49v-155z" />
226
- <glyph unicode="&#x2014;" horiz-adv-x="1660" d="M1524.78 648h-1335.98v155h1335.98v-155z" />
227
- <glyph unicode="&#x2018;" horiz-adv-x="418" d="M80 1204l160 356h97l-60 -362v-178h-197v184z" />
228
- <glyph unicode="&#x2019;" horiz-adv-x="418" d="M337 1367l-160 -346h-97l60 343v196h197v-193z" />
229
- <glyph unicode="&#x201a;" horiz-adv-x="417" d="M337 26l-160 -281h-97l60 263v241h197v-223z" />
230
- <glyph unicode="&#x201c;" horiz-adv-x="744" d="M80 1204l160 356h97l-60 -362v-178h-197v184zM409 1204l160 356h97l-60 -362v-178h-197v184z" />
231
- <glyph unicode="&#x201d;" horiz-adv-x="752" d="M337 1367l-160 -346h-97l60 343v196h197v-193zM674 1367l-160 -346h-97l60 343v196h197v-193z" />
232
- <glyph unicode="&#x201e;" horiz-adv-x="726" d="M337 96l-160 -335h-97l60 325v194h197v-184zM645 96l-160 -335h-97l60 333v186h197v-184z" />
233
- <glyph unicode="&#x2022;" horiz-adv-x="695" d="M137 793q0 88 56 144t150 56q95 0 151.5 -56t56.5 -144v-60q0 -89 -56 -143.5t-151 -54.5t-151 55t-56 143v60z" />
234
- <glyph unicode="&#x2026;" horiz-adv-x="1380" d="M358 0h-197v202h197v-202zM801 0h-197v202h197v-202zM1221 0h-197v202h197v-202z" />
235
- <glyph unicode="&#x202f;" horiz-adv-x="386" />
236
- <glyph unicode="&#x2039;" horiz-adv-x="615" d="M296 550l255 -398h-148l-295 389v19l295 389h148z" />
237
- <glyph unicode="&#x203a;" horiz-adv-x="615" d="M236 949l295 -389v-19l-295 -389h-148l255 398l-255 399h148z" />
238
- <glyph unicode="&#x2044;" horiz-adv-x="933" d="M168 110l-109 67l711 1138l109 -67z" />
239
- <glyph unicode="&#x205f;" horiz-adv-x="483" />
240
- <glyph unicode="&#x20ac;" horiz-adv-x="1088" d="M914 481h-485l-2 -5q-4 -138 81.5 -240.5t232.5 -102.5q57 0 113 8.5t108 25.5l19 -157q-56 -15 -117.5 -23t-122.5 -8q-231 0 -373.5 144.5t-142.5 357.5h-146v155h146v136h-146v155h146v15q0 244 141.5 389.5t372.5 145.5q59 0 117.5 -8t124.5 -23l-19 -159 q-54 16 -110.5 25.5t-112.5 9.5q-146 0 -231.5 -103t-85.5 -275v-17h492v-155h-492v-136h492v-155z" />
241
- <glyph unicode="&#x2122;" horiz-adv-x="1284" d="M1027 1262l-6 2l-150 -345h-51l-156 359l-6 -2v-357h-93v537h116l161 -390h6l162 390h110v-537h-93v343zM487 1374h-145v-455h-94v455h-145v82h384v-82z" />
242
- <glyph unicode="&#x2212;" horiz-adv-x="1170" d="M1003 648h-835v155h835v-155z" />
243
- <glyph unicode="&#x25fc;" horiz-adv-x="1080" d="M0 1080h1080v-1080h-1080v1080z" />
244
- <glyph unicode="&#xfb02;" horiz-adv-x="1223" d="M225 0v936h-169v146h169v137q0 173 90.5 267.5t252.5 94.5q34 0 68.5 -5.5t76.5 -15.5l-24 -150q-18 4 -43.5 7t-53.5 3q-86 0 -128 -51.5t-42 -149.5v-137h225v-146h-225v-936h-197zM1063 0h-197v1560h197v-1560z" />
245
- <glyph unicode="&#xfb03;" horiz-adv-x="1847" d="M225 0v936h-169v146h169v137q0 173 90.5 267.5t252.5 94.5q34 0 68.5 -5.5t76.5 -15.5l-24 -150q-18 4 -43.5 7t-53.5 3q-86 0 -128 -51.5t-42 -149.5v-137h225v-146h-225v-936h-197zM905 0v936h-170v146h170v117q0 182 106.5 282t295.5 100q67 0 132 -15.5t153 -45.5 l-34 -160q-53 21 -113 36t-123 15q-117 0 -168.5 -52t-51.5 -160v-117h215v-146h-215v-936h-197zM1688 0h-198v1082h198v-1082z" />
246
- <glyph unicode="&#xfb04;" horiz-adv-x="1930" d="M225 0v936h-169v146h169v137q0 173 90.5 267.5t252.5 94.5q34 0 68.5 -5.5t76.5 -15.5l-24 -150q-18 4 -43.5 7t-53.5 3q-86 0 -128 -51.5t-42 -149.5v-137h225v-146h-225v-936h-197zM932 0v936h-169v146h169v137q0 173 90.5 267.5t252.5 94.5q34 0 68.5 -5.5t76.5 -15.5 l-24 -150q-18 4 -43.5 7t-53.5 3q-86 0 -128 -51.5t-42 -149.5v-137h225v-146h-225v-936h-197zM1770 0h-197v1560h197v-1560z" />
247
- <glyph horiz-adv-x="916" d="M682 282h126v-130h-126v-152h-170v152h-417l-8 102l422 547h173v-519zM269 282h243v310l-6 1l-13 -22z" />
248
- <glyph horiz-adv-x="876" d="M424 471q67 0 99.5 28.5t32.5 80.5q0 43 -36.5 72t-105.5 29q-56 0 -90.5 -24t-34.5 -64h-162l-2 6q-6 94 78.5 153.5t210.5 59.5q145 0 229 -59.5t84 -169.5q0 -55 -35.5 -100.5t-97.5 -71.5q70 -23 108 -71t38 -116q0 -111 -90 -173t-236 -62q-127 0 -217.5 58 t-84.5 169l1 6h163q0 -46 37.5 -74.5t100.5 -28.5q72 0 114 29.5t42 77.5q0 62 -36.5 90.5t-109.5 28.5h-132v126h132z" />
249
- <glyph horiz-adv-x="859" d="M714 0h-592v130l302 262q69 60 91 97.5t22 79.5q0 50 -28.5 81t-86.5 31q-67 0 -103.5 -32t-36.5 -82h-161l-2 6q-6 99 78 169t225 70q135 0 211 -64t76 -180q0 -80 -44.5 -136t-160.5 -161l-153 -135l2 -6h361v-130z" />
250
- <glyph horiz-adv-x="557" d="M396 0h-174v655h-127v134l301 23v-812z" />
251
- <hkern u1="&#x22;" u2="w" k="-11" />
252
- <hkern u1="&#x27;" u2="w" k="-11" />
253
- <hkern u1="&#x28;" u2="&#x178;" k="-22" />
254
- <hkern u1="&#x28;" u2="&#xdd;" k="-22" />
255
- <hkern u1="&#x28;" u2="Y" k="-22" />
256
- <hkern u1="&#x28;" u2="W" k="-37" />
257
- <hkern u1="&#x28;" u2="V" k="-20" />
258
- <hkern u1="A" u2="w" k="33" />
259
- <hkern u1="A" u2="t" k="17" />
260
- <hkern u1="A" u2="&#x3f;" k="80" />
261
- <hkern u1="C" u2="&#x7d;" k="17" />
262
- <hkern u1="C" u2="]" k="12" />
263
- <hkern u1="C" u2="&#x29;" k="26" />
264
- <hkern u1="D" u2="&#xc6;" k="33" />
265
- <hkern u1="E" u2="w" k="22" />
266
- <hkern u1="E" u2="f" k="18" />
267
- <hkern u1="F" u2="&#x2026;" k="273" />
268
- <hkern u1="F" u2="&#x201e;" k="273" />
269
- <hkern u1="F" u2="&#x201a;" k="273" />
270
- <hkern u1="F" u2="&#x153;" k="21" />
271
- <hkern u1="F" u2="&#xff;" k="24" />
272
- <hkern u1="F" u2="&#xfd;" k="24" />
273
- <hkern u1="F" u2="&#xfc;" k="22" />
274
- <hkern u1="F" u2="&#xfb;" k="22" />
275
- <hkern u1="F" u2="&#xfa;" k="22" />
276
- <hkern u1="F" u2="&#xf9;" k="22" />
277
- <hkern u1="F" u2="&#xf6;" k="21" />
278
- <hkern u1="F" u2="&#xf5;" k="21" />
279
- <hkern u1="F" u2="&#xf4;" k="21" />
280
- <hkern u1="F" u2="&#xf3;" k="21" />
281
- <hkern u1="F" u2="&#xf2;" k="21" />
282
- <hkern u1="F" u2="&#xeb;" k="21" />
283
- <hkern u1="F" u2="&#xea;" k="21" />
284
- <hkern u1="F" u2="&#xe9;" k="21" />
285
- <hkern u1="F" u2="&#xe8;" k="21" />
286
- <hkern u1="F" u2="&#xe7;" k="21" />
287
- <hkern u1="F" u2="&#xe5;" k="34" />
288
- <hkern u1="F" u2="&#xe4;" k="34" />
289
- <hkern u1="F" u2="&#xe3;" k="34" />
290
- <hkern u1="F" u2="&#xe2;" k="34" />
291
- <hkern u1="F" u2="&#xe1;" k="34" />
292
- <hkern u1="F" u2="&#xe0;" k="34" />
293
- <hkern u1="F" u2="&#xc5;" k="59" />
294
- <hkern u1="F" u2="&#xc4;" k="59" />
295
- <hkern u1="F" u2="&#xc3;" k="59" />
296
- <hkern u1="F" u2="&#xc2;" k="59" />
297
- <hkern u1="F" u2="&#xc1;" k="59" />
298
- <hkern u1="F" u2="&#xc0;" k="59" />
299
- <hkern u1="F" u2="y" k="24" />
300
- <hkern u1="F" u2="v" k="24" />
301
- <hkern u1="F" u2="u" k="22" />
302
- <hkern u1="F" u2="r" k="26" />
303
- <hkern u1="F" u2="q" k="21" />
304
- <hkern u1="F" u2="o" k="21" />
305
- <hkern u1="F" u2="g" k="21" />
306
- <hkern u1="F" u2="e" k="21" />
307
- <hkern u1="F" u2="d" k="21" />
308
- <hkern u1="F" u2="c" k="21" />
309
- <hkern u1="F" u2="a" k="34" />
310
- <hkern u1="F" u2="T" k="-20" />
311
- <hkern u1="F" u2="A" k="59" />
312
- <hkern u1="F" u2="&#x3a;" k="273" />
313
- <hkern u1="F" u2="&#x2e;" k="273" />
314
- <hkern u1="F" u2="&#x2c;" k="273" />
315
- <hkern u1="K" u2="w" k="63" />
316
- <hkern u1="L" u2="w" k="52" />
317
- <hkern u1="O" u2="&#xc6;" k="33" />
318
- <hkern u1="P" u2="&#xc6;" k="293" />
319
- <hkern u1="P" u2="t" k="-14" />
320
- <hkern u1="Q" u2="&#x178;" k="35" />
321
- <hkern u1="Q" u2="&#xdd;" k="35" />
322
- <hkern u1="Q" u2="Y" k="35" />
323
- <hkern u1="Q" u2="W" k="20" />
324
- <hkern u1="Q" u2="V" k="28" />
325
- <hkern u1="Q" u2="T" k="33" />
326
- <hkern u1="R" u2="&#x178;" k="48" />
327
- <hkern u1="R" u2="&#xdd;" k="48" />
328
- <hkern u1="R" u2="Y" k="48" />
329
- <hkern u1="R" u2="V" k="19" />
330
- <hkern u1="R" u2="T" k="50" />
331
- <hkern u1="T" u2="&#xf8;" k="95" />
332
- <hkern u1="T" u2="&#xe6;" k="84" />
333
- <hkern u1="T" u2="&#xc6;" k="188" />
334
- <hkern u1="T" u2="&#xbb;" k="147" />
335
- <hkern u1="T" u2="&#xab;" k="151" />
336
- <hkern u1="T" u2="w" k="47" />
337
- <hkern u1="T" u2="r" k="65" />
338
- <hkern u1="V" u2="&#x7d;" k="-19" />
339
- <hkern u1="V" u2="r" k="30" />
340
- <hkern u1="V" u2="]" k="-17" />
341
- <hkern u1="V" u2="&#x29;" k="-20" />
342
- <hkern u1="W" u2="&#x7d;" k="-14" />
343
- <hkern u1="W" u2="r" k="21" />
344
- <hkern u1="W" u2="]" k="-12" />
345
- <hkern u1="W" u2="&#x29;" k="-15" />
346
- <hkern u1="Y" u2="&#x2022;" k="45" />
347
- <hkern u1="Y" u2="&#xf8;" k="64" />
348
- <hkern u1="Y" u2="&#xe6;" k="63" />
349
- <hkern u1="Y" u2="&#xc6;" k="96" />
350
- <hkern u1="Y" u2="&#xbb;" k="51" />
351
- <hkern u1="Y" u2="&#xab;" k="82" />
352
- <hkern u1="Y" u2="&#x7d;" k="-19" />
353
- <hkern u1="Y" u2="t" k="22" />
354
- <hkern u1="Y" u2="r" k="40" />
355
- <hkern u1="Y" u2="f" k="22" />
356
- <hkern u1="Y" u2="]" k="-18" />
357
- <hkern u1="Y" u2="&#x2a;" k="49" />
358
- <hkern u1="Y" u2="&#x29;" k="-20" />
359
- <hkern u1="Y" u2="&#x26;" k="30" />
360
- <hkern u1="Z" u2="w" k="27" />
361
- <hkern u1="[" u2="&#xdc;" k="18" />
362
- <hkern u1="[" u2="&#xdb;" k="18" />
363
- <hkern u1="[" u2="&#xda;" k="18" />
364
- <hkern u1="[" u2="&#xd9;" k="18" />
365
- <hkern u1="[" u2="U" k="18" />
366
- <hkern u1="[" u2="J" k="18" />
367
- <hkern u1="f" u2="&#x201d;" k="-16" />
368
- <hkern u1="f" u2="&#x201c;" k="-16" />
369
- <hkern u1="f" u2="&#x2019;" k="-16" />
370
- <hkern u1="f" u2="&#x2018;" k="-16" />
371
- <hkern u1="f" u2="&#x153;" k="24" />
372
- <hkern u1="f" u2="&#xeb;" k="24" />
373
- <hkern u1="f" u2="&#xea;" k="24" />
374
- <hkern u1="f" u2="&#xe9;" k="24" />
375
- <hkern u1="f" u2="&#xe8;" k="24" />
376
- <hkern u1="f" u2="&#xe7;" k="24" />
377
- <hkern u1="f" u2="&#x7d;" k="-19" />
378
- <hkern u1="f" u2="q" k="24" />
379
- <hkern u1="f" u2="g" k="24" />
380
- <hkern u1="f" u2="e" k="24" />
381
- <hkern u1="f" u2="d" k="24" />
382
- <hkern u1="f" u2="c" k="24" />
383
- <hkern u1="f" u2="]" k="-18" />
384
- <hkern u1="f" u2="&#x29;" k="-20" />
385
- <hkern u1="f" u2="&#x27;" k="-16" />
386
- <hkern u1="f" u2="&#x22;" k="-16" />
387
- <hkern u1="k" u2="&#x153;" k="20" />
388
- <hkern u1="k" u2="&#xeb;" k="20" />
389
- <hkern u1="k" u2="&#xea;" k="20" />
390
- <hkern u1="k" u2="&#xe9;" k="20" />
391
- <hkern u1="k" u2="&#xe8;" k="20" />
392
- <hkern u1="k" u2="&#xe7;" k="20" />
393
- <hkern u1="k" u2="q" k="20" />
394
- <hkern u1="k" u2="g" k="20" />
395
- <hkern u1="k" u2="e" k="20" />
396
- <hkern u1="k" u2="d" k="20" />
397
- <hkern u1="k" u2="c" k="20" />
398
- <hkern u1="r" u2="w" k="-17" />
399
- <hkern u1="r" u2="t" k="-17" />
400
- <hkern u1="r" u2="f" k="-15" />
401
- <hkern u1="v" u2="f" k="-13" />
402
- <hkern u1="w" u2="&#x2026;" k="124" />
403
- <hkern u1="w" u2="&#x201e;" k="124" />
404
- <hkern u1="w" u2="&#x201a;" k="124" />
405
- <hkern u1="w" u2="&#x3a;" k="124" />
406
- <hkern u1="w" u2="&#x2e;" k="124" />
407
- <hkern u1="w" u2="&#x2c;" k="124" />
408
- <hkern u1="y" u2="f" k="-13" />
409
- <hkern u1="&#x7b;" u2="&#xdc;" k="20" />
410
- <hkern u1="&#x7b;" u2="&#xdb;" k="20" />
411
- <hkern u1="&#x7b;" u2="&#xda;" k="20" />
412
- <hkern u1="&#x7b;" u2="&#xd9;" k="20" />
413
- <hkern u1="&#x7b;" u2="U" k="20" />
414
- <hkern u1="&#x7b;" u2="J" k="20" />
415
- <hkern u1="&#xc0;" u2="w" k="33" />
416
- <hkern u1="&#xc0;" u2="t" k="17" />
417
- <hkern u1="&#xc0;" u2="&#x3f;" k="80" />
418
- <hkern u1="&#xc1;" u2="w" k="33" />
419
- <hkern u1="&#xc1;" u2="t" k="17" />
420
- <hkern u1="&#xc1;" u2="&#x3f;" k="80" />
421
- <hkern u1="&#xc2;" u2="w" k="33" />
422
- <hkern u1="&#xc2;" u2="t" k="17" />
423
- <hkern u1="&#xc2;" u2="&#x3f;" k="80" />
424
- <hkern u1="&#xc3;" u2="w" k="33" />
425
- <hkern u1="&#xc3;" u2="t" k="17" />
426
- <hkern u1="&#xc3;" u2="&#x3f;" k="80" />
427
- <hkern u1="&#xc4;" u2="w" k="33" />
428
- <hkern u1="&#xc4;" u2="t" k="17" />
429
- <hkern u1="&#xc4;" u2="&#x3f;" k="80" />
430
- <hkern u1="&#xc5;" u2="w" k="33" />
431
- <hkern u1="&#xc5;" u2="t" k="17" />
432
- <hkern u1="&#xc5;" u2="&#x3f;" k="80" />
433
- <hkern u1="&#xc7;" u2="&#x7d;" k="17" />
434
- <hkern u1="&#xc7;" u2="]" k="12" />
435
- <hkern u1="&#xc7;" u2="&#x29;" k="26" />
436
- <hkern u1="&#xc8;" u2="w" k="22" />
437
- <hkern u1="&#xc8;" u2="f" k="18" />
438
- <hkern u1="&#xc9;" u2="w" k="22" />
439
- <hkern u1="&#xc9;" u2="f" k="18" />
440
- <hkern u1="&#xca;" u2="w" k="22" />
441
- <hkern u1="&#xca;" u2="f" k="18" />
442
- <hkern u1="&#xcb;" u2="w" k="22" />
443
- <hkern u1="&#xcb;" u2="f" k="18" />
444
- <hkern u1="&#xd0;" u2="&#xc6;" k="33" />
445
- <hkern u1="&#xd2;" u2="&#xc6;" k="33" />
446
- <hkern u1="&#xd3;" u2="&#xc6;" k="33" />
447
- <hkern u1="&#xd4;" u2="&#xc6;" k="33" />
448
- <hkern u1="&#xd5;" u2="&#xc6;" k="33" />
449
- <hkern u1="&#xd6;" u2="&#xc6;" k="33" />
450
- <hkern u1="&#xdd;" u2="&#x2022;" k="45" />
451
- <hkern u1="&#xdd;" u2="&#xf8;" k="64" />
452
- <hkern u1="&#xdd;" u2="&#xe6;" k="63" />
453
- <hkern u1="&#xdd;" u2="&#xc6;" k="96" />
454
- <hkern u1="&#xdd;" u2="&#xbb;" k="51" />
455
- <hkern u1="&#xdd;" u2="&#xab;" k="82" />
456
- <hkern u1="&#xdd;" u2="&#x7d;" k="-19" />
457
- <hkern u1="&#xdd;" u2="t" k="22" />
458
- <hkern u1="&#xdd;" u2="r" k="40" />
459
- <hkern u1="&#xdd;" u2="f" k="22" />
460
- <hkern u1="&#xdd;" u2="]" k="-18" />
461
- <hkern u1="&#xdd;" u2="&#x2a;" k="49" />
462
- <hkern u1="&#xdd;" u2="&#x29;" k="-20" />
463
- <hkern u1="&#xdd;" u2="&#x26;" k="30" />
464
- <hkern u1="&#xfd;" u2="f" k="-13" />
465
- <hkern u1="&#xff;" u2="f" k="-13" />
466
- <hkern u1="&#x178;" u2="&#x2022;" k="45" />
467
- <hkern u1="&#x178;" u2="&#xf8;" k="64" />
468
- <hkern u1="&#x178;" u2="&#xe6;" k="63" />
469
- <hkern u1="&#x178;" u2="&#xc6;" k="96" />
470
- <hkern u1="&#x178;" u2="&#xbb;" k="51" />
471
- <hkern u1="&#x178;" u2="&#xab;" k="82" />
472
- <hkern u1="&#x178;" u2="&#x7d;" k="-19" />
473
- <hkern u1="&#x178;" u2="t" k="22" />
474
- <hkern u1="&#x178;" u2="r" k="40" />
475
- <hkern u1="&#x178;" u2="f" k="22" />
476
- <hkern u1="&#x178;" u2="]" k="-18" />
477
- <hkern u1="&#x178;" u2="&#x2a;" k="49" />
478
- <hkern u1="&#x178;" u2="&#x29;" k="-20" />
479
- <hkern u1="&#x178;" u2="&#x26;" k="30" />
480
- <hkern u1="&#x2018;" u2="w" k="-11" />
481
- <hkern u1="&#x2019;" u2="w" k="-11" />
482
- <hkern u1="&#x201c;" u2="w" k="-11" />
483
- <hkern u1="&#x201d;" u2="w" k="-11" />
484
- <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="38" />
485
- <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="120" />
486
- <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="50" />
487
- <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="59" />
488
- <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="m,n,p,ntilde" k="20" />
489
- <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="90" />
490
- <hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="s" k="91" />
491
- <hkern g1="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="282" />
492
- <hkern g1="B" g2="T" k="27" />
493
- <hkern g1="B" g2="V" k="24" />
494
- <hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
495
- <hkern g1="C,Ccedilla" g2="T" k="29" />
496
- <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
497
- <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="27" />
498
- <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
499
- <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
500
- <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="121" />
501
- <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
502
- <hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
503
- <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
504
- <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
505
- <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
506
- <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
507
- <hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
508
- <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
509
- <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
510
- <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
511
- <hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
512
- <hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
513
- <hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
514
- <hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
515
- <hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
516
- <hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
517
- <hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="162" />
518
- <hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
519
- <hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="255" />
520
- <hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
521
- <hkern g1="L" g2="T" k="206" />
522
- <hkern g1="L" g2="V" k="205" />
523
- <hkern g1="L" g2="Y,Yacute,Ydieresis" k="278" />
524
- <hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="14" />
525
- <hkern g1="L" g2="v,y,yacute,ydieresis" k="123" />
526
- <hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
527
- <hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="24" />
528
- <hkern g1="L" g2="W" k="93" />
529
- <hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="177" />
530
- <hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
531
- <hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
532
- <hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
533
- <hkern g1="P" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="402" />
534
- <hkern g1="P" g2="X" k="50" />
535
- <hkern g1="P" g2="Z" k="35" />
536
- <hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
537
- <hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="108" />
538
- <hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="83" />
539
- <hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="89" />
540
- <hkern g1="T" g2="m,n,p,ntilde" k="89" />
541
- <hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="79" />
542
- <hkern g1="T" g2="s" k="76" />
543
- <hkern g1="T" g2="T" k="-16" />
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,colon,quotesinglbase,quotedblbase,ellipsis" k="257" />
547
- <hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="65" />
548
- <hkern g1="T" g2="v,y,yacute,ydieresis" k="81" />
549
- <hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="271" />
550
- <hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
551
- <hkern g1="T" g2="W" k="-15" />
552
- <hkern g1="T" g2="S" k="16" />
553
- <hkern g1="T" g2="x" k="77" />
554
- <hkern g1="T" g2="z" k="60" />
555
- <hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
556
- <hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
557
- <hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
558
- <hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
559
- <hkern g1="V" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="215" />
560
- <hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
561
- <hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
562
- <hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="154" />
563
- <hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
564
- <hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
565
- <hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
566
- <hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
567
- <hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
568
- <hkern g1="W" g2="T" k="-14" />
569
- <hkern g1="W" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="142" />
570
- <hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
571
- <hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
572
- <hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
573
- <hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
574
- <hkern g1="X" g2="V" k="-14" />
575
- <hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
576
- <hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
577
- <hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="153" />
578
- <hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
579
- <hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="148" />
580
- <hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="63" />
581
- <hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
582
- <hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
583
- <hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
584
- <hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
585
- <hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
586
- <hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
587
- <hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
588
- <hkern g1="Y,Yacute,Ydieresis" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="230" />
589
- <hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
590
- <hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
591
- <hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
592
- <hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="150" />
593
- <hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
594
- <hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
595
- <hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
596
- <hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
597
- <hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
598
- <hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
599
- <hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
600
- <hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
601
- <hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
602
- <hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
603
- <hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
604
- <hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
605
- <hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
606
- <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="17" />
607
- <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
608
- <hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
609
- <hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
610
- <hkern g1="b,p,thorn" g2="x" k="15" />
611
- <hkern g1="b,p,thorn" g2="z" k="15" />
612
- <hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
613
- <hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
614
- <hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
615
- <hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="16" />
616
- <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="20" />
617
- <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
618
- <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
619
- <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
620
- <hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
621
- <hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
622
- <hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="20" />
623
- <hkern g1="r" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="172" />
624
- <hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
625
- <hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
626
- <hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
627
- <hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
628
- <hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
629
- <hkern g1="v,y,yacute,ydieresis" g2="comma,period,colon,quotesinglbase,quotedblbase,ellipsis" k="165" />
630
- <hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
631
- <hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="39" />
632
- <hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
633
- <hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
634
- </font>
635
- </defs></svg>