houston-core 0.8.4 → 0.9.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -0
- data/Gemfile.lock +72 -78
- data/app/assets/javascripts/houston/app/models/role.coffee +4 -0
- data/app/assets/javascripts/houston/app/views/nested_resources.coffee +44 -0
- data/app/assets/javascripts/houston/app/views/team_roles_view.coffee +10 -0
- data/app/assets/javascripts/houston/application.js +3 -1
- data/app/assets/javascripts/houston/core/ajax_helpers.coffee +26 -0
- data/app/assets/javascripts/houston/core/app.coffee +0 -45
- data/app/assets/javascripts/houston/core/errors.coffee +1 -12
- data/app/assets/javascripts/houston/core/handlebars_helpers.coffee +8 -70
- data/app/assets/javascripts/houston/core/jquery_extensions.coffee +0 -138
- data/app/assets/javascripts/houston/core/timeline_helpers.coffee +44 -0
- data/app/assets/javascripts/houston/core/uploader_helpers.coffee +99 -0
- data/app/assets/javascripts/houston/vendor.js +26 -9
- data/app/assets/stylesheets/houston/application/actions.scss +22 -0
- data/app/assets/stylesheets/houston/application/navigation.scss +2 -2
- data/app/assets/stylesheets/houston/application/{freight_train.css.scss → nested_resources.scss} +1 -0
- data/app/assets/stylesheets/houston/core/alerts.scss +0 -4
- data/app/assets/stylesheets/houston/core/timeline.scss +204 -0
- data/app/assets/templates/houston/teams/roles/index.hbs +1 -0
- data/app/assets/templates/houston/teams/roles/show.hbs +19 -0
- data/app/channels/events_channel.rb +1 -1
- data/app/concerns/houston/props.rb +3 -2
- data/app/controllers/actions_controller.rb +8 -3
- data/app/controllers/application_controller.rb +9 -12
- data/app/controllers/authorizations_controller.rb +41 -14
- data/app/controllers/errors_controller.rb +3 -3
- data/app/controllers/project_follows_controller.rb +23 -0
- data/app/controllers/project_options_controller.rb +1 -1
- data/app/controllers/user_options_controller.rb +1 -1
- data/app/helpers/actions_helper.rb +12 -0
- data/app/helpers/application_helper.rb +0 -10
- data/app/helpers/layout_helper.rb +20 -0
- data/app/helpers/markdown_helper.rb +2 -10
- data/app/helpers/navigation_helper.rb +5 -5
- data/app/helpers/project_helper.rb +6 -0
- data/app/helpers/url_helper.rb +4 -4
- data/app/helpers/view_extensions_helper.rb +20 -0
- data/app/models/action.rb +61 -44
- data/app/models/authorization.rb +55 -10
- data/app/models/follow.rb +6 -0
- data/app/models/persistent_trigger.rb +11 -1
- data/app/models/project.rb +5 -27
- data/app/models/user.rb +15 -59
- data/app/presenters/project_presenter.rb +2 -2
- data/app/views/actions/_actions.html.erb +8 -5
- data/app/views/actions/index.html.erb +1 -1
- data/app/views/actions/running.html.erb +9 -15
- data/app/views/actions/show.html.erb +6 -3
- data/app/views/actions/unqueued.html.erb +41 -0
- data/app/views/authorizations/_form.html.erb +28 -16
- data/app/views/authorizations/index.html.erb +9 -4
- data/app/views/{oauth/providers/edit.html.erb → authorizations/oauth2_callback.html.erb} +3 -2
- data/app/views/devise/sessions/new.html.erb +0 -8
- data/app/views/errors/index.html.erb +9 -5
- data/app/views/layouts/_navigation.html.erb +9 -0
- data/app/views/layouts/application.html.erb +11 -6
- data/app/views/layouts/dashboard.html.erb +9 -0
- data/app/views/projects/_form.html.erb +7 -18
- data/app/views/projects/_header.html.erb +2 -6
- data/app/views/projects/index.html.erb +4 -4
- data/app/views/teams/_form.html.erb +7 -17
- data/app/views/teams/index.html.erb +1 -1
- data/app/views/users/_form.html.erb +1 -38
- data/config/application.rb +8 -5
- data/config/initializers/devise.rb +0 -14
- data/config/initializers/secret_token.rb +8 -13
- data/config/routes.rb +12 -28
- data/db/migrate/20130706141443_drop_deprecated_project_roles.rb +5 -1
- data/db/migrate/20170118005958_remove_antecedents_from_versions_of_tickets.rb +1 -1
- data/db/migrate/20170130011016_drop_users_environments_subscribed_to.rb +9 -0
- data/db/migrate/20170205004452_drop_settings.rb +12 -0
- data/db/migrate/20170206002030_drop_extension_hstore.rb +9 -0
- data/db/migrate/20170206002732_drop_legacy_columns_from_users.rb +10 -0
- data/db/migrate/20170209022159_rename_projects_color_to_color_name.rb +5 -0
- data/db/migrate/20170213001453_change_providers_from_models_to_extensions.rb +27 -0
- data/db/migrate/20170215012012_add_props_to_authorizations.rb +5 -0
- data/db/migrate/20170216041034_add_user_to_persistent_triggers.rb +5 -0
- data/db/migrate/20170226201504_create_follows.rb +20 -0
- data/db/migrate/20170301014051_drop_name_from_authorizations.rb +9 -0
- data/db/migrate/20170307032041_add_created_at_to_actions.rb +11 -0
- data/db/migrate/20170307035755_allow_actions_started_at_to_be_null.rb +5 -0
- data/db/migrate/20170310024505_replace_authorizations_provider_name_with_type.rb +12 -0
- data/db/migrate/20170329030329_drop_consumer_tokens.rb +9 -0
- data/db/structure.sql +187 -212
- data/houston-core.gemspec +10 -13
- data/lib/houston/boot.rb +1 -4
- data/lib/houston/boot/actions.rb +24 -21
- data/lib/houston/boot/configuration.rb +46 -113
- data/lib/houston/boot/extensions.rb +54 -341
- data/lib/houston/boot/extensions/deprecated.rb +194 -0
- data/lib/houston/boot/extensions/dsl.rb +99 -0
- data/lib/houston/boot/extensions/events.rb +81 -0
- data/lib/houston/boot/extensions/features.rb +42 -0
- data/lib/houston/boot/extensions/layout.rb +70 -0
- data/lib/houston/boot/extensions/navigation.rb +42 -0
- data/lib/houston/boot/extensions/oauth.rb +62 -0
- data/lib/houston/boot/extensions/serializers.rb +29 -0
- data/lib/houston/boot/extensions/view.rb +34 -0
- data/lib/houston/boot/observer.rb +10 -5
- data/{app/models/oauth → lib/houston/boot}/provider.rb +7 -5
- data/lib/houston/boot/running_as.rb +0 -5
- data/lib/houston/boot/serializer.rb +12 -6
- data/lib/houston/boot/{active_record_serializer.rb → serializers/active_record_serializer.rb} +0 -2
- data/lib/houston/boot/{readonly_hash_serializer.rb → serializers/readonly_hash_serializer.rb} +0 -2
- data/lib/houston/boot/timer.rb +10 -0
- data/lib/houston/boot/triggers.rb +27 -8
- data/lib/houston/version.rb +1 -1
- data/templates/new-instance/.gitignore +0 -4
- data/templates/new-instance/config/main.rb +8 -10
- data/templates/new-module/test/dummy/houston.rb +1 -0
- data/test/acceptance/layout_test.rb +58 -0
- data/test/acceptance/updating_props_test.rb +72 -0
- data/test/support/config.rb +1 -0
- data/test/unit/extensions/events_extension_test.rb +33 -0
- data/test/unit/extensions/layout_extension_test.rb +74 -0
- data/test/unit/extensions/navigation_extension_test.rb +62 -0
- data/test/unit/extensions/oauth_extension_test.rb +91 -0
- data/test/unit/extensions/project_features_extension_test.rb +79 -0
- data/test/unit/extensions/serializers_extension_test.rb +47 -0
- data/test/unit/extensions/view_extension_test.rb +98 -0
- data/test/unit/models/actions_test.rb +11 -5
- data/test/unit/models/configuration_test.rb +0 -8
- data/test/unit/models/observer_test.rb +16 -0
- data/test/unit/models/persistent_trigger_test.rb +29 -2
- data/test/unit/models/serializer_test.rb +6 -0
- data/test/unit/models/timer_test.rb +88 -0
- metadata +87 -168
- data/app/assets/font/octicons.eot +0 -0
- data/app/assets/font/octicons.svg +0 -198
- data/app/assets/font/octicons.ttf +0 -0
- data/app/assets/font/octicons.woff +0 -0
- data/app/assets/font/roboto-black-webfont.eot +0 -0
- data/app/assets/font/roboto-black-webfont.svg +0 -675
- data/app/assets/font/roboto-black-webfont.ttf +0 -0
- data/app/assets/font/roboto-black-webfont.woff +0 -0
- data/app/assets/font/roboto-blackitalic-webfont.eot +0 -0
- data/app/assets/font/roboto-blackitalic-webfont.svg +0 -677
- data/app/assets/font/roboto-blackitalic-webfont.ttf +0 -0
- data/app/assets/font/roboto-blackitalic-webfont.woff +0 -0
- data/app/assets/font/roboto-bold-webfont.eot +0 -0
- data/app/assets/font/roboto-bold-webfont.svg +0 -675
- data/app/assets/font/roboto-bold-webfont.ttf +0 -0
- data/app/assets/font/roboto-bold-webfont.woff +0 -0
- data/app/assets/font/roboto-bolditalic-webfont.eot +0 -0
- data/app/assets/font/roboto-bolditalic-webfont.svg +0 -677
- data/app/assets/font/roboto-bolditalic-webfont.ttf +0 -0
- data/app/assets/font/roboto-bolditalic-webfont.woff +0 -0
- data/app/assets/font/roboto-italic-webfont.eot +0 -0
- data/app/assets/font/roboto-italic-webfont.svg +0 -668
- data/app/assets/font/roboto-italic-webfont.ttf +0 -0
- data/app/assets/font/roboto-italic-webfont.woff +0 -0
- data/app/assets/font/roboto-light-webfont.eot +0 -0
- data/app/assets/font/roboto-light-webfont.svg +0 -666
- data/app/assets/font/roboto-light-webfont.ttf +0 -0
- data/app/assets/font/roboto-light-webfont.woff +0 -0
- data/app/assets/font/roboto-lightitalic-webfont.eot +0 -0
- data/app/assets/font/roboto-lightitalic-webfont.svg +0 -668
- data/app/assets/font/roboto-lightitalic-webfont.ttf +0 -0
- data/app/assets/font/roboto-lightitalic-webfont.woff +0 -0
- data/app/assets/font/roboto-medium-webfont.eot +0 -0
- data/app/assets/font/roboto-medium-webfont.svg +0 -675
- data/app/assets/font/roboto-medium-webfont.ttf +0 -0
- data/app/assets/font/roboto-medium-webfont.woff +0 -0
- data/app/assets/font/roboto-mediumitalic-webfont.eot +0 -0
- data/app/assets/font/roboto-mediumitalic-webfont.svg +0 -677
- data/app/assets/font/roboto-mediumitalic-webfont.ttf +0 -0
- data/app/assets/font/roboto-mediumitalic-webfont.woff +0 -0
- data/app/assets/font/roboto-regular-webfont.eot +0 -0
- data/app/assets/font/roboto-regular-webfont.svg +0 -666
- data/app/assets/font/roboto-regular-webfont.ttf +0 -0
- data/app/assets/font/roboto-regular-webfont.woff +0 -0
- data/app/assets/font/roboto-thin-webfont.eot +0 -0
- data/app/assets/font/roboto-thin-webfont.svg +0 -666
- data/app/assets/font/roboto-thin-webfont.ttf +0 -0
- data/app/assets/font/roboto-thin-webfont.woff +0 -0
- data/app/assets/font/roboto-thinitalic-webfont.eot +0 -0
- data/app/assets/font/roboto-thinitalic-webfont.svg +0 -668
- data/app/assets/font/roboto-thinitalic-webfont.ttf +0 -0
- data/app/assets/font/roboto-thinitalic-webfont.woff +0 -0
- data/app/assets/images/bug-fixed-128.png +0 -0
- data/app/assets/images/bug-fixed-32.png +0 -0
- data/app/assets/images/bug-fixed-48.png +0 -0
- data/app/assets/images/bug-new-128.png +0 -0
- data/app/assets/images/bug-new-32.png +0 -0
- data/app/assets/images/bug-new-48.png +0 -0
- data/app/assets/images/bug-open-32.png +0 -0
- data/app/assets/images/bug-zero-128.png +0 -0
- data/app/assets/images/bug-zero-48.png +0 -0
- data/app/assets/images/drag-grip.png +0 -0
- data/app/assets/javascripts/houston/core/burndown_chart.coffee +0 -111
- data/app/assets/javascripts/houston/core/stacked_area_graph.coffee +0 -113
- data/app/assets/javascripts/houston/core/stacked_bar_graph.coffee +0 -108
- data/app/assets/stylesheets/houston/application/project_tiles.scss +0 -26
- data/app/assets/stylesheets/houston/application/tips.scss +0 -5
- data/app/assets/stylesheets/houston/core/octicons-icons.scss +0 -221
- data/app/assets/stylesheets/houston/core/octicons.scss.erb +0 -9
- data/app/assets/stylesheets/houston/core/roboto.scss.erb +0 -131
- data/app/concerns/historical_weekly_stats.rb +0 -15
- data/app/concerns/nosync.rb +0 -21
- data/app/controllers/oauth/providers_controller.rb +0 -45
- data/app/controllers/project_roles_controller.rb +0 -22
- data/app/controllers/settings_controller.rb +0 -14
- data/app/controllers/tester_bar_controller.rb +0 -12
- data/app/controllers/user_credentials_controller.rb +0 -24
- data/app/models/role.rb +0 -33
- data/app/models/setting.rb +0 -10
- data/app/models/settings.rb +0 -38
- data/app/models/slackdown.rb +0 -23
- data/app/models/user_credentials.rb +0 -27
- data/app/views/errors/_actions.html.erb +0 -17
- data/app/views/layouts/_tester_bar.html.erb +0 -6
- data/app/views/layouts/minimal.html.erb +0 -50
- data/app/views/layouts/naked.html.erb +0 -47
- data/app/views/layouts/naked_dashboard.html.erb +0 -50
- data/app/views/oauth/providers/_form.html.erb +0 -54
- data/app/views/oauth/providers/index.html.erb +0 -41
- data/app/views/oauth/providers/new.html.erb +0 -7
- data/config/initializers/add_navigation_renderers.rb +0 -5
- data/config/initializers/vestal_versions.rb +0 -9
- data/db/migrate/20130519163615_create_user_credentials.rb +0 -18
- data/lib/houston/boot/events.rb +0 -10
- data/lib/tasks/keypair.rake +0 -17
- data/vendor/assets/javascripts/jquery.pjax.js +0 -817
Binary file
|
Binary file
|
Binary file
|
@@ -1,677 +0,0 @@
|
|
1
|
-
<?xml version="1.0" standalone="no"?>
|
2
|
-
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
3
|
-
<svg xmlns="http://www.w3.org/2000/svg">
|
4
|
-
<metadata></metadata>
|
5
|
-
<defs>
|
6
|
-
<font id="robotomedium_italic" horiz-adv-x="1139" >
|
7
|
-
<font-face units-per-em="2048" ascent="1536" descent="-512" />
|
8
|
-
<missing-glyph horiz-adv-x="505" />
|
9
|
-
<glyph unicode="fi" horiz-adv-x="1166" d="M75 902l32 180l152 -1l12 70q16 97 56.5 173.5t102 129t143.5 79.5t182 25q78 -1 152.5 -20t148.5 -42l-57 -200q-57 23 -116.5 37t-121.5 14q-102 1 -166.5 -47.5t-84.5 -148.5l-14 -70l215 1l-32 -180h-206l-157 -902h-237l156 902h-160zM675 0l188 1082h237 l-187 -1082h-238z" />
|
10
|
-
<glyph horiz-adv-x="0" />
|
11
|
-
<glyph unicode="
" horiz-adv-x="505" />
|
12
|
-
<glyph horiz-adv-x="0" />
|
13
|
-
<glyph horiz-adv-x="0" />
|
14
|
-
<glyph horiz-adv-x="10" />
|
15
|
-
<glyph unicode="	" horiz-adv-x="10" />
|
16
|
-
<glyph unicode=" " horiz-adv-x="505" />
|
17
|
-
<glyph unicode="	" horiz-adv-x="505" />
|
18
|
-
<glyph unicode=" " horiz-adv-x="505" />
|
19
|
-
<glyph unicode="!" horiz-adv-x="543" d="M55 111q0 29 9.5 53.5t27.5 43t42.5 29t53.5 11.5q28 1 53 -8.5t43 -26.5t28.5 -41t10.5 -53t-10 -53t-28 -42t-42.5 -28t-52.5 -11t-52.5 8t-43 25.5t-29 40t-10.5 52.5zM138 429l156 1027h250l-202 -1027h-204z" />
|
20
|
-
<glyph unicode=""" horiz-adv-x="654" d="M161 1012l83 524h170l-23 -148l-92 -376h-138zM453 1012l83 524h170l-23 -148l-92 -376h-138z" />
|
21
|
-
<glyph unicode="#" horiz-adv-x="1223" d="M24 410l28 158h251l110 313h-233l28 159h262l148 416h169l-149 -416h211l148 416h170l-148 -416h199l-28 -159h-228l-110 -313h212l-28 -158h-240l-146 -410h-169l146 410h-212l-145 -410h-169l145 410h-222zM471 568h212l111 313h-212z" />
|
22
|
-
<glyph unicode="$" d="M70 444l237 -1q-3 -52 5 -99t30.5 -83t61 -58.5t96.5 -23.5q49 -1 94 12.5t80 40t58 65.5t29 90q6 49 -7 85.5t-39 64.5t-62.5 48.5t-76.5 37.5q-75 31 -141.5 70.5t-115 92t-74 121t-19.5 158.5t40 161t90 122.5t129.5 83t159.5 41.5l40 218h157l-41 -222 q86 -18 143.5 -63t91 -107.5t46 -138t8.5 -155.5h-236q3 44 -1.5 91.5t-22 87t-51 65t-88.5 27.5q-48 1 -88 -14t-69.5 -42.5t-48 -66.5t-24.5 -85q-6 -50 7.5 -86t40.5 -63.5t63.5 -48t77.5 -38.5q75 -32 141 -71.5t113.5 -92t72.5 -121t19 -158.5q-6 -93 -42 -164.5 t-94.5 -121.5t-135 -80t-164.5 -39l-36 -195h-156l37 196q-91 14 -156 54.5t-106.5 101.5t-59 138t-13.5 165z" />
|
23
|
-
<glyph unicode="%" horiz-adv-x="1469" d="M185 1099l7 76q6 66 33 122.5t70.5 97t101.5 62.5t126 21q65 -2 117 -25t87 -63.5t52 -95t13 -118.5l-6 -77q-7 -66 -34 -121.5t-70.5 -95.5t-101 -62t-124.5 -20q-65 1 -116.5 24.5t-87 63.5t-53.5 94t-14 117zM250 190l879 1127l120 -79l-879 -1127zM352 1097 q-3 -28 1.5 -55t17 -48.5t34.5 -35t54 -14.5q34 -1 61 11.5t47.5 34.5t33 50t17.5 59l9 78q3 28 -1.5 55.5t-17 49.5t-34.5 35.5t-55 14.5q-34 1 -61 -12t-47 -34.5t-33 -50t-17 -59.5zM722 279l6 76q6 67 33.5 123t71.5 96.5t102 62t126 20.5q64 -2 116 -25t87 -63 t52.5 -94.5t13.5 -117.5l-6 -78q-7 -66 -34 -121.5t-70.5 -96t-101 -62.5t-124.5 -20q-65 1 -116.5 24.5t-87.5 63.5t-53.5 94.5t-14.5 117.5zM889 277q-2 -28 2.5 -55.5t17.5 -49t34.5 -35t53.5 -14.5q35 -1 62.5 11.5t47 34t31.5 50t17 60.5l10 79q2 28 -2 55.5t-17 49 t-34.5 35t-54.5 14.5q-34 1 -61.5 -11.5t-47.5 -34t-33 -50t-17 -59.5z" />
|
24
|
-
<glyph unicode="&" horiz-adv-x="1280" d="M51 385q5 73 35 131t75.5 105.5t101 86.5t112.5 74q-20 37 -38.5 75t-32.5 77t-21.5 80t-4.5 84q6 85 39 155.5t87.5 121t127 77t158.5 24.5q67 -2 127 -25t103.5 -64.5t67.5 -99.5t20 -128q-3 -56 -22.5 -103t-51 -87.5t-71.5 -74.5t-83 -64l-121 -80l214 -324 q42 63 67.5 128t36.5 140l203 1q-11 -126 -54 -238.5t-130 -206.5l161 -250h-258l-61 95q-85 -57 -178.5 -86.5t-196.5 -27.5q-89 1 -167 29.5t-134.5 80t-86.5 126t-24 168.5zM292 393q-6 -47 4.5 -87t35 -68.5t62 -45t85.5 -17.5q68 -1 128 25t116 61l-243 369l-34 -22 q-27 -19 -53 -42.5t-46.5 -50.5t-35 -57.5t-19.5 -64.5zM496 1105q-4 -27 0.5 -54t13.5 -52.5t21.5 -49.5t25.5 -47l96 60q27 17 51 36.5t43.5 42t32.5 50t17 61.5q3 28 -5 52t-24.5 41t-40 27t-51.5 10q-38 0 -69 -14.5t-54 -39t-38 -56.5t-19 -67z" />
|
25
|
-
<glyph unicode="'" horiz-adv-x="346" d="M144 1020l81 516h181l-21 -137l-84 -379h-157z" />
|
26
|
-
<glyph unicode="(" horiz-adv-x="703" d="M106.5 389q2.5 96 14.5 182l2 17q14 97 39.5 200.5t64.5 205t90.5 198t117.5 180t146.5 150.5t177.5 110l36 -144q-105 -81 -182 -183.5t-131.5 -218t-88.5 -241t-53 -252.5l-3 -20q-10 -69 -17 -148t-7.5 -162t8.5 -167t31.5 -161t60.5 -145t96 -120l-56 -133 q-82 51 -141.5 124t-100.5 159t-64.5 182t-33 193.5t-7 193.5z" />
|
27
|
-
<glyph unicode=")" horiz-adv-x="710" d="M-108 -327q105 82 182.5 185t132 220t88.5 243t53 254l3 20q9 68 16 147t7 162t-9 167t-31 161.5t-60 145.5t-96 119l57 134q82 -50 142 -122.5t101.5 -158.5t66 -182.5t35 -194.5t8 -194t-13.5 -182l-2 -16q-14 -98 -40.5 -201.5t-65.5 -205t-91.5 -198t-119.5 -180 t-148.5 -151t-177.5 -110.5z" />
|
28
|
-
<glyph unicode="*" horiz-adv-x="888" d="M95 1065l77 161l280 -119l40 349h175l-69 -344l301 112l26 -179l-316 -89l155 -270l-148 -99l-130 289l-215 -276l-135 109l241 268z" />
|
29
|
-
<glyph unicode="+" horiz-adv-x="1117" d="M61 579l40 222h370l70 405h231l-71 -405h369l-39 -222h-368l-75 -433h-231l76 433h-372z" />
|
30
|
-
<glyph unicode="," horiz-adv-x="447" d="M-119 -248q52 70 93 142.5t57 159.5l32 181h213l-28 -172q-19 -118 -82.5 -218.5t-157.5 -172.5z" />
|
31
|
-
<glyph unicode="-" horiz-adv-x="662" d="M54 521l35 196h511l-35 -196h-511z" />
|
32
|
-
<glyph unicode="." horiz-adv-x="565" d="M48 117q0 30 10 55.5t28.5 44t43.5 29t55 11.5q29 1 54.5 -8.5t44 -27t29 -42t10.5 -54.5t-10.5 -55t-29 -43t-43.5 -28t-54 -11t-54 8t-43.5 26t-29.5 41t-11 54z" />
|
33
|
-
<glyph unicode="/" horiz-adv-x="796" d="M-129 -125l830 1581h197l-831 -1581h-196z" />
|
34
|
-
<glyph unicode="0" d="M97 464.5q1 74.5 10 148.5l35 235q17 120 54 234t102 203t162.5 141.5t236.5 49.5q89 -2 153.5 -29t108.5 -72t70 -105.5t37.5 -129.5t10.5 -144t-10 -148l-36 -234q-12 -79 -32 -158t-50.5 -150t-73 -131.5t-100 -104.5t-131.5 -68t-167 -22q-89 2 -153.5 29t-108.5 73 t-70 107t-37.5 131t-10.5 144.5zM326.5 413.5q0.5 -44.5 7.5 -86.5t25.5 -75.5t50 -55t81.5 -23.5q54 -3 96 14.5t73 48.5t53 72t37 87t24.5 93t15.5 90l46 309q4 35 8.5 77t4 85t-8 84t-25.5 73.5t-50 53t-81 22.5q-54 2 -96 -14t-73.5 -46t-53.5 -70t-37.5 -85t-25 -91.5 t-15.5 -89.5l-45 -309q-4 -34 -8 -76.5t-3.5 -87z" />
|
35
|
-
<glyph unicode="1" d="M239 1042l37 215l576 204h36l-247 -1461h-236l202 1164z" />
|
36
|
-
<glyph unicode="2" d="M11 0l28 177l530 508q38 37 81 79t80.5 88.5t65 97.5t34.5 107q6 44 -1.5 84.5t-28.5 71.5t-55 49.5t-82 20.5q-62 2 -110.5 -19t-83.5 -57.5t-56.5 -86.5t-28.5 -107l-236 -1q8 105 52.5 191.5t115.5 147.5t163.5 94t196.5 31q89 -2 165 -28.5t130.5 -76.5t82 -122.5 t20.5 -166.5q-7 -83 -42.5 -157.5t-87 -142t-111.5 -127.5t-117 -113l-370 -348h647l-31 -194h-951z" />
|
37
|
-
<glyph unicode="3" d="M37 391l236 -1q-2 -47 9.5 -86t36 -67.5t62 -45t86.5 -17.5q56 -2 104 15t85 49t60 77t30 101q13 110 -42.5 168.5t-163.5 61.5l-154 1l34 192l127 -2q55 0 104.5 15t88 44.5t64 73t32.5 100.5q6 46 -2 85t-29.5 67t-56.5 44t-84 17q-48 1 -90 -13.5t-74.5 -41.5 t-54.5 -65t-30 -85l-237 -1q8 95 52 170t112.5 126.5t154 78t176.5 25.5q91 -2 168.5 -30t131.5 -80t81.5 -126.5t20.5 -170.5q-5 -60 -29 -110t-61.5 -90.5t-85 -72.5t-98.5 -56q49 -23 84.5 -56.5t57.5 -75.5t31 -91t5 -102q-8 -105 -53.5 -187t-117.5 -138t-164 -84.5 t-192 -26.5q-92 2 -170 31t-133.5 82t-85 128t-26.5 170z" />
|
38
|
-
<glyph unicode="4" d="M9 324l21 160l770 972h253l-163 -937h176l-34 -195h-175l-57 -324h-237l56 324h-610zM292 519h361l113 611l-24 -34z" />
|
39
|
-
<glyph unicode="5" d="M86 394h228q3 -46 15 -85.5t35.5 -69t59 -47t85.5 -18.5q65 -2 115 24t84.5 69.5t55 99.5t26.5 114q6 52 -1 101.5t-29.5 88.5t-62.5 63t-99 25q-65 2 -116 -20.5t-99 -62.5l-195 50l204 730h762l-37 -210h-560l-110 -350q51 30 107 44.5t114 14.5q103 -1 175.5 -41.5 t116.5 -108t60.5 -154t7.5 -178.5q-10 -108 -53 -199.5t-112 -158t-162 -103t-204 -33.5q-92 2 -167 33t-128.5 85.5t-83.5 130t-32 166.5z" />
|
40
|
-
<glyph unicode="6" horiz-adv-x="1138" d="M103.5 414.5q-5.5 68.5 2.5 136.5l13 95q15 113 47.5 217.5t83 195t118 165t153.5 128t189 82.5t225 30h33l-20 -202l-13 1q-107 1 -193 -29t-154 -85.5t-118.5 -133.5t-86.5 -173q62 60 137 91.5t163 29.5q99 -2 168 -44.5t111 -110t57.5 -152.5t7.5 -172 q-9 -105 -50 -197.5t-108.5 -161.5t-159 -108.5t-200.5 -37.5q-77 2 -139 26t-109.5 65t-80 95.5t-52 117.5t-25 131.5zM337.5 457q-0.5 -38 4.5 -76.5t16.5 -75t32.5 -64.5t52 -46t75 -19q62 -2 110.5 24t83 69t54.5 98t26 110q5 48 -0.5 99t-25.5 93.5t-57 70t-94 29.5 q-43 1 -81.5 -11.5t-72 -34.5t-61 -52.5t-48.5 -65.5l-10 -77q-4 -33 -4.5 -71z" />
|
41
|
-
<glyph unicode="7" d="M134 0l761 1261h-726l31 195h980l-23 -147l-764 -1309h-259z" />
|
42
|
-
<glyph unicode="8" d="M66 388q5 67 29 123t62.5 101.5t89.5 81t110 62.5q-75 54 -111 134.5t-30 172.5q7 97 47.5 175t105 131.5t149 81t179.5 25.5q87 -2 160 -30t124.5 -79t77.5 -124t19 -163q-5 -60 -26 -110.5t-55 -92t-78.5 -74.5t-96.5 -59q89 -57 132.5 -145t35.5 -194 q-7 -103 -51.5 -183t-114 -134.5t-159.5 -82t-189 -25.5q-91 2 -169 30t-134 80t-85 127t-22 171zM305 401q-5 -48 4 -89t32.5 -71.5t60.5 -48.5t87 -19q55 -1 101.5 17t81 50.5t56.5 77.5t28 99q5 47 -4 89t-32 74t-60 51t-87 20q-55 1 -101.5 -18t-81.5 -53t-57 -80 t-28 -99zM450 1054q-4 -41 3 -78.5t26.5 -66.5t51.5 -46.5t77 -18.5q49 -1 89.5 17t70.5 49.5t48.5 73t23.5 88.5q4 40 -3.5 78t-27 67t-51.5 46.5t-77 18.5q-49 1 -89.5 -17t-70.5 -49.5t-48 -73.5t-23 -88z" />
|
43
|
-
<glyph unicode="9" d="M147 961q9 104 50 198.5t108.5 166t159 112.5t201.5 38q80 -2 142 -27.5t108 -68.5t76 -100.5t46.5 -122.5t20 -135t-4.5 -138l-10 -79q-24 -173 -84 -321t-160 -257t-241.5 -171t-327.5 -63h-25l19 202l15 -1q110 -1 197 26t153 80.5t114 131t80 178.5 q-60 -58 -131.5 -94.5t-156.5 -35.5q-66 1 -119 21t-93.5 53.5t-69 79.5t-45 99t-22 111t-0.5 117zM382.5 869q4.5 -52 23.5 -95.5t55 -73t94 -31.5q41 -1 78 11t69 34t59 51t48 62l13 97q3 31 4 69.5t-3.5 77.5t-15 76t-30.5 66.5t-50.5 47.5t-73.5 20q-63 2 -110.5 -26.5 t-81.5 -74.5t-53 -102t-25 -110q-5 -47 -0.5 -99z" />
|
44
|
-
<glyph unicode=":" horiz-adv-x="537" d="M43 117q0 30 10 55.5t28.5 44t43.5 29t55 11.5q29 1 54.5 -8.5t44 -27t29 -42t10.5 -54.5t-10.5 -55t-29 -43t-43.5 -28t-54 -11t-54 8t-43.5 26t-29.5 41t-11 54zM189 966q0 30 10 55.5t28.5 44t43.5 29t55 11.5q29 1 54.5 -8.5t44 -27t29 -42t10.5 -54.5t-10.5 -55 t-29 -43t-43.5 -28t-54 -11t-54 8t-43.5 26t-29.5 41t-11 54z" />
|
45
|
-
<glyph unicode=";" horiz-adv-x="482" d="M-102 -248q52 70 93 142.5t57 159.5l32 181h213l-28 -172q-19 -118 -82.5 -218.5t-157.5 -172.5zM169 966q0 30 10 55.5t28.5 44t43.5 29t55 11.5q29 1 54.5 -8.5t44 -27t29 -42t10.5 -54.5t-10.5 -55t-29 -43t-43.5 -28t-54 -11t-54 8t-43.5 26t-29.5 41t-11 54z" />
|
46
|
-
<glyph unicode="<" horiz-adv-x="1020" d="M50 543l34 193l879 372l-45 -254l-612 -228l534 -224l-41 -232z" />
|
47
|
-
<glyph unicode="=" horiz-adv-x="1122" d="M98 356l35 201h838l-36 -201h-837zM171 780l36 202h837l-35 -202h-838z" />
|
48
|
-
<glyph unicode=">" horiz-adv-x="1044" d="M47 159l44 250l640 232l-561 227l40 229l775 -373l-34 -193z" />
|
49
|
-
<glyph unicode="?" horiz-adv-x="976" d="M149 1093q9 93 48 165t101 121.5t142.5 74.5t171.5 23q85 -2 155.5 -28.5t119.5 -75t73 -118.5t17 -158q-6 -71 -35 -130.5t-72 -111t-95 -96.5t-104 -87q-60 -49 -91.5 -108.5t-42.5 -135.5l-218 -1q6 63 20.5 116t39.5 99.5t61 88t84 82.5q33 28 67.5 57.5t64 63 t51 71.5t27.5 85q5 38 0 71.5t-22 58.5t-45.5 40t-69.5 16q-43 1 -78.5 -12t-62.5 -37.5t-45 -58.5t-26 -74zM239 113q0 29 9.5 53.5t27.5 43t42.5 29t53.5 11.5q28 1 52.5 -8.5t42.5 -26.5t28.5 -41t10.5 -53t-9.5 -53.5t-27.5 -42t-42.5 -28t-53.5 -10.5q-28 -1 -52.5 8 t-42.5 25.5t-28.5 40t-10.5 52.5z" />
|
50
|
-
<glyph unicode="@" horiz-adv-x="1787" d="M52 234.5q-2 113.5 19 231.5q21 123 66 242t110.5 226t150.5 197.5t188 156t222.5 102t253.5 34.5q129 -2 230.5 -37.5t176 -97.5t123.5 -146.5t74.5 -184t27.5 -210.5t-17 -225q-11 -64 -30.5 -129.5t-49 -126.5t-69.5 -114.5t-90.5 -92.5t-113 -61t-136.5 -20 q-77 2 -136 39t-79 115q-26 -31 -55.5 -59t-63 -49t-71 -33.5t-80.5 -11.5q-57 1 -97 22t-67 55t-41.5 77.5t-19.5 91.5t-2.5 96.5t10.5 91.5q11 62 33 129.5t55 132t76 122.5t96 101t116.5 68t137.5 24q85 -2 151.5 -30.5t133.5 -76.5l-134 -567q-5 -27 -8.5 -60.5 t1.5 -63.5t23 -51t56 -23q48 -2 87 16.5t70 51t54.5 74.5t41 87.5t28.5 90t18 81.5q16 94 19.5 186t-10.5 175.5t-47.5 154.5t-90.5 123.5t-139 83t-194 32.5q-113 2 -212 -29t-183 -87.5t-153 -134t-122 -168t-89.5 -190.5t-55.5 -201q-18 -92 -21.5 -184t10 -176.5 t46.5 -158t89.5 -128t137.5 -86t192 -32.5q88 -1 173 18.5t166 54.5l27 -140q-40 -25 -85 -42t-92.5 -26.5t-95.5 -13.5t-94 -4q-133 1 -237 37t-180.5 98.5t-126.5 148.5t-75 188t-27 215.5zM669 307q-1 -30 2 -59t14 -52t31.5 -38t53.5 -16q34 -2 66.5 15.5t59.5 44.5 t47 59t31 61l129 497q-21 8 -42 13t-44 6q-54 2 -97.5 -17t-77.5 -52t-60.5 -77t-45.5 -92t-32 -96t-21 -90q-4 -21 -8.5 -49t-5.5 -58z" />
|
51
|
-
<glyph unicode="A" horiz-adv-x="1332" d="M-92 0l786 1456h222l282 -1456h-248l-57 339h-545l-174 -339h-266zM452 543h408l-99 602z" />
|
52
|
-
<glyph unicode="B" horiz-adv-x="1263" d="M39 0l253 1456l470 -1q91 -2 174 -23.5t143.5 -67.5t93.5 -118q27 -58 27 -136q0 -19 -2 -39q-5 -60 -26 -108.5t-55.5 -87.5t-80 -69.5t-97.5 -53.5q51 -18 86.5 -51t58 -76t30.5 -93q6 -37 6 -73v-27q-8 -113 -55.5 -194.5t-122.5 -135.5q-74 -53 -170 -78 q-92 -24 -192 -24h-8h-533zM321 202l259 -1q55 0 105 15t90 44t66.5 72t34.5 101q3 24 3 46q0 70 -34 115q-45 58 -149 62l-296 1zM432 843l227 -1q52 0 101.5 12.5t88.5 39t65.5 67t34.5 96.5q3 20 3 38q0 29 -7 51q-11 36 -37 59t-65 34t-88 12l-252 1z" />
|
53
|
-
<glyph unicode="C" horiz-adv-x="1307" d="M105 502q-1 22 -1 44q0 61 8 122l17 118q13 90 41.5 177t71 164.5t100 142.5t129 111.5t157.5 71.5q79 23 170 23h15q115 -2 202.5 -39.5t147.5 -103.5t92 -157.5t36 -201.5h-245q-2 64 -14 117.5t-40 93t-74.5 62.5t-116.5 25h-13q-94 0 -164 -40q-74 -42 -124.5 -112 t-79.5 -157.5t-42 -174.5l-18 -121q-6 -48 -10 -102q-2 -24 -1 -47q1 -30 3 -60q4 -53 17.5 -101.5t41.5 -86.5t71.5 -61.5t107.5 -25.5h20q64 1 114 17q58 20 102 57t74 92t48 124l244 2q-19 -117 -73.5 -210t-135.5 -157t-185 -97q-98 -31 -207 -31h-13q-95 2 -170 30.5 t-130.5 77t-92 114t-56.5 141.5t-24 159z" />
|
54
|
-
<glyph unicode="D" horiz-adv-x="1308" d="M39 0l252 1456l404 -1q147 -3 254 -60.5t173.5 -152t92.5 -218.5q16 -77 17 -159q0 -50 -7 -102l-10 -72q-21 -149 -83.5 -276t-160.5 -219t-227.5 -144t-283.5 -52h-421zM321 202l146 -1q110 0 196 37.5t148.5 104t101 156t53.5 192.5l10 75q8 59 8 118q0 28 -2 54 q-5 86 -36 154t-93 112t-165 47l-185 1z" />
|
55
|
-
<glyph unicode="E" horiz-adv-x="1133" d="M39 0l252 1456h919l-36 -204h-671l-70 -402h581l-35 -200h-580l-78 -448h678l-35 -202h-925z" />
|
56
|
-
<glyph unicode="F" horiz-adv-x="1101" d="M39 0l252 1456h900l-36 -204h-652l-75 -433h569l-36 -202h-568l-107 -617h-247z" />
|
57
|
-
<glyph unicode="G" horiz-adv-x="1362" d="M112 506q-2 26 -2 53q0 59 8 120l13 96q13 93 40.5 181.5t69.5 167t99 144.5t129 112.5t159 71.5q81 24 175 24h15q111 -2 197.5 -34.5t147 -93t95 -146.5t42.5 -194l-239 1q-5 58 -21 106t-46 82.5t-75 54t-107 21.5h-13q-62 0 -114 -17q-57 -19 -102 -54.5t-79 -84 t-58.5 -104.5t-40.5 -116.5t-25 -119.5l-14 -99q-7 -52 -8 -108q-1 -10 -1 -19q0 -47 7 -93q7 -54 25 -103.5t50 -87t79 -60.5t114 -24h15q73 0 138 17q72 19 135 70l54 285h-292l34 192h535l-85 -558q-47 -61 -111.5 -101.5t-138.5 -64.5t-152 -34q-71 -9 -137 -9h-13 q-99 1 -177 29t-136.5 76.5t-98.5 114.5t-62.5 143t-27.5 163z" />
|
58
|
-
<glyph unicode="H" horiz-adv-x="1421" d="M39 0l253 1456h247l-106 -606h630l105 606h247l-253 -1456h-246l112 647h-630l-112 -647h-247z" />
|
59
|
-
<glyph unicode="I" horiz-adv-x="571" d="M53 0l253 1456h246l-253 -1456h-246z" />
|
60
|
-
<glyph unicode="J" horiz-adv-x="1113" d="M8 416l246 -1q-1 -14 -1 -27q0 -34 5 -64q8 -42 28.5 -73t56 -49.5t89.5 -19.5h10q51 0 92 18q46 20 79 54.5t54 81t29 98.5l174 1022h246l-174 -1021q-15 -104 -59 -189t-112 -145t-158 -92q-85 -30 -184 -30h-12q-101 2 -179.5 32.5t-131 87t-78.5 136.5 q-21 67 -21 148q0 16 1 33z" />
|
61
|
-
<glyph unicode="K" horiz-adv-x="1262" d="M39 0l253 1456h247l-117 -669l152 158l503 511h316l-648 -657l409 -799h-276l-315 627l-200 -183l-77 -444h-247z" />
|
62
|
-
<glyph unicode="L" horiz-adv-x="1085" d="M39 0l253 1456h247l-218 -1254h642l-36 -202h-888z" />
|
63
|
-
<glyph unicode="M" horiz-adv-x="1749" d="M39 0l253 1456h314l213 -1114l599 1114h324l-252 -1456h-246l85 493l129 607l-600 -1100h-178l-223 1133l-91 -666l-81 -467h-246z" />
|
64
|
-
<glyph unicode="N" horiz-adv-x="1420" d="M39 0l253 1456h239l455 -1047l182 1047h246l-253 -1456h-239l-455 1043l-181 -1043h-247z" />
|
65
|
-
<glyph unicode="O" horiz-adv-x="1382" d="M112 517q-1 26 -2 53q0 59 7 117l10 75q12 91 40 180.5t71.5 169.5t101.5 147.5t131 116.5q73 50 161 76q81 25 174 24h14q99 -2 175.5 -32t133 -80.5t94.5 -118.5t58 -146.5t24 -164.5q1 -24 1 -48q0 -61 -7 -122l-10 -73q-19 -138 -72.5 -267t-140.5 -229t-207 -159 q-114 -56 -257 -56h-15q-98 2 -174.5 31.5t-133.5 79.5t-94.5 117.5t-58 145.5t-24.5 163zM354 584q-1 -18 0 -35q0 -38 4 -76q6 -55 21 -105.5t44.5 -90t75 -64t110.5 -26.5h13q64 0 114 18q56 20 101.5 56t80 86t59 106.5t40.5 117t24 119.5l11 77q6 50 9 106q1 20 1 39 q0 36 -4 72q-6 54 -20.5 104.5t-44 89.5t-75 63t-111.5 26h-12q-61 0 -113 -18q-56 -20 -102 -56t-80.5 -85.5t-60 -106t-42 -117t-24.5 -118.5l-10 -77q-7 -49 -9 -105z" />
|
66
|
-
<glyph unicode="P" horiz-adv-x="1280" d="M39 0l253 1456l526 -1q101 -2 187 -33.5t147.5 -89.5t92.5 -142q24 -65 24 -142q0 -23 -2 -47q-10 -118 -60.5 -205t-128.5 -144t-178.5 -84.5t-211.5 -27.5l-308 1l-94 -541h-247zM415 744l283 -2q62 0 117 16t97.5 48t70.5 80.5t37 113.5q3 22 3 43q-1 81 -45 135 q-56 68 -167 73l-308 1z" />
|
67
|
-
<glyph unicode="Q" horiz-adv-x="1382" d="M104 520q-1 25 -1 49q0 60 7 121l10 74q12 91 40.5 179.5t71.5 168.5t101.5 147.5t131.5 116.5t160 76q81 24 174 24h14q99 -2 176 -31.5t134 -80t94.5 -118.5t58 -146.5t24.5 -163.5q1 -25 1 -49q0 -62 -7 -123l-10 -73q-13 -92 -39.5 -178.5t-68.5 -164t-101.5 -144 t-137.5 -118.5l208 -200l-174 -138l-256 244q-32 -5 -63.5 -8.5t-63.5 -2.5q-98 1 -174 31t-132.5 80.5t-94.5 118.5t-58.5 146.5t-24.5 162.5zM348 584v-35q0 -38 4 -75q5 -55 20.5 -106t45 -90.5t75 -64t110.5 -26.5h18q59 0 109 17q56 20 101.5 56.5t80 86t59 106.5 t40.5 117.5t25 119.5l11 78q6 50 9 106q1 20 1 39q0 36 -3 71q-6 55 -21.5 105.5t-45 89t-75.5 62.5t-112 26h-12q-62 0 -114 -18q-56 -20 -101 -56.5t-80 -86t-60 -105.5t-41.5 -116.5t-24.5 -118.5l-10 -77q-6 -49 -9 -105z" />
|
68
|
-
<glyph unicode="R" horiz-adv-x="1250" d="M39 0l253 1456l482 -1q101 -2 187 -29t147 -80q62 -54 93 -134q24 -62 24 -141q0 -23 -2 -47q-6 -76 -32 -139t-68.5 -113.5t-100 -89t-126.5 -65.5l215 -602l-1 -15h-262l-186 561h-278l-98 -561h-247zM418 764l239 -2q60 0 114 16t96.5 47.5t70.5 78.5t36 109 q3 24 3 46q0 79 -43 127q-55 60 -167 65l-264 1z" />
|
69
|
-
<glyph unicode="S" horiz-adv-x="1209" d="M43 441l247 -1v-19q0 -51 14 -93q17 -48 52 -80.5t85 -49.5t113 -18h8q46 0 91 10q49 11 89.5 35t68 62.5t35.5 93.5q2 16 2 31q0 38 -14 67q-20 40 -58 68t-85.5 46.5t-93.5 34.5q-51 18 -102 40t-97.5 50t-86.5 62.5t-68 77t-43 94.5q-12 41 -12 87q0 13 1 26 q7 104 58 182t128.5 129.5t172.5 75.5q91 24 182 24h7q99 -2 184.5 -33.5t147.5 -89t97 -139.5q32 -75 33 -168q0 -8 -1 -16l-246 1q1 11 1 21q0 100 -54 157q-59 63 -175 65h-8q-48 0 -92 -11q-48 -12 -88 -37.5t-66.5 -65.5t-33.5 -94q-5 -35 5 -63t29 -50.5t45.5 -39.5 t55.5 -31t59 -24.5t56 -19.5q82 -28 158 -66t134 -92t90 -126q26 -59 26 -136q0 -17 -1 -34q-8 -107 -58.5 -184t-128.5 -126q-78 -50 -172 -73q-87 -21 -175 -21h-15q-103 1 -195.5 32.5t-161.5 90t-108 143.5q-36 79 -36 179v16z" />
|
70
|
-
<glyph unicode="T" horiz-adv-x="1216" d="M156 1252l36 204h1122l-36 -204h-440l-217 -1252h-246l218 1252h-437z" />
|
71
|
-
<glyph unicode="U" horiz-adv-x="1305" d="M104 482l165 974h246l-165 -975q-4 -31 -4 -59q0 -30 4 -58q8 -54 35.5 -93.5t73.5 -63t114 -25.5h13q64 0 117 18q58 20 101.5 60t71 96.5t38.5 125.5l166 974h246l-165 -973q-17 -117 -68.5 -211t-130.5 -160t-181 -101q-96 -33 -207 -33h-13q-112 2 -202 38.5 t-151 102t-89 157.5q-19 63 -19 136q0 34 4 70z" />
|
72
|
-
<glyph unicode="V" horiz-adv-x="1295" d="M155 1456h262l176 -1137l536 1137h280l-736 -1456h-239z" />
|
73
|
-
<glyph unicode="W" horiz-adv-x="1758" d="M183 1456h239l48 -1089l439 1089h207l95 -1094l388 1094h251l-554 -1456h-236l-101 1060l-440 -1060h-238z" />
|
74
|
-
<glyph unicode="X" horiz-adv-x="1267" d="M-61 0l561 745l-311 711h272l214 -525l378 525h298l-549 -733l318 -723h-274l-220 533l-388 -533h-299z" />
|
75
|
-
<glyph unicode="Y" horiz-adv-x="1221" d="M161 1456h261l205 -688l444 688h286l-642 -933l-91 -523h-248l96 549z" />
|
76
|
-
<glyph unicode="Z" horiz-adv-x="1206" d="M-17 0l28 175l891 1077h-719l33 204h1025l-27 -171l-894 -1083h748l-32 -202h-1053z" />
|
77
|
-
<glyph unicode="[" horiz-adv-x="554" d="M-17 -324l313 2002h397l-30 -190h-159l-254 -1623h160l-30 -189h-397z" />
|
78
|
-
<glyph unicode="\" horiz-adv-x="840" d="M172 1456h224l316 -1581h-224z" />
|
79
|
-
<glyph unicode="]" horiz-adv-x="554" d="M-134 -324l30 189h162l254 1623h-163l31 190h399l-313 -2002h-400z" />
|
80
|
-
<glyph unicode="^" horiz-adv-x="859" d="M68 729l416 727h167l163 -727h-189l-93 459l-253 -459h-211z" />
|
81
|
-
<glyph unicode="_" horiz-adv-x="906" d="M-135 -191l34 191h891l-34 -191h-891z" />
|
82
|
-
<glyph unicode="`" horiz-adv-x="650" d="M202 1536h254l142 -303h-181z" />
|
83
|
-
<glyph unicode="a" horiz-adv-x="1085" d="M37 295q5 105 54 175t123.5 113t165.5 61t181 18l154 -2l14 74q3 20 3 38t-3 34q-6 34 -24 58.5t-47.5 38.5t-71.5 15h-7q-32 0 -63 -8q-34 -10 -61 -28.5t-46.5 -46.5t-26.5 -64l-237 -2q6 85 50.5 148.5t111.5 105t147 61.5q76 19 149 18h7q83 -2 152.5 -27.5t118 -73 t72.5 -115.5q17 -50 17 -110q0 -22 -2 -46l-79 -481q-9 -57 -12 -116q0 -8 -1 -17q0 -50 16 -98l-1 -18h-235q-8 26 -9.5 50.5t-0.5 50.5q-60 -55 -132 -89q-68 -32 -148 -32h-9q-68 1 -127.5 24t-103.5 64q-44 40 -68 98q-21 51 -21 113v16zM279 320q-1 -12 -1 -23 q0 -51 30 -83q38 -38 104 -40h8q71 0 131 34q64 36 109 95l37 205l-113 1q-48 0 -99 -8.5t-94 -30t-74 -58t-38 -92.5z" />
|
84
|
-
<glyph unicode="b" horiz-adv-x="1128" d="M16 0l266 1536h238l-108 -559q58 63 129 95q67 31 148 30h10q74 -2 129 -26t94.5 -64t64 -93t37 -113t14.5 -124v-25q0 -50 -5 -99l-2 -22q-8 -67 -26 -134.5t-46 -130t-67 -117t-90.5 -94t-115.5 -61.5q-59 -20 -129 -20h-13q-84 2 -154.5 35.5t-118.5 103.5l-38 -118 h-217zM308 318q44 -136 189 -141h9q68 1 118 31q52 32 87.5 84.5t55 117t27.5 127.5l2 21q7 56 7 115q1 57 -15 107q-16 52 -53.5 87t-106.5 37h-8q-75 0 -131 -36q-59 -38 -103 -102z" />
|
85
|
-
<glyph unicode="c" horiz-adv-x="1050" d="M65 520l4 36q13 111 56 211.5t113 176.5q72 75 168 118q90 40 200 40h16q90 -2 161 -33t120 -85.5t75 -128.5q25 -71 25 -156v-6h-222q0 42 -10 80t-31 67.5t-54 47.5t-79 20h-13q-67 0 -115 -28q-53 -32 -89 -83t-56.5 -114.5t-28.5 -126.5l-4 -35q-4 -36 -6 -75 q-1 -13 0 -26q0 -26 2 -51q4 -38 14.5 -73t31.5 -62t53.5 -43.5t79.5 -17.5h6q40 0 76 12q39 13 70 37.5t52.5 58.5t31.5 76l224 1q-9 -86 -52 -156.5t-107.5 -120.5t-144.5 -77q-75 -25 -153 -25h-12q-116 3 -197 48.5t-130 120.5q-50 76 -68 172q-11 60 -11 122q0 39 4 78 z" />
|
86
|
-
<glyph unicode="d" horiz-adv-x="1131" d="M62 400q-1 18 -1 36q0 43 4 85l3 21q8 67 26 135t47 131t69 117.5t92 94.5t116 62q59 21 129 21h13q78 -2 144 -32t114 -91l104 556h238l-267 -1536h-212l16 112q-60 -65 -133 -100q-69 -33 -153 -33h-10q-72 1 -126 25.5t-93.5 65.5t-65 94.5t-39 113.5t-15.5 122z M298 449v-21q0 -28 2 -54q4 -38 14.5 -73t30.5 -62t51 -44t76 -18h8q74 -1 128 35q58 38 101 98l81 465q-23 61 -69.5 94t-112.5 35h-8q-70 0 -120 -31q-54 -33 -89.5 -85.5t-56 -117.5t-28.5 -127l-3 -22q-3 -34 -5 -72z" />
|
87
|
-
<glyph unicode="e" horiz-adv-x="1076" d="M66 500l5 41q12 109 55.5 211t114.5 181t167 125q91 44 202 44h14q114 -3 191 -48.5t122 -120t59 -169.5q7 -49 7 -100q0 -47 -6 -96l-16 -104h-680q-2 -18 -1 -36q0 -36 6 -70q10 -52 36 -92t69 -64.5t104 -26.5h13q80 1 144 35q70 38 127 98l119 -126 q-36 -52 -83.5 -90.5t-102.5 -63.5t-116 -37q-56 -11 -113 -11h-9q-111 2 -195.5 44t-139.5 112.5t-79 164.5q-17 68 -16 142q0 28 2 57zM322 642l449 -2l5 22q4 26 4 51q0 21 -2 39q-6 44 -26 77.5t-55.5 55t-86.5 23.5h-10q-54 0 -96 -21q-46 -23 -80.5 -61t-59 -86.5 t-42.5 -97.5z" />
|
88
|
-
<glyph unicode="f" horiz-adv-x="714" d="M95 902l32 180h160l14 102q11 86 45 156t87.5 119.5t126.5 75.5q69 25 154 25h7q36 -1 71 -6.5t70 -13.5l-26 -190q-22 5 -44 7.5t-45 2.5h-4q-82 0 -135 -46q-54 -47 -69 -130l-15 -102h214l-32 -180h-213l-157 -902h-237l157 902h-161z" />
|
89
|
-
<glyph unicode="g" horiz-adv-x="1136" d="M-9 -243l126 143q45 -62 107.5 -97.5t140.5 -37.5h12q55 0 101 16q52 18 91.5 51.5t66.5 81.5t40 107l17 76q-60 -58 -129 -89q-66 -28 -145 -28h-10q-72 1 -127 25.5t-94.5 64.5t-66 93.5t-40 113t-16.5 121.5q-1 21 -1 42q0 41 4 81l2 21q12 102 48 203t97 181.5 t149 129.5q85 47 195 47h9q82 -2 151.5 -33t117.5 -98l37 111l216 -1l-179 -1052q-15 -106 -61 -191.5t-116.5 -145.5t-162.5 -91q-84 -29 -181 -29h-19q-54 1 -108 13.5t-103.5 36t-92.5 57t-76 77.5zM300 410q2 -59 19.5 -110t55.5 -85.5t105 -36.5h12q69 0 122 32 q57 35 102 93l85 478q-26 60 -72.5 90.5t-112.5 32.5h-8q-69 0 -120 -31q-55 -33 -92 -85.5t-58.5 -117.5t-30.5 -128l-2 -21q-5 -41 -5 -87v-24z" />
|
90
|
-
<glyph unicode="h" horiz-adv-x="1113" d="M13 0l266 1536h238l-110 -573q63 65 139 103q73 36 159 35h9q88 -1 147 -35t92 -90t43 -128q6 -40 6 -83q0 -34 -4 -69l-116 -696h-237l118 699q3 25 3 49q0 16 -2 31q-4 37 -19.5 64.5t-45.5 43.5t-78 17h-4q-73 0 -129 -36q-58 -37 -103 -94l-135 -774h-237z" />
|
91
|
-
<glyph unicode="i" horiz-adv-x="517" d="M31 0l188 1082h237l-188 -1082h-237zM253 1359q0 29 10 53.5t27.5 42.5t42 28t53.5 11h6q24 0 46 -8q24 -9 42.5 -26t29.5 -40.5t11 -52.5t-10 -53t-28 -41.5t-42.5 -27.5t-52.5 -11h-6q-24 0 -46 8q-24 9 -42.5 25.5t-29.5 39.5t-11 52z" />
|
92
|
-
<glyph unicode="j" horiz-adv-x="508" d="M-244 -421l20 192q21 -5 41.5 -8t42.5 -3q34 0 60 10.5t44.5 29.5t30 45.5t17.5 58.5l202 1178h237l-199 -1177q-10 -77 -37 -141t-71.5 -109.5t-107.5 -70.5q-61 -24 -139 -24h-6q-35 1 -68.5 6t-66.5 13zM243 1359q0 29 9.5 53.5t27 42.5t42 28t53.5 11h6q25 0 47 -8 q25 -9 43 -26t28.5 -40.5t10.5 -52.5t-10 -53t-28 -41.5t-42.5 -27.5t-52.5 -11q-28 0 -52.5 8.5t-42.5 25t-28.5 39.5t-10.5 52z" />
|
93
|
-
<glyph unicode="k" horiz-adv-x="1047" d="M17 0l266 1536h237l-152 -872l83 86l344 332h303l-480 -462l316 -620h-257l-230 462l-134 -119l-59 -343h-237z" />
|
94
|
-
<glyph unicode="l" horiz-adv-x="517" d="M31 0l267 1536h237l-267 -1536h-237z" />
|
95
|
-
<glyph unicode="m" horiz-adv-x="1739" d="M16 0l187 1082l222 1l-21 -115q66 68 146 102q76 33 164 32h10q43 -1 84 -10.5t75.5 -30t61 -51.5t40.5 -74q69 78 153 123q81 43 182 43h9q89 -2 149 -34.5t94.5 -87t45.5 -126.5q6 -42 7 -86q0 -33 -4 -67l-117 -701h-237l118 703q3 23 3 44q0 19 -2 37q-4 37 -21 63 t-48 41t-79 16h-6q-37 0 -70 -11q-35 -12 -63.5 -33.5t-51.5 -51.5t-41 -65l-3 -22l-124 -721h-238l118 700q3 23 3 44q0 19 -2 36q-4 37 -21.5 64t-48.5 43t-78 17h-4q-69 0 -122 -30q-54 -32 -96 -89l-137 -785h-237z" />
|
96
|
-
<glyph unicode="n" horiz-adv-x="1115" d="M13 0l187 1082l223 1l-24 -127q64 68 144 108q76 38 168 38h9q88 -2 145.5 -35.5t90 -89t42.5 -127.5q5 -39 5 -81q0 -35 -4 -70l-117 -699h-237l118 702q3 24 3 46q0 18 -2 34q-4 36 -19.5 63t-45.5 42.5t-77 16.5h-4q-74 0 -130 -37q-58 -38 -103 -96l-135 -771h-237z " />
|
97
|
-
<glyph unicode="o" horiz-adv-x="1141" d="M66 523l2 21q13 112 57.5 214.5t116.5 179.5t170 122q92 42 205 42h15q115 -3 198 -49.5t134 -122t71 -173.5q13 -63 13 -129q0 -36 -4 -74l-2 -22q-14 -112 -59 -213.5t-117 -177.5t-170 -120q-92 -41 -204 -41h-15q-114 3 -197 48.5t-134 120.5t-71 172q-13 63 -13 128 q0 37 4 74zM300 408q2 -60 21.5 -112t59.5 -86.5t110 -36.5h12q66 -1 117 29q55 32 93.5 84.5t60.5 117.5t31 128l2 21q4 36 5 76v12q0 34 -4 67q-6 39 -19 74.5t-35.5 63t-55.5 44t-80 18.5h-9q-70 0 -121 -31q-55 -33 -93 -86t-60 -118.5t-30 -128.5l-2 -21q-4 -39 -4 -80 q0 -17 1 -35z" />
|
98
|
-
<glyph unicode="p" horiz-adv-x="1128" d="M-57 -416l260 1498l217 1l-18 -112q60 65 133 99q69 32 152 32h10q74 -1 129.5 -25.5t94.5 -64.5t63.5 -93.5t37 -113.5t14.5 -123v-26q0 -50 -5 -98l-2 -21q-8 -66 -26 -133.5t-46 -130.5t-67.5 -117t-90.5 -94t-115 -62q-58 -21 -128 -21h-12q-78 2 -146.5 30.5 t-119.5 89.5l-97 -515h-238zM305 298q23 -62 70 -92.5t113 -32.5h8q69 0 120 31q54 34 90 87t57 118.5t29 127.5l3 21q4 34 5 72v16q0 31 -3 62q-4 38 -15.5 72.5t-32 62t-52 44t-76.5 17.5h-8q-70 0 -123 -32q-57 -34 -101 -91z" />
|
99
|
-
<glyph unicode="q" horiz-adv-x="1138" d="M62 399q-1 19 -1 37q0 44 4 86l3 21q8 68 26 136.5t47 131t69 117t92.5 94t117.5 61.5q59 20 130 20h13q80 -2 148 -33t116 -96l39 109l214 -1l-260 -1498h-237l98 509q-58 -56 -127 -85q-65 -28 -140 -28h-10q-72 1 -127.5 25t-95 64.5t-65 94t-39 113t-15.5 122.5z M298 450v-16q0 -31 3 -61q4 -38 14.5 -73.5t31 -63t51.5 -44.5t76 -18h12q67 0 118 32q56 34 101 90l88 494q-26 57 -72.5 86.5t-109.5 31.5h-8q-70 0 -121 -32q-53 -33 -89.5 -86t-57.5 -118.5t-29 -128.5l-3 -21q-4 -34 -5 -72z" />
|
100
|
-
<glyph unicode="r" horiz-adv-x="708" d="M16 0l187 1082l225 1l-24 -123q24 32 51 59t59 46t68 29q33 10 71 10h7q23 0 45.5 -4.5t45.5 -10.5l-27 -229q-23 5 -46.5 7.5t-46.5 2.5h-9q-74 0 -132 -31q-62 -33 -107 -98l-130 -741h-237z" />
|
101
|
-
<glyph unicode="s" horiz-adv-x="1035" d="M29 342l229 -1q2 -87 52 -132t137 -46q34 0 69.5 7t66 23t52 42.5t27.5 64.5q2 11 2 22q0 26 -12 44q-18 26 -47 43t-64.5 26.5t-65.5 17.5q-60 15 -122 38.5t-111 60.5t-79 89q-27 47 -27 113v13q3 84 44 147t103.5 105.5t138.5 62.5q73 20 145 20h7q79 -1 149.5 -24 t123.5 -66.5t84 -107.5q30 -62 30 -143v-5l-235 1v7q0 70 -41 110q-43 42 -118 45q-34 0 -67.5 -8.5t-61.5 -26t-47.5 -44t-24.5 -62.5q-2 -10 -1 -18q1 -26 13 -44q18 -24 46 -39t62 -23.5t61 -15.5q64 -17 127.5 -40t113.5 -60.5t80 -91.5q27 -49 27 -118v-14 q-4 -88 -47 -152t-108.5 -105t-145.5 -60q-72 -17 -142 -17h-15q-81 1 -155 25.5t-130 70.5t-90 112q-33 65 -33 149v5z" />
|
102
|
-
<glyph unicode="t" horiz-adv-x="671" d="M59 902l32 180h172l46 263h238l-46 -263h185l-31 -180h-186l-102 -606q-3 -25 -1 -45.5t10.5 -35t25.5 -23t44 -9.5q21 0 42 2.5t42 6.5l-16 -190q-74 -21 -149 -21q-67 1 -114 25t-75.5 65t-39.5 96q-7 36 -7 74q0 21 2 43l101 618h-173z" />
|
103
|
-
<glyph unicode="u" horiz-adv-x="1114" d="M82 382l117 700h237l-118 -703q-2 -21 -2 -42q0 -15 1 -31q3 -36 16.5 -63.5t39.5 -45t69 -19.5h14q73 0 130 30q63 32 110 96l136 778h237l-187 -1082h-222l21 107q-61 -65 -139 -97q-73 -30 -158 -30h-11q-88 2 -147.5 35t-93.5 88t-46 127q-7 42 -7 88q0 31 3 64z" />
|
104
|
-
<glyph unicode="v" horiz-adv-x="993" d="M100 1082h238l104 -771l342 771h253l-533 -1082h-206z" />
|
105
|
-
<glyph unicode="w" horiz-adv-x="1486" d="M119 1082h224l41 -734l342 734h179l88 -745l297 745h238l-474 -1082h-195l-95 740l-350 -740h-196z" />
|
106
|
-
<glyph unicode="x" horiz-adv-x="1009" d="M-71 0l427 560l-233 522h248l140 -354l255 354h277l-414 -544l241 -538h-248l-151 369l-266 -369h-276z" />
|
107
|
-
<glyph unicode="y" horiz-adv-x="977" d="M-75 -420l20 188q11 -2 21.5 -3t21.5 -1h13q78 0 131 34q56 36 94 113l55 108l-181 1063h246l94 -732l340 732h262l-630 -1247q-27 -56 -62 -106t-80 -88t-100 -60q-53 -21 -116 -21h-6q-32 1 -62.5 6.5t-60.5 13.5z" />
|
108
|
-
<glyph unicode="z" horiz-adv-x="1009" d="M-15 0l27 169l637 717h-516l31 196h823l-25 -164l-644 -724h551l-31 -194h-853z" />
|
109
|
-
<glyph unicode="{" horiz-adv-x="676" d="M48 527l17 178q104 5 159.5 65t69.5 159l28 203q25 187 130.5 301t285.5 167l35 -143q-55 -20 -94 -52.5t-66 -75t-43 -93t-24 -104.5l-27 -203q-14 -110 -68.5 -187t-152.5 -128q73 -55 100 -136t18 -169l-27 -204q-6 -49 -6.5 -97.5t11.5 -92t39.5 -78.5t77.5 -57 l-50 -139q-81 26 -141 70.5t-97.5 104t-51.5 133t-5 157.5l28 204q5 45 1 83.5t-20.5 67t-47.5 45.5t-79 21z" />
|
110
|
-
<glyph unicode="|" horiz-adv-x="509" d="M32 -270l270 1726h164l-270 -1726h-164z" />
|
111
|
-
<glyph unicode="}" horiz-adv-x="676" d="M-103 -219q55 19 94 52t66 75.5t43 92.5t24 105l28 203q14 112 70.5 188.5t158.5 125.5q-39 26 -65.5 60t-41.5 74t-19.5 83.5t0.5 88.5l27 204q6 49 6.5 97.5t-11.5 92t-39.5 78.5t-77.5 57l55 137q163 -54 235 -174.5t54 -288.5l-28 -204q-5 -46 -1 -84.5t20.5 -67 t47.5 -46t80 -21.5l-18 -178q-103 -5 -159 -64t-70 -158l-28 -203q-25 -188 -130.5 -302.5t-285.5 -166.5z" />
|
112
|
-
<glyph unicode="~" horiz-adv-x="1330" d="M91 425q6 75 31.5 146t70.5 126t109 88t147 31t148 -40.5t121 -95.5q16 -16 33 -32.5t36 -29.5t40 -21.5t45 -8.5q41 0 71.5 17.5t52 46t34.5 63.5t19 70l177 3q-5 -75 -30 -147.5t-69.5 -130t-108.5 -92t-148 -32.5q-83 2 -147.5 41t-120.5 96q-16 16 -33 32t-36 29 t-40.5 21.5t-45.5 8.5q-41 1 -70 -15.5t-49.5 -43.5t-32 -61.5t-17.5 -68.5h-187z" />
|
113
|
-
<glyph unicode="¡" horiz-adv-x="536" d="M-26 -364l201 1026h204l-154 -1026h-251zM194 967q0 29 10 53.5t28 42.5t42 28t53 11q28 1 52.5 -8t42.5 -26t29 -41t11 -52q0 -29 -10 -53.5t-27.5 -42.5t-42 -28.5t-53.5 -11.5t-53.5 8t-42.5 26t-28.5 41t-10.5 53z" />
|
114
|
-
<glyph unicode="¢" horiz-adv-x="1125" d="M85 520l4 36q12 101 49 193.5t96.5 165t140.5 121t182 61.5l40 221h195l-41 -231q65 -18 116 -54t85.5 -87t52.5 -115.5t18 -137.5h-222q0 42 -10 80t-31 67.5t-54 47.5t-79 20q-75 3 -128 -28.5t-89 -82.5t-56.5 -114.5t-28.5 -126.5l-4 -35q-4 -36 -6 -75t2 -77 t14.5 -73t31.5 -62t53.5 -43.5t79.5 -17.5q43 -1 82 12t70 37.5t52.5 58.5t31.5 76l224 1q-8 -77 -43.5 -141.5t-89 -113t-121.5 -79t-141 -40.5l-40 -229h-196l42 242q-83 23 -140.5 74t-92 121t-46.5 154t-3 174z" />
|
115
|
-
<glyph unicode="£" horiz-adv-x="1179" d="M-10 0l36 201l69 -2q33 12 55 35t36.5 52.5t23 62t13.5 64.5l24 185h-157l35 199h151l30 242q11 99 53 180t108 139t152.5 89t186.5 28q91 -2 162.5 -31.5t120 -82t72.5 -126t20 -163.5l-239 1q2 42 -5.5 78t-26.5 63t-50.5 43t-77.5 18q-50 1 -90 -18.5t-69 -52.5 t-47 -76t-24 -88l-30 -243h302l-35 -199h-295l-22 -175q-9 -66 -35 -121t-71 -103l680 3l-36 -202h-1020z" />
|
116
|
-
<glyph unicode="¤" horiz-adv-x="1404" d="M8 129l154 128q-27 85 -37.5 171t0.5 174q14 106 57.5 200t113.5 174l-115 155l151 133l110 -143q80 53 168 83.5t185 28.5q89 -1 171 -30t150 -86l170 148l121 -156l-169 -142q29 -86 41 -173.5t1 -178.5q-13 -102 -52.5 -191.5t-104.5 -167.5l111 -149l-152 -134 l-102 132q-82 -58 -174.5 -92.5t-195.5 -32.5q-91 2 -176 33t-154 93l-152 -132zM306 599q-11 -78 4 -155t55 -138.5t103.5 -100.5t149.5 -42q93 -3 175.5 35t146 101.5t105.5 146.5t54 170q11 78 -4 154.5t-55 137.5t-103.5 99.5t-149.5 41.5q-93 3 -175.5 -34.5 t-146.5 -100.5t-105.5 -145t-53.5 -170z" />
|
117
|
-
<glyph unicode="¥" horiz-adv-x="1221" d="M80 301l27 151h343l24 138h-344l27 152h280l-258 714h261l194 -634l416 634h286l-505 -714h254l-27 -152h-338l-24 -138h339l-27 -151h-338l-52 -301h-247l53 301h-344z" />
|
118
|
-
<glyph unicode="¦" horiz-adv-x="503" d="M-20 -270l139 795h223l-138 -795h-224zM148 698l132 758h224l-132 -758h-224z" />
|
119
|
-
<glyph unicode="§" horiz-adv-x="1244" d="M-33 -49h240q-3 -58 13.5 -101t48 -71t77 -42.5t101.5 -15.5q45 0 93 9t89 30.5t70.5 56t37.5 85.5q9 52 -16.5 88t-66.5 60t-89.5 40t-86.5 28q-78 25 -152 57.5t-131 80.5t-89 115.5t-24 162.5q4 51 21 93.5t45 78t65 64t81 51.5q-51 58 -70 127t-13 146q8 103 59 176 t127.5 119.5t169 67t183.5 19.5q101 -2 184 -30t141.5 -82t89 -133.5t25.5 -184.5l-236 1q3 52 -10 95t-40.5 73t-69 47t-95.5 18q-46 1 -94 -8t-88.5 -30.5t-69.5 -57t-37 -87.5q-9 -56 14 -92t62.5 -59.5t88 -38t90.5 -27.5q79 -25 154 -57.5t132 -80.5t88.5 -116 t24.5 -163q-4 -52 -21.5 -94.5t-45.5 -77.5t-65.5 -63t-81.5 -51q53 -57 71.5 -126t12.5 -146q-8 -104 -58 -177t-126 -118.5t-168.5 -65.5t-184.5 -18q-101 1 -188 27t-150.5 78.5t-99 132t-32.5 187.5zM322 550q-9 -57 12.5 -94.5t60.5 -62t87 -40.5t91 -30 q37 -12 73 -23.5t71 -25.5q57 26 97.5 67.5t51.5 105.5q9 54 -15 91t-64.5 62.5t-89 42.5t-88.5 30q-37 12 -73.5 24t-72.5 26q-58 -26 -94 -67.5t-47 -105.5z" />
|
120
|
-
<glyph unicode="¨" horiz-adv-x="884" d="M209 1363q0 26 10 48t26.5 38.5t38.5 25.5t48 10q25 0 47.5 -8t39.5 -23.5t27 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39 23.5t-26.5 37t-10 47.5zM652 1362q0 26 9.5 48t26.5 38.5t39 25.5t48 10q25 0 48 -8t39.5 -23.5t26.5 -37 t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39.5 23.5t-26.5 37t-9.5 47.5z" />
|
121
|
-
<glyph unicode="©" horiz-adv-x="1566" d="M104 722q11 99 45 194t87.5 179.5t124 155t154.5 121.5t180 78.5t200 25.5q99 -1 184 -31t153.5 -81t120 -121t83.5 -152t43.5 -172.5t1.5 -183.5q-11 -99 -45 -193.5t-87 -179t-123.5 -155.5t-154.5 -122t-180 -79t-200 -26q-99 2 -184 31.5t-154 81t-120 121.5t-83 152 t-44 172.5t-2 183.5zM221.5 571q7.5 -75 31 -143t63.5 -126.5t94.5 -102t123.5 -69t152 -26.5q131 -3 246.5 49t205.5 140.5t148 203.5t75 239q10 76 3 150.5t-30.5 142.5t-63 126t-94 101t-124 68t-151.5 27q-87 2 -168 -21t-152.5 -65.5t-132 -101.5t-106.5 -129.5 t-76.5 -149.5t-41.5 -162q-10 -76 -2.5 -151zM434 669l12 119q9 78 38 149t77 124.5t115.5 84.5t152.5 30q73 -2 130 -24t95 -63t57 -99t17 -130l-152 1q2 40 -4.5 73.5t-23.5 57t-46.5 36.5t-73.5 14q-54 1 -94.5 -21t-68 -57.5t-44 -81.5t-22.5 -93l-14 -121 q-4 -41 -0.5 -85t19 -80t46 -60t81.5 -26q45 -2 79 10t58 35t39 57t22 76l151 1q-6 -75 -33 -134.5t-72 -100t-107 -61t-138 -18.5q-81 2 -139.5 35t-95.5 86.5t-52 122.5t-9 143z" />
|
122
|
-
<glyph unicode="ª" horiz-adv-x="896" d="M192 911q1 72 34.5 118.5t85.5 73.5t114.5 37.5t122.5 10.5l104 -1l11 53q4 25 2.5 47t-10.5 39.5t-26.5 27.5t-45.5 11q-54 2 -93 -22t-53 -77l-172 14q6 61 35 106t73 73.5t98.5 42t111.5 12.5q62 -1 111 -21.5t82 -56.5t48.5 -86.5t10.5 -112.5l-49 -314 q-8 -47 -9 -91.5t8 -91.5h-166q-2 17 -3 34.5t0 35.5q-44 -39 -93.5 -60.5t-108.5 -21.5q-50 0 -92 15t-71.5 43.5t-45.5 69.5t-14 92zM366 915q-4 -23 2 -38t19 -25t30.5 -14.5t37.5 -4.5q44 0 84 19t75 43l27 138h-83q-29 -1 -60.5 -7t-59 -19.5t-47.5 -35.5t-25 -56z" />
|
123
|
-
<glyph unicode="«" horiz-adv-x="974" d="M73 527l1 20l340 390h179l-319 -413l166 -386h-148zM421 527l1 20l340 390h179l-319 -413l166 -386h-148z" />
|
124
|
-
<glyph unicode="¬" horiz-adv-x="1109" d="M128 634l31 171h811l-75 -431h-196l46 260h-617z" />
|
125
|
-
<glyph unicode="­" horiz-adv-x="662" d="M54 521l35 196h511l-35 -196h-511z" />
|
126
|
-
<glyph unicode="®" horiz-adv-x="1566" d="M104 722q11 99 45 194t87 179.5t124 155t155 121.5t180 78.5t200 25.5q99 -1 184 -31t153.5 -81t120 -121t83.5 -152t43.5 -172.5t1.5 -183.5q-11 -99 -45 -193.5t-87 -179t-123.5 -155.5t-154.5 -122t-180 -79t-200 -26q-99 2 -184 31.5t-154 81t-120 121.5t-83 152 t-44 172.5t-2 183.5zM221 571q7 -75 31 -143t63.5 -126.5t94.5 -102t124 -68.5t152 -27q87 -2 168 21.5t152.5 66t131.5 102t106 130.5t76 150t41 162q15 114 -8.5 223t-82.5 195.5t-152 140t-217 56.5q-87 2 -168 -21t-152.5 -65.5t-132 -101.5t-106.5 -129.5t-76.5 -149.5 t-41.5 -162q-10 -76 -3 -151zM442 316l133 850l260 -1q58 -2 111.5 -16.5t93 -45t62 -77.5t19.5 -113q-2 -35 -14 -63.5t-31.5 -51.5t-44.5 -42t-54 -35q27 -17 43.5 -40t25.5 -50t11 -56.5t-1 -59.5l-6 -56q-4 -34 -3 -64t4 -62l-1 -18h-149q-5 37 -3.5 73t6.5 73l7 55 q6 63 -16 97t-88 38l-164 2l-53 -337h-148zM663 787l129 -1q30 1 60 8t56 22t44.5 37.5t24.5 55.5q7 37 -1.5 61t-28 37.5t-47.5 18.5t-60 6l-138 1z" />
|
127
|
-
<glyph unicode="¯" horiz-adv-x="967" d="M239 1298l25 158h707l-25 -158h-707z" />
|
128
|
-
<glyph unicode="°" horiz-adv-x="765" d="M229 1199q1 55 23.5 105.5t60 89.5t87.5 61.5t106 21.5q52 -1 95 -23t73.5 -58t47 -82.5t15.5 -96.5q-2 -55 -23.5 -105t-58 -88t-85.5 -60.5t-105 -21.5q-52 1 -96 22t-75.5 56.5t-48.5 81.5t-16 97zM365 1201q-3 -23 3 -44t18.5 -37.5t32 -26t43.5 -9.5q27 0 51.5 10.5 t43 28.5t31 42t15.5 50q3 23 -2 44.5t-17 39t-31 28t-44 10.5q-27 0 -52 -11.5t-44 -30.5t-32 -43.5t-16 -50.5z" />
|
129
|
-
<glyph unicode="±" horiz-adv-x="1076" d="M27 0l35 196h825l-35 -196h-825zM107 700l32 199h346l60 377h210l-60 -377h334l-32 -199h-332l-61 -388h-210l61 388h-348z" />
|
130
|
-
<glyph unicode="²" horiz-adv-x="745" d="M86 667l24 135l311 255q19 16 41.5 35.5t43 42t35.5 47t20 51.5q7 41 -14.5 64.5t-62.5 24.5q-58 0 -91.5 -35.5t-45.5 -87.5l-182 -1q5 63 31.5 113.5t68.5 86t97.5 54t117.5 17.5q54 -1 104 -15.5t87 -44t58.5 -73.5t18.5 -104q-2 -52 -24.5 -95.5t-56.5 -80.5 t-74.5 -69t-78.5 -60l-157 -110l351 -2l-27 -148h-595z" />
|
131
|
-
<glyph unicode="³" horiz-adv-x="745" d="M103 897l177 -1q2 -48 33 -69t77 -22q24 0 48 6.5t44 19t34 32t18 45.5q4 28 -3.5 45.5t-22.5 28t-36.5 15t-44.5 5.5h-92l10 130h83q25 1 49 7t44 18.5t34 32t18 46.5q3 22 -3 37.5t-18.5 25t-30 14.5t-36.5 5q-42 1 -74.5 -17.5t-46.5 -56.5l-186 -1q5 59 32 101.5 t68.5 70.5t93.5 41t106 12q50 -1 100.5 -13.5t90.5 -38.5t64.5 -67.5t21.5 -100.5q-2 -36 -15 -64t-35 -50t-50 -39t-58 -31q58 -20 87 -64t27 -106q-2 -65 -32.5 -110.5t-78 -74.5t-105.5 -42t-114 -12q-57 1 -107 16.5t-88 45.5t-60.5 75t-22.5 105z" />
|
132
|
-
<glyph unicode="´" horiz-adv-x="657" d="M200 1233l237 303h285l-316 -303h-206z" />
|
133
|
-
<glyph unicode="µ" horiz-adv-x="1185" d="M-35 -416l260 1498h236l-102 -622q-3 -30 -5.5 -62t-1 -63.5t9 -60t23 -50t41.5 -35t65 -14.5q152 -4 242 120l138 787h237l-187 -1082h-215l15 86q-50 -53 -109.5 -81t-134.5 -27q-52 0 -99.5 13.5t-90.5 43.5l-86 -451h-236z" />
|
134
|
-
<glyph unicode="¶" horiz-adv-x="985" d="M135 980q10 111 56 199t118 150t166.5 95t202.5 33l300 -1l-253 -1456h-205l90 520l-65 1q-101 2 -181.5 36t-134.5 94.5t-79 144t-15 184.5z" />
|
135
|
-
<glyph unicode="·" horiz-adv-x="571" d="M158 710q0 30 10 55.5t28 44t43 29.5t55 12t55 -8.5t43.5 -27.5t29.5 -42.5t11 -54.5t-10.5 -55t-29 -43t-43.5 -28.5t-55 -11.5q-29 -1 -54 8t-43.5 26.5t-29 41.5t-10.5 54z" />
|
136
|
-
<glyph unicode="¸" horiz-adv-x="522" d="M-45 -451l2 141q24 1 49 6t47 15.5t37 28.5t20 46q4 28 -8.5 43t-33 22t-44.5 9.5t-43 4.5l45 137l171 2l-19 -59q62 -14 93.5 -56.5t30.5 -105.5q-1 -70 -34 -114.5t-84 -70t-112 -36.5t-117 -13z" />
|
137
|
-
<glyph unicode="¹" horiz-adv-x="712" d="M225 1191l27 153l366 115h23l-130 -787h-181l99 566z" />
|
138
|
-
<glyph unicode="º" horiz-adv-x="917" d="M195 1044l7 76q8 76 38 142t79 114.5t115 75.5t146 25q76 -2 133.5 -30.5t95.5 -77t55 -112.5t12 -136l-7 -77q-8 -76 -38.5 -141.5t-79 -113.5t-114.5 -75t-145 -25q-76 2 -133.5 31t-96 77t-55.5 111.5t-12 135.5zM367 1041q-3 -36 1 -72.5t18 -65.5t41 -48.5t71 -20.5 q45 -1 80 16.5t59.5 47t39 68t19.5 78.5l9 78q3 36 -0.5 72.5t-18 66t-42 48.5t-70.5 20q-45 1 -79.5 -16t-59.5 -46.5t-39.5 -67.5t-19.5 -78z" />
|
139
|
-
<glyph unicode="»" horiz-adv-x="974" d="M2 138l319 411l-165 388h147l220 -388l-2 -21l-339 -390h-180zM364 138l319 411l-165 388h147l220 -388l-2 -21l-339 -390h-180z" />
|
140
|
-
<glyph unicode="¼" horiz-adv-x="1453" d="M185 1183l27 153l366 115h23l-130 -787h-181l99 566zM245 198l880 1127l120 -79l-879 -1127zM674 163l13 133l432 492l185 1l-82 -476l101 1l-28 -151h-93l-28 -163h-184l30 163h-346zM876 314h169l51 244l-17 -24z" />
|
141
|
-
<glyph unicode="½" horiz-adv-x="1542" d="M177 1186l27 153l366 115h23l-130 -787h-181l99 566zM203 198l880 1127l120 -79l-879 -1127zM741 0l24 135l311 255q19 16 41.5 35.5t43 42t35.5 47t20 51.5q7 41 -14.5 64.5t-62.5 24.5q-58 0 -91.5 -35.5t-45.5 -87.5l-182 -1q5 63 31.5 113.5t68.5 86t97.5 54 t117.5 17.5q54 -1 104 -15.5t87 -44t58.5 -73.5t18.5 -104q-2 -52 -24.5 -95.5t-56.5 -80.5t-74.5 -69t-78.5 -60l-157 -110l351 -2l-27 -148h-595z" />
|
142
|
-
<glyph unicode="¾" horiz-adv-x="1584" d="M150 898l177 -1q2 -48 33 -69t77 -22q24 0 48 6.5t44 19t34 32t18 45.5q4 28 -3.5 45.5t-22.5 28t-36.5 15t-44.5 5.5h-92l10 130h83q25 1 49 7t44 18.5t34 32t18 46.5q3 22 -3 37.5t-18.5 25t-30 14.5t-36.5 5q-42 1 -74.5 -17.5t-46.5 -56.5l-186 -1q5 59 32 101.5 t68.5 70.5t93.5 41t106 12q50 -1 100.5 -13.5t90.5 -38.5t64.5 -67.5t21.5 -100.5q-2 -36 -15 -64t-35 -50t-50 -39t-58 -31q58 -20 87 -64t27 -106q-2 -65 -32.5 -110.5t-78 -74.5t-105.5 -42t-114 -12q-57 1 -107 16.5t-88 45.5t-60.5 75t-22.5 105zM382 198l880 1127 l120 -79l-879 -1127zM791 163l13 133l432 492l185 1l-82 -476l101 1l-28 -151h-93l-28 -163h-184l30 163h-346zM993 314h169l51 244l-17 -24z" />
|
143
|
-
<glyph unicode="¿" horiz-adv-x="976" d="M-39 -9q6 71 35 131t71.5 112.5t94 98t102.5 88.5q59 49 89.5 107t41.5 133l218 1q-6 -63 -21 -115.5t-40 -98t-60.5 -87t-82.5 -83.5q-33 -30 -67 -60.5t-62.5 -64.5t-49 -73t-26.5 -86q-5 -39 1 -71.5t23.5 -56.5t46.5 -37.5t70 -14.5q44 -1 80 12.5t63.5 38.5 t45.5 59.5t26 75.5h237q-9 -93 -48.5 -165.5t-102 -122t-143 -75t-171.5 -23.5q-86 2 -157.5 27.5t-121 73.5t-74.5 117t-18 159zM428 968q0 29 10 53.5t28 42.5t42 28t53 11q28 1 52.5 -8t42.5 -26t28.5 -41t10.5 -52q0 -29 -9.5 -53.5t-27 -42.5t-42 -28.5t-53.5 -11.5 t-53.5 8t-42.5 26t-28.5 41t-10.5 53z" />
|
144
|
-
<glyph unicode="À" horiz-adv-x="1332" d="M-92 0l786 1456h222l282 -1456h-248l-57 339h-545l-174 -339h-266zM452 543h408l-99 602zM549 1846h254l142 -303h-181z" />
|
145
|
-
<glyph unicode="Á" horiz-adv-x="1332" d="M-92 0l786 1456h222l282 -1456h-248l-57 339h-545l-174 -339h-266zM452 543h408l-99 602zM702 1543l237 303h285l-316 -303h-206z" />
|
146
|
-
<glyph unicode="Â" horiz-adv-x="1332" d="M-92 0l786 1456h222l282 -1456h-248l-57 339h-545l-174 -339h-266zM452 543h408l-99 602zM500 1573l301 274h136l232 -275v-17l-185 3l-117 155l-173 -154l-193 -4z" />
|
147
|
-
<glyph unicode="Ã" horiz-adv-x="1332" d="M-92 0l786 1456h222l282 -1456h-248l-57 339h-545l-174 -339h-266zM452 543h408l-99 602zM478 1562q4 48 21 95.5t46.5 85t71.5 60.5t97 22q36 -1 67.5 -16t61.5 -33t61 -32.5t67 -13.5q47 2 72.5 33.5t36.5 71.5l145 -11q-5 -49 -21.5 -96t-46 -83t-71 -58t-96.5 -22 q-37 0 -68.5 15.5t-61.5 33t-61 31.5t-66 13q-47 -2 -71 -32.5t-35 -71.5z" />
|
148
|
-
<glyph unicode="Ä" horiz-adv-x="1332" d="M-92 0l786 1456h222l282 -1456h-248l-57 339h-545l-174 -339h-266zM452 543h408l-99 602zM505 1673q0 26 10 48t26.5 38.5t38.5 25.5t48 10q25 0 47.5 -8t39.5 -23.5t27 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39 23.5t-26.5 37 t-10 47.5zM948 1672q0 26 9.5 48t26.5 38.5t39 25.5t48 10q25 0 48 -8t39.5 -23.5t26.5 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39.5 23.5t-26.5 37t-9.5 47.5z" />
|
149
|
-
<glyph unicode="Å" horiz-adv-x="1332" d="M-92 0l786 1456h222l282 -1456h-248l-57 339h-545l-174 -339h-266zM452 543h408l-99 602zM646 1724q0 46 18.5 86t49.5 69t72 45.5t86 16.5q42 0 79 -16t65 -43t44 -63.5t16 -78.5q0 -46 -18.5 -85.5t-49.5 -68t-71.5 -44.5t-85.5 -16q-42 0 -79.5 15t-65 41.5t-44 62.5 t-16.5 79zM753 1726q-3 -21 2.5 -40t17 -34t28.5 -23.5t39 -8.5q24 0 46.5 9.5t39.5 26t28.5 38t14.5 44.5q3 21 -2 40.5t-16 34t-28.5 23.5t-39.5 9q-24 0 -46.5 -9.5t-39.5 -26t-29 -38t-15 -45.5z" />
|
150
|
-
<glyph unicode="Æ" horiz-adv-x="1877" d="M-121 0l1062 1456h971l-35 -197h-626l-55 -408h533l-35 -197h-524l-60 -458h644l-35 -196h-871l44 340h-479l-238 -340h-296zM562 555h358l85 634z" />
|
151
|
-
<glyph unicode="Ç" horiz-adv-x="1307" d="M105 502q-4 83 7 166l17 118q13 90 41.5 177t71 164.5t100 142.5t129 111.5t157 71.5t185.5 23q115 -2 202.5 -39.5t147.5 -103.5t92 -157.5t36 -201.5h-245q-2 64 -14 117.5t-40 93t-74.5 62.5t-116.5 25q-102 3 -176.5 -39.5t-125 -112.5t-79.5 -157.5t-42 -174.5 l-18 -121q-6 -48 -9.5 -102t1 -107t18 -101.5t41.5 -86.5t71.5 -61.5t107.5 -25.5q75 -3 133.5 16.5t102.5 57t74 92.5t48 124l244 2q-19 -117 -73.5 -210t-135.5 -157t-184.5 -97t-220.5 -31q-95 2 -170 30.5t-130.5 77t-92 114t-56.5 141.5t-24 159zM397 -456l2 141 q24 1 49 6t47 15.5t37 28.5t20 46q4 28 -8.5 43t-33 22t-44.5 9.5t-43 4.5l45 137l171 2l-19 -59q62 -14 93.5 -56.5t30.5 -105.5q-1 -70 -34 -114.5t-84 -70t-112 -36.5t-117 -13z" />
|
152
|
-
<glyph unicode="È" horiz-adv-x="1133" d="M39 0l252 1456h919l-36 -204h-671l-70 -402h581l-35 -200h-580l-78 -448h678l-35 -202h-925zM493 1853h254l142 -303h-181z" />
|
153
|
-
<glyph unicode="É" horiz-adv-x="1133" d="M39 0l252 1456h919l-36 -204h-671l-70 -402h581l-35 -200h-580l-78 -448h678l-35 -202h-925zM646 1550l237 303h285l-316 -303h-206z" />
|
154
|
-
<glyph unicode="Ê" horiz-adv-x="1133" d="M39 0l252 1456h919l-36 -204h-671l-70 -402h581l-35 -200h-580l-78 -448h678l-35 -202h-925zM444 1580l301 274h136l232 -275v-17l-185 3l-117 155l-173 -154l-193 -4z" />
|
155
|
-
<glyph unicode="Ë" horiz-adv-x="1133" d="M39 0l252 1456h919l-36 -204h-671l-70 -402h581l-35 -200h-580l-78 -448h678l-35 -202h-925zM449 1680q0 26 10 48t26.5 38.5t38.5 25.5t48 10q25 0 47.5 -8t39.5 -23.5t27 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39 23.5t-26.5 37 t-10 47.5zM892 1679q0 26 9.5 48t26.5 38.5t39 25.5t48 10q25 0 48 -8t39.5 -23.5t26.5 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39.5 23.5t-26.5 37t-9.5 47.5z" />
|
156
|
-
<glyph unicode="Ì" horiz-adv-x="571" d="M53 0l253 1456h246l-253 -1456h-246zM166 1853h254l142 -303h-181z" />
|
157
|
-
<glyph unicode="Í" horiz-adv-x="571" d="M53 0l253 1456h246l-253 -1456h-246zM318 1550l237 303h285l-316 -303h-206z" />
|
158
|
-
<glyph unicode="Î" horiz-adv-x="571" d="M53 0l253 1456h246l-253 -1456h-246zM117 1580l301 274h136l232 -275v-17l-185 3l-117 155l-173 -154l-193 -4z" />
|
159
|
-
<glyph unicode="Ï" horiz-adv-x="571" d="M53 0l253 1456h246l-253 -1456h-246zM122 1680q0 26 10 48t26.5 38.5t38.5 25.5t48 10q25 0 47.5 -8t39.5 -23.5t27 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39 23.5t-26.5 37t-10 47.5zM565 1679q0 26 9.5 48t26.5 38.5t39 25.5t48 10 q25 0 48 -8t39.5 -23.5t26.5 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39.5 23.5t-26.5 37t-9.5 47.5z" />
|
160
|
-
<glyph unicode="Ð" horiz-adv-x="1338" d="M29 652l30 170h152l110 634l404 -1q147 -3 254 -60.5t173.5 -152t92.5 -219t10 -260.5l-10 -72q-21 -149 -83.5 -276t-160.5 -219t-227.5 -144t-283.5 -52h-421l113 652h-153zM351 202l146 -1q110 0 196 37.5t148.5 104t101 156t53.5 192.5l10 75q11 86 6 171.5t-36 154 t-93 112.5t-165 47l-185 1l-75 -430h252l-30 -170h-251z" />
|
161
|
-
<glyph unicode="Ñ" horiz-adv-x="1420" d="M39 0l253 1456h239l455 -1047l182 1047h246l-253 -1456h-239l-455 1043l-181 -1043h-247zM518 1562q4 48 21 95.5t46.5 85t71.5 60.5t97 22q36 -1 67.5 -16t61.5 -33t61 -32.5t67 -13.5q47 2 72.5 33.5t36.5 71.5l145 -11q-5 -49 -21.5 -96t-46 -83t-71 -58t-96.5 -22 q-37 0 -68.5 15.5t-61.5 33t-61 31.5t-66 13q-47 -2 -71 -32.5t-35 -71.5z" />
|
162
|
-
<glyph unicode="Ò" horiz-adv-x="1382" d="M111.5 517q-4.5 85 5.5 170l10 75q12 91 40 180.5t71.5 169.5t101.5 147.5t131 116.5t160.5 75.5t188.5 24.5q99 -2 175.5 -32t133 -80.5t94.5 -118.5t58 -146.5t24 -164t-6 -170.5l-10 -73q-19 -138 -72.5 -267t-140.5 -229t-207 -159t-272 -56q-98 2 -174.5 31.5 t-133.5 79.5t-94.5 117.5t-58 145.5t-25 163zM354.5 584q-2.5 -56 3 -111t21 -105.5t45 -90t75 -64t110.5 -26.5q70 -2 126.5 18t102 56t80 86t59 106.5t40.5 117t24 119.5l11 77q6 50 9 106t-2.5 110.5t-20.5 105t-44.5 89.5t-75 63t-111.5 26q-69 2 -125.5 -18t-102 -56 t-80 -85.5t-60 -106t-42 -117t-24.5 -118.5l-10 -77q-6 -49 -8.5 -105zM572 1846h254l142 -303h-181z" />
|
163
|
-
<glyph unicode="Ó" horiz-adv-x="1382" d="M111.5 517q-4.5 85 5.5 170l10 75q12 91 40 180.5t71.5 169.5t101.5 147.5t131 116.5t160.5 75.5t188.5 24.5q99 -2 175.5 -32t133 -80.5t94.5 -118.5t58 -146.5t24 -164t-6 -170.5l-10 -73q-19 -138 -72.5 -267t-140.5 -229t-207 -159t-272 -56q-98 2 -174.5 31.5 t-133.5 79.5t-94.5 117.5t-58 145.5t-25 163zM354.5 584q-2.5 -56 3 -111t21 -105.5t45 -90t75 -64t110.5 -26.5q70 -2 126.5 18t102 56t80 86t59 106.5t40.5 117t24 119.5l11 77q6 50 9 106t-2.5 110.5t-20.5 105t-44.5 89.5t-75 63t-111.5 26q-69 2 -125.5 -18t-102 -56 t-80 -85.5t-60 -106t-42 -117t-24.5 -118.5l-10 -77q-6 -49 -8.5 -105zM725 1543l237 303h285l-316 -303h-206z" />
|
164
|
-
<glyph unicode="Ô" horiz-adv-x="1382" d="M111.5 517q-4.5 85 5.5 170l10 75q12 91 40 180.5t71.5 169.5t101.5 147.5t131 116.5t160.5 75.5t188.5 24.5q99 -2 175.5 -32t133 -80.5t94.5 -118.5t58 -146.5t24 -164t-6 -170.5l-10 -73q-19 -138 -72.5 -267t-140.5 -229t-207 -159t-272 -56q-98 2 -174.5 31.5 t-133.5 79.5t-94.5 117.5t-58 145.5t-25 163zM354.5 584q-2.5 -56 3 -111t21 -105.5t45 -90t75 -64t110.5 -26.5q70 -2 126.5 18t102 56t80 86t59 106.5t40.5 117t24 119.5l11 77q6 50 9 106t-2.5 110.5t-20.5 105t-44.5 89.5t-75 63t-111.5 26q-69 2 -125.5 -18t-102 -56 t-80 -85.5t-60 -106t-42 -117t-24.5 -118.5l-10 -77q-6 -49 -8.5 -105zM523 1573l301 274h136l232 -275v-17l-185 3l-117 155l-173 -154l-193 -4z" />
|
165
|
-
<glyph unicode="Õ" horiz-adv-x="1382" d="M111.5 517q-4.5 85 5.5 170l10 75q12 91 40 180.5t71.5 169.5t101.5 147.5t131 116.5t160.5 75.5t188.5 24.5q99 -2 175.5 -32t133 -80.5t94.5 -118.5t58 -146.5t24 -164t-6 -170.5l-10 -73q-19 -138 -72.5 -267t-140.5 -229t-207 -159t-272 -56q-98 2 -174.5 31.5 t-133.5 79.5t-94.5 117.5t-58 145.5t-25 163zM354.5 584q-2.5 -56 3 -111t21 -105.5t45 -90t75 -64t110.5 -26.5q70 -2 126.5 18t102 56t80 86t59 106.5t40.5 117t24 119.5l11 77q6 50 9 106t-2.5 110.5t-20.5 105t-44.5 89.5t-75 63t-111.5 26q-69 2 -125.5 -18t-102 -56 t-80 -85.5t-60 -106t-42 -117t-24.5 -118.5l-10 -77q-6 -49 -8.5 -105zM501 1562q4 48 21 95.5t46.5 85t71.5 60.5t97 22q36 -1 67.5 -16t61.5 -33t61 -32.5t67 -13.5q47 2 72.5 33.5t36.5 71.5l145 -11q-5 -49 -21.5 -96t-46 -83t-71 -58t-96.5 -22q-37 0 -68.5 15.5 t-61.5 33t-61 31.5t-66 13q-47 -2 -71 -32.5t-35 -71.5z" />
|
166
|
-
<glyph unicode="Ö" horiz-adv-x="1382" d="M111.5 517q-4.5 85 5.5 170l10 75q12 91 40 180.5t71.5 169.5t101.5 147.5t131 116.5t160.5 75.5t188.5 24.5q99 -2 175.5 -32t133 -80.5t94.5 -118.5t58 -146.5t24 -164t-6 -170.5l-10 -73q-19 -138 -72.5 -267t-140.5 -229t-207 -159t-272 -56q-98 2 -174.5 31.5 t-133.5 79.5t-94.5 117.5t-58 145.5t-25 163zM354.5 584q-2.5 -56 3 -111t21 -105.5t45 -90t75 -64t110.5 -26.5q70 -2 126.5 18t102 56t80 86t59 106.5t40.5 117t24 119.5l11 77q6 50 9 106t-2.5 110.5t-20.5 105t-44.5 89.5t-75 63t-111.5 26q-69 2 -125.5 -18t-102 -56 t-80 -85.5t-60 -106t-42 -117t-24.5 -118.5l-10 -77q-6 -49 -8.5 -105zM528 1673q0 26 10 48t26.5 38.5t38.5 25.5t48 10q25 0 47.5 -8t39.5 -23.5t27 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39 23.5t-26.5 37t-10 47.5zM971 1672 q0 26 9.5 48t26.5 38.5t39 25.5t48 10q25 0 48 -8t39.5 -23.5t26.5 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39.5 23.5t-26.5 37t-9.5 47.5z" />
|
167
|
-
<glyph unicode="×" horiz-adv-x="1069" d="M35 375l363 321l-251 323l158 139l250 -321l362 321l127 -161l-363 -321l251 -323l-158 -139l-251 320l-361 -320z" />
|
168
|
-
<glyph unicode="Ø" horiz-adv-x="1381" d="M23 -95l200 263q-36 51 -59.5 112t-36 128t-14 137.5t6.5 141.5l10 75q12 91 40 180.5t71.5 169.5t101.5 147.5t131 116.5t160.5 75.5t188.5 24.5q100 -2 177 -32.5t134 -81.5l119 156h179l-207 -271q57 -102 74.5 -228t2.5 -255l-10 -73q-19 -138 -72.5 -267 t-140.5 -229t-207 -159t-272 -56q-85 2 -153.5 24.5t-122.5 60.5l-122 -160h-179zM357 532q1 -41 6.5 -81.5t16.5 -77.5l614 806q-29 38 -74 62t-110 26q-69 2 -125.5 -18t-102 -56t-80 -85.5t-60 -106t-42 -117t-24.5 -118.5l-10 -77q-5 -36 -7.5 -76t-1.5 -81zM459 242 q29 -24 66 -38.5t87 -16.5q70 -2 126.5 18t102 56t80 86t59 106.5t40.5 117t24 119.5l11 77q8 60 10 127t-9 131z" />
|
169
|
-
<glyph unicode="Ù" horiz-adv-x="1305" d="M104 482l165 974h246l-165 -975q-8 -63 0.5 -117t35.5 -93.5t73 -63t114 -25.5q72 -2 130 18.5t101.5 60t71 96t38.5 125.5l166 974h246l-165 -973q-17 -117 -68.5 -211t-130.5 -160t-181 -101t-220 -33q-112 2 -202 38.5t-151 102t-89 158t-15 205.5zM532 1846h254 l142 -303h-181z" />
|
170
|
-
<glyph unicode="Ú" horiz-adv-x="1305" d="M104 482l165 974h246l-165 -975q-8 -63 0.5 -117t35.5 -93.5t73 -63t114 -25.5q72 -2 130 18.5t101.5 60t71 96t38.5 125.5l166 974h246l-165 -973q-17 -117 -68.5 -211t-130.5 -160t-181 -101t-220 -33q-112 2 -202 38.5t-151 102t-89 158t-15 205.5zM685 1543l237 303 h285l-316 -303h-206z" />
|
171
|
-
<glyph unicode="Û" horiz-adv-x="1305" d="M104 482l165 974h246l-165 -975q-8 -63 0.5 -117t35.5 -93.5t73 -63t114 -25.5q72 -2 130 18.5t101.5 60t71 96t38.5 125.5l166 974h246l-165 -973q-17 -117 -68.5 -211t-130.5 -160t-181 -101t-220 -33q-112 2 -202 38.5t-151 102t-89 158t-15 205.5zM483 1573l301 274 h136l232 -275v-17l-185 3l-117 155l-173 -154l-193 -4z" />
|
172
|
-
<glyph unicode="Ü" horiz-adv-x="1305" d="M104 482l165 974h246l-165 -975q-8 -63 0.5 -117t35.5 -93.5t73 -63t114 -25.5q72 -2 130 18.5t101.5 60t71 96t38.5 125.5l166 974h246l-165 -973q-17 -117 -68.5 -211t-130.5 -160t-181 -101t-220 -33q-112 2 -202 38.5t-151 102t-89 158t-15 205.5zM488 1673 q0 26 10 48t26.5 38.5t38.5 25.5t48 10q25 0 47.5 -8t39.5 -23.5t27 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39 23.5t-26.5 37t-10 47.5zM931 1672q0 26 9.5 48t26.5 38.5t39 25.5t48 10q25 0 48 -8t39.5 -23.5t26.5 -37t10 -47.5 t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39.5 23.5t-26.5 37t-9.5 47.5z" />
|
173
|
-
<glyph unicode="Ý" horiz-adv-x="1221" d="M161 1456h261l205 -688l444 688h286l-642 -933l-91 -523h-248l96 549zM645 1543l237 303h285l-316 -303h-206z" />
|
174
|
-
<glyph unicode="Þ" horiz-adv-x="1199" d="M39 0l253 1456h237l-49 -280l223 -1q96 -2 179.5 -31t143 -83t90.5 -133t23 -182q-9 -112 -58 -196t-125.5 -140t-173 -83.5t-201.5 -27.5l-252 1l-53 -300h-237zM362 495l225 -2q59 1 112.5 17.5t95.5 48t70.5 78t36.5 108.5q7 53 -4 96t-38 73t-68 47t-94 19l-251 1z " />
|
175
|
-
<glyph unicode="ß" horiz-adv-x="1227" d="M27 0l189 1105q13 99 51 183t99 145t145 94t189 31q78 -2 144.5 -26t113 -68t70 -108.5t16.5 -146.5q-5 -59 -28.5 -107.5t-52 -93.5t-54.5 -91.5t-36 -101.5q-7 -42 7 -80t40 -74t57.5 -71.5t59.5 -73.5t45.5 -80t15.5 -91q-5 -93 -42.5 -162.5t-98 -115t-139.5 -68 t-166 -20.5q-72 1 -146.5 16t-137.5 51l68 193q47 -30 100.5 -48t110.5 -18q39 0 75.5 10t65.5 30t49.5 50.5t26.5 71.5q7 45 -8.5 83.5t-42.5 74t-59.5 70t-60 72.5t-45 80.5t-13.5 93.5q4 57 29 103.5t55 91t56 90.5t33 101q4 35 -1.5 65.5t-22 54t-43 37t-63.5 15.5 q-57 2 -97 -21t-66.5 -60.5t-41.5 -85.5t-22 -96l-187 -1104h-237z" />
|
176
|
-
<glyph unicode="à" horiz-adv-x="1085" d="M37 295q5 105 54 175t123.5 113t165.5 61t181 18l154 -2l14 74q6 39 0 72.5t-24 58t-47.5 38.5t-71.5 15q-36 1 -70 -8.5t-61 -28t-46.5 -46.5t-26.5 -64l-237 -2q6 85 50.5 148.5t111.5 105t147 61t156 18.5q83 -2 152.5 -27.5t118 -73t72.5 -116t15 -155.5l-79 -481 q-9 -57 -12 -116t15 -115l-1 -18h-235q-8 26 -9.5 50.5t-0.5 50.5q-60 -56 -132.5 -89.5t-156.5 -31.5q-68 1 -127.5 24t-103.5 64t-68 98.5t-21 128.5zM279 320q-8 -67 29.5 -105.5t103.5 -40.5q75 -2 139 34.5t109 94.5l37 205l-113 1q-48 0 -99 -8.5t-94 -30t-74 -58 t-38 -92.5zM381 1536h254l142 -303h-181z" />
|
177
|
-
<glyph unicode="á" horiz-adv-x="1085" d="M37 295q5 105 54 175t123.5 113t165.5 61t181 18l154 -2l14 74q6 39 0 72.5t-24 58t-47.5 38.5t-71.5 15q-36 1 -70 -8.5t-61 -28t-46.5 -46.5t-26.5 -64l-237 -2q6 85 50.5 148.5t111.5 105t147 61t156 18.5q83 -2 152.5 -27.5t118 -73t72.5 -116t15 -155.5l-79 -481 q-9 -57 -12 -116t15 -115l-1 -18h-235q-8 26 -9.5 50.5t-0.5 50.5q-60 -56 -132.5 -89.5t-156.5 -31.5q-68 1 -127.5 24t-103.5 64t-68 98.5t-21 128.5zM279 320q-8 -67 29.5 -105.5t103.5 -40.5q75 -2 139 34.5t109 94.5l37 205l-113 1q-48 0 -99 -8.5t-94 -30t-74 -58 t-38 -92.5zM534 1233l237 303h285l-316 -303h-206z" />
|
178
|
-
<glyph unicode="â" horiz-adv-x="1085" d="M37 295q5 105 54 175t123.5 113t165.5 61t181 18l154 -2l14 74q6 39 0 72.5t-24 58t-47.5 38.5t-71.5 15q-36 1 -70 -8.5t-61 -28t-46.5 -46.5t-26.5 -64l-237 -2q6 85 50.5 148.5t111.5 105t147 61t156 18.5q83 -2 152.5 -27.5t118 -73t72.5 -116t15 -155.5l-79 -481 q-9 -57 -12 -116t15 -115l-1 -18h-235q-8 26 -9.5 50.5t-0.5 50.5q-60 -56 -132.5 -89.5t-156.5 -31.5q-68 1 -127.5 24t-103.5 64t-68 98.5t-21 128.5zM279 320q-8 -67 29.5 -105.5t103.5 -40.5q75 -2 139 34.5t109 94.5l37 205l-113 1q-48 0 -99 -8.5t-94 -30t-74 -58 t-38 -92.5zM332 1263l301 274h136l232 -275v-17l-185 3l-117 155l-173 -154l-193 -4z" />
|
179
|
-
<glyph unicode="ã" horiz-adv-x="1085" d="M37 295q5 105 54 175t123.5 113t165.5 61t181 18l154 -2l14 74q6 39 0 72.5t-24 58t-47.5 38.5t-71.5 15q-36 1 -70 -8.5t-61 -28t-46.5 -46.5t-26.5 -64l-237 -2q6 85 50.5 148.5t111.5 105t147 61t156 18.5q83 -2 152.5 -27.5t118 -73t72.5 -116t15 -155.5l-79 -481 q-9 -57 -12 -116t15 -115l-1 -18h-235q-8 26 -9.5 50.5t-0.5 50.5q-60 -56 -132.5 -89.5t-156.5 -31.5q-68 1 -127.5 24t-103.5 64t-68 98.5t-21 128.5zM279 320q-8 -67 29.5 -105.5t103.5 -40.5q75 -2 139 34.5t109 94.5l37 205l-113 1q-48 0 -99 -8.5t-94 -30t-74 -58 t-38 -92.5zM310 1252q4 48 21 95.5t46.5 85t71.5 60.5t97 22q36 -1 67.5 -16t61.5 -33t61 -32.5t67 -13.5q47 2 72.5 33.5t36.5 71.5l145 -11q-5 -49 -21.5 -96t-46 -83t-71 -58t-96.5 -22q-37 0 -68.5 15.5t-61.5 33t-61 31.5t-66 13q-47 -2 -71 -32.5t-35 -71.5z" />
|
180
|
-
<glyph unicode="ä" horiz-adv-x="1085" d="M37 295q5 105 54 175t123.5 113t165.5 61t181 18l154 -2l14 74q6 39 0 72.5t-24 58t-47.5 38.5t-71.5 15q-36 1 -70 -8.5t-61 -28t-46.5 -46.5t-26.5 -64l-237 -2q6 85 50.5 148.5t111.5 105t147 61t156 18.5q83 -2 152.5 -27.5t118 -73t72.5 -116t15 -155.5l-79 -481 q-9 -57 -12 -116t15 -115l-1 -18h-235q-8 26 -9.5 50.5t-0.5 50.5q-60 -56 -132.5 -89.5t-156.5 -31.5q-68 1 -127.5 24t-103.5 64t-68 98.5t-21 128.5zM279 320q-8 -67 29.5 -105.5t103.5 -40.5q75 -2 139 34.5t109 94.5l37 205l-113 1q-48 0 -99 -8.5t-94 -30t-74 -58 t-38 -92.5zM337 1363q0 26 10 48t26.5 38.5t38.5 25.5t48 10q25 0 47.5 -8t39.5 -23.5t27 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39 23.5t-26.5 37t-10 47.5zM780 1362q0 26 9.5 48t26.5 38.5t39 25.5t48 10q25 0 48 -8t39.5 -23.5 t26.5 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39.5 23.5t-26.5 37t-9.5 47.5z" />
|
181
|
-
<glyph unicode="å" horiz-adv-x="1085" d="M37 295q5 105 54 175t123.5 113t165.5 61t181 18l154 -2l14 74q6 39 0 72.5t-24 58t-47.5 38.5t-71.5 15q-36 1 -70 -8.5t-61 -28t-46.5 -46.5t-26.5 -64l-237 -2q6 85 50.5 148.5t111.5 105t147 61t156 18.5q83 -2 152.5 -27.5t118 -73t72.5 -116t15 -155.5l-79 -481 q-9 -57 -12 -116t15 -115l-1 -18h-235q-8 26 -9.5 50.5t-0.5 50.5q-60 -56 -132.5 -89.5t-156.5 -31.5q-68 1 -127.5 24t-103.5 64t-68 98.5t-21 128.5zM279 320q-8 -67 29.5 -105.5t103.5 -40.5q75 -2 139 34.5t109 94.5l37 205l-113 1q-48 0 -99 -8.5t-94 -30t-74 -58 t-38 -92.5zM478 1414q0 46 18.5 86t49.5 69t72 45.5t86 16.5q42 0 79 -16t65 -43t44 -63.5t16 -78.5q0 -46 -18.5 -85.5t-49.5 -68t-71.5 -44.5t-85.5 -16q-42 0 -79.5 15t-65 41.5t-44 62.5t-16.5 79zM585 1416q-3 -21 2.5 -40t17 -34t28.5 -23.5t39 -8.5q24 0 46.5 9.5 t39.5 26t28.5 38t14.5 44.5q3 21 -2 40.5t-16 34t-28.5 23.5t-39.5 9q-24 0 -46.5 -9.5t-39.5 -26t-29 -38t-15 -45.5z" />
|
182
|
-
<glyph unicode="æ" horiz-adv-x="1687" d="M19 304q6 99 53 164.5t118.5 104.5t158 54.5t171.5 15.5l191 -2l13 74q6 38 1.5 72t-20.5 60.5t-44.5 42.5t-70.5 17q-39 1 -75.5 -8t-66 -28.5t-50 -49.5t-27.5 -69l-237 19q4 59 26.5 107t57 85t80 64t96.5 44t105 25t107 7q43 -1 86.5 -8t83.5 -22.5t74.5 -40.5 t60.5 -62q73 64 157 99t183 33q105 -3 180 -43.5t120.5 -107t62 -154.5t4.5 -185l-21 -141h-669q-6 -59 3 -112t35.5 -93t71.5 -64.5t110 -25.5q85 -2 160.5 24.5t149.5 65.5l58 -168q-38 -33 -85.5 -55.5t-99 -36.5t-104 -20t-101.5 -5q-51 0 -101.5 9t-97 28t-87 49 t-70.5 73q-88 -84 -196 -123t-229 -37q-74 1 -135.5 23t-105.5 63.5t-66.5 101t-18.5 136.5zM257 300q-5 -35 4.5 -60.5t29.5 -42t47.5 -25t59.5 -9.5q35 0 68.5 8t65.5 22.5t61.5 33t56.5 38.5l40 210l-169 1q-42 -1 -85.5 -11t-81 -31t-64 -54t-33.5 -80zM947 641h438 l6 33q7 45 3 86.5t-22 74t-52 52t-85 21.5q-60 2 -106 -21t-80.5 -61t-59.5 -86.5t-42 -98.5z" />
|
183
|
-
<glyph unicode="ç" horiz-adv-x="1050" d="M65 520l4 36q13 111 56 211.5t113.5 176t167 118.5t216.5 40q90 -2 161 -33t120 -85.5t75 -128.5t25 -162h-222q0 42 -10 80t-31 67.5t-54 47.5t-79 20q-75 3 -128 -28.5t-89 -82.5t-56.5 -114.5t-28.5 -126.5l-4 -35q-4 -36 -6 -75t2 -77t14.5 -73t31.5 -62t53.5 -43.5 t79.5 -17.5q43 -1 82 12t70 37.5t52.5 58.5t31.5 76l224 1q-9 -86 -52 -156.5t-107.5 -120.5t-145 -77t-164.5 -25q-116 3 -197 48.5t-130.5 120.5t-67.5 171.5t-7 200.5zM261 -456l2 141q24 1 49 6t47 15.5t37 28.5t20 46q4 28 -8.5 43t-33 22t-44.5 9.5t-43 4.5l45 137 l171 2l-19 -59q62 -14 93.5 -56.5t30.5 -105.5q-1 -70 -34 -114.5t-84 -70t-112 -36.5t-117 -13z" />
|
184
|
-
<glyph unicode="è" horiz-adv-x="1076" d="M66 500l5 41q12 109 55.5 211t114.5 181t167.5 125.5t215.5 43.5q114 -3 191 -48.5t122 -120t59 -169.5t1 -196l-16 -104h-680q-5 -55 5 -106.5t36 -91.5t69 -64.5t104 -26.5q86 -3 156.5 34.5t127.5 98.5l119 -126q-36 -52 -83.5 -90.5t-102.5 -63.5t-116 -37t-122 -11 q-111 2 -195.5 44t-139.5 112.5t-78.5 164.5t-14.5 199zM322 642l449 -2l5 22q7 46 1.5 89.5t-25.5 77.5t-55.5 55.5t-86.5 23.5q-60 2 -105.5 -21t-80.5 -61t-59.5 -86.5t-42.5 -97.5zM370 1536h254l142 -303h-181z" />
|
185
|
-
<glyph unicode="é" horiz-adv-x="1076" d="M66 500l5 41q12 109 55.5 211t114.5 181t167.5 125.5t215.5 43.5q114 -3 191 -48.5t122 -120t59 -169.5t1 -196l-16 -104h-680q-5 -55 5 -106.5t36 -91.5t69 -64.5t104 -26.5q86 -3 156.5 34.5t127.5 98.5l119 -126q-36 -52 -83.5 -90.5t-102.5 -63.5t-116 -37t-122 -11 q-111 2 -195.5 44t-139.5 112.5t-78.5 164.5t-14.5 199zM322 642l449 -2l5 22q7 46 1.5 89.5t-25.5 77.5t-55.5 55.5t-86.5 23.5q-60 2 -105.5 -21t-80.5 -61t-59.5 -86.5t-42.5 -97.5zM523 1233l237 303h285l-316 -303h-206z" />
|
186
|
-
<glyph unicode="ê" horiz-adv-x="1076" d="M66 500l5 41q12 109 55.5 211t114.5 181t167.5 125.5t215.5 43.5q114 -3 191 -48.5t122 -120t59 -169.5t1 -196l-16 -104h-680q-5 -55 5 -106.5t36 -91.5t69 -64.5t104 -26.5q86 -3 156.5 34.5t127.5 98.5l119 -126q-36 -52 -83.5 -90.5t-102.5 -63.5t-116 -37t-122 -11 q-111 2 -195.5 44t-139.5 112.5t-78.5 164.5t-14.5 199zM321 1263l301 274h136l232 -275v-17l-185 3l-117 155l-173 -154l-193 -4zM322 642l449 -2l5 22q7 46 1.5 89.5t-25.5 77.5t-55.5 55.5t-86.5 23.5q-60 2 -105.5 -21t-80.5 -61t-59.5 -86.5t-42.5 -97.5z" />
|
187
|
-
<glyph unicode="ë" horiz-adv-x="1076" d="M66 500l5 41q12 109 55.5 211t114.5 181t167.5 125.5t215.5 43.5q114 -3 191 -48.5t122 -120t59 -169.5t1 -196l-16 -104h-680q-5 -55 5 -106.5t36 -91.5t69 -64.5t104 -26.5q86 -3 156.5 34.5t127.5 98.5l119 -126q-36 -52 -83.5 -90.5t-102.5 -63.5t-116 -37t-122 -11 q-111 2 -195.5 44t-139.5 112.5t-78.5 164.5t-14.5 199zM322 642l449 -2l5 22q7 46 1.5 89.5t-25.5 77.5t-55.5 55.5t-86.5 23.5q-60 2 -105.5 -21t-80.5 -61t-59.5 -86.5t-42.5 -97.5zM326 1363q0 26 10 48t26.5 38.5t38.5 25.5t48 10q25 0 47.5 -8t39.5 -23.5t27 -37 t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39 23.5t-26.5 37t-10 47.5zM769 1362q0 26 9.5 48t26.5 38.5t39 25.5t48 10q25 0 48 -8t39.5 -23.5t26.5 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39.5 23.5 t-26.5 37t-9.5 47.5z" />
|
188
|
-
<glyph unicode="ì" horiz-adv-x="532" d="M34 0l188 1082h237l-188 -1082h-237zM91 1529h254l142 -303h-181z" />
|
189
|
-
<glyph unicode="í" horiz-adv-x="532" d="M34 0l188 1082h237l-188 -1082h-237zM243 1226l237 303h285l-316 -303h-206z" />
|
190
|
-
<glyph unicode="î" horiz-adv-x="532" d="M34 0l188 1082h237l-188 -1082h-237zM42 1256l301 274h136l232 -275v-17l-185 3l-117 155l-173 -154l-193 -4z" />
|
191
|
-
<glyph unicode="ï" horiz-adv-x="532" d="M34 0l188 1082h237l-188 -1082h-237zM47 1356q0 26 10 48t26.5 38.5t38.5 25.5t48 10q25 0 47.5 -8t39.5 -23.5t27 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39 23.5t-26.5 37t-10 47.5zM490 1355q0 26 9.5 48t26.5 38.5t39 25.5t48 10 q25 0 48 -8t39.5 -23.5t26.5 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39.5 23.5t-26.5 37t-9.5 47.5z" />
|
192
|
-
<glyph unicode="ð" horiz-adv-x="1165" d="M79 460q9 102 48 196.5t104 165.5t154.5 113t199.5 39q69 -2 130.5 -25.5t114.5 -67.5q-2 81 -28 153t-72 138l-224 -136l-63 121l184 108q-56 45 -121.5 73t-134.5 48l91 194q103 -25 197 -70t173 -115l201 122l62 -121l-165 -96q91 -155 123.5 -317t9.5 -341l-12 -87 q-10 -73 -33.5 -144.5t-59.5 -136t-83.5 -119.5t-106.5 -94.5t-129.5 -61.5t-151.5 -20q-100 3 -179.5 42t-133.5 104t-79 151.5t-16 183.5zM316 460q-6 -50 1.5 -100t30 -91t61.5 -68t96 -29q48 -2 88 13.5t72 43.5t56.5 65.5t42.5 79t29 84.5t17 83l15 104l6 40 q-15 27 -37 46.5t-48.5 31.5t-56 17.5t-59.5 6.5q-71 1 -126 -25.5t-94.5 -72t-63 -105.5t-30.5 -124z" />
|
193
|
-
<glyph unicode="ñ" horiz-adv-x="1115" d="M13 0l187 1082l223 1l-24 -127q64 69 144 108.5t177 37.5q88 -2 145.5 -35.5t90 -89t42 -128t1.5 -150.5l-117 -699h-237l118 702q5 43 1 79.5t-19.5 63.5t-45.5 42.5t-77 16.5q-76 1 -134.5 -37t-102.5 -96l-135 -771h-237zM316 1252q4 48 21 95.5t46.5 85t71.5 60.5 t97 22q36 -1 67.5 -16t61.5 -33t61 -32.5t67 -13.5q47 2 72.5 33.5t36.5 71.5l145 -11q-5 -49 -21.5 -96t-46 -83t-71 -58t-96.5 -22q-37 0 -68.5 15.5t-61.5 33t-61 31.5t-66 13q-47 -2 -71 -32.5t-35 -71.5z" />
|
194
|
-
<glyph unicode="ò" horiz-adv-x="1141" d="M66 523l2 21q13 112 57.5 214.5t116.5 179.5t170.5 122t219.5 42q115 -3 198 -49.5t134 -122t71 -173.5t9 -203l-2 -22q-14 -112 -59 -213.5t-117 -177.5t-170.5 -120t-218.5 -41q-114 3 -197 48.5t-134 120.5t-71 172t-9 202zM299.5 407.5q2.5 -60.5 22 -112t59.5 -86 t110 -36.5q74 -3 129 29.5t93.5 84.5t60.5 117t31 128l2 21q4 36 5 76t-4.5 79t-18.5 74.5t-35.5 63t-55.5 44t-80 18.5q-75 2 -130 -31t-93 -86t-60 -118.5t-30 -128.5l-2 -21q-6 -55 -3.5 -115.5zM390 1536h254l142 -303h-181z" />
|
195
|
-
<glyph unicode="ó" horiz-adv-x="1141" d="M66 523l2 21q13 112 57.5 214.5t116.5 179.5t170.5 122t219.5 42q115 -3 198 -49.5t134 -122t71 -173.5t9 -203l-2 -22q-14 -112 -59 -213.5t-117 -177.5t-170.5 -120t-218.5 -41q-114 3 -197 48.5t-134 120.5t-71 172t-9 202zM299.5 407.5q2.5 -60.5 22 -112t59.5 -86 t110 -36.5q74 -3 129 29.5t93.5 84.5t60.5 117t31 128l2 21q4 36 5 76t-4.5 79t-18.5 74.5t-35.5 63t-55.5 44t-80 18.5q-75 2 -130 -31t-93 -86t-60 -118.5t-30 -128.5l-2 -21q-6 -55 -3.5 -115.5zM543 1233l237 303h285l-316 -303h-206z" />
|
196
|
-
<glyph unicode="ô" horiz-adv-x="1141" d="M66 523l2 21q13 112 57.5 214.5t116.5 179.5t170.5 122t219.5 42q115 -3 198 -49.5t134 -122t71 -173.5t9 -203l-2 -22q-14 -112 -59 -213.5t-117 -177.5t-170.5 -120t-218.5 -41q-114 3 -197 48.5t-134 120.5t-71 172t-9 202zM299.5 407.5q2.5 -60.5 22 -112t59.5 -86 t110 -36.5q74 -3 129 29.5t93.5 84.5t60.5 117t31 128l2 21q4 36 5 76t-4.5 79t-18.5 74.5t-35.5 63t-55.5 44t-80 18.5q-75 2 -130 -31t-93 -86t-60 -118.5t-30 -128.5l-2 -21q-6 -55 -3.5 -115.5zM341 1263l301 274h136l232 -275v-17l-185 3l-117 155l-173 -154l-193 -4z " />
|
197
|
-
<glyph unicode="õ" horiz-adv-x="1141" d="M66 523l2 21q13 112 57.5 214.5t116.5 179.5t170.5 122t219.5 42q115 -3 198 -49.5t134 -122t71 -173.5t9 -203l-2 -22q-14 -112 -59 -213.5t-117 -177.5t-170.5 -120t-218.5 -41q-114 3 -197 48.5t-134 120.5t-71 172t-9 202zM299.5 407.5q2.5 -60.5 22 -112t59.5 -86 t110 -36.5q74 -3 129 29.5t93.5 84.5t60.5 117t31 128l2 21q4 36 5 76t-4.5 79t-18.5 74.5t-35.5 63t-55.5 44t-80 18.5q-75 2 -130 -31t-93 -86t-60 -118.5t-30 -128.5l-2 -21q-6 -55 -3.5 -115.5zM319 1252q4 48 21 95.5t46.5 85t71.5 60.5t97 22q36 -1 67.5 -16t61.5 -33 t61 -32.5t67 -13.5q47 2 72.5 33.5t36.5 71.5l145 -11q-5 -49 -21.5 -96t-46 -83t-71 -58t-96.5 -22q-37 0 -68.5 15.5t-61.5 33t-61 31.5t-66 13q-47 -2 -71 -32.5t-35 -71.5z" />
|
198
|
-
<glyph unicode="ö" horiz-adv-x="1141" d="M66 523l2 21q13 112 57.5 214.5t116.5 179.5t170.5 122t219.5 42q115 -3 198 -49.5t134 -122t71 -173.5t9 -203l-2 -22q-14 -112 -59 -213.5t-117 -177.5t-170.5 -120t-218.5 -41q-114 3 -197 48.5t-134 120.5t-71 172t-9 202zM299.5 407.5q2.5 -60.5 22 -112t59.5 -86 t110 -36.5q74 -3 129 29.5t93.5 84.5t60.5 117t31 128l2 21q4 36 5 76t-4.5 79t-18.5 74.5t-35.5 63t-55.5 44t-80 18.5q-75 2 -130 -31t-93 -86t-60 -118.5t-30 -128.5l-2 -21q-6 -55 -3.5 -115.5zM346 1363q0 26 10 48t26.5 38.5t38.5 25.5t48 10q25 0 47.5 -8t39.5 -23.5 t27 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39 23.5t-26.5 37t-10 47.5zM789 1362q0 26 9.5 48t26.5 38.5t39 25.5t48 10q25 0 48 -8t39.5 -23.5t26.5 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39.5 23.5 t-26.5 37t-9.5 47.5z" />
|
199
|
-
<glyph unicode="÷" horiz-adv-x="1144" d="M61 582l37 212h984l-38 -212h-983zM366 274q0 30 10.5 55t28.5 43.5t43 29t55 11.5q29 1 54.5 -8.5t44 -26.5t29 -41.5t10.5 -54.5t-10 -54.5t-28.5 -42.5t-43.5 -28t-55 -11q-29 -1 -53.5 8t-43.5 25.5t-30 40.5t-11 54zM508 1091q0 30 10 55t28.5 43t43.5 28.5t54 11.5 t54.5 -8t44 -26.5t29.5 -41.5t11 -54t-10.5 -55t-28.5 -43t-43 -28t-55 -11q-29 -1 -54.5 8t-44 26t-29 41t-10.5 54z" />
|
200
|
-
<glyph unicode="ø" horiz-adv-x="1136" d="M43 -138l150 231q-39 38 -66 86.5t-43 104t-20.5 116t2.5 123.5l2 21q13 112 57.5 214.5t116.5 179.5t170.5 122t219.5 42q54 -2 101 -13.5t87 -31.5l101 155h154l-151 -232q37 -39 62.5 -87.5t40.5 -103t19 -114.5t-2 -121l-2 -22q-14 -112 -59 -213.5t-117 -177.5 t-170.5 -120t-218.5 -41q-51 2 -95.5 12t-82.5 27l-102 -157h-154zM299.5 405.5q2.5 -61.5 22.5 -113.5l386 592q-19 11 -41 17t-49 7q-75 2 -130 -31t-93 -86t-60 -118.5t-30 -128.5l-2 -21q-6 -56 -3.5 -117.5zM411 191q33 -16 80 -18q74 -3 129 29.5t93.5 84.5t60.5 117 t31 128l2 21q6 53 4 112t-20 110z" />
|
201
|
-
<glyph unicode="ù" horiz-adv-x="1114" d="M82 382l117 700h237l-118 -703q-4 -37 -1 -72.5t16.5 -63.5t39.5 -45.5t69 -19.5q81 -3 144 29.5t110 96.5l136 778h237l-187 -1082h-222l21 107q-62 -66 -139.5 -97.5t-168.5 -29.5q-88 2 -147.5 35t-94 88t-46 127t-3.5 152zM383 1536h254l142 -303h-181z" />
|
202
|
-
<glyph unicode="ú" horiz-adv-x="1114" d="M82 382l117 700h237l-118 -703q-4 -37 -1 -72.5t16.5 -63.5t39.5 -45.5t69 -19.5q81 -3 144 29.5t110 96.5l136 778h237l-187 -1082h-222l21 107q-62 -66 -139.5 -97.5t-168.5 -29.5q-88 2 -147.5 35t-94 88t-46 127t-3.5 152zM536 1233l237 303h285l-316 -303h-206z" />
|
203
|
-
<glyph unicode="û" horiz-adv-x="1114" d="M82 382l117 700h237l-118 -703q-4 -37 -1 -72.5t16.5 -63.5t39.5 -45.5t69 -19.5q81 -3 144 29.5t110 96.5l136 778h237l-187 -1082h-222l21 107q-62 -66 -139.5 -97.5t-168.5 -29.5q-88 2 -147.5 35t-94 88t-46 127t-3.5 152zM334 1263l301 274h136l232 -275v-17l-185 3 l-117 155l-173 -154l-193 -4z" />
|
204
|
-
<glyph unicode="ü" horiz-adv-x="1114" d="M82 382l117 700h237l-118 -703q-4 -37 -1 -72.5t16.5 -63.5t39.5 -45.5t69 -19.5q81 -3 144 29.5t110 96.5l136 778h237l-187 -1082h-222l21 107q-62 -66 -139.5 -97.5t-168.5 -29.5q-88 2 -147.5 35t-94 88t-46 127t-3.5 152zM339 1363q0 26 10 48t26.5 38.5t38.5 25.5 t48 10q25 0 47.5 -8t39.5 -23.5t27 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39 23.5t-26.5 37t-10 47.5zM782 1362q0 26 9.5 48t26.5 38.5t39 25.5t48 10q25 0 48 -8t39.5 -23.5t26.5 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5 t-47.5 -10q-26 0 -48.5 8t-39.5 23.5t-26.5 37t-9.5 47.5z" />
|
205
|
-
<glyph unicode="ý" horiz-adv-x="977" d="M-75 -420l20 188q11 -2 21.5 -3t21.5 -1q87 -3 143.5 33.5t94.5 113.5l55 108l-181 1063h246l94 -732l340 732h262l-630 -1247q-27 -56 -62 -106t-80 -88t-100 -60t-122 -21q-32 1 -62.5 6.5t-60.5 13.5zM482 1233l237 303h285l-316 -303h-206z" />
|
206
|
-
<glyph unicode="þ" horiz-adv-x="1150" d="M-51 -416l260 1498h1l79 454h237l-94 -541q57 53 123.5 81t147.5 26q74 -1 129.5 -25.5t94.5 -64.5t63.5 -93.5t37 -113.5t14 -123.5t-4.5 -123.5l-2 -21q-8 -66 -26 -133.5t-46 -130.5t-67.5 -117t-90.5 -94t-114.5 -62.5t-140.5 -20.5q-78 2 -146.5 30.5t-119.5 89.5 l-97 -515h-238zM311 298q23 -62 70 -92.5t113 -32.5q74 -2 128 31.5t90 86.5t57 118.5t29 127.5l3 21q4 34 5 72.5t-3 77t-15.5 73t-32 62t-52 44t-76.5 17.5q-75 2 -131.5 -32t-100.5 -91z" />
|
207
|
-
<glyph unicode="ÿ" horiz-adv-x="977" d="M-75 -420l20 188q11 -2 21.5 -3t21.5 -1q87 -3 143.5 33.5t94.5 113.5l55 108l-181 1063h246l94 -732l340 732h262l-630 -1247q-27 -56 -62 -106t-80 -88t-100 -60t-122 -21q-32 1 -62.5 6.5t-60.5 13.5zM285 1363q0 26 10 48t26.5 38.5t38.5 25.5t48 10q25 0 47.5 -8 t39.5 -23.5t27 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39 23.5t-26.5 37t-10 47.5zM728 1362q0 26 9.5 48t26.5 38.5t39 25.5t48 10q25 0 48 -8t39.5 -23.5t26.5 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8 t-39.5 23.5t-26.5 37t-9.5 47.5z" />
|
208
|
-
<glyph unicode="Œ" horiz-adv-x="1923" d="M96 576l48 304q19 127 73.5 236.5t138.5 190t195.5 126.5t244.5 46q73 -1 145 -8t144 -15h840l-36 -204h-671l-70 -402h581l-35 -200h-580l-78 -448h678l-35 -202h-832v-1q-69 -8 -138 -14t-138 -4q-125 2 -220.5 50.5t-157 130t-87 188.5t-10.5 226zM328.5 433 q5.5 -70 33 -126.5t80 -92t136.5 -37.5q53 -2 105 2t104 11l187 1080q-46 7 -92 11t-93 4q-91 1 -161 -30.5t-121 -86.5t-82.5 -129t-44.5 -157l-48 -307q-9 -72 -3.5 -142z" />
|
209
|
-
<glyph unicode="œ" horiz-adv-x="1805" d="M77 523l2 21q14 112 57.5 214.5t114 179.5t167.5 122t219 43q51 -1 101.5 -12t95.5 -32.5t83.5 -54.5t65.5 -78q37 40 79 73t88.5 56.5t97.5 35.5t107 11q106 -2 181.5 -42t121.5 -106.5t62.5 -154t4.5 -185.5l-22 -143h-656q-5 -53 2 -105t30 -93.5t63.5 -68 t102.5 -28.5q85 -3 161 21.5t147 68.5l65 -160q-39 -36 -86 -60t-98.5 -39t-105 -21t-104.5 -5t-101 11t-95.5 31t-84.5 53t-67 77q-80 -85 -178.5 -130t-216.5 -43q-115 2 -196.5 48.5t-131 121.5t-68.5 172t-8 201zM308 447.5q-1 -39.5 4 -77.5t16.5 -73.5t33 -62.5 t54 -43.5t79.5 -18.5q75 -2 129 30.5t91 85t58.5 117t29.5 127.5l2 21q4 36 5 75.5t-4 78.5t-16.5 75t-33.5 63.5t-54.5 44t-79.5 18.5q-74 2 -128 -31t-91 -86t-58 -118.5t-29 -128.5l-3 -21q-4 -36 -5 -75.5zM1070 648h423l5 28q7 45 2 86t-24 73.5t-53 52t-84 21.5 q-55 1 -97.5 -23t-75 -62t-56 -85t-40.5 -91z" />
|
210
|
-
<glyph unicode="Ÿ" horiz-adv-x="1221" d="M161 1456h261l205 -688l444 688h286l-642 -933l-91 -523h-248l96 549zM448 1673q0 26 10 48t26.5 38.5t38.5 25.5t48 10q25 0 47.5 -8t39.5 -23.5t27 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39 23.5t-26.5 37t-10 47.5zM891 1672 q0 26 9.5 48t26.5 38.5t39 25.5t48 10q25 0 48 -8t39.5 -23.5t26.5 -37t10 -47.5t-9.5 -48t-26.5 -38.5t-39.5 -25.5t-47.5 -10q-26 0 -48.5 8t-39.5 23.5t-26.5 37t-9.5 47.5z" />
|
211
|
-
<glyph unicode="ˆ" horiz-adv-x="978" d="M258 1263l301 274h136l232 -275v-17l-185 3l-117 155l-173 -154l-193 -4z" />
|
212
|
-
<glyph unicode="˜" horiz-adv-x="964" d="M222 1251q4 48 21 95.5t46.5 85t71.5 60.5t97 22q36 -1 67.5 -16t61.5 -33t61 -32.5t67 -13.5q47 2 72.5 33.5t36.5 71.5l145 -11q-5 -49 -21.5 -96t-46 -83t-71 -58t-96.5 -22q-37 0 -68.5 15.5t-61.5 33t-61 31.5t-66 13q-47 -2 -71 -32.5t-35 -71.5z" />
|
213
|
-
<glyph unicode=" " horiz-adv-x="970" />
|
214
|
-
<glyph unicode=" " horiz-adv-x="1941" />
|
215
|
-
<glyph unicode=" " horiz-adv-x="970" />
|
216
|
-
<glyph unicode=" " horiz-adv-x="1941" />
|
217
|
-
<glyph unicode=" " horiz-adv-x="647" />
|
218
|
-
<glyph unicode=" " horiz-adv-x="485" />
|
219
|
-
<glyph unicode=" " horiz-adv-x="323" />
|
220
|
-
<glyph unicode=" " horiz-adv-x="323" />
|
221
|
-
<glyph unicode=" " horiz-adv-x="242" />
|
222
|
-
<glyph unicode=" " horiz-adv-x="388" />
|
223
|
-
<glyph unicode=" " horiz-adv-x="107" />
|
224
|
-
<glyph unicode="‐" horiz-adv-x="662" d="M54 521l35 196h511l-35 -196h-511z" />
|
225
|
-
<glyph unicode="‑" horiz-adv-x="662" d="M54 521l35 196h511l-35 -196h-511z" />
|
226
|
-
<glyph unicode="‒" horiz-adv-x="662" d="M54 521l35 196h511l-35 -196h-511z" />
|
227
|
-
<glyph unicode="–" horiz-adv-x="1291" d="M150 621l42 196h990l-42 -196h-990z" />
|
228
|
-
<glyph unicode="—" horiz-adv-x="1546" d="M60 621l56 196h1320l-56 -196h-1320z" />
|
229
|
-
<glyph unicode="‘" horiz-adv-x="445" d="M174 1056l22 135q9 55 29.5 107.5t50.5 99.5t68.5 88.5t82.5 75.5l119 -79q-50 -66 -87 -136.5t-52 -152.5l-25 -138h-208z" />
|
230
|
-
<glyph unicode="’" horiz-adv-x="441" d="M138 1103q50 66 86.5 136.5t51.5 152.5l26 144h208l-23 -141q-9 -56 -29 -108t-50 -99.5t-68.5 -88.5t-82.5 -75z" />
|
231
|
-
<glyph unicode="‚" horiz-adv-x="458" d="M-92 -218q49 66 84 136.5t49 151.5l24 132h212l-20 -130q-9 -56 -29.5 -108t-50.5 -99t-68.5 -88t-82.5 -75z" />
|
232
|
-
<glyph unicode="“" horiz-adv-x="774" d="M183 1056l22 135q9 55 29.5 107.5t50.5 99.5t68.5 88.5t82.5 75.5l119 -79q-50 -66 -87 -136.5t-52 -152.5l-25 -138h-208zM509 1056l22 135q9 55 29.5 107.5t50.5 99.5t68.5 88.5t82.5 75.5l119 -79q-50 -66 -87 -136.5t-52 -152.5l-25 -138h-208z" />
|
233
|
-
<glyph unicode="”" horiz-adv-x="781" d="M151 1103q50 66 86.5 136.5t51.5 152.5l26 144h208l-23 -141q-9 -56 -29 -108t-50 -99.5t-68.5 -88.5t-82.5 -75zM475 1103q50 66 86.5 136.5t51.5 152.5l26 144h208l-23 -141q-9 -56 -29 -108t-50 -99.5t-68.5 -88.5t-82.5 -75z" />
|
234
|
-
<glyph unicode="„" horiz-adv-x="763" d="M-95 -238q50 72 85.5 146.5t51.5 161.5l32 185h212l-29 -182q-9 -57 -29.5 -112t-50 -104.5t-67.5 -94t-83 -80.5zM217 -238q51 72 88 146.5t53 161.5l32 185h213l-30 -183q-18 -116 -81 -216.5t-153 -173.5z" />
|
235
|
-
<glyph unicode="•" horiz-adv-x="704" d="M157 732l2 55q3 48 21.5 88t48.5 68.5t71 44.5t89 15t86 -17.5t64.5 -45t40.5 -68t13 -86.5l-3 -56q-3 -48 -21.5 -87.5t-48.5 -67.5t-70.5 -43.5t-89.5 -14.5q-47 1 -85 17t-64.5 44.5t-40.5 67.5t-13 86z" />
|
236
|
-
<glyph unicode="…" horiz-adv-x="1413" d="M51 117q0 30 10 55.5t28.5 44t43.5 29t55 11.5q29 1 54.5 -8.5t44 -27t29 -42t10.5 -54.5t-10.5 -55t-29 -43t-43.5 -28t-54 -11t-54 8t-43.5 26t-29.5 41t-11 54zM495 117q0 30 10 55.5t28.5 44t43.5 29t55 11.5q29 1 54.5 -8.5t44 -27t29 -42t10.5 -54.5t-10.5 -55 t-29 -43t-43.5 -28t-54 -11t-54 8t-43.5 26t-29.5 41t-11 54zM923 117q0 30 10 55.5t28.5 44t43.5 29t55 11.5q29 1 54.5 -8.5t44 -27t29 -42t10.5 -54.5t-10.5 -55t-29 -43t-43.5 -28t-54 -11t-54 8t-43.5 26t-29.5 41t-11 54z" />
|
237
|
-
<glyph unicode=" " horiz-adv-x="388" />
|
238
|
-
<glyph unicode="‹" horiz-adv-x="617" d="M93 527l1 20l340 390h179l-319 -413l166 -386h-148z" />
|
239
|
-
<glyph unicode="›" horiz-adv-x="608" d="M-7 138l319 411l-165 388h147l220 -388l-2 -21l-339 -390h-180z" />
|
240
|
-
<glyph unicode=" " horiz-adv-x="485" />
|
241
|
-
<glyph unicode="€" d="M78 527l25 141h166l23 128h-168l25 141h160q30 120 84 220t133 171t183 110t234 38q61 -1 120 -10t119 -22l-49 -205q-46 17 -93.5 26.5t-96.5 10.5q-82 1 -145.5 -24t-110.5 -71t-79.5 -108.5t-52.5 -135.5h353l-25 -141h-345l-23 -128h346l-25 -141h-341 q-9 -68 -1.5 -129.5t35 -108.5t77 -75.5t126.5 -30.5q53 -1 104 8t102 24l7 -207q-59 -13 -118 -19.5t-119 -5.5q-119 2 -210.5 43.5t-151 114.5t-84 172t-9.5 215z" />
|
242
|
-
<glyph unicode="™" horiz-adv-x="1260" d="M237 1361l17 95h386l-17 -95h-134l-77 -443h-115l77 443h-137zM615 916l95 540h130l57 -378l195 378h135l-94 -540h-109l62 354l-174 -353l-60 -2l-60 382l-67 -381h-110z" />
|
243
|
-
<glyph unicode="◼" horiz-adv-x="1080" d="M0 0v1080h1080v-1080h-1080z" />
|
244
|
-
<glyph unicode="fl" horiz-adv-x="1231" d="M95 902l32 180h160l14 102q11 86 45 156t87.5 119.5t126 75.5t161.5 25q36 -1 71 -6.5t70 -13.5l-26 -190q-22 5 -44 7.5t-45 2.5q-85 1 -139 -46t-69 -130l-15 -102h214l-32 -180h-213l-157 -902h-237l157 902h-161zM745 0l267 1536h237l-267 -1536h-237z" />
|
245
|
-
<glyph unicode="ffi" horiz-adv-x="1880" d="M95 902l32 180h160l14 102q11 86 45 156t87.5 119.5t126 75.5t161.5 25q36 -1 71 -6.5t70 -13.5l-26 -190q-22 5 -44 7.5t-45 2.5q-85 1 -139 -46t-69 -130l-15 -102h214l-32 -180h-213l-157 -902h-237l157 902h-161zM789 902l32 180l152 -1l12 70q16 97 56.5 173.5 t102 129t143.5 79.5t182 25q78 -1 152.5 -20t148.5 -42l-57 -200q-57 23 -116.5 37t-121.5 14q-102 1 -166.5 -47.5t-84.5 -148.5l-14 -70l215 1l-32 -180h-206l-157 -902h-237l156 902h-160zM1389 0l188 1082h237l-187 -1082h-238z" />
|
246
|
-
<glyph unicode="ffl" horiz-adv-x="1945" d="M95 902l32 180h160l14 102q11 86 45 156t87.5 119.5t126 75.5t161.5 25q36 -1 71 -6.5t70 -13.5l-26 -190q-22 5 -44 7.5t-45 2.5q-85 1 -139 -46t-69 -130l-15 -102h214l-32 -180h-213l-157 -902h-237l157 902h-161zM809 902l32 180h160l14 102q11 86 45 156t87.5 119.5 t126 75.5t161.5 25q36 -1 71 -6.5t70 -13.5l-26 -190q-22 5 -44 7.5t-45 2.5q-85 1 -139 -46t-69 -130l-15 -102h214l-32 -180h-213l-157 -902h-237l157 902h-161zM1459 0l267 1536h237l-267 -1536h-237z" />
|
247
|
-
<hkern u1=" " u2="T" k="60" />
|
248
|
-
<hkern u1=""" u2="w" k="-11" />
|
249
|
-
<hkern u1="'" u2="w" k="-11" />
|
250
|
-
<hkern u1="(" u2="Ÿ" k="-22" />
|
251
|
-
<hkern u1="(" u2="Ý" k="-22" />
|
252
|
-
<hkern u1="(" u2="Y" k="-22" />
|
253
|
-
<hkern u1="(" u2="W" k="-38" />
|
254
|
-
<hkern u1="(" u2="V" k="-20" />
|
255
|
-
<hkern u1="/" u2="/" k="248" />
|
256
|
-
<hkern u1="A" u2="w" k="33" />
|
257
|
-
<hkern u1="A" u2="t" k="17" />
|
258
|
-
<hkern u1="A" u2="?" k="81" />
|
259
|
-
<hkern u1="C" u2="}" k="17" />
|
260
|
-
<hkern u1="C" u2="]" k="12" />
|
261
|
-
<hkern u1="C" u2=")" k="26" />
|
262
|
-
<hkern u1="D" u2="Æ" k="33" />
|
263
|
-
<hkern u1="E" u2="w" k="22" />
|
264
|
-
<hkern u1="E" u2="f" k="18" />
|
265
|
-
<hkern u1="F" u2="…" k="274" />
|
266
|
-
<hkern u1="F" u2="„" k="274" />
|
267
|
-
<hkern u1="F" u2="‚" k="274" />
|
268
|
-
<hkern u1="F" u2="œ" k="21" />
|
269
|
-
<hkern u1="F" u2="ÿ" k="24" />
|
270
|
-
<hkern u1="F" u2="ý" k="24" />
|
271
|
-
<hkern u1="F" u2="ü" k="22" />
|
272
|
-
<hkern u1="F" u2="û" k="22" />
|
273
|
-
<hkern u1="F" u2="ú" k="22" />
|
274
|
-
<hkern u1="F" u2="ù" k="22" />
|
275
|
-
<hkern u1="F" u2="ö" k="21" />
|
276
|
-
<hkern u1="F" u2="õ" k="21" />
|
277
|
-
<hkern u1="F" u2="ô" k="21" />
|
278
|
-
<hkern u1="F" u2="ó" k="21" />
|
279
|
-
<hkern u1="F" u2="ò" k="21" />
|
280
|
-
<hkern u1="F" u2="ë" k="21" />
|
281
|
-
<hkern u1="F" u2="ê" k="21" />
|
282
|
-
<hkern u1="F" u2="é" k="21" />
|
283
|
-
<hkern u1="F" u2="è" k="21" />
|
284
|
-
<hkern u1="F" u2="ç" k="21" />
|
285
|
-
<hkern u1="F" u2="å" k="34" />
|
286
|
-
<hkern u1="F" u2="ä" k="34" />
|
287
|
-
<hkern u1="F" u2="ã" k="34" />
|
288
|
-
<hkern u1="F" u2="â" k="34" />
|
289
|
-
<hkern u1="F" u2="á" k="34" />
|
290
|
-
<hkern u1="F" u2="à" k="34" />
|
291
|
-
<hkern u1="F" u2="Å" k="192" />
|
292
|
-
<hkern u1="F" u2="Ä" k="192" />
|
293
|
-
<hkern u1="F" u2="Ã" k="192" />
|
294
|
-
<hkern u1="F" u2="Â" k="192" />
|
295
|
-
<hkern u1="F" u2="Á" k="192" />
|
296
|
-
<hkern u1="F" u2="À" k="192" />
|
297
|
-
<hkern u1="F" u2="y" k="24" />
|
298
|
-
<hkern u1="F" u2="v" k="24" />
|
299
|
-
<hkern u1="F" u2="u" k="22" />
|
300
|
-
<hkern u1="F" u2="r" k="26" />
|
301
|
-
<hkern u1="F" u2="q" k="21" />
|
302
|
-
<hkern u1="F" u2="o" k="21" />
|
303
|
-
<hkern u1="F" u2="g" k="21" />
|
304
|
-
<hkern u1="F" u2="e" k="21" />
|
305
|
-
<hkern u1="F" u2="d" k="21" />
|
306
|
-
<hkern u1="F" u2="c" k="21" />
|
307
|
-
<hkern u1="F" u2="a" k="34" />
|
308
|
-
<hkern u1="F" u2="T" k="-20" />
|
309
|
-
<hkern u1="F" u2="J" k="208" />
|
310
|
-
<hkern u1="F" u2="A" k="192" />
|
311
|
-
<hkern u1="F" u2="." k="274" />
|
312
|
-
<hkern u1="F" u2="," k="274" />
|
313
|
-
<hkern u1="K" u2="w" k="63" />
|
314
|
-
<hkern u1="L" u2="w" k="52" />
|
315
|
-
<hkern u1="O" u2="Æ" k="33" />
|
316
|
-
<hkern u1="P" u2="Æ" k="297" />
|
317
|
-
<hkern u1="P" u2="t" k="-14" />
|
318
|
-
<hkern u1="Q" u2="Ÿ" k="35" />
|
319
|
-
<hkern u1="Q" u2="Ý" k="35" />
|
320
|
-
<hkern u1="Q" u2="Y" k="35" />
|
321
|
-
<hkern u1="Q" u2="W" k="20" />
|
322
|
-
<hkern u1="Q" u2="V" k="28" />
|
323
|
-
<hkern u1="Q" u2="T" k="33" />
|
324
|
-
<hkern u1="R" u2="Ÿ" k="48" />
|
325
|
-
<hkern u1="R" u2="Ý" k="48" />
|
326
|
-
<hkern u1="R" u2="Y" k="48" />
|
327
|
-
<hkern u1="R" u2="V" k="19" />
|
328
|
-
<hkern u1="R" u2="T" k="50" />
|
329
|
-
<hkern u1="T" u2="ø" k="95" />
|
330
|
-
<hkern u1="T" u2="æ" k="84" />
|
331
|
-
<hkern u1="T" u2="Æ" k="189" />
|
332
|
-
<hkern u1="T" u2="»" k="146" />
|
333
|
-
<hkern u1="T" u2="«" k="148" />
|
334
|
-
<hkern u1="T" u2="w" k="47" />
|
335
|
-
<hkern u1="T" u2="r" k="65" />
|
336
|
-
<hkern u1="T" u2=" " k="60" />
|
337
|
-
<hkern u1="V" u2="}" k="-19" />
|
338
|
-
<hkern u1="V" u2="r" k="30" />
|
339
|
-
<hkern u1="V" u2="]" k="-17" />
|
340
|
-
<hkern u1="V" u2=")" k="-20" />
|
341
|
-
<hkern u1="W" u2="}" k="-14" />
|
342
|
-
<hkern u1="W" u2="r" k="21" />
|
343
|
-
<hkern u1="W" u2="]" k="-12" />
|
344
|
-
<hkern u1="W" u2=")" k="-15" />
|
345
|
-
<hkern u1="Y" u2="•" k="45" />
|
346
|
-
<hkern u1="Y" u2="ø" k="64" />
|
347
|
-
<hkern u1="Y" u2="æ" k="63" />
|
348
|
-
<hkern u1="Y" u2="Æ" k="96" />
|
349
|
-
<hkern u1="Y" u2="»" k="51" />
|
350
|
-
<hkern u1="Y" u2="«" k="82" />
|
351
|
-
<hkern u1="Y" u2="}" k="-19" />
|
352
|
-
<hkern u1="Y" u2="t" k="22" />
|
353
|
-
<hkern u1="Y" u2="r" k="40" />
|
354
|
-
<hkern u1="Y" u2="f" k="22" />
|
355
|
-
<hkern u1="Y" u2="]" k="-18" />
|
356
|
-
<hkern u1="Y" u2="*" k="49" />
|
357
|
-
<hkern u1="Y" u2=")" k="-20" />
|
358
|
-
<hkern u1="Y" u2="&" k="30" />
|
359
|
-
<hkern u1="Z" u2="w" k="27" />
|
360
|
-
<hkern u1="[" u2="Ü" k="18" />
|
361
|
-
<hkern u1="[" u2="Û" k="18" />
|
362
|
-
<hkern u1="[" u2="Ú" k="18" />
|
363
|
-
<hkern u1="[" u2="Ù" k="18" />
|
364
|
-
<hkern u1="[" u2="U" k="18" />
|
365
|
-
<hkern u1="[" u2="J" k="18" />
|
366
|
-
<hkern u1="e" u2="’" k="64" />
|
367
|
-
<hkern u1="f" u2="”" k="-16" />
|
368
|
-
<hkern u1="f" u2="“" k="-16" />
|
369
|
-
<hkern u1="f" u2="’" k="-16" />
|
370
|
-
<hkern u1="f" u2="‘" k="-16" />
|
371
|
-
<hkern u1="f" u2="œ" k="24" />
|
372
|
-
<hkern u1="f" u2="ë" k="24" />
|
373
|
-
<hkern u1="f" u2="ê" k="24" />
|
374
|
-
<hkern u1="f" u2="é" k="24" />
|
375
|
-
<hkern u1="f" u2="è" k="24" />
|
376
|
-
<hkern u1="f" u2="ç" k="24" />
|
377
|
-
<hkern u1="f" u2="}" k="-19" />
|
378
|
-
<hkern u1="f" u2="q" k="24" />
|
379
|
-
<hkern u1="f" u2="g" k="24" />
|
380
|
-
<hkern u1="f" u2="e" k="24" />
|
381
|
-
<hkern u1="f" u2="d" k="24" />
|
382
|
-
<hkern u1="f" u2="c" k="24" />
|
383
|
-
<hkern u1="f" u2="]" k="-18" />
|
384
|
-
<hkern u1="f" u2=")" k="-20" />
|
385
|
-
<hkern u1="f" u2="'" k="-16" />
|
386
|
-
<hkern u1="f" u2=""" k="-16" />
|
387
|
-
<hkern u1="h" u2="’" k="104" />
|
388
|
-
<hkern u1="k" u2="œ" k="20" />
|
389
|
-
<hkern u1="k" u2="ë" k="20" />
|
390
|
-
<hkern u1="k" u2="ê" k="20" />
|
391
|
-
<hkern u1="k" u2="é" k="20" />
|
392
|
-
<hkern u1="k" u2="è" k="20" />
|
393
|
-
<hkern u1="k" u2="ç" k="20" />
|
394
|
-
<hkern u1="k" u2="q" k="20" />
|
395
|
-
<hkern u1="k" u2="g" k="20" />
|
396
|
-
<hkern u1="k" u2="e" k="20" />
|
397
|
-
<hkern u1="k" u2="d" k="20" />
|
398
|
-
<hkern u1="k" u2="c" k="20" />
|
399
|
-
<hkern u1="m" u2="’" k="120" />
|
400
|
-
<hkern u1="n" u2="’" k="120" />
|
401
|
-
<hkern u1="o" u2="’" k="112" />
|
402
|
-
<hkern u1="r" u2="’" k="-16" />
|
403
|
-
<hkern u1="r" u2="w" k="-17" />
|
404
|
-
<hkern u1="r" u2="t" k="-50" />
|
405
|
-
<hkern u1="r" u2="f" k="-20" />
|
406
|
-
<hkern u1="t" u2="’" k="-24" />
|
407
|
-
<hkern u1="t" u2="ö" k="30" />
|
408
|
-
<hkern u1="t" u2="õ" k="30" />
|
409
|
-
<hkern u1="t" u2="ô" k="30" />
|
410
|
-
<hkern u1="t" u2="ó" k="30" />
|
411
|
-
<hkern u1="t" u2="ò" k="30" />
|
412
|
-
<hkern u1="t" u2="o" k="30" />
|
413
|
-
<hkern u1="v" u2="f" k="-13" />
|
414
|
-
<hkern u1="w" u2="…" k="124" />
|
415
|
-
<hkern u1="w" u2="„" k="124" />
|
416
|
-
<hkern u1="w" u2="‚" k="124" />
|
417
|
-
<hkern u1="w" u2="." k="124" />
|
418
|
-
<hkern u1="w" u2="," k="124" />
|
419
|
-
<hkern u1="y" u2="f" k="-13" />
|
420
|
-
<hkern u1="{" u2="Ü" k="20" />
|
421
|
-
<hkern u1="{" u2="Û" k="20" />
|
422
|
-
<hkern u1="{" u2="Ú" k="20" />
|
423
|
-
<hkern u1="{" u2="Ù" k="20" />
|
424
|
-
<hkern u1="{" u2="U" k="20" />
|
425
|
-
<hkern u1="{" u2="J" k="20" />
|
426
|
-
<hkern u1="À" u2="w" k="33" />
|
427
|
-
<hkern u1="À" u2="t" k="17" />
|
428
|
-
<hkern u1="À" u2="?" k="81" />
|
429
|
-
<hkern u1="Á" u2="w" k="33" />
|
430
|
-
<hkern u1="Á" u2="t" k="17" />
|
431
|
-
<hkern u1="Á" u2="?" k="81" />
|
432
|
-
<hkern u1="Â" u2="w" k="33" />
|
433
|
-
<hkern u1="Â" u2="t" k="17" />
|
434
|
-
<hkern u1="Â" u2="?" k="81" />
|
435
|
-
<hkern u1="Ã" u2="w" k="33" />
|
436
|
-
<hkern u1="Ã" u2="t" k="17" />
|
437
|
-
<hkern u1="Ã" u2="?" k="81" />
|
438
|
-
<hkern u1="Ä" u2="w" k="33" />
|
439
|
-
<hkern u1="Ä" u2="t" k="17" />
|
440
|
-
<hkern u1="Ä" u2="?" k="81" />
|
441
|
-
<hkern u1="Å" u2="w" k="33" />
|
442
|
-
<hkern u1="Å" u2="t" k="17" />
|
443
|
-
<hkern u1="Å" u2="?" k="81" />
|
444
|
-
<hkern u1="Ç" u2="}" k="17" />
|
445
|
-
<hkern u1="Ç" u2="]" k="12" />
|
446
|
-
<hkern u1="Ç" u2=")" k="26" />
|
447
|
-
<hkern u1="È" u2="w" k="22" />
|
448
|
-
<hkern u1="È" u2="f" k="18" />
|
449
|
-
<hkern u1="É" u2="w" k="22" />
|
450
|
-
<hkern u1="É" u2="f" k="18" />
|
451
|
-
<hkern u1="Ê" u2="w" k="22" />
|
452
|
-
<hkern u1="Ê" u2="f" k="18" />
|
453
|
-
<hkern u1="Ë" u2="w" k="22" />
|
454
|
-
<hkern u1="Ë" u2="f" k="18" />
|
455
|
-
<hkern u1="Ð" u2="Æ" k="33" />
|
456
|
-
<hkern u1="Ò" u2="Æ" k="33" />
|
457
|
-
<hkern u1="Ó" u2="Æ" k="33" />
|
458
|
-
<hkern u1="Ô" u2="Æ" k="33" />
|
459
|
-
<hkern u1="Õ" u2="Æ" k="33" />
|
460
|
-
<hkern u1="Ö" u2="Æ" k="33" />
|
461
|
-
<hkern u1="Ý" u2="•" k="45" />
|
462
|
-
<hkern u1="Ý" u2="ø" k="64" />
|
463
|
-
<hkern u1="Ý" u2="æ" k="63" />
|
464
|
-
<hkern u1="Ý" u2="Æ" k="96" />
|
465
|
-
<hkern u1="Ý" u2="»" k="51" />
|
466
|
-
<hkern u1="Ý" u2="«" k="82" />
|
467
|
-
<hkern u1="Ý" u2="}" k="-19" />
|
468
|
-
<hkern u1="Ý" u2="t" k="22" />
|
469
|
-
<hkern u1="Ý" u2="r" k="40" />
|
470
|
-
<hkern u1="Ý" u2="f" k="22" />
|
471
|
-
<hkern u1="Ý" u2="]" k="-18" />
|
472
|
-
<hkern u1="Ý" u2="*" k="49" />
|
473
|
-
<hkern u1="Ý" u2=")" k="-20" />
|
474
|
-
<hkern u1="Ý" u2="&" k="30" />
|
475
|
-
<hkern u1="è" u2="’" k="64" />
|
476
|
-
<hkern u1="é" u2="’" k="64" />
|
477
|
-
<hkern u1="ê" u2="’" k="64" />
|
478
|
-
<hkern u1="ë" u2="’" k="64" />
|
479
|
-
<hkern u1="ñ" u2="’" k="120" />
|
480
|
-
<hkern u1="ò" u2="’" k="112" />
|
481
|
-
<hkern u1="ó" u2="’" k="112" />
|
482
|
-
<hkern u1="ô" u2="’" k="112" />
|
483
|
-
<hkern u1="õ" u2="’" k="112" />
|
484
|
-
<hkern u1="ö" u2="’" k="112" />
|
485
|
-
<hkern u1="ý" u2="f" k="-13" />
|
486
|
-
<hkern u1="ÿ" u2="f" k="-13" />
|
487
|
-
<hkern u1="Ÿ" u2="•" k="45" />
|
488
|
-
<hkern u1="Ÿ" u2="ø" k="64" />
|
489
|
-
<hkern u1="Ÿ" u2="æ" k="63" />
|
490
|
-
<hkern u1="Ÿ" u2="Æ" k="96" />
|
491
|
-
<hkern u1="Ÿ" u2="»" k="51" />
|
492
|
-
<hkern u1="Ÿ" u2="«" k="82" />
|
493
|
-
<hkern u1="Ÿ" u2="}" k="-19" />
|
494
|
-
<hkern u1="Ÿ" u2="t" k="22" />
|
495
|
-
<hkern u1="Ÿ" u2="r" k="40" />
|
496
|
-
<hkern u1="Ÿ" u2="f" k="22" />
|
497
|
-
<hkern u1="Ÿ" u2="]" k="-18" />
|
498
|
-
<hkern u1="Ÿ" u2="*" k="49" />
|
499
|
-
<hkern u1="Ÿ" u2=")" k="-20" />
|
500
|
-
<hkern u1="Ÿ" u2="&" k="30" />
|
501
|
-
<hkern u1="‘" u2="w" k="-11" />
|
502
|
-
<hkern u1="’" u2="œ" k="104" />
|
503
|
-
<hkern u1="’" u2="ö" k="144" />
|
504
|
-
<hkern u1="’" u2="õ" k="144" />
|
505
|
-
<hkern u1="’" u2="ô" k="144" />
|
506
|
-
<hkern u1="’" u2="ó" k="144" />
|
507
|
-
<hkern u1="’" u2="ò" k="144" />
|
508
|
-
<hkern u1="’" u2="ë" k="104" />
|
509
|
-
<hkern u1="’" u2="ê" k="104" />
|
510
|
-
<hkern u1="’" u2="é" k="104" />
|
511
|
-
<hkern u1="’" u2="è" k="104" />
|
512
|
-
<hkern u1="’" u2="ç" k="104" />
|
513
|
-
<hkern u1="’" u2="w" k="-11" />
|
514
|
-
<hkern u1="’" u2="s" k="232" />
|
515
|
-
<hkern u1="’" u2="q" k="104" />
|
516
|
-
<hkern u1="’" u2="o" k="144" />
|
517
|
-
<hkern u1="’" u2="g" k="104" />
|
518
|
-
<hkern u1="’" u2="e" k="104" />
|
519
|
-
<hkern u1="’" u2="d" k="104" />
|
520
|
-
<hkern u1="’" u2="c" k="104" />
|
521
|
-
<hkern u1="“" u2="w" k="-11" />
|
522
|
-
<hkern u1="”" u2="w" k="-11" />
|
523
|
-
<hkern g1="B" g2="V" k="24" />
|
524
|
-
<hkern g1="B" g2="Y,Yacute,Ydieresis" k="55" />
|
525
|
-
<hkern g1="B" g2="T" k="27" />
|
526
|
-
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="Y,Yacute,Ydieresis" k="28" />
|
527
|
-
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="T" k="29" />
|
528
|
-
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-18" />
|
529
|
-
<hkern g1="H,I,M,N,Igrave,Iacute,Icircumflex,Idieresis,Ntilde" g2="X" k="-17" />
|
530
|
-
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="V" k="22" />
|
531
|
-
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Y,Yacute,Ydieresis" k="43" />
|
532
|
-
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="T" k="85" />
|
533
|
-
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="21" />
|
534
|
-
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="X" k="22" />
|
535
|
-
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="Z" k="23" />
|
536
|
-
<hkern g1="D,O,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="122" />
|
537
|
-
<hkern g1="C,Ccedilla" g2="T" k="29" />
|
538
|
-
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="19" />
|
539
|
-
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="v,y,yacute,ydieresis" k="26" />
|
540
|
-
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="T" k="-20" />
|
541
|
-
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="17" />
|
542
|
-
<hkern g1="E,Egrave,Eacute,Ecircumflex,Edieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
|
543
|
-
<hkern g1="T" g2="z" k="60" />
|
544
|
-
<hkern g1="T" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="208" />
|
545
|
-
<hkern g1="T" g2="v,y,yacute,ydieresis" k="82" />
|
546
|
-
<hkern g1="T" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="28" />
|
547
|
-
<hkern g1="T" g2="V" k="-16" />
|
548
|
-
<hkern g1="T" g2="m,n,p,ntilde" k="89" />
|
549
|
-
<hkern g1="T" g2="Y,Yacute,Ydieresis" k="-16" />
|
550
|
-
<hkern g1="T" g2="T" k="-16" />
|
551
|
-
<hkern g1="T" g2="u,ugrave,uacute,ucircumflex,udieresis" k="65" />
|
552
|
-
<hkern g1="T" g2="W" k="-15" />
|
553
|
-
<hkern g1="T" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="120" />
|
554
|
-
<hkern g1="T" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="258" />
|
555
|
-
<hkern g1="T" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="89" />
|
556
|
-
<hkern g1="T" g2="x" k="77" />
|
557
|
-
<hkern g1="T" g2="s" k="76" />
|
558
|
-
<hkern g1="T" g2="hyphen,uni00AD,endash,emdash" k="272" />
|
559
|
-
<hkern g1="T" g2="S" k="16" />
|
560
|
-
<hkern g1="T" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="168" />
|
561
|
-
<hkern g1="T" g2="J" k="216" />
|
562
|
-
<hkern g1="K" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="27" />
|
563
|
-
<hkern g1="K" g2="v,y,yacute,ydieresis" k="40" />
|
564
|
-
<hkern g1="K" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="31" />
|
565
|
-
<hkern g1="K" g2="u,ugrave,uacute,ucircumflex,udieresis" k="23" />
|
566
|
-
<hkern g1="K" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
|
567
|
-
<hkern g1="K" g2="hyphen,uni00AD,endash,emdash" k="164" />
|
568
|
-
<hkern g1="L" g2="v,y,yacute,ydieresis" k="123" />
|
569
|
-
<hkern g1="L" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="64" />
|
570
|
-
<hkern g1="L" g2="V" k="206" />
|
571
|
-
<hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="24" />
|
572
|
-
<hkern g1="L" g2="Y,Yacute,Ydieresis" k="279" />
|
573
|
-
<hkern g1="L" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="288" />
|
574
|
-
<hkern g1="L" g2="T" k="205" />
|
575
|
-
<hkern g1="L" g2="u,ugrave,uacute,ucircumflex,udieresis" k="14" />
|
576
|
-
<hkern g1="L" g2="W" k="93" />
|
577
|
-
<hkern g1="L" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-19" />
|
578
|
-
<hkern g1="P" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="13" />
|
579
|
-
<hkern g1="P" g2="v,y,yacute,ydieresis" k="-15" />
|
580
|
-
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="178" />
|
581
|
-
<hkern g1="P" g2="X" k="51" />
|
582
|
-
<hkern g1="P" g2="Z" k="36" />
|
583
|
-
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="404" />
|
584
|
-
<hkern g1="P" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
|
585
|
-
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="11" />
|
586
|
-
<hkern g1="P" g2="J" k="184" />
|
587
|
-
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="22" />
|
588
|
-
<hkern g1="V" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="46" />
|
589
|
-
<hkern g1="V" g2="v,y,yacute,ydieresis" k="11" />
|
590
|
-
<hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="13" />
|
591
|
-
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis" k="28" />
|
592
|
-
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="75" />
|
593
|
-
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="215" />
|
594
|
-
<hkern g1="V" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="44" />
|
595
|
-
<hkern g1="V" g2="hyphen,uni00AD,endash,emdash" k="157" />
|
596
|
-
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="46" />
|
597
|
-
<hkern g1="X" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
|
598
|
-
<hkern g1="X" g2="v,y,yacute,ydieresis" k="31" />
|
599
|
-
<hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="25" />
|
600
|
-
<hkern g1="X" g2="V" k="-14" />
|
601
|
-
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis" k="21" />
|
602
|
-
<hkern g1="X" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="26" />
|
603
|
-
<hkern g1="X" g2="hyphen,uni00AD,endash,emdash" k="156" />
|
604
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="z" k="30" />
|
605
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="65" />
|
606
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="v,y,yacute,ydieresis" k="20" />
|
607
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="29" />
|
608
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="V" k="-18" />
|
609
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="96" />
|
610
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="m,n,p,ntilde" k="40" />
|
611
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="Y,Yacute,Ydieresis" k="-18" />
|
612
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="T" k="-17" />
|
613
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="39" />
|
614
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="W" k="-17" />
|
615
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="150" />
|
616
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="X" k="-13" />
|
617
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="231" />
|
618
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="65" />
|
619
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="x" k="23" />
|
620
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="s" k="58" />
|
621
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="hyphen,uni00AD,endash,emdash" k="152" />
|
622
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="S" k="16" />
|
623
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="63" />
|
624
|
-
<hkern g1="Y,Yacute,Ydieresis" g2="J" k="96" />
|
625
|
-
<hkern g1="W" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="31" />
|
626
|
-
<hkern g1="W" g2="T" k="-14" />
|
627
|
-
<hkern g1="W" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
|
628
|
-
<hkern g1="W" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="43" />
|
629
|
-
<hkern g1="W" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="143" />
|
630
|
-
<hkern g1="W" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="31" />
|
631
|
-
<hkern g1="W" g2="hyphen,uni00AD,endash,emdash" k="60" />
|
632
|
-
<hkern g1="W" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="33" />
|
633
|
-
<hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="21" />
|
634
|
-
<hkern g1="Z" g2="v,y,yacute,ydieresis" k="27" />
|
635
|
-
<hkern g1="Z" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="26" />
|
636
|
-
<hkern g1="Z" g2="u,ugrave,uacute,ucircumflex,udieresis" k="19" />
|
637
|
-
<hkern g1="Z" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="-13" />
|
638
|
-
<hkern g1="Z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="21" />
|
639
|
-
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="v,y,yacute,ydieresis" k="15" />
|
640
|
-
<hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="17" />
|
641
|
-
<hkern g1="c,ccedilla" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="11" />
|
642
|
-
<hkern g1="b,p,thorn" g2="z" k="15" />
|
643
|
-
<hkern g1="b,p,thorn" g2="v,y,yacute,ydieresis" k="11" />
|
644
|
-
<hkern g1="b,p,thorn" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="29" />
|
645
|
-
<hkern g1="b,p,thorn" g2="x" k="15" />
|
646
|
-
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="v,y,yacute,ydieresis" k="13" />
|
647
|
-
<hkern g1="e,egrave,eacute,ecircumflex,edieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="14" />
|
648
|
-
<hkern g1="h,m,n,ntilde" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="80" />
|
649
|
-
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="z" k="16" />
|
650
|
-
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="v,y,yacute,ydieresis" k="15" />
|
651
|
-
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="88" />
|
652
|
-
<hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis" g2="x" k="21" />
|
653
|
-
<hkern g1="v,y,yacute,ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="15" />
|
654
|
-
<hkern g1="v,y,yacute,ydieresis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-15" />
|
655
|
-
<hkern g1="v,y,yacute,ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="167" />
|
656
|
-
<hkern g1="v,y,yacute,ydieresis" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="13" />
|
657
|
-
<hkern g1="v,y,yacute,ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="15" />
|
658
|
-
<hkern g1="r" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="36" />
|
659
|
-
<hkern g1="r" g2="v,y,yacute,ydieresis" k="-18" />
|
660
|
-
<hkern g1="r" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="-16" />
|
661
|
-
<hkern g1="r" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="173" />
|
662
|
-
<hkern g1="r" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="19" />
|
663
|
-
<hkern g1="r" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="30" />
|
664
|
-
<hkern g1="x" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="40" />
|
665
|
-
<hkern g1="x" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="20" />
|
666
|
-
<hkern g1="z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="16" />
|
667
|
-
<hkern g1="z" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="16" />
|
668
|
-
<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="o,ograve,oacute,ocircumflex,otilde,odieresis" k="91" />
|
669
|
-
<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="m,n,p,ntilde" k="20" />
|
670
|
-
<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="37" />
|
671
|
-
<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring" k="120" />
|
672
|
-
<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="c,d,e,g,q,ccedilla,egrave,eacute,ecircumflex,edieresis,oe" k="59" />
|
673
|
-
<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="s" k="92" />
|
674
|
-
<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring" k="50" />
|
675
|
-
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright" k="285" />
|
676
|
-
</font>
|
677
|
-
</defs></svg>
|