pageflow 0.9.2 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pageflow might be problematic. Click here for more details.

Files changed (263) hide show
  1. checksums.yaml +5 -13
  2. data/CHANGELOG.md +193 -11
  3. data/README.md +9 -1
  4. data/Rakefile +5 -0
  5. data/admins/pageflow/accounts.rb +2 -1
  6. data/admins/pageflow/entry.rb +21 -1
  7. data/admins/pageflow/revisions.rb +1 -1
  8. data/app/assets/fonts/pageflow/entypo-license.txt +358 -0
  9. data/app/assets/fonts/pageflow/fontawesome-license.txt +1 -0
  10. data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.eot +0 -0
  11. data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.svg +1236 -194
  12. data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.ttf +0 -0
  13. data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.woff +0 -0
  14. data/app/assets/fonts/pageflow/sourcesanspro-license.txt +93 -0
  15. data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.eot +0 -0
  16. data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.svg +1153 -839
  17. data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.ttf +0 -0
  18. data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.woff +0 -0
  19. data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.eot +0 -0
  20. data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.svg +1252 -199
  21. data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.ttf +0 -0
  22. data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.woff +0 -0
  23. data/app/assets/javascripts/pageflow/base.js +2 -0
  24. data/app/assets/javascripts/pageflow/browser/agent.js +25 -0
  25. data/app/assets/javascripts/pageflow/browser/css_animations.js +18 -0
  26. data/app/assets/javascripts/pageflow/browser/mobile_platform.js +1 -4
  27. data/app/assets/javascripts/pageflow/browser/video.js +8 -1
  28. data/app/assets/javascripts/pageflow/chapter_filter.js +6 -16
  29. data/app/assets/javascripts/pageflow/editor/api.js +6 -2
  30. data/app/assets/javascripts/pageflow/editor/api/page_type.js +12 -0
  31. data/app/assets/javascripts/pageflow/editor/base.js +4 -0
  32. data/app/assets/javascripts/pageflow/editor/collections/chapter_pages_collection.js +4 -1
  33. data/app/assets/javascripts/pageflow/editor/collections/chapters_collection.js +1 -5
  34. data/app/assets/javascripts/pageflow/editor/collections/mixins/add_and_return_model.js +11 -0
  35. data/app/assets/javascripts/pageflow/editor/collections/mixins/ordered_collection.js +6 -4
  36. data/app/assets/javascripts/pageflow/editor/collections/ordered_page_links_collection.js +9 -0
  37. data/app/assets/javascripts/pageflow/editor/collections/page_links_collection.js +78 -0
  38. data/app/assets/javascripts/pageflow/editor/collections/pages_collection.js +9 -3
  39. data/app/assets/javascripts/pageflow/editor/collections/storyline_chapters_collection.js +35 -0
  40. data/app/assets/javascripts/pageflow/editor/collections/storylines_collection.js +33 -0
  41. data/app/assets/javascripts/pageflow/editor/controllers/sidebar_controller.js +19 -2
  42. data/app/assets/javascripts/pageflow/editor/initializers/edit_lock.js +1 -1
  43. data/app/assets/javascripts/pageflow/editor/initializers/setup_collections.js +11 -0
  44. data/app/assets/javascripts/pageflow/editor/initializers/setup_common_seed.js +3 -0
  45. data/app/assets/javascripts/pageflow/editor/initializers/stylesheet_reloading.js +11 -0
  46. data/app/assets/javascripts/pageflow/editor/models/chapter.js +14 -7
  47. data/app/assets/javascripts/pageflow/editor/models/chapter_scaffold.js +13 -0
  48. data/app/assets/javascripts/pageflow/editor/models/edit_lock_container.js +4 -4
  49. data/app/assets/javascripts/pageflow/editor/models/entry.js +33 -4
  50. data/app/assets/javascripts/pageflow/editor/models/mixins/persited_promise.js +18 -0
  51. data/app/assets/javascripts/pageflow/editor/models/page.js +4 -0
  52. data/app/assets/javascripts/pageflow/editor/models/page_link.js +37 -0
  53. data/app/assets/javascripts/pageflow/editor/models/page_link_file_selection_handler.js +14 -0
  54. data/app/assets/javascripts/pageflow/editor/models/preview_entry_data.js +15 -0
  55. data/app/assets/javascripts/pageflow/editor/models/scaffold.js +26 -0
  56. data/app/assets/javascripts/pageflow/editor/models/storyline.js +99 -0
  57. data/app/assets/javascripts/pageflow/editor/models/storyline_configuration.js +15 -0
  58. data/app/assets/javascripts/pageflow/editor/models/storyline_ordering.js +117 -0
  59. data/app/assets/javascripts/pageflow/editor/models/storyline_scaffold.js +23 -0
  60. data/app/assets/javascripts/pageflow/editor/models/storyline_transitive_child_pages.js +33 -0
  61. data/app/assets/javascripts/pageflow/editor/routers/sidebar_router.js +3 -0
  62. data/app/assets/javascripts/pageflow/editor/templates/edit_entry.jst.ejs +1 -6
  63. data/app/assets/javascripts/pageflow/editor/templates/edit_page_link.jst.ejs +3 -0
  64. data/app/assets/javascripts/pageflow/editor/templates/edit_storyline.jst.ejs +12 -0
  65. data/app/assets/javascripts/pageflow/editor/templates/page_link_item.jst.ejs +1 -0
  66. data/app/assets/javascripts/pageflow/editor/templates/page_selection.jst.ejs +2 -2
  67. data/app/assets/javascripts/pageflow/editor/templates/storyline_outline.jst.ejs +4 -0
  68. data/app/assets/javascripts/pageflow/editor/templates/storyline_picker.jst.ejs +7 -0
  69. data/app/assets/javascripts/pageflow/editor/utils/reload_stylesheet.js +9 -0
  70. data/app/assets/javascripts/pageflow/editor/views/configuration_editors/groups/options.js +2 -2
  71. data/app/assets/javascripts/pageflow/editor/views/configuration_editors/groups/page_link.js +10 -0
  72. data/app/assets/javascripts/pageflow/editor/views/edit_chapter_view.js +0 -4
  73. data/app/assets/javascripts/pageflow/editor/views/edit_entry_view.js +9 -15
  74. data/app/assets/javascripts/pageflow/editor/views/edit_meta_data_view.js +14 -6
  75. data/app/assets/javascripts/pageflow/editor/views/edit_page_link_view.js +47 -0
  76. data/app/assets/javascripts/pageflow/editor/views/edit_storyline_view.js +97 -0
  77. data/app/assets/javascripts/pageflow/editor/views/editor_view.js +6 -3
  78. data/app/assets/javascripts/pageflow/editor/views/entry_preview_view.js +13 -7
  79. data/app/assets/javascripts/pageflow/editor/views/file_item_view.js +1 -1
  80. data/app/assets/javascripts/pageflow/editor/views/inputs/page_link_input_view.js +3 -1
  81. data/app/assets/javascripts/pageflow/editor/views/locked_view.js +3 -3
  82. data/app/assets/javascripts/pageflow/editor/views/mixins/loadable.js +1 -1
  83. data/app/assets/javascripts/pageflow/editor/views/page_item_view.js +2 -0
  84. data/app/assets/javascripts/pageflow/editor/views/page_link_configuration_editor_view.js +7 -0
  85. data/app/assets/javascripts/pageflow/editor/views/page_link_item_view.js +8 -1
  86. data/app/assets/javascripts/pageflow/editor/views/page_preview_view.js +1 -1
  87. data/app/assets/javascripts/pageflow/editor/views/page_selection_view.js +13 -12
  88. data/app/assets/javascripts/pageflow/editor/views/storyline_outline_view.js +33 -0
  89. data/app/assets/javascripts/pageflow/editor/views/storyline_picker_view.js +114 -0
  90. data/app/assets/javascripts/pageflow/entry_data.js +38 -4
  91. data/app/assets/javascripts/pageflow/highlighted_page.js +5 -5
  92. data/app/assets/javascripts/pageflow/history.js +1 -1
  93. data/app/assets/javascripts/pageflow/native_scrolling.js +14 -0
  94. data/app/assets/javascripts/pageflow/page_transitions.js +3 -1
  95. data/app/assets/javascripts/pageflow/page_type.js +2 -0
  96. data/app/assets/javascripts/pageflow/ready.js +4 -1
  97. data/app/assets/javascripts/pageflow/seed_entry_data.js +28 -1
  98. data/app/assets/javascripts/pageflow/slideshow.js +11 -8
  99. data/app/assets/javascripts/pageflow/slideshow/dom_order_scroll_navigator.js +93 -8
  100. data/app/assets/javascripts/pageflow/slideshow/hidden_text_indicator_widget.js +5 -3
  101. data/app/assets/javascripts/pageflow/slideshow/lazy_page_widget.js +4 -0
  102. data/app/assets/javascripts/pageflow/slideshow/page_widget.js +15 -6
  103. data/app/assets/javascripts/pageflow/ui/templates/tooltip.jst.ejs +2 -0
  104. data/app/assets/javascripts/pageflow/ui/views/inputs/text_area_input_view.js +17 -4
  105. data/app/assets/javascripts/pageflow/ui/views/mixins/tooltip_container.js +42 -0
  106. data/app/assets/javascripts/pageflow/ui/views/tooltip_view.js +49 -0
  107. data/app/assets/javascripts/pageflow/video_player.js +2 -2
  108. data/app/assets/javascripts/pageflow/video_player/{filter_for_silk.js → filter_sources.js} +2 -2
  109. data/app/assets/javascripts/pageflow/widgets/navigation.js +17 -14
  110. data/app/assets/javascripts/pageflow/widgets/navigation_mobile.js +7 -2
  111. data/app/assets/javascripts/pageflow/widgets/overview.js +9 -6
  112. data/app/assets/javascripts/pageflow/widgets/page_navigation_list.js +51 -13
  113. data/app/assets/javascripts/pageflow/widgets/page_navigation_list_animation.js +48 -0
  114. data/app/assets/javascripts/pageflow/widgets/parent_page_button.js +9 -2
  115. data/app/assets/stylesheets/pageflow/admin.css.scss +2 -15
  116. data/app/assets/stylesheets/pageflow/admin/features.scss +5 -0
  117. data/app/assets/stylesheets/pageflow/admin/forms.scss +18 -0
  118. data/app/assets/stylesheets/pageflow/animations.css.scss +1 -0
  119. data/app/assets/stylesheets/pageflow/animations/navigation_bar.scss +89 -0
  120. data/app/assets/stylesheets/pageflow/delayed_text_fade_in.css.scss +1 -1
  121. data/app/assets/stylesheets/pageflow/editor/base.css.scss +5 -0
  122. data/app/assets/stylesheets/pageflow/editor/menu.css.scss +1 -0
  123. data/app/assets/stylesheets/pageflow/editor/outline.css.scss +5 -0
  124. data/app/assets/stylesheets/pageflow/editor/page_links.css.scss +9 -1
  125. data/app/assets/stylesheets/pageflow/editor/page_selection.css.scss +7 -1
  126. data/app/assets/stylesheets/pageflow/editor/storyline_picker.css.scss +32 -0
  127. data/app/assets/stylesheets/pageflow/extendables.scss +26 -0
  128. data/app/assets/stylesheets/pageflow/mixins/pageflow.css.scss +25 -0
  129. data/app/assets/stylesheets/pageflow/navigation_bar.css.scss +64 -4
  130. data/app/assets/stylesheets/pageflow/navigation_mobile.css.scss +56 -0
  131. data/app/assets/stylesheets/pageflow/page_transitions.css.scss +4 -1
  132. data/app/assets/stylesheets/pageflow/page_transitions/scroll_over_from_left.scss +12 -0
  133. data/app/assets/stylesheets/pageflow/page_transitions/scroll_over_from_right.scss +12 -0
  134. data/app/assets/stylesheets/pageflow/page_types/video.css.scss +5 -1
  135. data/app/assets/stylesheets/pageflow/themes/default/page.css.scss +180 -42
  136. data/app/assets/stylesheets/pageflow/ui.css.scss +1 -0
  137. data/app/assets/stylesheets/pageflow/ui/forms.css.scss +11 -2
  138. data/app/assets/stylesheets/pageflow/ui/input/extended_select_input.css.scss +1 -0
  139. data/app/assets/stylesheets/pageflow/ui/tabs_view.css.scss +0 -3
  140. data/app/assets/stylesheets/pageflow/ui/tooltip.scss +57 -0
  141. data/app/controllers/concerns/pageflow/entry_password_protection.rb +13 -0
  142. data/app/controllers/pageflow/chapters_controller.rb +24 -9
  143. data/app/controllers/pageflow/edit_locks_controller.rb +2 -2
  144. data/app/controllers/pageflow/editor/files_controller.rb +0 -2
  145. data/app/controllers/pageflow/editor/widgets_controller.rb +1 -1
  146. data/app/controllers/pageflow/entries_controller.rb +5 -9
  147. data/app/controllers/pageflow/files_controller.rb +3 -0
  148. data/app/controllers/pageflow/storylines_controller.rb +69 -0
  149. data/app/helpers/pageflow/admin/features_helper.rb +17 -6
  150. data/app/helpers/pageflow/admin/widgets_helper.rb +18 -0
  151. data/app/helpers/pageflow/audio_files_helper.rb +2 -2
  152. data/app/helpers/pageflow/common_entry_seed_helper.rb +52 -0
  153. data/app/helpers/pageflow/entries_helper.rb +7 -1
  154. data/app/helpers/pageflow/entry_json_seed_helper.rb +27 -10
  155. data/app/helpers/pageflow/meta_tags_helper.rb +11 -0
  156. data/app/helpers/pageflow/page_types_helper.rb +9 -5
  157. data/app/helpers/pageflow/pages_helper.rb +9 -96
  158. data/app/helpers/pageflow/public_i18n_helper.rb +13 -0
  159. data/app/helpers/pageflow/social_share_helper.rb +1 -1
  160. data/app/helpers/pageflow/video_files_helper.rb +133 -0
  161. data/app/helpers/pageflow/widgets_helper.rb +3 -9
  162. data/app/models/concerns/pageflow/feature_target.rb +21 -3
  163. data/app/models/concerns/pageflow/hosted_file.rb +4 -0
  164. data/app/models/pageflow/account.rb +2 -2
  165. data/app/models/pageflow/chapter.rb +4 -4
  166. data/app/models/pageflow/chapter_scaffold.rb +33 -0
  167. data/app/models/pageflow/cname_theming_request_scope.rb +7 -1
  168. data/app/models/pageflow/draft_entry.rb +13 -2
  169. data/app/models/pageflow/edit_lock.rb +2 -2
  170. data/app/models/pageflow/entry.rb +3 -2
  171. data/app/models/pageflow/image_file.rb +6 -0
  172. data/app/models/pageflow/published_entry.rb +13 -2
  173. data/app/models/pageflow/revision.rb +17 -4
  174. data/app/models/pageflow/storyline.rb +23 -0
  175. data/app/models/pageflow/storyline_scaffold.rb +27 -0
  176. data/app/models/pageflow/theming.rb +4 -0
  177. data/app/models/pageflow/widget.rb +16 -12
  178. data/app/views/admin/accounts/_form.html.erb +8 -12
  179. data/app/views/admin/accounts/_widgets_inline_help.html.erb +5 -0
  180. data/app/views/layouts/pageflow/application.html.erb +4 -1
  181. data/app/views/pageflow/admin/widgets/_fields.html.erb +9 -0
  182. data/app/views/pageflow/config/_editor_seeds.json.jbuilder +1 -1
  183. data/app/views/pageflow/editor/entries/_entry.json.jbuilder +2 -2
  184. data/app/views/pageflow/editor/entries/_other_entry.json.jbuilder +1 -0
  185. data/app/views/pageflow/editor/entries/index.json.jbuilder +1 -1
  186. data/app/views/pageflow/editor/entries/seed.json.erb +4 -1
  187. data/app/views/pageflow/editor/files/_file.json.jbuilder +4 -0
  188. data/app/views/pageflow/editor/themings/_theming.json.jbuilder +1 -0
  189. data/app/views/pageflow/entries/_entry.html.erb +2 -2
  190. data/app/views/pageflow/entries/_ie8_hint.html.erb +2 -2
  191. data/app/views/pageflow/entries/_indicators.html.erb +3 -3
  192. data/app/views/pageflow/entries/_mobile_navigation.html.erb +6 -5
  193. data/app/views/pageflow/entries/_multimedia_alert.html.erb +6 -6
  194. data/app/views/pageflow/entries/_non_js_hint.html.erb +1 -1
  195. data/app/views/pageflow/entries/_skip_links.html.erb +3 -3
  196. data/app/views/pageflow/entries/edit.html.erb +4 -2
  197. data/app/views/pageflow/entries/navigation/_bar_bottom.html.erb +6 -5
  198. data/app/views/pageflow/entries/navigation/_bar_top.html.erb +13 -13
  199. data/app/views/pageflow/entries/navigation/_home_button.html.erb +2 -2
  200. data/app/views/pageflow/entries/navigation/_page.html.erb +1 -1
  201. data/app/views/pageflow/entries/overview/_chapter.html.erb +1 -1
  202. data/app/views/pageflow/entries/overview/_entry.html.erb +7 -6
  203. data/app/views/pageflow/entries/share_menu/_facebook_link.html.erb +1 -1
  204. data/app/views/pageflow/entries/share_menu/_google_link.html.erb +1 -1
  205. data/app/views/pageflow/entries/share_menu/_twitter_link.html.erb +1 -1
  206. data/app/views/pageflow/entries/show.html.erb +4 -1
  207. data/app/views/pageflow/file_types/_thumbnails.css.erb +2 -0
  208. data/app/views/pageflow/meta_tags/_entry.html.erb +4 -0
  209. data/app/views/pageflow/pages/_page.html.erb +2 -2
  210. data/app/views/pageflow/pages/templates/_audio.html.erb +2 -2
  211. data/app/views/pageflow/pages/templates/_audio_loop.html.erb +1 -1
  212. data/app/views/pageflow/pages/templates/_background_video.html.erb +8 -3
  213. data/app/views/pageflow/pages/templates/_video.html.erb +9 -4
  214. data/app/views/pageflow/public_i18n/_javascript_tag.html.erb +5 -0
  215. data/app/views/pageflow/social_share/_entry_meta_tags.html.erb +1 -1
  216. data/app/views/pageflow/video_files/_script_tag.html.erb +3 -0
  217. data/app/views/pageflow/video_files/_video_file.html.erb +4 -1
  218. data/app/views/pageflow/video_files/_video_tag.html.erb +7 -0
  219. data/config/initializers/admin_resource_tabs.rb +1 -0
  220. data/config/initializers/features.rb +3 -1
  221. data/config/initializers/paperclip.rb +5 -0
  222. data/config/locales/de.yml +205 -601
  223. data/config/locales/en.yml +198 -405
  224. data/config/routes.rb +10 -2
  225. data/db/migrate/20150826125417_create_pageflow_storylines.rb +12 -0
  226. data/db/migrate/20150826125744_add_storyline_id_to_chapters.rb +6 -0
  227. data/db/migrate/20150826125745_insert_main_storylines.rb +28 -0
  228. data/db/migrate/20150830105831_remove_revision_id_from_chapters.rb +5 -0
  229. data/db/migrate/20150830110006_remove_entry_id_from_chapters.rb +5 -0
  230. data/db/migrate/20160201130118_add_additional_cnames_to_themings.rb +5 -0
  231. data/db/migrate/20160216130336_add_meta_fields_to_revision.rb +7 -0
  232. data/lib/generators/pageflow/initializer/templates/pageflow.rb +7 -0
  233. data/lib/pageflow/ability_mixin.rb +7 -1
  234. data/lib/pageflow/configuration.rb +27 -2
  235. data/lib/pageflow/engine.rb +4 -1
  236. data/lib/pageflow/features.rb +24 -0
  237. data/lib/pageflow/global_config_api.rb +1 -0
  238. data/lib/pageflow/seeds.rb +4 -2
  239. data/lib/pageflow/theme.rb +4 -0
  240. data/lib/pageflow/version.rb +1 -1
  241. data/spec/factories/chapters.rb +6 -3
  242. data/spec/factories/storylines.rb +13 -0
  243. metadata +1021 -928
  244. data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.eot +0 -0
  245. data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.svg +0 -768
  246. data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.ttf +0 -0
  247. data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.woff +0 -0
  248. data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.eot +0 -0
  249. data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.svg +0 -968
  250. data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.ttf +0 -0
  251. data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.woff +0 -0
  252. data/app/assets/fonts/pageflow/thesansboldplain.eot +0 -0
  253. data/app/assets/fonts/pageflow/thesansboldplain.svg +0 -228
  254. data/app/assets/fonts/pageflow/thesansboldplain.ttf +0 -0
  255. data/app/assets/fonts/pageflow/thesansboldplain.woff +0 -0
  256. data/app/assets/fonts/pageflow/thesanssemiboldplain.eot +0 -0
  257. data/app/assets/fonts/pageflow/thesanssemiboldplain.svg +0 -228
  258. data/app/assets/fonts/pageflow/thesanssemiboldplain.ttf +0 -0
  259. data/app/assets/fonts/pageflow/thesanssemiboldplain.woff +0 -0
  260. data/app/assets/javascripts/pageflow/browser/hashchange_support.js +0 -8
  261. data/app/assets/javascripts/pageflow/widgets/button.js +0 -22
  262. data/app/views/layouts/pageflow/_meta_tags.html.erb +0 -5
  263. data/app/views/pageflow/pages/_video_tag.html.erb +0 -13
@@ -0,0 +1,93 @@
1
+ Copyright 2010, 2012, 2014 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.
2
+
3
+ This Font Software is licensed under the SIL Open Font License, Version 1.1.
4
+
5
+ This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL
6
+
7
+
8
+ -----------------------------------------------------------
9
+ SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10
+ -----------------------------------------------------------
11
+
12
+ PREAMBLE
13
+ The goals of the Open Font License (OFL) are to stimulate worldwide
14
+ development of collaborative font projects, to support the font creation
15
+ efforts of academic and linguistic communities, and to provide a free and
16
+ open framework in which fonts may be shared and improved in partnership
17
+ with others.
18
+
19
+ The OFL allows the licensed fonts to be used, studied, modified and
20
+ redistributed freely as long as they are not sold by themselves. The
21
+ fonts, including any derivative works, can be bundled, embedded,
22
+ redistributed and/or sold with any software provided that any reserved
23
+ names are not used by derivative works. The fonts and derivatives,
24
+ however, cannot be released under any other type of license. The
25
+ requirement for fonts to remain under this license does not apply
26
+ to any document created using the fonts or their derivatives.
27
+
28
+ DEFINITIONS
29
+ "Font Software" refers to the set of files released by the Copyright
30
+ Holder(s) under this license and clearly marked as such. This may
31
+ include source files, build scripts and documentation.
32
+
33
+ "Reserved Font Name" refers to any names specified as such after the
34
+ copyright statement(s).
35
+
36
+ "Original Version" refers to the collection of Font Software components as
37
+ distributed by the Copyright Holder(s).
38
+
39
+ "Modified Version" refers to any derivative made by adding to, deleting,
40
+ or substituting -- in part or in whole -- any of the components of the
41
+ Original Version, by changing formats or by porting the Font Software to a
42
+ new environment.
43
+
44
+ "Author" refers to any designer, engineer, programmer, technical
45
+ writer or other person who contributed to the Font Software.
46
+
47
+ PERMISSION & CONDITIONS
48
+ Permission is hereby granted, free of charge, to any person obtaining
49
+ a copy of the Font Software, to use, study, copy, merge, embed, modify,
50
+ redistribute, and sell modified and unmodified copies of the Font
51
+ Software, subject to the following conditions:
52
+
53
+ 1) Neither the Font Software nor any of its individual components,
54
+ in Original or Modified Versions, may be sold by itself.
55
+
56
+ 2) Original or Modified Versions of the Font Software may be bundled,
57
+ redistributed and/or sold with any software, provided that each copy
58
+ contains the above copyright notice and this license. These can be
59
+ included either as stand-alone text files, human-readable headers or
60
+ in the appropriate machine-readable metadata fields within text or
61
+ binary files as long as those fields can be easily viewed by the user.
62
+
63
+ 3) No Modified Version of the Font Software may use the Reserved Font
64
+ Name(s) unless explicit written permission is granted by the corresponding
65
+ Copyright Holder. This restriction only applies to the primary font name as
66
+ presented to the users.
67
+
68
+ 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
69
+ Software shall not be used to promote, endorse or advertise any
70
+ Modified Version, except to acknowledge the contribution(s) of the
71
+ Copyright Holder(s) and the Author(s) or with their explicit written
72
+ permission.
73
+
74
+ 5) The Font Software, modified or unmodified, in part or in whole,
75
+ must be distributed entirely under this license, and must not be
76
+ distributed under any other license. The requirement for fonts to
77
+ remain under this license does not apply to any document created
78
+ using the Font Software.
79
+
80
+ TERMINATION
81
+ This license becomes null and void if any of the above conditions are
82
+ not met.
83
+
84
+ DISCLAIMER
85
+ THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
86
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
87
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
88
+ OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
89
+ COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
90
+ INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
91
+ DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
92
+ FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
93
+ OTHER DEALINGS IN THE FONT SOFTWARE.
@@ -5,902 +5,1216 @@
5
5
  <defs>
6
6
  <font id="source_sans_prolight" horiz-adv-x="980" >
7
7
  <font-face units-per-em="2048" ascent="1536" descent="-512" />
8
- <missing-glyph horiz-adv-x="407" />
8
+ <missing-glyph horiz-adv-x="409" />
9
9
  <glyph horiz-adv-x="0" />
10
10
  <glyph horiz-adv-x="682" />
11
- <glyph horiz-adv-x="0" />
12
- <glyph horiz-adv-x="0" />
13
- <glyph unicode="&#xd;" horiz-adv-x="407" />
14
- <glyph unicode=" " horiz-adv-x="407" />
15
- <glyph unicode="&#x09;" horiz-adv-x="407" />
16
- <glyph unicode="&#xa0;" horiz-adv-x="407" />
17
- <glyph unicode="!" horiz-adv-x="530" d="M178 68q0 45 26.5 69.5t61.5 24.5t60.5 -24.5t25.5 -69.5q0 -43 -25.5 -68t-60.5 -25t-61.5 25t-26.5 68zM219 1227v145h94l-2 -145l-12 -860h-68z" />
11
+ <glyph unicode=" " horiz-adv-x="409" />
12
+ <glyph unicode="&#x09;" horiz-adv-x="409" />
13
+ <glyph unicode="&#xa0;" horiz-adv-x="409" />
14
+ <glyph unicode="!" horiz-adv-x="530" d="M178 68q0 42 26 68t62 26q35 0 60.5 -25.5t25.5 -68.5q0 -41 -25.5 -67t-60.5 -26t-61.5 26t-26.5 67zM219 1227v145h94l-2 -145l-12 -860h-68z" />
18
15
  <glyph unicode="&#x22;" horiz-adv-x="737" d="M170 1419h104v-141l-18 -301h-68l-16 301zM459 1419h104v-141l-18 -301h-68l-16 301z" />
19
16
  <glyph unicode="#" d="M74 438v74h178l43 348h-180v74h188l51 397h72l-51 -397h305l53 397h70l-51 -397h168v-74h-175l-43 -348h177v-74h-187l-51 -438h-72l52 438h-306l-53 -438h-72l54 438h-170zM324 512h307l43 348h-307z" />
20
- <glyph unicode="$" d="M121 135l49 64q59 -53 141 -98.5t189 -45.5q129 0 197.5 70t68.5 182q0 100 -44 162.5t-109.5 107t-142.5 79t-142.5 79.5t-109.5 109.5t-44 169.5q0 63 21.5 118.5t59.5 97.5t91 68.5t117 32.5v203h80v-203q100 -6 163.5 -47t116.5 -96l-53 -58q-29 29 -56.5 51.5 t-58 39t-67.5 24.5t-84 8q-106 0 -172 -66.5t-66 -168.5q0 -90 44 -144.5t109.5 -94.5t142.5 -73.5t142.5 -82t109.5 -121t44 -189.5q0 -147 -89 -235t-226 -101v-202h-80v202q-106 8 -194.5 54.5t-147.5 103.5z" />
21
- <glyph unicode="%" horiz-adv-x="1648" d="M82 952q0 205 77 313.5t212 108.5t211.5 -108.5t76.5 -313.5q0 -207 -76.5 -316.5t-211.5 -109.5t-212 110t-77 316zM162 952q0 -172 56.5 -265t152.5 -93t152.5 93t56.5 265t-56.5 263.5t-152.5 91.5t-152.5 -91.5t-56.5 -263.5zM405 -25l754 1399h78l-752 -1399h-80z M989 401q0 205 77 313.5t212 108.5t211.5 -108.5t76.5 -313.5q0 -207 -76.5 -316.5t-211.5 -109.5t-212 110t-77 316zM1069 401q0 -172 56.5 -265t152.5 -93t152.5 93t56.5 265t-56.5 263.5t-152.5 91.5t-152.5 -91.5t-56.5 -263.5z" />
22
- <glyph unicode="&#x26;" horiz-adv-x="1177" d="M74 342q0 68 23.5 123t61.5 103t88 90t103 81q-41 86 -65.5 171t-24.5 163q0 66 20.5 121t57.5 95t88 62.5t113 22.5q111 0 168 -69.5t57 -176.5q0 -66 -26.5 -121t-70.5 -103t-100.5 -92t-113.5 -87q72 -129 171 -250t203 -213q72 92 125.5 204t87.5 241h88 q-41 -139 -99 -265.5t-140 -230.5q72 -57 137.5 -95t124.5 -61l-31 -80q-133 47 -289 170q-74 -76 -163.5 -123t-204.5 -47q-80 0 -151.5 26t-124 74t-83 115.5t-30.5 151.5zM166 348q0 -68 24.5 -122t65.5 -92t97.5 -59.5t117.5 -21.5q84 0 160 40t139 106 q-109 98 -210 221t-173 254q-45 -35 -85 -72t-70.5 -77t-48 -84t-17.5 -93zM344 1077q0 -68 20.5 -140.5t55.5 -145.5q51 37 98 73.5t84 77.5t58.5 85t21.5 97q0 33 -8 65t-25.5 56.5t-45.5 39.5t-68 15q-90 0 -140.5 -65.5t-50.5 -157.5z" />
17
+ <glyph unicode="$" d="M121 135l49 64q160 -144 330 -144q127 0 196.5 68.5t69.5 183.5q0 64 -20.5 116t-54.5 88t-78.5 65.5t-93.5 54.5t-98 49.5t-93.5 55t-78.5 67.5t-54.5 91t-20.5 120q0 128 81.5 215.5t207.5 101.5v203h80v-203q91 -5 155 -41.5t125 -101.5l-53 -58q-67 65 -122.5 94 t-143.5 29q-105 0 -171.5 -66.5t-66.5 -168.5q0 -57 20.5 -102.5t54.5 -77t78.5 -58t93.5 -50t98 -48.5t93.5 -58.5t78.5 -74.5t54.5 -101t20.5 -135q0 -143 -87.5 -233.5t-227.5 -102.5v-202h-80v202q-99 7 -187 51t-155 107z" />
18
+ <glyph unicode="%" horiz-adv-x="1648" d="M82 952q0 201 77 311.5t212 110.5t211.5 -110.5t76.5 -311.5q0 -204 -76.5 -315t-211.5 -111t-212 111.5t-77 314.5zM162 952q0 -169 56.5 -263.5t152.5 -94.5t152.5 94.5t56.5 263.5q0 168 -56.5 261.5t-152.5 93.5t-152.5 -93.5t-56.5 -261.5zM406 -25l753 1399h78 l-752 -1399h-79zM989 401q0 201 77 311.5t212 110.5t212 -110.5t77 -311.5q0 -203 -77 -314.5t-212 -111.5t-212 111.5t-77 314.5zM1069 401q0 -169 56.5 -263.5t152.5 -94.5t152.5 94.5t56.5 263.5q0 168 -56.5 261.5t-152.5 93.5t-152.5 -93.5t-56.5 -261.5z" />
19
+ <glyph unicode="&#x26;" horiz-adv-x="1177" d="M74 342q0 52 16 100.5t39.5 86t63 77.5t74 68.5t83.5 64.5q-90 188 -90 334q0 131 78 216t201 85q106 0 165.5 -68.5t59.5 -177.5q0 -28 -6.5 -56t-14.5 -51t-26.5 -50t-31 -44.5t-40.5 -44t-42.5 -40t-49 -41t-48.5 -37.5t-52 -39q69 -125 167.5 -246.5t206.5 -216.5 q139 176 213 445h88q-88 -307 -239 -496q134 -108 262 -156l-31 -80q-137 49 -289 170q-167 -170 -368 -170q-165 0 -277 101.5t-112 265.5zM166 348q0 -131 88.5 -213t216.5 -82q156 0 299 146q-112 103 -213 226t-170 249q-106 -82 -163.5 -158.5t-57.5 -167.5zM344 1077 q0 -128 76 -286q50 36 81 59.5t69.5 59t60 66t36.5 69.5t15 79q0 74 -35.5 125t-111.5 51q-87 0 -139 -64t-52 -159z" />
23
20
  <glyph unicode="'" horiz-adv-x="448" d="M170 1419h104v-141l-18 -301h-68l-16 301z" />
24
- <glyph unicode="(" horiz-adv-x="571" d="M180 569q0 270 72 496.5t199 431.5l55 -33q-123 -195 -184.5 -423t-61.5 -472t61.5 -472t184.5 -423l-55 -32q-127 205 -199 431t-72 496z" />
25
- <glyph unicode=")" horiz-adv-x="571" d="M66 -326q123 195 184 423.5t61 471.5q0 244 -61.5 472.5t-183.5 422.5l55 33q125 -205 197.5 -431t72.5 -497q0 -270 -72.5 -496.5t-197.5 -430.5z" />
26
- <glyph unicode="*" horiz-adv-x="808" d="M143 1241l19 62l194 -54l15 209h65l15 -207l194 52l21 -62l-185 -74l111 -180l-55 -41l-131 170l-136 -170l-55 41l113 180z" />
21
+ <glyph unicode="(" horiz-adv-x="571" d="M180 569q0 489 271 928l55 -33q-121 -192 -183.5 -421.5t-62.5 -473.5t62.5 -473.5t183.5 -421.5l-55 -32q-271 439 -271 927z" />
22
+ <glyph unicode=")" horiz-adv-x="571" d="M66 -326q121 192 183 421t62 474t-62 474t-183 421l55 33q270 -437 270 -928q0 -490 -270 -927z" />
23
+ <glyph unicode="*" horiz-adv-x="808" d="M143 1241l21 62l192 -54l15 209h65l15 -205l194 50l21 -62l-185 -74l111 -180l-55 -41l-131 170l-136 -170l-55 41l113 180z" />
27
24
  <glyph unicode="+" d="M70 637v78h379v411h83v-411h379v-78h-379v-412h-83v412h-379z" />
28
- <glyph unicode="," horiz-adv-x="448" d="M98 -256q70 37 113 99.5t45 148.5q-8 -2 -25 -2q-35 0 -60.5 22.5t-25.5 63.5t27 63.5t61 22.5q47 0 76 -39t29 -107q0 -113 -59.5 -198.5t-151.5 -134.5z" />
25
+ <glyph unicode="," horiz-adv-x="448" d="M98 -256q73 38 115.5 102.5t42.5 145.5q-8 -2 -25 -2q-37 0 -61.5 23t-24.5 63q0 39 26 62.5t62 23.5q46 0 75.5 -39.5t29.5 -106.5q0 -109 -57.5 -195t-153.5 -138z" />
29
26
  <glyph unicode="-" horiz-adv-x="612" d="M82 471v80h450v-80h-450z" />
30
- <glyph unicode="." horiz-adv-x="448" d="M137 68q0 45 26.5 69.5t61.5 24.5t60.5 -24.5t25.5 -69.5q0 -43 -25.5 -68t-60.5 -25t-61.5 25t-26.5 68z" />
27
+ <glyph unicode="." horiz-adv-x="448" d="M137 68q0 42 26 68t62 26q35 0 60.5 -25.5t25.5 -68.5q0 -41 -25.5 -67t-60.5 -26t-61.5 26t-26.5 67z" />
31
28
  <glyph unicode="/" horiz-adv-x="731" d="M18 -328l625 1782h78l-625 -1782h-78z" />
32
- <glyph unicode="0" d="M98 659q0 328 101.5 501t289.5 173t290 -173t102 -501q0 -330 -102 -507t-290 -177t-289.5 177.5t-101.5 506.5zM190 659q0 -301 82 -453.5t217 -152.5q137 0 218 152.5t81 453.5t-80.5 448.5t-218.5 147.5q-135 0 -217 -147t-82 -449z" />
33
- <glyph unicode="1" d="M172 0v80h307v1085h-233v62q80 14 142.5 34.5t109.5 47.5h73v-1229h285v-80h-684z" />
34
- <glyph unicode="2" d="M80 1141q74 82 163 137t210 55q176 0 272 -100t96 -266q0 -98 -43 -195.5t-120.5 -205t-189.5 -229.5t-247 -265q53 4 109.5 7t109.5 3h447v-82h-803v57q162 164 282.5 294t201.5 237.5t121 199t40 177.5q0 123 -68.5 206.5t-216.5 83.5q-90 0 -167.5 -49t-137.5 -123z " />
35
- <glyph unicode="3" d="M59 160l54 63q29 -33 63.5 -62.5t78.5 -53t98.5 -38t121.5 -14.5q66 0 122 20.5t97 58.5t63.5 91.5t22.5 118.5q0 68 -25.5 123t-81 95t-141.5 62.5t-208 22.5v80q113 0 191.5 22.5t126.5 60.5t69.5 90t21.5 112q0 111 -71.5 177t-192.5 66q-92 0 -168 -42t-133 -101 l-53 62q68 66 153.5 112.5t200.5 46.5q76 0 141.5 -21.5t113.5 -61.5t75.5 -98t27.5 -134q0 -129 -70.5 -208t-178.5 -116v-8q61 -12 114 -42t94 -73t64.5 -99t23.5 -126q0 -86 -30.5 -154.5t-84.5 -116.5t-127 -74t-157 -26q-78 0 -141.5 16.5t-113.5 43t-90 59.5t-71 66z " />
36
- <glyph unicode="4" d="M33 391v53l608 865h82v-840h195v-78h-195v-391h-88v391h-602zM143 469h492v479q0 45 2 112.5t6 113.5h-8q-25 -41 -51.5 -80t-55.5 -84z" />
37
- <glyph unicode="5" d="M53 152l51 63q29 -31 64 -59.5t78 -51t96 -36t121 -13.5q66 0 125 25.5t103 72t70.5 111t26.5 144.5q0 160 -86 248.5t-233 88.5q-76 0 -130 -23.5t-114 -64.5l-63 39l47 613h604v-80h-522l-41 -473q51 31 106.5 50t126.5 19q82 0 156 -24.5t127 -74.5t85 -129t32 -185 q0 -104 -36 -185.5t-94.5 -137.5t-133 -85t-154.5 -29q-78 0 -140.5 15.5t-112.5 41t-89 57.5t-70 63z" />
38
- <glyph unicode="6" d="M106 594q0 205 40 346t106.5 229t154 126t181.5 38q92 0 158.5 -34.5t117.5 -92.5l-55 -61q-43 53 -100.5 80.5t-120.5 27.5q-78 0 -147.5 -32.5t-123 -108.5t-85 -200t-33.5 -304q68 84 152.5 133.5t176.5 49.5q174 0 269.5 -103.5t95.5 -302.5q0 -90 -28.5 -165 t-78 -129t-114 -85t-137.5 -31q-199 0 -314 160t-115 459zM201 516q6 -104 29.5 -189t64.5 -145.5t101.5 -94.5t140.5 -34q57 0 105 25.5t83 71t55.5 105.5t20.5 130t-16.5 130t-50.5 104.5t-88 69t-128 24.5q-70 0 -153.5 -44t-163.5 -153z" />
39
- <glyph unicode="7" d="M90 1229v80h805v-54q-117 -156 -193.5 -299t-123 -291.5t-66.5 -310t-29 -354.5h-98q8 199 33.5 363.5t73 311t119 281t169.5 273.5h-690z" />
40
- <glyph unicode="8" d="M82 336q0 66 23.5 123t61.5 103t84 82t93 61v8q-37 25 -70.5 54.5t-59.5 67t-42 82t-16 97.5q0 70 26.5 129t72.5 101t108.5 65.5t134.5 23.5q84 0 149.5 -25.5t111.5 -71.5t69.5 -108.5t23.5 -136.5q0 -53 -18.5 -103t-46 -93t-60.5 -78t-61 -58v-8q43 -27 84 -57.5 t72.5 -69.5t52 -90t20.5 -117q0 -72 -28.5 -134t-81 -108t-126 -73t-161.5 -27q-90 0 -166 28t-131.5 76t-87 113.5t-31.5 143.5zM172 340q0 -61 24.5 -113.5t67.5 -91.5t102.5 -61.5t131.5 -22.5q70 0 126 20.5t96 57.5t61.5 86t21.5 104q0 76 -34 128.5t-90 92.5 t-128 69.5t-148 60.5q-100 -59 -165.5 -140t-65.5 -190zM246 1014q0 -70 29.5 -120t78.5 -88t111.5 -66.5t128.5 -53.5q84 68 128 142.5t44 160.5q0 55 -18.5 103.5t-52 85t-84 58t-113.5 21.5q-55 0 -101.5 -18t-80 -50t-52 -77t-18.5 -98z" />
41
- <glyph unicode="9" d="M88 926q0 88 28.5 163.5t78 129t114 84t137.5 30.5q197 0 311.5 -158.5t114.5 -457.5q0 -207 -39.5 -348.5t-105 -228.5t-154 -126t-182.5 -39q-92 0 -159.5 35t-116.5 92l55 62q43 -53 100.5 -81t122.5 -28q78 0 147.5 33t123 108.5t85 199.5t33.5 304 q-68 -82 -153.5 -131t-177.5 -49q-172 0 -267.5 103.5t-95.5 302.5zM178 926q0 -72 16.5 -132.5t51.5 -104.5t88 -68.5t129 -24.5q70 0 153.5 46t163.5 153q-6 104 -29.5 189t-65.5 145.5t-102.5 93t-140.5 32.5q-55 0 -104 -25.5t-84 -69.5t-55.5 -104.5t-20.5 -129.5z" />
42
- <glyph unicode=":" horiz-adv-x="448" d="M137 68q0 45 26.5 69.5t61.5 24.5t60.5 -24.5t25.5 -69.5q0 -43 -25.5 -68t-60.5 -25t-61.5 25t-26.5 68zM137 850q0 45 26.5 69.5t61.5 24.5t60.5 -24.5t25.5 -69.5q0 -43 -25.5 -68t-60.5 -25t-61.5 25t-26.5 68z" />
43
- <glyph unicode=";" horiz-adv-x="448" d="M98 -256q70 37 113 99.5t45 148.5q-8 -2 -25 -2q-35 0 -60.5 22.5t-25.5 63.5t27 63.5t61 22.5q47 0 76 -39t29 -107q0 -113 -59.5 -198.5t-151.5 -134.5zM137 850q0 45 26.5 69.5t61.5 24.5t60.5 -24.5t25.5 -69.5q0 -43 -25.5 -68t-60.5 -25t-61.5 25t-26.5 68z" />
29
+ <glyph unicode="0" d="M98 659q0 325 101.5 499.5t289.5 174.5t290 -174.5t102 -499.5q0 -327 -102.5 -505.5t-289.5 -178.5t-289 178.5t-102 505.5zM190 659q0 -293 80.5 -449.5t218.5 -156.5q139 0 219 156t80 450q0 293 -79.5 444.5t-219.5 151.5q-139 0 -219 -152t-80 -444z" />
30
+ <glyph unicode="1" d="M172 0v80h307v1085h-233v62q155 26 252 82h73v-1229h285v-80h-684z" />
31
+ <glyph unicode="2" d="M80 1141q82 91 171.5 141.5t201.5 50.5q173 0 270.5 -99t97.5 -267q0 -63 -15.5 -124.5t-61.5 -138t-80.5 -129.5t-123.5 -154t-136.5 -153t-169.5 -182q-9 -9 -13 -14q180 10 219 10h447v-82h-803v57q142 144 233.5 241.5t177.5 199.5t132.5 177t74 149t27.5 141 q0 130 -71.5 210t-213.5 80q-165 0 -305 -172z" />
32
+ <glyph unicode="3" d="M59 160l54 63q70 -77 154.5 -122.5t207.5 -45.5q133 0 219 80t86 209q0 142 -110 222.5t-346 80.5v80q214 0 311.5 78t97.5 207q0 110 -72 176.5t-192 66.5q-165 0 -301 -143l-53 62q163 159 354 159q157 0 257.5 -84t100.5 -231q0 -123 -67.5 -204t-181.5 -120v-8 q128 -28 212 -118t84 -222q0 -167 -113.5 -269t-285.5 -102q-75 0 -140 15.5t-116 44.5t-87.5 58t-72.5 67z" />
33
+ <glyph unicode="4" d="M33 391v53l608 865h82v-840h195v-78h-195v-391h-88v391h-602zM143 469h492v479q0 108 8 226h-8q-18 -30 -54.5 -84t-52.5 -80z" />
34
+ <glyph unicode="5" d="M53 152l51 63q46 -47 89 -78.5t114.5 -56.5t155.5 -25q134 0 229.5 99.5t95.5 253.5q0 157 -86 247t-233 90q-69 0 -123.5 -21.5t-120.5 -66.5l-63 39l47 613h604v-80h-522l-41 -473q114 69 233 69q85 0 156 -24.5t126.5 -73.5t86.5 -129.5t31 -185.5 q0 -101 -35.5 -185.5t-94.5 -138.5t-133.5 -83.5t-154.5 -29.5q-75 0 -139.5 15t-115 43t-85.5 55t-72 64z" />
35
+ <glyph unicode="6" d="M106 594q0 160 26 287t70.5 210.5t107 139t131.5 79t147 23.5q162 0 276 -127l-55 -61q-86 108 -221 108q-82 0 -149.5 -34.5t-122.5 -108t-86 -201.5t-31 -301q69 85 154.5 134t174.5 49q173 0 269 -105t96 -301q0 -176 -104.5 -293t-253.5 -117q-199 0 -314 162.5 t-115 456.5zM201 516q12 -215 96.5 -339t239.5 -124q113 0 188.5 96t75.5 236q0 149 -70 238.5t-213 89.5q-75 0 -158.5 -48t-158.5 -149z" />
36
+ <glyph unicode="7" d="M90 1229v80h805v-54q-117 -155 -193.5 -297.5t-122.5 -296t-67 -306t-29 -355.5h-98q15 393 105 671.5t290 557.5h-690z" />
37
+ <glyph unicode="8" d="M82 336q0 63 23 122t62.5 104.5t83 80.5t93.5 62v8q-188 123 -188 301q0 139 98.5 229t243.5 90q164 0 259 -95.5t95 -246.5q0 -97 -57.5 -186t-128.5 -146v-8q50 -31 84.5 -58t71 -67.5t55 -93t18.5 -115.5q0 -145 -111 -243.5t-286 -98.5q-180 0 -298 103t-118 258z M172 340q0 -122 93 -205.5t233 -83.5q136 0 220.5 76.5t84.5 191.5q0 56 -21 102.5t-55.5 80t-84.5 62.5t-102.5 51.5t-114.5 46.5q-15 5 -22 8q-231 -135 -231 -330zM246 1014q0 -39 11 -73.5t27 -61t45.5 -51.5t54.5 -42.5t66.5 -37.5t69.5 -32t74 -30q172 139 172 303 q0 113 -72.5 190.5t-195.5 77.5q-109 0 -180.5 -68.5t-71.5 -174.5z" />
38
+ <glyph unicode="9" d="M88 926q0 176 104.5 291.5t253.5 115.5q198 0 312 -161t114 -455q0 -160 -26 -287.5t-70 -211.5t-106 -139.5t-131 -79.5t-148 -24q-166 0 -276 127l55 62q86 -109 223 -109q82 0 149.5 34.5t122.5 108t86 201.5t31 301q-69 -84 -155 -132t-176 -48q-172 0 -267.5 105 t-95.5 301zM178 926q0 -151 70.5 -240.5t214.5 -89.5q76 0 161.5 50t155.5 149q-12 214 -97.5 337t-240.5 123q-112 0 -188 -94.5t-76 -234.5z" />
39
+ <glyph unicode=":" horiz-adv-x="448" d="M137 68q0 42 26 68t62 26q35 0 60.5 -25.5t25.5 -68.5q0 -41 -25.5 -67t-60.5 -26t-61.5 26t-26.5 67zM137 850q0 42 26 68t62 26q35 0 60.5 -25.5t25.5 -68.5q0 -41 -25.5 -66.5t-60.5 -25.5t-61.5 25.5t-26.5 66.5z" />
40
+ <glyph unicode=";" horiz-adv-x="448" d="M98 -256q73 38 115.5 102.5t42.5 145.5q-8 -2 -25 -2q-37 0 -61.5 23t-24.5 63q0 39 26 62.5t62 23.5q46 0 75.5 -39.5t29.5 -106.5q0 -109 -57.5 -195t-153.5 -138zM137 850q0 42 26 68t62 26q35 0 60.5 -25.5t25.5 -68.5q0 -41 -25.5 -66.5t-60.5 -25.5t-61.5 25.5 t-26.5 66.5z" />
44
41
  <glyph unicode="&#x3c;" d="M70 635v90l841 336v-88l-475 -185l-272 -104v-8l272 -105l475 -184v-88z" />
45
- <glyph unicode="=" d="M70 430v78h841v-78h-841zM70 846v78h841v-78h-841z" />
42
+ <glyph unicode="=" d="M70 428v78h841v-78h-841zM70 846v78h841v-78h-841z" />
46
43
  <glyph unicode="&#x3e;" d="M70 299v88l475 184l272 105v8l-272 104l-475 185v88l841 -336v-90z" />
47
- <glyph unicode="?" horiz-adv-x="823" d="M76 1237q59 68 139 114t186 46q76 0 135.5 -23.5t100.5 -65.5t62.5 -99.5t21.5 -125.5q0 -70 -25.5 -128t-62.5 -111t-79 -105.5t-76 -109t-53 -121t-9 -141.5h-82q-12 84 5 152.5t50 127t74 109.5t78 101t61.5 103.5t24.5 116.5q0 47 -13.5 91t-42 77t-72.5 52.5 t-104 19.5q-76 0 -144.5 -34t-119.5 -97zM295 68q0 45 25.5 69.5t60.5 24.5t61.5 -24.5t26.5 -69.5q0 -43 -26.5 -68t-61.5 -25t-60.5 25t-25.5 68z" />
48
- <glyph unicode="@" horiz-adv-x="1667" d="M106 414q0 201 67 363.5t178.5 278t259 178t309.5 62.5q147 0 267 -47t203 -132t128 -204.5t45 -265.5q0 -131 -35 -230.5t-90.5 -167t-122 -101t-129.5 -33.5q-82 0 -136.5 37.5t-62.5 117.5h-4q-53 -59 -115.5 -101t-134.5 -42q-47 0 -90 17.5t-74.5 52t-50 87 t-18.5 122.5q0 74 25.5 155.5t74.5 149t120 111.5t161 44q109 0 170 -98h4l18 82h70l-74 -387q-70 -276 123 -277q49 0 101.5 31t94.5 89.5t69.5 142t27.5 192.5q0 131 -40 239.5t-114 184.5t-179 118t-239 42q-141 0 -272 -57.5t-232.5 -163t-163 -254t-61.5 -330.5 q0 -150 45 -269.5t126 -202.5t195 -128t251 -45q102 0 186 26.5t158 71.5l33 -61q-176 -111 -383 -111q-147 0 -273.5 48t-218.5 139.5t-144.5 223.5t-52.5 302zM582 412q0 -117 47 -164t116 -47q102 0 222 137l63 354q-37 57 -70.5 79t-80.5 22q-70 0 -125.5 -36t-93 -91.5 t-58 -123t-20.5 -130.5z" />
49
- <glyph unicode="A" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM299 543h479l-86 252q-41 121 -77.5 231.5t-71.5 235.5h-8q-35 -125 -72 -236t-78 -231z" />
50
- <glyph unicode="B" horiz-adv-x="1183" d="M199 0v1350h364q205 0 326 -79t121 -249q0 -106 -60.5 -185t-179.5 -110v-8q150 -23 236 -103.5t86 -222.5q0 -98 -36 -172t-101.5 -123t-157.5 -73.5t-207 -24.5h-391zM293 78h272q203 0 318.5 75.5t115.5 239.5q0 145 -112.5 216t-321.5 71h-272v-602zM293 756h233 q209 0 299 66.5t90 201.5q0 131 -96 189.5t-282 58.5h-244v-516z" />
51
- <glyph unicode="C" horiz-adv-x="1155" d="M113 678q0 160 42 289t117.5 220t182 139t235.5 48q117 0 207 -49t143 -113l-57 -61q-53 61 -127 99t-166 38q-111 0 -200 -43t-151.5 -122t-95 -191.5t-32.5 -253.5t32.5 -255t94 -193.5t148.5 -124t196 -44.5q104 0 185 41t155 125l57 -59q-78 -90 -174 -141.5 t-227 -51.5q-125 0 -229.5 49.5t-179 140.5t-115.5 221t-41 292z" />
52
- <glyph unicode="D" horiz-adv-x="1236" d="M199 0v1350h313q156 0 271.5 -47.5t191.5 -135.5t112.5 -210.5t36.5 -276.5t-36.5 -280t-112.5 -215t-190.5 -137t-270.5 -48h-315zM293 80h209q137 0 236.5 44t163 124t94 189.5t30.5 242.5q0 131 -30.5 239.5t-94 186.5t-163 121t-236.5 43h-209v-1190z" />
44
+ <glyph unicode="?" horiz-adv-x="823" d="M76 1237q142 160 327 160q146 0 232 -88.5t86 -225.5q0 -56 -19 -110.5t-48.5 -99.5t-65 -90t-69 -91t-60 -94.5t-39 -107.5t-4.5 -123h-82q-9 69 2 132.5t36.5 113.5t58 96.5t67 90t63.5 85.5t47.5 91.5t18.5 100.5q0 103 -59 171.5t-173 68.5q-75 0 -144 -34t-120 -97z M295 68q0 43 25.5 68.5t60.5 25.5q36 0 62 -26t26 -68q0 -41 -26.5 -67t-61.5 -26t-60.5 26t-25.5 67z" />
45
+ <glyph unicode="@" horiz-adv-x="1667" d="M106 414q0 195 66.5 362.5t178.5 280t259.5 176t309.5 63.5q295 0 469 -178t174 -471q0 -125 -34.5 -229t-90.5 -168.5t-121.5 -99.5t-130.5 -35q-85 0 -138.5 39t-60.5 116h-4q-129 -143 -250 -143q-100 0 -166.5 73t-66.5 206q0 60 16 124t48.5 124t77.5 107.5t107 76 t132 28.5q109 0 170 -98h4l18 82h70l-74 -387q-70 -277 123 -277q50 0 101 31t94.5 87t70.5 144.5t27 192.5q0 266 -154 425t-418 159q-112 0 -219.5 -36.5t-199.5 -107t-161.5 -167t-109 -224.5t-39.5 -270q0 -297 169.5 -471t447.5 -174q181 0 344 98l33 -61 q-176 -111 -383 -111q-148 0 -274 48.5t-218.5 138.5t-144.5 225t-52 301zM582 412q0 -111 44 -161t119 -50q102 0 222 137l63 354q-36 56 -70.5 78.5t-80.5 22.5q-87 0 -157 -60t-105 -146t-35 -175z" />
46
+ <glyph unicode="A" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM299 543h479l-86 252q-95 277 -149 467h-8q-49 -174 -150 -467z" />
47
+ <glyph unicode="B" horiz-adv-x="1183" d="M199 0v1350h364q211 0 329 -82t118 -246q0 -107 -54.5 -186t-154.5 -109v-8q134 -22 212.5 -106t78.5 -220q0 -191 -134 -292t-368 -101h-391zM293 78h272q207 0 320.5 78t113.5 235q0 144 -111.5 215.5t-322.5 71.5h-272v-600zM293 756h233q389 0 389 256 q0 139 -93 199.5t-285 60.5h-244v-516z" />
48
+ <glyph unicode="C" horiz-adv-x="1155" d="M113 678q0 319 158 507.5t417 188.5q110 0 201 -46t151 -116l-55 -63q-122 139 -295 139q-222 0 -350.5 -164t-128.5 -446t127 -449.5t344 -167.5q102 0 184.5 41t157.5 125l55 -59q-82 -94 -179 -143.5t-222 -49.5q-253 0 -409 191.5t-156 511.5z" />
49
+ <glyph unicode="D" horiz-adv-x="1236" d="M199 0v1350h313q304 0 458 -177.5t154 -492.5q0 -317 -154 -498.5t-456 -181.5h-315zM293 80h209q135 0 236.5 44t163.5 124.5t93 188.5t31 243q0 134 -30.5 240.5t-93 185.5t-164 121.5t-236.5 42.5h-209v-1190z" />
53
50
  <glyph unicode="E" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759z" />
54
51
  <glyph unicode="F" horiz-adv-x="976" d="M199 0v1350h735v-82h-641v-537h543v-82h-543v-649h-94z" />
55
- <glyph unicode="G" horiz-adv-x="1239" d="M113 678q0 160 43 289t121.5 220t188 139t245.5 48q68 0 123 -14t100 -38t81 -52.5t62 -57.5l-55 -61q-53 57 -127 97t-184 40q-117 0 -209 -43t-156.5 -122t-99.5 -191.5t-35 -253.5t32.5 -255t95 -193.5t154 -124t205.5 -44.5q92 0 173 27t130 76v420h-323v80h414v-535 q-63 -68 -165 -111t-237 -43q-129 0 -235.5 49.5t-182 140.5t-117.5 221t-42 292z" />
52
+ <glyph unicode="G" horiz-adv-x="1239" d="M113 678q0 319 163.5 507.5t432.5 188.5q215 0 368 -162l-55 -63q-128 139 -311 139q-231 0 -365.5 -164t-134.5 -446q0 -284 129.5 -450.5t357.5 -166.5q93 0 173.5 27t129.5 76v420h-323v80h414v-535q-66 -71 -169.5 -112.5t-230.5 -41.5q-262 0 -420.5 191t-158.5 512 z" />
56
53
  <glyph unicode="H" horiz-adv-x="1308" d="M199 0v1350h94v-592h723v592h94v-1350h-94v676h-723v-676h-94z" />
57
54
  <glyph unicode="I" horiz-adv-x="491" d="M199 0v1350h94v-1350h-94z" />
58
- <glyph unicode="J" horiz-adv-x="946" d="M84 174l72 47q49 -86 111.5 -123t148.5 -37q123 0 182 75t59 241v973h95v-983q0 -82 -18.5 -153t-58.5 -124t-103.5 -84t-155.5 -31q-113 0 -197 51.5t-135 147.5z" />
55
+ <glyph unicode="J" horiz-adv-x="946" d="M84 174l72 47q49 -85 111.5 -122.5t148.5 -37.5q124 0 182.5 76.5t58.5 239.5v973h95v-983q0 -84 -18.5 -153t-57 -124t-105 -85t-155.5 -30q-225 0 -332 199z" />
59
56
  <glyph unicode="K" horiz-adv-x="1142" d="M199 0v1350h94v-750h4l653 750h113l-430 -500l489 -850h-108l-447 778l-274 -313v-465h-94z" />
60
57
  <glyph unicode="L" horiz-adv-x="956" d="M199 0v1350h94v-1268h622v-82h-716z" />
61
- <glyph unicode="M" horiz-adv-x="1445" d="M199 0v1350h133l282 -793l107 -299h8l102 299l283 793h133v-1350h-92v887q0 84 4 181t8 183h-8l-106 -297l-289 -807h-84l-291 807l-106 297h-9q4 -86 8.5 -183t4.5 -181v-887h-88z" />
62
- <glyph unicode="N" horiz-adv-x="1302" d="M199 0v1350h98l569 -953l152 -268h8q-4 98 -8 196.5t-4 196.5v828h90v-1350h-98l-570 952l-151 269h-9q4 -98 8.5 -191.5t4.5 -191.5v-838h-90z" />
63
- <glyph unicode="O" horiz-adv-x="1335" d="M113 680q0 160 41 288t114.5 219t176 139t223.5 48q123 0 225 -48t176 -139t115 -219t41 -288t-41 -290t-115 -222t-176 -142.5t-225 -50.5q-121 0 -223.5 50.5t-176 142.5t-114.5 222t-41 290zM211 680q0 -141 32.5 -255t92 -194.5t145 -125t187.5 -44.5t186 44.5 t144.5 125t93 194.5t32.5 255q0 139 -32.5 251.5t-93 191.5t-144.5 122t-186 43t-187.5 -43t-145 -122t-92 -191.5t-32.5 -251.5z" />
64
- <glyph unicode="P" horiz-adv-x="1144" d="M199 0v1350h368q113 0 202 -19.5t151.5 -64.5t95.5 -117t33 -176q0 -199 -127 -296t-355 -97h-274v-580h-94zM293 659h252q207 0 307 74t100 240q0 86 -25.5 142t-75.5 91t-127 49.5t-179 14.5h-252v-611z" />
65
- <glyph unicode="Q" horiz-adv-x="1335" d="M113 680q0 160 41 288t114.5 219t176 139t223.5 48q123 0 225 -48t176 -139t115 -219t41 -288q0 -152 -37 -276.5t-103.5 -216t-160 -145.5t-205.5 -65q47 -102 136 -155t216 -53q47 0 79 5t58 13l21 -82q-27 -8 -71 -15t-95 -7q-170 0 -283.5 83.5t-165.5 210.5 q-111 10 -203 64.5t-158.5 146t-103 216t-36.5 276.5zM211 680q0 -141 32.5 -257t92 -197t144.5 -126t188 -45q102 0 186 45t144.5 126t93 197t32.5 257q0 139 -32.5 251.5t-93 191.5t-144.5 122t-186 43t-187.5 -43t-145 -122t-92 -191.5t-32.5 -251.5z" />
66
- <glyph unicode="R" horiz-adv-x="1146" d="M199 0v1350h387q100 0 182 -19.5t139.5 -62.5t89 -110.5t31.5 -164.5q0 -162 -93 -254t-253 -112l373 -627h-109l-366 621h-287v-621h-94zM293 698h268q180 0 275.5 73t95.5 222q0 152 -96.5 214.5t-274.5 62.5h-268v-572z" />
67
- <glyph unicode="S" horiz-adv-x="1067" d="M94 178l62 66q74 -84 176 -133.5t219 -49.5q156 0 246 75t90 196q0 63 -19.5 106t-52.5 75t-77 55.5t-93 45.5l-205 93q-45 18 -93 44.5t-88 66.5t-66.5 94.5t-26.5 129.5q0 74 29.5 134.5t82 104.5t125 68.5t156.5 24.5q123 0 218 -48t157 -114l-53 -63q-59 63 -139 101 t-183 38q-135 0 -217 -65.5t-82 -175.5q0 -59 22.5 -100.5t57.5 -71t76 -51t78 -38.5l204 -90q57 -25 108.5 -55.5t90.5 -71.5t62.5 -97t23.5 -134t-30.5 -144.5t-87 -114.5t-136.5 -76t-178 -28q-147 0 -262 56.5t-195 146.5z" />
58
+ <glyph unicode="M" horiz-adv-x="1445" d="M199 0v1350h133l282 -793q6 -18 46 -129t61 -170h8q16 44 49.5 145t52.5 154l281 793h135v-1350h-92v887q0 138 12 364h-8l-104 -301l-291 -803h-82l-293 803l-106 301h-9q1 -37 5 -113t6 -139t2 -112v-887h-88z" />
59
+ <glyph unicode="N" horiz-adv-x="1302" d="M199 0v1350h98l569 -953l152 -268h8q-1 44 -4.5 124t-5.5 145.5t-2 123.5v828h90v-1350h-98l-570 952l-151 269h-9q1 -24 7 -165t6 -218v-838h-90z" />
60
+ <glyph unicode="O" horiz-adv-x="1335" d="M113 680q0 316 154.5 505t400.5 189q247 0 402 -189t155 -505q0 -318 -155 -511.5t-402 -193.5q-245 0 -400 193.5t-155 511.5zM211 680q0 -281 125.5 -450t331.5 -169t331 169t125 450q0 278 -124.5 443t-331.5 165t-332 -165t-125 -443z" />
61
+ <glyph unicode="P" horiz-adv-x="1124" d="M199 0v1350h340q240 0 364.5 -88t124.5 -289q0 -195 -125.5 -294t-355.5 -99h-254v-580h-94zM293 659h231q208 0 308 75t100 239q0 165 -99.5 231t-316.5 66h-223v-611z" />
62
+ <glyph unicode="Q" horiz-adv-x="1335" d="M113 680q0 316 154.5 505t400.5 189q247 0 402 -189t155 -505q0 -301 -139.5 -491t-366.5 -212q46 -101 136 -154.5t216 -53.5q67 0 137 16l21 -80q-84 -24 -166 -24q-164 0 -279.5 81t-169.5 215q-224 22 -362.5 213t-138.5 490zM211 680q0 -282 125.5 -453.5 t331.5 -171.5t331 171.5t125 453.5q0 278 -124.5 443t-331.5 165t-332 -165t-125 -443z" />
63
+ <glyph unicode="R" horiz-adv-x="1114" d="M199 0v1350h387q442 0 442 -357q0 -158 -91.5 -251.5t-254.5 -114.5l373 -627h-109l-366 621h-287v-621h-94zM293 698h268q181 0 276 74t95 221q0 148 -93 212.5t-278 64.5h-268v-572z" />
64
+ <glyph unicode="S" horiz-adv-x="1067" d="M94 178l62 66q75 -85 178 -134t217 -49q154 0 245 75t91 196q0 49 -13.5 89t-32 66t-55 51.5t-64 39.5t-77.5 36l-205 93q-43 19 -74.5 35.5t-71.5 46.5t-66 63t-44 82.5t-18 107.5q0 145 111.5 238.5t281.5 93.5q115 0 211.5 -45t163.5 -117l-53 -61q-134 137 -322 137 q-134 0 -216.5 -65.5t-82.5 -175.5q0 -32 8.5 -61.5t20 -50.5t33.5 -42.5t38 -34t46 -29t43.5 -23t44.5 -20.5l204 -90q52 -23 89 -43.5t76.5 -52t63.5 -66.5t40 -85.5t16 -110.5q0 -158 -119 -260.5t-313 -102.5q-276 0 -457 203z" />
68
65
  <glyph unicode="T" horiz-adv-x="1073" d="M59 1268v82h955v-82h-430v-1268h-95v1268h-430z" />
69
- <glyph unicode="U" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -135 29.5 -224t78.5 -143.5t113.5 -77t136.5 -22.5q74 0 140.5 22.5t116.5 77t81 143.5t31 224v822h88v-832q0 -158 -39 -262t-102.5 -166.5t-145.5 -88.5t-170 -26q-86 0 -168 26t-145.5 88.5t-101 166.5t-37.5 262z" />
70
- <glyph unicode="V" horiz-adv-x="1005" d="M8 1350h101l249 -789q39 -123 71 -226.5t73 -225.5h8q20 61 37.5 116.5t34 109.5t34 109.5t35.5 116.5l250 789h96l-442 -1350h-100z" />
71
- <glyph unicode="W" horiz-adv-x="1576" d="M57 1350h99l170 -795q23 -111 46 -220.5t46 -219.5h8q25 111 50.5 220t53.5 220l211 795h97l211 -795q29 -111 54 -220.5t54 -219.5h8q23 111 44.5 220t43.5 220l170 795h93l-302 -1350h-104l-246 926q-18 80 -36.5 152.5t-34.5 152.5h-9q-16 -80 -36.5 -152.5 t-38.5 -152.5l-242 -926h-102z" />
72
- <glyph unicode="X" horiz-adv-x="987" d="M35 0l405 698l-377 652h103l221 -398q29 -47 52.5 -88t58.5 -96h8q29 55 50.5 96t49.5 88l221 398h97l-377 -656l405 -694h-102l-236 414q-29 51 -58.5 102t-66.5 113h-8q-33 -61 -59.5 -112.5t-54.5 -102.5l-236 -414h-96z" />
73
- <glyph unicode="Y" horiz-adv-x="915" d="M6 1350h100l205 -422q35 -74 69 -145.5t75 -145.5h8q39 74 75.5 145.5t69.5 145.5l205 422h96l-405 -803v-547h-94v547z" />
66
+ <glyph unicode="U" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5z" />
67
+ <glyph unicode="V" horiz-adv-x="1005" d="M8 1350h101l249 -789q97 -311 144 -452h8q25 73 47 144.5t49.5 162.5t44.5 145l250 789h96l-442 -1350h-100z" />
68
+ <glyph unicode="W" horiz-adv-x="1576" d="M57 1350h99l170 -795q12 -58 43.5 -208.5t48.5 -231.5h8q64 280 104 440l211 795h97l211 -795q18 -73 53.5 -219.5t54.5 -220.5h8q16 73 44.5 219.5t43.5 220.5l170 795h93l-302 -1350h-104l-246 926q-60 255 -71 305h-9q-13 -59 -39 -161.5t-36 -143.5l-242 -926h-102z " />
69
+ <glyph unicode="X" horiz-adv-x="987" d="M35 0l405 698l-377 652h103l221 -398q16 -26 51.5 -85t59.5 -99h8q77 146 100 184l221 398h97l-377 -656l405 -694h-102l-236 414q-35 65 -125 215h-8q-79 -151 -114 -215l-236 -414h-96z" />
70
+ <glyph unicode="Y" horiz-adv-x="915" d="M6 1350h100l205 -422q105 -218 144 -291h8q110 212 145 291l205 422h96l-405 -803v-547h-94v547z" />
74
71
  <glyph unicode="Z" horiz-adv-x="1101" d="M102 0v55l777 1213h-709v82h827v-56l-778 -1212h785v-82h-902z" />
75
72
  <glyph unicode="[" horiz-adv-x="571" d="M201 -311v1761h327v-59h-256v-1643h256v-59h-327z" />
76
73
  <glyph unicode="\" horiz-adv-x="731" d="M10 1454h78l627 -1782h-78z" />
77
74
  <glyph unicode="]" horiz-adv-x="571" d="M43 -252h256v1643h-256v59h328v-1761h-328v59z" />
78
75
  <glyph unicode="^" d="M135 594l307 778h95l309 -778h-88l-158 416l-106 272h-9l-104 -272l-158 -416h-88z" />
79
76
  <glyph unicode="_" horiz-adv-x="1024" d="M25 -162h974v-78h-974v78z" />
80
- <glyph unicode="`" horiz-adv-x="1095" d="M367 1450h106l189 -279h-78z" />
81
- <glyph unicode="a" horiz-adv-x="1021" d="M133 246q0 162 153.5 248t481.5 122v20q0 46 -7 92q-9 56 -35 100t-72 72t-117 28q-100 0 -182.5 -39t-131.5 -76l-41 68q27 18 65 40.5t84 41t101 32t115 13.5q88 0 147.5 -30t96 -81t52 -119.5t15.5 -148.5v-629h-76l-10 127h-4q-76 -59 -163 -105.5t-185 -46.5 q-59 0 -110.5 16.5t-91.5 49.5t-62.5 84t-22.5 121zM227 250q0 -106 61.5 -151.5t145.5 -45.5q86 0 164 41t170 119v334q-152 -18 -255 -45t-166.5 -64t-91.5 -84t-28 -104z" />
82
- <glyph unicode="b" horiz-adv-x="1114" d="M188 0v1473h91v-426l-5 -193q76 63 162 108.5t178 45.5q197 0 295.5 -136.5t98.5 -365.5q0 -125 -35 -223.5t-95.5 -167t-139.5 -104.5t-165 -36q-72 0 -148.5 32t-145.5 85h-5l-10 -92h-76zM279 182q82 -70 157.5 -98.5t132.5 -28.5q74 0 137.5 33t108.5 92.5 t70.5 142.5t25.5 183q0 90 -17 168t-54 134t-96.5 88t-143.5 32q-74 0 -153.5 -42t-167.5 -120v-584z" />
83
- <glyph unicode="c" horiz-adv-x="919" d="M106 489q0 123 37 220.5t98.5 163t142.5 100.5t171 35q102 0 171 -37t118 -84l-53 -64q-47 45 -104.5 75t-129.5 30q-76 0 -140.5 -32t-112.5 -90t-75.5 -138t-27.5 -179q0 -96 25.5 -176t71.5 -137t112.5 -89t146.5 -32q78 0 144.5 33t117.5 80l47 -62q-63 -57 -141 -94 t-172 -37q-96 0 -177 35t-141.5 100.5t-94.5 160.5t-34 218z" />
84
- <glyph unicode="d" horiz-adv-x="1114" d="M106 489q0 119 35 215.5t95.5 164t139.5 103.5t167 36q90 0 156.5 -32t140.5 -89l-4 180v406h90v-1473h-78l-8 127h-6q-59 -59 -140.5 -105.5t-179.5 -46.5q-186 0 -297 132t-111 382zM203 489q0 -98 21.5 -178t62.5 -136t101.5 -88t137.5 -32q82 0 157 42t153 120v584 q-78 70 -146.5 98.5t-140.5 28.5q-74 0 -137.5 -34t-109.5 -92.5t-72.5 -139.5t-26.5 -173z" />
85
- <glyph unicode="e" horiz-adv-x="989" d="M106 489q0 121 36 217.5t96.5 163t137.5 102.5t159 36q176 0 276 -119t100 -336v-36.5t-4 -37.5h-708q2 -92 28.5 -171t74.5 -135t115.5 -88t151.5 -32q80 0 144.5 23.5t120.5 64.5l36 -69q-59 -35 -129.5 -66t-179.5 -31q-94 0 -177 35t-144.5 101.5t-97.5 161.5 t-36 216zM199 549h626q0 190 -77.5 285.5t-210.5 95.5q-63 0 -121 -26.5t-104 -76t-75.5 -120t-37.5 -158.5z" />
86
- <glyph unicode="f" horiz-adv-x="538" d="M68 905v70l135 8v219q0 147 63.5 221t179.5 74q72 0 144 -33l-25 -73q-31 16 -60.5 22t-58.5 6q-78 0 -115.5 -58t-37.5 -165v-213h227v-78h-227v-905h-90v905h-135z" />
87
- <glyph unicode="g" horiz-adv-x="997" d="M106 -201q0 66 39 127.5t107 110.5v8q-37 23 -61.5 61.5t-24.5 96.5q0 66 37 111.5t69 68.5v8q-47 41 -84.5 110.5t-37.5 160.5q0 76 26.5 139t73.5 109t110.5 72t135.5 26q41 0 73.5 -7.5t55.5 -17.5h333v-76h-229q47 -41 78 -105.5t31 -142.5q0 -76 -27 -139t-73 -109 t-108.5 -72t-133.5 -26q-41 0 -85 10.5t-79 30.5q-33 -27 -56.5 -59.5t-23.5 -81.5q0 -53 39 -91t149 -38h211q166 0 245 -54.5t79 -170.5q0 -63 -33 -124t-93.5 -107t-146.5 -73.5t-192 -27.5q-186 0 -295 73.5t-109 198.5zM193 -193q0 -92 84.5 -149t242.5 -57 q82 0 149.5 21.5t114.5 56t73 78.5t26 91q0 82 -58.5 116t-169.5 34h-211q-16 0 -50 3t-72 13q-68 -47 -98.5 -100.5t-30.5 -106.5zM240 662q0 -61 20.5 -112.5t56 -88.5t82 -56.5t97.5 -19.5t97 19.5t81 56.5t55.5 88t20.5 113q0 61 -20.5 112t-54.5 86t-81 54.5t-98 19.5 q-53 0 -99.5 -19.5t-81 -54.5t-55 -85t-20.5 -113z" />
88
- <glyph unicode="h" horiz-adv-x="1081" d="M188 0v1473h91v-426v-218q78 78 157.5 128.5t181.5 50.5q154 0 225.5 -92.5t71.5 -284.5v-631h-90v618q0 158 -52 233t-173 75q-88 0 -159.5 -46t-161.5 -139v-741h-91z" />
89
- <glyph unicode="i" horiz-adv-x="468" d="M154 1300q0 39 23.5 60.5t58.5 21.5t58 -21.5t23 -60.5q0 -35 -23 -57t-58 -22t-58.5 22.5t-23.5 56.5zM188 0v983h91v-983h-91z" />
90
- <glyph unicode="j" horiz-adv-x="468" d="M-68 -444l23 73q18 -6 46 -13t56 -7q82 0 106.5 60.5t24.5 154.5v1159h93v-1165q0 -145 -53.5 -216t-168.5 -71q-35 0 -69.5 7t-57.5 18zM154 1300q0 39 24.5 60.5t57.5 21.5q35 0 59 -21.5t24 -60.5q0 -35 -24 -57t-59 -22q-33 0 -57.5 22.5t-24.5 56.5z" />
77
+ <glyph unicode="`" horiz-adv-x="1095" d="M311 1485l70 59l274 -321l-49 -47z" />
78
+ <glyph unicode="a" horiz-adv-x="1005" d="M119 246q0 161 151 247t484 123v10q0 302 -234 302q-153 0 -313 -115l-41 68q181 127 366 127q84 0 146 -29t97.5 -82t52 -119.5t16.5 -148.5v-629h-78l-8 127h-6q-190 -152 -349 -152q-124 0 -204 69t-80 202zM211 250q0 -100 58.5 -148.5t150.5 -48.5q81 0 159 39 t175 121v334q-296 -34 -419.5 -105t-123.5 -192z" />
79
+ <glyph unicode="b" horiz-adv-x="1110" d="M188 0v1473h91v-426l-5 -193q183 154 340 154q192 0 293 -134t101 -368q0 -122 -35.5 -223.5t-95.5 -168t-138.5 -103t-165.5 -36.5q-69 0 -146.5 33.5t-147.5 91.5h-5l-10 -100h-76zM279 182q150 -127 290 -127q150 0 246 126t96 325q0 93 -17.5 168t-53.5 133t-97 89.5 t-143 31.5q-139 0 -321 -162v-584z" />
80
+ <glyph unicode="c" horiz-adv-x="919" d="M106 489q0 120 36.5 219.5t98.5 164t142.5 100t171.5 35.5q92 0 159.5 -32.5t129.5 -88.5l-53 -64q-112 105 -234 105q-152 0 -254 -123t-102 -316q0 -194 97.5 -314t258.5 -120q136 0 262 113l47 -64q-146 -129 -313 -129q-196 0 -321.5 137.5t-125.5 376.5z" />
81
+ <glyph unicode="d" horiz-adv-x="1114" d="M106 489q0 116 35.5 214.5t95.5 164.5t139.5 103t166.5 37q84 0 150 -29t147 -92l-4 180v406h90v-1473h-78l-8 127h-6q-152 -152 -320 -152q-189 0 -298.5 134.5t-109.5 379.5zM203 489q0 -199 84.5 -316.5t238.5 -117.5q148 0 310 162v584q-77 68 -145 97.5t-142 29.5 q-147 0 -246.5 -126.5t-99.5 -312.5z" />
82
+ <glyph unicode="e" horiz-adv-x="989" d="M106 489q0 117 36 216.5t96.5 164.5t137.5 101.5t159 36.5q176 0 276 -120t100 -335q0 -49 -4 -74h-708q3 -188 104.5 -307t265.5 -119q142 0 265 88l36 -69q-50 -30 -84.5 -47.5t-96 -33.5t-128.5 -16q-195 0 -325 139.5t-130 374.5zM199 553h626q0 185 -76.5 281 t-211.5 96q-130 0 -226.5 -102.5t-111.5 -274.5z" />
83
+ <glyph unicode="f" horiz-adv-x="538" d="M68 905v70l135 8v219q0 145 62.5 220t180.5 75q70 0 144 -33l-25 -73q-57 28 -119 28q-153 0 -153 -223v-213h227v-78h-227v-905h-90v905h-135z" />
84
+ <glyph unicode="g" horiz-adv-x="997" d="M106 -201q0 64 38.5 126t107.5 112v8q-86 51 -86 158q0 104 106 180v8q-51 44 -86.5 116t-35.5 155q0 151 99.5 248.5t246.5 97.5q64 0 129 -25h333v-76h-229q49 -43 79 -108t30 -140q0 -150 -98 -248t-244 -98q-96 0 -164 41q-38 -31 -59 -63.5t-21 -77.5 q0 -129 188 -129h211q166 0 245 -54t79 -171q0 -133 -130 -232.5t-335 -99.5q-186 0 -295 73.5t-109 198.5zM193 -193q0 -94 86.5 -150t240.5 -56q159 0 261 75t102 172q0 79 -57 114.5t-171 35.5h-211q-54 0 -122 16q-129 -87 -129 -207zM240 662q0 -121 75 -199t181 -78 q104 0 179 78t75 199q0 122 -73.5 197t-180.5 75q-108 0 -182 -74.5t-74 -197.5z" />
85
+ <glyph unicode="h" horiz-adv-x="1081" d="M188 0v1473h91v-644q87 87 166 133t173 46q152 0 224.5 -93t72.5 -284v-631h-90v618q0 159 -53 233.5t-172 74.5q-83 0 -153 -43t-168 -142v-741h-91z" />
86
+ <glyph unicode="i" horiz-adv-x="468" d="M154 1300q0 37 23.5 59.5t58.5 22.5t58 -22.5t23 -59.5q0 -35 -23.5 -57t-57.5 -22t-58 22t-24 57zM188 0v983h91v-983h-91z" />
87
+ <glyph unicode="j" horiz-adv-x="468" d="M-68 -444l23 73q63 -20 102 -20q77 0 104 54.5t27 160.5v1159h93v-1165q0 -145 -54.5 -216t-167.5 -71q-62 0 -127 25zM154 1300q0 37 24 59.5t58 22.5q35 0 59 -22.5t24 -59.5q0 -35 -24 -57t-59 -22q-33 0 -57.5 22.5t-24.5 56.5z" />
91
88
  <glyph unicode="k" horiz-adv-x="950" d="M188 0v1473h91v-1086h4l485 596h104l-319 -389l373 -594h-101l-325 526l-221 -258v-268h-91z" />
92
- <glyph unicode="l" horiz-adv-x="485" d="M188 131v1342h91v-1354q0 -33 12 -48.5t31 -15.5h13t23 4l17 -73q-14 -4 -28.5 -7.5t-37.5 -3.5q-121 0 -121 156z" />
93
- <glyph unicode="m" horiz-adv-x="1662" d="M188 0v983h78l8 -152h7q66 76 146.5 126.5t162.5 50.5q119 0 182.5 -54.5t89.5 -146.5q86 92 167 146.5t167 54.5q295 0 295 -377v-631h-92v618q0 158 -53.5 233t-165.5 75q-133 0 -295 -185v-741h-90v618q0 158 -53.5 233t-168.5 75q-133 0 -294 -185v-741h-91z" />
94
- <glyph unicode="n" horiz-adv-x="1089" d="M188 0v983h78l8 -152h7q76 76 155.5 126.5t181.5 50.5q154 0 225.5 -92.5t71.5 -284.5v-631h-90v618q0 158 -52 233t-173 75q-88 0 -159.5 -46t-161.5 -139v-741h-91z" />
95
- <glyph unicode="o" horiz-adv-x="1095" d="M106 489q0 123 36 220.5t96.5 163t140.5 100.5t168 35t169 -35t141.5 -100.5t96 -163t35.5 -220.5t-35.5 -218t-96 -160.5t-141.5 -100.5t-169 -35t-168 35t-140.5 100.5t-96.5 160.5t-36 218zM201 489q0 -96 26.5 -176t72.5 -137t109.5 -89t137.5 -32t138.5 32t110.5 89 t72.5 137t26.5 176q0 98 -26.5 178.5t-72.5 138.5t-110.5 90t-138.5 32t-137.5 -32t-109.5 -90t-72.5 -138.5t-26.5 -178.5z" />
96
- <glyph unicode="p" horiz-adv-x="1114" d="M188 -444v1427h78l8 -123h7q72 57 156.5 102.5t176.5 45.5q197 0 295.5 -136.5t98.5 -365.5q0 -125 -35 -223.5t-95.5 -167t-139.5 -104.5t-165 -36q-70 0 -143.5 32t-150.5 89v-182v-358h-91zM279 182q86 -70 159.5 -98.5t130.5 -28.5q74 0 137.5 33t108.5 92.5 t70.5 142.5t25.5 183q0 90 -17 168t-54 134t-96.5 88t-143.5 32q-74 0 -152.5 -42t-168.5 -120v-584z" />
97
- <glyph unicode="q" horiz-adv-x="1099" d="M106 489q0 119 35 215.5t95.5 164t139.5 103.5t167 36q90 0 156.5 -31t136.5 -84h4l10 90h76v-1427h-90v378l4 191q-66 -59 -147 -104.5t-179 -45.5q-186 0 -297 132t-111 382zM203 489q0 -98 21.5 -178t62.5 -136t101.5 -88t137.5 -32q82 0 157 42t153 120v584 q-78 70 -146.5 98.5t-140.5 28.5q-74 0 -137.5 -34t-109.5 -92.5t-72.5 -139.5t-26.5 -173z" />
98
- <glyph unicode="r" horiz-adv-x="649" d="M188 0v983h78l8 -182h7q49 92 119.5 149.5t158.5 57.5q29 0 51.5 -5t46.5 -16l-20 -82q-25 10 -43.5 13.5t-46.5 3.5q-66 0 -138.5 -56.5t-129.5 -195.5v-670h-91z" />
99
- <glyph unicode="s" horiz-adv-x="829" d="M66 111l53 67q63 -53 135 -89t178 -36q117 0 175.5 58.5t58.5 136.5q0 45 -21.5 79.5t-56.5 59.5t-77 43.5t-85 34.5q-55 20 -111.5 42.5t-101.5 54.5t-72.5 76t-27.5 107q0 53 20.5 101.5t61.5 84.5t99 56.5t136 20.5t152.5 -29t128.5 -74l-49 -63q-49 37 -104.5 62.5 t-131.5 25.5q-57 0 -98 -15.5t-69 -40t-41 -57.5t-13 -65q0 -43 19.5 -73t52 -52.5t74.5 -40t85 -33.5q57 -23 114.5 -45.5t103.5 -55t75 -80.5t29 -120q0 -55 -21.5 -105.5t-64.5 -88.5t-104.5 -60.5t-141.5 -22.5q-111 0 -203 40t-157 96z" />
100
- <glyph unicode="t" horiz-adv-x="638" d="M57 905v70l156 8l12 285h78v-285h285v-78h-285v-641q0 -47 7 -85t25.5 -65.5t50.5 -43t83 -15.5q29 0 62.5 9.5t60.5 21.5l24 -74q-43 -16 -86 -26.5t-73 -10.5q-72 0 -119 21.5t-76 60.5t-40 94.5t-11 120.5v633h-154z" />
101
- <glyph unicode="u" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -158 52.5 -233t170.5 -75q88 0 160 48.5t158 152.5v725h90v-983h-76l-10 164h-4q-72 -86 -152 -137.5t-182 -51.5q-154 0 -225.5 92.5t-71.5 284.5z" />
102
- <glyph unicode="v" horiz-adv-x="888" d="M25 983h98l221 -616q23 -72 49.5 -143.5t48.5 -139.5h9q25 68 50 139.5t50 143.5l221 616h92l-364 -983h-107z" />
103
- <glyph unicode="w" horiz-adv-x="1402" d="M49 983h98l177 -637q18 -68 34.5 -132t32.5 -130h8q16 66 35 130.5t37 131.5l178 637h109l178 -637q18 -68 36.5 -132t37.5 -130h8q16 66 34.5 130.5t34.5 131.5l175 637h92l-283 -983h-119l-172 610q-23 72 -38 140.5t-37 140.5h-9q-16 -72 -35.5 -142.5t-42.5 -142.5 l-169 -606h-109z" />
104
- <glyph unicode="x" horiz-adv-x="833" d="M29 0l333 514l-307 469h101l159 -250q25 -41 50.5 -81t54.5 -81h8q27 41 50.5 81t49.5 81l154 250h94l-305 -477l334 -506h-100l-175 268q-29 47 -57.5 92.5t-58.5 88.5h-8q-29 -43 -56.5 -88.5t-56.5 -92.5l-168 -268h-96z" />
105
- <glyph unicode="y" horiz-adv-x="892" d="M25 983h98l237 -618q23 -61 50.5 -135t56.5 -140h8q23 66 46.5 139.5t43.5 135.5l211 618h92l-389 -1106q-20 -61 -50 -119.5t-70 -104.5t-92 -74t-117 -28q-55 0 -101 21l21 80q16 -6 36.5 -11.5t43.5 -5.5q92 0 153.5 74t97.5 187l27 86z" />
89
+ <glyph unicode="l" horiz-adv-x="485" d="M188 131v1342h91v-1354q0 -31 12 -47.5t31 -16.5q16 0 36 4l17 -73q-33 -11 -66 -11q-121 0 -121 156z" />
90
+ <glyph unicode="m" horiz-adv-x="1662" d="M188 0v983h78l8 -152h7q70 80 150.5 128.5t158.5 48.5q214 0 272 -201q185 201 334 201q295 0 295 -377v-631h-92v618q0 157 -53.5 232.5t-165.5 75.5q-131 0 -295 -185v-741h-90v618q0 157 -54 232.5t-168 75.5q-130 0 -294 -185v-741h-91z" />
91
+ <glyph unicode="n" horiz-adv-x="1089" d="M188 0v983h78l8 -152h7q86 86 165 131.5t172 45.5q152 0 224.5 -93t72.5 -284v-631h-90v618q0 159 -53 233.5t-172 74.5q-83 0 -153 -43t-168 -142v-741h-91z" />
92
+ <glyph unicode="o" horiz-adv-x="1095" d="M106 489q0 120 35.5 219.5t96.5 164t140.5 100t168.5 35.5q90 0 169.5 -35t140.5 -100t96.5 -164.5t35.5 -219.5q0 -119 -35.5 -217.5t-96.5 -162.5t-140.5 -99t-169.5 -35q-89 0 -168.5 35t-140.5 99t-96.5 162.5t-35.5 217.5zM201 489q0 -192 98 -313t248 -121 q151 0 249.5 121t98.5 313q0 193 -98.5 316t-249.5 123q-150 0 -248 -122.5t-98 -316.5z" />
93
+ <glyph unicode="p" horiz-adv-x="1114" d="M188 -444v1427h78l8 -123h7q187 148 333 148q192 0 293 -134t101 -368q0 -122 -35.5 -223.5t-95.5 -168t-138.5 -103t-165.5 -36.5q-132 0 -294 121v-540h-91zM279 182q156 -127 290 -127q150 0 246 126t96 325q0 93 -17.5 168t-53.5 133t-97 89.5t-143 31.5 q-136 0 -321 -162v-584z" />
94
+ <glyph unicode="q" horiz-adv-x="1114" d="M106 489q0 116 35.5 214.5t95.5 164.5t139.5 103t166.5 37q84 0 151 -28t142 -87h4l10 90h76v-1427h-90v378l4 195q-161 -154 -326 -154q-189 0 -298.5 134.5t-109.5 379.5zM203 489q0 -199 84.5 -316.5t238.5 -117.5q148 0 310 162v584q-77 68 -145 97.5t-142 29.5 q-147 0 -246.5 -126.5t-99.5 -312.5z" />
95
+ <glyph unicode="r" horiz-adv-x="649" d="M188 0v983h78l8 -182h7q52 96 123 151.5t155 55.5q55 0 98 -21l-20 -82q-47 17 -90 17q-72 0 -143 -61t-125 -191v-670h-91z" />
96
+ <glyph unicode="s" horiz-adv-x="829" d="M66 111l53 67q73 -61 144.5 -93t168.5 -32q111 0 172.5 56t61.5 139q0 44 -20 79t-59.5 61t-73.5 42t-87 35q-42 15 -65.5 23.5t-61.5 25.5t-60 31t-49 36t-41.5 44.5t-25 53.5t-10.5 66q0 112 84.5 187.5t232.5 75.5q75 0 150 -28.5t131 -74.5l-49 -63q-57 42 -112 65 t-124 23q-107 0 -164 -52t-57 -126q0 -33 14 -60.5t32.5 -45.5t54 -37t60 -29t70.5 -27l24 -9q137 -50 191 -88q107 -75 107 -204q0 -116 -89.5 -196.5t-242.5 -80.5q-198 0 -360 136z" />
97
+ <glyph unicode="t" horiz-adv-x="638" d="M57 905v70l156 8l12 285h78v-285h285v-78h-285v-641q0 -103 35.5 -156t130.5 -53q55 0 123 31l24 -74q-105 -37 -159 -37q-135 0 -190.5 77t-55.5 220v633h-154z" />
98
+ <glyph unicode="u" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284z" />
99
+ <glyph unicode="v" horiz-adv-x="888" d="M25 983h98l221 -616q18 -55 55 -160.5t43 -122.5h9q15 42 100 283l221 616h92l-364 -983h-107z" />
100
+ <glyph unicode="w" horiz-adv-x="1402" d="M49 983h98l177 -637q41 -148 67 -262h8q12 47 72 262l178 637h109l178 -637q19 -68 74 -262h8q8 29 32 120t37 142l175 637h92l-283 -983h-119l-172 610q-15 48 -38 141t-37 140h-9q-42 -177 -78 -285l-169 -606h-109z" />
101
+ <glyph unicode="x" horiz-adv-x="833" d="M29 0l333 514l-307 469h101l159 -250q67 -107 105 -162h8q18 27 50.5 81.5t49.5 80.5l154 250h94l-305 -477l334 -506h-100l-175 268q-76 126 -116 181h-8q-22 -32 -60.5 -96t-52.5 -85l-168 -268h-96z" />
102
+ <glyph unicode="y" horiz-adv-x="892" d="M25 983h98l237 -618q82 -217 107 -275h8q18 51 53 159.5t37 115.5l211 618h92l-389 -1106q-108 -326 -329 -326q-54 0 -101 21l21 80q42 -17 80 -17q86 0 149 70.5t102 190.5l27 86z" />
106
103
  <glyph unicode="z" horiz-adv-x="827" d="M55 0v49l582 856h-518v78h635v-47l-580 -856h600v-80h-719z" />
107
- <glyph unicode="{" horiz-adv-x="571" d="M72 537v65q53 0 88 14.5t54 37t26.5 51t7.5 59.5q0 111 -8.5 210t-8.5 214q0 78 14.5 128t43 79.5t70.5 42t100 12.5h69v-59h-63q-94 0 -126 -51.5t-32 -159.5q0 -100 6 -191.5t6 -202.5q0 -92 -21.5 -143t-82.5 -70v-8q61 -18 82.5 -71.5t21.5 -141.5q0 -111 -6 -202 t-6 -191q0 -109 32 -160t126 -51h63v-59h-69q-57 0 -99.5 12t-71 42t-43 80t-14.5 128q0 115 8.5 214t8.5 206q0 31 -7.5 61.5t-26.5 53t-54 37t-88 14.5z" />
104
+ <glyph unicode="{" horiz-adv-x="571" d="M72 537v65q176 0 176 162q0 72 -8.5 209.5t-8.5 214.5q0 149 54 205.5t174 56.5h69v-59h-63q-90 0 -124 -49.5t-34 -161.5q0 -65 6 -192t6 -202q0 -95 -22.5 -145t-81.5 -68v-8q59 -18 81.5 -69t22.5 -144q0 -75 -6 -201.5t-6 -191.5q0 -112 34 -161.5t124 -49.5h63v-59 h-69q-120 0 -174 56.5t-54 205.5q0 77 8.5 214t8.5 206q0 166 -176 166z" />
108
105
  <glyph unicode="|" horiz-adv-x="462" d="M195 -512v2048h73v-2048h-73z" />
109
- <glyph unicode="}" horiz-adv-x="571" d="M43 -252h63q94 0 126 51t32 160q0 100 -6 191.5t-6 201.5q0 88 22.5 141.5t81.5 71.5v8q-59 18 -81.5 69.5t-22.5 143.5q0 111 6 202t6 192q0 109 -31.5 160t-126.5 51h-63v59h70q57 0 99 -12.5t70.5 -42t43 -79.5t14.5 -128q0 -115 -8 -214.5t-8 -209.5q0 -31 7 -59.5 t26.5 -51t54 -37t88.5 -14.5v-65q-53 0 -88 -14.5t-54.5 -37t-26.5 -53.5t-7 -61q0 -106 8 -205.5t8 -214.5q0 -78 -14.5 -128t-43 -80t-70.5 -42t-99 -12h-70v59z" />
110
- <glyph unicode="~" d="M82 637q45 86 105.5 128t119.5 42t107.5 -28.5t92.5 -63.5t85 -63.5t86 -28.5q47 0 86 28.5t76 100.5l57 -41q-43 -84 -103.5 -125t-119.5 -41t-107.5 28.5t-92.5 63.5t-85 63.5t-86 28.5q-47 0 -86 -28.5t-76 -100.5z" />
111
- <glyph unicode="&#xa1;" horiz-adv-x="530" d="M178 918q0 41 26.5 65.5t61.5 24.5t60.5 -24.5t25.5 -65.5q0 -47 -25.5 -72t-60.5 -25t-61.5 24.5t-26.5 72.5zM219 -244l12 860h68l12 -860l2 -145h-94v145z" />
112
- <glyph unicode="&#xa2;" d="M127 637q0 106 30.5 189t85 143.5t126 95.5t153.5 43v227h70v-223q98 -4 163.5 -40t112.5 -83l-49 -57q-47 41 -102 68.5t-125 31.5v-788q76 4 139.5 34.5t112.5 75.5l47 -59q-59 -55 -134 -91t-165 -40v-221h-70v223q-86 8 -158.5 43t-125 95.5t-82 144t-29.5 188.5z M219 637q0 -160 81 -264.5t222 -124.5v780q-66 -10 -122 -43t-96 -83t-62.5 -117.5t-22.5 -147.5z" />
113
- <glyph unicode="&#xa3;" d="M111 600v68l135 6h49q-23 78 -44.5 154.5t-21.5 156.5q0 162 93.5 255t255.5 93q106 0 176.5 -43t117.5 -102l-59 -55q-43 51 -98.5 85.5t-136.5 34.5q-63 0 -111.5 -20.5t-80.5 -57t-48 -86t-16 -104.5q0 -82 21.5 -156.5t43.5 -154.5h338v-74h-322q8 -35 12.5 -70.5 t4.5 -76.5q0 -127 -39 -211t-109 -152v-8h605v-82h-760v55q115 66 166 172.5t51 225.5q0 39 -5 75.5t-14 71.5h-204z" />
114
- <glyph unicode="&#xa4;" d="M61 291l136 137q-37 49 -57.5 110.5t-20.5 133.5q0 74 20.5 137t57.5 113l-136 139l56 57l135 -141q47 43 109.5 66.5t127.5 23.5q66 0 128.5 -23.5t109.5 -66.5l137 141l54 -57l-136 -139q37 -49 57.5 -113t20.5 -137q0 -72 -20.5 -133.5t-55.5 -110.5l134 -137l-54 -58 l-137 140q-47 -45 -109.5 -68.5t-128.5 -23.5q-135 0 -237 92l-135 -140zM209 672q0 -70 22.5 -128.5t60.5 -99.5t89 -64.5t108 -23.5t108.5 23.5t89.5 64.5t60.5 99.5t22.5 128.5t-22.5 129t-60.5 101t-89 65.5t-109 23.5q-57 0 -108 -23.5t-89 -65.5t-60.5 -101 t-22.5 -129z" />
115
- <glyph unicode="&#xa5;" d="M61 1309h99l192 -396l66 -136t69 -144h9q39 76 70.5 144.5t66.5 135.5l192 396h95l-357 -688h316v-68h-344v-145h344v-70h-344v-338h-93v338h-340v70h340v145h-340v68h312z" />
106
+ <glyph unicode="}" horiz-adv-x="571" d="M43 -252h63q90 0 124 49.5t34 161.5q0 65 -6 191.5t-6 201.5q0 92 23 143.5t81 69.5v8q-58 18 -81 68.5t-23 144.5q0 75 6 202t6 192q0 112 -34 161.5t-124 49.5h-63v59h70q120 0 173.5 -56.5t53.5 -205.5q0 -77 -8 -214.5t-8 -209.5q0 -162 176 -162v-65 q-176 0 -176 -166q0 -69 8 -206t8 -214q0 -149 -53.5 -205.5t-173.5 -56.5h-70v59z" />
107
+ <glyph unicode="~" d="M82 637q43 83 103 126.5t122 43.5q44 0 87 -19t78 -46t68.5 -54t69 -46t68.5 -19q96 0 162 129l57 -41q-41 -81 -101 -123.5t-122 -42.5q-44 0 -87 19t-78 46t-68.5 54t-69 46t-68.5 19q-96 0 -162 -129z" />
108
+ <glyph unicode="&#xa1;" horiz-adv-x="530" d="M178 918q0 40 26.5 65t61.5 25t60.5 -25t25.5 -65q0 -44 -25.5 -70.5t-60.5 -26.5q-36 0 -62 26.5t-26 70.5zM219 -244l12 860h68l12 -860l2 -145h-94v145z" />
109
+ <glyph unicode="&#xa2;" d="M127 637q0 204 111.5 328.5t283.5 142.5v227h70v-223q154 -5 276 -123l-49 -57q-111 100 -227 100v-788q135 5 252 110l47 -59q-136 -126 -299 -131v-221h-70v223q-178 18 -286.5 141.5t-108.5 329.5zM219 637q0 -160 81.5 -264.5t221.5 -124.5v780q-135 -22 -219 -127.5 t-84 -263.5z" />
110
+ <glyph unicode="&#xa3;" d="M111 600v68l135 6h49q-4 16 -17 59.5t-19 65.5t-14.5 58t-12 67t-3.5 61q0 161 94 254.5t255 93.5q181 0 294 -145l-59 -55q-48 57 -103.5 88.5t-131.5 31.5q-122 0 -189 -75.5t-67 -192.5q0 -38 7 -83t13.5 -70.5t23 -83t21.5 -74.5h338v-74h-322q17 -80 17 -147 q0 -122 -37 -207t-111 -156v-8h605v-82h-760v55q109 62 163 167.5t54 230.5q0 58 -19 147h-204z" />
111
+ <glyph unicode="&#xa4;" d="M63 291l134 137q-78 105 -78 244q0 145 78 250l-134 139l54 57l135 -141q99 90 237 90q139 0 238 -90l137 141l54 -57l-136 -139q78 -105 78 -250q0 -137 -76 -244l134 -137l-54 -58l-137 140q-98 -92 -238 -92q-134 0 -237 92l-135 -140zM209 672q0 -137 82 -226.5 t198 -89.5q118 0 199.5 89.5t81.5 226.5q0 139 -81.5 229t-199.5 90q-116 0 -198 -90.5t-82 -228.5z" />
112
+ <glyph unicode="&#xa5;" d="M61 1309h99l192 -396q86 -180 135 -280h9q24 47 68 140t69 140l192 396h95l-357 -688h316v-68h-344v-145h344v-70h-344v-338h-93v338h-340v70h340v145h-340v68h312z" />
116
113
  <glyph unicode="&#xa6;" horiz-adv-x="462" d="M195 451h73v-963h-73v963zM195 571v965h73v-965h-73z" />
117
- <glyph unicode="&#xa7;" d="M102 721q0 98 52.5 162.5t130.5 105.5q-31 31 -49.5 72t-18.5 94q0 43 16.5 86t51 77t86 55.5t123.5 21.5q86 0 157.5 -31t128.5 -78l-49 -63q-49 41 -103.5 67.5t-131.5 26.5q-51 0 -88 -13.5t-59.5 -35t-34 -50t-11.5 -57.5q0 -68 43 -109.5t106.5 -75.5t138.5 -63.5 t138.5 -71.5t106.5 -103.5t43 -155.5q0 -102 -50.5 -161t-128.5 -102q33 -33 51.5 -74.5t18.5 -97.5q0 -55 -23.5 -102t-63.5 -81t-93 -52t-113 -18q-106 0 -188 35.5t-142 93.5l62 57q53 -49 113.5 -80t154.5 -31t149.5 51.5t55.5 122.5q0 70 -43 114t-107.5 77 t-139.5 62.5t-139.5 70.5t-107.5 100.5t-43 153.5zM188 727q0 -80 46.5 -130t115 -86t146 -66.5t143.5 -73.5q74 35 114 78t40 126q0 82 -46.5 134.5t-115 89.5t-146 68.5t-141.5 72.5q-70 -41 -113 -88t-43 -125z" />
118
- <glyph unicode="&#xa8;" horiz-adv-x="1095" d="M311 1300q0 31 20.5 52.5t53.5 21.5t54.5 -21.5t21.5 -52.5q0 -33 -21.5 -54t-54.5 -21t-53.5 21.5t-20.5 53.5zM633 1300q0 31 21.5 52.5t54.5 21.5t53.5 -21.5t20.5 -52.5q0 -33 -20.5 -54t-53.5 -21t-54.5 21.5t-21.5 53.5z" />
119
- <glyph unicode="&#xa9;" horiz-adv-x="1517" d="M104 659q0 154 52.5 279t142.5 213t209 136t252 48q131 0 249.5 -48t209 -136t142.5 -213t52 -279q0 -156 -52 -281.5t-142.5 -214.5t-209 -138.5t-249.5 -49.5q-133 0 -252 49.5t-209 138.5t-142.5 214.5t-52.5 281.5zM176 659q0 -139 47 -253.5t127 -195.5t185.5 -126 t224.5 -45q117 0 222 45t185 126t127 195.5t47 253.5q0 137 -47 251t-127 195t-185 125t-222 44q-119 0 -224.5 -44t-185.5 -125t-127 -195t-47 -251zM412 659q0 88 30.5 160t80.5 121t117 75.5t140 26.5q82 0 139.5 -31.5t106.5 -80.5l-47 -53q-47 45 -93 67.5t-108 22.5 q-123 0 -200.5 -84t-77.5 -224q0 -154 74.5 -241.5t199.5 -87.5q74 0 131.5 29.5t104.5 72.5l41 -57q-55 -49 -119 -85t-162 -36q-74 0 -138.5 27.5t-113.5 80t-77.5 127t-28.5 170.5z" />
120
- <glyph unicode="&#xaa;" horiz-adv-x="690" d="M86 721q0 109 100.5 165t321.5 77q0 39 -7 73.5t-23.5 60t-43 40t-69.5 14.5q-61 0 -123 -25.5t-97 -50.5l-30 55q41 29 109.5 59t148.5 30q119 0 165 -71t46 -187v-410h-62l-12 80h-8q-43 -37 -97 -66.5t-120 -29.5q-88 0 -143.5 49t-55.5 137zM166 727q0 -66 37 -96.5 t100 -30.5q96 0 205 100v209q-190 -20 -266 -66t-76 -116z" />
121
- <glyph unicode="&#xab;" horiz-adv-x="819" d="M88 477v78l281 330l51 -43l-252 -326l252 -330l-51 -39zM377 477v78l281 330l51 -43l-252 -326l252 -330l-51 -39z" />
114
+ <glyph unicode="&#xa7;" d="M102 721q0 169 183 268q-68 68 -68 166q0 96 72.5 168t204.5 72q150 0 286 -109l-49 -63q-57 46 -111 70t-124 24q-96 0 -144.5 -45.5t-48.5 -110.5q0 -54 32 -96t82.5 -70t112 -54.5t123 -56.5t112 -67.5t82.5 -97.5t32 -137q0 -94 -46 -154.5t-133 -108.5 q70 -70 70 -172q0 -108 -86 -180.5t-207 -72.5q-194 0 -330 129l62 57q58 -55 119.5 -83t148.5 -28q91 0 148 50.5t57 123.5q0 50 -25 90t-65.5 65.5t-93 51.5t-106.5 46.5t-106.5 51t-93 65t-65.5 88t-25 120.5zM188 727q0 -61 29 -107.5t81.5 -79t106.5 -56.5t122.5 -54.5 t111.5 -58.5q80 37 117 81.5t37 122.5q0 53 -22 96.5t-56 72t-83.5 55.5t-95 46t-100.5 45t-92 50q-78 -45 -117 -93t-39 -120z" />
115
+ <glyph unicode="&#xa8;" horiz-adv-x="1095" d="M289 1300q0 32 22 54t54 22t53.5 -22t21.5 -54t-21.5 -53.5t-53.5 -21.5t-54 21.5t-22 53.5zM653 1300q0 32 22 54t54 22t54 -22t22 -54t-22 -53.5t-54 -21.5t-54 21.5t-22 53.5z" />
116
+ <glyph unicode="&#xa9;" horiz-adv-x="1517" d="M104 659q0 151 53 279t142.5 214t209 134.5t251.5 48.5t250.5 -48.5t208 -134.5t142 -214t52.5 -279t-52.5 -280.5t-142 -217t-208 -137t-250.5 -49.5t-251.5 49.5t-209 137t-142.5 217t-53 280.5zM176 659q0 -136 47 -253t126.5 -196.5t186 -125t224.5 -45.5 q117 0 223 45.5t185 125t126 196.5t47 253q0 135 -47 251t-126 195t-185 124t-223 45q-118 0 -224.5 -45t-186 -124t-126.5 -195t-47 -251zM412 659q0 173 108 278t260 105q76 0 133.5 -28.5t112.5 -83.5l-47 -53q-50 47 -96 68.5t-105 21.5q-122 0 -200 -85.5t-78 -222.5 q0 -152 74.5 -240.5t199.5 -88.5q123 0 236 102l41 -57q-66 -59 -129 -90t-152 -31q-152 0 -255 109.5t-103 295.5z" />
117
+ <glyph unicode="&#xaa;" horiz-adv-x="690" d="M86 1001q0 106 100.5 163t321.5 79q-2 88 -33.5 138.5t-109.5 50.5q-56 0 -117 -23.5t-103 -52.5l-30 55q130 86 258 86q113 0 162 -66t49 -190v-410h-62l-12 80h-8q-112 -96 -217 -96q-90 0 -144.5 49t-54.5 137zM166 1008q0 -127 137 -127q99 0 205 100v209 q-184 -21 -263 -65.5t-79 -116.5z" />
118
+ <glyph unicode="&#xab;" horiz-adv-x="817" d="M88 477v78l281 330l51 -43l-252 -326l252 -330l-51 -39zM377 477v78l280 330l52 -43l-252 -326l252 -330l-52 -39z" />
122
119
  <glyph unicode="&#xac;" d="M70 637v78h841v-490h-84v412h-757z" />
123
120
  <glyph unicode="&#xad;" horiz-adv-x="612" d="M82 471v80h450v-80h-450z" />
124
- <glyph unicode="&#xae;" horiz-adv-x="821" d="M37 1059q0 90 29.5 163.5t81 126t119 81t143.5 28.5t144.5 -28.5t118.5 -81t79.5 -126t29.5 -163.5t-29.5 -163t-79.5 -124t-118.5 -79.5t-144.5 -28.5t-143.5 28.5t-119 79.5t-81 124t-29.5 163zM100 1059q0 -74 25 -135.5t65.5 -105.5t97 -69.5t122.5 -25.5 q63 0 120.5 25.5t98.5 69.5t65.5 105.5t24.5 135.5t-24.5 136t-65.5 108.5t-98.5 72t-120.5 25.5q-66 0 -122.5 -25.5t-97 -72t-65.5 -108.5t-25 -136zM270 856v422h142q31 0 58.5 -6t50 -21.5t35.5 -40t13 -63.5t-23.5 -72t-58.5 -43l101 -176h-76l-80 156h-96v-156h-66z M336 1067h59q47 0 76 17.5t29 58.5q0 35 -21.5 56.5t-77.5 21.5h-65v-154z" />
125
- <glyph unicode="&#xaf;" horiz-adv-x="1095" d="M316 1241v74h462v-74h-462z" />
126
- <glyph unicode="&#xb0;" horiz-adv-x="636" d="M86 1157q0 57 19.5 102.5t52 77t74.5 48t87 16.5t87.5 -16.5t75 -48t52 -77t19.5 -102.5t-19.5 -102t-52 -76t-75 -47.5t-87.5 -16.5t-87 16.5t-74.5 47.5t-52 76t-19.5 102zM156 1157q0 -76 45.5 -126t117.5 -50t118 50t46 126q0 78 -46 129t-118 51t-117.5 -51 t-45.5 -129z" />
121
+ <glyph unicode="&#xae;" horiz-adv-x="821" d="M37 1059q0 176 108.5 287.5t264.5 111.5q157 0 264.5 -111t107.5 -288q0 -175 -107.5 -285t-264.5 -110q-156 0 -264.5 110t-108.5 285zM100 1059q0 -145 90 -240.5t220 -95.5t219.5 95.5t89.5 240.5q0 147 -89.5 244.5t-219.5 97.5t-220 -98t-90 -244zM270 856v422h142 q69 0 113 -30t44 -101q0 -38 -23.5 -71.5t-58.5 -43.5l101 -176h-76l-80 156h-96v-156h-66zM336 1067h59q48 0 76.5 19t28.5 57q0 78 -99 78h-65v-154z" />
122
+ <glyph unicode="&#xaf;" horiz-adv-x="1095" d="M295 1241v74h504v-74h-504z" />
123
+ <glyph unicode="&#xb0;" horiz-adv-x="636" d="M86 1157q0 111 68.5 177.5t164.5 66.5t165 -66.5t69 -177.5q0 -109 -69.5 -175.5t-164.5 -66.5t-164 66t-69 176zM156 1157q0 -76 46 -126t117 -50q72 0 118 50t46 126q0 78 -46 129t-118 51t-117.5 -51t-45.5 -129z" />
127
124
  <glyph unicode="&#xb1;" d="M70 0v76h841v-76h-841zM70 635v76h379v415h83v-415h379v-76h-379v-412h-83v412h-379z" />
128
- <glyph unicode="&#xb2;" horiz-adv-x="741" d="M96 1575q37 61 103.5 105t142.5 44q111 0 179.5 -62.5t68.5 -189.5q0 -63 -25.5 -120.5t-70.5 -117t-110 -124t-140 -139.5h393v-70h-522v51q102 94 177 168t123 133.5t71.5 109.5t23.5 101q0 88 -48 139.5t-128 51.5q-55 0 -103.5 -37t-83.5 -90z" />
129
- <glyph unicode="&#xb3;" horiz-adv-x="741" d="M82 1030l59 45q37 -59 95.5 -95t128.5 -36q76 0 131 44t55 126q0 78 -76 121t-207 43v57q121 0 185.5 51.5t64.5 120.5q0 66 -46 108t-124 42q-47 0 -95 -30t-87 -77l-51 45q43 55 103.5 92t137.5 37q100 0 171 -55t71 -156q0 -76 -44 -126t-110 -76q37 -6 70 -22.5 t59.5 -41t42 -58.5t15.5 -77q0 -55 -20.5 -99t-57.5 -74t-86 -46.5t-105 -16.5q-94 0 -166.5 46.5t-113.5 107.5z" />
130
- <glyph unicode="&#xb4;" horiz-adv-x="1095" d="M432 1171l189 279h106l-217 -279h-78z" />
131
- <glyph unicode="&#xb5;" horiz-adv-x="1099" d="M188 -410v1393h91v-618q0 -158 53 -233t172 -75q88 0 158.5 48.5t158.5 152.5v725h90v-983h-77l-9 164h-6q-70 -86 -146.5 -136.5t-174.5 -50.5q-76 0 -129.5 23t-94.5 90l5 -184v-316h-91z" />
132
- <glyph unicode="&#xb6;" horiz-adv-x="1054" d="M86 924q0 115 35 195.5t98.5 132t151.5 75t192 23.5h90v-850h-57q-113 0 -207 23.5t-161.5 73.5t-104.5 131t-37 196zM764 -164v1514h94v-1514h-94z" />
133
- <glyph unicode="&#xb7;" horiz-adv-x="448" d="M137 660q0 45 26.5 69.5t61.5 24.5t60.5 -24.5t25.5 -69.5q0 -43 -25.5 -68t-60.5 -25t-61.5 25t-26.5 68z" />
134
- <glyph unicode="&#xb8;" horiz-adv-x="1095" d="M413 -365q86 12 138.5 37t52.5 68q0 47 -39 69.5t-98 38.5l82 156h71l-59 -115q49 -16 86 -47.5t37 -93.5q0 -41 -21.5 -70.5t-57.5 -50t-82 -34t-95 -19.5z" />
135
- <glyph unicode="&#xb9;" horiz-adv-x="741" d="M193 1565v55q59 12 101 31.5t77 48.5h67v-799h-78v664h-167z" />
136
- <glyph unicode="&#xba;" horiz-adv-x="737" d="M68 877q0 82 23.5 145t63.5 107.5t95 67t117 22.5q61 0 116.5 -22.5t95 -67t63.5 -108t24 -144.5q0 -80 -24 -143.5t-63.5 -107.5t-95 -67.5t-116.5 -23.5t-116.5 23.5t-95.5 67.5t-63.5 107.5t-23.5 143.5zM147 877q0 -123 61 -199t159 -76t158.5 76t60.5 199 t-60.5 198.5t-158.5 75.5t-159 -76t-61 -198z" />
137
- <glyph unicode="&#xbb;" horiz-adv-x="819" d="M111 186l249 330l-249 326l49 43l282 -330v-78l-282 -330zM400 186l249 330l-249 326l49 43l282 -330v-78l-282 -330z" />
138
- <glyph unicode="&#xbc;" horiz-adv-x="1564" d="M152 1215v55q59 12 101 31.5t77 48.5h67v-799h-78v664h-167zM362 -25l754 1399h78l-752 -1399h-80zM917 233v43l363 523h73v-500h119v-66h-119v-233h-73v233h-363zM1016 299h264v178l8 213h-8l-115 -170z" />
139
- <glyph unicode="&#xbd;" horiz-adv-x="1609" d="M152 1215v55q59 12 101 31.5t77 48.5h67v-799h-78v664h-167zM315 -25l754 1399h78l-752 -1399h-80zM964 674q37 61 103.5 105t142.5 44q111 0 179.5 -62.5t68.5 -189.5q0 -63 -25.5 -120.5t-70.5 -117t-110 -124t-140 -139.5h393v-70h-522v51q102 94 177 168t123 133.5 t71.5 109.5t23.5 101q0 88 -48 139.5t-128 51.5q-55 0 -103.5 -37t-83.5 -90z" />
140
- <glyph unicode="&#xbe;" horiz-adv-x="1603" d="M82 680l59 45q37 -59 95.5 -95t128.5 -36q76 0 131 44t55 126q0 78 -76 121t-207 43v57q121 0 185.5 51.5t64.5 120.5q0 66 -46 108t-124 42q-47 0 -95 -30t-87 -77l-51 45q43 55 103.5 92t137.5 37q100 0 171 -55t71 -156q0 -76 -44 -126t-110 -76q37 -6 70 -22.5 t59.5 -41t42 -58.5t15.5 -77q0 -55 -20.5 -99t-57.5 -74t-86 -46.5t-105 -16.5q-94 0 -166.5 46.5t-113.5 107.5zM459 -25l754 1399h78l-752 -1399h-80zM956 233v43l363 523h73v-500h119v-66h-119v-233h-73v233h-363zM1055 299h264v178l8 213h-8l-115 -170z" />
141
- <glyph unicode="&#xbf;" horiz-adv-x="823" d="M104 -100q0 70 26 128t62.5 112.5t78.5 105.5t76 107.5t52.5 121t8.5 141.5h84q10 -84 -7.5 -152.5t-50.5 -126.5t-74 -109.5t-77.5 -101.5t-61 -103.5t-24.5 -116.5q0 -47 13 -90t42 -77t73 -53.5t105 -19.5q74 0 142.5 35t119.5 96l58 -51q-59 -66 -140.5 -113 t-185.5 -47q-76 0 -135.5 23.5t-100.5 65.5t-62.5 99.5t-21.5 125.5zM356 918q0 41 26 65.5t60 24.5q35 0 60.5 -24.5t25.5 -65.5q0 -47 -25.5 -72t-60.5 -25t-60.5 24.5t-25.5 72.5z" />
142
- <glyph unicode="&#xc0;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM299 543h479l-86 252q-41 121 -77.5 231.5t-71.5 235.5h-8q-35 -125 -72 -236t-78 -231zM308 1669h118l189 -217h-82z" />
143
- <glyph unicode="&#xc1;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM299 543h479l-86 252q-41 121 -77.5 231.5t-71.5 235.5h-8q-35 -125 -72 -236t-78 -231zM463 1452l189 217h118l-225 -217h-82z" />
144
- <glyph unicode="&#xc2;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM299 543h479l-86 252q-41 121 -77.5 231.5t-71.5 235.5h-8q-35 -125 -72 -236t-78 -231zM299 1452l197 217h86l197 -217h-82l-154 147h-8l-154 -147h-82z" />
145
- <glyph unicode="&#xc3;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM273 1466q2 35 12 69t28.5 60.5t44 43t60.5 16.5q41 0 72 -18.5t58.5 -40t55 -39t58.5 -17.5q33 0 55.5 31t28.5 84h59q-2 -35 -12 -68t-28.5 -60.5t-44 -44t-60.5 -16.5q-41 0 -73 18.5t-59.5 40t-54 40 t-57.5 18.5q-33 0 -55.5 -31.5t-28.5 -85.5h-59zM299 543h479l-86 252q-41 121 -77.5 231.5t-71.5 235.5h-8q-35 -125 -72 -236t-78 -231z" />
146
- <glyph unicode="&#xc4;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM299 543h479l-86 252q-41 121 -77.5 231.5t-71.5 235.5h-8q-35 -125 -72 -236t-78 -231zM303 1559q0 35 20.5 55t53.5 20t54.5 -20.5t21.5 -54.5q0 -35 -21.5 -54.5t-54.5 -19.5t-53.5 19.5t-20.5 54.5z M625 1559q0 35 21.5 55t54.5 20t53.5 -20.5t20.5 -54.5q0 -35 -20.5 -54.5t-53.5 -19.5t-54.5 19.5t-21.5 54.5z" />
147
- <glyph unicode="&#xc5;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM299 543h479l-86 252q-41 121 -77.5 231.5t-71.5 235.5h-8q-35 -125 -72 -236t-78 -231zM371 1602q0 76 48 121.5t120 45.5q70 0 119 -46t49 -121q0 -78 -49 -123t-119 -45q-72 0 -120 45t-48 123z M433 1602q0 -57 30.5 -86t75.5 -29q41 0 72.5 28.5t31.5 86.5q0 53 -31.5 83.5t-72.5 30.5q-45 0 -75.5 -30.5t-30.5 -83.5z" />
148
- <glyph unicode="&#xc6;" horiz-adv-x="1656" d="M43 0l748 1350h749v-82h-604v-510h502v-82h-502v-594h625v-82h-719v444h-455l-244 -444h-100zM430 522h412v746h-8q-63 -115 -126 -232.5t-128 -240.5z" />
149
- <glyph unicode="&#xc7;" horiz-adv-x="1155" d="M113 678q0 160 42 289t117.5 220t182 139t235.5 48q117 0 207 -49t143 -113l-57 -61q-53 61 -127 99t-166 38q-111 0 -200 -43t-151.5 -122t-95 -191.5t-32.5 -253.5t32.5 -255t94 -193.5t148.5 -124t196 -44.5q104 0 185 41t155 125l57 -59q-78 -90 -174 -141.5 t-227 -51.5q-125 0 -229.5 49.5t-179 140.5t-115.5 221t-41 292zM542 -365q86 12 138.5 37t52.5 68q0 47 -39 69.5t-98 38.5l82 156h71l-59 -115q49 -16 86 -47.5t37 -93.5q0 -41 -21.5 -70.5t-57.5 -50t-82 -34t-95 -19.5z" />
150
- <glyph unicode="&#xc8;" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM347 1669h118l189 -217h-82z" />
151
- <glyph unicode="&#xc9;" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM502 1452l189 217h118l-225 -217h-82z" />
152
- <glyph unicode="&#xca;" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM338 1452l197 217h86l197 -217h-82l-154 147h-8l-154 -147h-82z" />
153
- <glyph unicode="&#xcb;" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM342 1559q0 35 20.5 55t53.5 20t54.5 -20.5t21.5 -54.5q0 -35 -21.5 -54.5t-54.5 -19.5t-53.5 19.5t-20.5 54.5zM664 1559q0 35 21.5 55t54.5 20t53.5 -20.5t20.5 -54.5q0 -35 -20.5 -54.5t-53.5 -19.5 t-54.5 19.5t-21.5 54.5z" />
154
- <glyph unicode="&#xcc;" horiz-adv-x="491" d="M15 1669h118l189 -217h-82zM199 0v1350h94v-1350h-94z" />
155
- <glyph unicode="&#xcd;" horiz-adv-x="491" d="M170 1452l189 217h118l-225 -217h-82zM199 0v1350h94v-1350h-94z" />
156
- <glyph unicode="&#xce;" horiz-adv-x="491" d="M6 1452l197 217h86l197 -217h-82l-154 147h-8l-154 -147h-82zM199 0v1350h94v-1350h-94z" />
157
- <glyph unicode="&#xcf;" horiz-adv-x="491" d="M10 1559q0 35 20.5 55t53.5 20t54.5 -20.5t21.5 -54.5q0 -35 -21.5 -54.5t-54.5 -19.5t-53.5 19.5t-20.5 54.5zM199 0v1350h94v-1350h-94zM332 1559q0 35 21.5 55t54.5 20t53.5 -20.5t20.5 -54.5q0 -35 -20.5 -54.5t-53.5 -19.5t-54.5 19.5t-21.5 54.5z" />
158
- <glyph unicode="&#xd0;" horiz-adv-x="1280" d="M76 680v63l166 5v602h311q156 0 271.5 -47.5t192.5 -135.5t113.5 -210.5t36.5 -276.5t-36.5 -280t-112.5 -215t-191.5 -137t-271.5 -48h-313v680h-166zM336 80h209q137 0 235.5 44t163 124t95 189.5t30.5 242.5q0 131 -30.5 239.5t-95 186.5t-163 121t-235.5 43h-209 v-522h334v-68h-334v-600z" />
159
- <glyph unicode="&#xd1;" horiz-adv-x="1302" d="M199 0v1350h98l569 -953l152 -268h8q-4 98 -8 196.5t-4 196.5v828h90v-1350h-98l-570 952l-151 269h-9q4 -98 8.5 -191.5t4.5 -191.5v-838h-90zM396 1466q2 35 12 69t28.5 60.5t44 43t60.5 16.5q41 0 72 -18.5t58.5 -40t55 -39t58.5 -17.5q33 0 55.5 31t28.5 84h59 q-2 -35 -12 -68t-28.5 -60.5t-44 -44t-60.5 -16.5q-41 0 -73 18.5t-59.5 40t-54 40t-57.5 18.5q-33 0 -55.5 -31.5t-28.5 -85.5h-59z" />
160
- <glyph unicode="&#xd2;" horiz-adv-x="1335" d="M113 680q0 160 41 288t114.5 219t176 139t223.5 48q123 0 225 -48t176 -139t115 -219t41 -288t-41 -290t-115 -222t-176 -142.5t-225 -50.5q-121 0 -223.5 50.5t-176 142.5t-114.5 222t-41 290zM211 680q0 -141 32.5 -255t92 -194.5t145 -125t187.5 -44.5t186 44.5 t144.5 125t93 194.5t32.5 255q0 139 -32.5 251.5t-93 191.5t-144.5 122t-186 43t-187.5 -43t-145 -122t-92 -191.5t-32.5 -251.5zM437 1669h118l189 -217h-82z" />
161
- <glyph unicode="&#xd3;" horiz-adv-x="1335" d="M113 680q0 160 41 288t114.5 219t176 139t223.5 48q123 0 225 -48t176 -139t115 -219t41 -288t-41 -290t-115 -222t-176 -142.5t-225 -50.5q-121 0 -223.5 50.5t-176 142.5t-114.5 222t-41 290zM211 680q0 -141 32.5 -255t92 -194.5t145 -125t187.5 -44.5t186 44.5 t144.5 125t93 194.5t32.5 255q0 139 -32.5 251.5t-93 191.5t-144.5 122t-186 43t-187.5 -43t-145 -122t-92 -191.5t-32.5 -251.5zM592 1452l189 217h118l-225 -217h-82z" />
162
- <glyph unicode="&#xd4;" horiz-adv-x="1335" d="M113 680q0 160 41 288t114.5 219t176 139t223.5 48q123 0 225 -48t176 -139t115 -219t41 -288t-41 -290t-115 -222t-176 -142.5t-225 -50.5q-121 0 -223.5 50.5t-176 142.5t-114.5 222t-41 290zM211 680q0 -141 32.5 -255t92 -194.5t145 -125t187.5 -44.5t186 44.5 t144.5 125t93 194.5t32.5 255q0 139 -32.5 251.5t-93 191.5t-144.5 122t-186 43t-187.5 -43t-145 -122t-92 -191.5t-32.5 -251.5zM428 1452l197 217h86l197 -217h-82l-154 147h-8l-154 -147h-82z" />
163
- <glyph unicode="&#xd5;" horiz-adv-x="1335" d="M113 680q0 160 41 288t114.5 219t176 139t223.5 48q123 0 225 -48t176 -139t115 -219t41 -288t-41 -290t-115 -222t-176 -142.5t-225 -50.5q-121 0 -223.5 50.5t-176 142.5t-114.5 222t-41 290zM211 680q0 -141 32.5 -255t92 -194.5t145 -125t187.5 -44.5t186 44.5 t144.5 125t93 194.5t32.5 255q0 139 -32.5 251.5t-93 191.5t-144.5 122t-186 43t-187.5 -43t-145 -122t-92 -191.5t-32.5 -251.5zM402 1466q2 35 12 69t28.5 60.5t44 43t60.5 16.5q41 0 72 -18.5t58.5 -40t55 -39t58.5 -17.5q33 0 55.5 31t28.5 84h59q-2 -35 -12 -68 t-28.5 -60.5t-44 -44t-60.5 -16.5q-41 0 -73 18.5t-59.5 40t-54 40t-57.5 18.5q-33 0 -55.5 -31.5t-28.5 -85.5h-59z" />
164
- <glyph unicode="&#xd6;" horiz-adv-x="1335" d="M113 680q0 160 41 288t114.5 219t176 139t223.5 48q123 0 225 -48t176 -139t115 -219t41 -288t-41 -290t-115 -222t-176 -142.5t-225 -50.5q-121 0 -223.5 50.5t-176 142.5t-114.5 222t-41 290zM211 680q0 -141 32.5 -255t92 -194.5t145 -125t187.5 -44.5t186 44.5 t144.5 125t93 194.5t32.5 255q0 139 -32.5 251.5t-93 191.5t-144.5 122t-186 43t-187.5 -43t-145 -122t-92 -191.5t-32.5 -251.5zM432 1559q0 35 20.5 55t53.5 20t54.5 -20.5t21.5 -54.5q0 -35 -21.5 -54.5t-54.5 -19.5t-53.5 19.5t-20.5 54.5zM754 1559q0 35 21.5 55 t54.5 20t53.5 -20.5t20.5 -54.5q0 -35 -20.5 -54.5t-53.5 -19.5t-54.5 19.5t-21.5 54.5z" />
165
- <glyph unicode="&#xd7;" d="M104 334l332 342l-332 342l56 57l329 -346l332 346l53 -57l-329 -342l329 -342l-53 -58l-332 345l-329 -345z" />
166
- <glyph unicode="&#xd8;" horiz-adv-x="1335" d="M115 -2l143 192q-66 92 -102.5 215t-36.5 275q0 160 41 288t114.5 219t176 139t225.5 48q106 0 196.5 -37t161.5 -106l125 166l60 -45l-134 -178q70 -90 108 -215t38 -279q0 -160 -41 -290t-115 -222t-176 -142.5t-223 -50.5q-111 0 -205 40t-166 116l-133 -178zM219 680 q0 -125 25.5 -228.5t72.5 -181.5l662 887q-59 63 -135 97t-168 34q-102 0 -187.5 -43t-144.5 -122t-92 -191.5t-33 -251.5zM362 207q59 -70 138.5 -108t175.5 -38q102 0 186 44.5t144.5 125t93.5 194.5t33 255q0 129 -28 233.5t-79 182.5z" />
167
- <glyph unicode="&#xd9;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -135 29.5 -224t78.5 -143.5t113.5 -77t136.5 -22.5q74 0 140.5 22.5t116.5 77t81 143.5t31 224v822h88v-832q0 -158 -39 -262t-102.5 -166.5t-145.5 -88.5t-170 -26q-86 0 -168 26t-145.5 88.5t-101 166.5t-37.5 262zM418 1669h118l189 -217h-82z " />
168
- <glyph unicode="&#xda;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -135 29.5 -224t78.5 -143.5t113.5 -77t136.5 -22.5q74 0 140.5 22.5t116.5 77t81 143.5t31 224v822h88v-832q0 -158 -39 -262t-102.5 -166.5t-145.5 -88.5t-170 -26q-86 0 -168 26t-145.5 88.5t-101 166.5t-37.5 262zM573 1452l189 217h118 l-225 -217h-82z" />
169
- <glyph unicode="&#xdb;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -135 29.5 -224t78.5 -143.5t113.5 -77t136.5 -22.5q74 0 140.5 22.5t116.5 77t81 143.5t31 224v822h88v-832q0 -158 -39 -262t-102.5 -166.5t-145.5 -88.5t-170 -26q-86 0 -168 26t-145.5 88.5t-101 166.5t-37.5 262zM409 1452l197 217h86 l197 -217h-82l-154 147h-8l-154 -147h-82z" />
170
- <glyph unicode="&#xdc;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -135 29.5 -224t78.5 -143.5t113.5 -77t136.5 -22.5q74 0 140.5 22.5t116.5 77t81 143.5t31 224v822h88v-832q0 -158 -39 -262t-102.5 -166.5t-145.5 -88.5t-170 -26q-86 0 -168 26t-145.5 88.5t-101 166.5t-37.5 262zM413 1559q0 35 20.5 55 t53.5 20t54.5 -20.5t21.5 -54.5q0 -35 -21.5 -54.5t-54.5 -19.5t-53.5 19.5t-20.5 54.5zM735 1559q0 35 21.5 55t54.5 20t53.5 -20.5t20.5 -54.5q0 -35 -20.5 -54.5t-53.5 -19.5t-54.5 19.5t-21.5 54.5z" />
171
- <glyph unicode="&#xdd;" horiz-adv-x="915" d="M6 1350h100l205 -422q35 -74 69 -145.5t75 -145.5h8q39 74 75.5 145.5t69.5 145.5l205 422h96l-405 -803v-547h-94v547zM381 1452l189 217h118l-225 -217h-82z" />
172
- <glyph unicode="&#xde;" horiz-adv-x="1153" d="M199 0v1350h94v-240h274q113 0 202 -20.5t151.5 -64.5t95.5 -115.5t33 -176.5q0 -199 -127 -296t-355 -97h-274v-340h-94zM293 420h252q207 0 307 73.5t100 239.5q0 168 -101 232.5t-306 64.5h-252v-610z" />
173
- <glyph unicode="&#xdf;" horiz-adv-x="1110" d="M188 0v1090q0 190 95.5 296.5t255.5 106.5q68 0 120 -21.5t88.5 -58.5t56 -87t19.5 -107q0 -80 -31.5 -136.5t-69.5 -104.5t-69.5 -96t-31.5 -110q0 -59 31.5 -96t79.5 -64.5t103.5 -54.5t103.5 -63.5t80 -92t32 -141.5q0 -61 -22.5 -112.5t-62.5 -90.5t-94.5 -60.5 t-119.5 -21.5q-80 0 -150 29t-129 76l45 67q59 -47 113.5 -70.5t120.5 -23.5q51 0 90 17.5t64.5 45t38.5 64.5t13 76q0 72 -31.5 117t-78.5 76.5t-103.5 57t-103.5 58.5t-79 79t-32 120t32 127t69 101t68.5 98.5t31.5 119.5q0 90 -48 147.5t-146 57.5q-117 0 -187.5 -86 t-70.5 -270v-1059h-91z" />
174
- <glyph unicode="&#xe0;" horiz-adv-x="1021" d="M133 246q0 162 153.5 248t481.5 122q2 55 -7 111.5t-35 100.5t-72 72t-117 28q-100 0 -182.5 -39t-131.5 -76l-41 68q27 18 65 40.5t84 41t101 32t115 13.5q88 0 147.5 -30t96 -81t52 -119.5t15.5 -148.5v-629h-76l-10 127h-4q-76 -59 -163 -105.5t-185 -46.5 q-59 0 -110.5 16.5t-91.5 49.5t-62.5 84t-22.5 121zM227 250q0 -106 61.5 -151.5t145.5 -45.5q86 0 164 41t170 119v334q-152 -18 -255 -45t-166.5 -64t-91.5 -84t-28 -104zM357 1450h106l189 -279h-78z" />
175
- <glyph unicode="&#xe1;" horiz-adv-x="1021" d="M133 246q0 162 153.5 248t481.5 122q2 55 -7 111.5t-35 100.5t-72 72t-117 28q-100 0 -182.5 -39t-131.5 -76l-41 68q27 18 65 40.5t84 41t101 32t115 13.5q88 0 147.5 -30t96 -81t52 -119.5t15.5 -148.5v-629h-76l-10 127h-4q-76 -59 -163 -105.5t-185 -46.5 q-59 0 -110.5 16.5t-91.5 49.5t-62.5 84t-22.5 121zM227 250q0 -106 61.5 -151.5t145.5 -45.5q86 0 164 41t170 119v334q-152 -18 -255 -45t-166.5 -64t-91.5 -84t-28 -104zM422 1171l189 279h106l-217 -279h-78z" />
176
- <glyph unicode="&#xe2;" horiz-adv-x="1021" d="M133 246q0 162 153.5 248t481.5 122q2 55 -7 111.5t-35 100.5t-72 72t-117 28q-100 0 -182.5 -39t-131.5 -76l-41 68q27 18 65 40.5t84 41t101 32t115 13.5q88 0 147.5 -30t96 -81t52 -119.5t15.5 -148.5v-629h-76l-10 127h-4q-76 -59 -163 -105.5t-185 -46.5 q-59 0 -110.5 16.5t-91.5 49.5t-62.5 84t-22.5 121zM227 250q0 -106 61.5 -151.5t145.5 -45.5q86 0 164 41t170 119v334q-152 -18 -255 -45t-166.5 -64t-91.5 -84t-28 -104zM304 1171l194 279h78l194 -279h-75l-154 203h-8l-154 -203h-75z" />
177
- <glyph unicode="&#xe3;" horiz-adv-x="1021" d="M133 246q0 162 153.5 248t481.5 122q2 55 -7 111.5t-35 100.5t-72 72t-117 28q-100 0 -182.5 -39t-131.5 -76l-41 68q27 18 65 40.5t84 41t101 32t115 13.5q88 0 147.5 -30t96 -81t52 -119.5t15.5 -148.5v-629h-76l-10 127h-4q-76 -59 -163 -105.5t-185 -46.5 q-59 0 -110.5 16.5t-91.5 49.5t-62.5 84t-22.5 121zM227 250q0 -106 61.5 -151.5t145.5 -45.5q86 0 164 41t170 119v334q-152 -18 -255 -45t-166.5 -64t-91.5 -84t-28 -104zM283 1190q2 33 10 65.5t25.5 58t43 42t62.5 16.5t68 -17.5t57.5 -39t51 -38.5t51.5 -17 q33 0 51 29.5t27 82.5h61q-2 -33 -10 -65.5t-25.5 -58t-43 -42t-62.5 -16.5t-68 17.5t-56.5 39t-51 39t-52.5 17.5q-61 0 -78 -113h-61z" />
178
- <glyph unicode="&#xe4;" horiz-adv-x="1021" d="M133 246q0 162 153.5 248t481.5 122q2 55 -7 111.5t-35 100.5t-72 72t-117 28q-100 0 -182.5 -39t-131.5 -76l-41 68q27 18 65 40.5t84 41t101 32t115 13.5q88 0 147.5 -30t96 -81t52 -119.5t15.5 -148.5v-629h-76l-10 127h-4q-76 -59 -163 -105.5t-185 -46.5 q-59 0 -110.5 16.5t-91.5 49.5t-62.5 84t-22.5 121zM227 250q0 -106 61.5 -151.5t145.5 -45.5q86 0 164 41t170 119v334q-152 -18 -255 -45t-166.5 -64t-91.5 -84t-28 -104zM301 1300q0 31 20.5 52.5t53.5 21.5t54.5 -21.5t21.5 -52.5q0 -33 -21.5 -54t-54.5 -21t-53.5 21.5 t-20.5 53.5zM623 1300q0 31 21.5 52.5t54.5 21.5t53.5 -21.5t20.5 -52.5q0 -33 -20.5 -54t-53.5 -21t-54.5 21.5t-21.5 53.5z" />
179
- <glyph unicode="&#xe5;" horiz-adv-x="1021" d="M133 246q0 162 153.5 248t481.5 122q2 55 -7 111.5t-35 100.5t-72 72t-117 28q-100 0 -182.5 -39t-131.5 -76l-41 68q27 18 65 40.5t84 41t101 32t115 13.5q88 0 147.5 -30t96 -81t52 -119.5t15.5 -148.5v-629h-76l-10 127h-4q-76 -59 -163 -105.5t-185 -46.5 q-59 0 -110.5 16.5t-91.5 49.5t-62.5 84t-22.5 121zM227 250q0 -106 61.5 -151.5t145.5 -45.5q86 0 164 41t170 119v334q-152 -18 -255 -45t-166.5 -64t-91.5 -84t-28 -104zM369 1280q0 80 48 129t120 49t120 -49t48 -129q0 -78 -48 -127t-120 -49t-120 49t-48 127z M431 1280q0 -55 30.5 -89t75.5 -34t75.5 34t30.5 89q0 57 -30.5 91t-75.5 34t-75.5 -34t-30.5 -91z" />
180
- <glyph unicode="&#xe6;" horiz-adv-x="1605" d="M133 244q0 164 153.5 250t471.5 122q0 55 -8.5 111.5t-34 100.5t-71.5 72t-118 28q-92 0 -173 -39t-130 -76l-41 68q27 18 64 40.5t83 41t98 32t108 13.5q121 0 191.5 -67t94.5 -179q53 113 142.5 179.5t199.5 66.5q174 0 269.5 -119t95.5 -336v-36.5t-4 -37.5h-680 q0 -92 26.5 -170t73.5 -134t111.5 -88t138.5 -32q80 0 140.5 23.5t115.5 64.5l39 -71q-29 -18 -59.5 -35t-67.5 -31t-80 -22.5t-96 -8.5q-66 0 -119 17.5t-96 46.5t-77 64.5t-60 74.5q-98 -94 -210 -148.5t-204 -54.5q-59 0 -110.5 16.5t-91.5 49.5t-62.5 83t-22.5 120z M227 250q0 -106 61.5 -151.5t145.5 -45.5q39 0 86 12.5t95.5 37t95.5 60.5t90 81q-23 45 -33 111.5t-10 136.5l-2 55q-143 -18 -243.5 -45t-164 -64t-92.5 -84t-29 -104zM844 549h600q0 190 -75 285.5t-208 95.5q-61 0 -115.5 -28t-96.5 -78t-69.5 -120.5t-35.5 -154.5z" />
181
- <glyph unicode="&#xe7;" horiz-adv-x="919" d="M106 489q0 123 37 220.5t98.5 163t142.5 100.5t171 35q102 0 171 -37t118 -84l-53 -64q-47 45 -104.5 75t-129.5 30q-76 0 -140.5 -32t-112.5 -90t-75.5 -138t-27.5 -179q0 -96 25.5 -176t71.5 -137t112.5 -89t146.5 -32q78 0 144.5 33t117.5 80l47 -62q-63 -57 -141 -94 t-172 -37q-96 0 -177 35t-141.5 100.5t-94.5 160.5t-34 218zM391 -365q86 12 138.5 37t52.5 68q0 47 -39 69.5t-98 38.5l82 156h71l-59 -115q49 -16 86 -47.5t37 -93.5q0 -41 -21.5 -70.5t-57.5 -50t-82 -34t-95 -19.5z" />
182
- <glyph unicode="&#xe8;" horiz-adv-x="989" d="M106 489q0 121 36 217.5t96.5 163t137.5 102.5t159 36q176 0 276 -119t100 -336v-36.5t-4 -37.5h-708q2 -92 28.5 -171t74.5 -135t115.5 -88t151.5 -32q80 0 144.5 23.5t120.5 64.5l36 -69q-59 -35 -129.5 -66t-179.5 -31q-94 0 -177 35t-144.5 101.5t-97.5 161.5 t-36 216zM199 549h626q0 190 -77.5 285.5t-210.5 95.5q-63 0 -121 -26.5t-104 -76t-75.5 -120t-37.5 -158.5zM355 1450h106l189 -279h-78z" />
183
- <glyph unicode="&#xe9;" horiz-adv-x="989" d="M106 489q0 121 36 217.5t96.5 163t137.5 102.5t159 36q176 0 276 -119t100 -336v-36.5t-4 -37.5h-708q2 -92 28.5 -171t74.5 -135t115.5 -88t151.5 -32q80 0 144.5 23.5t120.5 64.5l36 -69q-59 -35 -129.5 -66t-179.5 -31q-94 0 -177 35t-144.5 101.5t-97.5 161.5 t-36 216zM199 549h626q0 190 -77.5 285.5t-210.5 95.5q-63 0 -121 -26.5t-104 -76t-75.5 -120t-37.5 -158.5zM420 1171l189 279h106l-217 -279h-78z" />
184
- <glyph unicode="&#xea;" horiz-adv-x="989" d="M106 489q0 121 36 217.5t96.5 163t137.5 102.5t159 36q176 0 276 -119t100 -336v-36.5t-4 -37.5h-708q2 -92 28.5 -171t74.5 -135t115.5 -88t151.5 -32q80 0 144.5 23.5t120.5 64.5l36 -69q-59 -35 -129.5 -66t-179.5 -31q-94 0 -177 35t-144.5 101.5t-97.5 161.5 t-36 216zM199 549h626q0 190 -77.5 285.5t-210.5 95.5q-63 0 -121 -26.5t-104 -76t-75.5 -120t-37.5 -158.5zM302 1171l194 279h78l194 -279h-75l-154 203h-8l-154 -203h-75z" />
185
- <glyph unicode="&#xeb;" horiz-adv-x="989" d="M106 489q0 121 36 217.5t96.5 163t137.5 102.5t159 36q176 0 276 -119t100 -336v-36.5t-4 -37.5h-708q2 -92 28.5 -171t74.5 -135t115.5 -88t151.5 -32q80 0 144.5 23.5t120.5 64.5l36 -69q-59 -35 -129.5 -66t-179.5 -31q-94 0 -177 35t-144.5 101.5t-97.5 161.5 t-36 216zM199 549h626q0 190 -77.5 285.5t-210.5 95.5q-63 0 -121 -26.5t-104 -76t-75.5 -120t-37.5 -158.5zM299 1300q0 31 20.5 52.5t53.5 21.5t54.5 -21.5t21.5 -52.5q0 -33 -21.5 -54t-54.5 -21t-53.5 21.5t-20.5 53.5zM621 1300q0 31 21.5 52.5t54.5 21.5t53.5 -21.5 t20.5 -52.5q0 -33 -20.5 -54t-53.5 -21t-54.5 21.5t-21.5 53.5z" />
186
- <glyph unicode="&#xec;" horiz-adv-x="468" d="M53 1450h106l189 -279h-78zM188 0v983h91v-983h-91z" />
187
- <glyph unicode="&#xed;" horiz-adv-x="468" d="M118 1171l189 279h106l-217 -279h-78zM188 0v983h91v-983h-91z" />
188
- <glyph unicode="&#xee;" horiz-adv-x="468" d="M0 1171l194 279h78l194 -279h-75l-154 203h-8l-154 -203h-75zM188 0v983h91v-983h-91z" />
189
- <glyph unicode="&#xef;" horiz-adv-x="468" d="M-3 1300q0 31 20.5 52.5t53.5 21.5t54.5 -21.5t21.5 -52.5q0 -33 -21.5 -54t-54.5 -21t-53.5 21.5t-20.5 53.5zM188 0v983h91v-983h-91zM319 1300q0 31 21.5 52.5t54.5 21.5t53.5 -21.5t20.5 -52.5q0 -33 -20.5 -54t-53.5 -21t-54.5 21.5t-21.5 53.5z" />
190
- <glyph unicode="&#xf0;" horiz-adv-x="1095" d="M123 449q0 100 30.5 185t87 144.5t134.5 93t172 33.5q88 0 166 -39t137 -116q-29 152 -90.5 260t-147.5 194l-290 -151l-31 57l270 139q-57 49 -120.5 91t-131.5 81l45 62q76 -41 146.5 -88t136.5 -107l291 152l30 -56l-272 -141q61 -61 111.5 -136t87.5 -164 t57.5 -195.5t20.5 -231.5q0 -123 -31 -223t-85 -171t-131 -109t-169 -38q-82 0 -159 33t-135 93.5t-94 148.5t-36 199zM213 449q0 -86 26.5 -159t71.5 -125t106.5 -81t129.5 -29q84 0 144.5 36t100 97.5t59 145.5t19.5 180q0 66 -6 127q-39 57 -79 94t-78.5 57.5t-77.5 27.5 t-78 7q-84 0 -146.5 -30.5t-105.5 -82.5t-64.5 -121t-21.5 -144z" />
191
- <glyph unicode="&#xf1;" horiz-adv-x="1089" d="M188 0v983h78l8 -152h7q76 76 155.5 126.5t181.5 50.5q154 0 225.5 -92.5t71.5 -284.5v-631h-90v618q0 158 -52 233t-173 75q-88 0 -159.5 -46t-161.5 -139v-741h-91zM326 1190q2 33 10 65.5t25.5 58t43 42t62.5 16.5t68 -17.5t57.5 -39t51 -38.5t51.5 -17q33 0 51 29.5 t27 82.5h61q-2 -33 -10 -65.5t-25.5 -58t-43 -42t-62.5 -16.5t-68 17.5t-56.5 39t-51 39t-52.5 17.5q-61 0 -78 -113h-61z" />
192
- <glyph unicode="&#xf2;" horiz-adv-x="1095" d="M106 489q0 123 36 220.5t96.5 163t140.5 100.5t168 35t169 -35t141.5 -100.5t96 -163t35.5 -220.5t-35.5 -218t-96 -160.5t-141.5 -100.5t-169 -35t-168 35t-140.5 100.5t-96.5 160.5t-36 218zM201 489q0 -96 26.5 -176t72.5 -137t109.5 -89t137.5 -32t138.5 32t110.5 89 t72.5 137t26.5 176q0 98 -26.5 178.5t-72.5 138.5t-110.5 90t-138.5 32t-137.5 -32t-109.5 -90t-72.5 -138.5t-26.5 -178.5zM367 1450h106l189 -279h-78z" />
193
- <glyph unicode="&#xf3;" horiz-adv-x="1095" d="M106 489q0 123 36 220.5t96.5 163t140.5 100.5t168 35t169 -35t141.5 -100.5t96 -163t35.5 -220.5t-35.5 -218t-96 -160.5t-141.5 -100.5t-169 -35t-168 35t-140.5 100.5t-96.5 160.5t-36 218zM201 489q0 -96 26.5 -176t72.5 -137t109.5 -89t137.5 -32t138.5 32t110.5 89 t72.5 137t26.5 176q0 98 -26.5 178.5t-72.5 138.5t-110.5 90t-138.5 32t-137.5 -32t-109.5 -90t-72.5 -138.5t-26.5 -178.5zM432 1171l189 279h106l-217 -279h-78z" />
194
- <glyph unicode="&#xf4;" horiz-adv-x="1095" d="M106 489q0 123 36 220.5t96.5 163t140.5 100.5t168 35t169 -35t141.5 -100.5t96 -163t35.5 -220.5t-35.5 -218t-96 -160.5t-141.5 -100.5t-169 -35t-168 35t-140.5 100.5t-96.5 160.5t-36 218zM201 489q0 -96 26.5 -176t72.5 -137t109.5 -89t137.5 -32t138.5 32t110.5 89 t72.5 137t26.5 176q0 98 -26.5 178.5t-72.5 138.5t-110.5 90t-138.5 32t-137.5 -32t-109.5 -90t-72.5 -138.5t-26.5 -178.5zM314 1171l194 279h78l194 -279h-75l-154 203h-8l-154 -203h-75z" />
195
- <glyph unicode="&#xf5;" horiz-adv-x="1095" d="M106 489q0 123 36 220.5t96.5 163t140.5 100.5t168 35t169 -35t141.5 -100.5t96 -163t35.5 -220.5t-35.5 -218t-96 -160.5t-141.5 -100.5t-169 -35t-168 35t-140.5 100.5t-96.5 160.5t-36 218zM201 489q0 -96 26.5 -176t72.5 -137t109.5 -89t137.5 -32t138.5 32t110.5 89 t72.5 137t26.5 176q0 98 -26.5 178.5t-72.5 138.5t-110.5 90t-138.5 32t-137.5 -32t-109.5 -90t-72.5 -138.5t-26.5 -178.5zM293 1190q2 33 10 65.5t25.5 58t43 42t62.5 16.5t68 -17.5t57.5 -39t51 -38.5t51.5 -17q33 0 51 29.5t27 82.5h61q-2 -33 -10 -65.5t-25.5 -58 t-43 -42t-62.5 -16.5t-68 17.5t-56.5 39t-51 39t-52.5 17.5q-61 0 -78 -113h-61z" />
196
- <glyph unicode="&#xf6;" horiz-adv-x="1095" d="M106 489q0 123 36 220.5t96.5 163t140.5 100.5t168 35t169 -35t141.5 -100.5t96 -163t35.5 -220.5t-35.5 -218t-96 -160.5t-141.5 -100.5t-169 -35t-168 35t-140.5 100.5t-96.5 160.5t-36 218zM201 489q0 -96 26.5 -176t72.5 -137t109.5 -89t137.5 -32t138.5 32t110.5 89 t72.5 137t26.5 176q0 98 -26.5 178.5t-72.5 138.5t-110.5 90t-138.5 32t-137.5 -32t-109.5 -90t-72.5 -138.5t-26.5 -178.5zM311 1300q0 31 20.5 52.5t53.5 21.5t54.5 -21.5t21.5 -52.5q0 -33 -21.5 -54t-54.5 -21t-53.5 21.5t-20.5 53.5zM633 1300q0 31 21.5 52.5 t54.5 21.5t53.5 -21.5t20.5 -52.5q0 -33 -20.5 -54t-53.5 -21t-54.5 21.5t-21.5 53.5z" />
197
- <glyph unicode="&#xf7;" d="M70 637v78h841v-78h-841zM412 307q0 35 22.5 57.5t54.5 22.5q35 0 56.5 -22.5t21.5 -57.5q0 -39 -21.5 -61.5t-56.5 -22.5q-33 0 -55 22.5t-22 61.5zM412 1044q0 35 22.5 57.5t54.5 22.5q35 0 56.5 -22.5t21.5 -57.5q0 -39 -21.5 -61t-56.5 -22q-33 0 -55 22.5t-22 60.5z " />
198
- <glyph unicode="&#xf8;" horiz-adv-x="1095" d="M94 -2l119 143q-49 66 -78 152t-29 196q0 123 36 220.5t96.5 163t140.5 100.5t168 35q82 0 156.5 -29t134.5 -86l110 133l53 -43l-118 -141q49 -66 77.5 -154t28.5 -199q0 -123 -35.5 -218t-96 -160.5t-141.5 -100.5t-169 -35q-168 0 -289 115l-111 -135zM199 492 q0 -166 73 -281l510 614q-94 104 -235 105q-74 0 -138.5 -32t-110.5 -90t-72.5 -139t-26.5 -177zM313 156q96 -102 234 -103q74 0 138.5 32t111.5 89t73.5 137t26.5 176q0 168 -74 283z" />
199
- <glyph unicode="&#xf9;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -158 52.5 -233t170.5 -75q88 0 160 48.5t158 152.5v725h90v-983h-76l-10 164h-4q-72 -86 -152 -137.5t-182 -51.5q-154 0 -225.5 92.5t-71.5 284.5zM361 1450h106l189 -279h-78z" />
200
- <glyph unicode="&#xfa;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -158 52.5 -233t170.5 -75q88 0 160 48.5t158 152.5v725h90v-983h-76l-10 164h-4q-72 -86 -152 -137.5t-182 -51.5q-154 0 -225.5 92.5t-71.5 284.5zM426 1171l189 279h106l-217 -279h-78z" />
201
- <glyph unicode="&#xfb;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -158 52.5 -233t170.5 -75q88 0 160 48.5t158 152.5v725h90v-983h-76l-10 164h-4q-72 -86 -152 -137.5t-182 -51.5q-154 0 -225.5 92.5t-71.5 284.5zM308 1171l194 279h78l194 -279h-75l-154 203h-8l-154 -203h-75z" />
202
- <glyph unicode="&#xfc;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -158 52.5 -233t170.5 -75q88 0 160 48.5t158 152.5v725h90v-983h-76l-10 164h-4q-72 -86 -152 -137.5t-182 -51.5q-154 0 -225.5 92.5t-71.5 284.5zM305 1300q0 31 20.5 52.5t53.5 21.5t54.5 -21.5t21.5 -52.5q0 -33 -21.5 -54t-54.5 -21 t-53.5 21.5t-20.5 53.5zM627 1300q0 31 21.5 52.5t54.5 21.5t53.5 -21.5t20.5 -52.5q0 -33 -20.5 -54t-53.5 -21t-54.5 21.5t-21.5 53.5z" />
203
- <glyph unicode="&#xfd;" horiz-adv-x="892" d="M25 983h98l237 -618q23 -61 50.5 -135t56.5 -140h8q23 66 46.5 139.5t43.5 135.5l211 618h92l-389 -1106q-20 -61 -50 -119.5t-70 -104.5t-92 -74t-117 -28q-55 0 -101 21l21 80q16 -6 36.5 -11.5t43.5 -5.5q92 0 153.5 74t97.5 187l27 86zM354 1171l189 279h106 l-217 -279h-78z" />
204
- <glyph unicode="&#xfe;" horiz-adv-x="1114" d="M188 -444v1917h91v-424v-187q74 57 157.5 101.5t175.5 44.5q98 0 173 -36t124 -101.5t74 -157.5t25 -207q0 -125 -35 -223.5t-95.5 -167t-139.5 -104.5t-165 -36q-72 0 -144.5 31t-149.5 88v-180v-358h-91zM279 182q86 -70 159.5 -98.5t130.5 -28.5q74 0 137.5 33 t108.5 92.5t70.5 142.5t25.5 183q0 90 -17 168t-54 134t-96.5 88t-143.5 32q-74 0 -152.5 -42t-168.5 -120v-584z" />
205
- <glyph unicode="&#xff;" horiz-adv-x="892" d="M25 983h98l237 -618q23 -61 50.5 -135t56.5 -140h8q23 66 46.5 139.5t43.5 135.5l211 618h92l-389 -1106q-20 -61 -50 -119.5t-70 -104.5t-92 -74t-117 -28q-55 0 -101 21l21 80q16 -6 36.5 -11.5t43.5 -5.5q92 0 153.5 74t97.5 187l27 86zM233 1300q0 31 20.5 52.5 t53.5 21.5t54.5 -21.5t21.5 -52.5q0 -33 -21.5 -54t-54.5 -21t-53.5 21.5t-20.5 53.5zM555 1300q0 31 21.5 52.5t54.5 21.5t53.5 -21.5t20.5 -52.5q0 -33 -20.5 -54t-53.5 -21t-54.5 21.5t-21.5 53.5z" />
206
- <glyph unicode="&#x152;" horiz-adv-x="1705" d="M113 680q0 154 40 276.5t120.5 210.5t200.5 135.5t280 47.5h835v-82h-604v-510h502v-82h-502v-594h625v-82h-858q-160 0 -280 48t-199.5 137t-119.5 215t-40 280zM211 680q0 -133 32.5 -242.5t101.5 -189.5t172.5 -124t244.5 -44h129v1190h-129q-141 0 -244.5 -43 t-172.5 -120t-101.5 -186.5t-32.5 -240.5z" />
207
- <glyph unicode="&#x153;" horiz-adv-x="1736" d="M106 489q0 123 35 220.5t95.5 163t138.5 100.5t164 35q119 0 223 -73t158 -218q53 135 150 213t216 78q174 0 274.5 -119t100.5 -336q0 -37 -6 -74h-690q0 -92 27.5 -170t74.5 -134t112.5 -88t139.5 -32q80 0 143.5 23.5t118.5 64.5l39 -71q-59 -35 -130 -66t-181 -31 q-129 0 -231.5 78t-155.5 211q-57 -143 -155.5 -216t-227.5 -73q-86 0 -164 35t-138.5 100.5t-95.5 160.5t-35 218zM201 489q0 -96 25.5 -176t70.5 -137t107.5 -89t134.5 -32q74 0 136 32t106 89t70 137t26 176q0 98 -26 178.5t-70 138.5t-106.5 90t-135.5 32 q-72 0 -134.5 -32t-107.5 -90t-70.5 -138.5t-25.5 -178.5zM965 549h610q0 190 -79 285.5t-210 95.5q-61 0 -116.5 -28t-98.5 -78t-70.5 -120.5t-35.5 -154.5z" />
208
- <glyph unicode="&#x178;" horiz-adv-x="915" d="M6 1350h100l205 -422q35 -74 69 -145.5t75 -145.5h8q39 74 75.5 145.5t69.5 145.5l205 422h96l-405 -803v-547h-94v547zM221 1559q0 35 20.5 55t53.5 20t54.5 -20.5t21.5 -54.5q0 -35 -21.5 -54.5t-54.5 -19.5t-53.5 19.5t-20.5 54.5zM543 1559q0 35 21.5 55t54.5 20 t53.5 -20.5t20.5 -54.5q0 -35 -20.5 -54.5t-53.5 -19.5t-54.5 19.5t-21.5 54.5z" />
209
- <glyph unicode="&#x2c6;" horiz-adv-x="1095" d="M314 1171l194 279h78l194 -279h-75l-154 203h-8l-154 -203h-75z" />
210
- <glyph unicode="&#x2dc;" horiz-adv-x="1095" d="M293 1190q2 33 10 65.5t25.5 58t43 42t62.5 16.5t68 -17.5t57.5 -39t51 -38.5t51.5 -17q33 0 51 29.5t27 82.5h61q-2 -33 -10 -65.5t-25.5 -58t-43 -42t-62.5 -16.5t-68 17.5t-56.5 39t-51 39t-52.5 17.5q-61 0 -78 -113h-61z" />
211
- <glyph unicode="&#x2000;" horiz-adv-x="884" />
212
- <glyph unicode="&#x2001;" horiz-adv-x="1769" />
213
- <glyph unicode="&#x2002;" horiz-adv-x="884" />
214
- <glyph unicode="&#x2003;" horiz-adv-x="1769" />
215
- <glyph unicode="&#x2004;" horiz-adv-x="589" />
216
- <glyph unicode="&#x2005;" horiz-adv-x="442" />
217
- <glyph unicode="&#x2006;" horiz-adv-x="294" />
218
- <glyph unicode="&#x2007;" horiz-adv-x="294" />
219
- <glyph unicode="&#x2008;" horiz-adv-x="221" />
220
- <glyph unicode="&#x2009;" horiz-adv-x="353" />
221
- <glyph unicode="&#x200a;" horiz-adv-x="98" />
125
+ <glyph unicode="&#xb2;" horiz-adv-x="741" d="M96 1505q38 64 105.5 107t140.5 43q114 0 181 -64.5t67 -187.5q0 -58 -21.5 -113.5t-68 -115t-97 -113t-130.5 -132.5q-5 -4 -7.5 -6.5t-6.5 -7t-8 -8t-7 -6.5h393v-70h-522v52q227 210 311 313.5t84 198.5q0 87 -48 138.5t-128 51.5q-53 0 -102 -35.5t-85 -91.5z" />
126
+ <glyph unicode="&#xb3;" horiz-adv-x="741" d="M82 961l59 45q38 -60 97.5 -96t126.5 -36q79 0 132.5 45.5t53.5 124.5q0 77 -75.5 120.5t-207.5 43.5v58q116 0 183 50t67 122q0 67 -46.5 108t-123.5 41q-46 0 -94.5 -29t-87.5 -77l-51 45q99 129 241 129q103 0 172.5 -57t69.5 -154q0 -72 -42 -123.5t-112 -79.5 q78 -15 132.5 -67t54.5 -132q0 -107 -76.5 -171t-192.5 -64q-88 0 -161.5 43.5t-118.5 110.5z" />
127
+ <glyph unicode="&#xb4;" horiz-adv-x="1095" d="M438 1223l275 321l69 -59l-295 -309z" />
128
+ <glyph unicode="&#xb5;" horiz-adv-x="1112" d="M188 -369v1352h91v-618q0 -308 217 -308q43 0 77 8t74.5 30.5t82 69.5t83.5 120v698h90q-1 -97 -2.5 -271t-2.5 -315.5t-1 -265.5q0 -37 17 -56.5t44 -19.5q21 0 58 13l16 -74q-44 -19 -86 -19q-71 0 -100 48t-29 159h-6q-122 -205 -309 -205q-83 0 -139 26.5t-93 96.5 q0 -286 11 -469h-93z" />
129
+ <glyph unicode="&#xb6;" horiz-adv-x="1054" d="M86 924q0 220 127 323t350 103h90v-850h-57q-116 0 -207.5 24t-160 73.5t-105.5 132t-37 194.5zM764 -164v1514h94v-1514h-94z" />
130
+ <glyph unicode="&#xb7;" horiz-adv-x="448" d="M137 659q0 43 26.5 69t61.5 26t60.5 -26t25.5 -69q0 -41 -25.5 -66.5t-60.5 -25.5t-61.5 25.5t-26.5 66.5z" />
131
+ <glyph unicode="&#xb8;" horiz-adv-x="1095" d="M393 -387q129 9 180.5 34.5t51.5 73.5q0 44 -37.5 68.5t-122.5 36.5l84 178h72l-62 -137q72 -19 109 -51t37 -90q0 -157 -297 -175z" />
132
+ <glyph unicode="&#xb9;" horiz-adv-x="741" d="M193 1495v55q108 22 178 80h67v-799h-78v664h-167z" />
133
+ <glyph unicode="&#xba;" horiz-adv-x="737" d="M68 1157q0 158 85 249t214 91t214 -91t85 -249q0 -157 -85 -249.5t-214 -92.5t-214 92.5t-85 249.5zM147 1157q0 -122 61 -198t159 -76q99 0 159 76t60 198q0 124 -60 199.5t-159 75.5q-98 0 -159 -76t-61 -199z" />
134
+ <glyph unicode="&#xbb;" horiz-adv-x="817" d="M111 186l249 330l-249 326l49 43l282 -330v-78l-282 -330zM399 186l250 330l-250 326l50 43l282 -330v-78l-282 -330z" />
135
+ <glyph unicode="&#xbc;" horiz-adv-x="1564" d="M150 1214v56q108 22 178 80h67v-799h-78v663h-167zM362 -25l754 1399h78l-752 -1399h-80zM918 233v43l362 523h74v-500h119v-66h-119v-233h-74v233h-362zM1016 299h264v178l8 213h-8l-115 -170z" />
136
+ <glyph unicode="&#xbd;" horiz-adv-x="1609" d="M150 1214v56q108 22 178 80h67v-799h-78v663h-167zM315 -25l754 1399h78l-752 -1399h-80zM965 674q38 64 105 106.5t140 42.5q114 0 181 -64.5t67 -187.5q0 -58 -21 -113t-67.5 -114t-96 -111.5t-129.5 -131.5q-21 -20 -32 -31h393v-70h-522v51q227 210 311 313.5 t84 198.5q0 87 -48 139t-128 52q-53 0 -101.5 -35.5t-84.5 -91.5z" />
137
+ <glyph unicode="&#xbe;" horiz-adv-x="1603" d="M82 680l59 45q38 -60 97 -95.5t127 -35.5q79 0 132.5 45.5t53.5 124.5q0 77 -75.5 120.5t-207.5 43.5v57q116 0 183 50t67 122q0 67 -46.5 108.5t-123.5 41.5q-46 0 -94.5 -29t-87.5 -78l-51 45q99 129 241 129q103 0 172.5 -57t69.5 -154q0 -72 -42 -123t-112 -79 q78 -15 132.5 -67t54.5 -132q0 -108 -76.5 -172t-192.5 -64q-88 0 -161.5 43.5t-118.5 110.5zM459 -25l753 1399h78l-751 -1399h-80zM956 233v43l363 523h74v-500h118v-66h-118v-233h-74v233h-363zM1055 299h264v178l8 213h-8l-115 -170z" />
138
+ <glyph unicode="&#xbf;" horiz-adv-x="823" d="M104 -100q0 76 35 150t83.5 134.5t95 123.5t74 142.5t16.5 165.5h84q9 -69 -2.5 -132.5t-37 -113.5t-58.5 -96.5t-67.5 -90t-63.5 -85.5t-47.5 -91.5t-18.5 -100.5q0 -102 59 -171t174 -69q73 0 142 34.5t120 96.5l58 -51q-145 -160 -328 -160q-147 0 -232.5 88.5 t-85.5 225.5zM356 918q0 40 25.5 65t60.5 25t60.5 -25t25.5 -65q0 -44 -25.5 -70.5t-60.5 -26.5t-60.5 26.5t-25.5 70.5z" />
139
+ <glyph unicode="&#xc0;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM299 543h479l-86 252q-95 277 -149 467h-8q-49 -174 -150 -467zM309 1677l58 68l256 -252l-41 -47z" />
140
+ <glyph unicode="&#xc1;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM299 543h479l-86 252q-95 277 -149 467h-8q-49 -174 -150 -467zM455 1493l256 252l57 -68l-272 -231z" />
141
+ <glyph unicode="&#xc2;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM262 1487l232 231h90l231 -231l-41 -39l-231 201h-8l-232 -201zM299 543h479l-86 252q-95 277 -149 467h-8q-49 -174 -150 -467z" />
142
+ <glyph unicode="&#xc3;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM201 1483q5 99 52 162t128 63q44 0 82 -16.5t65.5 -40.5t52.5 -48t54.5 -40.5t60.5 -16.5q44 0 74 42.5t39 115.5l68 -6q-5 -99 -53 -163.5t-128 -64.5q-44 0 -82 16.5t-65.5 40.5t-52.5 48t-54.5 40.5 t-60.5 16.5q-45 0 -76 -42t-37 -113zM299 543h479l-86 252q-95 277 -149 467h-8q-49 -174 -150 -467z" />
143
+ <glyph unicode="&#xc4;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM264 1559q0 35 20.5 55t53.5 20t54.5 -20.5t21.5 -54.5q0 -33 -21.5 -53.5t-54.5 -20.5t-53.5 20.5t-20.5 53.5zM299 543h479l-86 252q-95 277 -149 467h-8q-49 -174 -150 -467zM664 1559q0 35 21 55t54 20 t53.5 -20t20.5 -55q0 -33 -20.5 -53.5t-53.5 -20.5t-54 20.5t-21 53.5z" />
144
+ <glyph unicode="&#xc5;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM299 543h479l-86 252q-95 277 -149 467h-8q-49 -174 -150 -467zM358 1608q0 80 51.5 128t129.5 48q76 0 128 -48.5t52 -127.5q0 -76 -52.5 -125t-127.5 -49q-78 0 -129.5 48.5t-51.5 125.5zM420 1608 q0 -58 33.5 -89.5t85.5 -31.5q48 0 81 32t33 89q0 56 -33 89.5t-81 33.5q-51 0 -85 -33t-34 -90z" />
145
+ <glyph unicode="&#xc6;" horiz-adv-x="1656" d="M43 0l748 1350h749v-82h-604v-510h502v-82h-502v-594h625v-82h-719v444h-455l-244 -444h-100zM430 522h412v746h-8q-74 -133 -254 -473z" />
146
+ <glyph unicode="&#xc7;" horiz-adv-x="1155" d="M113 678q0 319 158 507.5t417 188.5q110 0 201 -46t151 -116l-55 -63q-122 139 -295 139q-222 0 -350.5 -164t-128.5 -446t127 -449.5t344 -167.5q102 0 184.5 41t157.5 125l55 -59q-150 -169 -342 -188l-49 -113q72 -19 109 -51t37 -90q0 -157 -297 -175l-15 62 q129 9 180.5 34.5t51.5 73.5q0 44 -37.5 68.5t-122.5 36.5l70 149q-247 6 -399 197t-152 506z" />
147
+ <glyph unicode="&#xc8;" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM348 1677l58 68l256 -252l-41 -47z" />
148
+ <glyph unicode="&#xc9;" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM494 1493l256 252l57 -68l-272 -231z" />
149
+ <glyph unicode="&#xca;" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM301 1487l231 231h91l231 -231l-41 -39l-231 201h-9l-231 -201z" />
150
+ <glyph unicode="&#xcb;" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM303 1559q0 35 20.5 55t53.5 20t54.5 -20.5t21.5 -54.5q0 -33 -21.5 -53.5t-54.5 -20.5t-53.5 20.5t-20.5 53.5zM702 1559q0 34 21.5 54.5t54.5 20.5t53.5 -20t20.5 -55q0 -33 -20.5 -53.5t-53.5 -20.5 t-54.5 20.5t-21.5 53.5z" />
151
+ <glyph unicode="&#xcc;" horiz-adv-x="491" d="M16 1677l58 68l256 -252l-41 -47zM199 0v1350h94v-1350h-94z" />
152
+ <glyph unicode="&#xcd;" horiz-adv-x="491" d="M162 1493l256 252l57 -68l-272 -231zM199 0v1350h94v-1350h-94z" />
153
+ <glyph unicode="&#xce;" horiz-adv-x="491" d="M-31 1487l232 231h90l231 -231l-41 -39l-231 201h-8l-232 -201zM199 0v1350h94v-1350h-94z" />
154
+ <glyph unicode="&#xcf;" horiz-adv-x="491" d="M-29 1559q0 35 20.5 55t53.5 20t54.5 -20.5t21.5 -54.5q0 -33 -21.5 -53.5t-54.5 -20.5t-53.5 20.5t-20.5 53.5zM199 0v1350h94v-1350h-94zM371 1559q0 35 21 55t54 20t53.5 -20t20.5 -55q0 -33 -20.5 -53.5t-53.5 -20.5t-54 20.5t-21 53.5z" />
155
+ <glyph unicode="&#xd0;" horiz-adv-x="1280" d="M76 680v63l166 5v602h313q304 0 458 -177.5t154 -492.5q0 -317 -154 -498.5t-456 -181.5h-315v680h-166zM336 80h209q135 0 236.5 44t163.5 124.5t93 188.5t31 243q0 134 -30.5 240.5t-93 185.5t-164 121.5t-236.5 42.5h-209v-522h334v-68h-334v-600z" />
156
+ <glyph unicode="&#xd1;" horiz-adv-x="1302" d="M199 0v1350h98l569 -953l152 -268h8q-1 44 -4.5 124t-5.5 145.5t-2 123.5v828h90v-1350h-98l-570 952l-151 269h-9q1 -24 7 -165t6 -218v-838h-90zM324 1483q5 99 52 162t128 63q44 0 82 -16.5t65.5 -40.5t52.5 -48t54.5 -40.5t60.5 -16.5q44 0 74 42.5t39 115.5l67 -6 q-5 -99 -52.5 -163.5t-127.5 -64.5q-44 0 -82 16.5t-65.5 40.5t-52.5 48t-54.5 40.5t-60.5 16.5q-45 0 -76 -42t-37 -113z" />
157
+ <glyph unicode="&#xd2;" horiz-adv-x="1335" d="M113 680q0 316 154.5 505t400.5 189q247 0 402 -189t155 -505q0 -318 -155 -511.5t-402 -193.5q-245 0 -400 193.5t-155 511.5zM211 680q0 -281 125.5 -450t331.5 -169t331 169t125 450q0 278 -124.5 443t-331.5 165t-332 -165t-125 -443zM438 1677l58 68l256 -252 l-41 -47z" />
158
+ <glyph unicode="&#xd3;" horiz-adv-x="1335" d="M113 680q0 316 154.5 505t400.5 189q247 0 402 -189t155 -505q0 -318 -155 -511.5t-402 -193.5q-245 0 -400 193.5t-155 511.5zM211 680q0 -281 125.5 -450t331.5 -169t331 169t125 450q0 278 -124.5 443t-331.5 165t-332 -165t-125 -443zM584 1493l256 252l57 -68 l-272 -231z" />
159
+ <glyph unicode="&#xd4;" horiz-adv-x="1335" d="M113 680q0 316 154.5 505t400.5 189q247 0 402 -189t155 -505q0 -318 -155 -511.5t-402 -193.5q-245 0 -400 193.5t-155 511.5zM211 680q0 -281 125.5 -450t331.5 -169t331 169t125 450q0 278 -124.5 443t-331.5 165t-332 -165t-125 -443zM391 1487l232 231h90l231 -231 l-41 -39l-231 201h-8l-232 -201z" />
160
+ <glyph unicode="&#xd5;" horiz-adv-x="1335" d="M113 680q0 316 154.5 505t400.5 189q247 0 402 -189t155 -505q0 -318 -155 -511.5t-402 -193.5q-245 0 -400 193.5t-155 511.5zM211 680q0 -281 125.5 -450t331.5 -169t331 169t125 450q0 278 -124.5 443t-331.5 165t-332 -165t-125 -443zM330 1483q5 99 52 162t128 63 q44 0 82 -16.5t65.5 -40.5t52.5 -48t54.5 -40.5t60.5 -16.5q44 0 74 42.5t39 115.5l68 -6q-5 -99 -53 -163.5t-128 -64.5q-44 0 -82 16.5t-65.5 40.5t-52.5 48t-54.5 40.5t-60.5 16.5q-45 0 -76 -42t-37 -113z" />
161
+ <glyph unicode="&#xd6;" horiz-adv-x="1335" d="M113 680q0 316 154.5 505t400.5 189q247 0 402 -189t155 -505q0 -318 -155 -511.5t-402 -193.5q-245 0 -400 193.5t-155 511.5zM211 680q0 -281 125.5 -450t331.5 -169t331 169t125 450q0 278 -124.5 443t-331.5 165t-332 -165t-125 -443zM393 1559q0 35 20.5 55t53.5 20 t54.5 -20.5t21.5 -54.5q0 -33 -21.5 -53.5t-54.5 -20.5t-53.5 20.5t-20.5 53.5zM793 1559q0 35 21 55t54 20t53.5 -20t20.5 -55q0 -33 -20.5 -53.5t-53.5 -20.5t-54 20.5t-21 53.5z" />
162
+ <glyph unicode="&#xd7;" d="M106 334l330 342l-330 342l54 57l329 -346l332 346l53 -57l-329 -342l329 -342l-53 -58l-332 345l-329 -345z" />
163
+ <glyph unicode="&#xd8;" horiz-adv-x="1335" d="M115 -2l143 192q-137 193 -137 490q0 316 154.5 505t400.5 189q211 0 360 -143l123 166l60 -45l-134 -176q148 -191 148 -496q0 -318 -155 -511.5t-402 -193.5q-217 0 -369 158l-135 -180zM219 680q0 -248 98 -410l662 887q-122 131 -303 131q-207 0 -332 -165t-125 -443 zM362 207q124 -146 314 -146q206 0 331.5 169t125.5 450q0 252 -107 416z" />
164
+ <glyph unicode="&#xd9;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5zM420 1677l57 68l256 -252l-41 -47z" />
165
+ <glyph unicode="&#xda;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5zM565 1493l256 252l58 -68l-273 -231z" />
166
+ <glyph unicode="&#xdb;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5zM373 1487l231 231h90l232 -231l-41 -39l-232 201h-8l-231 -201z" />
167
+ <glyph unicode="&#xdc;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5zM375 1559q0 35 20.5 55t53.5 20t54 -20t21 -55q0 -33 -21 -53.5t-54 -20.5t-53.5 20.5t-20.5 53.5zM774 1559q0 34 21.5 54.5t54.5 20.5t53.5 -20t20.5 -55q0 -33 -20.5 -53.5t-53.5 -20.5t-54.5 20.5t-21.5 53.5z" />
168
+ <glyph unicode="&#xdd;" horiz-adv-x="915" d="M6 1350h100l205 -422q105 -218 144 -291h8q110 212 145 291l205 422h96l-405 -803v-547h-94v547zM373 1493l256 252l57 -68l-272 -231z" />
169
+ <glyph unicode="&#xde;" horiz-adv-x="1153" d="M199 0v1350h94v-240h274q236 0 359 -88.5t123 -288.5q0 -195 -126 -294t-356 -99h-274v-340h-94zM293 420h252q208 0 307.5 74.5t99.5 238.5t-97.5 230.5t-309.5 66.5h-252v-610z" />
170
+ <glyph unicode="&#xdf;" horiz-adv-x="1110" d="M188 0v1090q0 187 95.5 295t255.5 108q130 0 207 -77.5t77 -196.5q0 -58 -21 -110.5t-50.5 -91.5t-59 -76.5t-50.5 -80.5t-21 -88q0 -48 23.5 -84.5t61.5 -60.5t84 -46.5t92 -49.5t84 -60t61.5 -87t23.5 -124q0 -122 -84.5 -203.5t-214.5 -81.5q-149 0 -279 105l45 67 q116 -94 234 -94q97 0 151.5 59.5t54.5 143.5q0 58 -23.5 102t-61.5 72t-83.5 52t-91 48.5t-83.5 53.5t-61.5 74.5t-23.5 105.5q0 55 20.5 104t50 87t59.5 75t50.5 83t20.5 97q0 92 -50 148.5t-144 56.5q-121 0 -189.5 -89t-68.5 -267v-1059h-91z" />
171
+ <glyph unicode="&#xe0;" horiz-adv-x="1005" d="M119 246q0 161 151 247t484 123q4 312 -234 312q-153 0 -313 -115l-41 68q181 127 366 127q84 0 146 -29t97.5 -82t52 -119.5t16.5 -148.5v-629h-78l-8 127h-6q-190 -152 -349 -152q-124 0 -204 69t-80 202zM211 250q0 -100 58.5 -148.5t150.5 -48.5q81 0 159 39t175 121 v334q-296 -34 -419.5 -105t-123.5 -192zM287 1485l69 59l275 -321l-49 -47z" />
172
+ <glyph unicode="&#xe1;" horiz-adv-x="1005" d="M119 246q0 161 151 247t484 123q4 312 -234 312q-153 0 -313 -115l-41 68q181 127 366 127q84 0 146 -29t97.5 -82t52 -119.5t16.5 -148.5v-629h-78l-8 127h-6q-190 -152 -349 -152q-124 0 -204 69t-80 202zM211 250q0 -100 58.5 -148.5t150.5 -48.5q81 0 159 39t175 121 v334q-296 -34 -419.5 -105t-123.5 -192zM414 1223l274 321l70 -59l-295 -309z" />
173
+ <glyph unicode="&#xe2;" horiz-adv-x="1005" d="M119 246q0 161 151 247t484 123q4 312 -234 312q-153 0 -313 -115l-41 68q181 127 366 127q84 0 146 -29t97.5 -82t52 -119.5t16.5 -148.5v-629h-78l-8 127h-6q-190 -152 -349 -152q-124 0 -204 69t-80 202zM211 250q0 -100 58.5 -148.5t150.5 -48.5q81 0 159 39t175 121 v334q-296 -34 -419.5 -105t-123.5 -192zM240 1214l239 295h86l240 -295l-45 -43l-234 259h-8l-233 -259z" />
174
+ <glyph unicode="&#xe3;" horiz-adv-x="1005" d="M119 246q0 161 151 247t484 123q4 312 -234 312q-153 0 -313 -115l-41 68q181 127 366 127q84 0 146 -29t97.5 -82t52 -119.5t16.5 -148.5v-629h-78l-8 127h-6q-190 -152 -349 -152q-124 0 -204 69t-80 202zM186 1196q16 258 183 258q43 0 80 -20.5t63.5 -49t51.5 -57.5 t55 -49.5t61 -20.5q51 0 77 53.5t31 137.5l70 -4q-3 -52 -13.5 -94.5t-30 -81t-54.5 -60.5t-82 -22q-43 0 -80.5 20t-64.5 49t-52 58t-54 49t-60 20q-100 0 -111 -190zM211 250q0 -100 58.5 -148.5t150.5 -48.5q81 0 159 39t175 121v334q-296 -34 -419.5 -105t-123.5 -192z " />
175
+ <glyph unicode="&#xe4;" horiz-adv-x="1005" d="M119 246q0 161 151 247t484 123q4 312 -234 312q-153 0 -313 -115l-41 68q181 127 366 127q84 0 146 -29t97.5 -82t52 -119.5t16.5 -148.5v-629h-78l-8 127h-6q-190 -152 -349 -152q-124 0 -204 69t-80 202zM211 250q0 -100 58.5 -148.5t150.5 -48.5q81 0 159 39t175 121 v334q-296 -34 -419.5 -105t-123.5 -192zM264 1300q0 32 22 54t54 22t54 -22t22 -54t-22 -53.5t-54 -21.5t-54 21.5t-22 53.5zM629 1300q0 32 22 54t54 22t53.5 -22t21.5 -54t-21.5 -53.5t-53.5 -21.5t-54 21.5t-22 53.5z" />
176
+ <glyph unicode="&#xe5;" horiz-adv-x="1005" d="M119 246q0 161 151 247t484 123q4 312 -234 312q-153 0 -313 -115l-41 68q181 127 366 127q84 0 146 -29t97.5 -82t52 -119.5t16.5 -148.5v-629h-78l-8 127h-6q-190 -152 -349 -152q-124 0 -204 69t-80 202zM211 250q0 -100 58.5 -148.5t150.5 -48.5q81 0 159 39t175 121 v334q-296 -34 -419.5 -105t-123.5 -192zM324 1317q0 87 55.5 141.5t142.5 54.5t143 -54.5t56 -141.5q0 -86 -56 -140.5t-143 -54.5t-142.5 54.5t-55.5 140.5zM389 1317q0 -63 38 -102t95 -39t95 39t38 102q0 65 -38 104t-95 39t-95 -39t-38 -104z" />
177
+ <glyph unicode="&#xe6;" horiz-adv-x="1605" d="M133 244q0 161 150.5 248t474.5 124q4 312 -232 312q-148 0 -303 -115l-41 68q181 127 353 127q117 0 188.5 -65t97.5 -181q55 114 145 180t197 66q172 0 268.5 -119.5t96.5 -335.5q0 -49 -4 -74h-680q0 -185 100 -304.5t250 -119.5q133 0 256 88l39 -71q-53 -32 -84 -48 t-91.5 -32.5t-127.5 -16.5q-63 0 -118 17t-98 48t-74.5 63.5t-61.5 74.5q-96 -93 -208.5 -148t-205.5 -55q-125 0 -206 68.5t-81 200.5zM227 250q0 -100 57.5 -148.5t149.5 -48.5q82 0 183 51.5t184 139.5q-43 87 -43 248l-2 55q-283 -35 -406 -106t-123 -191zM844 549h600 q0 186 -74.5 283.5t-208.5 97.5q-122 0 -212 -106.5t-105 -274.5z" />
178
+ <glyph unicode="&#xe7;" horiz-adv-x="919" d="M106 489q0 120 36.5 219.5t98.5 164t142.5 100t171.5 35.5q92 0 159.5 -32.5t129.5 -88.5l-53 -64q-112 105 -234 105q-152 0 -254 -123t-102 -316q0 -194 97.5 -314t258.5 -120q136 0 262 113l47 -64q-130 -116 -280 -127l-49 -110q72 -19 108.5 -51t36.5 -90 q0 -157 -297 -175l-14 62q129 9 180 34.5t51 73.5q0 44 -37.5 68.5t-122.5 36.5l72 151q-182 14 -295 150t-113 362z" />
179
+ <glyph unicode="&#xe8;" horiz-adv-x="989" d="M106 489q0 117 36 216.5t96.5 164.5t137.5 101.5t159 36.5q176 0 276 -120t100 -335q0 -49 -4 -74h-708q3 -188 104.5 -307t265.5 -119q142 0 265 88l36 -69q-50 -30 -84.5 -47.5t-96 -33.5t-128.5 -16q-195 0 -325 139.5t-130 374.5zM199 553h626q0 185 -76.5 281 t-211.5 96q-130 0 -226.5 -102.5t-111.5 -274.5zM299 1485l70 59l274 -321l-49 -47z" />
180
+ <glyph unicode="&#xe9;" horiz-adv-x="989" d="M106 489q0 117 36 216.5t96.5 164.5t137.5 101.5t159 36.5q176 0 276 -120t100 -335q0 -49 -4 -74h-708q3 -188 104.5 -307t265.5 -119q142 0 265 88l36 -69q-50 -30 -84.5 -47.5t-96 -33.5t-128.5 -16q-195 0 -325 139.5t-130 374.5zM199 553h626q0 185 -76.5 281 t-211.5 96q-130 0 -226.5 -102.5t-111.5 -274.5zM426 1223l274 321l70 -59l-295 -309z" />
181
+ <glyph unicode="&#xea;" horiz-adv-x="989" d="M106 489q0 117 36 216.5t96.5 164.5t137.5 101.5t159 36.5q176 0 276 -120t100 -335q0 -49 -4 -74h-708q3 -188 104.5 -307t265.5 -119q142 0 265 88l36 -69q-50 -30 -84.5 -47.5t-96 -33.5t-128.5 -16q-195 0 -325 139.5t-130 374.5zM199 553h626q0 185 -76.5 281 t-211.5 96q-130 0 -226.5 -102.5t-111.5 -274.5zM252 1214l240 295h86l239 -295l-45 -43l-233 259h-9l-233 -259z" />
182
+ <glyph unicode="&#xeb;" horiz-adv-x="989" d="M106 489q0 117 36 216.5t96.5 164.5t137.5 101.5t159 36.5q176 0 276 -120t100 -335q0 -49 -4 -74h-708q3 -188 104.5 -307t265.5 -119q142 0 265 88l36 -69q-50 -30 -84.5 -47.5t-96 -33.5t-128.5 -16q-195 0 -325 139.5t-130 374.5zM199 553h626q0 185 -76.5 281 t-211.5 96q-130 0 -226.5 -102.5t-111.5 -274.5zM276 1300q0 32 22 54t54 22t54 -22t22 -54t-22 -53.5t-54 -21.5t-54 21.5t-22 53.5zM641 1300q0 32 22 54t54 22t54 -22t22 -54t-22 -53.5t-54 -21.5t-54 21.5t-22 53.5z" />
183
+ <glyph unicode="&#xec;" horiz-adv-x="468" d="M-2 1485l70 59l274 -321l-49 -47zM188 0v983h91v-983h-91z" />
184
+ <glyph unicode="&#xed;" horiz-adv-x="468" d="M125 1223l274 321l70 -59l-295 -309zM188 0v983h91v-983h-91z" />
185
+ <glyph unicode="&#xee;" horiz-adv-x="468" d="M-49 1214l239 295h86l240 -295l-45 -43l-233 259h-9l-233 -259zM188 0v983h91v-983h-91z" />
186
+ <glyph unicode="&#xef;" horiz-adv-x="468" d="M-25 1300q0 32 22 54t54 22t54 -22t22 -54t-22 -53.5t-54 -21.5t-54 21.5t-22 53.5zM188 0v983h91v-983h-91zM340 1300q0 32 22 54t54 22t54 -22t22 -54t-22 -53.5t-54 -21.5t-54 21.5t-22 53.5z" />
187
+ <glyph unicode="&#xf0;" horiz-adv-x="1095" d="M123 449q0 203 117.5 329.5t306.5 126.5q184 0 303 -155q-49 269 -238 454l-290 -149l-31 55l270 139q-97 84 -252 172l45 62q164 -87 283 -195l291 152l30 -56l-274 -141q279 -282 279 -727q0 -245 -115 -393t-301 -148q-82 0 -158.5 33t-135.5 92.5t-94.5 150.5 t-35.5 198zM213 449q0 -170 97.5 -282t236.5 -112q108 0 182 62.5t107.5 163.5t33.5 233q0 66 -6 127q-72 106 -148.5 146t-164.5 40q-159 0 -248.5 -108t-89.5 -270z" />
188
+ <glyph unicode="&#xf1;" horiz-adv-x="1089" d="M188 0v983h78l8 -152h7q86 86 165 131.5t172 45.5q152 0 224.5 -93t72.5 -284v-631h-90v618q0 159 -53 233.5t-172 74.5q-83 0 -153 -43t-168 -142v-741h-91zM244 1196q16 258 182 258q43 0 80 -20.5t63.5 -49t51.5 -57.5t55 -49.5t61 -20.5q51 0 77.5 53.5t31.5 137.5 l69 -4q-3 -52 -13.5 -94.5t-30 -81t-54.5 -60.5t-82 -22q-43 0 -80.5 20t-64.5 49t-52 58t-54 49t-60 20q-100 0 -111 -190z" />
189
+ <glyph unicode="&#xf2;" horiz-adv-x="1095" d="M106 489q0 120 35.5 219.5t96.5 164t140.5 100t168.5 35.5q90 0 169.5 -35t140.5 -100t96.5 -164.5t35.5 -219.5q0 -119 -35.5 -217.5t-96.5 -162.5t-140.5 -99t-169.5 -35q-89 0 -168.5 35t-140.5 99t-96.5 162.5t-35.5 217.5zM201 489q0 -192 98 -313t248 -121 q151 0 249.5 121t98.5 313q0 193 -98.5 316t-249.5 123q-150 0 -248 -122.5t-98 -316.5zM311 1485l70 59l274 -321l-49 -47z" />
190
+ <glyph unicode="&#xf3;" horiz-adv-x="1095" d="M106 489q0 120 35.5 219.5t96.5 164t140.5 100t168.5 35.5q90 0 169.5 -35t140.5 -100t96.5 -164.5t35.5 -219.5q0 -119 -35.5 -217.5t-96.5 -162.5t-140.5 -99t-169.5 -35q-89 0 -168.5 35t-140.5 99t-96.5 162.5t-35.5 217.5zM201 489q0 -192 98 -313t248 -121 q151 0 249.5 121t98.5 313q0 193 -98.5 316t-249.5 123q-150 0 -248 -122.5t-98 -316.5zM438 1223l275 321l69 -59l-295 -309z" />
191
+ <glyph unicode="&#xf4;" horiz-adv-x="1095" d="M106 489q0 120 35.5 219.5t96.5 164t140.5 100t168.5 35.5q90 0 169.5 -35t140.5 -100t96.5 -164.5t35.5 -219.5q0 -119 -35.5 -217.5t-96.5 -162.5t-140.5 -99t-169.5 -35q-89 0 -168.5 35t-140.5 99t-96.5 162.5t-35.5 217.5zM201 489q0 -192 98 -313t248 -121 q151 0 249.5 121t98.5 313q0 193 -98.5 316t-249.5 123q-150 0 -248 -122.5t-98 -316.5zM264 1214l240 295h86l239 -295l-45 -43l-233 259h-8l-234 -259z" />
192
+ <glyph unicode="&#xf5;" horiz-adv-x="1095" d="M106 489q0 120 35.5 219.5t96.5 164t140.5 100t168.5 35.5q90 0 169.5 -35t140.5 -100t96.5 -164.5t35.5 -219.5q0 -119 -35.5 -217.5t-96.5 -162.5t-140.5 -99t-169.5 -35q-89 0 -168.5 35t-140.5 99t-96.5 162.5t-35.5 217.5zM201 489q0 -192 98 -313t248 -121 q151 0 249.5 121t98.5 313q0 193 -98.5 316t-249.5 123q-150 0 -248 -122.5t-98 -316.5zM211 1196q16 258 182 258q43 0 80 -20.5t64 -49t52 -57.5t55 -49.5t61 -20.5q51 0 77 53.5t31 137.5l70 -4q-3 -52 -13.5 -95t-30.5 -81t-55 -60t-82 -22q-43 0 -80.5 20t-64.5 49 t-52 58t-54 49t-60 20q-99 0 -110 -190z" />
193
+ <glyph unicode="&#xf6;" horiz-adv-x="1095" d="M106 489q0 120 35.5 219.5t96.5 164t140.5 100t168.5 35.5q90 0 169.5 -35t140.5 -100t96.5 -164.5t35.5 -219.5q0 -119 -35.5 -217.5t-96.5 -162.5t-140.5 -99t-169.5 -35q-89 0 -168.5 35t-140.5 99t-96.5 162.5t-35.5 217.5zM201 489q0 -192 98 -313t248 -121 q151 0 249.5 121t98.5 313q0 193 -98.5 316t-249.5 123q-150 0 -248 -122.5t-98 -316.5zM289 1300q0 32 22 54t54 22t53.5 -22t21.5 -54t-21.5 -53.5t-53.5 -21.5t-54 21.5t-22 53.5zM653 1300q0 32 22 54t54 22t54 -22t22 -54t-22 -53.5t-54 -21.5t-54 21.5t-22 53.5z" />
194
+ <glyph unicode="&#xf7;" d="M70 637v78h841v-78h-841zM412 307q0 35 22 57.5t55 22.5q34 0 56 -22.5t22 -57.5q0 -38 -22 -61t-56 -23q-33 0 -55 23t-22 61zM412 1044q0 35 22 57.5t55 22.5q34 0 56 -22.5t22 -57.5q0 -38 -22 -60.5t-56 -22.5q-33 0 -55 23t-22 60z" />
195
+ <glyph unicode="&#xf8;" horiz-adv-x="1095" d="M94 -2l119 143q-107 139 -107 348q0 120 35.5 219.5t96.5 164t140.5 100t168.5 35.5q170 0 291 -115l110 133l53 -43l-118 -141q106 -141 106 -353q0 -119 -35.5 -217.5t-96.5 -162.5t-140.5 -99t-169.5 -35q-168 0 -289 115l-111 -135zM199 492q0 -166 73 -281l510 614 q-94 105 -235 105q-150 0 -249 -123t-99 -315zM313 156q95 -103 234 -103q151 0 250.5 121t99.5 313q0 166 -74 283z" />
196
+ <glyph unicode="&#xf9;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284zM307 1485l70 59l274 -321l-49 -47z" />
197
+ <glyph unicode="&#xfa;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284zM434 1223l275 321l69 -59l-295 -309z" />
198
+ <glyph unicode="&#xfb;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284zM260 1214l240 295h86l239 -295l-45 -43l-233 259h-8l-234 -259z" />
199
+ <glyph unicode="&#xfc;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284zM285 1300q0 32 21.5 54t53.5 22t54 -22t22 -54t-22 -53.5t-54 -21.5t-53.5 21.5t-21.5 53.5z M649 1300q0 32 22 54t54 22t54 -22t22 -54t-22 -53.5t-54 -21.5t-54 21.5t-22 53.5z" />
200
+ <glyph unicode="&#xfd;" horiz-adv-x="892" d="M25 983h98l237 -618q82 -217 107 -275h8q18 51 53 159.5t37 115.5l211 618h92l-389 -1106q-108 -326 -329 -326q-54 0 -101 21l21 80q42 -17 80 -17q86 0 149 70.5t102 190.5l27 86zM360 1223l275 321l70 -59l-295 -309z" />
201
+ <glyph unicode="&#xfe;" horiz-adv-x="1114" d="M188 -444v1917h91v-611q188 146 333 146q194 0 295 -134t101 -368q0 -122 -35.5 -223.5t-95.5 -168t-138.5 -103t-165.5 -36.5q-134 0 -294 119v-538h-91zM279 182q156 -127 290 -127q150 0 246 126t96 325q0 93 -17.5 168t-53.5 133t-97 89.5t-143 31.5 q-136 0 -321 -162v-584z" />
202
+ <glyph unicode="&#xff;" horiz-adv-x="892" d="M25 983h98l237 -618q82 -217 107 -275h8q18 51 53 159.5t37 115.5l211 618h92l-389 -1106q-108 -326 -329 -326q-54 0 -101 21l21 80q42 -17 80 -17q86 0 149 70.5t102 190.5l27 86zM211 1300q0 32 22 54t54 22t53.5 -22t21.5 -54t-21.5 -53.5t-53.5 -21.5t-54 21.5 t-22 53.5zM575 1300q0 32 22 54t54 22t54 -22t22 -54t-22 -53.5t-54 -21.5t-54 21.5t-22 53.5z" />
203
+ <glyph unicode="&#x100;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM285 1522v73h508v-73h-508zM299 543h479l-86 252q-95 277 -149 467h-8q-49 -174 -150 -467z" />
204
+ <glyph unicode="&#x101;" horiz-adv-x="1005" d="M119 246q0 161 151 247t484 123q4 312 -234 312q-153 0 -313 -115l-41 68q181 127 366 127q84 0 146 -29t97.5 -82t52 -119.5t16.5 -148.5v-629h-78l-8 127h-6q-190 -152 -349 -152q-124 0 -204 69t-80 202zM211 250q0 -100 58.5 -148.5t150.5 -48.5q81 0 159 39t175 121 v334q-296 -34 -419.5 -105t-123.5 -192zM270 1241v74h504v-74h-504z" />
205
+ <glyph unicode="&#x102;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM260 1708l68 10q11 -84 65 -140t146 -56t146 56t65 140l67 -10q-6 -48 -24.5 -91.5t-51 -80.5t-85 -59.5t-117.5 -22.5q-126 0 -196.5 75.5t-82.5 178.5zM299 543h479l-86 252q-95 277 -149 467h-8 q-49 -174 -150 -467z" />
206
+ <glyph unicode="&#x103;" horiz-adv-x="1005" d="M119 246q0 161 151 247t484 123q4 312 -234 312q-153 0 -313 -115l-41 68q181 127 366 127q84 0 146 -29t97.5 -82t52 -119.5t16.5 -148.5v-629h-78l-8 127h-6q-190 -152 -349 -152q-124 0 -204 69t-80 202zM211 250q0 -100 58.5 -148.5t150.5 -48.5q81 0 159 39t175 121 v334q-296 -34 -419.5 -105t-123.5 -192zM217 1470l68 11q14 -98 74.5 -171t162.5 -73t163 73t75 171l67 -11q-7 -55 -25.5 -105t-53 -96.5t-93 -74t-133.5 -27.5t-133.5 27.5t-93 74t-53 96.5t-25.5 105z" />
207
+ <glyph unicode="&#x104;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350q-64 -42 -108 -109t-44 -129q0 -51 31 -78.5t74 -27.5q49 0 88 29l33 -56q-24 -20 -62.5 -34.5t-71.5 -14.5q-75 0 -123.5 43.5t-48.5 124.5q0 72 43.5 141t102.5 111h-12l-158 463h-535l-159 -463h-95zM299 543h479l-86 252 q-95 277 -149 467h-8q-49 -174 -150 -467z" />
208
+ <glyph unicode="&#x105;" horiz-adv-x="1005" d="M119 244q0 162 151 248.5t484 123.5q4 312 -234 312q-153 0 -313 -115l-41 68q181 127 366 127q84 0 146 -29t97.5 -82t52 -119.5t16.5 -148.5v-629q-77 -38 -126.5 -105t-49.5 -133q0 -51 28.5 -78.5t71.5 -27.5q46 0 88 29l33 -54q-25 -20 -63 -33.5t-70 -13.5 q-74 0 -121 43t-47 123q0 74 51.5 145.5t128.5 118.5l-10 113h-6q-190 -152 -349 -152q-124 0 -204 68.5t-80 200.5zM211 250q0 -100 58.5 -148.5t150.5 -48.5q81 0 159 39t175 121v334q-296 -34 -419.5 -105t-123.5 -192z" />
209
+ <glyph unicode="&#x106;" horiz-adv-x="1155" d="M113 678q0 319 158 507.5t417 188.5q110 0 201 -46t151 -116l-55 -63q-122 139 -295 139q-222 0 -350.5 -164t-128.5 -446t127 -449.5t344 -167.5q102 0 184.5 41t157.5 125l55 -59q-82 -94 -179 -143.5t-222 -49.5q-253 0 -409 191.5t-156 511.5zM578 1493l256 252 l57 -68l-273 -231z" />
210
+ <glyph unicode="&#x107;" horiz-adv-x="919" d="M106 489q0 120 36.5 219.5t98.5 164t142.5 100t171.5 35.5q92 0 159.5 -32.5t129.5 -88.5l-53 -64q-112 105 -234 105q-152 0 -254 -123t-102 -316q0 -194 97.5 -314t258.5 -120q136 0 262 113l47 -64q-146 -129 -313 -129q-196 0 -321.5 137.5t-125.5 376.5zM449 1223 l274 321l70 -59l-295 -309z" />
211
+ <glyph unicode="&#x108;" horiz-adv-x="1155" d="M113 678q0 319 158 507.5t417 188.5q110 0 201 -46t151 -116l-55 -63q-122 139 -295 139q-222 0 -350.5 -164t-128.5 -446t127 -449.5t344 -167.5q102 0 184.5 41t157.5 125l55 -59q-82 -94 -179 -143.5t-222 -49.5q-253 0 -409 191.5t-156 511.5zM385 1487l231 231h91 l231 -231l-41 -39l-231 201h-9l-231 -201z" />
212
+ <glyph unicode="&#x109;" horiz-adv-x="919" d="M106 489q0 120 36.5 219.5t98.5 164t142.5 100t171.5 35.5q92 0 159.5 -32.5t129.5 -88.5l-53 -64q-112 105 -234 105q-152 0 -254 -123t-102 -316q0 -194 97.5 -314t258.5 -120q136 0 262 113l47 -64q-146 -129 -313 -129q-196 0 -321.5 137.5t-125.5 376.5zM274 1214 l240 295h86l240 -295l-45 -43l-234 259h-8l-234 -259z" />
213
+ <glyph unicode="&#x10a;" horiz-adv-x="1155" d="M113 678q0 319 158 507.5t417 188.5q110 0 201 -46t151 -116l-55 -63q-122 139 -295 139q-222 0 -350.5 -164t-128.5 -446t127 -449.5t344 -167.5q102 0 184.5 41t157.5 125l55 -59q-82 -94 -179 -143.5t-222 -49.5q-253 0 -409 191.5t-156 511.5zM580 1561q0 35 24 57 t58 22t57.5 -22t23.5 -57q0 -37 -23.5 -60.5t-57.5 -23.5q-35 0 -58.5 23.5t-23.5 60.5z" />
214
+ <glyph unicode="&#x10b;" horiz-adv-x="919" d="M106 489q0 120 36.5 219.5t98.5 164t142.5 100t171.5 35.5q92 0 159.5 -32.5t129.5 -88.5l-53 -64q-112 105 -234 105q-152 0 -254 -123t-102 -316q0 -194 97.5 -314t258.5 -120q136 0 262 113l47 -64q-146 -129 -313 -129q-196 0 -321.5 137.5t-125.5 376.5zM479 1305 q0 35 22 57t56 22t56 -22t22 -57q0 -38 -22 -61t-56 -23t-56 23t-22 61z" />
215
+ <glyph unicode="&#x10c;" horiz-adv-x="1155" d="M113 678q0 319 158 507.5t417 188.5q110 0 201 -46t151 -116l-55 -63q-122 139 -295 139q-222 0 -350.5 -164t-128.5 -446t127 -449.5t344 -167.5q102 0 184.5 41t157.5 125l55 -59q-82 -94 -179 -143.5t-222 -49.5q-253 0 -409 191.5t-156 511.5zM385 1686l41 36 l231 -200h9l231 200l41 -36l-231 -234h-91z" />
216
+ <glyph unicode="&#x10d;" horiz-adv-x="919" d="M106 489q0 120 36.5 219.5t98.5 164t142.5 100t171.5 35.5q92 0 159.5 -32.5t129.5 -88.5l-53 -64q-112 105 -234 105q-152 0 -254 -123t-102 -316q0 -194 97.5 -314t258.5 -120q136 0 262 113l47 -64q-146 -129 -313 -129q-196 0 -321.5 137.5t-125.5 376.5zM274 1468 l45 41l234 -256h8l234 256l45 -41l-240 -294h-86z" />
217
+ <glyph unicode="&#x10e;" horiz-adv-x="1236" d="M199 0v1350h313q304 0 458 -177.5t154 -492.5q0 -317 -154 -498.5t-456 -181.5h-315zM293 80h209q135 0 236.5 44t163.5 124.5t93 188.5t31 243q0 134 -30.5 240.5t-93 185.5t-164 121.5t-236.5 42.5h-209v-1190zM342 1686l41 36l231 -200h9l231 200l41 -36l-231 -234 h-91z" />
218
+ <glyph unicode="&#x10f;" horiz-adv-x="1124" d="M106 489q0 116 35.5 214.5t95.5 164.5t139.5 103t166.5 37q84 0 150 -29t147 -92l-4 180v406h90v-1473h-78l-8 127h-6q-152 -152 -320 -152q-189 0 -298.5 134.5t-109.5 379.5zM203 489q0 -199 84.5 -316.5t238.5 -117.5q148 0 310 162v584q-77 68 -145 97.5t-142 29.5 q-147 0 -246.5 -126.5t-99.5 -312.5zM1053 1544h77v-102l-16 -320h-55z" />
219
+ <glyph unicode="&#x110;" horiz-adv-x="1280" d="M76 680v63l166 5v602h313q304 0 458 -177.5t154 -492.5q0 -317 -154 -498.5t-456 -181.5h-315v680h-166zM336 80h209q135 0 236.5 44t163.5 124.5t93 188.5t31 243q0 134 -30.5 240.5t-93 185.5t-164 121.5t-236.5 42.5h-209v-522h334v-68h-334v-600z" />
220
+ <glyph unicode="&#x111;" horiz-adv-x="1114" d="M106 455q0 108 35.5 199.5t95.5 153t139.5 96t166.5 34.5q84 0 150 -29t147 -92l-4 180v193h-349v67h349v216h90v-216h153v-59l-153 -8v-1190h-78l-10 127h-4q-148 -152 -320 -152q-189 0 -298.5 125.5t-109.5 354.5zM203 457q0 -184 84.5 -293t238.5 -109q148 0 310 162 v514q-77 68 -145 97.5t-142 29.5q-147 0 -246.5 -116.5t-99.5 -284.5z" />
221
+ <glyph unicode="&#x112;" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM324 1522v73h507v-73h-507z" />
222
+ <glyph unicode="&#x113;" horiz-adv-x="989" d="M106 489q0 117 36 216.5t96.5 164.5t137.5 101.5t159 36.5q176 0 276 -120t100 -335q0 -49 -4 -74h-708q3 -188 104.5 -307t265.5 -119q142 0 265 88l36 -69q-50 -30 -84.5 -47.5t-96 -33.5t-128.5 -16q-195 0 -325 139.5t-130 374.5zM199 553h626q0 185 -76.5 281 t-211.5 96q-130 0 -226.5 -102.5t-111.5 -274.5zM283 1241v74h503v-74h-503z" />
223
+ <glyph unicode="&#x114;" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM299 1708l68 10q11 -84 65 -140t146 -56t145 56t65 140l68 -10q-6 -48 -24.5 -91.5t-51 -80.5t-85 -59.5t-117.5 -22.5q-126 0 -196.5 75.5t-82.5 178.5z" />
224
+ <glyph unicode="&#x115;" horiz-adv-x="989" d="M106 489q0 117 36 216.5t96.5 164.5t137.5 101.5t159 36.5q176 0 276 -120t100 -335q0 -49 -4 -74h-708q3 -188 104.5 -307t265.5 -119q142 0 265 88l36 -69q-50 -30 -84.5 -47.5t-96 -33.5t-128.5 -16q-195 0 -325 139.5t-130 374.5zM199 553h626q0 185 -76.5 281 t-211.5 96q-130 0 -226.5 -102.5t-111.5 -274.5zM229 1470l68 11q14 -98 75 -171t163 -73t162.5 73t74.5 171l68 -11q-7 -55 -25.5 -105t-53 -96.5t-93 -74t-133.5 -27.5t-133.5 27.5t-93 74t-53.5 96.5t-26 105z" />
225
+ <glyph unicode="&#x116;" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM496 1561q0 35 24 57t58 22t57.5 -22t23.5 -57q0 -37 -23.5 -60.5t-57.5 -23.5q-35 0 -58.5 23.5t-23.5 60.5z" />
226
+ <glyph unicode="&#x117;" horiz-adv-x="989" d="M106 489q0 117 36 216.5t96.5 164.5t137.5 101.5t159 36.5q176 0 276 -120t100 -335q0 -49 -4 -74h-708q3 -188 104.5 -307t265.5 -119q142 0 265 88l36 -69q-50 -30 -84.5 -47.5t-96 -33.5t-128.5 -16q-195 0 -325 139.5t-130 374.5zM199 553h626q0 185 -76.5 281 t-211.5 96q-130 0 -226.5 -102.5t-111.5 -274.5zM457 1305q0 35 22 57t56 22t55.5 -22t21.5 -57q0 -38 -21.5 -61t-55.5 -23t-56 23t-22 61z" />
227
+ <glyph unicode="&#x118;" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-6q-73 -14 -132.5 -83.5t-59.5 -154.5q0 -51 30 -78.5t72 -27.5q49 0 88 29l35 -56q-25 -21 -63.5 -35t-71.5 -14q-75 0 -123.5 43.5t-48.5 124.5q0 75 43 143.5t106 108.5h-628z" />
228
+ <glyph unicode="&#x119;" horiz-adv-x="989" d="M106 489q0 117 36 216.5t96.5 164.5t137.5 101.5t159 36.5q176 0 276 -120t100 -335q0 -49 -4 -74h-708q3 -188 104.5 -307t265.5 -119q142 0 265 88l36 -69q-127 -93 -179 -166t-52 -144q0 -51 28.5 -78.5t71.5 -27.5q49 0 88 29l33 -54q-23 -20 -61.5 -33.5 t-71.5 -13.5q-74 0 -120 43t-46 123q0 70 39 135t90 109q-58 -19 -129 -19q-195 0 -325 139.5t-130 374.5zM199 553h626q0 185 -76.5 281t-211.5 96q-130 0 -226.5 -102.5t-111.5 -274.5z" />
229
+ <glyph unicode="&#x11a;" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM301 1686l41 36l231 -200h9l231 200l41 -36l-231 -234h-91z" />
230
+ <glyph unicode="&#x11b;" horiz-adv-x="989" d="M106 489q0 117 36 216.5t96.5 164.5t137.5 101.5t159 36.5q176 0 276 -120t100 -335q0 -49 -4 -74h-708q3 -188 104.5 -307t265.5 -119q142 0 265 88l36 -69q-50 -30 -84.5 -47.5t-96 -33.5t-128.5 -16q-195 0 -325 139.5t-130 374.5zM199 553h626q0 185 -76.5 281 t-211.5 96q-130 0 -226.5 -102.5t-111.5 -274.5zM252 1468l45 41l233 -256h9l233 256l45 -41l-239 -294h-86z" />
231
+ <glyph unicode="&#x11c;" horiz-adv-x="1239" d="M113 678q0 319 163.5 507.5t432.5 188.5q215 0 368 -162l-55 -63q-128 139 -311 139q-231 0 -365.5 -164t-134.5 -446q0 -284 129.5 -450.5t357.5 -166.5q93 0 173.5 27t129.5 76v420h-323v80h414v-535q-66 -71 -169.5 -112.5t-230.5 -41.5q-262 0 -420.5 191t-158.5 512 zM432 1487l232 231h90l231 -231l-41 -39l-231 201h-8l-232 -201z" />
232
+ <glyph unicode="&#x11d;" horiz-adv-x="997" d="M106 -201q0 64 38.5 126t107.5 112v8q-86 51 -86 158q0 104 106 180v8q-51 44 -86.5 116t-35.5 155q0 151 99.5 248.5t246.5 97.5q64 0 129 -25h333v-76h-229q49 -43 79 -108t30 -140q0 -150 -98 -248t-244 -98q-96 0 -164 41q-38 -31 -59 -63.5t-21 -77.5 q0 -129 188 -129h211q166 0 245 -54t79 -171q0 -133 -130 -232.5t-335 -99.5q-186 0 -295 73.5t-109 198.5zM193 -193q0 -94 86.5 -150t240.5 -56q159 0 261 75t102 172q0 79 -57 114.5t-171 35.5h-211q-54 0 -122 16q-129 -87 -129 -207zM240 662q0 -121 75 -199t181 -78 q104 0 179 78t75 199q0 122 -73.5 197t-180.5 75q-108 0 -182 -74.5t-74 -197.5zM252 1214l240 295h86l239 -295l-45 -43l-233 259h-9l-233 -259z" />
233
+ <glyph unicode="&#x11e;" horiz-adv-x="1239" d="M113 678q0 319 163.5 507.5t432.5 188.5q215 0 368 -162l-55 -63q-128 139 -311 139q-231 0 -365.5 -164t-134.5 -446q0 -284 129.5 -450.5t357.5 -166.5q93 0 173.5 27t129.5 76v420h-323v80h414v-535q-66 -71 -169.5 -112.5t-230.5 -41.5q-262 0 -420.5 191t-158.5 512 zM430 1708l68 10q11 -84 65 -140t146 -56t146 56t65 140l67 -10q-6 -48 -24.5 -91.5t-51 -80.5t-85 -59.5t-117.5 -22.5q-126 0 -196.5 75.5t-82.5 178.5z" />
234
+ <glyph unicode="&#x11f;" horiz-adv-x="997" d="M106 -201q0 64 38.5 126t107.5 112v8q-86 51 -86 158q0 104 106 180v8q-51 44 -86.5 116t-35.5 155q0 151 99.5 248.5t246.5 97.5q64 0 129 -25h333v-76h-229q49 -43 79 -108t30 -140q0 -150 -98 -248t-244 -98q-96 0 -164 41q-38 -31 -59 -63.5t-21 -77.5 q0 -129 188 -129h211q166 0 245 -54t79 -171q0 -133 -130 -232.5t-335 -99.5q-186 0 -295 73.5t-109 198.5zM193 -193q0 -94 86.5 -150t240.5 -56q159 0 261 75t102 172q0 79 -57 114.5t-171 35.5h-211q-54 0 -122 16q-129 -87 -129 -207zM229 1470l68 11q14 -98 75 -171 t163 -73t162.5 73t74.5 171l68 -11q-7 -55 -25.5 -105t-53 -96.5t-93 -74t-133.5 -27.5t-133.5 27.5t-93 74t-53.5 96.5t-26 105zM240 662q0 -121 75 -199t181 -78q104 0 179 78t75 199q0 122 -73.5 197t-180.5 75q-108 0 -182 -74.5t-74 -197.5z" />
235
+ <glyph unicode="&#x120;" horiz-adv-x="1239" d="M113 678q0 319 163.5 507.5t432.5 188.5q215 0 368 -162l-55 -63q-128 139 -311 139q-231 0 -365.5 -164t-134.5 -446q0 -284 129.5 -450.5t357.5 -166.5q93 0 173.5 27t129.5 76v420h-323v80h414v-535q-66 -71 -169.5 -112.5t-230.5 -41.5q-262 0 -420.5 191t-158.5 512 zM627 1561q0 35 24 57t58 22t58 -22t24 -57q0 -37 -23.5 -60.5t-58.5 -23.5t-58.5 23.5t-23.5 60.5z" />
236
+ <glyph unicode="&#x121;" horiz-adv-x="997" d="M106 -201q0 64 38.5 126t107.5 112v8q-86 51 -86 158q0 104 106 180v8q-51 44 -86.5 116t-35.5 155q0 151 99.5 248.5t246.5 97.5q64 0 129 -25h333v-76h-229q49 -43 79 -108t30 -140q0 -150 -98 -248t-244 -98q-96 0 -164 41q-38 -31 -59 -63.5t-21 -77.5 q0 -129 188 -129h211q166 0 245 -54t79 -171q0 -133 -130 -232.5t-335 -99.5q-186 0 -295 73.5t-109 198.5zM193 -193q0 -94 86.5 -150t240.5 -56q159 0 261 75t102 172q0 79 -57 114.5t-171 35.5h-211q-54 0 -122 16q-129 -87 -129 -207zM240 662q0 -121 75 -199t181 -78 q104 0 179 78t75 199q0 122 -73.5 197t-180.5 75q-108 0 -182 -74.5t-74 -197.5zM457 1305q0 35 22 57t56 22t55.5 -22t21.5 -57q0 -38 -21.5 -61t-55.5 -23t-56 23t-22 61z" />
237
+ <glyph unicode="&#x122;" horiz-adv-x="1239" d="M113 678q0 319 163.5 507.5t432.5 188.5q215 0 368 -162l-55 -63q-128 139 -311 139q-231 0 -365.5 -164t-134.5 -446q0 -284 129.5 -450.5t357.5 -166.5q93 0 173.5 27t129.5 76v420h-323v80h414v-535q-66 -71 -169.5 -112.5t-230.5 -41.5q-262 0 -420.5 191t-158.5 512 zM524 -387q129 9 180.5 34.5t51.5 71.5q0 84 -158 97l27 59q117 -17 164 -50t47 -99q0 -157 -297 -175z" />
238
+ <glyph unicode="&#x123;" horiz-adv-x="997" d="M106 -201q0 64 38.5 126t107.5 112v8q-86 51 -86 158q0 104 106 180v8q-51 44 -86.5 116t-35.5 155q0 151 99.5 248.5t246.5 97.5q64 0 129 -25h333v-76h-229q49 -43 79 -108t30 -140q0 -150 -98 -248t-244 -98q-96 0 -164 41q-38 -31 -59 -63.5t-21 -77.5 q0 -129 188 -129h211q166 0 245 -54t79 -171q0 -133 -130 -232.5t-335 -99.5q-186 0 -295 73.5t-109 198.5zM193 -193q0 -94 86.5 -150t240.5 -56q159 0 261 75t102 172q0 79 -57 114.5t-171 35.5h-211q-54 0 -122 16q-129 -87 -129 -207zM240 662q0 -121 75 -199t181 -78 q104 0 179 78t75 199q0 122 -73.5 197t-180.5 75q-108 0 -182 -74.5t-74 -197.5zM395 1335q0 156 297 174l15 -61q-129 -9 -180.5 -35t-51.5 -74q0 -44 40 -66t118 -28l-27 -59q-117 17 -164 50t-47 99z" />
239
+ <glyph unicode="&#x124;" horiz-adv-x="1308" d="M199 0v1350h94v-592h723v592h94v-1350h-94v676h-723v-676h-94zM377 1487l231 231h90l232 -231l-41 -39l-232 201h-8l-231 -201z" />
240
+ <glyph unicode="&#x125;" horiz-adv-x="1081" d="M-39 1567l232 231h90l231 -231l-41 -39l-231 201h-9l-231 -201zM188 0v1473h91v-644q87 87 166 133t173 46q152 0 224.5 -93t72.5 -284v-631h-90v618q0 159 -53 233.5t-172 74.5q-83 0 -153 -43t-168 -142v-741h-91z" />
241
+ <glyph unicode="&#x126;" horiz-adv-x="1376" d="M74 1014v59l166 8v269h94v-269h723v269h94v-269h149v-67h-149v-1014h-94v676h-723v-676h-94v1014h-166zM334 758h723v256h-723v-256z" />
242
+ <glyph unicode="&#x127;" horiz-adv-x="1081" d="M31 1190v59l157 8v216h91v-216h389v-67h-389v-430q87 87 166 132.5t173 45.5q152 0 224.5 -93t72.5 -284v-561h-90v549q0 159 -53 233t-172 74q-83 0 -153.5 -42.5t-167.5 -141.5v-672h-91v1190h-157z" />
243
+ <glyph unicode="&#x128;" horiz-adv-x="491" d="M-92 1483q5 99 52 162t128 63q44 0 82 -16.5t65.5 -40.5t52.5 -48t54.5 -40.5t60.5 -16.5q44 0 74 42.5t39 115.5l68 -6q-5 -99 -53 -163.5t-128 -64.5q-44 0 -82 16.5t-65.5 40.5t-52.5 48t-54.5 40.5t-60.5 16.5q-45 0 -76 -42t-37 -113zM199 0v1350h94v-1350h-94z" />
244
+ <glyph unicode="&#x129;" horiz-adv-x="468" d="M-102 1196q16 258 182 258q43 0 80 -20.5t63.5 -49t51.5 -57.5t55 -49.5t61 -20.5q51 0 77.5 53.5t31.5 137.5l69 -4q-3 -52 -13.5 -94.5t-30 -81t-54.5 -60.5t-82 -22q-43 0 -80.5 20t-64.5 49t-52 58t-54 49t-60 20q-100 0 -111 -190zM188 0v983h91v-983h-91z" />
245
+ <glyph unicode="&#x12a;" horiz-adv-x="491" d="M-8 1522v73h508v-73h-508zM199 0v1350h94v-1350h-94z" />
246
+ <glyph unicode="&#x12b;" horiz-adv-x="468" d="M-18 1241v74h503v-74h-503zM188 0v983h91v-983h-91z" />
247
+ <glyph unicode="&#x12c;" horiz-adv-x="491" d="M-33 1708l68 10q11 -84 65 -140t146 -56t146 56t65 140l67 -10q-6 -48 -24.5 -91.5t-51 -80.5t-85 -59.5t-117.5 -22.5q-126 0 -196.5 75.5t-82.5 178.5zM199 0v1350h94v-1350h-94z" />
248
+ <glyph unicode="&#x12d;" horiz-adv-x="468" d="M-70 1470l68 11q14 -98 75 -171t163 -73t162.5 73t74.5 171l68 -11q-7 -55 -25.5 -105t-53 -96.5t-93 -74t-133.5 -27.5t-133.5 27.5t-93 74t-53.5 96.5t-26 105zM188 0v983h91v-983h-91z" />
249
+ <glyph unicode="&#x12e;" horiz-adv-x="491" d="M90 -252q0 76 32.5 133t94.5 119h-18v1350h94v-1350q-61 -68 -92 -122t-31 -116q0 -51 31 -78.5t73 -27.5q49 0 88 29l33 -56q-24 -21 -62 -35t-71 -14q-75 0 -123.5 43.5t-48.5 124.5z" />
250
+ <glyph unicode="&#x12f;" horiz-adv-x="468" d="M76 -250q0 48 21.5 98t44.5 79.5t61 72.5h-15v983h91v-983q-125 -133 -125 -238q0 -51 29.5 -78.5t70.5 -27.5q46 0 88 29l33 -54q-23 -20 -61.5 -33.5t-71.5 -13.5q-74 0 -120 43t-46 123zM150 1300q0 37 23.5 59.5t57.5 22.5q35 0 59.5 -22.5t24.5 -59.5 q0 -34 -24.5 -56.5t-59.5 -22.5q-33 0 -57 22.5t-24 56.5z" />
251
+ <glyph unicode="&#x130;" horiz-adv-x="491" d="M164 1561q0 35 24 57t58 22t58 -22t24 -57q0 -37 -23.5 -60.5t-58.5 -23.5t-58.5 23.5t-23.5 60.5zM199 0v1350h94v-1350h-94z" />
252
+ <glyph unicode="&#x131;" horiz-adv-x="468" d="M188 0v983h91v-983h-91z" />
253
+ <glyph unicode="&#x132;" horiz-adv-x="985" d="M199 0v1350h94v-1350h-94zM436 -293l21 80q56 -18 102 -18q77 0 105 54t28 159v1368h94v-1381q0 -146 -55 -217t-170 -71q-71 0 -125 26z" />
254
+ <glyph unicode="&#x133;" horiz-adv-x="935" d="M154 1300q0 37 23.5 59.5t58.5 22.5t58 -22.5t23 -59.5q0 -35 -23.5 -57t-57.5 -22t-58 22t-24 57zM188 0v983h91v-983h-91zM401 -444l23 73q62 -20 102 -20q77 0 104 54.5t27 160.5v1159h93v-1165q0 -145 -54.5 -216t-167.5 -71q-62 0 -127 25zM623 1300q0 37 24 59.5 t58 22.5q35 0 59 -22.5t24 -59.5q0 -35 -24 -57t-59 -22q-33 0 -57.5 22.5t-24.5 56.5z" />
255
+ <glyph unicode="&#x134;" horiz-adv-x="946" d="M84 174l72 47q49 -85 111.5 -122.5t148.5 -37.5q124 0 182.5 76.5t58.5 239.5v973h95v-983q0 -84 -18.5 -153t-57 -124t-105 -85t-155.5 -30q-225 0 -332 199zM422 1487l231 231h90l232 -231l-41 -39l-232 201h-8l-231 -201z" />
256
+ <glyph unicode="&#x135;" horiz-adv-x="468" d="M-68 -444l23 73q63 -20 102 -20q77 0 104 54.5t27 160.5v1159h93v-1165q0 -145 -54.5 -216t-167.5 -71q-62 0 -127 25zM-47 1214l240 295h86l239 -295l-45 -43l-233 259h-9l-233 -259z" />
257
+ <glyph unicode="&#x136;" horiz-adv-x="1142" d="M199 0v1350h94v-750h4l653 750h113l-430 -500l489 -850h-108l-447 778l-274 -313v-465h-94zM487 -387q129 9 180.5 34.5t51.5 71.5q0 84 -158 97l27 59q117 -17 164 -50t47 -99q0 -157 -297 -175z" />
258
+ <glyph unicode="&#x137;" horiz-adv-x="950" d="M188 0v1473h91v-1086h4l485 596h104l-319 -389l373 -594h-101l-325 526l-221 -258v-268h-91zM354 -387q129 9 180.5 34.5t51.5 71.5q0 84 -158 97l27 59q117 -17 164 -50t47 -99q0 -157 -297 -175z" />
259
+ <glyph unicode="&#x138;" horiz-adv-x="950" d="M188 0v983h91v-596h6l483 596h104l-319 -389l373 -594h-101l-325 526l-221 -260v-266h-91z" />
260
+ <glyph unicode="&#x139;" horiz-adv-x="956" d="M166 1493l256 252l57 -68l-272 -231zM199 0v1350h94v-1268h622v-82h-716z" />
261
+ <glyph unicode="&#x13a;" horiz-adv-x="485" d="M135 1597l256 252l58 -67l-273 -232zM188 131v1342h91v-1354q0 -31 12 -47.5t31 -16.5q16 0 36 4l17 -73q-33 -11 -66 -11q-121 0 -121 156z" />
262
+ <glyph unicode="&#x13b;" horiz-adv-x="956" d="M199 0v1350h94v-1268h622v-82h-716zM416 -387q128 9 179.5 34.5t51.5 71.5q0 84 -158 97l27 59q117 -17 164 -50t47 -99q0 -157 -297 -175z" />
263
+ <glyph unicode="&#x13c;" horiz-adv-x="485" d="M115 -387q128 9 179.5 34.5t51.5 71.5q0 84 -158 97l27 59q117 -17 164 -50t47 -99q0 -157 -297 -175zM188 131v1342h91v-1354q0 -31 12 -47.5t31 -16.5q16 0 36 4l17 -73q-33 -11 -66 -11q-121 0 -121 156z" />
264
+ <glyph unicode="&#x13d;" horiz-adv-x="956" d="M199 0v1350h94v-1268h622v-82h-716zM653 1481h78v-103l-16 -319h-56z" />
265
+ <glyph unicode="&#x13e;" horiz-adv-x="493" d="M188 131v1342h91v-1354q0 -31 12 -47.5t31 -16.5q16 0 36 4l17 -73q-33 -11 -66 -11q-121 0 -121 156zM408 1544h77v-102l-16 -320h-55z" />
266
+ <glyph unicode="&#x13f;" horiz-adv-x="956" d="M199 0v1350h94v-1268h622v-82h-716zM645 662q0 42 26 68t62 26q35 0 60.5 -25.5t25.5 -68.5q0 -41 -25.5 -67t-60.5 -26t-61.5 26t-26.5 67z" />
267
+ <glyph unicode="&#x140;" horiz-adv-x="630" d="M188 131v1342h91v-1354q0 -31 12 -47.5t31 -16.5q16 0 36 4l17 -73q-33 -11 -66 -11q-121 0 -121 156zM461 662q0 42 26 68t62 26q35 0 60.5 -25.5t25.5 -68.5q0 -41 -25.5 -67t-60.5 -26t-61.5 26t-26.5 67z" />
268
+ <glyph unicode="&#x141;" horiz-adv-x="958" d="M8 504l199 106v740h94v-699l383 203l37 -66l-420 -219v-487h623v-82h-717v526l-160 -86z" />
269
+ <glyph unicode="&#x142;" horiz-adv-x="489" d="M20 721l170 110v642h91v-590l116 78l39 -62l-155 -104v-676q0 -31 12 -47.5t31 -16.5q16 0 36 4l17 -73q-33 -11 -66 -11q-121 0 -121 156v614l-133 -86z" />
270
+ <glyph unicode="&#x143;" horiz-adv-x="1302" d="M199 0v1350h98l569 -953l152 -268h8q-1 44 -4.5 124t-5.5 145.5t-2 123.5v828h90v-1350h-98l-570 952l-151 269h-9q1 -24 7 -165t6 -218v-838h-90zM578 1493l256 252l57 -68l-273 -231z" />
271
+ <glyph unicode="&#x144;" horiz-adv-x="1089" d="M188 0v983h78l8 -152h7q86 86 165 131.5t172 45.5q152 0 224.5 -93t72.5 -284v-631h-90v618q0 159 -53 233.5t-172 74.5q-83 0 -153 -43t-168 -142v-741h-91zM471 1223l274 321l70 -59l-295 -309z" />
272
+ <glyph unicode="&#x145;" horiz-adv-x="1302" d="M199 0v1350h98l569 -953l152 -268h8q-1 44 -4.5 124t-5.5 145.5t-2 123.5v828h90v-1350h-98l-570 952l-151 269h-9q1 -24 7 -165t6 -218v-838h-90zM481 -387q129 9 180.5 34.5t51.5 71.5q0 84 -158 97l27 59q117 -17 164 -50t47 -99q0 -157 -297 -175z" />
273
+ <glyph unicode="&#x146;" horiz-adv-x="1089" d="M188 0v983h78l8 -152h7q86 86 165 131.5t172 45.5q152 0 224.5 -93t72.5 -284v-631h-90v618q0 159 -53 233.5t-172 74.5q-83 0 -153 -43t-168 -142v-741h-91zM385 -387q128 9 179.5 34.5t51.5 71.5q0 45 -40 68t-117 29l26 59q117 -17 164 -50t47 -99q0 -157 -297 -175z " />
274
+ <glyph unicode="&#x147;" horiz-adv-x="1302" d="M199 0v1350h98l569 -953l152 -268h8q-1 44 -4.5 124t-5.5 145.5t-2 123.5v828h90v-1350h-98l-570 952l-151 269h-9q1 -24 7 -165t6 -218v-838h-90zM385 1686l41 36l231 -200h9l231 200l41 -36l-231 -234h-91z" />
275
+ <glyph unicode="&#x148;" horiz-adv-x="1089" d="M188 0v983h78l8 -152h7q86 86 165 131.5t172 45.5q152 0 224.5 -93t72.5 -284v-631h-90v618q0 159 -53 233.5t-172 74.5q-83 0 -153 -43t-168 -142v-741h-91zM297 1468l45 41l233 -256h9l233 256l45 -41l-239 -294h-86z" />
276
+ <glyph unicode="&#x149;" horiz-adv-x="1492" d="M119 1024q72 59 104.5 115.5t32.5 138.5q-4 -2 -16 -2q-32 0 -56 20t-24 56q0 38 22 60t58 22q42 0 67 -36.5t25 -101.5q0 -205 -176 -319zM575 0v983h78l9 -152h6q85 85 164.5 131t173.5 46q152 0 224.5 -93t72.5 -284v-631h-91v618q0 159 -53 233.5t-172 74.5 q-83 0 -153 -43t-168 -142v-741h-91z" />
277
+ <glyph unicode="&#x14a;" horiz-adv-x="1263" d="M199 0v1350h94v-181q76 88 180.5 146.5t208.5 58.5q83 0 152 -22.5t128.5 -73.5t100.5 -129t64.5 -194.5t23.5 -264.5q0 -157 -17 -280.5t-46.5 -204.5t-71.5 -133.5t-89 -74.5t-102 -22q-91 0 -147 27l29 88q52 -22 110 -22q50 0 91 31.5t74.5 101t52 194t18.5 295.5 q0 169 -28 288t-81 185.5t-120 95.5t-156 29q-90 0 -198 -63.5t-177 -153.5v-1071h-94z" />
278
+ <glyph unicode="&#x14b;" horiz-adv-x="1089" d="M188 0v983h78l8 -152h7q86 86 165 131.5t172 45.5q152 0 224.5 -93t72.5 -284v-715q0 -146 -53.5 -216.5t-167.5 -70.5q-60 0 -125 25l21 74q59 -19 102 -19q77 0 105 54t28 159v696q0 159 -53 233.5t-172 74.5q-83 0 -153 -43t-168 -142v-741h-91z" />
279
+ <glyph unicode="&#x14c;" horiz-adv-x="1335" d="M113 680q0 316 154.5 505t400.5 189q247 0 402 -189t155 -505q0 -318 -155 -511.5t-402 -193.5q-245 0 -400 193.5t-155 511.5zM211 680q0 -281 125.5 -450t331.5 -169t331 169t125 450q0 278 -124.5 443t-331.5 165t-332 -165t-125 -443zM414 1522v73h508v-73h-508z" />
280
+ <glyph unicode="&#x14d;" horiz-adv-x="1095" d="M106 489q0 120 35.5 219.5t96.5 164t140.5 100t168.5 35.5q90 0 169.5 -35t140.5 -100t96.5 -164.5t35.5 -219.5q0 -119 -35.5 -217.5t-96.5 -162.5t-140.5 -99t-169.5 -35q-89 0 -168.5 35t-140.5 99t-96.5 162.5t-35.5 217.5zM201 489q0 -192 98 -313t248 -121 q151 0 249.5 121t98.5 313q0 193 -98.5 316t-249.5 123q-150 0 -248 -122.5t-98 -316.5zM295 1241v74h504v-74h-504z" />
281
+ <glyph unicode="&#x14e;" horiz-adv-x="1335" d="M113 680q0 316 154.5 505t400.5 189q247 0 402 -189t155 -505q0 -318 -155 -511.5t-402 -193.5q-245 0 -400 193.5t-155 511.5zM211 680q0 -281 125.5 -450t331.5 -169t331 169t125 450q0 278 -124.5 443t-331.5 165t-332 -165t-125 -443zM389 1708l68 10q11 -84 65 -140 t146 -56t146 56t65 140l67 -10q-6 -48 -24.5 -91.5t-51 -80.5t-85 -59.5t-117.5 -22.5q-126 0 -196.5 75.5t-82.5 178.5z" />
282
+ <glyph unicode="&#x14f;" horiz-adv-x="1095" d="M106 489q0 120 35.5 219.5t96.5 164t140.5 100t168.5 35.5q90 0 169.5 -35t140.5 -100t96.5 -164.5t35.5 -219.5q0 -119 -35.5 -217.5t-96.5 -162.5t-140.5 -99t-169.5 -35q-89 0 -168.5 35t-140.5 99t-96.5 162.5t-35.5 217.5zM201 489q0 -192 98 -313t248 -121 q151 0 249.5 121t98.5 313q0 193 -98.5 316t-249.5 123q-150 0 -248 -122.5t-98 -316.5zM242 1470l67 11q14 -98 75 -171t163 -73t162.5 73t74.5 171l68 -11q-7 -55 -25.5 -105t-53 -96.5t-93 -74t-133.5 -27.5t-133.5 27.5t-93 74t-53 96.5t-25.5 105z" />
283
+ <glyph unicode="&#x150;" horiz-adv-x="1335" d="M113 680q0 316 154.5 505t400.5 189q247 0 402 -189t155 -505q0 -318 -155 -511.5t-402 -193.5q-245 0 -400 193.5t-155 511.5zM211 680q0 -281 125.5 -450t331.5 -169t331 169t125 450q0 278 -124.5 443t-331.5 165t-332 -165t-125 -443zM498 1477l180 303l70 -43 l-197 -287zM793 1477l180 303l69 -43l-196 -287z" />
284
+ <glyph unicode="&#x151;" horiz-adv-x="1095" d="M106 489q0 120 35.5 219.5t96.5 164t140.5 100t168.5 35.5q90 0 169.5 -35t140.5 -100t96.5 -164.5t35.5 -219.5q0 -119 -35.5 -217.5t-96.5 -162.5t-140.5 -99t-169.5 -35q-89 0 -168.5 35t-140.5 99t-96.5 162.5t-35.5 217.5zM201 489q0 -192 98 -313t248 -121 q151 0 249.5 121t98.5 313q0 193 -98.5 316t-249.5 123q-150 0 -248 -122.5t-98 -316.5zM389 1192l176 344l72 -39l-193 -332zM664 1192l176 344l71 -39l-192 -332z" />
285
+ <glyph unicode="&#x152;" horiz-adv-x="1705" d="M113 680q0 313 164 491.5t477 178.5h835v-82h-604v-510h502v-82h-502v-594h625v-82h-858q-311 0 -475 182.5t-164 497.5zM211 680q0 -134 33.5 -242.5t100 -189t173 -124.5t244.5 -44h129v1190h-129q-274 0 -412.5 -158t-138.5 -432z" />
286
+ <glyph unicode="&#x153;" horiz-adv-x="1736" d="M106 489q0 120 35.5 219.5t95.5 164t138 100t164 35.5q123 0 226.5 -75.5t154.5 -215.5q55 135 152 213t214 78q175 0 275 -120t100 -335q0 -37 -6 -74h-690q0 -184 101.5 -304t252.5 -120q139 0 262 88l39 -71q-50 -30 -84.5 -47.5t-96.5 -33.5t-130 -16q-128 0 -231 78 t-156 211q-57 -142 -155 -215.5t-228 -73.5q-86 0 -164 35t-138 99t-95.5 162.5t-35.5 217.5zM201 489q0 -192 96 -313t242 -121q148 0 243 120.5t95 313.5q0 194 -95 316.5t-243 122.5q-146 0 -242 -123t-96 -316zM965 549h610q0 185 -77.5 283t-211.5 98q-124 0 -215 -107 t-106 -274z" />
287
+ <glyph unicode="&#x154;" horiz-adv-x="1114" d="M199 0v1350h387q442 0 442 -357q0 -158 -91.5 -251.5t-254.5 -114.5l373 -627h-109l-366 621h-287v-621h-94zM293 698h268q181 0 276 74t95 221q0 148 -93 212.5t-278 64.5h-268v-572zM481 1493l256 252l58 -68l-273 -231z" />
288
+ <glyph unicode="&#x155;" horiz-adv-x="649" d="M188 0v983h78l8 -182h7q52 96 123 151.5t155 55.5q55 0 98 -21l-20 -82q-47 17 -90 17q-72 0 -143 -61t-125 -191v-670h-91zM301 1223l274 321l70 -59l-295 -309z" />
289
+ <glyph unicode="&#x156;" horiz-adv-x="1114" d="M199 0v1350h387q442 0 442 -357q0 -158 -91.5 -251.5t-254.5 -114.5l373 -627h-109l-366 621h-287v-621h-94zM293 698h268q181 0 276 74t95 221q0 148 -93 212.5t-278 64.5h-268v-572zM424 -387q128 9 179.5 34.5t51.5 71.5q0 45 -40 68t-117 29l26 59q117 -17 164 -50 t47 -99q0 -157 -297 -175z" />
290
+ <glyph unicode="&#x157;" horiz-adv-x="649" d="M57 -387q129 9 180.5 34.5t51.5 71.5q0 84 -158 97l27 59q117 -17 164 -50t47 -99q0 -157 -297 -175zM188 0v983h78l8 -182h7q52 96 123 151.5t155 55.5q55 0 98 -21l-20 -82q-47 17 -90 17q-72 0 -143 -61t-125 -191v-670h-91z" />
291
+ <glyph unicode="&#x158;" horiz-adv-x="1114" d="M199 0v1350h387q442 0 442 -357q0 -158 -91.5 -251.5t-254.5 -114.5l373 -627h-109l-366 621h-287v-621h-94zM289 1686l41 36l231 -200h8l232 200l41 -36l-232 -234h-90zM293 698h268q181 0 276 74t95 221q0 148 -93 212.5t-278 64.5h-268v-572z" />
292
+ <glyph unicode="&#x159;" horiz-adv-x="649" d="M127 1468l45 41l234 -256h8l233 256l45 -41l-239 -294h-86zM188 0v983h78l8 -182h7q52 96 123 151.5t155 55.5q55 0 98 -21l-20 -82q-47 17 -90 17q-72 0 -143 -61t-125 -191v-670h-91z" />
293
+ <glyph unicode="&#x15a;" horiz-adv-x="1067" d="M94 178l62 66q75 -85 178 -134t217 -49q154 0 245 75t91 196q0 49 -13.5 89t-32 66t-55 51.5t-64 39.5t-77.5 36l-205 93q-43 19 -74.5 35.5t-71.5 46.5t-66 63t-44 82.5t-18 107.5q0 145 111.5 238.5t281.5 93.5q115 0 211.5 -45t163.5 -117l-53 -61q-134 137 -322 137 q-134 0 -216.5 -65.5t-82.5 -175.5q0 -32 8.5 -61.5t20 -50.5t33.5 -42.5t38 -34t46 -29t43.5 -23t44.5 -20.5l204 -90q52 -23 89 -43.5t76.5 -52t63.5 -66.5t40 -85.5t16 -110.5q0 -158 -119 -260.5t-313 -102.5q-276 0 -457 203zM473 1493l256 252l57 -68l-272 -231z" />
294
+ <glyph unicode="&#x15b;" horiz-adv-x="829" d="M66 111l53 67q73 -61 144.5 -93t168.5 -32q111 0 172.5 56t61.5 139q0 44 -20 79t-59.5 61t-73.5 42t-87 35q-42 15 -65.5 23.5t-61.5 25.5t-60 31t-49 36t-41.5 44.5t-25 53.5t-10.5 66q0 112 84.5 187.5t232.5 75.5q75 0 150 -28.5t131 -74.5l-49 -63q-57 42 -112 65 t-124 23q-107 0 -164 -52t-57 -126q0 -33 14 -60.5t32.5 -45.5t54 -37t60 -29t70.5 -27l24 -9q137 -50 191 -88q107 -75 107 -204q0 -116 -89.5 -196.5t-242.5 -80.5q-198 0 -360 136zM324 1223l274 321l70 -59l-295 -309z" />
295
+ <glyph unicode="&#x15c;" horiz-adv-x="1067" d="M94 178l62 66q75 -85 178 -134t217 -49q154 0 245 75t91 196q0 49 -13.5 89t-32 66t-55 51.5t-64 39.5t-77.5 36l-205 93q-43 19 -74.5 35.5t-71.5 46.5t-66 63t-44 82.5t-18 107.5q0 145 111.5 238.5t281.5 93.5q115 0 211.5 -45t163.5 -117l-53 -61q-134 137 -322 137 q-134 0 -216.5 -65.5t-82.5 -175.5q0 -32 8.5 -61.5t20 -50.5t33.5 -42.5t38 -34t46 -29t43.5 -23t44.5 -20.5l204 -90q52 -23 89 -43.5t76.5 -52t63.5 -66.5t40 -85.5t16 -110.5q0 -158 -119 -260.5t-313 -102.5q-276 0 -457 203zM281 1487l231 231h90l232 -231l-41 -39 l-232 201h-8l-231 -201z" />
296
+ <glyph unicode="&#x15d;" horiz-adv-x="829" d="M66 111l53 67q73 -61 144.5 -93t168.5 -32q111 0 172.5 56t61.5 139q0 44 -20 79t-59.5 61t-73.5 42t-87 35q-42 15 -65.5 23.5t-61.5 25.5t-60 31t-49 36t-41.5 44.5t-25 53.5t-10.5 66q0 112 84.5 187.5t232.5 75.5q75 0 150 -28.5t131 -74.5l-49 -63q-57 42 -112 65 t-124 23q-107 0 -164 -52t-57 -126q0 -33 14 -60.5t32.5 -45.5t54 -37t60 -29t70.5 -27l24 -9q137 -50 191 -88q107 -75 107 -204q0 -116 -89.5 -196.5t-242.5 -80.5q-198 0 -360 136zM150 1214l239 295h86l240 -295l-45 -43l-234 259h-8l-233 -259z" />
297
+ <glyph unicode="&#x15e;" horiz-adv-x="1067" d="M94 178l62 66q75 -85 178 -134t217 -49q154 0 245 75t91 196q0 49 -13.5 89t-32 66t-55 51.5t-64 39.5t-77.5 36l-205 93q-43 19 -74.5 35.5t-71.5 46.5t-66 63t-44 82.5t-18 107.5q0 145 111.5 238.5t281.5 93.5q115 0 211.5 -45t163.5 -117l-53 -61q-134 137 -322 137 q-134 0 -216.5 -65.5t-82.5 -175.5q0 -32 8.5 -61.5t20 -50.5t33.5 -42.5t38 -34t46 -29t43.5 -23t44.5 -20.5l204 -90q52 -23 89 -43.5t76.5 -52t63.5 -66.5t40 -85.5t16 -110.5q0 -148 -106.5 -248.5t-282.5 -112.5l-49 -110q72 -19 108.5 -51t36.5 -90q0 -157 -297 -175 l-14 62q129 9 180 34.5t51 73.5q0 44 -37 68.5t-122 36.5l71 149q-258 11 -428 203z" />
298
+ <glyph unicode="&#x15f;" horiz-adv-x="829" d="M66 111l53 67q73 -61 144.5 -93t168.5 -32q111 0 172.5 56t61.5 139q0 44 -20 79t-59.5 61t-73.5 42t-87 35q-42 15 -65.5 23.5t-61.5 25.5t-60 31t-49 36t-41.5 44.5t-25 53.5t-10.5 66q0 112 84.5 187.5t232.5 75.5q75 0 150 -28.5t131 -74.5l-49 -63q-57 42 -112 65 t-124 23q-107 0 -164 -52t-57 -126q0 -33 14 -60.5t32.5 -45.5t54 -37t60 -29t70.5 -27l24 -9q137 -50 191 -88q107 -75 107 -204q0 -104 -74 -180.5t-203 -91.5l-49 -113q72 -19 109 -51t37 -90q0 -157 -297 -175l-15 62q129 9 180.5 34.5t51.5 73.5q0 44 -37.5 68.5 t-122.5 36.5l70 149q-190 6 -342 136z" />
299
+ <glyph unicode="&#x160;" horiz-adv-x="1067" d="M94 178l62 66q75 -85 178 -134t217 -49q154 0 245 75t91 196q0 49 -13.5 89t-32 66t-55 51.5t-64 39.5t-77.5 36l-205 93q-43 19 -74.5 35.5t-71.5 46.5t-66 63t-44 82.5t-18 107.5q0 145 111.5 238.5t281.5 93.5q115 0 211.5 -45t163.5 -117l-53 -61q-134 137 -322 137 q-134 0 -216.5 -65.5t-82.5 -175.5q0 -32 8.5 -61.5t20 -50.5t33.5 -42.5t38 -34t46 -29t43.5 -23t44.5 -20.5l204 -90q52 -23 89 -43.5t76.5 -52t63.5 -66.5t40 -85.5t16 -110.5q0 -158 -119 -260.5t-313 -102.5q-276 0 -457 203zM281 1686l41 36l231 -200h8l232 200 l41 -36l-232 -234h-90z" />
300
+ <glyph unicode="&#x161;" horiz-adv-x="829" d="M66 111l53 67q73 -61 144.5 -93t168.5 -32q111 0 172.5 56t61.5 139q0 44 -20 79t-59.5 61t-73.5 42t-87 35q-42 15 -65.5 23.5t-61.5 25.5t-60 31t-49 36t-41.5 44.5t-25 53.5t-10.5 66q0 112 84.5 187.5t232.5 75.5q75 0 150 -28.5t131 -74.5l-49 -63q-57 42 -112 65 t-124 23q-107 0 -164 -52t-57 -126q0 -33 14 -60.5t32.5 -45.5t54 -37t60 -29t70.5 -27l24 -9q137 -50 191 -88q107 -75 107 -204q0 -116 -89.5 -196.5t-242.5 -80.5q-198 0 -360 136zM150 1468l45 41l233 -256h8l234 256l45 -41l-240 -294h-86z" />
301
+ <glyph unicode="&#x162;" horiz-adv-x="1073" d="M59 1268v82h955v-82h-430v-1268h-9l-59 -133q72 -19 109 -51t37 -90q0 -157 -297 -175l-15 62q129 9 180.5 34.5t51.5 73.5q0 44 -37.5 68.5t-122.5 36.5l82 174h-15v1268h-430z" />
302
+ <glyph unicode="&#x163;" horiz-adv-x="638" d="M57 905v70l156 8l12 285h78v-285h285v-78h-285v-641q0 -103 35.5 -156t130.5 -53q55 0 123 31l24 -74q-105 -37 -159 -37l-49 -108q72 -19 108.5 -51t36.5 -90q0 -157 -297 -175l-14 62q129 9 180 34.5t51 73.5q0 44 -37.5 68.5t-122.5 36.5l74 156q-96 19 -136 93 t-40 197v633h-154z" />
303
+ <glyph unicode="&#x164;" horiz-adv-x="1073" d="M59 1268v82h955v-82h-430v-1268h-95v1268h-430zM258 1686l41 36l231 -200h9l231 200l41 -36l-231 -234h-91z" />
304
+ <glyph unicode="&#x165;" horiz-adv-x="638" d="M57 905v70l156 8l12 285h78v-285h285v-78h-285v-641q0 -103 35.5 -156t130.5 -53q55 0 123 31l24 -74q-105 -37 -159 -37q-135 0 -190.5 77t-55.5 220v633h-154zM492 1544h77v-102l-16 -320h-55z" />
305
+ <glyph unicode="&#x166;" horiz-adv-x="1073" d="M59 1268v82h955v-82h-430v-525h260v-67h-260v-676h-95v676h-260v63l177 4h83v525h-430z" />
306
+ <glyph unicode="&#x167;" horiz-adv-x="638" d="M57 483v60l154 8v354h-154v70l156 8l12 285h78v-285h285v-78h-285v-354h285v-68h-285v-219q0 -103 35.5 -156t130.5 -53q55 0 123 31l24 -74q-105 -37 -159 -37q-135 0 -190.5 77t-55.5 220v211h-154z" />
307
+ <glyph unicode="&#x168;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5zM311 1483q5 99 52.5 162t128.5 63q44 0 82 -16.5t65.5 -40.5t52.5 -48t54.5 -40.5t60.5 -16.5q44 0 74 42.5t39 115.5l67 -6q-5 -99 -52.5 -163.5t-127.5 -64.5q-44 0 -82 16.5t-65.5 40.5t-52.5 48t-54.5 40.5t-60.5 16.5q-45 0 -76 -42t-37 -113z" />
308
+ <glyph unicode="&#x169;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284zM207 1196q16 258 182 258q43 0 80 -20.5t63.5 -49t51.5 -57.5t55 -49.5t61 -20.5q51 0 77.5 53.5 t31.5 137.5l70 -4q-3 -52 -13.5 -95t-30.5 -81t-55 -60t-82 -22q-43 0 -80.5 20t-64.5 49t-52 58t-54 49t-60 20q-100 0 -111 -190z" />
309
+ <glyph unicode="&#x16a;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5zM395 1522v73h508v-73h-508z" />
310
+ <glyph unicode="&#x16b;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284zM281 1241v74h503v-74h-503z" />
311
+ <glyph unicode="&#x16c;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5zM371 1708l67 10q11 -84 65 -140t146 -56t146 56t65 140l68 -10q-12 -103 -82.5 -178.5t-196.5 -75.5q-65 0 -117.5 22.5t-85 59.5t-51 80.5t-24.5 91.5z" />
312
+ <glyph unicode="&#x16d;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284zM238 1470l67 11q14 -98 75 -171t163 -73t162.5 73t74.5 171l68 -11q-7 -55 -25.5 -105t-53 -96.5 t-93 -74t-133.5 -27.5t-133.5 27.5t-93 74t-53 96.5t-25.5 105z" />
313
+ <glyph unicode="&#x16e;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5zM469 1608q0 80 51 128t129 48q76 0 128 -48.5t52 -127.5q0 -76 -52.5 -125t-127.5 -49q-77 0 -128.5 48.5t-51.5 125.5zM530 1608q0 -58 33.5 -89.5t85.5 -31.5q49 0 82 32t33 89q0 56 -33.5 89.5t-81.5 33.5q-51 0 -85 -33t-34 -90z" />
314
+ <glyph unicode="&#x16f;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284zM344 1317q0 87 56 141.5t143 54.5t142.5 -54.5t55.5 -141.5q0 -86 -55.5 -140.5t-142.5 -54.5 t-143 54.5t-56 140.5zM410 1317q0 -63 38 -102t95 -39t95 39t38 102q0 65 -38 104t-95 39t-95 -39t-38 -104z" />
315
+ <glyph unicode="&#x170;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5zM479 1477l180 303l70 -43l-197 -287zM774 1477l180 303l70 -43l-197 -287z" />
316
+ <glyph unicode="&#x171;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284zM385 1192l176 344l72 -39l-193 -332zM659 1192l177 344l71 -39l-192 -332z" />
317
+ <glyph unicode="&#x172;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -102 -18 -183t-44.5 -133t-71.5 -96t-84 -68.5t-98 -53.5q-79 -40 -125.5 -102.5t-46.5 -119.5q0 -51 31 -78.5t74 -27.5 q46 0 88 29l33 -56q-23 -20 -62 -34.5t-71 -14.5q-76 0 -125 43.5t-49 124.5q0 17 2 33t8 32t10 27t15 26.5t15.5 23t20 23.5t19 20.5t21.5 22t20 19.5q-471 0 -471 543z" />
318
+ <glyph unicode="&#x173;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 52.5 -233.5t170.5 -74.5q85 0 157 46.5t161 154.5v725h90v-983q-176 -109 -176 -238q0 -51 29.5 -78.5t70.5 -27.5q49 0 88 29l33 -54q-23 -20 -61.5 -33.5t-71.5 -13.5q-74 0 -120 43t-46 123q0 74 46 137t132 127l-10 150h-4 q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284z" />
319
+ <glyph unicode="&#x174;" horiz-adv-x="1576" d="M57 1350h99l170 -795q12 -58 43.5 -208.5t48.5 -231.5h8q64 280 104 440l211 795h97l211 -795q18 -73 53.5 -219.5t54.5 -220.5h8q16 73 44.5 219.5t43.5 220.5l170 795h93l-302 -1350h-104l-246 926q-60 255 -71 305h-9q-13 -59 -39 -161.5t-36 -143.5l-242 -926h-102z M512 1487l231 231h91l231 -231l-41 -39l-231 201h-9l-231 -201z" />
320
+ <glyph unicode="&#x175;" horiz-adv-x="1402" d="M49 983h98l177 -637q41 -148 67 -262h8q12 47 72 262l178 637h109l178 -637q19 -68 74 -262h8q8 29 32 120t37 142l175 637h92l-283 -983h-119l-172 610q-15 48 -38 141t-37 140h-9q-42 -177 -78 -285l-169 -606h-109zM420 1214l239 295h86l240 -295l-45 -43l-233 259h-9 l-233 -259z" />
321
+ <glyph unicode="&#x176;" horiz-adv-x="915" d="M6 1350h100l205 -422q105 -218 144 -291h8q110 212 145 291l205 422h96l-405 -803v-547h-94v547zM180 1487l232 231h90l231 -231l-41 -39l-231 201h-8l-232 -201z" />
322
+ <glyph unicode="&#x177;" horiz-adv-x="892" d="M25 983h98l237 -618q82 -217 107 -275h8q18 51 53 159.5t37 115.5l211 618h92l-389 -1106q-108 -326 -329 -326q-54 0 -101 21l21 80q42 -17 80 -17q86 0 149 70.5t102 190.5l27 86zM186 1214l240 295h86l240 -295l-45 -43l-234 259h-8l-234 -259z" />
323
+ <glyph unicode="&#x178;" horiz-adv-x="915" d="M6 1350h100l205 -422q105 -218 144 -291h8q110 212 145 291l205 422h96l-405 -803v-547h-94v547zM182 1559q0 35 20.5 55t53.5 20t54.5 -20.5t21.5 -54.5q0 -33 -21.5 -53.5t-54.5 -20.5t-53.5 20.5t-20.5 53.5zM582 1559q0 35 21 55t54 20t53.5 -20t20.5 -55 q0 -33 -20.5 -53.5t-53.5 -20.5t-54 20.5t-21 53.5z" />
324
+ <glyph unicode="&#x179;" horiz-adv-x="1101" d="M102 0v55l777 1213h-709v82h827v-56l-778 -1212h785v-82h-902zM489 1493l256 252l58 -68l-273 -231z" />
325
+ <glyph unicode="&#x17a;" horiz-adv-x="827" d="M55 0v49l582 856h-518v78h635v-47l-580 -856h600v-80h-719zM340 1223l274 321l70 -59l-295 -309z" />
326
+ <glyph unicode="&#x17b;" horiz-adv-x="1101" d="M102 0v55l777 1213h-709v82h827v-56l-778 -1212h785v-82h-902zM492 1561q0 35 23.5 57t57.5 22t58 -22t24 -57q0 -37 -23.5 -60.5t-58.5 -23.5t-58 23.5t-23 60.5z" />
327
+ <glyph unicode="&#x17c;" horiz-adv-x="827" d="M55 0v49l582 856h-518v78h635v-47l-580 -856h600v-80h-719zM371 1305q0 35 22 57t56 22t55.5 -22t21.5 -57q0 -38 -21.5 -61t-55.5 -23t-56 23t-22 61z" />
328
+ <glyph unicode="&#x17d;" horiz-adv-x="1101" d="M102 0v55l777 1213h-709v82h827v-56l-778 -1212h785v-82h-902zM297 1686l41 36l231 -200h9l231 200l41 -36l-232 -234h-90z" />
329
+ <glyph unicode="&#x17e;" horiz-adv-x="827" d="M55 0v49l582 856h-518v78h635v-47l-580 -856h600v-80h-719zM166 1468l45 41l233 -256h9l233 256l45 -41l-239 -294h-86z" />
330
+ <glyph unicode="&#x180;" horiz-adv-x="1081" d="M31 1190v59l157 8v216h91v-216h389v-67h-389v-213l-5 -193q183 154 340 154q192 0 293 -124.5t101 -340.5q0 -114 -35.5 -209.5t-95.5 -157.5t-138.5 -96.5t-165.5 -34.5q-69 0 -146.5 33.5t-147.5 91.5h-5l-10 -100h-76v1190h-157zM279 182q150 -127 290 -127 q150 0 246 116.5t96 299.5q0 176 -75.5 281.5t-235.5 105.5q-139 0 -321 -162v-514z" />
331
+ <glyph unicode="&#x18f;" horiz-adv-x="1327" d="M127 668q0 3 1 10.5t1 11.5h991q-3 289 -119 446.5t-333 157.5q-102 0 -193.5 -37t-157.5 -100l-49 64q71 70 174.5 111.5t225.5 41.5q261 0 403.5 -181.5t142.5 -514.5q0 -329 -150 -516t-405 -187q-166 0 -287 88.5t-183 244t-62 360.5zM223 612q6 -254 125.5 -405.5 t310.5 -151.5q204 0 324.5 147t134.5 410h-895z" />
332
+ <glyph unicode="&#x192;" d="M23 -168l26 70q51 -23 107 -23q102 0 153.5 89t67.5 249l57 537h-194v67l137 8h65l15 129q23 202 94 309t205 107q65 0 151 -37l-24 -73q-71 30 -127 30q-174 0 -209 -327l-15 -138h283v-75h-291l-59 -545q-21 -200 -93.5 -305t-215.5 -105q-75 0 -133 33z" />
333
+ <glyph unicode="&#x193;" horiz-adv-x="1239" d="M113 678q0 319 163.5 507.5t432.5 188.5q133 0 243 -47q-28 57 -28 119q0 84 55 133t139 49q43 0 101 -24l-21 -74q-5 2 -17 6.5t-18.5 7t-18 4.5t-22.5 2q-54 0 -84 -34t-30 -82t14.5 -85t54.5 -98l-55 -63q-127 100 -311 100q-231 0 -365.5 -164t-134.5 -446 q0 -284 129.5 -450.5t357.5 -166.5q93 0 173.5 27t129.5 76v420h-323v80h414v-535q-66 -71 -169.5 -112.5t-230.5 -41.5q-262 0 -420.5 191t-158.5 512z" />
334
+ <glyph unicode="&#x1a0;" horiz-adv-x="1335" d="M121 680q0 316 154.5 505t400.5 189q141 0 256 -65q192 34 192 180q0 61 -28 110l80 39q41 -68 41 -143q0 -93 -57 -152.5t-154 -85.5q108 -89 167.5 -237t59.5 -340q0 -318 -155 -511.5t-402 -193.5q-245 0 -400 193.5t-155 511.5zM219 680q0 -281 125.5 -450 t331.5 -169t331.5 169t125.5 450q0 278 -125 443t-332 165t-332 -165t-125 -443z" />
335
+ <glyph unicode="&#x1a1;" horiz-adv-x="1095" d="M106 489q0 120 35.5 219.5t96.5 164t140.5 100t168.5 35.5q103 0 188 -43q203 31 203 200q0 53 -29 109l76 41q41 -74 41 -144q0 -188 -215 -256q83 -67 130.5 -176t47.5 -250q0 -119 -35.5 -217.5t-96.5 -162.5t-140.5 -99t-169.5 -35q-89 0 -168.5 35t-140.5 99 t-96.5 162.5t-35.5 217.5zM201 489q0 -192 98 -313t248 -121q151 0 249.5 121t98.5 313q0 193 -98.5 316t-249.5 123q-150 0 -248 -122.5t-98 -316.5z" />
336
+ <glyph unicode="&#x1af;" horiz-adv-x="1320" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h20q99 14 146 56.5t47 123.5q0 59 -29 110l82 39q39 -70 39 -143q0 -183 -217 -240v-778q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99 t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5t-25 218.5z" />
337
+ <glyph unicode="&#x1b0;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h14q176 33 176 203q0 54 -28 108l75 41q41 -68 41 -143q0 -190 -188 -256v-936h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284z" />
338
+ <glyph unicode="&#x1c2;" horiz-adv-x="538" d="M12 360v60l160 8h74v252h-234v59l160 9h74v788h73v-788h207v-68h-207v-252h207v-68h-207v-872h-73v872h-234z" />
339
+ <glyph unicode="&#x1cd;" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM262 1686l41 36l232 -200h8l231 200l41 -36l-231 -234h-90zM299 543h479l-86 252q-95 277 -149 467h-8q-49 -174 -150 -467z" />
340
+ <glyph unicode="&#x1ce;" horiz-adv-x="1005" d="M119 246q0 161 151 247t484 123q4 312 -234 312q-153 0 -313 -115l-41 68q181 127 366 127q84 0 146 -29t97.5 -82t52 -119.5t16.5 -148.5v-629h-78l-8 127h-6q-190 -152 -349 -152q-124 0 -204 69t-80 202zM211 250q0 -100 58.5 -148.5t150.5 -48.5q81 0 159 39t175 121 v334q-296 -34 -419.5 -105t-123.5 -192zM240 1468l45 41l233 -256h8l234 256l45 -41l-240 -294h-86z" />
341
+ <glyph unicode="&#x1cf;" horiz-adv-x="491" d="M-31 1686l41 36l232 -200h8l231 200l41 -36l-231 -234h-90zM199 0v1350h94v-1350h-94z" />
342
+ <glyph unicode="&#x1d0;" horiz-adv-x="468" d="M-49 1468l45 41l233 -256h9l233 256l45 -41l-240 -294h-86zM188 0v983h91v-983h-91z" />
343
+ <glyph unicode="&#x1d1;" horiz-adv-x="1335" d="M113 680q0 316 154.5 505t400.5 189q247 0 402 -189t155 -505q0 -318 -155 -511.5t-402 -193.5q-245 0 -400 193.5t-155 511.5zM211 680q0 -281 125.5 -450t331.5 -169t331 169t125 450q0 278 -124.5 443t-331.5 165t-332 -165t-125 -443zM391 1686l41 36l232 -200h8 l231 200l41 -36l-231 -234h-90z" />
344
+ <glyph unicode="&#x1d2;" horiz-adv-x="1095" d="M106 489q0 120 35.5 219.5t96.5 164t140.5 100t168.5 35.5q90 0 169.5 -35t140.5 -100t96.5 -164.5t35.5 -219.5q0 -119 -35.5 -217.5t-96.5 -162.5t-140.5 -99t-169.5 -35q-89 0 -168.5 35t-140.5 99t-96.5 162.5t-35.5 217.5zM201 489q0 -192 98 -313t248 -121 q151 0 249.5 121t98.5 313q0 193 -98.5 316t-249.5 123q-150 0 -248 -122.5t-98 -316.5zM264 1468l45 41l234 -256h8l233 256l45 -41l-239 -294h-86z" />
345
+ <glyph unicode="&#x1d3;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5zM373 1686l41 36l231 -200h8l232 200l41 -36l-232 -234h-90z" />
346
+ <glyph unicode="&#x1d4;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284zM260 1468l45 41l234 -256h8l233 256l45 -41l-239 -294h-86z" />
347
+ <glyph unicode="&#x1d5;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5zM377 1556q0 33 20.5 53.5t51.5 20.5t52 -20.5t21 -53.5t-20.5 -52t-52.5 -19t-52 19t-20 52zM395 1749v68h508v-68h-508zM776 1556q0 33 21.5 53.5t52.5 20.5t51.5 -20.5t20.5 -53.5t-20 -52t-52 -19t-53 19t-21 52z" />
348
+ <glyph unicode="&#x1d6;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284zM287 1530v67h508v-67h-508zM289 1298q0 31 20 51.5t51 20.5t52.5 -20.5t21.5 -51.5t-21.5 -52 t-52.5 -21t-51 21t-20 52zM651 1298q0 31 21.5 51.5t52.5 20.5t51.5 -20.5t20.5 -51.5t-20.5 -52t-51.5 -21t-52.5 21t-21.5 52z" />
349
+ <glyph unicode="&#x1d7;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5zM377 1556q0 33 20.5 53.5t51.5 20.5t52 -20.5t21 -53.5t-20.5 -52t-52.5 -19t-52 19t-20 52zM592 1718l192 217l64 -51l-211 -201zM776 1556q0 33 21.5 53.5t52.5 20.5t51.5 -20.5t20.5 -53.5t-20 -52t-52 -19t-53 19t-21 52z" />
350
+ <glyph unicode="&#x1d8;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284zM289 1298q0 31 20 51.5t51 20.5t52.5 -20.5t21.5 -51.5t-21.5 -52t-52.5 -21t-51 21t-20 52z M465 1470l174 213l63 -49l-190 -200zM651 1298q0 31 21.5 51.5t52.5 20.5t51.5 -20.5t20.5 -51.5t-20.5 -52t-51.5 -21t-52.5 21t-21.5 52z" />
351
+ <glyph unicode="&#x1d9;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5zM377 1556q0 33 20.5 53.5t51.5 20.5t52 -20.5t21 -53.5t-20.5 -52t-52.5 -19t-52 19t-20 52zM395 1890l39 41l211 -157h8l211 157l39 -41l-213 -192h-82zM776 1556q0 33 21.5 53.5t52.5 20.5t51.5 -20.5t20.5 -53.5t-20 -52t-52 -19t-53 19t-21 52z" />
352
+ <glyph unicode="&#x1da;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284zM289 1298q0 31 20 51.5t51 20.5t52.5 -20.5t21.5 -51.5t-21.5 -52t-52.5 -21t-51 21t-20 52z M307 1642l41 39l191 -159h8l190 159l41 -39l-196 -188h-78zM651 1298q0 31 21.5 51.5t52.5 20.5t51.5 -20.5t20.5 -51.5t-20.5 -52t-51.5 -21t-52.5 21t-21.5 52z" />
353
+ <glyph unicode="&#x1db;" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -104 19 -185.5t52 -134t79.5 -86t97 -47.5t110.5 -14q77 0 140.5 23.5t116.5 75t82.5 145.5t29.5 223v822h88v-832q0 -123 -25.5 -218.5t-68 -155.5t-102.5 -99t-123.5 -54.5t-137.5 -15.5q-73 0 -136 15.5t-122.5 54.5t-101.5 99t-67 155.5 t-25 218.5zM377 1556q0 33 20.5 53.5t51.5 20.5t52 -20.5t21 -53.5t-20.5 -52t-52.5 -19t-52 19t-20 52zM451 1884l63 51l193 -217l-45 -35zM776 1556q0 33 21.5 53.5t52.5 20.5t51.5 -20.5t20.5 -53.5t-20 -52t-52 -19t-53 19t-21 52z" />
354
+ <glyph unicode="&#x1dc;" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -159 53 -233.5t170 -74.5q85 0 157 46.5t161 154.5v725h90v-983h-76l-10 164h-4q-78 -92 -158 -140.5t-176 -48.5q-152 0 -224.5 93t-72.5 284zM289 1298q0 31 20 51.5t51 20.5t52.5 -20.5t21.5 -51.5t-21.5 -52t-52.5 -21t-51 21t-20 52z M383 1634l63 49l175 -213l-48 -36zM651 1298q0 31 21.5 51.5t52.5 20.5t51.5 -20.5t20.5 -51.5t-20.5 -52t-51.5 -21t-52.5 21t-21.5 52z" />
355
+ <glyph unicode="&#x1e2;" horiz-adv-x="1656" d="M43 0l748 1350h749v-82h-604v-510h502v-82h-502v-594h625v-82h-719v444h-455l-244 -444h-100zM430 522h412v746h-8q-74 -133 -254 -473zM934 1526v73h508v-73h-508z" />
356
+ <glyph unicode="&#x1e3;" horiz-adv-x="1605" d="M133 244q0 161 150.5 248t474.5 124q4 312 -232 312q-148 0 -303 -115l-41 68q181 127 353 127q117 0 188.5 -65t97.5 -181q55 114 145 180t197 66q172 0 268.5 -119.5t96.5 -335.5q0 -49 -4 -74h-680q0 -185 100 -304.5t250 -119.5q133 0 256 88l39 -71q-53 -32 -84 -48 t-91.5 -32.5t-127.5 -16.5q-63 0 -118 17t-98 48t-74.5 63.5t-61.5 74.5q-96 -93 -208.5 -148t-205.5 -55q-125 0 -206 68.5t-81 200.5zM227 250q0 -100 57.5 -148.5t149.5 -48.5q82 0 183 51.5t184 139.5q-43 87 -43 248l-2 55q-283 -35 -406 -106t-123 -191zM596 1241v74 h504v-74h-504zM844 549h600q0 186 -74.5 283.5t-208.5 97.5q-122 0 -212 -106.5t-105 -274.5z" />
357
+ <glyph unicode="&#x1e6;" horiz-adv-x="1239" d="M113 678q0 319 163.5 507.5t432.5 188.5q215 0 368 -162l-55 -63q-128 139 -311 139q-231 0 -365.5 -164t-134.5 -446q0 -284 129.5 -450.5t357.5 -166.5q93 0 173.5 27t129.5 76v420h-323v80h414v-535q-66 -71 -169.5 -112.5t-230.5 -41.5q-262 0 -420.5 191t-158.5 512 zM432 1686l41 36l232 -200h8l231 200l41 -36l-231 -234h-90z" />
358
+ <glyph unicode="&#x1e7;" horiz-adv-x="997" d="M106 -201q0 64 38.5 126t107.5 112v8q-86 51 -86 158q0 104 106 180v8q-51 44 -86.5 116t-35.5 155q0 151 99.5 248.5t246.5 97.5q64 0 129 -25h333v-76h-229q49 -43 79 -108t30 -140q0 -150 -98 -248t-244 -98q-96 0 -164 41q-38 -31 -59 -63.5t-21 -77.5 q0 -129 188 -129h211q166 0 245 -54t79 -171q0 -133 -130 -232.5t-335 -99.5q-186 0 -295 73.5t-109 198.5zM193 -193q0 -94 86.5 -150t240.5 -56q159 0 261 75t102 172q0 79 -57 114.5t-171 35.5h-211q-54 0 -122 16q-129 -87 -129 -207zM240 662q0 -121 75 -199t181 -78 q104 0 179 78t75 199q0 122 -73.5 197t-180.5 75q-108 0 -182 -74.5t-74 -197.5zM252 1468l45 41l233 -256h9l233 256l45 -41l-239 -294h-86z" />
359
+ <glyph unicode="&#x1ea;" horiz-adv-x="1335" d="M113 680q0 316 154.5 505t400.5 189q247 0 402 -189t155 -505q0 -178 -48.5 -313t-139 -227.5t-228.5 -155.5q-82 -36 -125 -98.5t-43 -123.5q0 -51 30 -78.5t72 -27.5q49 0 88 29l35 -56q-25 -21 -63.5 -35t-71.5 -14q-75 0 -123.5 43.5t-48.5 124.5q0 62 32.5 121 t92.5 106q-262 0 -416.5 192.5t-154.5 512.5zM211 680q0 -281 125.5 -450t331.5 -169t331 169t125 450q0 278 -124.5 443t-331.5 165t-332 -165t-125 -443z" />
360
+ <glyph unicode="&#x1eb;" horiz-adv-x="1095" d="M106 489q0 120 35.5 219.5t96.5 164t140.5 100t168.5 35.5q90 0 169.5 -35t140.5 -100t96.5 -164.5t35.5 -219.5q0 -103 -23 -184.5t-67 -141t-100 -101.5t-131 -76q-67 -30 -110.5 -94.5t-43.5 -129.5q0 -51 29.5 -78.5t70.5 -27.5q49 0 88 29l33 -54q-23 -20 -61 -33.5 t-72 -13.5q-73 0 -119.5 43t-46.5 123q0 69 36 129.5t79 95.5q-92 2 -172.5 37.5t-141.5 100t-96 161.5t-35 215zM201 489q0 -192 98 -313t248 -121q151 0 249.5 121t98.5 313q0 193 -98.5 316t-249.5 123q-150 0 -248 -122.5t-98 -316.5z" />
361
+ <glyph unicode="&#x1f4;" horiz-adv-x="1239" d="M113 678q0 319 163.5 507.5t432.5 188.5q215 0 368 -162l-55 -63q-128 139 -311 139q-231 0 -365.5 -164t-134.5 -446q0 -284 129.5 -450.5t357.5 -166.5q93 0 173.5 27t129.5 76v420h-323v80h414v-535q-66 -71 -169.5 -112.5t-230.5 -41.5q-262 0 -420.5 191t-158.5 512 zM623 1493l256 252l57 -68l-272 -231z" />
362
+ <glyph unicode="&#x1f5;" horiz-adv-x="997" d="M106 -201q0 64 38.5 126t107.5 112v8q-86 51 -86 158q0 104 106 180v8q-51 44 -86.5 116t-35.5 155q0 151 99.5 248.5t246.5 97.5q64 0 129 -25h333v-76h-229q49 -43 79 -108t30 -140q0 -150 -98 -248t-244 -98q-96 0 -164 41q-38 -31 -59 -63.5t-21 -77.5 q0 -129 188 -129h211q166 0 245 -54t79 -171q0 -133 -130 -232.5t-335 -99.5q-186 0 -295 73.5t-109 198.5zM193 -193q0 -94 86.5 -150t240.5 -56q159 0 261 75t102 172q0 79 -57 114.5t-171 35.5h-211q-54 0 -122 16q-129 -87 -129 -207zM240 662q0 -121 75 -199t181 -78 q104 0 179 78t75 199q0 122 -73.5 197t-180.5 75q-108 0 -182 -74.5t-74 -197.5zM426 1223l274 321l70 -59l-295 -309z" />
363
+ <glyph unicode="&#x1f8;" horiz-adv-x="1302" d="M199 0v1350h98l569 -953l152 -268h8q-1 44 -4.5 124t-5.5 145.5t-2 123.5v828h90v-1350h-98l-570 952l-151 269h-9q1 -24 7 -165t6 -218v-838h-90zM432 1677l57 68l256 -252l-40 -47z" />
364
+ <glyph unicode="&#x1f9;" horiz-adv-x="1089" d="M188 0v983h78l8 -152h7q86 86 165 131.5t172 45.5q152 0 224.5 -93t72.5 -284v-631h-90v618q0 159 -53 233.5t-172 74.5q-83 0 -153 -43t-168 -142v-741h-91zM342 1485l70 59l274 -321l-49 -47z" />
365
+ <glyph unicode="&#x1fc;" horiz-adv-x="1656" d="M43 0l748 1350h749v-82h-604v-510h502v-82h-502v-594h625v-82h-719v444h-455l-244 -444h-100zM430 522h412v746h-8q-74 -133 -254 -473zM1104 1497l256 252l57 -68l-272 -231z" />
366
+ <glyph unicode="&#x1fd;" horiz-adv-x="1605" d="M133 244q0 161 150.5 248t474.5 124q4 312 -232 312q-148 0 -303 -115l-41 68q181 127 353 127q117 0 188.5 -65t97.5 -181q55 114 145 180t197 66q172 0 268.5 -119.5t96.5 -335.5q0 -49 -4 -74h-680q0 -185 100 -304.5t250 -119.5q133 0 256 88l39 -71q-53 -32 -84 -48 t-91.5 -32.5t-127.5 -16.5q-63 0 -118 17t-98 48t-74.5 63.5t-61.5 74.5q-96 -93 -208.5 -148t-205.5 -55q-125 0 -206 68.5t-81 200.5zM227 250q0 -100 57.5 -148.5t149.5 -48.5q82 0 183 51.5t184 139.5q-43 87 -43 248l-2 55q-283 -35 -406 -106t-123 -191zM739 1223 l275 321l69 -59l-295 -309zM844 549h600q0 186 -74.5 283.5t-208.5 97.5q-122 0 -212 -106.5t-105 -274.5z" />
367
+ <glyph unicode="&#x218;" horiz-adv-x="1067" d="M94 178l62 66q75 -85 178 -134t217 -49q154 0 245 75t91 196q0 49 -13.5 89t-32 66t-55 51.5t-64 39.5t-77.5 36l-205 93q-43 19 -74.5 35.5t-71.5 46.5t-66 63t-44 82.5t-18 107.5q0 145 111.5 238.5t281.5 93.5q115 0 211.5 -45t163.5 -117l-53 -61q-134 137 -322 137 q-134 0 -216.5 -65.5t-82.5 -175.5q0 -32 8.5 -61.5t20 -50.5t33.5 -42.5t38 -34t46 -29t43.5 -23t44.5 -20.5l204 -90q52 -23 89 -43.5t76.5 -52t63.5 -66.5t40 -85.5t16 -110.5q0 -158 -119 -260.5t-313 -102.5q-276 0 -457 203zM379 -387q128 9 179.5 34.5t51.5 71.5 q0 45 -40 68t-117 29l26 59q117 -17 164 -50t47 -99q0 -157 -297 -175z" />
368
+ <glyph unicode="&#x219;" horiz-adv-x="829" d="M66 111l53 67q73 -61 144.5 -93t168.5 -32q111 0 172.5 56t61.5 139q0 44 -20 79t-59.5 61t-73.5 42t-87 35q-42 15 -65.5 23.5t-61.5 25.5t-60 31t-49 36t-41.5 44.5t-25 53.5t-10.5 66q0 112 84.5 187.5t232.5 75.5q75 0 150 -28.5t131 -74.5l-49 -63q-57 42 -112 65 t-124 23q-107 0 -164 -52t-57 -126q0 -33 14 -60.5t32.5 -45.5t54 -37t60 -29t70.5 -27l24 -9q137 -50 191 -88q107 -75 107 -204q0 -116 -89.5 -196.5t-242.5 -80.5q-198 0 -360 136zM272 -387q129 9 180.5 34.5t51.5 71.5q0 84 -158 97l27 59q117 -17 164 -50t47 -99 q0 -157 -297 -175z" />
369
+ <glyph unicode="&#x21a;" horiz-adv-x="1073" d="M59 1268v82h955v-82h-430v-1268h-95v1268h-430zM367 -387q128 9 179.5 34.5t51.5 71.5q0 84 -158 97l27 59q117 -17 164 -50t47 -99q0 -157 -297 -175z" />
370
+ <glyph unicode="&#x21b;" horiz-adv-x="638" d="M57 905v70l156 8l12 285h78v-285h285v-78h-285v-641q0 -103 35.5 -156t130.5 -53q55 0 123 31l24 -74q-105 -37 -159 -37q-135 0 -190.5 77t-55.5 220v633h-154zM238 -387q128 9 179.5 34.5t51.5 71.5q0 84 -158 97l27 59q117 -17 164 -50t47 -99q0 -157 -297 -175z" />
371
+ <glyph unicode="&#x2c6;" horiz-adv-x="1095" d="M264 1214l240 295h86l239 -295l-45 -43l-233 259h-8l-234 -259z" />
372
+ <glyph unicode="&#x2da;" horiz-adv-x="1095" d="M348 1317q0 87 56 141.5t143 54.5t142.5 -54.5t55.5 -141.5q0 -86 -55.5 -140.5t-142.5 -54.5t-143 54.5t-56 140.5zM414 1317q0 -63 38 -102t95 -39t95 39t38 102q0 65 -38 104t-95 39t-95 -39t-38 -104z" />
373
+ <glyph unicode="&#x2dc;" horiz-adv-x="1095" d="M211 1196q16 258 182 258q43 0 80 -20.5t64 -49t52 -57.5t55 -49.5t61 -20.5q51 0 77 53.5t31 137.5l70 -4q-3 -52 -13.5 -95t-30.5 -81t-55 -60t-82 -22q-43 0 -80.5 20t-64.5 49t-52 58t-54 49t-60 20q-99 0 -110 -190z" />
374
+ <glyph unicode="&#x2000;" horiz-adv-x="967" />
375
+ <glyph unicode="&#x2001;" horiz-adv-x="1935" />
376
+ <glyph unicode="&#x2002;" horiz-adv-x="967" />
377
+ <glyph unicode="&#x2003;" horiz-adv-x="1935" />
378
+ <glyph unicode="&#x2004;" horiz-adv-x="645" />
379
+ <glyph unicode="&#x2005;" horiz-adv-x="483" />
380
+ <glyph unicode="&#x2006;" horiz-adv-x="322" />
381
+ <glyph unicode="&#x2007;" />
382
+ <glyph unicode="&#x2008;" horiz-adv-x="241" />
383
+ <glyph unicode="&#x2009;" horiz-adv-x="387" />
384
+ <glyph unicode="&#x200a;" horiz-adv-x="107" />
222
385
  <glyph unicode="&#x2010;" horiz-adv-x="612" d="M82 471v80h450v-80h-450z" />
223
386
  <glyph unicode="&#x2011;" horiz-adv-x="612" d="M82 471v80h450v-80h-450z" />
224
- <glyph unicode="&#x2012;" horiz-adv-x="612" d="M82 471v80h450v-80h-450z" />
387
+ <glyph unicode="&#x2012;" d="M82 475v74h819v-74h-819z" />
225
388
  <glyph unicode="&#x2013;" horiz-adv-x="983" d="M82 475v74h819v-74h-819z" />
226
389
  <glyph unicode="&#x2014;" horiz-adv-x="1638" d="M82 475v74h1474v-74h-1474z" />
227
- <glyph unicode="&#x2018;" horiz-adv-x="448" d="M119 1120q0 111 46 188.5t128 131.5l37 -47q-68 -55 -102.5 -110.5t-34.5 -143.5q4 2 16 2q31 0 56.5 -18.5t25.5 -57.5t-23.5 -60.5t-58.5 -21.5q-41 0 -65.5 36t-24.5 101z" />
228
- <glyph unicode="&#x2019;" horiz-adv-x="448" d="M119 1024q68 55 102.5 110.5t34.5 143.5q-4 -2 -16 -2q-29 0 -54.5 18.5t-25.5 57.5t22.5 60.5t57.5 21.5q41 0 66.5 -36t25.5 -102q0 -111 -46 -188.5t-130 -130.5z" />
229
- <glyph unicode="&#x201a;" horiz-adv-x="448" d="M119 -219q68 55 102.5 110.5t34.5 143.5q-4 -2 -16 -2q-29 0 -54.5 18.5t-25.5 57.5t22.5 60.5t57.5 21.5q41 0 66.5 -36t25.5 -102q0 -111 -46 -188.5t-130 -130.5z" />
230
- <glyph unicode="&#x201c;" horiz-adv-x="737" d="M119 1120q0 111 46 188.5t128 131.5l37 -47q-68 -55 -102.5 -110.5t-34.5 -143.5q4 2 16 2q31 0 56.5 -18.5t25.5 -57.5t-23.5 -60.5t-58.5 -21.5q-41 0 -65.5 36t-24.5 101zM408 1120q0 111 46 188.5t128 131.5l37 -47q-68 -55 -102.5 -110.5t-34.5 -143.5q4 2 16 2 q31 0 56.5 -18.5t25.5 -57.5t-23.5 -60.5t-58.5 -21.5q-41 0 -65.5 36t-24.5 101z" />
231
- <glyph unicode="&#x201d;" horiz-adv-x="737" d="M119 1024q68 55 102.5 110.5t34.5 143.5q-4 -2 -16 -2q-29 0 -54.5 18.5t-25.5 57.5t22.5 60.5t57.5 21.5q41 0 66.5 -36t25.5 -102q0 -111 -46 -188.5t-130 -130.5zM408 1024q68 55 102.5 110.5t34.5 143.5q-4 -2 -16 -2q-29 0 -54.5 18.5t-25.5 57.5t22.5 60.5 t57.5 21.5q41 0 66.5 -36t25.5 -102q0 -111 -46 -188.5t-130 -130.5z" />
232
- <glyph unicode="&#x201e;" horiz-adv-x="737" d="M119 -219q68 55 102.5 110.5t34.5 143.5q-4 -2 -16 -2q-29 0 -54.5 18.5t-25.5 57.5t22.5 60.5t57.5 21.5q41 0 66.5 -36t25.5 -102q0 -111 -46 -188.5t-130 -130.5zM408 -219q68 55 102.5 110.5t34.5 143.5q-4 -2 -16 -2q-29 0 -54.5 18.5t-25.5 57.5t22.5 60.5 t57.5 21.5q41 0 66.5 -36t25.5 -102q0 -111 -46 -188.5t-130 -130.5z" />
233
- <glyph unicode="&#x2022;" horiz-adv-x="575" d="M82 541q0 51 17.5 93t46 70.5t65.5 45t76 16.5t76.5 -16.5t66.5 -45t46.5 -70.5t17.5 -93q0 -53 -17.5 -94t-46.5 -71t-66.5 -45.5t-76.5 -15.5t-76 15.5t-65.5 45.5t-46 70.5t-17.5 94.5z" />
234
- <glyph unicode="&#x2026;" horiz-adv-x="1904" d="M213 68q0 45 26.5 69.5t61.5 24.5t60.5 -24.5t25.5 -69.5q0 -43 -25.5 -68t-60.5 -25t-61.5 25t-26.5 68zM903 68q0 45 26.5 69.5t61.5 24.5t60.5 -24.5t25.5 -69.5q0 -43 -25.5 -68t-60.5 -25t-61.5 25t-26.5 68zM1593 68q0 45 26.5 69.5t61.5 24.5t60.5 -24.5 t25.5 -69.5q0 -43 -25.5 -68t-60.5 -25t-61.5 25t-26.5 68z" />
235
- <glyph unicode="&#x202f;" horiz-adv-x="353" />
390
+ <glyph unicode="&#x2015;" horiz-adv-x="1638" d="M82 475v74h1474v-74h-1474z" />
391
+ <glyph unicode="&#x2016;" horiz-adv-x="724" d="M195 -512v2048h73v-2048h-73zM457 -512v2048h73v-2048h-73z" />
392
+ <glyph unicode="&#x2018;" horiz-adv-x="448" d="M119 1120q0 205 174 320l37 -47q-72 -59 -104.5 -115.5t-32.5 -138.5q4 2 16 2q33 0 57.5 -20t24.5 -56q0 -38 -23 -60t-59 -22q-41 0 -65.5 36t-24.5 101z" />
393
+ <glyph unicode="&#x2019;" horiz-adv-x="448" d="M119 1024q72 59 104.5 115.5t32.5 138.5q-4 -2 -16 -2q-32 0 -56 20t-24 56q0 38 22 60t58 22q42 0 67 -36.5t25 -101.5q0 -205 -176 -319z" />
394
+ <glyph unicode="&#x201a;" horiz-adv-x="448" d="M119 -221q72 59 104.5 115.5t32.5 138.5q-4 -2 -16 -2q-32 0 -56 19.5t-24 55.5q0 38 22 60t58 22q42 0 67 -36t25 -101q0 -205 -176 -319z" />
395
+ <glyph unicode="&#x201c;" horiz-adv-x="737" d="M119 1120q0 205 174 320l37 -47q-72 -59 -104.5 -115.5t-32.5 -138.5q4 2 16 2q33 0 57.5 -20t24.5 -56q0 -38 -23 -60t-59 -22q-41 0 -65.5 36t-24.5 101zM408 1120q0 205 174 320l36 -47q-72 -59 -104.5 -115.5t-32.5 -138.5q4 2 17 2q33 0 57.5 -20t24.5 -56 q0 -38 -23 -60t-59 -22q-41 0 -65.5 36t-24.5 101z" />
396
+ <glyph unicode="&#x201d;" horiz-adv-x="737" d="M119 1024q72 59 104.5 115.5t32.5 138.5q-4 -2 -16 -2q-32 0 -56 20t-24 56q0 38 22 60t58 22q42 0 67 -36.5t25 -101.5q0 -205 -176 -319zM408 1024q72 59 104.5 115.5t32.5 138.5q-4 -2 -17 -2q-32 0 -55.5 20t-23.5 56q0 38 21.5 60t57.5 22q42 0 67.5 -36.5 t25.5 -101.5q0 -204 -177 -319z" />
397
+ <glyph unicode="&#x201e;" horiz-adv-x="737" d="M119 -221q72 59 104.5 115.5t32.5 138.5q-4 -2 -16 -2q-32 0 -56 19.5t-24 55.5q0 38 22 60t58 22q42 0 67 -36t25 -101q0 -205 -176 -319zM408 -221q72 59 104.5 115.5t32.5 138.5q-4 -2 -17 -2q-32 0 -55.5 19.5t-23.5 55.5q0 38 21.5 60t57.5 22q42 0 67.5 -36 t25.5 -101q0 -204 -177 -319z" />
398
+ <glyph unicode="&#x2020;" horiz-adv-x="860" d="M123 1065v86l270 -6l-6 313h86l-4 -313l270 6v-86l-270 4l4 -1233h-86l6 1233z" />
399
+ <glyph unicode="&#x2021;" horiz-adv-x="860" d="M123 143v86l270 -6l-6 424l6 424l-270 -6v86l270 -6l-6 313h86l-4 -313l270 6v-86l-270 6l4 -424l-4 -424l270 6v-86l-270 7l4 -314h-86l6 314z" />
400
+ <glyph unicode="&#x2022;" horiz-adv-x="575" d="M82 541q0 99 61.5 162t143.5 63q83 0 145 -63t62 -162q0 -100 -62 -163t-145 -63q-82 0 -143.5 63t-61.5 163z" />
401
+ <glyph unicode="&#x2026;" horiz-adv-x="1906" d="M213 68q0 42 26 68t62 26q35 0 60.5 -25.5t25.5 -68.5q0 -41 -25.5 -67t-60.5 -26t-61.5 26t-26.5 67zM903 68q0 42 26 68t62 26q35 0 60.5 -25.5t25.5 -68.5q0 -41 -25.5 -67t-60.5 -26t-61.5 26t-26.5 67zM1593 68q0 42 26 68t62 26q35 0 60.5 -25.5t25.5 -68.5 q0 -41 -25.5 -67t-60.5 -26t-61.5 26t-26.5 67z" />
402
+ <glyph unicode="&#x202f;" horiz-adv-x="256" />
403
+ <glyph unicode="&#x2030;" horiz-adv-x="2379" d="M82 952q0 201 77 311.5t212 110.5t211.5 -110.5t76.5 -311.5q0 -204 -76.5 -315t-211.5 -111t-212 111.5t-77 314.5zM162 952q0 -169 56.5 -263.5t152.5 -94.5t152.5 94.5t56.5 263.5q0 168 -56.5 261.5t-152.5 93.5t-152.5 -93.5t-56.5 -261.5zM397 -25l754 1399h78 l-752 -1399h-80zM983 401q0 201 77 311.5t212 110.5t212 -110.5t77 -311.5q0 -203 -77 -314.5t-212 -111.5t-212 111.5t-77 314.5zM1063 401q0 -169 56.5 -263.5t152.5 -94.5t152.5 94.5t56.5 263.5q0 168 -56.5 261.5t-152.5 93.5t-152.5 -93.5t-56.5 -261.5zM1720 401 q0 201 77 311.5t212 110.5t212 -110.5t77 -311.5q0 -203 -77 -314.5t-212 -111.5t-212 111.5t-77 314.5zM1800 401q0 -169 56.5 -263.5t152.5 -94.5t152.5 94.5t56.5 263.5q0 168 -56.5 261.5t-152.5 93.5t-152.5 -93.5t-56.5 -261.5z" />
404
+ <glyph unicode="&#x2032;" horiz-adv-x="448" d="M168 995l47 424l88 -4l-20 -143l-56 -279z" />
405
+ <glyph unicode="&#x2033;" horiz-adv-x="737" d="M168 995l47 424l88 -4l-20 -143l-56 -279zM457 995l47 424l88 -4l-21 -143l-55 -279z" />
406
+ <glyph unicode="&#x2035;" horiz-adv-x="448" d="M145 1415l21 -143l55 -279l60 2l-48 424z" />
236
407
  <glyph unicode="&#x2039;" horiz-adv-x="530" d="M88 477v78l281 330l51 -43l-252 -326l252 -330l-51 -39z" />
237
408
  <glyph unicode="&#x203a;" horiz-adv-x="530" d="M111 186l249 330l-249 326l49 43l282 -330v-78l-282 -330z" />
238
- <glyph unicode="&#x205f;" horiz-adv-x="442" />
239
- <glyph unicode="&#x20ac;" d="M49 504v59l127 8q-2 23 -2 43.5v42.5v37t2 35h-127v59l133 9q14 125 53 224t100.5 169t144.5 106.5t182 36.5q92 0 167.5 -47t120.5 -112l-59 -56q-45 61 -101.5 99t-127.5 38q-164 0 -262.5 -121.5t-120.5 -336.5h569v-68h-576q-2 -16 -2 -33.5v-36.5v-44t2 -44h494v-67 h-487q27 -209 118.5 -330t239.5 -121q86 0 150.5 41t123.5 125l60 -51q-66 -90 -146 -141.5t-194 -51.5q-90 0 -166 37t-133.5 105.5t-96 166t-53.5 220.5h-133z" />
240
- <glyph unicode="&#x2122;" horiz-adv-x="1249" d="M4 1313v71h518v-71h-221v-557h-78v557h-219zM629 756v628h106l107 -256l63 -176h8l64 176l102 256h107v-628h-78v329l10 201h-8l-168 -432h-70l-167 432h-9l11 -201v-329h-78z" />
409
+ <glyph unicode="&#x203c;" horiz-adv-x="1044" d="M178 68q0 42 26 68t62 26q35 0 60.5 -25.5t25.5 -68.5q0 -41 -25.5 -67t-60.5 -26t-61.5 26t-26.5 67zM219 1227v145h94l-2 -145l-12 -860h-68zM692 68q0 42 26 68t62 26q35 0 60.5 -25.5t25.5 -68.5q0 -41 -25.5 -67t-60.5 -26t-61.5 26t-26.5 67zM733 1227v145h94 l-2 -145l-12 -860h-68z" />
410
+ <glyph unicode="&#x203d;" horiz-adv-x="827" d="M70 1235q141 162 331 162q148 0 236 -89t88 -223q0 -79 -36 -154.5t-85 -136.5t-97 -123.5t-76 -140.5t-17 -163h-66l-10 610l-4 139h88v-129l-10 -350q24 48 66.5 109t74 103.5t56 103t24.5 122.5q0 104 -60.5 174t-177.5 70q-77 0 -147.5 -35t-122.5 -100zM295 68 q0 43 25.5 68.5t60.5 25.5q36 0 62 -26t26 -68q0 -41 -26.5 -67t-61.5 -26t-60.5 26t-25.5 67z" />
411
+ <glyph unicode="&#x203e;" horiz-adv-x="1024" d="M25 1165v80h974v-80h-974z" />
412
+ <glyph unicode="&#x203f;" horiz-adv-x="0" d="M-928 -213l33 51q191 -120 422 -182t473 -62t473 62t422 182l33 -51q-426 -266 -928 -266t-928 266z" />
413
+ <glyph unicode="&#x2044;" horiz-adv-x="163" d="M-338 -25l754 1399h78l-752 -1399h-80z" />
414
+ <glyph unicode="&#x2047;" horiz-adv-x="1599" d="M76 1237q142 160 327 160q146 0 232 -88.5t86 -225.5q0 -56 -19 -110.5t-48.5 -99.5t-65 -90t-69 -91t-60 -94.5t-39 -107.5t-4.5 -123h-82q-9 69 2 132.5t36.5 113.5t58 96.5t67 90t63.5 85.5t47.5 91.5t18.5 100.5q0 103 -59 171.5t-173 68.5q-75 0 -144 -34t-120 -97z M295 68q0 43 25.5 68.5t60.5 25.5q36 0 62 -26t26 -68q0 -41 -26.5 -67t-61.5 -26t-60.5 26t-25.5 67zM850 1237q142 160 328 160q146 0 231.5 -88.5t85.5 -225.5q0 -56 -19 -110.5t-48.5 -99.5t-65 -90t-69 -91t-60 -94.5t-39 -107.5t-4.5 -123h-82q-9 69 2 132.5 t36.5 113.5t58 96.5t67 90t63.5 85.5t47.5 91.5t18.5 100.5q0 103 -59 171.5t-173 68.5q-75 0 -144 -34t-120 -97zM1069 68q0 43 25.5 68.5t60.5 25.5q36 0 62 -26t26 -68q0 -41 -26.5 -67t-61.5 -26t-60.5 26t-25.5 67z" />
415
+ <glyph unicode="&#x2048;" horiz-adv-x="1306" d="M76 1237q142 160 327 160q146 0 232 -88.5t86 -225.5q0 -56 -19 -110.5t-48.5 -99.5t-65 -90t-69 -91t-60 -94.5t-39 -107.5t-4.5 -123h-82q-9 69 2 132.5t36.5 113.5t58 96.5t67 90t63.5 85.5t47.5 91.5t18.5 100.5q0 103 -59 171.5t-173 68.5q-75 0 -144 -34t-120 -97z M295 68q0 43 25.5 68.5t60.5 25.5q36 0 62 -26t26 -68q0 -41 -26.5 -67t-61.5 -26t-60.5 26t-25.5 67zM952 68q0 42 26 68t62 26q35 0 60.5 -25.5t25.5 -68.5q0 -41 -25.5 -67t-60.5 -26t-61.5 26t-26.5 67zM993 1227v145h94l-2 -145l-12 -860h-67z" />
416
+ <glyph unicode="&#x2049;" horiz-adv-x="1306" d="M178 68q0 42 26 68t62 26q35 0 60.5 -25.5t25.5 -68.5q0 -41 -25.5 -67t-60.5 -26t-61.5 26t-26.5 67zM219 1227v145h94l-2 -145l-12 -860h-68zM557 1237q142 160 328 160q146 0 231.5 -88.5t85.5 -225.5q0 -56 -19 -110.5t-48.5 -99.5t-65 -90t-69 -91t-60 -94.5 t-39 -107.5t-4.5 -123h-82q-9 69 2 132.5t36.5 113.5t58 96.5t67 90t63.5 85.5t47.5 91.5t18.5 100.5q0 103 -58.5 171.5t-172.5 68.5q-75 0 -144.5 -34t-120.5 -97zM776 68q0 43 25.5 68.5t60.5 25.5q36 0 62 -26t26 -68q0 -41 -26.5 -67t-61.5 -26t-60.5 26t-25.5 67z" />
417
+ <glyph unicode="&#x205f;" horiz-adv-x="483" />
418
+ <glyph unicode="&#x20a1;" d="M133 657q0 267 99 441.5t272 220.5l26 215h64l-25 -203q18 2 56 2q43 0 84 -12l24 213h62l-29 -236q87 -41 149 -127l-59 -55q-47 67 -98 101l-140 -1164q76 4 136.5 44.5t119.5 121.5l60 -51q-132 -185 -324 -193l-24 -200h-62l25 202q-79 10 -135 41l-29 -243h-63 l32 280q-104 83 -162.5 238.5t-58.5 363.5zM229 659q0 -334 138 -497l127 1071q-127 -51 -196 -201t-69 -373zM424 109q61 -45 133 -54l141 1188q-34 12 -73 12q-34 0 -64 -6z" />
419
+ <glyph unicode="&#x20a4;" d="M111 504v59l133 10h78q-9 42 -35 134h-176v61l129 8h24q-35 132 -35 209q0 161 94 254.5t255 93.5q181 0 294 -145l-59 -55q-48 57 -103.5 88.5t-131.5 31.5q-122 0 -189 -75.5t-67 -192.5q0 -83 36 -209h367v-69h-348q26 -94 33 -134h315v-69h-307q2 -16 2 -51 q0 -122 -37 -207t-111 -156v-8h605v-82h-760v55q109 62 163 167.5t54 230.5q0 35 -2 51h-221z" />
420
+ <glyph unicode="&#x20a6;" d="M33 498v59l157 8v140h-157v55l157 8v541h111l193 -541h213v541h84v-541h149v-63h-149v-140h149v-67h-149v-498h-111l-176 498h-230v-498h-84v498h-157zM258 1200l14 -432h136l-15 43l-127 389h-8zM274 565h205l-49 140h-156v-140zM516 705l49 -140h142v10v130h-191z M590 498l125 -387h8l-14 387h-119z" />
421
+ <glyph unicode="&#x20a7;" d="M29 897v64l164 10v338h186q195 0 310.5 -81.5t125.5 -256.5h135v-74h-135q-12 -176 -128.5 -267t-307.5 -91h-98v-539h-88v897h-164zM281 612h75q346 0 367 285h-442v-285zM281 971h442q-9 143 -100 204.5t-267 61.5h-75v-266z" />
422
+ <glyph unicode="&#x20a9;" d="M-27 635v59l142 8l-88 607h94l74 -607h165l82 525h103l82 -525h170l69 607h88l-84 -607h129v-67h-137l-88 -635h-110l-99 635h-151l-95 -635h-104l-92 635h-150zM203 635l35 -293l26 -262h8l31 262l47 293h-147zM424 702h131l-25 152l-36 295h-9l-39 -297zM637 635 l47 -293l31 -262h8l31 262l34 293h-151z" />
423
+ <glyph unicode="&#x20ab;" d="M141 604q0 162 98.5 264.5t235.5 102.5q72 0 123 -25.5t113 -79.5l-9 191v92h-299v70h299v159h84v-159h166v-60l-166 -10v-909h-67l-10 96h-7q-108 -117 -243 -117q-147 0 -232.5 100t-85.5 285zM164 0v70h686v-70h-686zM231 608q0 -147 62 -230t178 -83q121 0 231 127 v369q-62 57 -110.5 80.5t-112.5 23.5q-104 0 -176 -84t-72 -203z" />
424
+ <glyph unicode="&#x20ac;" d="M49 504v59l127 8q-2 29 -2 86q0 49 2 72h-127v59l133 9q28 251 155 393.5t325 142.5q88 0 164.5 -45t123.5 -114l-59 -56q-99 137 -229 137q-161 0 -260 -121t-123 -337h569v-68h-576q-2 -23 -2 -70q0 -59 2 -88h494v-67h-487q27 -211 120 -331t238 -120q83 0 148 40.5 t126 125.5l60 -51q-68 -95 -149.5 -144t-190.5 -49q-179 0 -298.5 141.5t-150.5 387.5h-133z" />
425
+ <glyph unicode="&#x20ae;" d="M70 1233v76h833v-76h-368v-402l286 152v-76l-286 -149v-168l286 149v-73l-286 -150v-516h-93v473l-286 -149v73l286 150v168l-286 -150v74l286 152v442h-372z" />
426
+ <glyph unicode="&#x20b1;" d="M29 809v57l164 8v138h-164v55l164 8v234h186q344 0 418 -234h153v-63h-139q6 -37 6 -76q0 -22 -4 -62h137v-65h-149q-36 -133 -147 -201.5t-275 -68.5h-98v-539h-88v809h-164zM281 612h75q287 0 351 197h-426v-197zM281 874h440q4 36 4 62q0 42 -6 76h-438v-138z M281 1075h421q-36 85 -122 123.5t-224 38.5h-75v-162z" />
427
+ <glyph unicode="&#x20b2;" d="M106 657q0 288 114.5 467t311.5 205v205h78v-201q84 -3 157.5 -47.5t121.5 -111.5l-60 -56q-102 137 -233 137q-186 0 -288.5 -159.5t-102.5 -436.5q0 -278 96.5 -441t269.5 -163q73 0 140.5 31t101.5 74v401h-246v80h334v-518q-113 -130 -291 -146v-202h-78v202 q-193 15 -309.5 199t-116.5 481z" />
428
+ <glyph unicode="&#x20b4;" d="M49 504v59l133 8h113q54 60 180 158h-426v59l137 9h371q69 61 106 122t37 138q0 85 -59 141.5t-154 56.5q-81 0 -135 -30t-112 -95l-54 58q62 69 131 107t168 38q134 0 222 -79t88 -201q0 -138 -109 -256h248v-68h-320q-27 -24 -93 -76t-99 -82h512v-67h-576 q-88 -105 -88 -236q0 -96 69.5 -155.5t192.5 -59.5q151 0 293 146l47 -64q-66 -69 -154 -114.5t-186 -45.5q-154 0 -254 80t-100 219q0 129 66 230h-195z" />
429
+ <glyph unicode="&#x20b5;" d="M133 657q0 288 114.5 467t313.5 205v207h74v-203q85 -3 159 -47.5t119 -111.5l-59 -56q-99 137 -219 137v-1200q70 7 126.5 47.5t112.5 116.5l60 -51q-129 -175 -299 -191v-202h-74v202q-195 14 -311.5 197.5t-116.5 482.5zM229 659q0 -262 87.5 -423.5t244.5 -180.5 v1194q-159 -26 -245.5 -182t-86.5 -408z" />
430
+ <glyph unicode="&#x20b8;" d="M70 1016v59l137 8h696v-67h-368v-1016h-93v1016h-372zM70 1241v68h833v-68h-833z" />
431
+ <glyph unicode="&#x20b9;" d="M150 575v80h153q184 0 281.5 73.5t97.5 223.5h-532v62l137 8h391q-21 109 -115.5 159t-259.5 50h-153v78h757v-68h-303q65 -30 110 -87.5t58 -131.5h135v-70h-131q-4 -163 -99 -257t-257 -115l411 -580h-110l-404 575h-167z" />
432
+ <glyph unicode="&#x20ba;" d="M57 477v74l209 106v168l-209 -106v74l209 108v408h94v-363l361 189v-74l-361 -189v-167l361 188v-74l-361 -188v-568q78 1 157.5 25t150 68.5t115 118.5t44.5 165q0 62 -12 105l82 26q14 -74 14 -125q0 -120 -53 -213t-143.5 -149t-204.5 -83.5t-244 -25.5v609z" />
433
+ <glyph unicode="&#x20bd;" d="M29 367v59l164 10v137h-164v60l164 10v666h186q99 0 177.5 -20t138 -61.5t91 -110.5t31.5 -163q0 -188 -119 -284.5t-319 -96.5h-98v-137h424v-69h-424v-367h-88v367h-164zM281 643h75q369 0 369 309q0 153 -92 219t-277 66h-75v-594z" />
434
+ <glyph unicode="&#x2122;" horiz-adv-x="1249" d="M4 1313v71h518v-71h-221v-557h-78v557h-219zM629 756v628h106l107 -258l63 -176h8l64 176l102 258h107v-628h-76v329l10 201h-8l-170 -432h-70l-170 432h-8l11 -201v-329h-76z" />
241
435
  <glyph unicode="&#x25fc;" horiz-adv-x="983" d="M0 0v983h983v-983h-983z" />
242
- <glyph unicode="&#xfb01;" horiz-adv-x="1044" d="M68 905v70l135 8v219q0 147 63.5 221t179.5 74q72 0 144 -33l-25 -73q-31 16 -60.5 22t-58.5 6q-78 0 -115.5 -58t-37.5 -165v-213h227v-78h-227v-905h-90v905h-135zM729 1300q0 39 23.5 60.5t58.5 21.5t58 -21.5t23 -60.5q0 -35 -23 -57t-58 -22t-58.5 22.5t-23.5 56.5z M763 0v983h91v-983h-91z" />
243
- <glyph unicode="&#xfb02;" horiz-adv-x="1024" d="M68 905v70l135 8v219q0 147 63.5 221t179.5 74q72 0 144 -33l-25 -73q-31 16 -60.5 22t-58.5 6q-78 0 -115.5 -58t-37.5 -165v-213h227v-78h-227v-905h-90v905h-135zM727 131v1342h91v-1354q0 -33 12 -48.5t31 -15.5h13t23 4l17 -73q-14 -4 -28.5 -7.5t-37.5 -3.5 q-121 0 -121 156z" />
244
- <hkern u1="F" u2="&#x2122;" k="-111" />
436
+ <hkern u1="&#x2f;" u2="&#x1d0;" k="-156" />
437
+ <hkern u1="&#x2f;" u2="&#x135;" k="-156" />
438
+ <hkern u1="&#x2f;" u2="&#x12d;" k="-156" />
439
+ <hkern u1="&#x2f;" u2="&#x12b;" k="-156" />
440
+ <hkern u1="&#x2f;" u2="&#x129;" k="-156" />
441
+ <hkern u1="&#x2f;" u2="&#xef;" k="-156" />
442
+ <hkern u1="&#x2f;" u2="&#xee;" k="-156" />
443
+ <hkern u1="&#x2f;" u2="&#xec;" k="-8" />
444
+ <hkern u1="F" u2="&#x12b;" k="-76" />
445
+ <hkern u1="F" u2="&#x129;" k="-80" />
245
446
  <hkern u1="F" u2="&#xef;" k="-80" />
246
- <hkern u1="F" u2="&#xee;" k="-43" />
247
- <hkern u1="F" u2="&#xb7;" k="23" />
248
- <hkern u1="F" u2="&#xae;" k="-59" />
249
- <hkern u1="F" u2="x" k="41" />
250
- <hkern u1="F" u2="v" k="23" />
251
- <hkern u1="F" u2="X" k="43" />
252
- <hkern u1="F" u2="V" k="-20" />
253
- <hkern u1="F" u2="&#x2f;" k="166" />
254
- <hkern u1="P" u2="&#xb7;" k="23" />
255
- <hkern u1="P" u2="&#xae;" k="-80" />
256
- <hkern u1="P" u2="x" k="23" />
257
- <hkern u1="P" u2="X" k="43" />
258
- <hkern u1="P" u2="&#x2f;" k="184" />
259
- <hkern u1="V" u2="&#x2122;" k="-104" />
260
- <hkern u1="V" u2="&#xef;" k="-88" />
261
- <hkern u1="V" u2="&#xee;" k="-82" />
262
- <hkern u1="V" u2="&#xec;" k="-12" />
263
- <hkern u1="V" u2="&#xb7;" k="33" />
264
- <hkern u1="V" u2="&#xae;" k="-111" />
265
- <hkern u1="V" u2="x" k="27" />
266
- <hkern u1="V" u2="v" k="16" />
267
- <hkern u1="V" u2="&#x2f;" k="119" />
268
- <hkern u1="X" u2="&#x2122;" k="-45" />
269
- <hkern u1="X" u2="&#xb7;" k="82" />
270
- <hkern u1="X" u2="&#xae;" k="-41" />
271
- <hkern u1="X" u2="x" k="20" />
272
- <hkern u1="X" u2="v" k="20" />
273
- <hkern u1="X" u2="&#x2a;" k="20" />
274
- <hkern u1="\" u2="v" k="41" />
275
- <hkern u1="\" u2="V" k="119" />
276
- <hkern u1="v" u2="&#x2122;" k="-37" />
277
- <hkern u1="v" u2="&#xae;" k="-115" />
278
- <hkern u1="v" u2="&#x2f;" k="41" />
279
- <hkern u1="v" u2="&#x2a;" k="23" />
280
- <hkern u1="x" u2="&#x2122;" k="-37" />
281
- <hkern u1="x" u2="&#xb7;" k="41" />
282
- <hkern u1="x" u2="&#xae;" k="-111" />
283
- <hkern u1="x" u2="X" k="20" />
284
- <hkern u1="x" u2="&#x2a;" k="45" />
285
- <hkern u1="&#xa1;" u2="V" k="41" />
286
- <hkern u1="&#xa3;" u2="&#x35;" k="18" />
287
- <hkern u1="&#xa3;" u2="&#x33;" k="18" />
288
- <hkern u1="&#xb7;" u2="x" k="41" />
289
- <hkern u1="&#xb7;" u2="X" k="41" />
290
- <hkern u1="&#xb7;" u2="V" k="41" />
291
- <hkern u1="&#xbf;" u2="X" k="53" />
292
- <hkern u1="&#xbf;" u2="V" k="84" />
293
- <hkern u1="&#xde;" u2="&#x2122;" k="43" />
294
- <hkern u1="&#xde;" u2="\" k="82" />
295
- <hkern u1="&#xde;" u2="&#x2f;" k="152" />
296
- <hkern u1="&#xde;" u2="&#x2a;" k="154" />
297
- <hkern u1="&#xdf;" u2="&#xae;" k="49" />
298
- <hkern u1="&#xdf;" u2="x" k="-18" />
299
- <hkern u1="&#xdf;" u2="v" k="20" />
300
- <hkern u1="&#xdf;" u2="\" k="41" />
301
- <hkern g1="exclam" g2="quoteright,quotedblright" k="41" />
302
- <hkern g1="exclamdown" g2="W" k="20" />
303
- <hkern g1="exclamdown" g2="Y,Yacute,Ydieresis" k="61" />
304
- <hkern g1="exclamdown" g2="j" k="-78" />
305
- <hkern g1="periodcentered" g2="T" k="125" />
306
- <hkern g1="periodcentered" g2="Y,Yacute,Ydieresis" k="84" />
307
- <hkern g1="periodcentered" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
308
- <hkern g1="periodcentered" g2="S" k="43" />
309
- <hkern g1="periodcentered" g2="Z" k="84" />
310
- <hkern g1="questiondown" g2="T" k="168" />
311
- <hkern g1="questiondown" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="63" />
312
- <hkern g1="questiondown" g2="W" k="63" />
313
- <hkern g1="questiondown" g2="Y,Yacute,Ydieresis" k="139" />
314
- <hkern g1="questiondown" g2="j" k="-137" />
315
- <hkern g1="questiondown" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="94" />
316
- <hkern g1="questiondown" g2="S" k="41" />
317
- <hkern g1="questiondown" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="43" />
318
- <hkern g1="questiondown" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="49" />
319
- <hkern g1="questiondown" g2="f,uniFB01,uniFB02" k="94" />
320
- <hkern g1="questiondown" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="27" />
321
- <hkern g1="slash" g2="g" k="20" />
322
- <hkern g1="slash" g2="j" k="-74" />
323
- <hkern g1="slash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="82" />
324
- <hkern g1="slash" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="43" />
325
- <hkern g1="slash" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="84" />
326
- <hkern g1="slash" g2="J" k="164" />
327
- <hkern g1="slash" g2="i,igrave,iacute,icircumflex,idieresis" k="-74" />
328
- <hkern g1="slash" g2="t" k="-35" />
329
- <hkern g1="slash" g2="u,ugrave,uacute,ucircumflex,udieresis" k="41" />
330
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="T" k="82" />
331
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="35" />
332
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Y,Yacute,Ydieresis" k="23" />
333
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="y,yacute,ydieresis" k="23" />
334
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quoteright,quotedblright" k="82" />
335
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="Z" k="23" />
336
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="20" />
337
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="f,uniFB01,uniFB02" k="20" />
338
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="t" k="23" />
339
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="18" />
340
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="asterisk" k="205" />
341
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="backslash" k="82" />
342
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="periodcentered" k="43" />
343
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="registered" k="145" />
344
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="trademark" k="82" />
345
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="V" k="23" />
346
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="X" k="-20" />
347
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="question" k="41" />
348
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quotedbl,quotesingle" k="82" />
349
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="quoteleft,quotedblleft" k="92" />
350
- <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" g2="v" k="23" />
351
- <hkern g1="B" g2="T" k="43" />
352
- <hkern g1="B" g2="Y,Yacute,Ydieresis" k="23" />
353
- <hkern g1="B" g2="w" k="20" />
354
- <hkern g1="B" g2="y,yacute,ydieresis" k="23" />
355
- <hkern g1="B" g2="S" k="23" />
356
- <hkern g1="B" g2="J" k="31" />
357
- <hkern g1="B" g2="t" k="20" />
447
+ <hkern u1="F" u2="&#xee;" k="-76" />
448
+ <hkern u1="V" u2="&#x1d0;" k="-113" />
449
+ <hkern u1="V" u2="&#x12d;" k="-119" />
450
+ <hkern u1="V" u2="&#x12b;" k="-119" />
451
+ <hkern u1="V" u2="&#x129;" k="-125" />
452
+ <hkern u1="V" u2="&#xef;" k="-125" />
453
+ <hkern u1="V" u2="&#xee;" k="-119" />
454
+ <hkern u1="V" u2="&#xed;" k="-37" />
455
+ <hkern u1="V" u2="&#xec;" k="-41" />
456
+ <hkern u1="x" u2="&#x3b;" k="-4" />
457
+ <hkern u1="x" u2="&#x2c;" k="-4" />
458
+ <hkern g1="backslash" g2="Eth,Dcroat" k="76" />
459
+ <hkern g1="backslash" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="-78" />
460
+ <hkern g1="backslash" g2="Hbar" k="43" />
461
+ <hkern g1="backslash" g2="j,jcircumflex" k="-160" />
462
+ <hkern g1="backslash" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="197" />
463
+ <hkern g1="backslash" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="76" />
464
+ <hkern g1="backslash" g2="v" k="41" />
465
+ <hkern g1="backslash" g2="V" k="119" />
466
+ <hkern g1="backslash" g2="w,wcircumflex" k="20" />
467
+ <hkern g1="backslash" g2="W,Wcircumflex" k="76" />
468
+ <hkern g1="backslash" g2="y,yacute,ydieresis,ycircumflex" k="-37" />
469
+ <hkern g1="backslash" g2="Y,Yacute,Ycircumflex,Ydieresis" k="160" />
470
+ <hkern g1="exclamdown" g2="j,jcircumflex" k="-78" />
471
+ <hkern g1="exclamdown" g2="V" k="41" />
472
+ <hkern g1="exclamdown" g2="W,Wcircumflex" k="20" />
473
+ <hkern g1="exclamdown" g2="Y,Yacute,Ycircumflex,Ydieresis" k="61" />
474
+ <hkern g1="periodcentered" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="125" />
475
+ <hkern g1="periodcentered" g2="V" k="41" />
476
+ <hkern g1="periodcentered" g2="Y,Yacute,Ycircumflex,Ydieresis" k="84" />
477
+ <hkern g1="periodcentered" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="43" />
478
+ <hkern g1="periodcentered" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="43" />
479
+ <hkern g1="periodcentered" g2="x" k="41" />
480
+ <hkern g1="periodcentered" g2="X" k="41" />
481
+ <hkern g1="periodcentered" g2="Z,Zacute,Zdotaccent,Zcaron" k="84" />
482
+ <hkern g1="questiondown" g2="j,jcircumflex" k="-137" />
483
+ <hkern g1="questiondown" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="168" />
484
+ <hkern g1="questiondown" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="63" />
485
+ <hkern g1="questiondown" g2="V" k="84" />
486
+ <hkern g1="questiondown" g2="W,Wcircumflex" k="63" />
487
+ <hkern g1="questiondown" g2="Y,Yacute,Ycircumflex,Ydieresis" k="139" />
488
+ <hkern g1="questiondown" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="94" />
489
+ <hkern g1="questiondown" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="41" />
490
+ <hkern g1="questiondown" g2="X" k="53" />
491
+ <hkern g1="questiondown" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="49" />
492
+ <hkern g1="questiondown" g2="f" k="94" />
493
+ <hkern g1="questiondown" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="27" />
494
+ <hkern g1="questiondown" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="43" />
495
+ <hkern g1="slash" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
496
+ <hkern g1="slash" g2="j,jcircumflex" k="-74" />
497
+ <hkern g1="slash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="82" />
498
+ <hkern g1="slash" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="43" />
499
+ <hkern g1="slash" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="84" />
500
+ <hkern g1="slash" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="20" />
501
+ <hkern g1="slash" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,uni01D0" k="-74" />
502
+ <hkern g1="slash" g2="J,Jcircumflex" k="164" />
503
+ <hkern g1="slash" g2="uni018F" k="23" />
504
+ <hkern g1="slash" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="-35" />
505
+ <hkern g1="slash" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="41" />
506
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="23" />
507
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="90" />
508
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="V" k="23" />
509
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="Y,Yacute,Ycircumflex,Ydieresis" k="23" />
510
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="quoteright,quotedblright" k="113" />
511
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="asterisk" k="205" />
512
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="periodcentered" k="43" />
513
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="-57" />
514
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="18" />
515
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="f" k="20" />
516
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="20" />
517
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="-57" />
518
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="18" />
519
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="35" />
520
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="X" k="-20" />
521
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="Z,Zacute,Zdotaccent,Zcaron" k="23" />
522
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="question,uni203D,uni2047,uni2048" k="41" />
523
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="quoteleft,quotedblleft" k="119" />
524
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="quotedbl,quotesingle" k="90" />
525
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="backslash" k="82" />
526
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="registered" k="145" />
527
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="trademark" k="82" />
528
+ <hkern g1="B" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="20" />
529
+ <hkern g1="B" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="43" />
530
+ <hkern g1="B" g2="Y,Yacute,Ycircumflex,Ydieresis" k="23" />
531
+ <hkern g1="B" g2="quoteright,quotedblright" k="41" />
358
532
  <hkern g1="B" g2="asterisk" k="61" />
359
533
  <hkern g1="B" g2="periodcentered" k="41" />
534
+ <hkern g1="B" g2="quoteleft,quotedblleft" k="23" />
360
535
  <hkern g1="B" g2="trademark" k="41" />
536
+ <hkern g1="B" g2="J,Jcircumflex" k="31" />
537
+ <hkern g1="B" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="23" />
361
538
  <hkern g1="B" g2="v" k="23" />
539
+ <hkern g1="B" g2="w,wcircumflex" k="20" />
362
540
  <hkern g1="B" g2="x" k="20" />
363
- <hkern g1="C,Ccedilla" g2="T" k="43" />
364
- <hkern g1="C,Ccedilla" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="23" />
365
- <hkern g1="C,Ccedilla" g2="g" k="41" />
366
- <hkern g1="C,Ccedilla" g2="w" k="20" />
367
- <hkern g1="C,Ccedilla" g2="y,yacute,ydieresis" k="23" />
368
- <hkern g1="C,Ccedilla" g2="S" k="43" />
369
- <hkern g1="C,Ccedilla" g2="Z" k="20" />
370
- <hkern g1="C,Ccedilla" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="49" />
371
- <hkern g1="C,Ccedilla" g2="J" k="20" />
372
- <hkern g1="C,Ccedilla" g2="t" k="23" />
373
- <hkern g1="C,Ccedilla" g2="u,ugrave,uacute,ucircumflex,udieresis" k="20" />
374
- <hkern g1="C,Ccedilla" g2="periodcentered" k="82" />
375
- <hkern g1="C,Ccedilla" g2="registered" k="-41" />
376
- <hkern g1="C,Ccedilla" g2="trademark" k="-59" />
377
- <hkern g1="C,Ccedilla" g2="v" k="23" />
378
- <hkern g1="C,Ccedilla" g2="hyphen,uni00AD,endash,emdash" k="41" />
379
- <hkern g1="C,Ccedilla" g2="guillemotleft,guilsinglleft" k="23" />
380
- <hkern g1="G" g2="T" k="41" />
381
- <hkern g1="G" g2="asterisk" k="63" />
382
- <hkern g1="G" g2="registered" k="-41" />
383
- <hkern g1="G" g2="trademark" k="-61" />
384
- <hkern g1="G" g2="V" k="23" />
385
- <hkern g1="K" g2="T" k="20" />
386
- <hkern g1="K" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="23" />
387
- <hkern g1="K" g2="W" k="20" />
388
- <hkern g1="K" g2="Y,Yacute,Ydieresis" k="20" />
389
- <hkern g1="K" g2="j" k="20" />
390
- <hkern g1="K" g2="w" k="20" />
391
- <hkern g1="K" g2="y,yacute,ydieresis" k="23" />
392
- <hkern g1="K" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="20" />
393
- <hkern g1="K" g2="S" k="20" />
394
- <hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="39" />
395
- <hkern g1="K" g2="t" k="41" />
396
- <hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="31" />
397
- <hkern g1="K" g2="asterisk" k="23" />
398
- <hkern g1="K" g2="periodcentered" k="82" />
399
- <hkern g1="K" g2="registered" k="-39" />
400
- <hkern g1="K" g2="trademark" k="-45" />
401
- <hkern g1="K" g2="V" k="18" />
402
- <hkern g1="K" g2="quotedbl,quotesingle" k="23" />
403
- <hkern g1="K" g2="v" k="23" />
404
- <hkern g1="K" g2="x" k="20" />
405
- <hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="35" />
406
- <hkern g1="K" g2="guillemotleft,guilsinglleft" k="20" />
407
- <hkern g1="K" g2="z" k="23" />
408
- <hkern g1="L" g2="T" k="246" />
409
- <hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="49" />
410
- <hkern g1="L" g2="W" k="113" />
411
- <hkern g1="L" g2="Y,Yacute,Ydieresis" k="143" />
412
- <hkern g1="L" g2="w" k="63" />
413
- <hkern g1="L" g2="y,yacute,ydieresis" k="53" />
414
- <hkern g1="L" g2="quoteright,quotedblright" k="125" />
415
- <hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-16" />
416
- <hkern g1="L" g2="S" k="39" />
417
- <hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="41" />
418
- <hkern g1="L" g2="f,uniFB01,uniFB02" k="23" />
419
- <hkern g1="L" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="23" />
420
- <hkern g1="L" g2="t" k="33" />
421
- <hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="20" />
422
- <hkern g1="L" g2="asterisk" k="287" />
423
- <hkern g1="L" g2="backslash" k="164" />
424
- <hkern g1="L" g2="periodcentered" k="164" />
425
- <hkern g1="L" g2="registered" k="164" />
426
- <hkern g1="L" g2="trademark" k="166" />
427
- <hkern g1="L" g2="V" k="154" />
428
- <hkern g1="L" g2="question" k="41" />
429
- <hkern g1="L" g2="quotedbl,quotesingle" k="121" />
430
- <hkern g1="L" g2="quoteleft,quotedblleft" k="125" />
431
- <hkern g1="L" g2="v" k="53" />
432
- <hkern g1="L" g2="hyphen,uni00AD,endash,emdash" k="123" />
433
- <hkern g1="L" g2="guillemotleft,guilsinglleft" k="82" />
434
- <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="T" k="41" />
435
- <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="W" k="18" />
436
- <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="Y,Yacute,Ydieresis" k="41" />
437
- <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="20" />
438
- <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="Z" k="41" />
439
- <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="J" k="63" />
440
- <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="asterisk" k="82" />
441
- <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="registered" k="-18" />
442
- <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="trademark" k="41" />
443
- <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="slash" k="41" />
444
- <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="V" k="20" />
445
- <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="X" k="25" />
446
- <hkern g1="R" g2="T" k="41" />
447
- <hkern g1="R" g2="Y,Yacute,Ydieresis" k="23" />
448
- <hkern g1="R" g2="g" k="20" />
449
- <hkern g1="R" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="20" />
450
- <hkern g1="R" g2="S" k="29" />
451
- <hkern g1="R" g2="Z" k="20" />
452
- <hkern g1="R" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="20" />
453
- <hkern g1="R" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="20" />
454
- <hkern g1="R" g2="J" k="43" />
455
- <hkern g1="R" g2="asterisk" k="20" />
456
- <hkern g1="R" g2="periodcentered" k="20" />
457
- <hkern g1="R" g2="registered" k="-41" />
458
- <hkern g1="R" g2="V" k="23" />
459
- <hkern g1="R" g2="X" k="20" />
460
- <hkern g1="R" g2="x" k="23" />
461
- <hkern g1="R" g2="hyphen,uni00AD,endash,emdash" k="84" />
462
- <hkern g1="R" g2="guillemotleft,guilsinglleft" k="61" />
463
- <hkern g1="R" g2="z" k="23" />
464
- <hkern g1="R" g2="guillemotright,guilsinglright" k="23" />
465
- <hkern g1="S" g2="T" k="41" />
466
- <hkern g1="S" g2="S" k="23" />
467
- <hkern g1="S" g2="J" k="23" />
468
- <hkern g1="S" g2="asterisk" k="43" />
469
- <hkern g1="S" g2="periodcentered" k="23" />
470
- <hkern g1="S" g2="registered" k="-20" />
471
- <hkern g1="S" g2="z" k="-18" />
472
- <hkern g1="T" g2="Y,Yacute,Ydieresis" k="23" />
473
- <hkern g1="T" g2="g" k="160" />
474
- <hkern g1="T" g2="w" k="82" />
475
- <hkern g1="T" g2="y,yacute,ydieresis" k="78" />
476
- <hkern g1="T" g2="comma,period,ellipsis" k="205" />
477
- <hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="82" />
478
- <hkern g1="T" g2="S" k="96" />
479
- <hkern g1="T" g2="Z" k="123" />
480
- <hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="43" />
481
- <hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="160" />
482
- <hkern g1="T" g2="f,uniFB01,uniFB02" k="43" />
483
- <hkern g1="T" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="123" />
484
- <hkern g1="T" g2="J" k="264" />
485
- <hkern g1="T" g2="t" k="43" />
486
- <hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="100" />
487
- <hkern g1="T" g2="periodcentered" k="125" />
488
- <hkern g1="T" g2="registered" k="-41" />
489
- <hkern g1="T" g2="trademark" k="-82" />
490
- <hkern g1="T" g2="slash" k="207" />
491
- <hkern g1="T" g2="X" k="41" />
492
- <hkern g1="T" g2="v" k="78" />
493
- <hkern g1="T" g2="x" k="96" />
494
- <hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="164" />
495
- <hkern g1="T" g2="guillemotleft,guilsinglleft" k="86" />
496
- <hkern g1="T" g2="m,n,p,r,ntilde" k="100" />
497
- <hkern g1="T" g2="s" k="119" />
498
- <hkern g1="T" g2="z" k="168" />
499
- <hkern g1="T" g2="guillemotright,guilsinglright" k="82" />
500
- <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="Y,Yacute,Ydieresis" k="23" />
501
- <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="g" k="20" />
502
- <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="comma,period,ellipsis" k="20" />
503
- <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
504
- <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="S" k="20" />
505
- <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="J" k="86" />
506
- <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="slash" k="84" />
507
- <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="V" k="20" />
508
- <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="X" k="20" />
509
- <hkern g1="W" g2="g" k="37" />
510
- <hkern g1="W" g2="comma,period,ellipsis" k="63" />
511
- <hkern g1="W" g2="S" k="18" />
512
- <hkern g1="W" g2="Z" k="18" />
513
- <hkern g1="W" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="18" />
514
- <hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="39" />
515
- <hkern g1="W" g2="J" k="156" />
516
- <hkern g1="W" g2="registered" k="-96" />
517
- <hkern g1="W" g2="trademark" k="-63" />
518
- <hkern g1="W" g2="slash" k="84" />
519
- <hkern g1="W" g2="guillemotleft,guilsinglleft" k="20" />
520
- <hkern g1="W" g2="z" k="20" />
521
- <hkern g1="W" g2="guillemotright,guilsinglright" k="20" />
522
- <hkern g1="Y,Yacute,Ydieresis" g2="T" k="23" />
523
- <hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="20" />
524
- <hkern g1="Y,Yacute,Ydieresis" g2="g" k="123" />
525
- <hkern g1="Y,Yacute,Ydieresis" g2="w" k="43" />
526
- <hkern g1="Y,Yacute,Ydieresis" g2="y,yacute,ydieresis" k="23" />
527
- <hkern g1="Y,Yacute,Ydieresis" g2="quoteright,quotedblright" k="-35" />
528
- <hkern g1="Y,Yacute,Ydieresis" g2="comma,period,ellipsis" k="162" />
529
- <hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="23" />
530
- <hkern g1="Y,Yacute,Ydieresis" g2="S" k="31" />
531
- <hkern g1="Y,Yacute,Ydieresis" g2="Z" k="59" />
532
- <hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="23" />
533
- <hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="127" />
534
- <hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="68" />
535
- <hkern g1="Y,Yacute,Ydieresis" g2="J" k="205" />
536
- <hkern g1="Y,Yacute,Ydieresis" g2="t" k="23" />
537
- <hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="63" />
538
- <hkern g1="Y,Yacute,Ydieresis" g2="periodcentered" k="82" />
539
- <hkern g1="Y,Yacute,Ydieresis" g2="registered" k="-78" />
540
- <hkern g1="Y,Yacute,Ydieresis" g2="trademark" k="-100" />
541
- <hkern g1="Y,Yacute,Ydieresis" g2="slash" k="160" />
542
- <hkern g1="Y,Yacute,Ydieresis" g2="v" k="23" />
543
- <hkern g1="Y,Yacute,Ydieresis" g2="x" k="63" />
544
- <hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="123" />
545
- <hkern g1="Y,Yacute,Ydieresis" g2="guillemotleft,guilsinglleft" k="90" />
546
- <hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,r,ntilde" k="82" />
547
- <hkern g1="Y,Yacute,Ydieresis" g2="s" k="68" />
548
- <hkern g1="Y,Yacute,Ydieresis" g2="z" k="86" />
549
- <hkern g1="Y,Yacute,Ydieresis" g2="guillemotright,guilsinglright" k="61" />
550
- <hkern g1="Y,Yacute,Ydieresis" g2="colon,semicolon" k="37" />
551
- <hkern g1="Z" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="20" />
552
- <hkern g1="Z" g2="W" k="18" />
553
- <hkern g1="Z" g2="Y,Yacute,Ydieresis" k="23" />
554
- <hkern g1="Z" g2="g" k="31" />
555
- <hkern g1="Z" g2="w" k="39" />
556
- <hkern g1="Z" g2="y,yacute,ydieresis" k="39" />
557
- <hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="18" />
558
- <hkern g1="Z" g2="S" k="61" />
559
- <hkern g1="Z" g2="Z" k="20" />
560
- <hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="41" />
561
- <hkern g1="Z" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="39" />
562
- <hkern g1="Z" g2="f,uniFB01,uniFB02" k="41" />
563
- <hkern g1="Z" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="53" />
564
- <hkern g1="Z" g2="J" k="78" />
565
- <hkern g1="Z" g2="t" k="23" />
566
- <hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="57" />
567
- <hkern g1="Z" g2="periodcentered" k="123" />
568
- <hkern g1="Z" g2="registered" k="-41" />
569
- <hkern g1="Z" g2="trademark" k="-41" />
570
- <hkern g1="Z" g2="V" k="18" />
571
- <hkern g1="Z" g2="v" k="39" />
572
- <hkern g1="Z" g2="hyphen,uni00AD,endash,emdash" k="82" />
573
- <hkern g1="Z" g2="guillemotleft,guilsinglleft" k="82" />
574
- <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="T" k="43" />
575
- <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="Y,Yacute,Ydieresis" k="43" />
576
- <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quoteright,quotedblright" k="20" />
577
- <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="asterisk" k="123" />
578
- <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="V" k="20" />
579
- <hkern g1="c,ccedilla" g2="T" k="41" />
580
- <hkern g1="c,ccedilla" g2="Y,Yacute,Ydieresis" k="43" />
581
- <hkern g1="c,ccedilla" g2="g" k="20" />
582
- <hkern g1="c,ccedilla" g2="w" k="-18" />
583
- <hkern g1="c,ccedilla" g2="y,yacute,ydieresis" k="-18" />
584
- <hkern g1="c,ccedilla" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="20" />
585
- <hkern g1="c,ccedilla" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="35" />
586
- <hkern g1="c,ccedilla" g2="periodcentered" k="23" />
587
- <hkern g1="c,ccedilla" g2="registered" k="-59" />
588
- <hkern g1="c,ccedilla" g2="V" k="23" />
589
- <hkern g1="c,ccedilla" g2="v" k="-18" />
590
- <hkern g1="c,ccedilla" g2="x" k="-31" />
591
- <hkern g1="c,ccedilla" g2="hyphen,uni00AD,endash,emdash" k="23" />
592
- <hkern g1="colon,semicolon" g2="Y,Yacute,Ydieresis" k="41" />
593
- <hkern g1="colon,semicolon" g2="j" k="-8" />
594
- <hkern g1="colon,semicolon" g2="asterisk" k="125" />
595
- <hkern g1="comma,period,ellipsis" g2="T" k="205" />
596
- <hkern g1="comma,period,ellipsis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="33" />
597
- <hkern g1="comma,period,ellipsis" g2="W" k="63" />
598
- <hkern g1="comma,period,ellipsis" g2="Y,Yacute,Ydieresis" k="164" />
599
- <hkern g1="comma,period,ellipsis" g2="j" k="-41" />
600
- <hkern g1="comma,period,ellipsis" g2="w" k="31" />
601
- <hkern g1="comma,period,ellipsis" g2="y,yacute,ydieresis" k="41" />
602
- <hkern g1="comma,period,ellipsis" g2="quoteright,quotedblright" k="166" />
603
- <hkern g1="comma,period,ellipsis" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="23" />
604
- <hkern g1="comma,period,ellipsis" g2="t" k="63" />
605
- <hkern g1="comma,period,ellipsis" g2="asterisk" k="248" />
606
- <hkern g1="comma,period,ellipsis" g2="V" k="123" />
607
- <hkern g1="comma,period,ellipsis" g2="quotedbl,quotesingle" k="158" />
608
- <hkern g1="comma,period,ellipsis" g2="quoteleft,quotedblleft" k="125" />
609
- <hkern g1="comma,period,ellipsis" g2="v" k="41" />
610
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="T" k="43" />
611
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="W" k="20" />
612
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="Y,Yacute,Ydieresis" k="41" />
613
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="g" k="20" />
614
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="w" k="-25" />
615
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="y,yacute,ydieresis" k="-25" />
616
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="quoteright,quotedblright" k="20" />
617
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="S" k="41" />
618
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="31" />
619
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="J" k="41" />
620
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="t" k="23" />
621
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="asterisk" k="82" />
622
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="backslash" k="23" />
623
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="registered" k="-14" />
624
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="trademark" k="25" />
625
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="V" k="20" />
626
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="v" k="-25" />
627
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="hyphen,uni00AD,endash,emdash" k="-18" />
628
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="guillemotleft,guilsinglleft" k="-14" />
629
- <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="z" k="-10" />
630
- <hkern g1="f" g2="T" k="-100" />
631
- <hkern g1="f" g2="W" k="-100" />
632
- <hkern g1="f" g2="Y,Yacute,Ydieresis" k="-100" />
633
- <hkern g1="f" g2="g" k="31" />
634
- <hkern g1="f" g2="j" k="20" />
541
+ <hkern g1="B" g2="y,yacute,ydieresis,ycircumflex" k="23" />
542
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="20" />
543
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
544
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="V" k="23" />
545
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="Y,Yacute,Ycircumflex,Ydieresis" k="43" />
546
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="periodcentered" k="23" />
547
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
548
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="registered" k="-59" />
549
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="v" k="-18" />
550
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="w,wcircumflex" k="-18" />
551
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="x" k="-31" />
552
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="y,yacute,ydieresis,ycircumflex" k="-18" />
553
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
554
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="35" />
555
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="23" />
556
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="guillemotleft,guilsinglleft" k="23" />
557
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="45" />
558
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="43" />
559
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="periodcentered" k="82" />
560
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="49" />
561
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="20" />
562
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="23" />
563
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="Z,Zacute,Zdotaccent,Zcaron" k="20" />
564
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="registered" k="-39" />
565
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="trademark" k="-61" />
566
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="J,Jcircumflex" k="20" />
567
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="43" />
568
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="v" k="23" />
569
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="w,wcircumflex" k="20" />
570
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="y,yacute,ydieresis,ycircumflex" k="23" />
571
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="41" />
572
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="41" />
573
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="guillemotleft,guilsinglleft" k="23" />
574
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="20" />
575
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="43" />
576
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="V" k="20" />
577
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="Y,Yacute,Ycircumflex,Ydieresis" k="41" />
578
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="quoteright,quotedblright" k="20" />
579
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="asterisk" k="82" />
580
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="31" />
581
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="backslash" k="23" />
582
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="registered" k="-14" />
583
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="trademark" k="25" />
584
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="J,Jcircumflex" k="41" />
585
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="41" />
586
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="v" k="-25" />
587
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="w,wcircumflex" k="-25" />
588
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="y,yacute,ydieresis,ycircumflex" k="-25" />
589
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
590
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="-20" />
591
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="guillemotleft,guilsinglleft" k="-14" />
592
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="W,Wcircumflex" k="20" />
593
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="z,zacute,zdotaccent,zcaron" k="-8" />
594
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,uni01E2,AEacute" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="43" />
595
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,uni01E2,AEacute" g2="v" k="20" />
596
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,uni01E2,AEacute" g2="x" k="47" />
597
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,uni01E2,AEacute" g2="y,yacute,ydieresis,ycircumflex" k="20" />
598
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,uni01E2,AEacute" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="20" />
599
+ <hkern g1="f" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="-100" />
600
+ <hkern g1="f" g2="V" k="-141" />
601
+ <hkern g1="f" g2="Y,Yacute,Ycircumflex,Ydieresis" k="-137" />
635
602
  <hkern g1="f" g2="quoteright,quotedblright" k="-82" />
636
- <hkern g1="f" g2="comma,period,ellipsis" k="84" />
637
- <hkern g1="f" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="41" />
638
- <hkern g1="f" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="20" />
639
- <hkern g1="f" g2="u,ugrave,uacute,ucircumflex,udieresis" k="45" />
640
- <hkern g1="f" g2="backslash" k="-162" />
603
+ <hkern g1="f" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="84" />
641
604
  <hkern g1="f" g2="periodcentered" k="41" />
642
- <hkern g1="f" g2="registered" k="-184" />
643
- <hkern g1="f" g2="trademark" k="-162" />
644
- <hkern g1="f" g2="slash" k="41" />
645
- <hkern g1="f" g2="exclam" k="-41" />
646
- <hkern g1="f" g2="V" k="-104" />
605
+ <hkern g1="f" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="41" />
647
606
  <hkern g1="f" g2="X" k="-78" />
648
- <hkern g1="f" g2="question" k="-59" />
649
- <hkern g1="f" g2="quotedbl,quotesingle" k="-82" />
607
+ <hkern g1="f" g2="question,uni203D,uni2047,uni2048" k="-59" />
650
608
  <hkern g1="f" g2="quoteleft,quotedblleft" k="-82" />
609
+ <hkern g1="f" g2="quotedbl,quotesingle" k="-82" />
610
+ <hkern g1="f" g2="backslash" k="-162" />
611
+ <hkern g1="f" g2="registered" k="-184" />
612
+ <hkern g1="f" g2="trademark" k="-162" />
651
613
  <hkern g1="f" g2="v" k="-37" />
652
- <hkern g1="f" g2="hyphen,uni00AD,endash,emdash" k="23" />
653
- <hkern g1="f" g2="z" k="23" />
614
+ <hkern g1="f" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="31" />
615
+ <hkern g1="f" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="20" />
616
+ <hkern g1="f" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="23" />
617
+ <hkern g1="f" g2="W,Wcircumflex" k="-100" />
618
+ <hkern g1="f" g2="z,zacute,zdotaccent,zcaron" k="23" />
619
+ <hkern g1="f" g2="j,jcircumflex" k="20" />
654
620
  <hkern g1="f" g2="parenright,bracketright,braceright" k="-117" />
655
- <hkern g1="g" g2="T" k="41" />
656
- <hkern g1="g" g2="Y,Yacute,Ydieresis" k="23" />
657
- <hkern g1="g" g2="j" k="-66" />
658
- <hkern g1="g" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="31" />
659
- <hkern g1="g" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="23" />
660
- <hkern g1="g" g2="asterisk" k="82" />
661
- <hkern g1="g" g2="periodcentered" k="23" />
662
- <hkern g1="g" g2="registered" k="-41" />
663
- <hkern g1="g" g2="slash" k="-123" />
664
- <hkern g1="g" g2="question" k="61" />
665
- <hkern g1="g" g2="z" k="23" />
666
- <hkern g1="g" g2="parenright,bracketright,braceright" k="-41" />
667
- <hkern g1="k" g2="T" k="12" />
668
- <hkern g1="k" g2="Y,Yacute,Ydieresis" k="14" />
669
- <hkern g1="k" g2="g" k="20" />
670
- <hkern g1="k" g2="j" k="20" />
671
- <hkern g1="k" g2="quoteright,quotedblright" k="41" />
672
- <hkern g1="k" g2="comma,period,ellipsis" k="-41" />
673
- <hkern g1="k" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="20" />
674
- <hkern g1="k" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="25" />
675
- <hkern g1="k" g2="t" k="23" />
676
- <hkern g1="k" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
677
- <hkern g1="k" g2="asterisk" k="41" />
678
- <hkern g1="k" g2="periodcentered" k="41" />
679
- <hkern g1="k" g2="trademark" k="41" />
680
- <hkern g1="k" g2="hyphen,uni00AD,endash,emdash" k="43" />
681
- <hkern g1="k" g2="guillemotleft,guilsinglleft" k="41" />
682
- <hkern g1="h,m,n,ntilde" g2="T" k="43" />
683
- <hkern g1="h,m,n,ntilde" g2="Y,Yacute,Ydieresis" k="20" />
684
- <hkern g1="h,m,n,ntilde" g2="asterisk" k="82" />
685
- <hkern g1="h,m,n,ntilde" g2="trademark" k="41" />
686
- <hkern g1="h,m,n,ntilde" g2="V" k="20" />
687
- <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" g2="T" k="115" />
688
- <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" g2="Y,Yacute,Ydieresis" k="82" />
689
- <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" g2="quoteright,quotedblright" k="41" />
690
- <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" g2="comma,period,ellipsis" k="20" />
691
- <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="31" />
692
- <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" g2="backslash" k="41" />
693
- <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" g2="V" k="37" />
694
- <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" g2="quoteleft,quotedblleft" k="41" />
695
- <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" g2="x" k="25" />
696
- <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn" g2="hyphen,uni00AD,endash,emdash" k="-18" />
697
- <hkern g1="quoteleft,quotedblleft" g2="Y,Yacute,Ydieresis" k="-35" />
698
- <hkern g1="quoteleft,quotedblleft" g2="g" k="78" />
699
- <hkern g1="quoteleft,quotedblleft" g2="comma,period,ellipsis" k="121" />
700
- <hkern g1="quoteleft,quotedblleft" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="82" />
701
- <hkern g1="quoteleft,quotedblleft" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="98" />
702
- <hkern g1="quoteleft,quotedblleft" g2="f,uniFB01,uniFB02" k="23" />
703
- <hkern g1="quoteleft,quotedblleft" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="78" />
704
- <hkern g1="quoteleft,quotedblleft" g2="exclamdown" k="119" />
705
- <hkern g1="quoteleft,quotedblleft" g2="questiondown" k="283" />
706
- <hkern g1="r" g2="g" k="20" />
707
- <hkern g1="r" g2="j" k="18" />
708
- <hkern g1="r" g2="w" k="-37" />
709
- <hkern g1="r" g2="y,yacute,ydieresis" k="-55" />
710
- <hkern g1="r" g2="comma,period,ellipsis" k="80" />
711
- <hkern g1="r" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="37" />
712
- <hkern g1="r" g2="Z" k="20" />
713
- <hkern g1="r" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="47" />
714
- <hkern g1="r" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="20" />
715
- <hkern g1="r" g2="J" k="90" />
716
- <hkern g1="r" g2="backslash" k="-37" />
717
- <hkern g1="r" g2="periodcentered" k="39" />
718
- <hkern g1="r" g2="registered" k="-162" />
719
- <hkern g1="r" g2="slash" k="82" />
720
- <hkern g1="r" g2="quoteleft,quotedblleft" k="-82" />
721
- <hkern g1="r" g2="v" k="-55" />
722
- <hkern g1="r" g2="hyphen,uni00AD,endash,emdash" k="43" />
723
- <hkern g1="r" g2="guillemotleft,guilsinglleft" k="41" />
724
- <hkern g1="r" g2="s" k="20" />
725
- <hkern g1="r" g2="z" k="20" />
726
- <hkern g1="s" g2="T" k="43" />
727
- <hkern g1="s" g2="Y,Yacute,Ydieresis" k="41" />
728
- <hkern g1="s" g2="quoteright,quotedblright" k="6" />
729
- <hkern g1="s" g2="asterisk" k="125" />
730
- <hkern g1="s" g2="V" k="20" />
731
- <hkern g1="s" g2="question" k="6" />
732
- <hkern g1="s" g2="hyphen,uni00AD,endash,emdash" k="-20" />
733
- <hkern g1="t" g2="T" k="23" />
734
- <hkern g1="t" g2="g" k="20" />
735
- <hkern g1="t" g2="comma,period,ellipsis" k="-41" />
736
- <hkern g1="t" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="43" />
737
- <hkern g1="t" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="20" />
738
- <hkern g1="t" g2="u,ugrave,uacute,ucircumflex,udieresis" k="18" />
739
- <hkern g1="t" g2="periodcentered" k="41" />
740
- <hkern g1="t" g2="registered" k="-82" />
741
- <hkern g1="t" g2="slash" k="-41" />
742
- <hkern g1="t" g2="question" k="41" />
743
- <hkern g1="t" g2="hyphen,uni00AD,endash,emdash" k="41" />
744
- <hkern g1="t" g2="guillemotleft,guilsinglleft" k="43" />
745
- <hkern g1="t" g2="colon,semicolon" k="-41" />
746
- <hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis" g2="T" k="41" />
747
- <hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis" g2="Y,Yacute,Ydieresis" k="61" />
748
- <hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis" g2="asterisk" k="61" />
749
- <hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis" g2="V" k="23" />
750
- <hkern g1="w" g2="T" k="43" />
751
- <hkern g1="w" g2="Y,Yacute,Ydieresis" k="6" />
752
- <hkern g1="w" g2="j" k="20" />
753
- <hkern g1="w" g2="comma,period,ellipsis" k="31" />
754
- <hkern g1="w" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="20" />
755
- <hkern g1="w" g2="J" k="61" />
756
- <hkern g1="w" g2="asterisk" k="23" />
757
- <hkern g1="w" g2="registered" k="-111" />
758
- <hkern g1="w" g2="trademark" k="-41" />
759
- <hkern g1="w" g2="slash" k="23" />
760
- <hkern g1="w" g2="X" k="23" />
761
- <hkern g1="w" g2="z" k="25" />
762
- <hkern g1="y,yacute,ydieresis" g2="T" k="41" />
763
- <hkern g1="y,yacute,ydieresis" g2="j" k="20" />
764
- <hkern g1="y,yacute,ydieresis" g2="comma,period,ellipsis" k="41" />
765
- <hkern g1="y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="41" />
766
- <hkern g1="y,yacute,ydieresis" g2="J" k="82" />
767
- <hkern g1="y,yacute,ydieresis" g2="registered" k="-115" />
768
- <hkern g1="y,yacute,ydieresis" g2="trademark" k="-37" />
769
- <hkern g1="y,yacute,ydieresis" g2="slash" k="41" />
770
- <hkern g1="y,yacute,ydieresis" g2="z" k="43" />
771
- <hkern g1="z" g2="T" k="59" />
772
- <hkern g1="z" g2="g" k="18" />
773
- <hkern g1="z" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="57" />
774
- <hkern g1="z" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="20" />
775
- <hkern g1="z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="20" />
776
- <hkern g1="z" g2="periodcentered" k="23" />
777
- <hkern g1="z" g2="registered" k="-74" />
778
- <hkern g1="z" g2="trademark" k="-37" />
779
- <hkern g1="z" g2="hyphen,uni00AD,endash,emdash" k="20" />
780
- <hkern g1="F" g2="W" k="-20" />
781
- <hkern g1="F" g2="Y,Yacute,Ydieresis" k="-23" />
782
- <hkern g1="F" g2="g" k="43" />
783
- <hkern g1="F" g2="w" k="20" />
784
- <hkern g1="F" g2="y,yacute,ydieresis" k="20" />
785
- <hkern g1="F" g2="comma,period,ellipsis" k="123" />
786
- <hkern g1="F" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="74" />
787
- <hkern g1="F" g2="S" k="33" />
788
- <hkern g1="F" g2="Z" k="61" />
789
- <hkern g1="F" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="20" />
790
- <hkern g1="F" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="63" />
791
- <hkern g1="F" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="23" />
792
- <hkern g1="F" g2="J" k="289" />
793
- <hkern g1="F" g2="t" k="20" />
794
- <hkern g1="F" g2="u,ugrave,uacute,ucircumflex,udieresis" k="31" />
621
+ <hkern g1="f" g2="exclam,exclamdbl,uni2049" k="-41" />
622
+ <hkern g1="f" g2="slash" k="41" />
623
+ <hkern g1="F" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="20" />
624
+ <hkern g1="F" g2="V" k="-20" />
625
+ <hkern g1="F" g2="Y,Yacute,Ycircumflex,Ydieresis" k="-23" />
626
+ <hkern g1="F" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
627
+ <hkern g1="F" g2="periodcentered" k="23" />
628
+ <hkern g1="F" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="63" />
629
+ <hkern g1="F" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="74" />
630
+ <hkern g1="F" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="20" />
631
+ <hkern g1="F" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="33" />
632
+ <hkern g1="F" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="31" />
633
+ <hkern g1="F" g2="X" k="43" />
634
+ <hkern g1="F" g2="Z,Zacute,Zdotaccent,Zcaron" k="61" />
635
+ <hkern g1="F" g2="registered" k="-59" />
636
+ <hkern g1="F" g2="trademark" k="-111" />
637
+ <hkern g1="F" g2="J,Jcircumflex" k="289" />
638
+ <hkern g1="F" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="33" />
639
+ <hkern g1="F" g2="v" k="23" />
640
+ <hkern g1="F" g2="w,wcircumflex" k="20" />
641
+ <hkern g1="F" g2="x" k="41" />
642
+ <hkern g1="F" g2="y,yacute,ydieresis,ycircumflex" k="20" />
643
+ <hkern g1="F" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="43" />
644
+ <hkern g1="F" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="23" />
795
645
  <hkern g1="F" g2="guillemotleft,guilsinglleft" k="41" />
796
- <hkern g1="F" g2="m,n,p,r,ntilde" k="41" />
797
- <hkern g1="F" g2="s" k="33" />
798
- <hkern g1="F" g2="z" k="35" />
799
- <hkern g1="J" g2="comma,period,ellipsis" k="43" />
800
- <hkern g1="J" g2="J" k="78" />
801
- <hkern g1="P" g2="T" k="61" />
802
- <hkern g1="P" g2="Y,Yacute,Ydieresis" k="20" />
803
- <hkern g1="P" g2="g" k="80" />
804
- <hkern g1="P" g2="comma,period,ellipsis" k="205" />
805
- <hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="102" />
806
- <hkern g1="P" g2="S" k="20" />
807
- <hkern g1="P" g2="Z" k="193" />
808
- <hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="98" />
809
- <hkern g1="P" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="51" />
810
- <hkern g1="P" g2="J" k="305" />
811
- <hkern g1="P" g2="hyphen,uni00AD,endash,emdash" k="74" />
646
+ <hkern g1="F" g2="W,Wcircumflex" k="-20" />
647
+ <hkern g1="F" g2="z,zacute,zdotaccent,zcaron" k="35" />
648
+ <hkern g1="F" g2="slash" k="166" />
649
+ <hkern g1="F" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="41" />
650
+ <hkern g1="germandbls" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="31" />
651
+ <hkern g1="germandbls" g2="quoteright,quotedblright" k="76" />
652
+ <hkern g1="germandbls" g2="question,uni203D,uni2047,uni2048" k="20" />
653
+ <hkern g1="germandbls" g2="quoteleft,quotedblleft" k="72" />
654
+ <hkern g1="germandbls" g2="quotedbl,quotesingle" k="127" />
655
+ <hkern g1="germandbls" g2="backslash" k="41" />
656
+ <hkern g1="germandbls" g2="registered" k="49" />
657
+ <hkern g1="germandbls" g2="v" k="20" />
658
+ <hkern g1="germandbls" g2="w,wcircumflex" k="23" />
659
+ <hkern g1="germandbls" g2="x" k="-18" />
660
+ <hkern g1="germandbls" g2="y,yacute,ydieresis,ycircumflex" k="20" />
661
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
662
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="Y,Yacute,Ycircumflex,Ydieresis" k="23" />
663
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="asterisk" k="78" />
664
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="periodcentered" k="23" />
665
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="31" />
666
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="question,uni203D,uni2047,uni2048" k="61" />
667
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="registered" k="-41" />
668
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="y,yacute,ydieresis,ycircumflex" k="-45" />
669
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="23" />
670
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="z,zacute,zdotaccent,zcaron" k="23" />
671
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="j,jcircumflex" k="-66" />
672
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="parenright,bracketright,braceright" k="-41" />
673
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="slash" k="-123" />
674
+ <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
675
+ <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="V" k="23" />
676
+ <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="asterisk" k="63" />
677
+ <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="registered" k="-41" />
678
+ <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="trademark" k="-51" />
679
+ <hkern g1="Hbar" g2="registered" k="-55" />
680
+ <hkern g1="Hbar" g2="trademark" k="-18" />
681
+ <hkern g1="Hbar" g2="slash" k="37" />
682
+ <hkern g1="J,Jcircumflex" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="43" />
683
+ <hkern g1="J,Jcircumflex" g2="J,Jcircumflex" k="82" />
684
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="27" />
685
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="49" />
686
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="Y,Yacute,Ycircumflex,Ydieresis" k="14" />
687
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="quoteright,quotedblright" k="41" />
688
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="asterisk" k="45" />
689
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="colon,semicolon" k="-37" />
690
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="-37" />
691
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="periodcentered" k="41" />
692
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
693
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="23" />
694
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="registered" k="-14" />
695
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="trademark" k="41" />
696
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
697
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="25" />
698
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="43" />
699
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="guillemotleft,guilsinglleft" k="41" />
700
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="guillemotright,guilsinglright" k="6" />
701
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="j,jcircumflex" k="20" />
702
+ <hkern g1="K,Kcommaaccent" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="45" />
703
+ <hkern g1="K,Kcommaaccent" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="25" />
704
+ <hkern g1="K,Kcommaaccent" g2="V" k="18" />
705
+ <hkern g1="K,Kcommaaccent" g2="Y,Yacute,Ycircumflex,Ydieresis" k="20" />
706
+ <hkern g1="K,Kcommaaccent" g2="asterisk" k="82" />
707
+ <hkern g1="K,Kcommaaccent" g2="periodcentered" k="82" />
708
+ <hkern g1="K,Kcommaaccent" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="20" />
709
+ <hkern g1="K,Kcommaaccent" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="33" />
710
+ <hkern g1="K,Kcommaaccent" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="31" />
711
+ <hkern g1="K,Kcommaaccent" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="23" />
712
+ <hkern g1="K,Kcommaaccent" g2="quotedbl,quotesingle" k="27" />
713
+ <hkern g1="K,Kcommaaccent" g2="registered" k="-39" />
714
+ <hkern g1="K,Kcommaaccent" g2="trademark" k="-35" />
715
+ <hkern g1="K,Kcommaaccent" g2="v" k="23" />
716
+ <hkern g1="K,Kcommaaccent" g2="w,wcircumflex" k="20" />
717
+ <hkern g1="K,Kcommaaccent" g2="x" k="20" />
718
+ <hkern g1="K,Kcommaaccent" g2="y,yacute,ydieresis,ycircumflex" k="23" />
719
+ <hkern g1="K,Kcommaaccent" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="35" />
720
+ <hkern g1="K,Kcommaaccent" g2="guillemotleft,guilsinglleft" k="20" />
721
+ <hkern g1="K,Kcommaaccent" g2="W,Wcircumflex" k="20" />
722
+ <hkern g1="K,Kcommaaccent" g2="z,zacute,zdotaccent,zcaron" k="23" />
723
+ <hkern g1="K,Kcommaaccent" g2="j,jcircumflex" k="20" />
724
+ <hkern g1="dcaron,lcaron" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="16" />
725
+ <hkern g1="dcaron,lcaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="27" />
726
+ <hkern g1="dcaron,lcaron" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="18" />
727
+ <hkern g1="dcaron,lcaron" g2="backslash" k="-119" />
728
+ <hkern g1="dcaron,lcaron" g2="z,zacute,zdotaccent,zcaron" k="23" />
729
+ <hkern g1="dcaron,lcaron" g2="slash" k="23" />
730
+ <hkern g1="Lcaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="82" />
731
+ <hkern g1="l,lacute,lcommaaccent" g2="j,jcircumflex" k="-14" />
732
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="33" />
733
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="246" />
734
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="V" k="154" />
735
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="Y,Yacute,Ycircumflex,Ydieresis" k="143" />
736
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="quoteright,quotedblright" k="125" />
737
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="asterisk" k="287" />
738
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="periodcentered" k="164" />
739
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="-16" />
740
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="f" k="23" />
741
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="41" />
742
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="20" />
743
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="49" />
744
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="question,uni203D,uni2047,uni2048" k="41" />
745
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="quoteleft,quotedblleft" k="125" />
746
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="quotedbl,quotesingle" k="121" />
747
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="backslash" k="164" />
748
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="registered" k="164" />
749
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="trademark" k="166" />
750
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="39" />
751
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="v" k="53" />
752
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="w,wcircumflex" k="63" />
753
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="y,yacute,ydieresis,ycircumflex" k="53" />
754
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="23" />
755
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="123" />
756
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="guillemotleft,guilsinglleft" k="82" />
757
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="W,Wcircumflex" k="113" />
758
+ <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="43" />
759
+ <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="V" k="20" />
760
+ <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="Y,Yacute,Ycircumflex,Ydieresis" k="20" />
761
+ <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="quoteright,quotedblright" k="41" />
762
+ <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="asterisk" k="82" />
763
+ <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="trademark" k="41" />
764
+ <hkern g1="ohorn" g2="quoteright,quotedblright" k="-39" />
765
+ <hkern g1="ohorn" g2="backslash" k="-41" />
766
+ <hkern g1="ohorn" g2="registered" k="-41" />
767
+ <hkern g1="ohorn" g2="parenright,bracketright,braceright" k="-41" />
768
+ <hkern g1="Ohorn" g2="registered" k="-18" />
769
+ <hkern g1="Ohorn" g2="trademark" k="-20" />
770
+ <hkern g1="Ohorn" g2="slash" k="41" />
771
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="25" />
772
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="115" />
773
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="V" k="37" />
774
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="Y,Yacute,Ycircumflex,Ydieresis" k="82" />
775
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="quoteright,quotedblright" k="41" />
776
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="asterisk" k="74" />
777
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="20" />
778
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="31" />
779
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="quoteleft,quotedblleft" k="41" />
780
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="quotedbl,quotesingle" k="76" />
781
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="backslash" k="41" />
782
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="x" k="25" />
783
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="-18" />
784
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="43" />
785
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="V" k="20" />
786
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="Y,Yacute,Ycircumflex,Ydieresis" k="41" />
787
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="asterisk" k="82" />
788
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="20" />
789
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="X" k="25" />
790
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="Z,Zacute,Zdotaccent,Zcaron" k="41" />
791
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="registered" k="-18" />
792
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="trademark" k="41" />
793
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="J,Jcircumflex" k="63" />
794
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="x" k="23" />
795
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="W,Wcircumflex" k="18" />
796
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="slash" k="43" />
797
+ <hkern g1="P" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="61" />
798
+ <hkern g1="P" g2="Y,Yacute,Ycircumflex,Ydieresis" k="20" />
799
+ <hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="205" />
800
+ <hkern g1="P" g2="periodcentered" k="23" />
801
+ <hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="98" />
802
+ <hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="102" />
803
+ <hkern g1="P" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="20" />
804
+ <hkern g1="P" g2="X" k="43" />
805
+ <hkern g1="P" g2="Z,Zacute,Zdotaccent,Zcaron" k="193" />
806
+ <hkern g1="P" g2="registered" k="-80" />
807
+ <hkern g1="P" g2="J,Jcircumflex" k="305" />
808
+ <hkern g1="P" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="20" />
809
+ <hkern g1="P" g2="x" k="23" />
810
+ <hkern g1="P" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="80" />
811
+ <hkern g1="P" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="51" />
812
+ <hkern g1="P" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="78" />
812
813
  <hkern g1="P" g2="guillemotleft,guilsinglleft" k="41" />
813
- <hkern g1="P" g2="s" k="20" />
814
- <hkern g1="P" g2="z" k="41" />
815
- <hkern g1="V" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="20" />
816
- <hkern g1="V" g2="g" k="45" />
817
- <hkern g1="V" g2="w" k="16" />
818
- <hkern g1="V" g2="y,yacute,ydieresis" k="16" />
819
- <hkern g1="V" g2="comma,period,ellipsis" k="119" />
820
- <hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="23" />
821
- <hkern g1="V" g2="S" k="39" />
822
- <hkern g1="V" g2="Z" k="37" />
823
- <hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="20" />
824
- <hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="31" />
825
- <hkern g1="V" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="27" />
826
- <hkern g1="V" g2="J" k="160" />
827
- <hkern g1="V" g2="i,igrave,iacute,icircumflex,idieresis" k="8" />
828
- <hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="61" />
829
- <hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="37" />
814
+ <hkern g1="P" g2="z,zacute,zdotaccent,zcaron" k="41" />
815
+ <hkern g1="P" g2="slash" k="184" />
816
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="quoteright,quotedblright" k="-70" />
817
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="colon,semicolon" k="-74" />
818
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="80" />
819
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="periodcentered" k="39" />
820
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="43" />
821
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="23" />
822
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="Z,Zacute,Zdotaccent,Zcaron" k="20" />
823
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="quoteleft,quotedblleft" k="-78" />
824
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="backslash" k="-37" />
825
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="registered" k="-162" />
826
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="J,Jcircumflex" k="90" />
827
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="v" k="-74" />
828
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="w,wcircumflex" k="-55" />
829
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="y,yacute,ydieresis,ycircumflex" k="-74" />
830
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
831
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="20" />
832
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="43" />
833
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="guillemotleft,guilsinglleft" k="41" />
834
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="slash" k="82" />
835
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="23" />
836
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="V" k="-33" />
837
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="Y,Yacute,Ycircumflex,Ydieresis" k="-14" />
838
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="asterisk" k="20" />
839
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="periodcentered" k="20" />
840
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="Z,Zacute,Zdotaccent,Zcaron" k="20" />
841
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="registered" k="-74" />
842
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="J,Jcircumflex" k="43" />
843
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="29" />
844
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="20" />
845
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="66" />
846
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="guillemotleft,guilsinglleft" k="61" />
847
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="W,Wcircumflex" k="-18" />
848
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="guillemotright,guilsinglright" k="23" />
849
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="41" />
850
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="43" />
851
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="V" k="20" />
852
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="Y,Yacute,Ycircumflex,Ydieresis" k="41" />
853
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="quoteright,quotedblright" k="6" />
854
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="asterisk" k="125" />
855
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="question,uni203D,uni2047,uni2048" k="6" />
856
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="-20" />
857
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="43" />
858
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
859
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="Y,Yacute,Ycircumflex,Ydieresis" k="23" />
860
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="quoteright,quotedblright" k="6" />
861
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="asterisk" k="39" />
862
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="periodcentered" k="25" />
863
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="registered" k="-16" />
864
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="J,Jcircumflex" k="23" />
865
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="23" />
866
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="-23" />
867
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="z,zacute,zdotaccent,zcaron" k="-18" />
868
+ <hkern g1="Thorn" g2="asterisk" k="154" />
869
+ <hkern g1="Thorn" g2="backslash" k="82" />
870
+ <hkern g1="Thorn" g2="trademark" k="43" />
871
+ <hkern g1="Thorn" g2="slash" k="152" />
872
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="41" />
873
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="23" />
874
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="colon,semicolon" k="-41" />
875
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="-37" />
876
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="periodcentered" k="41" />
877
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="45" />
878
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="20" />
879
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="question,uni203D,uni2047,uni2048" k="41" />
880
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="registered" k="-82" />
881
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="x" k="39" />
882
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
883
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="23" />
884
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="41" />
885
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="guillemotleft,guilsinglleft" k="43" />
886
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="guillemotright,guilsinglright" k="23" />
887
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="slash" k="-39" />
888
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="hbar,uni0180" k="20" />
889
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="43" />
890
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="Y,Yacute,Ycircumflex,Ydieresis" k="23" />
891
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="colon,semicolon" k="41" />
892
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="205" />
893
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="periodcentered" k="125" />
894
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="160" />
895
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="82" />
896
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="f" k="43" />
897
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="43" />
898
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="119" />
899
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="100" />
900
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="X" k="41" />
901
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="Z,Zacute,Zdotaccent,Zcaron" k="123" />
902
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="registered" k="-41" />
903
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="trademark" k="-82" />
904
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="J,Jcircumflex" k="264" />
905
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="96" />
906
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="v" k="78" />
907
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="w,wcircumflex" k="82" />
908
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="x" k="96" />
909
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="y,yacute,ydieresis,ycircumflex" k="78" />
910
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="160" />
911
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="123" />
912
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="160" />
913
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="guillemotleft,guilsinglleft" k="86" />
914
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="z,zacute,zdotaccent,zcaron" k="168" />
915
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="guillemotright,guilsinglright" k="82" />
916
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="slash" k="207" />
917
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="100" />
918
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="AE,uni01E2,AEacute" k="197" />
919
+ <hkern g1="uhorn" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="-25" />
920
+ <hkern g1="uhorn" g2="quoteright,quotedblright" k="-43" />
921
+ <hkern g1="uhorn" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
922
+ <hkern g1="uhorn" g2="f" k="-27" />
923
+ <hkern g1="uhorn" g2="quoteleft,quotedblleft" k="-84" />
924
+ <hkern g1="uhorn" g2="quotedbl,quotesingle" k="-86" />
925
+ <hkern g1="uhorn" g2="backslash" k="-90" />
926
+ <hkern g1="uhorn" g2="registered" k="-160" />
927
+ <hkern g1="uhorn" g2="v" k="-20" />
928
+ <hkern g1="uhorn" g2="w,wcircumflex" k="-20" />
929
+ <hkern g1="uhorn" g2="y,yacute,ydieresis,ycircumflex" k="-20" />
930
+ <hkern g1="uhorn" g2="j,jcircumflex" k="-25" />
931
+ <hkern g1="uhorn" g2="parenright,bracketright,braceright" k="-102" />
932
+ <hkern g1="uhorn" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,uni01D0" k="-14" />
933
+ <hkern g1="Uhorn" g2="asterisk" k="10" />
934
+ <hkern g1="Uhorn" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="41" />
935
+ <hkern g1="Uhorn" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="41" />
936
+ <hkern g1="Uhorn" g2="backslash" k="-119" />
937
+ <hkern g1="Uhorn" g2="registered" k="-41" />
938
+ <hkern g1="Uhorn" g2="trademark" k="-86" />
939
+ <hkern g1="Uhorn" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="23" />
940
+ <hkern g1="Uhorn" g2="slash" k="125" />
941
+ <hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis,dotlessi,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
942
+ <hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis,dotlessi,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" g2="V" k="23" />
943
+ <hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis,dotlessi,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" g2="Y,Yacute,Ycircumflex,Ydieresis" k="61" />
944
+ <hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis,dotlessi,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" g2="asterisk" k="61" />
945
+ <hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis,dotlessi,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" g2="hbar,uni0180" k="18" />
946
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="Y,Yacute,Ycircumflex,Ydieresis" k="23" />
947
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="20" />
948
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="39" />
949
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="X" k="20" />
950
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="J,Jcircumflex" k="86" />
951
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="20" />
952
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
953
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="slash" k="84" />
954
+ <hkern g1="v" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
955
+ <hkern g1="v" g2="V" k="16" />
956
+ <hkern g1="v" g2="Y,Yacute,Ycircumflex,Ydieresis" k="23" />
957
+ <hkern g1="v" g2="asterisk" k="25" />
958
+ <hkern g1="v" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="41" />
959
+ <hkern g1="v" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="41" />
960
+ <hkern g1="v" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="20" />
961
+ <hkern g1="v" g2="Z,Zacute,Zdotaccent,Zcaron" k="20" />
962
+ <hkern g1="v" g2="registered" k="-115" />
963
+ <hkern g1="v" g2="trademark" k="-35" />
964
+ <hkern g1="v" g2="J,Jcircumflex" k="82" />
965
+ <hkern g1="v" g2="z,zacute,zdotaccent,zcaron" k="43" />
966
+ <hkern g1="v" g2="j,jcircumflex" k="20" />
967
+ <hkern g1="v" g2="slash" k="41" />
968
+ <hkern g1="V" g2="V" k="-20" />
969
+ <hkern g1="V" g2="quoteright,quotedblright" k="-37" />
970
+ <hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="119" />
971
+ <hkern g1="V" g2="periodcentered" k="33" />
972
+ <hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="31" />
973
+ <hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="23" />
974
+ <hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="20" />
975
+ <hkern g1="V" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="18" />
976
+ <hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="61" />
977
+ <hkern g1="V" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="20" />
978
+ <hkern g1="V" g2="Z,Zacute,Zdotaccent,Zcaron" k="37" />
979
+ <hkern g1="V" g2="registered" k="-111" />
980
+ <hkern g1="V" g2="trademark" k="-104" />
981
+ <hkern g1="V" g2="J,Jcircumflex" k="160" />
982
+ <hkern g1="V" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="20" />
983
+ <hkern g1="V" g2="v" k="16" />
984
+ <hkern g1="V" g2="w,wcircumflex" k="16" />
985
+ <hkern g1="V" g2="x" k="27" />
986
+ <hkern g1="V" g2="y,yacute,ydieresis,ycircumflex" k="16" />
987
+ <hkern g1="V" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="45" />
988
+ <hkern g1="V" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="27" />
989
+ <hkern g1="V" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="37" />
830
990
  <hkern g1="V" g2="guillemotleft,guilsinglleft" k="45" />
831
- <hkern g1="V" g2="m,n,p,r,ntilde" k="41" />
832
- <hkern g1="V" g2="s" k="18" />
833
- <hkern g1="V" g2="z" k="55" />
991
+ <hkern g1="V" g2="z,zacute,zdotaccent,zcaron" k="55" />
834
992
  <hkern g1="V" g2="guillemotright,guilsinglright" k="29" />
835
- <hkern g1="X" g2="T" k="41" />
836
- <hkern g1="X" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="20" />
837
- <hkern g1="X" g2="w" k="23" />
838
- <hkern g1="X" g2="y,yacute,ydieresis" k="20" />
839
- <hkern g1="X" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-16" />
840
- <hkern g1="X" g2="S" k="23" />
841
- <hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
842
- <hkern g1="X" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="20" />
843
- <hkern g1="X" g2="f,uniFB01,uniFB02" k="20" />
844
- <hkern g1="X" g2="t" k="20" />
845
- <hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="20" />
846
- <hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="45" />
993
+ <hkern g1="V" g2="slash" k="119" />
994
+ <hkern g1="V" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="41" />
995
+ <hkern g1="w,wcircumflex" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="43" />
996
+ <hkern g1="w,wcircumflex" g2="V" k="16" />
997
+ <hkern g1="w,wcircumflex" g2="Y,Yacute,Ycircumflex,Ydieresis" k="43" />
998
+ <hkern g1="w,wcircumflex" g2="asterisk" k="25" />
999
+ <hkern g1="w,wcircumflex" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="31" />
1000
+ <hkern g1="w,wcircumflex" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
1001
+ <hkern g1="w,wcircumflex" g2="X" k="23" />
1002
+ <hkern g1="w,wcircumflex" g2="registered" k="-111" />
1003
+ <hkern g1="w,wcircumflex" g2="trademark" k="-39" />
1004
+ <hkern g1="w,wcircumflex" g2="J,Jcircumflex" k="61" />
1005
+ <hkern g1="w,wcircumflex" g2="z,zacute,zdotaccent,zcaron" k="25" />
1006
+ <hkern g1="w,wcircumflex" g2="j,jcircumflex" k="20" />
1007
+ <hkern g1="w,wcircumflex" g2="slash" k="23" />
1008
+ <hkern g1="W,Wcircumflex" g2="quoteright,quotedblright" k="-37" />
1009
+ <hkern g1="W,Wcircumflex" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="63" />
1010
+ <hkern g1="W,Wcircumflex" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="39" />
1011
+ <hkern g1="W,Wcircumflex" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="18" />
1012
+ <hkern g1="W,Wcircumflex" g2="Z,Zacute,Zdotaccent,Zcaron" k="18" />
1013
+ <hkern g1="W,Wcircumflex" g2="registered" k="-96" />
1014
+ <hkern g1="W,Wcircumflex" g2="trademark" k="-63" />
1015
+ <hkern g1="W,Wcircumflex" g2="J,Jcircumflex" k="156" />
1016
+ <hkern g1="W,Wcircumflex" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="18" />
1017
+ <hkern g1="W,Wcircumflex" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="37" />
1018
+ <hkern g1="W,Wcircumflex" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="20" />
1019
+ <hkern g1="W,Wcircumflex" g2="guillemotleft,guilsinglleft" k="20" />
1020
+ <hkern g1="W,Wcircumflex" g2="z,zacute,zdotaccent,zcaron" k="20" />
1021
+ <hkern g1="W,Wcircumflex" g2="guillemotright,guilsinglright" k="20" />
1022
+ <hkern g1="W,Wcircumflex" g2="slash" k="84" />
1023
+ <hkern g1="x" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="43" />
1024
+ <hkern g1="x" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="78" />
1025
+ <hkern g1="x" g2="V" k="27" />
1026
+ <hkern g1="x" g2="Y,Yacute,Ycircumflex,Ydieresis" k="63" />
1027
+ <hkern g1="x" g2="asterisk" k="49" />
1028
+ <hkern g1="x" g2="periodcentered" k="41" />
1029
+ <hkern g1="x" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
1030
+ <hkern g1="x" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="20" />
1031
+ <hkern g1="x" g2="X" k="20" />
1032
+ <hkern g1="x" g2="registered" k="-111" />
1033
+ <hkern g1="x" g2="trademark" k="-35" />
1034
+ <hkern g1="x" g2="y,yacute,ydieresis,ycircumflex" k="-14" />
1035
+ <hkern g1="x" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="25" />
1036
+ <hkern g1="x" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="23" />
1037
+ <hkern g1="x" g2="guillemotleft,guilsinglleft" k="43" />
1038
+ <hkern g1="x" g2="guillemotright,guilsinglright" k="41" />
1039
+ <hkern g1="x" g2="exclam,exclamdbl,uni2049" k="23" />
1040
+ <hkern g1="X" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="20" />
1041
+ <hkern g1="X" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
1042
+ <hkern g1="X" g2="asterisk" k="20" />
1043
+ <hkern g1="X" g2="periodcentered" k="82" />
1044
+ <hkern g1="X" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
1045
+ <hkern g1="X" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="-16" />
1046
+ <hkern g1="X" g2="f" k="20" />
1047
+ <hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="25" />
1048
+ <hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="20" />
1049
+ <hkern g1="X" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="20" />
1050
+ <hkern g1="X" g2="quotedbl,quotesingle" k="20" />
1051
+ <hkern g1="X" g2="registered" k="-41" />
1052
+ <hkern g1="X" g2="trademark" k="-45" />
1053
+ <hkern g1="X" g2="J,Jcircumflex" k="-14" />
1054
+ <hkern g1="X" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="23" />
1055
+ <hkern g1="X" g2="v" k="20" />
1056
+ <hkern g1="X" g2="w,wcircumflex" k="23" />
1057
+ <hkern g1="X" g2="x" k="20" />
1058
+ <hkern g1="X" g2="y,yacute,ydieresis,ycircumflex" k="20" />
1059
+ <hkern g1="X" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="45" />
847
1060
  <hkern g1="X" g2="guillemotleft,guilsinglleft" k="23" />
848
- <hkern g1="X" g2="z" k="23" />
849
- <hkern g1="parenleft,bracketleft,braceleft" g2="j" k="-164" />
850
- <hkern g1="parenleft,bracketleft,braceleft" g2="J" k="41" />
851
- <hkern g1="hyphen,uni00AD,endash,emdash" g2="T" k="74" />
852
- <hkern g1="hyphen,uni00AD,endash,emdash" g2="Y,Yacute,Ydieresis" k="123" />
853
- <hkern g1="hyphen,uni00AD,endash,emdash" g2="Z" k="41" />
854
- <hkern g1="hyphen,uni00AD,endash,emdash" g2="V" k="41" />
855
- <hkern g1="hyphen,uni00AD,endash,emdash" g2="X" k="41" />
856
- <hkern g1="hyphen,uni00AD,endash,emdash" g2="x" k="23" />
857
- <hkern g1="germandbls" g2="w" k="23" />
858
- <hkern g1="germandbls" g2="y,yacute,ydieresis" k="20" />
859
- <hkern g1="germandbls" g2="quoteright,quotedblright" k="76" />
860
- <hkern g1="germandbls" g2="t" k="31" />
861
- <hkern g1="germandbls" g2="question" k="20" />
862
- <hkern g1="germandbls" g2="quotedbl,quotesingle" k="127" />
863
- <hkern g1="germandbls" g2="quoteleft,quotedblleft" k="72" />
864
- <hkern g1="guillemotleft,guilsinglleft" g2="T" k="82" />
865
- <hkern g1="guillemotleft,guilsinglleft" g2="W" k="25" />
866
- <hkern g1="guillemotleft,guilsinglleft" g2="Y,Yacute,Ydieresis" k="61" />
1061
+ <hkern g1="X" g2="z,zacute,zdotaccent,zcaron" k="23" />
1062
+ <hkern g1="X" g2="guillemotright,guilsinglright" k="23" />
1063
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
1064
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="41" />
1065
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="41" />
1066
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="registered" k="-115" />
1067
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="trademark" k="-37" />
1068
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="J,Jcircumflex" k="82" />
1069
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="x" k="23" />
1070
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="z,zacute,zdotaccent,zcaron" k="43" />
1071
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="j,jcircumflex" k="20" />
1072
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="slash" k="41" />
1073
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="31" />
1074
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="23" />
1075
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="quoteright,quotedblright" k="-35" />
1076
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="colon,semicolon" k="37" />
1077
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="162" />
1078
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="periodcentered" k="82" />
1079
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="127" />
1080
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="23" />
1081
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="23" />
1082
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="68" />
1083
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="63" />
1084
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="20" />
1085
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="Z,Zacute,Zdotaccent,Zcaron" k="59" />
1086
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="registered" k="-78" />
1087
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="trademark" k="-100" />
1088
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="J,Jcircumflex" k="205" />
1089
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="31" />
1090
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="v" k="23" />
1091
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="w,wcircumflex" k="43" />
1092
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="x" k="63" />
1093
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="y,yacute,ydieresis,ycircumflex" k="23" />
1094
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="123" />
1095
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="68" />
1096
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="123" />
1097
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="guillemotleft,guilsinglleft" k="90" />
1098
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="z,zacute,zdotaccent,zcaron" k="86" />
1099
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="guillemotright,guilsinglright" k="57" />
1100
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="slash" k="160" />
1101
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="82" />
1102
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="59" />
1103
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="Y,Yacute,Ycircumflex,Ydieresis" k="76" />
1104
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="periodcentered" k="25" />
1105
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="57" />
1106
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="20" />
1107
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="registered" k="-74" />
1108
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="trademark" k="-37" />
1109
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="18" />
1110
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="20" />
1111
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="20" />
1112
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="23" />
1113
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="V" k="18" />
1114
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="Y,Yacute,Ycircumflex,Ydieresis" k="23" />
1115
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="periodcentered" k="123" />
1116
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="39" />
1117
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="18" />
1118
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="f" k="41" />
1119
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="41" />
1120
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="57" />
1121
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="20" />
1122
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="Z,Zacute,Zdotaccent,Zcaron" k="39" />
1123
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="registered" k="-41" />
1124
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="trademark" k="-41" />
1125
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="J,Jcircumflex" k="78" />
1126
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="61" />
1127
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="v" k="39" />
1128
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="w,wcircumflex" k="39" />
1129
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="x" k="43" />
1130
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="y,yacute,ydieresis,ycircumflex" k="39" />
1131
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="31" />
1132
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="53" />
1133
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="82" />
1134
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="guillemotleft,guilsinglleft" k="82" />
1135
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="W,Wcircumflex" k="18" />
1136
+ <hkern g1="colon,semicolon" g2="j,jcircumflex" k="-8" />
1137
+ <hkern g1="colon,semicolon" g2="hbar,uni0180" k="20" />
1138
+ <hkern g1="colon,semicolon" g2="Y,Yacute,Ycircumflex,Ydieresis" k="41" />
1139
+ <hkern g1="colon,semicolon" g2="asterisk" k="125" />
1140
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="j,jcircumflex" k="-41" />
1141
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="hbar,uni0180" k="20" />
1142
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="Y,Yacute,Ycircumflex,Ydieresis" k="164" />
1143
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="asterisk" k="248" />
1144
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="25" />
1145
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="74" />
1146
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="201" />
1147
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="33" />
1148
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="v" k="41" />
1149
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="V" k="119" />
1150
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="w,wcircumflex" k="31" />
1151
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="W,Wcircumflex" k="63" />
1152
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="y,yacute,ydieresis,ycircumflex" k="41" />
1153
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quoteleft,quotedblleft" k="125" />
1154
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quoteright,quotedblright" k="166" />
1155
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle" k="158" />
1156
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="J,Jcircumflex" k="41" />
1157
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="Y,Yacute,Ycircumflex,Ydieresis" k="123" />
1158
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="59" />
1159
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="86" />
1160
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="V" k="37" />
1161
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="W,Wcircumflex" k="20" />
1162
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="25" />
1163
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="x" k="23" />
1164
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="X" k="45" />
1165
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="Z,Zacute,Zdotaccent,Zcaron" k="41" />
1166
+ <hkern g1="exclam,exclamdbl,uni2048" g2="quoteright,quotedblright" k="41" />
1167
+ <hkern g1="guillemotleft,guilsinglleft" g2="hbar,uni0180" k="20" />
1168
+ <hkern g1="guillemotleft,guilsinglleft" g2="Y,Yacute,Ycircumflex,Ydieresis" k="57" />
1169
+ <hkern g1="guillemotleft,guilsinglleft" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="23" />
1170
+ <hkern g1="guillemotleft,guilsinglleft" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="82" />
867
1171
  <hkern g1="guillemotleft,guilsinglleft" g2="V" k="25" />
1172
+ <hkern g1="guillemotleft,guilsinglleft" g2="W,Wcircumflex" k="25" />
868
1173
  <hkern g1="guillemotleft,guilsinglleft" g2="x" k="41" />
869
- <hkern g1="guillemotright,guilsinglright" g2="T" k="82" />
870
- <hkern g1="guillemotright,guilsinglright" g2="W" k="20" />
871
- <hkern g1="guillemotright,guilsinglright" g2="Y,Yacute,Ydieresis" k="90" />
872
- <hkern g1="guillemotright,guilsinglright" g2="S" k="61" />
873
- <hkern g1="guillemotright,guilsinglright" g2="Z" k="43" />
874
- <hkern g1="guillemotright,guilsinglright" g2="J" k="61" />
1174
+ <hkern g1="guillemotleft,guilsinglleft" g2="X" k="23" />
1175
+ <hkern g1="guillemotright,guilsinglright" g2="J,Jcircumflex" k="61" />
1176
+ <hkern g1="guillemotright,guilsinglright" g2="Y,Yacute,Ycircumflex,Ydieresis" k="90" />
1177
+ <hkern g1="guillemotright,guilsinglright" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="78" />
1178
+ <hkern g1="guillemotright,guilsinglright" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="82" />
875
1179
  <hkern g1="guillemotright,guilsinglright" g2="V" k="45" />
876
- <hkern g1="guillemotright,guilsinglright" g2="X" k="23" />
1180
+ <hkern g1="guillemotright,guilsinglright" g2="W,Wcircumflex" k="20" />
1181
+ <hkern g1="guillemotright,guilsinglright" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="61" />
877
1182
  <hkern g1="guillemotright,guilsinglright" g2="x" k="43" />
878
- <hkern g1="question" g2="quoteright,quotedblright" k="27" />
879
- <hkern g1="quotedbl,quotesingle" g2="comma,period,ellipsis" k="213" />
880
- <hkern g1="quotedbl,quotesingle" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="90" />
881
- <hkern g1="quotedbl,quotesingle" g2="s" k="41" />
882
- <hkern g1="quoteright,quotedblright" g2="g" k="78" />
883
- <hkern g1="quoteright,quotedblright" g2="comma,period,ellipsis" k="246" />
884
- <hkern g1="quoteright,quotedblright" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="92" />
885
- <hkern g1="quoteright,quotedblright" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="63" />
886
- <hkern g1="quoteright,quotedblright" g2="f,uniFB01,uniFB02" k="39" />
887
- <hkern g1="quoteright,quotedblright" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="78" />
888
- <hkern g1="quoteright,quotedblright" g2="s" k="117" />
889
- <hkern g1="v" g2="T" k="41" />
890
- <hkern g1="v" g2="j" k="20" />
891
- <hkern g1="v" g2="comma,period,ellipsis" k="41" />
892
- <hkern g1="v" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="20" />
893
- <hkern g1="v" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="41" />
894
- <hkern g1="v" g2="J" k="82" />
895
- <hkern g1="v" g2="z" k="43" />
896
- <hkern g1="x" g2="T" k="78" />
897
- <hkern g1="x" g2="Y,Yacute,Ydieresis" k="8" />
898
- <hkern g1="x" g2="y,yacute,ydieresis" k="23" />
899
- <hkern g1="x" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="20" />
900
- <hkern g1="x" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="20" />
901
- <hkern g1="x" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="25" />
902
- <hkern g1="x" g2="hyphen,uni00AD,endash,emdash" k="23" />
903
- <hkern g1="x" g2="guillemotleft,guilsinglleft" k="43" />
904
- <hkern g1="x" g2="guillemotright,guilsinglright" k="41" />
1183
+ <hkern g1="guillemotright,guilsinglright" g2="X" k="23" />
1184
+ <hkern g1="guillemotright,guilsinglright" g2="Z,Zacute,Zdotaccent,Zcaron" k="43" />
1185
+ <hkern g1="question,uni203D,uni2047,uni2049" g2="quoteright,quotedblright" k="27" />
1186
+ <hkern g1="quoteleft,quotedblleft" g2="J,Jcircumflex" k="131" />
1187
+ <hkern g1="quoteleft,quotedblleft" g2="Y,Yacute,Ycircumflex,Ydieresis" k="-35" />
1188
+ <hkern g1="quoteleft,quotedblleft" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="78" />
1189
+ <hkern g1="quoteleft,quotedblleft" g2="V" k="-37" />
1190
+ <hkern g1="quoteleft,quotedblleft" g2="W,Wcircumflex" k="-37" />
1191
+ <hkern g1="quoteleft,quotedblleft" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="23" />
1192
+ <hkern g1="quoteleft,quotedblleft" g2="AE,uni01E2,AEacute" k="197" />
1193
+ <hkern g1="quoteleft,quotedblleft" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="98" />
1194
+ <hkern g1="quoteleft,quotedblleft" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="113" />
1195
+ <hkern g1="quoteleft,quotedblleft" g2="f" k="23" />
1196
+ <hkern g1="quoteleft,quotedblleft" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="78" />
1197
+ <hkern g1="quoteleft,quotedblleft" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="20" />
1198
+ <hkern g1="quoteleft,quotedblleft" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="121" />
1199
+ <hkern g1="quoteleft,quotedblleft" g2="exclamdown" k="119" />
1200
+ <hkern g1="quoteleft,quotedblleft" g2="questiondown" k="283" />
1201
+ <hkern g1="quoteright,quotedblright" g2="J,Jcircumflex" k="135" />
1202
+ <hkern g1="quoteright,quotedblright" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="152" />
1203
+ <hkern g1="quoteright,quotedblright" g2="AE,uni01E2,AEacute" k="197" />
1204
+ <hkern g1="quoteright,quotedblright" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="156" />
1205
+ <hkern g1="quoteright,quotedblright" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="92" />
1206
+ <hkern g1="quoteright,quotedblright" g2="f" k="39" />
1207
+ <hkern g1="quoteright,quotedblright" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="115" />
1208
+ <hkern g1="quoteright,quotedblright" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="117" />
1209
+ <hkern g1="quoteright,quotedblright" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="246" />
1210
+ <hkern g1="quoteright,quotedblright" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="37" />
1211
+ <hkern g1="quoteright,quotedblright" g2="z,zacute,zdotaccent,zcaron" k="59" />
1212
+ <hkern g1="quotedbl,quotesingle" g2="J,Jcircumflex" k="172" />
1213
+ <hkern g1="quotedbl,quotesingle" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="76" />
1214
+ <hkern g1="quotedbl,quotesingle" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="20" />
1215
+ <hkern g1="quotedbl,quotesingle" g2="X" k="20" />
1216
+ <hkern g1="quotedbl,quotesingle" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="90" />
1217
+ <hkern g1="quotedbl,quotesingle" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="41" />
1218
+ <hkern g1="quotedbl,quotesingle" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="213" />
905
1219
  </font>
906
1220
  </defs></svg>