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.
- checksums.yaml +5 -13
- data/CHANGELOG.md +193 -11
- data/README.md +9 -1
- data/Rakefile +5 -0
- data/admins/pageflow/accounts.rb +2 -1
- data/admins/pageflow/entry.rb +21 -1
- data/admins/pageflow/revisions.rb +1 -1
- data/app/assets/fonts/pageflow/entypo-license.txt +358 -0
- data/app/assets/fonts/pageflow/fontawesome-license.txt +1 -0
- data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.eot +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.svg +1236 -194
- data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.ttf +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.woff +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-license.txt +93 -0
- data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.eot +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.svg +1153 -839
- data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.ttf +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.woff +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.eot +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.svg +1252 -199
- data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.ttf +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.woff +0 -0
- data/app/assets/javascripts/pageflow/base.js +2 -0
- data/app/assets/javascripts/pageflow/browser/agent.js +25 -0
- data/app/assets/javascripts/pageflow/browser/css_animations.js +18 -0
- data/app/assets/javascripts/pageflow/browser/mobile_platform.js +1 -4
- data/app/assets/javascripts/pageflow/browser/video.js +8 -1
- data/app/assets/javascripts/pageflow/chapter_filter.js +6 -16
- data/app/assets/javascripts/pageflow/editor/api.js +6 -2
- data/app/assets/javascripts/pageflow/editor/api/page_type.js +12 -0
- data/app/assets/javascripts/pageflow/editor/base.js +4 -0
- data/app/assets/javascripts/pageflow/editor/collections/chapter_pages_collection.js +4 -1
- data/app/assets/javascripts/pageflow/editor/collections/chapters_collection.js +1 -5
- data/app/assets/javascripts/pageflow/editor/collections/mixins/add_and_return_model.js +11 -0
- data/app/assets/javascripts/pageflow/editor/collections/mixins/ordered_collection.js +6 -4
- data/app/assets/javascripts/pageflow/editor/collections/ordered_page_links_collection.js +9 -0
- data/app/assets/javascripts/pageflow/editor/collections/page_links_collection.js +78 -0
- data/app/assets/javascripts/pageflow/editor/collections/pages_collection.js +9 -3
- data/app/assets/javascripts/pageflow/editor/collections/storyline_chapters_collection.js +35 -0
- data/app/assets/javascripts/pageflow/editor/collections/storylines_collection.js +33 -0
- data/app/assets/javascripts/pageflow/editor/controllers/sidebar_controller.js +19 -2
- data/app/assets/javascripts/pageflow/editor/initializers/edit_lock.js +1 -1
- data/app/assets/javascripts/pageflow/editor/initializers/setup_collections.js +11 -0
- data/app/assets/javascripts/pageflow/editor/initializers/setup_common_seed.js +3 -0
- data/app/assets/javascripts/pageflow/editor/initializers/stylesheet_reloading.js +11 -0
- data/app/assets/javascripts/pageflow/editor/models/chapter.js +14 -7
- data/app/assets/javascripts/pageflow/editor/models/chapter_scaffold.js +13 -0
- data/app/assets/javascripts/pageflow/editor/models/edit_lock_container.js +4 -4
- data/app/assets/javascripts/pageflow/editor/models/entry.js +33 -4
- data/app/assets/javascripts/pageflow/editor/models/mixins/persited_promise.js +18 -0
- data/app/assets/javascripts/pageflow/editor/models/page.js +4 -0
- data/app/assets/javascripts/pageflow/editor/models/page_link.js +37 -0
- data/app/assets/javascripts/pageflow/editor/models/page_link_file_selection_handler.js +14 -0
- data/app/assets/javascripts/pageflow/editor/models/preview_entry_data.js +15 -0
- data/app/assets/javascripts/pageflow/editor/models/scaffold.js +26 -0
- data/app/assets/javascripts/pageflow/editor/models/storyline.js +99 -0
- data/app/assets/javascripts/pageflow/editor/models/storyline_configuration.js +15 -0
- data/app/assets/javascripts/pageflow/editor/models/storyline_ordering.js +117 -0
- data/app/assets/javascripts/pageflow/editor/models/storyline_scaffold.js +23 -0
- data/app/assets/javascripts/pageflow/editor/models/storyline_transitive_child_pages.js +33 -0
- data/app/assets/javascripts/pageflow/editor/routers/sidebar_router.js +3 -0
- data/app/assets/javascripts/pageflow/editor/templates/edit_entry.jst.ejs +1 -6
- data/app/assets/javascripts/pageflow/editor/templates/edit_page_link.jst.ejs +3 -0
- data/app/assets/javascripts/pageflow/editor/templates/edit_storyline.jst.ejs +12 -0
- data/app/assets/javascripts/pageflow/editor/templates/page_link_item.jst.ejs +1 -0
- data/app/assets/javascripts/pageflow/editor/templates/page_selection.jst.ejs +2 -2
- data/app/assets/javascripts/pageflow/editor/templates/storyline_outline.jst.ejs +4 -0
- data/app/assets/javascripts/pageflow/editor/templates/storyline_picker.jst.ejs +7 -0
- data/app/assets/javascripts/pageflow/editor/utils/reload_stylesheet.js +9 -0
- data/app/assets/javascripts/pageflow/editor/views/configuration_editors/groups/options.js +2 -2
- data/app/assets/javascripts/pageflow/editor/views/configuration_editors/groups/page_link.js +10 -0
- data/app/assets/javascripts/pageflow/editor/views/edit_chapter_view.js +0 -4
- data/app/assets/javascripts/pageflow/editor/views/edit_entry_view.js +9 -15
- data/app/assets/javascripts/pageflow/editor/views/edit_meta_data_view.js +14 -6
- data/app/assets/javascripts/pageflow/editor/views/edit_page_link_view.js +47 -0
- data/app/assets/javascripts/pageflow/editor/views/edit_storyline_view.js +97 -0
- data/app/assets/javascripts/pageflow/editor/views/editor_view.js +6 -3
- data/app/assets/javascripts/pageflow/editor/views/entry_preview_view.js +13 -7
- data/app/assets/javascripts/pageflow/editor/views/file_item_view.js +1 -1
- data/app/assets/javascripts/pageflow/editor/views/inputs/page_link_input_view.js +3 -1
- data/app/assets/javascripts/pageflow/editor/views/locked_view.js +3 -3
- data/app/assets/javascripts/pageflow/editor/views/mixins/loadable.js +1 -1
- data/app/assets/javascripts/pageflow/editor/views/page_item_view.js +2 -0
- data/app/assets/javascripts/pageflow/editor/views/page_link_configuration_editor_view.js +7 -0
- data/app/assets/javascripts/pageflow/editor/views/page_link_item_view.js +8 -1
- data/app/assets/javascripts/pageflow/editor/views/page_preview_view.js +1 -1
- data/app/assets/javascripts/pageflow/editor/views/page_selection_view.js +13 -12
- data/app/assets/javascripts/pageflow/editor/views/storyline_outline_view.js +33 -0
- data/app/assets/javascripts/pageflow/editor/views/storyline_picker_view.js +114 -0
- data/app/assets/javascripts/pageflow/entry_data.js +38 -4
- data/app/assets/javascripts/pageflow/highlighted_page.js +5 -5
- data/app/assets/javascripts/pageflow/history.js +1 -1
- data/app/assets/javascripts/pageflow/native_scrolling.js +14 -0
- data/app/assets/javascripts/pageflow/page_transitions.js +3 -1
- data/app/assets/javascripts/pageflow/page_type.js +2 -0
- data/app/assets/javascripts/pageflow/ready.js +4 -1
- data/app/assets/javascripts/pageflow/seed_entry_data.js +28 -1
- data/app/assets/javascripts/pageflow/slideshow.js +11 -8
- data/app/assets/javascripts/pageflow/slideshow/dom_order_scroll_navigator.js +93 -8
- data/app/assets/javascripts/pageflow/slideshow/hidden_text_indicator_widget.js +5 -3
- data/app/assets/javascripts/pageflow/slideshow/lazy_page_widget.js +4 -0
- data/app/assets/javascripts/pageflow/slideshow/page_widget.js +15 -6
- data/app/assets/javascripts/pageflow/ui/templates/tooltip.jst.ejs +2 -0
- data/app/assets/javascripts/pageflow/ui/views/inputs/text_area_input_view.js +17 -4
- data/app/assets/javascripts/pageflow/ui/views/mixins/tooltip_container.js +42 -0
- data/app/assets/javascripts/pageflow/ui/views/tooltip_view.js +49 -0
- data/app/assets/javascripts/pageflow/video_player.js +2 -2
- data/app/assets/javascripts/pageflow/video_player/{filter_for_silk.js → filter_sources.js} +2 -2
- data/app/assets/javascripts/pageflow/widgets/navigation.js +17 -14
- data/app/assets/javascripts/pageflow/widgets/navigation_mobile.js +7 -2
- data/app/assets/javascripts/pageflow/widgets/overview.js +9 -6
- data/app/assets/javascripts/pageflow/widgets/page_navigation_list.js +51 -13
- data/app/assets/javascripts/pageflow/widgets/page_navigation_list_animation.js +48 -0
- data/app/assets/javascripts/pageflow/widgets/parent_page_button.js +9 -2
- data/app/assets/stylesheets/pageflow/admin.css.scss +2 -15
- data/app/assets/stylesheets/pageflow/admin/features.scss +5 -0
- data/app/assets/stylesheets/pageflow/admin/forms.scss +18 -0
- data/app/assets/stylesheets/pageflow/animations.css.scss +1 -0
- data/app/assets/stylesheets/pageflow/animations/navigation_bar.scss +89 -0
- data/app/assets/stylesheets/pageflow/delayed_text_fade_in.css.scss +1 -1
- data/app/assets/stylesheets/pageflow/editor/base.css.scss +5 -0
- data/app/assets/stylesheets/pageflow/editor/menu.css.scss +1 -0
- data/app/assets/stylesheets/pageflow/editor/outline.css.scss +5 -0
- data/app/assets/stylesheets/pageflow/editor/page_links.css.scss +9 -1
- data/app/assets/stylesheets/pageflow/editor/page_selection.css.scss +7 -1
- data/app/assets/stylesheets/pageflow/editor/storyline_picker.css.scss +32 -0
- data/app/assets/stylesheets/pageflow/extendables.scss +26 -0
- data/app/assets/stylesheets/pageflow/mixins/pageflow.css.scss +25 -0
- data/app/assets/stylesheets/pageflow/navigation_bar.css.scss +64 -4
- data/app/assets/stylesheets/pageflow/navigation_mobile.css.scss +56 -0
- data/app/assets/stylesheets/pageflow/page_transitions.css.scss +4 -1
- data/app/assets/stylesheets/pageflow/page_transitions/scroll_over_from_left.scss +12 -0
- data/app/assets/stylesheets/pageflow/page_transitions/scroll_over_from_right.scss +12 -0
- data/app/assets/stylesheets/pageflow/page_types/video.css.scss +5 -1
- data/app/assets/stylesheets/pageflow/themes/default/page.css.scss +180 -42
- data/app/assets/stylesheets/pageflow/ui.css.scss +1 -0
- data/app/assets/stylesheets/pageflow/ui/forms.css.scss +11 -2
- data/app/assets/stylesheets/pageflow/ui/input/extended_select_input.css.scss +1 -0
- data/app/assets/stylesheets/pageflow/ui/tabs_view.css.scss +0 -3
- data/app/assets/stylesheets/pageflow/ui/tooltip.scss +57 -0
- data/app/controllers/concerns/pageflow/entry_password_protection.rb +13 -0
- data/app/controllers/pageflow/chapters_controller.rb +24 -9
- data/app/controllers/pageflow/edit_locks_controller.rb +2 -2
- data/app/controllers/pageflow/editor/files_controller.rb +0 -2
- data/app/controllers/pageflow/editor/widgets_controller.rb +1 -1
- data/app/controllers/pageflow/entries_controller.rb +5 -9
- data/app/controllers/pageflow/files_controller.rb +3 -0
- data/app/controllers/pageflow/storylines_controller.rb +69 -0
- data/app/helpers/pageflow/admin/features_helper.rb +17 -6
- data/app/helpers/pageflow/admin/widgets_helper.rb +18 -0
- data/app/helpers/pageflow/audio_files_helper.rb +2 -2
- data/app/helpers/pageflow/common_entry_seed_helper.rb +52 -0
- data/app/helpers/pageflow/entries_helper.rb +7 -1
- data/app/helpers/pageflow/entry_json_seed_helper.rb +27 -10
- data/app/helpers/pageflow/meta_tags_helper.rb +11 -0
- data/app/helpers/pageflow/page_types_helper.rb +9 -5
- data/app/helpers/pageflow/pages_helper.rb +9 -96
- data/app/helpers/pageflow/public_i18n_helper.rb +13 -0
- data/app/helpers/pageflow/social_share_helper.rb +1 -1
- data/app/helpers/pageflow/video_files_helper.rb +133 -0
- data/app/helpers/pageflow/widgets_helper.rb +3 -9
- data/app/models/concerns/pageflow/feature_target.rb +21 -3
- data/app/models/concerns/pageflow/hosted_file.rb +4 -0
- data/app/models/pageflow/account.rb +2 -2
- data/app/models/pageflow/chapter.rb +4 -4
- data/app/models/pageflow/chapter_scaffold.rb +33 -0
- data/app/models/pageflow/cname_theming_request_scope.rb +7 -1
- data/app/models/pageflow/draft_entry.rb +13 -2
- data/app/models/pageflow/edit_lock.rb +2 -2
- data/app/models/pageflow/entry.rb +3 -2
- data/app/models/pageflow/image_file.rb +6 -0
- data/app/models/pageflow/published_entry.rb +13 -2
- data/app/models/pageflow/revision.rb +17 -4
- data/app/models/pageflow/storyline.rb +23 -0
- data/app/models/pageflow/storyline_scaffold.rb +27 -0
- data/app/models/pageflow/theming.rb +4 -0
- data/app/models/pageflow/widget.rb +16 -12
- data/app/views/admin/accounts/_form.html.erb +8 -12
- data/app/views/admin/accounts/_widgets_inline_help.html.erb +5 -0
- data/app/views/layouts/pageflow/application.html.erb +4 -1
- data/app/views/pageflow/admin/widgets/_fields.html.erb +9 -0
- data/app/views/pageflow/config/_editor_seeds.json.jbuilder +1 -1
- data/app/views/pageflow/editor/entries/_entry.json.jbuilder +2 -2
- data/app/views/pageflow/editor/entries/_other_entry.json.jbuilder +1 -0
- data/app/views/pageflow/editor/entries/index.json.jbuilder +1 -1
- data/app/views/pageflow/editor/entries/seed.json.erb +4 -1
- data/app/views/pageflow/editor/files/_file.json.jbuilder +4 -0
- data/app/views/pageflow/editor/themings/_theming.json.jbuilder +1 -0
- data/app/views/pageflow/entries/_entry.html.erb +2 -2
- data/app/views/pageflow/entries/_ie8_hint.html.erb +2 -2
- data/app/views/pageflow/entries/_indicators.html.erb +3 -3
- data/app/views/pageflow/entries/_mobile_navigation.html.erb +6 -5
- data/app/views/pageflow/entries/_multimedia_alert.html.erb +6 -6
- data/app/views/pageflow/entries/_non_js_hint.html.erb +1 -1
- data/app/views/pageflow/entries/_skip_links.html.erb +3 -3
- data/app/views/pageflow/entries/edit.html.erb +4 -2
- data/app/views/pageflow/entries/navigation/_bar_bottom.html.erb +6 -5
- data/app/views/pageflow/entries/navigation/_bar_top.html.erb +13 -13
- data/app/views/pageflow/entries/navigation/_home_button.html.erb +2 -2
- data/app/views/pageflow/entries/navigation/_page.html.erb +1 -1
- data/app/views/pageflow/entries/overview/_chapter.html.erb +1 -1
- data/app/views/pageflow/entries/overview/_entry.html.erb +7 -6
- data/app/views/pageflow/entries/share_menu/_facebook_link.html.erb +1 -1
- data/app/views/pageflow/entries/share_menu/_google_link.html.erb +1 -1
- data/app/views/pageflow/entries/share_menu/_twitter_link.html.erb +1 -1
- data/app/views/pageflow/entries/show.html.erb +4 -1
- data/app/views/pageflow/file_types/_thumbnails.css.erb +2 -0
- data/app/views/pageflow/meta_tags/_entry.html.erb +4 -0
- data/app/views/pageflow/pages/_page.html.erb +2 -2
- data/app/views/pageflow/pages/templates/_audio.html.erb +2 -2
- data/app/views/pageflow/pages/templates/_audio_loop.html.erb +1 -1
- data/app/views/pageflow/pages/templates/_background_video.html.erb +8 -3
- data/app/views/pageflow/pages/templates/_video.html.erb +9 -4
- data/app/views/pageflow/public_i18n/_javascript_tag.html.erb +5 -0
- data/app/views/pageflow/social_share/_entry_meta_tags.html.erb +1 -1
- data/app/views/pageflow/video_files/_script_tag.html.erb +3 -0
- data/app/views/pageflow/video_files/_video_file.html.erb +4 -1
- data/app/views/pageflow/video_files/_video_tag.html.erb +7 -0
- data/config/initializers/admin_resource_tabs.rb +1 -0
- data/config/initializers/features.rb +3 -1
- data/config/initializers/paperclip.rb +5 -0
- data/config/locales/de.yml +205 -601
- data/config/locales/en.yml +198 -405
- data/config/routes.rb +10 -2
- data/db/migrate/20150826125417_create_pageflow_storylines.rb +12 -0
- data/db/migrate/20150826125744_add_storyline_id_to_chapters.rb +6 -0
- data/db/migrate/20150826125745_insert_main_storylines.rb +28 -0
- data/db/migrate/20150830105831_remove_revision_id_from_chapters.rb +5 -0
- data/db/migrate/20150830110006_remove_entry_id_from_chapters.rb +5 -0
- data/db/migrate/20160201130118_add_additional_cnames_to_themings.rb +5 -0
- data/db/migrate/20160216130336_add_meta_fields_to_revision.rb +7 -0
- data/lib/generators/pageflow/initializer/templates/pageflow.rb +7 -0
- data/lib/pageflow/ability_mixin.rb +7 -1
- data/lib/pageflow/configuration.rb +27 -2
- data/lib/pageflow/engine.rb +4 -1
- data/lib/pageflow/features.rb +24 -0
- data/lib/pageflow/global_config_api.rb +1 -0
- data/lib/pageflow/seeds.rb +4 -2
- data/lib/pageflow/theme.rb +4 -0
- data/lib/pageflow/version.rb +1 -1
- data/spec/factories/chapters.rb +6 -3
- data/spec/factories/storylines.rb +13 -0
- metadata +1021 -928
- data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.eot +0 -0
- data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.svg +0 -768
- data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.ttf +0 -0
- data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.woff +0 -0
- data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.eot +0 -0
- data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.svg +0 -968
- data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.ttf +0 -0
- data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.woff +0 -0
- data/app/assets/fonts/pageflow/thesansboldplain.eot +0 -0
- data/app/assets/fonts/pageflow/thesansboldplain.svg +0 -228
- data/app/assets/fonts/pageflow/thesansboldplain.ttf +0 -0
- data/app/assets/fonts/pageflow/thesansboldplain.woff +0 -0
- data/app/assets/fonts/pageflow/thesanssemiboldplain.eot +0 -0
- data/app/assets/fonts/pageflow/thesanssemiboldplain.svg +0 -228
- data/app/assets/fonts/pageflow/thesanssemiboldplain.ttf +0 -0
- data/app/assets/fonts/pageflow/thesanssemiboldplain.woff +0 -0
- data/app/assets/javascripts/pageflow/browser/hashchange_support.js +0 -8
- data/app/assets/javascripts/pageflow/widgets/button.js +0 -22
- data/app/views/layouts/pageflow/_meta_tags.html.erb +0 -5
- data/app/views/pageflow/pages/_video_tag.html.erb +0 -13
Binary file
|
Binary file
|
@@ -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.
|
Binary file
|
@@ -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="
|
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="
|
12
|
-
<glyph horiz-adv-x="
|
13
|
-
<glyph unicode="&#
|
14
|
-
<glyph unicode="
|
15
|
-
<glyph unicode="	" horiz-adv-x="407" />
|
16
|
-
<glyph unicode=" " 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="	" horiz-adv-x="409" />
|
13
|
+
<glyph unicode=" " 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=""" 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
|
21
|
-
<glyph unicode="%" horiz-adv-x="1648" d="M82 952q0
|
22
|
-
<glyph unicode="&" horiz-adv-x="1177" d="M74 342q0
|
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="&" 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
|
25
|
-
<glyph unicode=")" horiz-adv-x="571" d="M66 -
|
26
|
-
<glyph unicode="*" horiz-adv-x="808" d="M143
|
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 -
|
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
|
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
|
33
|
-
<glyph unicode="1" d="M172 0v80h307v1085h-
|
34
|
-
<glyph unicode="2" d="M80
|
35
|
-
<glyph unicode="3" d="M59 160l54
|
36
|
-
<glyph unicode="4" d="M33 391v53l608 865h82v-840h195v-78h-195v-391h-88v391h-602zM143 469h492v479q0
|
37
|
-
<glyph unicode="5" d="M53 152l51
|
38
|
-
<glyph unicode="6" d="M106 594q0
|
39
|
-
<glyph unicode="7" d="M90 1229v80h805v-54q-117 -
|
40
|
-
<glyph unicode="8" d="M82 336q0
|
41
|
-
<glyph unicode="9" d="M88 926q0
|
42
|
-
<glyph unicode=":" horiz-adv-x="448" d="M137 68q0
|
43
|
-
<glyph unicode=";" horiz-adv-x="448" d="M98 -
|
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="<" d="M70 635v90l841 336v-88l-475 -185l-272 -104v-8l272 -105l475 -184v-88z" />
|
45
|
-
<glyph unicode="=" d="M70
|
42
|
+
<glyph unicode="=" d="M70 428v78h841v-78h-841zM70 846v78h841v-78h-841z" />
|
46
43
|
<glyph unicode=">" d="M70 299v88l475 184l272 105v8l-272 104l-475 185v88l841 -336v-90z" />
|
47
|
-
<glyph unicode="?" horiz-adv-x="823" d="M76
|
48
|
-
<glyph unicode="@" horiz-adv-x="1667" d="M106 414q0
|
49
|
-
<glyph unicode="A" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM299 543h479l-86 252q-
|
50
|
-
<glyph unicode="B" horiz-adv-x="1183" d="M199
|
51
|
-
<glyph unicode="C" horiz-adv-x="1155" d="M113 678q0
|
52
|
-
<glyph unicode="D" horiz-adv-x="1236" d="M199
|
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
|
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 -
|
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 -
|
62
|
-
<glyph unicode="N" horiz-adv-x="1302" d="M199 0v1350h98l569 -953l152 -268h8q-
|
63
|
-
<glyph unicode="O" horiz-adv-x="1335" d="M113 680q0
|
64
|
-
<glyph unicode="P" horiz-adv-x="
|
65
|
-
<glyph unicode="Q" horiz-adv-x="1335" d="M113 680q0
|
66
|
-
<glyph unicode="R" horiz-adv-x="
|
67
|
-
<glyph unicode="S" horiz-adv-x="1067" d="M94 178l62
|
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 -
|
70
|
-
<glyph unicode="V" horiz-adv-x="1005" d="M8 1350h101l249 -
|
71
|
-
<glyph unicode="W" horiz-adv-x="1576" d="M57 1350h99l170 -
|
72
|
-
<glyph unicode="X" horiz-adv-x="987" d="M35 0l405 698l-377 652h103l221 -
|
73
|
-
<glyph unicode="Y" horiz-adv-x="915" d="M6 1350h100l205 -
|
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="
|
81
|
-
<glyph unicode="a" horiz-adv-x="
|
82
|
-
<glyph unicode="b" horiz-adv-x="
|
83
|
-
<glyph unicode="c" horiz-adv-x="919" d="M106 489q0
|
84
|
-
<glyph unicode="d" horiz-adv-x="1114" d="M106 489q0
|
85
|
-
<glyph unicode="e" horiz-adv-x="989" d="M106 489q0
|
86
|
-
<glyph unicode="f" horiz-adv-x="538" d="M68 905v70l135 8v219q0
|
87
|
-
<glyph unicode="g" horiz-adv-x="997" d="M106 -201q0
|
88
|
-
<glyph unicode="h" horiz-adv-x="1081" d="M188 0v1473h91v-
|
89
|
-
<glyph unicode="i" horiz-adv-x="468" d="M154 1300q0
|
90
|
-
<glyph unicode="j" horiz-adv-x="468" d="M-68 -444l23
|
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 -
|
93
|
-
<glyph unicode="m" horiz-adv-x="1662" d="M188 0v983h78l8 -
|
94
|
-
<glyph unicode="n" horiz-adv-x="1089" d="M188 0v983h78l8 -
|
95
|
-
<glyph unicode="o" horiz-adv-x="1095" d="M106 489q0
|
96
|
-
<glyph unicode="p" horiz-adv-x="1114" d="M188 -444v1427h78l8 -
|
97
|
-
<glyph unicode="q" horiz-adv-x="
|
98
|
-
<glyph unicode="r" horiz-adv-x="649" d="M188 0v983h78l8 -
|
99
|
-
<glyph unicode="s" horiz-adv-x="829" d="M66 111l53
|
100
|
-
<glyph unicode="t" horiz-adv-x="638" d="M57 905v70l156 8l12 285h78v-285h285v-78h-285v-641q0 -
|
101
|
-
<glyph unicode="u" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -
|
102
|
-
<glyph unicode="v" horiz-adv-x="888" d="M25 983h98l221 -
|
103
|
-
<glyph unicode="w" horiz-adv-x="1402" d="M49 983h98l177 -
|
104
|
-
<glyph unicode="x" horiz-adv-x="833" d="M29 0l333 514l-307 469h101l159 -
|
105
|
-
<glyph unicode="y" horiz-adv-x="892" d="M25 983h98l237 -
|
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
|
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 -
|
110
|
-
<glyph unicode="~" d="M82
|
111
|
-
<glyph unicode="¡" horiz-adv-x="530" d="M178 918q0
|
112
|
-
<glyph unicode="¢" d="M127 637q0
|
113
|
-
<glyph unicode="£" d="M111 600v68l135 6h49q-
|
114
|
-
<glyph unicode="¤" d="
|
115
|
-
<glyph unicode="¥" d="M61 1309h99l192 -
|
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="¡" 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="¢" 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="£" 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="¤" 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="¥" 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="¦" horiz-adv-x="462" d="M195 451h73v-963h-73v963zM195 571v965h73v-965h-73z" />
|
117
|
-
<glyph unicode="§" d="M102 721q0
|
118
|
-
<glyph unicode="¨" horiz-adv-x="1095" d="
|
119
|
-
<glyph unicode="©" horiz-adv-x="1517" d="M104 659q0
|
120
|
-
<glyph unicode="ª" horiz-adv-x="690" d="M86
|
121
|
-
<glyph unicode="«" horiz-adv-x="
|
114
|
+
<glyph unicode="§" 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="¨" 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="©" 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="ª" 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="«" 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="¬" d="M70 637v78h841v-490h-84v412h-757z" />
|
123
120
|
<glyph unicode="­" horiz-adv-x="612" d="M82 471v80h450v-80h-450z" />
|
124
|
-
<glyph unicode="®" horiz-adv-x="821" d="M37 1059q0
|
125
|
-
<glyph unicode="¯" horiz-adv-x="1095" d="
|
126
|
-
<glyph unicode="°" horiz-adv-x="636" d="M86 1157q0
|
121
|
+
<glyph unicode="®" 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="¯" horiz-adv-x="1095" d="M295 1241v74h504v-74h-504z" />
|
123
|
+
<glyph unicode="°" 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="±" d="M70 0v76h841v-76h-841zM70 635v76h379v415h83v-415h379v-76h-379v-412h-83v412h-379z" />
|
128
|
-
<glyph unicode="²" horiz-adv-x="741" d="M96
|
129
|
-
<glyph unicode="³" horiz-adv-x="741" d="M82
|
130
|
-
<glyph unicode="´" horiz-adv-x="1095" d="
|
131
|
-
<glyph unicode="µ" horiz-adv-x="
|
132
|
-
<glyph unicode="¶" horiz-adv-x="1054" d="M86 924q0
|
133
|
-
<glyph unicode="·" horiz-adv-x="448" d="M137
|
134
|
-
<glyph unicode="¸" horiz-adv-x="1095" d="
|
135
|
-
<glyph unicode="¹" horiz-adv-x="741" d="M193
|
136
|
-
<glyph unicode="º" horiz-adv-x="737" d="M68
|
137
|
-
<glyph unicode="»" horiz-adv-x="
|
138
|
-
<glyph unicode="¼" horiz-adv-x="1564" d="
|
139
|
-
<glyph unicode="½" horiz-adv-x="1609" d="
|
140
|
-
<glyph unicode="¾" horiz-adv-x="1603" d="M82 680l59
|
141
|
-
<glyph unicode="¿" horiz-adv-x="823" d="M104 -100q0
|
142
|
-
<glyph unicode="À" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM299 543h479l-86 252q-
|
143
|
-
<glyph unicode="Á" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM299 543h479l-86 252q-
|
144
|
-
<glyph unicode="Â" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-
|
145
|
-
<glyph unicode="Ã" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-
|
146
|
-
<glyph unicode="Ä" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-
|
147
|
-
<glyph unicode="Å" horiz-adv-x="1077" d="M16 0l476 1350h94l475 -1350h-98l-158 463h-535l-159 -463h-95zM299 543h479l-86 252q-
|
148
|
-
<glyph unicode="Æ" horiz-adv-x="1656" d="M43 0l748 1350h749v-82h-604v-510h502v-82h-502v-594h625v-82h-719v444h-455l-244 -444h-100zM430 522h412v746h-8q-
|
149
|
-
<glyph unicode="Ç" horiz-adv-x="1155" d="M113 678q0
|
150
|
-
<glyph unicode="È" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-
|
151
|
-
<glyph unicode="É" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-
|
152
|
-
<glyph unicode="Ê" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-
|
153
|
-
<glyph unicode="Ë" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-
|
154
|
-
<glyph unicode="Ì" horiz-adv-x="491" d="
|
155
|
-
<glyph unicode="Í" horiz-adv-x="491" d="
|
156
|
-
<glyph unicode="Î" horiz-adv-x="491" d="
|
157
|
-
<glyph unicode="Ï" horiz-adv-x="491" d="
|
158
|
-
<glyph unicode="Ð" horiz-adv-x="1280" d="M76 680v63l166
|
159
|
-
<glyph unicode="Ñ" horiz-adv-x="1302" d="M199 0v1350h98l569 -953l152 -268h8q-
|
160
|
-
<glyph unicode="Ò" horiz-adv-x="1335" d="M113 680q0
|
161
|
-
<glyph unicode="Ó" horiz-adv-x="1335" d="M113 680q0
|
162
|
-
<glyph unicode="Ô" horiz-adv-x="1335" d="M113 680q0
|
163
|
-
<glyph unicode="Õ" horiz-adv-x="1335" d="M113 680q0
|
164
|
-
<glyph unicode="Ö" horiz-adv-x="1335" d="M113 680q0
|
165
|
-
<glyph unicode="×" d="
|
166
|
-
<glyph unicode="Ø" horiz-adv-x="1335" d="M115 -2l143 192q-
|
167
|
-
<glyph unicode="Ù" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -
|
168
|
-
<glyph unicode="Ú" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -
|
169
|
-
<glyph unicode="Û" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -
|
170
|
-
<glyph unicode="Ü" horiz-adv-x="1298" d="M195 518v832h94v-822q0 -
|
171
|
-
<glyph unicode="Ý" horiz-adv-x="915" d="M6 1350h100l205 -
|
172
|
-
<glyph unicode="Þ" horiz-adv-x="1153" d="M199 0v1350h94v-
|
173
|
-
<glyph unicode="ß" horiz-adv-x="1110" d="M188 0v1090q0
|
174
|
-
<glyph unicode="à" horiz-adv-x="
|
175
|
-
<glyph unicode="á" horiz-adv-x="
|
176
|
-
<glyph unicode="â" horiz-adv-x="
|
177
|
-
<glyph unicode="ã" horiz-adv-x="
|
178
|
-
<glyph unicode="ä" horiz-adv-x="
|
179
|
-
<glyph unicode="å" horiz-adv-x="
|
180
|
-
<glyph unicode="æ" horiz-adv-x="1605" d="M133 244q0
|
181
|
-
<glyph unicode="ç" horiz-adv-x="919" d="M106 489q0
|
182
|
-
<glyph unicode="è" horiz-adv-x="989" d="M106 489q0
|
183
|
-
<glyph unicode="é" horiz-adv-x="989" d="M106 489q0
|
184
|
-
<glyph unicode="ê" horiz-adv-x="989" d="M106 489q0
|
185
|
-
<glyph unicode="ë" horiz-adv-x="989" d="M106 489q0
|
186
|
-
<glyph unicode="ì" horiz-adv-x="468" d="
|
187
|
-
<glyph unicode="í" horiz-adv-x="468" d="
|
188
|
-
<glyph unicode="î" horiz-adv-x="468" d="
|
189
|
-
<glyph unicode="ï" horiz-adv-x="468" d="M-
|
190
|
-
<glyph unicode="ð" horiz-adv-x="1095" d="M123 449q0
|
191
|
-
<glyph unicode="ñ" horiz-adv-x="1089" d="M188 0v983h78l8 -
|
192
|
-
<glyph unicode="ò" horiz-adv-x="1095" d="M106 489q0
|
193
|
-
<glyph unicode="ó" horiz-adv-x="1095" d="M106 489q0
|
194
|
-
<glyph unicode="ô" horiz-adv-x="1095" d="M106 489q0
|
195
|
-
<glyph unicode="õ" horiz-adv-x="1095" d="M106 489q0
|
196
|
-
<glyph unicode="ö" horiz-adv-x="1095" d="M106 489q0
|
197
|
-
<glyph unicode="÷" d="M70 637v78h841v-78h-841zM412 307q0 35 22
|
198
|
-
<glyph unicode="ø" horiz-adv-x="1095" d="M94 -2l119 143q-
|
199
|
-
<glyph unicode="ù" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -
|
200
|
-
<glyph unicode="ú" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -
|
201
|
-
<glyph unicode="û" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -
|
202
|
-
<glyph unicode="ü" horiz-adv-x="1083" d="M174 352v631h90v-618q0 -
|
203
|
-
<glyph unicode="ý" horiz-adv-x="892" d="M25 983h98l237 -
|
204
|
-
<glyph unicode="þ" horiz-adv-x="1114" d="M188 -444v1917h91v-
|
205
|
-
<glyph unicode="ÿ" horiz-adv-x="892" d="M25 983h98l237 -
|
206
|
-
<glyph unicode="&#
|
207
|
-
<glyph unicode="&#
|
208
|
-
<glyph unicode="&#
|
209
|
-
<glyph unicode="&#
|
210
|
-
<glyph unicode="&#
|
211
|
-
<glyph unicode="&#
|
212
|
-
<glyph unicode="&#
|
213
|
-
<glyph unicode="&#
|
214
|
-
<glyph unicode="&#
|
215
|
-
<glyph unicode="&#
|
216
|
-
<glyph unicode="&#
|
217
|
-
<glyph unicode="&#
|
218
|
-
<glyph unicode="&#
|
219
|
-
<glyph unicode="&#
|
220
|
-
<glyph unicode="&#
|
221
|
-
<glyph unicode="&#
|
125
|
+
<glyph unicode="²" 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="³" 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="´" horiz-adv-x="1095" d="M438 1223l275 321l69 -59l-295 -309z" />
|
128
|
+
<glyph unicode="µ" 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="¶" 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="·" 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="¸" 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="¹" horiz-adv-x="741" d="M193 1495v55q108 22 178 80h67v-799h-78v664h-167z" />
|
133
|
+
<glyph unicode="º" 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="»" 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="¼" 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="½" 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="¾" 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="¿" 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="À" 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="Á" 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="Â" 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="Ã" 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="Ä" 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="Å" 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="Æ" 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="Ç" 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="È" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM348 1677l58 68l256 -252l-41 -47z" />
|
148
|
+
<glyph unicode="É" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM494 1493l256 252l57 -68l-272 -231z" />
|
149
|
+
<glyph unicode="Ê" 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="Ë" 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="Ì" horiz-adv-x="491" d="M16 1677l58 68l256 -252l-41 -47zM199 0v1350h94v-1350h-94z" />
|
152
|
+
<glyph unicode="Í" horiz-adv-x="491" d="M162 1493l256 252l57 -68l-272 -231zM199 0v1350h94v-1350h-94z" />
|
153
|
+
<glyph unicode="Î" horiz-adv-x="491" d="M-31 1487l232 231h90l231 -231l-41 -39l-231 201h-8l-232 -201zM199 0v1350h94v-1350h-94z" />
|
154
|
+
<glyph unicode="Ï" 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="Ð" 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="Ñ" 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="Ò" 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="Ó" 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="Ô" 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="Õ" 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="Ö" 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="×" d="M106 334l330 342l-330 342l54 57l329 -346l332 346l53 -57l-329 -342l329 -342l-53 -58l-332 345l-329 -345z" />
|
163
|
+
<glyph unicode="Ø" 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="Ù" 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="Ú" 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="Û" 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="Ü" 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="Ý" 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="Þ" 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="ß" 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="à" 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="á" 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="â" 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="ã" 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="ä" 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="å" 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="æ" 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="ç" 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="è" 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="é" 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="ê" 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="ë" 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="ì" horiz-adv-x="468" d="M-2 1485l70 59l274 -321l-49 -47zM188 0v983h91v-983h-91z" />
|
184
|
+
<glyph unicode="í" horiz-adv-x="468" d="M125 1223l274 321l70 -59l-295 -309zM188 0v983h91v-983h-91z" />
|
185
|
+
<glyph unicode="î" horiz-adv-x="468" d="M-49 1214l239 295h86l240 -295l-45 -43l-233 259h-9l-233 -259zM188 0v983h91v-983h-91z" />
|
186
|
+
<glyph unicode="ï" 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="ð" 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="ñ" 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="ò" 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="ó" 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="ô" 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="õ" 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="ö" 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="÷" 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="ø" 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="ù" 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="ú" 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="û" 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="ü" 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="ý" 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="þ" 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="ÿ" 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="Ā" 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="ā" 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="Ă" 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="ă" 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="Ą" 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="ą" 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="Ć" 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="ć" 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="Ĉ" 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="ĉ" 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="Ċ" 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="ċ" 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="Č" 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="č" 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="Ď" 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="ď" 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="Đ" 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="đ" 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="Ē" horiz-adv-x="1054" d="M199 0v1350h739v-82h-645v-510h541v-82h-541v-594h665v-82h-759zM324 1522v73h507v-73h-507z" />
|
222
|
+
<glyph unicode="ē" 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="Ĕ" 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="ĕ" 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="Ė" 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="ė" 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="Ę" 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="ę" 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="Ě" 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="ě" 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="Ĝ" 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="ĝ" 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="Ğ" 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="ğ" 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="Ġ" 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="ġ" 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="Ģ" 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="ģ" 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="Ĥ" 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="ĥ" 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="Ħ" horiz-adv-x="1376" d="M74 1014v59l166 8v269h94v-269h723v269h94v-269h149v-67h-149v-1014h-94v676h-723v-676h-94v1014h-166zM334 758h723v256h-723v-256z" />
|
242
|
+
<glyph unicode="ħ" 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="Ĩ" 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="ĩ" 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="Ī" horiz-adv-x="491" d="M-8 1522v73h508v-73h-508zM199 0v1350h94v-1350h-94z" />
|
246
|
+
<glyph unicode="ī" horiz-adv-x="468" d="M-18 1241v74h503v-74h-503zM188 0v983h91v-983h-91z" />
|
247
|
+
<glyph unicode="Ĭ" 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="ĭ" 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="Į" 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="į" 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="İ" 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="ı" horiz-adv-x="468" d="M188 0v983h91v-983h-91z" />
|
253
|
+
<glyph unicode="IJ" 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="ij" 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="Ĵ" 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="ĵ" 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="Ķ" 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="ķ" 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="ĸ" horiz-adv-x="950" d="M188 0v983h91v-596h6l483 596h104l-319 -389l373 -594h-101l-325 526l-221 -260v-266h-91z" />
|
260
|
+
<glyph unicode="Ĺ" horiz-adv-x="956" d="M166 1493l256 252l57 -68l-272 -231zM199 0v1350h94v-1268h622v-82h-716z" />
|
261
|
+
<glyph unicode="ĺ" 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="Ļ" 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="ļ" 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="Ľ" horiz-adv-x="956" d="M199 0v1350h94v-1268h622v-82h-716zM653 1481h78v-103l-16 -319h-56z" />
|
265
|
+
<glyph unicode="ľ" 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="Ŀ" 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="ŀ" 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="Ł" horiz-adv-x="958" d="M8 504l199 106v740h94v-699l383 203l37 -66l-420 -219v-487h623v-82h-717v526l-160 -86z" />
|
269
|
+
<glyph unicode="ł" 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="Ń" 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="ń" 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="Ņ" 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="ņ" 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="Ň" 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="ň" 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="ʼn" 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="Ŋ" 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="ŋ" 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="Ō" 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="ō" 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="Ŏ" 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="ŏ" 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="Ő" 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="ő" 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="Œ" 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="œ" 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="Ŕ" 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="ŕ" 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="Ŗ" 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="ŗ" 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="Ř" 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="ř" 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="Ś" 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="ś" 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="Ŝ" 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="ŝ" 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="Ş" 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="ş" 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="Š" 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="š" 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="Ţ" 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="ţ" 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="Ť" horiz-adv-x="1073" d="M59 1268v82h955v-82h-430v-1268h-95v1268h-430zM258 1686l41 36l231 -200h9l231 200l41 -36l-231 -234h-91z" />
|
304
|
+
<glyph unicode="ť" 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="Ŧ" horiz-adv-x="1073" d="M59 1268v82h955v-82h-430v-525h260v-67h-260v-676h-95v676h-260v63l177 4h83v525h-430z" />
|
306
|
+
<glyph unicode="ŧ" 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="Ũ" 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="ũ" 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="Ū" 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="ū" 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="Ŭ" 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="ŭ" 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="Ů" 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="ů" 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="Ű" 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="ű" 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="Ų" 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="ų" 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="Ŵ" 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="ŵ" 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="Ŷ" 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="ŷ" 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="Ÿ" 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="Ź" horiz-adv-x="1101" d="M102 0v55l777 1213h-709v82h827v-56l-778 -1212h785v-82h-902zM489 1493l256 252l58 -68l-273 -231z" />
|
325
|
+
<glyph unicode="ź" horiz-adv-x="827" d="M55 0v49l582 856h-518v78h635v-47l-580 -856h600v-80h-719zM340 1223l274 321l70 -59l-295 -309z" />
|
326
|
+
<glyph unicode="Ż" 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="ż" 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="Ž" 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="ž" 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="ƀ" 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="Ə" 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="ƒ" 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="Ɠ" 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="Ơ" 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="ơ" 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="Ư" 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="ư" 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="ǂ" horiz-adv-x="538" d="M12 360v60l160 8h74v252h-234v59l160 9h74v788h73v-788h207v-68h-207v-252h207v-68h-207v-872h-73v872h-234z" />
|
339
|
+
<glyph unicode="Ǎ" 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="ǎ" 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="Ǐ" horiz-adv-x="491" d="M-31 1686l41 36l232 -200h8l231 200l41 -36l-231 -234h-90zM199 0v1350h94v-1350h-94z" />
|
342
|
+
<glyph unicode="ǐ" horiz-adv-x="468" d="M-49 1468l45 41l233 -256h9l233 256l45 -41l-240 -294h-86zM188 0v983h91v-983h-91z" />
|
343
|
+
<glyph unicode="Ǒ" 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="ǒ" 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="Ǔ" 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="ǔ" 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="Ǖ" 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="ǖ" 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="Ǘ" 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="ǘ" 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="Ǚ" 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="ǚ" 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="Ǜ" 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="ǜ" 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="Ǣ" 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="ǣ" 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="Ǧ" 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="ǧ" 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="Ǫ" 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="ǫ" 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="Ǵ" 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="ǵ" 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="Ǹ" 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="ǹ" 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="Ǽ" 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="ǽ" 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="Ș" 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="ș" 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="Ț" 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="ț" 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="ˆ" horiz-adv-x="1095" d="M264 1214l240 295h86l239 -295l-45 -43l-233 259h-8l-234 -259z" />
|
372
|
+
<glyph unicode="˚" 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="˜" 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=" " horiz-adv-x="967" />
|
375
|
+
<glyph unicode=" " horiz-adv-x="1935" />
|
376
|
+
<glyph unicode=" " horiz-adv-x="967" />
|
377
|
+
<glyph unicode=" " horiz-adv-x="1935" />
|
378
|
+
<glyph unicode=" " horiz-adv-x="645" />
|
379
|
+
<glyph unicode=" " horiz-adv-x="483" />
|
380
|
+
<glyph unicode=" " horiz-adv-x="322" />
|
381
|
+
<glyph unicode=" " />
|
382
|
+
<glyph unicode=" " horiz-adv-x="241" />
|
383
|
+
<glyph unicode=" " horiz-adv-x="387" />
|
384
|
+
<glyph unicode=" " horiz-adv-x="107" />
|
222
385
|
<glyph unicode="‐" horiz-adv-x="612" d="M82 471v80h450v-80h-450z" />
|
223
386
|
<glyph unicode="‑" horiz-adv-x="612" d="M82 471v80h450v-80h-450z" />
|
224
|
-
<glyph unicode="‒"
|
387
|
+
<glyph unicode="‒" d="M82 475v74h819v-74h-819z" />
|
225
388
|
<glyph unicode="–" horiz-adv-x="983" d="M82 475v74h819v-74h-819z" />
|
226
389
|
<glyph unicode="—" horiz-adv-x="1638" d="M82 475v74h1474v-74h-1474z" />
|
227
|
-
<glyph unicode="&#
|
228
|
-
<glyph unicode="&#
|
229
|
-
<glyph unicode="&#
|
230
|
-
<glyph unicode="&#
|
231
|
-
<glyph unicode="&#
|
232
|
-
<glyph unicode="&#
|
233
|
-
<glyph unicode="&#
|
234
|
-
<glyph unicode="&#
|
235
|
-
<glyph unicode="&#
|
390
|
+
<glyph unicode="―" horiz-adv-x="1638" d="M82 475v74h1474v-74h-1474z" />
|
391
|
+
<glyph unicode="‖" horiz-adv-x="724" d="M195 -512v2048h73v-2048h-73zM457 -512v2048h73v-2048h-73z" />
|
392
|
+
<glyph unicode="‘" 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="’" 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="‚" 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="“" 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="”" 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="„" 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="†" horiz-adv-x="860" d="M123 1065v86l270 -6l-6 313h86l-4 -313l270 6v-86l-270 4l4 -1233h-86l6 1233z" />
|
399
|
+
<glyph unicode="‡" 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="•" 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="…" 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=" " horiz-adv-x="256" />
|
403
|
+
<glyph unicode="‰" 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="′" horiz-adv-x="448" d="M168 995l47 424l88 -4l-20 -143l-56 -279z" />
|
405
|
+
<glyph unicode="″" horiz-adv-x="737" d="M168 995l47 424l88 -4l-20 -143l-56 -279zM457 995l47 424l88 -4l-21 -143l-55 -279z" />
|
406
|
+
<glyph unicode="‵" horiz-adv-x="448" d="M145 1415l21 -143l55 -279l60 2l-48 424z" />
|
236
407
|
<glyph unicode="‹" horiz-adv-x="530" d="M88 477v78l281 330l51 -43l-252 -326l252 -330l-51 -39z" />
|
237
408
|
<glyph unicode="›" horiz-adv-x="530" d="M111 186l249 330l-249 326l49 43l282 -330v-78l-282 -330z" />
|
238
|
-
<glyph unicode="&#
|
239
|
-
<glyph unicode="&#
|
240
|
-
<glyph unicode="&#
|
409
|
+
<glyph unicode="‼" 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="‽" 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="‾" horiz-adv-x="1024" d="M25 1165v80h974v-80h-974z" />
|
412
|
+
<glyph unicode="‿" 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="⁄" horiz-adv-x="163" d="M-338 -25l754 1399h78l-752 -1399h-80z" />
|
414
|
+
<glyph unicode="⁇" 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="⁈" 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="⁉" 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=" " horiz-adv-x="483" />
|
418
|
+
<glyph unicode="₡" 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="₤" 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="₦" 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="₧" 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="₩" 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="₫" 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="€" 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="₮" 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="₱" 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="₲" 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="₴" 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="₵" 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="₸" d="M70 1016v59l137 8h696v-67h-368v-1016h-93v1016h-372zM70 1241v68h833v-68h-833z" />
|
431
|
+
<glyph unicode="₹" 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="₺" 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="₽" 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="™" 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="◼" horiz-adv-x="983" d="M0 0v983h983v-983h-983z" />
|
242
|
-
<
|
243
|
-
<
|
244
|
-
<hkern u1="
|
436
|
+
<hkern u1="/" u2="ǐ" k="-156" />
|
437
|
+
<hkern u1="/" u2="ĵ" k="-156" />
|
438
|
+
<hkern u1="/" u2="ĭ" k="-156" />
|
439
|
+
<hkern u1="/" u2="ī" k="-156" />
|
440
|
+
<hkern u1="/" u2="ĩ" k="-156" />
|
441
|
+
<hkern u1="/" u2="ï" k="-156" />
|
442
|
+
<hkern u1="/" u2="î" k="-156" />
|
443
|
+
<hkern u1="/" u2="ì" k="-8" />
|
444
|
+
<hkern u1="F" u2="ī" k="-76" />
|
445
|
+
<hkern u1="F" u2="ĩ" k="-80" />
|
245
446
|
<hkern u1="F" u2="ï" k="-80" />
|
246
|
-
<hkern u1="F" u2="î" k="-
|
247
|
-
<hkern u1="
|
248
|
-
<hkern u1="
|
249
|
-
<hkern u1="
|
250
|
-
<hkern u1="
|
251
|
-
<hkern u1="
|
252
|
-
<hkern u1="
|
253
|
-
<hkern u1="
|
254
|
-
<hkern u1="
|
255
|
-
<hkern u1="
|
256
|
-
<hkern u1="
|
257
|
-
<hkern
|
258
|
-
<hkern
|
259
|
-
<hkern
|
260
|
-
<hkern
|
261
|
-
<hkern
|
262
|
-
<hkern
|
263
|
-
<hkern
|
264
|
-
<hkern
|
265
|
-
<hkern
|
266
|
-
<hkern
|
267
|
-
<hkern
|
268
|
-
<hkern
|
269
|
-
<hkern
|
270
|
-
<hkern
|
271
|
-
<hkern
|
272
|
-
<hkern
|
273
|
-
<hkern
|
274
|
-
<hkern
|
275
|
-
<hkern
|
276
|
-
<hkern
|
277
|
-
<hkern
|
278
|
-
<hkern
|
279
|
-
<hkern
|
280
|
-
<hkern
|
281
|
-
<hkern
|
282
|
-
<hkern
|
283
|
-
<hkern
|
284
|
-
<hkern
|
285
|
-
<hkern
|
286
|
-
<hkern
|
287
|
-
<hkern
|
288
|
-
<hkern
|
289
|
-
<hkern
|
290
|
-
<hkern
|
291
|
-
<hkern
|
292
|
-
<hkern
|
293
|
-
<hkern
|
294
|
-
<hkern
|
295
|
-
<hkern
|
296
|
-
<hkern
|
297
|
-
<hkern
|
298
|
-
<hkern
|
299
|
-
<hkern
|
300
|
-
<hkern
|
301
|
-
<hkern g1="
|
302
|
-
<hkern g1="
|
303
|
-
<hkern g1="
|
304
|
-
<hkern g1="
|
305
|
-
<hkern g1="
|
306
|
-
<hkern g1="
|
307
|
-
<hkern g1="
|
308
|
-
<hkern g1="
|
309
|
-
<hkern g1="
|
310
|
-
<hkern g1="
|
311
|
-
<hkern g1="
|
312
|
-
<hkern g1="
|
313
|
-
<hkern g1="
|
314
|
-
<hkern g1="
|
315
|
-
<hkern g1="
|
316
|
-
<hkern g1="
|
317
|
-
<hkern g1="
|
318
|
-
<hkern g1="
|
319
|
-
<hkern g1="
|
320
|
-
<hkern g1="
|
321
|
-
<hkern g1="
|
322
|
-
<hkern g1="
|
323
|
-
<hkern g1="
|
324
|
-
<hkern g1="
|
325
|
-
<hkern g1="
|
326
|
-
<hkern g1="
|
327
|
-
<hkern g1="
|
328
|
-
<hkern g1="
|
329
|
-
<hkern g1="
|
330
|
-
<hkern g1="
|
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="î" k="-76" />
|
448
|
+
<hkern u1="V" u2="ǐ" k="-113" />
|
449
|
+
<hkern u1="V" u2="ĭ" k="-119" />
|
450
|
+
<hkern u1="V" u2="ī" k="-119" />
|
451
|
+
<hkern u1="V" u2="ĩ" k="-125" />
|
452
|
+
<hkern u1="V" u2="ï" k="-125" />
|
453
|
+
<hkern u1="V" u2="î" k="-119" />
|
454
|
+
<hkern u1="V" u2="í" k="-37" />
|
455
|
+
<hkern u1="V" u2="ì" k="-41" />
|
456
|
+
<hkern u1="x" u2=";" k="-4" />
|
457
|
+
<hkern u1="x" u2="," 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="
|
364
|
-
<hkern g1="
|
365
|
-
<hkern g1="
|
366
|
-
<hkern g1="
|
367
|
-
<hkern g1="
|
368
|
-
<hkern g1="
|
369
|
-
<hkern g1="
|
370
|
-
<hkern g1="
|
371
|
-
<hkern g1="
|
372
|
-
<hkern g1="
|
373
|
-
<hkern g1="
|
374
|
-
<hkern g1="
|
375
|
-
<hkern g1="
|
376
|
-
<hkern g1="
|
377
|
-
<hkern g1="
|
378
|
-
<hkern g1="
|
379
|
-
<hkern g1="C,Ccedilla" g2="
|
380
|
-
<hkern g1="
|
381
|
-
<hkern g1="
|
382
|
-
<hkern g1="
|
383
|
-
<hkern g1="
|
384
|
-
<hkern g1="
|
385
|
-
<hkern g1="
|
386
|
-
<hkern g1="
|
387
|
-
<hkern g1="
|
388
|
-
<hkern g1="
|
389
|
-
<hkern g1="
|
390
|
-
<hkern g1="
|
391
|
-
<hkern g1="
|
392
|
-
<hkern g1="
|
393
|
-
<hkern g1="
|
394
|
-
<hkern g1="
|
395
|
-
<hkern g1="
|
396
|
-
<hkern g1="
|
397
|
-
<hkern g1="
|
398
|
-
<hkern g1="
|
399
|
-
<hkern g1="
|
400
|
-
<hkern g1="
|
401
|
-
<hkern g1="
|
402
|
-
<hkern g1="
|
403
|
-
<hkern g1="
|
404
|
-
<hkern g1="
|
405
|
-
<hkern g1="
|
406
|
-
<hkern g1="
|
407
|
-
<hkern g1="
|
408
|
-
<hkern g1="
|
409
|
-
<hkern g1="
|
410
|
-
<hkern g1="
|
411
|
-
<hkern g1="
|
412
|
-
<hkern g1="
|
413
|
-
<hkern g1="
|
414
|
-
<hkern g1="
|
415
|
-
<hkern g1="
|
416
|
-
<hkern g1="
|
417
|
-
<hkern g1="
|
418
|
-
<hkern g1="
|
419
|
-
<hkern g1="
|
420
|
-
<hkern g1="
|
421
|
-
<hkern g1="
|
422
|
-
<hkern g1="
|
423
|
-
<hkern g1="
|
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="
|
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="
|
653
|
-
<hkern g1="f" g2="
|
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="
|
656
|
-
<hkern g1="
|
657
|
-
<hkern g1="
|
658
|
-
<hkern g1="
|
659
|
-
<hkern g1="
|
660
|
-
<hkern g1="
|
661
|
-
<hkern g1="
|
662
|
-
<hkern g1="
|
663
|
-
<hkern g1="
|
664
|
-
<hkern g1="
|
665
|
-
<hkern g1="
|
666
|
-
<hkern g1="
|
667
|
-
<hkern g1="
|
668
|
-
<hkern g1="
|
669
|
-
<hkern g1="
|
670
|
-
<hkern g1="
|
671
|
-
<hkern g1="
|
672
|
-
<hkern g1="
|
673
|
-
<hkern g1="
|
674
|
-
<hkern g1="
|
675
|
-
<hkern g1="
|
676
|
-
<hkern g1="
|
677
|
-
<hkern g1="
|
678
|
-
<hkern g1="
|
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="
|
797
|
-
<hkern g1="F" g2="
|
798
|
-
<hkern g1="F" g2="
|
799
|
-
<hkern g1="
|
800
|
-
<hkern g1="
|
801
|
-
<hkern g1="
|
802
|
-
<hkern g1="
|
803
|
-
<hkern g1="
|
804
|
-
<hkern g1="
|
805
|
-
<hkern g1="
|
806
|
-
<hkern g1="
|
807
|
-
<hkern g1="
|
808
|
-
<hkern g1="
|
809
|
-
<hkern g1="
|
810
|
-
<hkern g1="
|
811
|
-
<hkern g1="
|
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="
|
814
|
-
<hkern g1="P" g2="
|
815
|
-
<hkern g1="
|
816
|
-
<hkern g1="
|
817
|
-
<hkern g1="
|
818
|
-
<hkern g1="
|
819
|
-
<hkern g1="
|
820
|
-
<hkern g1="
|
821
|
-
<hkern g1="
|
822
|
-
<hkern g1="
|
823
|
-
<hkern g1="
|
824
|
-
<hkern g1="
|
825
|
-
<hkern g1="
|
826
|
-
<hkern g1="
|
827
|
-
<hkern g1="
|
828
|
-
<hkern g1="
|
829
|
-
<hkern g1="
|
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="
|
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="
|
836
|
-
<hkern g1="
|
837
|
-
<hkern g1="
|
838
|
-
<hkern g1="
|
839
|
-
<hkern g1="
|
840
|
-
<hkern g1="
|
841
|
-
<hkern g1="
|
842
|
-
<hkern g1="
|
843
|
-
<hkern g1="
|
844
|
-
<hkern g1="
|
845
|
-
<hkern g1="
|
846
|
-
<hkern g1="
|
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="
|
850
|
-
<hkern g1="
|
851
|
-
<hkern g1="
|
852
|
-
<hkern g1="
|
853
|
-
<hkern g1="
|
854
|
-
<hkern g1="
|
855
|
-
<hkern g1="
|
856
|
-
<hkern g1="
|
857
|
-
<hkern g1="
|
858
|
-
<hkern g1="
|
859
|
-
<hkern g1="
|
860
|
-
<hkern g1="
|
861
|
-
<hkern g1="
|
862
|
-
<hkern g1="
|
863
|
-
<hkern g1="
|
864
|
-
<hkern g1="
|
865
|
-
<hkern g1="
|
866
|
-
<hkern g1="
|
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="
|
870
|
-
<hkern g1="guillemotright,guilsinglright" g2="
|
871
|
-
<hkern g1="guillemotright,guilsinglright" g2="Y,Yacute,Ydieresis" k="90" />
|
872
|
-
<hkern g1="guillemotright,guilsinglright" g2="
|
873
|
-
<hkern g1="guillemotright,guilsinglright" g2="
|
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="
|
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="
|
879
|
-
<hkern g1="
|
880
|
-
<hkern g1="
|
881
|
-
<hkern g1="
|
882
|
-
<hkern g1="
|
883
|
-
<hkern g1="
|
884
|
-
<hkern g1="
|
885
|
-
<hkern g1="
|
886
|
-
<hkern g1="
|
887
|
-
<hkern g1="
|
888
|
-
<hkern g1="
|
889
|
-
<hkern g1="
|
890
|
-
<hkern g1="
|
891
|
-
<hkern g1="
|
892
|
-
<hkern g1="
|
893
|
-
<hkern g1="
|
894
|
-
<hkern g1="
|
895
|
-
<hkern g1="
|
896
|
-
<hkern g1="
|
897
|
-
<hkern g1="
|
898
|
-
<hkern g1="
|
899
|
-
<hkern g1="
|
900
|
-
<hkern g1="
|
901
|
-
<hkern g1="
|
902
|
-
<hkern g1="
|
903
|
-
<hkern g1="
|
904
|
-
<hkern g1="
|
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>
|