diff options
73 files changed, 130844 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100755 index 0000000..7a551ac --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1,9 @@ | |||
1 | *.pyc | ||
2 | *.sw? | ||
3 | *.sqlite3 | ||
4 | .DS_STORE | ||
5 | *.egg-info | ||
6 | .venv | ||
7 | .tox | ||
8 | build | ||
9 | dist \ No newline at end of file | ||
@@ -0,0 +1,201 @@ | |||
1 | Apache License | ||
2 | Version 2.0, January 2004 | ||
3 | http://www.apache.org/licenses/ | ||
4 | |||
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION | ||
6 | |||
7 | 1. Definitions. | ||
8 | |||
9 | "License" shall mean the terms and conditions for use, reproduction, | ||
10 | and distribution as defined by Sections 1 through 9 of this document. | ||
11 | |||
12 | "Licensor" shall mean the copyright owner or entity authorized by | ||
13 | the copyright owner that is granting the License. | ||
14 | |||
15 | "Legal Entity" shall mean the union of the acting entity and all | ||
16 | other entities that control, are controlled by, or are under common | ||
17 | control with that entity. For the purposes of this definition, | ||
18 | "control" means (i) the power, direct or indirect, to cause the | ||
19 | direction or management of such entity, whether by contract or | ||
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the | ||
21 | outstanding shares, or (iii) beneficial ownership of such entity. | ||
22 | |||
23 | "You" (or "Your") shall mean an individual or Legal Entity | ||
24 | exercising permissions granted by this License. | ||
25 | |||
26 | "Source" form shall mean the preferred form for making modifications, | ||
27 | including but not limited to software source code, documentation | ||
28 | source, and configuration files. | ||
29 | |||
30 | "Object" form shall mean any form resulting from mechanical | ||
31 | transformation or translation of a Source form, including but | ||
32 | not limited to compiled object code, generated documentation, | ||
33 | and conversions to other media types. | ||
34 | |||
35 | "Work" shall mean the work of authorship, whether in Source or | ||
36 | Object form, made available under the License, as indicated by a | ||
37 | copyright notice that is included in or attached to the work | ||
38 | (an example is provided in the Appendix below). | ||
39 | |||
40 | "Derivative Works" shall mean any work, whether in Source or Object | ||
41 | form, that is based on (or derived from) the Work and for which the | ||
42 | editorial revisions, annotations, elaborations, or other modifications | ||
43 | represent, as a whole, an original work of authorship. For the purposes | ||
44 | of this License, Derivative Works shall not include works that remain | ||
45 | separable from, or merely link (or bind by name) to the interfaces of, | ||
46 | the Work and Derivative Works thereof. | ||
47 | |||
48 | "Contribution" shall mean any work of authorship, including | ||
49 | the original version of the Work and any modifications or additions | ||
50 | to that Work or Derivative Works thereof, that is intentionally | ||
51 | submitted to Licensor for inclusion in the Work by the copyright owner | ||
52 | or by an individual or Legal Entity authorized to submit on behalf of | ||
53 | the copyright owner. For the purposes of this definition, "submitted" | ||
54 | means any form of electronic, verbal, or written communication sent | ||
55 | to the Licensor or its representatives, including but not limited to | ||
56 | communication on electronic mailing lists, source code control systems, | ||
57 | and issue tracking systems that are managed by, or on behalf of, the | ||
58 | Licensor for the purpose of discussing and improving the Work, but | ||
59 | excluding communication that is conspicuously marked or otherwise | ||
60 | designated in writing by the copyright owner as "Not a Contribution." | ||
61 | |||
62 | "Contributor" shall mean Licensor and any individual or Legal Entity | ||
63 | on behalf of whom a Contribution has been received by Licensor and | ||
64 | subsequently incorporated within the Work. | ||
65 | |||
66 | 2. Grant of Copyright License. Subject to the terms and conditions of | ||
67 | this License, each Contributor hereby grants to You a perpetual, | ||
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable | ||
69 | copyright license to reproduce, prepare Derivative Works of, | ||
70 | publicly display, publicly perform, sublicense, and distribute the | ||
71 | Work and such Derivative Works in Source or Object form. | ||
72 | |||
73 | 3. Grant of Patent License. Subject to the terms and conditions of | ||
74 | this License, each Contributor hereby grants to You a perpetual, | ||
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable | ||
76 | (except as stated in this section) patent license to make, have made, | ||
77 | use, offer to sell, sell, import, and otherwise transfer the Work, | ||
78 | where such license applies only to those patent claims licensable | ||
79 | by such Contributor that are necessarily infringed by their | ||
80 | Contribution(s) alone or by combination of their Contribution(s) | ||
81 | with the Work to which such Contribution(s) was submitted. If You | ||
82 | institute patent litigation against any entity (including a | ||
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work | ||
84 | or a Contribution incorporated within the Work constitutes direct | ||
85 | or contributory patent infringement, then any patent licenses | ||
86 | granted to You under this License for that Work shall terminate | ||
87 | as of the date such litigation is filed. | ||
88 | |||
89 | 4. Redistribution. You may reproduce and distribute copies of the | ||
90 | Work or Derivative Works thereof in any medium, with or without | ||
91 | modifications, and in Source or Object form, provided that You | ||
92 | meet the following conditions: | ||
93 | |||
94 | (a) You must give any other recipients of the Work or | ||
95 | Derivative Works a copy of this License; and | ||
96 | |||
97 | (b) You must cause any modified files to carry prominent notices | ||
98 | stating that You changed the files; and | ||
99 | |||
100 | (c) You must retain, in the Source form of any Derivative Works | ||
101 | that You distribute, all copyright, patent, trademark, and | ||
102 | attribution notices from the Source form of the Work, | ||
103 | excluding those notices that do not pertain to any part of | ||
104 | the Derivative Works; and | ||
105 | |||
106 | (d) If the Work includes a "NOTICE" text file as part of its | ||
107 | distribution, then any Derivative Works that You distribute must | ||
108 | include a readable copy of the attribution notices contained | ||
109 | within such NOTICE file, excluding those notices that do not | ||
110 | pertain to any part of the Derivative Works, in at least one | ||
111 | of the following places: within a NOTICE text file distributed | ||
112 | as part of the Derivative Works; within the Source form or | ||
113 | documentation, if provided along with the Derivative Works; or, | ||
114 | within a display generated by the Derivative Works, if and | ||
115 | wherever such third-party notices normally appear. The contents | ||
116 | of the NOTICE file are for informational purposes only and | ||
117 | do not modify the License. You may add Your own attribution | ||
118 | notices within Derivative Works that You distribute, alongside | ||
119 | or as an addendum to the NOTICE text from the Work, provided | ||
120 | that such additional attribution notices cannot be construed | ||
121 | as modifying the License. | ||
122 | |||
123 | You may add Your own copyright statement to Your modifications and | ||
124 | may provide additional or different license terms and conditions | ||
125 | for use, reproduction, or distribution of Your modifications, or | ||
126 | for any such Derivative Works as a whole, provided Your use, | ||
127 | reproduction, and distribution of the Work otherwise complies with | ||
128 | the conditions stated in this License. | ||
129 | |||
130 | 5. Submission of Contributions. Unless You explicitly state otherwise, | ||
131 | any Contribution intentionally submitted for inclusion in the Work | ||
132 | by You to the Licensor shall be under the terms and conditions of | ||
133 | this License, without any additional terms or conditions. | ||
134 | Notwithstanding the above, nothing herein shall supersede or modify | ||
135 | the terms of any separate license agreement you may have executed | ||
136 | with Licensor regarding such Contributions. | ||
137 | |||
138 | 6. Trademarks. This License does not grant permission to use the trade | ||
139 | names, trademarks, service marks, or product names of the Licensor, | ||
140 | except as required for reasonable and customary use in describing the | ||
141 | origin of the Work and reproducing the content of the NOTICE file. | ||
142 | |||
143 | 7. Disclaimer of Warranty. Unless required by applicable law or | ||
144 | agreed to in writing, Licensor provides the Work (and each | ||
145 | Contributor provides its Contributions) on an "AS IS" BASIS, | ||
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
147 | implied, including, without limitation, any warranties or conditions | ||
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A | ||
149 | PARTICULAR PURPOSE. You are solely responsible for determining the | ||
150 | appropriateness of using or redistributing the Work and assume any | ||
151 | risks associated with Your exercise of permissions under this License. | ||
152 | |||
153 | 8. Limitation of Liability. In no event and under no legal theory, | ||
154 | whether in tort (including negligence), contract, or otherwise, | ||
155 | unless required by applicable law (such as deliberate and grossly | ||
156 | negligent acts) or agreed to in writing, shall any Contributor be | ||
157 | liable to You for damages, including any direct, indirect, special, | ||
158 | incidental, or consequential damages of any character arising as a | ||
159 | result of this License or out of the use or inability to use the | ||
160 | Work (including but not limited to damages for loss of goodwill, | ||
161 | work stoppage, computer failure or malfunction, or any and all | ||
162 | other commercial damages or losses), even if such Contributor | ||
163 | has been advised of the possibility of such damages. | ||
164 | |||
165 | 9. Accepting Warranty or Additional Liability. While redistributing | ||
166 | the Work or Derivative Works thereof, You may choose to offer, | ||
167 | and charge a fee for, acceptance of support, warranty, indemnity, | ||
168 | or other liability obligations and/or rights consistent with this | ||
169 | License. However, in accepting such obligations, You may act only | ||
170 | on Your own behalf and on Your sole responsibility, not on behalf | ||
171 | of any other Contributor, and only if You agree to indemnify, | ||
172 | defend, and hold each Contributor harmless for any liability | ||
173 | incurred by, or claims asserted against, such Contributor by reason | ||
174 | of your accepting any such warranty or additional liability. | ||
175 | |||
176 | END OF TERMS AND CONDITIONS | ||
177 | |||
178 | APPENDIX: How to apply the Apache License to your work. | ||
179 | |||
180 | To apply the Apache License to your work, attach the following | ||
181 | boilerplate notice, with the fields enclosed by brackets "[]" | ||
182 | replaced with your own identifying information. (Don't include | ||
183 | the brackets!) The text should be enclosed in the appropriate | ||
184 | comment syntax for the file format. We also recommend that a | ||
185 | file or class name and description of purpose be included on the | ||
186 | same "printed page" as the copyright notice for easier | ||
187 | identification within third-party archives. | ||
188 | |||
189 | Copyright 2013 Christian Hoffmeister | ||
190 | |||
191 | Licensed under the Apache License, Version 2.0 (the "License"); | ||
192 | you may not use this file except in compliance with the License. | ||
193 | You may obtain a copy of the License at | ||
194 | |||
195 | http://www.apache.org/licenses/LICENSE-2.0 | ||
196 | |||
197 | Unless required by applicable law or agreed to in writing, software | ||
198 | distributed under the License is distributed on an "AS IS" BASIS, | ||
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
200 | See the License for the specific language governing permissions and | ||
201 | limitations under the License. | ||
diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..320f187 --- /dev/null +++ b/MANIFEST.in | |||
@@ -0,0 +1,7 @@ | |||
1 | include README.txt | ||
2 | recursive-include xstatic/pkg/roboto_fontface * | ||
3 | |||
4 | global-exclude *.pyc | ||
5 | global-exclude *.pyo | ||
6 | global-exclude *.orig | ||
7 | global-exclude *.rej | ||
diff --git a/README.txt b/README.txt new file mode 100644 index 0000000..c1de084 --- /dev/null +++ b/README.txt | |||
@@ -0,0 +1,14 @@ | |||
1 | |||
2 | XStatic-roboto-fontface | ||
3 | ----------------------- | ||
4 | |||
5 | roboto-fontface javascript library packaged for setuptools (easy_install) / pip. | ||
6 | |||
7 | This package is intended to be used by **any** project that needs these files. | ||
8 | |||
9 | It intentionally does **not** provide any extra code except some metadata | ||
10 | **nor** has any extra requirements. You MAY use some minimal support code from | ||
11 | the XStatic base package, if you like. | ||
12 | |||
13 | You can find more info about the xstatic packaging way in the package | ||
14 | `XStatic`. | ||
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ff7c138 --- /dev/null +++ b/setup.py | |||
@@ -0,0 +1,27 @@ | |||
1 | |||
2 | from xstatic.pkg import roboto_fontface as xs | ||
3 | |||
4 | # The README.txt file should be written in reST so that PyPI can use | ||
5 | # it to generate your project's PyPI page. | ||
6 | long_description = open('README.txt').read() | ||
7 | |||
8 | from setuptools import setup, find_packages | ||
9 | |||
10 | setup( | ||
11 | name=xs.PACKAGE_NAME, | ||
12 | version=xs.PACKAGE_VERSION, | ||
13 | description=xs.DESCRIPTION, | ||
14 | long_description=long_description, | ||
15 | classifiers=xs.CLASSIFIERS, | ||
16 | keywords=xs.KEYWORDS, | ||
17 | maintainer=xs.MAINTAINER, | ||
18 | maintainer_email=xs.MAINTAINER_EMAIL, | ||
19 | license=xs.LICENSE, | ||
20 | url=xs.HOMEPAGE, | ||
21 | platforms=xs.PLATFORMS, | ||
22 | packages=find_packages(), | ||
23 | namespace_packages=['xstatic', 'xstatic.pkg', ], | ||
24 | include_package_data=True, | ||
25 | zip_safe=False, | ||
26 | install_requires=[], | ||
27 | ) | ||
diff --git a/xstatic/__init__.py b/xstatic/__init__.py new file mode 100644 index 0000000..de40ea7 --- /dev/null +++ b/xstatic/__init__.py | |||
@@ -0,0 +1 @@ | |||
__import__('pkg_resources').declare_namespace(__name__) | |||
diff --git a/xstatic/pkg/__init__.py b/xstatic/pkg/__init__.py new file mode 100644 index 0000000..de40ea7 --- /dev/null +++ b/xstatic/pkg/__init__.py | |||
@@ -0,0 +1 @@ | |||
__import__('pkg_resources').declare_namespace(__name__) | |||
diff --git a/xstatic/pkg/roboto_fontface/__init__.py b/xstatic/pkg/roboto_fontface/__init__.py new file mode 100644 index 0000000..010fe9b --- /dev/null +++ b/xstatic/pkg/roboto_fontface/__init__.py | |||
@@ -0,0 +1,58 @@ | |||
1 | |||
2 | """ | ||
3 | XStatic resource package | ||
4 | |||
5 | See package 'XStatic' for documentation and basic tools. | ||
6 | """ | ||
7 | |||
8 | # official name, upper/lowercase allowed, no spaces | ||
9 | DISPLAY_NAME = 'roboto-fontface' | ||
10 | |||
11 | # name used for PyPi | ||
12 | PACKAGE_NAME = 'XStatic-%s' % DISPLAY_NAME | ||
13 | |||
14 | NAME = __name__.split('.')[-1] # package name (e.g. 'foo' or 'foo_bar') | ||
15 | # please use a all-lowercase valid python | ||
16 | # package name | ||
17 | |||
18 | VERSION = '0.4.3' # version of the packaged files, please use the upstream | ||
19 | # version number | ||
20 | BUILD = '2' # our package build number, so we can release new builds | ||
21 | # with fixes for xstatic stuff. | ||
22 | PACKAGE_VERSION = VERSION + '.' + BUILD # version used for PyPi | ||
23 | |||
24 | DESCRIPTION = "%s %s (XStatic packaging standard)" % (DISPLAY_NAME, VERSION) | ||
25 | |||
26 | PLATFORMS = 'any' | ||
27 | CLASSIFIERS = [] | ||
28 | KEYWORDS = 'roboto_fontface xstatic' | ||
29 | |||
30 | # XStatic-* package maintainer: | ||
31 | MAINTAINER = 'Diana Whitten' | ||
32 | MAINTAINER_EMAIL = 'hurgleburgler@gmail.com' | ||
33 | |||
34 | # this refers to the project homepage of the stuff we packaged: | ||
35 | HOMEPAGE = 'https://github.com/choffmeister/roboto-fontface-bower' | ||
36 | |||
37 | # this refers to all files: | ||
38 | LICENSE = '(same as %s)' % DISPLAY_NAME | ||
39 | |||
40 | from os.path import join, dirname | ||
41 | BASE_DIR = join(dirname(__file__), 'data') | ||
42 | # linux package maintainers just can point to their file locations like this: | ||
43 | #BASE_DIR = '/usr/share/javascript/' + NAME | ||
44 | |||
45 | # location of the Javascript file that's the entry point for this package, if | ||
46 | # one exists, relative to BASE_DIR | ||
47 | MAIN="[u'./css/roboto-fontface.css', u'./fonts/Roboto-Black.eot', u'./fonts/Roboto-Black.svg', u'./fonts/Roboto-Black.ttf', u'./fonts/Roboto-Black.woff', u'./fonts/Roboto-Black.woff2', u'./fonts/Roboto-BlackItalic.eot', u'./fonts/Roboto-BlackItalic.svg', u'./fonts/Roboto-BlackItalic.ttf', u'./fonts/Roboto-BlackItalic.woff', u'./fonts/Roboto-BlackItalic.woff2', u'./fonts/Roboto-Bold.eot', u'./fonts/Roboto-Bold.svg', u'./fonts/Roboto-Bold.ttf', u'./fonts/Roboto-Bold.woff', u'./fonts/Roboto-Bold.woff2', u'./fonts/Roboto-BoldItalic.eot', u'./fonts/Roboto-BoldItalic.svg', u'./fonts/Roboto-BoldItalic.ttf', u'./fonts/Roboto-BoldItalic.woff', u'./fonts/Roboto-BoldItalic.woff2', u'./fonts/Roboto-Light.eot', u'./fonts/Roboto-Light.svg', u'./fonts/Roboto-Light.ttf', u'./fonts/Roboto-Light.woff', u'./fonts/Roboto-Light.woff2', u'./fonts/Roboto-LightItalic.eot', u'./fonts/Roboto-LightItalic.svg', u'./fonts/Roboto-LightItalic.ttf', u'./fonts/Roboto-LightItalic.woff', u'./fonts/Roboto-LightItalic.woff2', u'./fonts/Roboto-Medium.eot', u'./fonts/Roboto-Medium.svg', u'./fonts/Roboto-Medium.ttf', u'./fonts/Roboto-Medium.woff', u'./fonts/Roboto-Medium.woff2', u'./fonts/Roboto-MediumItalic.eot', u'./fonts/Roboto-MediumItalic.svg', u'./fonts/Roboto-MediumItalic.ttf', u'./fonts/Roboto-MediumItalic.woff', u'./fonts/Roboto-MediumItalic.woff2', u'./fonts/Roboto-Regular.eot', u'./fonts/Roboto-Regular.svg', u'./fonts/Roboto-Regular.ttf', u'./fonts/Roboto-Regular.woff', u'./fonts/Roboto-Regular.woff2', u'./fonts/Roboto-RegularItalic.eot', u'./fonts/Roboto-RegularItalic.svg', u'./fonts/Roboto-RegularItalic.ttf', u'./fonts/Roboto-RegularItalic.woff', u'./fonts/Roboto-RegularItalic.woff2', u'./fonts/Roboto-Thin.eot', u'./fonts/Roboto-Thin.svg', u'./fonts/Roboto-Thin.ttf', u'./fonts/Roboto-Thin.woff', u'./fonts/Roboto-Thin.woff2', u'./fonts/Roboto-ThinItalic.eot', u'./fonts/Roboto-ThinItalic.svg', u'./fonts/Roboto-ThinItalic.ttf', u'./fonts/Roboto-ThinItalic.woff', u'./fonts/Roboto-ThinItalic.woff2']" | ||
48 | |||
49 | LOCATIONS = { | ||
50 | # CDN locations (if no public CDN exists, use an empty dict) | ||
51 | # if value is a string, it is a base location, just append relative | ||
52 | # path/filename. if value is a dict, do another lookup using the | ||
53 | # relative path/filename you want. | ||
54 | # your relative path/filenames should usually be without version | ||
55 | # information, because either the base dir/url is exactly for this | ||
56 | # version or the mapping will care for accessing this version. | ||
57 | |||
58 | } | ||
diff --git a/xstatic/pkg/roboto_fontface/data/LICENSE b/xstatic/pkg/roboto_fontface/data/LICENSE new file mode 100644 index 0000000..a6de40b --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/LICENSE | |||
@@ -0,0 +1,201 @@ | |||
1 | Apache License | ||
2 | Version 2.0, January 2004 | ||
3 | http://www.apache.org/licenses/ | ||
4 | |||
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION | ||
6 | |||
7 | 1. Definitions. | ||
8 | |||
9 | "License" shall mean the terms and conditions for use, reproduction, | ||
10 | and distribution as defined by Sections 1 through 9 of this document. | ||
11 | |||
12 | "Licensor" shall mean the copyright owner or entity authorized by | ||
13 | the copyright owner that is granting the License. | ||
14 | |||
15 | "Legal Entity" shall mean the union of the acting entity and all | ||
16 | other entities that control, are controlled by, or are under common | ||
17 | control with that entity. For the purposes of this definition, | ||
18 | "control" means (i) the power, direct or indirect, to cause the | ||
19 | direction or management of such entity, whether by contract or | ||
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the | ||
21 | outstanding shares, or (iii) beneficial ownership of such entity. | ||
22 | |||
23 | "You" (or "Your") shall mean an individual or Legal Entity | ||
24 | exercising permissions granted by this License. | ||
25 | |||
26 | "Source" form shall mean the preferred form for making modifications, | ||
27 | including but not limited to software source code, documentation | ||
28 | source, and configuration files. | ||
29 | |||
30 | "Object" form shall mean any form resulting from mechanical | ||
31 | transformation or translation of a Source form, including but | ||
32 | not limited to compiled object code, generated documentation, | ||
33 | and conversions to other media types. | ||
34 | |||
35 | "Work" shall mean the work of authorship, whether in Source or | ||
36 | Object form, made available under the License, as indicated by a | ||
37 | copyright notice that is included in or attached to the work | ||
38 | (an example is provided in the Appendix below). | ||
39 | |||
40 | "Derivative Works" shall mean any work, whether in Source or Object | ||
41 | form, that is based on (or derived from) the Work and for which the | ||
42 | editorial revisions, annotations, elaborations, or other modifications | ||
43 | represent, as a whole, an original work of authorship. For the purposes | ||
44 | of this License, Derivative Works shall not include works that remain | ||
45 | separable from, or merely link (or bind by name) to the interfaces of, | ||
46 | the Work and Derivative Works thereof. | ||
47 | |||
48 | "Contribution" shall mean any work of authorship, including | ||
49 | the original version of the Work and any modifications or additions | ||
50 | to that Work or Derivative Works thereof, that is intentionally | ||
51 | submitted to Licensor for inclusion in the Work by the copyright owner | ||
52 | or by an individual or Legal Entity authorized to submit on behalf of | ||
53 | the copyright owner. For the purposes of this definition, "submitted" | ||
54 | means any form of electronic, verbal, or written communication sent | ||
55 | to the Licensor or its representatives, including but not limited to | ||
56 | communication on electronic mailing lists, source code control systems, | ||
57 | and issue tracking systems that are managed by, or on behalf of, the | ||
58 | Licensor for the purpose of discussing and improving the Work, but | ||
59 | excluding communication that is conspicuously marked or otherwise | ||
60 | designated in writing by the copyright owner as "Not a Contribution." | ||
61 | |||
62 | "Contributor" shall mean Licensor and any individual or Legal Entity | ||
63 | on behalf of whom a Contribution has been received by Licensor and | ||
64 | subsequently incorporated within the Work. | ||
65 | |||
66 | 2. Grant of Copyright License. Subject to the terms and conditions of | ||
67 | this License, each Contributor hereby grants to You a perpetual, | ||
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable | ||
69 | copyright license to reproduce, prepare Derivative Works of, | ||
70 | publicly display, publicly perform, sublicense, and distribute the | ||
71 | Work and such Derivative Works in Source or Object form. | ||
72 | |||
73 | 3. Grant of Patent License. Subject to the terms and conditions of | ||
74 | this License, each Contributor hereby grants to You a perpetual, | ||
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable | ||
76 | (except as stated in this section) patent license to make, have made, | ||
77 | use, offer to sell, sell, import, and otherwise transfer the Work, | ||
78 | where such license applies only to those patent claims licensable | ||
79 | by such Contributor that are necessarily infringed by their | ||
80 | Contribution(s) alone or by combination of their Contribution(s) | ||
81 | with the Work to which such Contribution(s) was submitted. If You | ||
82 | institute patent litigation against any entity (including a | ||
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work | ||
84 | or a Contribution incorporated within the Work constitutes direct | ||
85 | or contributory patent infringement, then any patent licenses | ||
86 | granted to You under this License for that Work shall terminate | ||
87 | as of the date such litigation is filed. | ||
88 | |||
89 | 4. Redistribution. You may reproduce and distribute copies of the | ||
90 | Work or Derivative Works thereof in any medium, with or without | ||
91 | modifications, and in Source or Object form, provided that You | ||
92 | meet the following conditions: | ||
93 | |||
94 | (a) You must give any other recipients of the Work or | ||
95 | Derivative Works a copy of this License; and | ||
96 | |||
97 | (b) You must cause any modified files to carry prominent notices | ||
98 | stating that You changed the files; and | ||
99 | |||
100 | (c) You must retain, in the Source form of any Derivative Works | ||
101 | that You distribute, all copyright, patent, trademark, and | ||
102 | attribution notices from the Source form of the Work, | ||
103 | excluding those notices that do not pertain to any part of | ||
104 | the Derivative Works; and | ||
105 | |||
106 | (d) If the Work includes a "NOTICE" text file as part of its | ||
107 | distribution, then any Derivative Works that You distribute must | ||
108 | include a readable copy of the attribution notices contained | ||
109 | within such NOTICE file, excluding those notices that do not | ||
110 | pertain to any part of the Derivative Works, in at least one | ||
111 | of the following places: within a NOTICE text file distributed | ||
112 | as part of the Derivative Works; within the Source form or | ||
113 | documentation, if provided along with the Derivative Works; or, | ||
114 | within a display generated by the Derivative Works, if and | ||
115 | wherever such third-party notices normally appear. The contents | ||
116 | of the NOTICE file are for informational purposes only and | ||
117 | do not modify the License. You may add Your own attribution | ||
118 | notices within Derivative Works that You distribute, alongside | ||
119 | or as an addendum to the NOTICE text from the Work, provided | ||
120 | that such additional attribution notices cannot be construed | ||
121 | as modifying the License. | ||
122 | |||
123 | You may add Your own copyright statement to Your modifications and | ||
124 | may provide additional or different license terms and conditions | ||
125 | for use, reproduction, or distribution of Your modifications, or | ||
126 | for any such Derivative Works as a whole, provided Your use, | ||
127 | reproduction, and distribution of the Work otherwise complies with | ||
128 | the conditions stated in this License. | ||
129 | |||
130 | 5. Submission of Contributions. Unless You explicitly state otherwise, | ||
131 | any Contribution intentionally submitted for inclusion in the Work | ||
132 | by You to the Licensor shall be under the terms and conditions of | ||
133 | this License, without any additional terms or conditions. | ||
134 | Notwithstanding the above, nothing herein shall supersede or modify | ||
135 | the terms of any separate license agreement you may have executed | ||
136 | with Licensor regarding such Contributions. | ||
137 | |||
138 | 6. Trademarks. This License does not grant permission to use the trade | ||
139 | names, trademarks, service marks, or product names of the Licensor, | ||
140 | except as required for reasonable and customary use in describing the | ||
141 | origin of the Work and reproducing the content of the NOTICE file. | ||
142 | |||
143 | 7. Disclaimer of Warranty. Unless required by applicable law or | ||
144 | agreed to in writing, Licensor provides the Work (and each | ||
145 | Contributor provides its Contributions) on an "AS IS" BASIS, | ||
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or | ||
147 | implied, including, without limitation, any warranties or conditions | ||
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A | ||
149 | PARTICULAR PURPOSE. You are solely responsible for determining the | ||
150 | appropriateness of using or redistributing the Work and assume any | ||
151 | risks associated with Your exercise of permissions under this License. | ||
152 | |||
153 | 8. Limitation of Liability. In no event and under no legal theory, | ||
154 | whether in tort (including negligence), contract, or otherwise, | ||
155 | unless required by applicable law (such as deliberate and grossly | ||
156 | negligent acts) or agreed to in writing, shall any Contributor be | ||
157 | liable to You for damages, including any direct, indirect, special, | ||
158 | incidental, or consequential damages of any character arising as a | ||
159 | result of this License or out of the use or inability to use the | ||
160 | Work (including but not limited to damages for loss of goodwill, | ||
161 | work stoppage, computer failure or malfunction, or any and all | ||
162 | other commercial damages or losses), even if such Contributor | ||
163 | has been advised of the possibility of such damages. | ||
164 | |||
165 | 9. Accepting Warranty or Additional Liability. While redistributing | ||
166 | the Work or Derivative Works thereof, You may choose to offer, | ||
167 | and charge a fee for, acceptance of support, warranty, indemnity, | ||
168 | or other liability obligations and/or rights consistent with this | ||
169 | License. However, in accepting such obligations, You may act only | ||
170 | on Your own behalf and on Your sole responsibility, not on behalf | ||
171 | of any other Contributor, and only if You agree to indemnify, | ||
172 | defend, and hold each Contributor harmless for any liability | ||
173 | incurred by, or claims asserted against, such Contributor by reason | ||
174 | of your accepting any such warranty or additional liability. | ||
175 | |||
176 | END OF TERMS AND CONDITIONS | ||
177 | |||
178 | APPENDIX: How to apply the Apache License to your work. | ||
179 | |||
180 | To apply the Apache License to your work, attach the following | ||
181 | boilerplate notice, with the fields enclosed by brackets "[]" | ||
182 | replaced with your own identifying information. (Don't include | ||
183 | the brackets!) The text should be enclosed in the appropriate | ||
184 | comment syntax for the file format. We also recommend that a | ||
185 | file or class name and description of purpose be included on the | ||
186 | same "printed page" as the copyright notice for easier | ||
187 | identification within third-party archives. | ||
188 | |||
189 | Copyright 2013 Christian Hoffmeister | ||
190 | |||
191 | Licensed under the Apache License, Version 2.0 (the "License"); | ||
192 | you may not use this file except in compliance with the License. | ||
193 | You may obtain a copy of the License at | ||
194 | |||
195 | http://www.apache.org/licenses/LICENSE-2.0 | ||
196 | |||
197 | Unless required by applicable law or agreed to in writing, software | ||
198 | distributed under the License is distributed on an "AS IS" BASIS, | ||
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
200 | See the License for the specific language governing permissions and | ||
201 | limitations under the License. | ||
diff --git a/xstatic/pkg/roboto_fontface/data/README.md b/xstatic/pkg/roboto_fontface/data/README.md new file mode 100644 index 0000000..e01b8fe --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/README.md | |||
@@ -0,0 +1,27 @@ | |||
1 | # Roboto fontface | ||
2 | |||
3 | A simple package providing the [Roboto](http://www.google.com/fonts/specimen/Roboto) fontface. The font was created by [Christian Robertson](https://plus.google.com/110879635926653430880/about). | ||
4 | |||
5 | ## Installing | ||
6 | |||
7 | Assuming you have [NodeJS](http://nodejs.org/), [NPM](https://www.npmjs.com/) and [Bower](http://bower.io/) installed globally just open up a terminal, navigate to your projects root directory and then execute | ||
8 | |||
9 | ``` | ||
10 | # install via NPM | ||
11 | $ npm install roboto-fontface --save | ||
12 | |||
13 | # install via Bower | ||
14 | $ bower install roboto-fontface --save | ||
15 | ``` | ||
16 | |||
17 | ## Hinting | ||
18 | |||
19 | Some of the included font files have [hinting](http://en.wikipedia.org/wiki/Font_hinting). | ||
20 | |||
21 | | Files | Hinting | | ||
22 | |----------|---------| | ||
23 | | `.eot` | ? | | ||
24 | | `.svg` | no | | ||
25 | | `.ttf` | ? | | ||
26 | | `.woff` | yes | | ||
27 | | `.woff2` | ? | | ||
diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-fontface.css b/xstatic/pkg/roboto_fontface/data/css/roboto-fontface.css new file mode 100644 index 0000000..74f3e73 --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-fontface.css | |||
@@ -0,0 +1,263 @@ | |||
1 | @font-face { | ||
2 | font-family: 'Roboto'; | ||
3 | src: url('../fonts/Roboto-Thin.eot'); | ||
4 | src: url('../fonts/Roboto-Thin.eot?#iefix') format('embedded-opentype'), | ||
5 | url('../fonts/Roboto-Thin.woff2') format('woff2'), | ||
6 | url('../fonts/Roboto-Thin.woff') format('woff'), | ||
7 | url('../fonts/Roboto-Thin.ttf') format('truetype'), | ||
8 | url('../fonts/Roboto-Thin.svg#Roboto') format('svg'); | ||
9 | font-weight: 100; | ||
10 | font-style: normal; | ||
11 | } | ||
12 | |||
13 | @font-face { | ||
14 | font-family: 'Roboto-Thin'; | ||
15 | src: url('../fonts/Roboto-Thin.eot'); | ||
16 | src: url('../fonts/Roboto-Thin.eot?#iefix') format('embedded-opentype'), | ||
17 | url('../fonts/Roboto-Thin.woff2') format('woff2'), | ||
18 | url('../fonts/Roboto-Thin.woff') format('woff'), | ||
19 | url('../fonts/Roboto-Thin.ttf') format('truetype'), | ||
20 | url('../fonts/Roboto-Thin.svg#Roboto') format('svg'); | ||
21 | } | ||
22 | |||
23 | @font-face { | ||
24 | font-family: 'Roboto'; | ||
25 | src: url('../fonts/Roboto-ThinItalic.eot'); | ||
26 | src: url('../fonts/Roboto-ThinItalic.eot?#iefix') format('embedded-opentype'), | ||
27 | url('../fonts/Roboto-ThinItalic.woff2') format('woff2'), | ||
28 | url('../fonts/Roboto-ThinItalic.woff') format('woff'), | ||
29 | url('../fonts/Roboto-ThinItalic.ttf') format('truetype'), | ||
30 | url('../fonts/Roboto-ThinItalic.svg#Roboto') format('svg'); | ||
31 | font-weight: 100; | ||
32 | font-style: italic; | ||
33 | } | ||
34 | |||
35 | @font-face { | ||
36 | font-family: 'Roboto-ThinItalic'; | ||
37 | src: url('../fonts/Roboto-ThinItalic.eot'); | ||
38 | src: url('../fonts/Roboto-ThinItalic.eot?#iefix') format('embedded-opentype'), | ||
39 | url('../fonts/Roboto-ThinItalic.woff2') format('woff2'), | ||
40 | url('../fonts/Roboto-ThinItalic.woff') format('woff'), | ||
41 | url('../fonts/Roboto-ThinItalic.ttf') format('truetype'), | ||
42 | url('../fonts/Roboto-ThinItalic.svg#Roboto') format('svg'); | ||
43 | } | ||
44 | |||
45 | @font-face { | ||
46 | font-family: 'Roboto'; | ||
47 | src: url('../fonts/Roboto-Light.eot'); | ||
48 | src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'), | ||
49 | url('../fonts/Roboto-Light.woff2') format('woff2'), | ||
50 | url('../fonts/Roboto-Light.woff') format('woff'), | ||
51 | url('../fonts/Roboto-Light.ttf') format('truetype'), | ||
52 | url('../fonts/Roboto-Light.svg#Roboto') format('svg'); | ||
53 | font-weight: 300; | ||
54 | font-style: normal; | ||
55 | } | ||
56 | |||
57 | @font-face { | ||
58 | font-family: 'Roboto-Light'; | ||
59 | src: url('../fonts/Roboto-Light.eot'); | ||
60 | src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'), | ||
61 | url('../fonts/Roboto-Light.woff2') format('woff2'), | ||
62 | url('../fonts/Roboto-Light.woff') format('woff'), | ||
63 | url('../fonts/Roboto-Light.ttf') format('truetype'), | ||
64 | url('../fonts/Roboto-Light.svg#Roboto') format('svg'); | ||
65 | } | ||
66 | |||
67 | @font-face { | ||
68 | font-family: 'Roboto'; | ||
69 | src: url('../fonts/Roboto-LightItalic.eot'); | ||
70 | src: url('../fonts/Roboto-LightItalic.eot?#iefix') format('embedded-opentype'), | ||
71 | url('../fonts/Roboto-LightItalic.woff2') format('woff2'), | ||
72 | url('../fonts/Roboto-LightItalic.woff') format('woff'), | ||
73 | url('../fonts/Roboto-LightItalic.ttf') format('truetype'), | ||
74 | url('../fonts/Roboto-LightItalic.svg#Roboto') format('svg'); | ||
75 | font-weight: 300; | ||
76 | font-style: italic; | ||
77 | } | ||
78 | |||
79 | @font-face { | ||
80 | font-family: 'Roboto-LightItalic'; | ||
81 | src: url('../fonts/Roboto-LightItalic.eot'); | ||
82 | src: url('../fonts/Roboto-LightItalic.eot?#iefix') format('embedded-opentype'), | ||
83 | url('../fonts/Roboto-LightItalic.woff2') format('woff2'), | ||
84 | url('../fonts/Roboto-LightItalic.woff') format('woff'), | ||
85 | url('../fonts/Roboto-LightItalic.ttf') format('truetype'), | ||
86 | url('../fonts/Roboto-LightItalic.svg#Roboto') format('svg'); | ||
87 | } | ||
88 | |||
89 | @font-face { | ||
90 | font-family: 'Roboto'; | ||
91 | src: url('../fonts/Roboto-Regular.eot'); | ||
92 | src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'), | ||
93 | url('../fonts/Roboto-Regular.woff2') format('woff2'), | ||
94 | url('../fonts/Roboto-Regular.woff') format('woff'), | ||
95 | url('../fonts/Roboto-Regular.ttf') format('truetype'), | ||
96 | url('../fonts/Roboto-Regular.svg#Roboto') format('svg'); | ||
97 | font-weight: 400; | ||
98 | font-style: normal; | ||
99 | } | ||
100 | |||
101 | @font-face { | ||
102 | font-family: 'Roboto-Regular'; | ||
103 | src: url('../fonts/Roboto-Regular.eot'); | ||
104 | src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'), | ||
105 | url('../fonts/Roboto-Regular.woff2') format('woff2'), | ||
106 | url('../fonts/Roboto-Regular.woff') format('woff'), | ||
107 | url('../fonts/Roboto-Regular.ttf') format('truetype'), | ||
108 | url('../fonts/Roboto-Regular.svg#Roboto') format('svg'); | ||
109 | } | ||
110 | |||
111 | @font-face { | ||
112 | font-family: 'Roboto'; | ||
113 | src: url('../fonts/Roboto-RegularItalic.eot'); | ||
114 | src: url('../fonts/Roboto-RegularItalic.eot?#iefix') format('embedded-opentype'), | ||
115 | url('../fonts/Roboto-RegularItalic.woff2') format('woff2'), | ||
116 | url('../fonts/Roboto-RegularItalic.woff') format('woff'), | ||
117 | url('../fonts/Roboto-RegularItalic.ttf') format('truetype'), | ||
118 | url('../fonts/Roboto-RegularItalic.svg#Roboto') format('svg'); | ||
119 | font-weight: 400; | ||
120 | font-style: italic; | ||
121 | } | ||
122 | |||
123 | @font-face { | ||
124 | font-family: 'Roboto-RegularItalic'; | ||
125 | src: url('../fonts/Roboto-RegularItalic.eot'); | ||
126 | src: url('../fonts/Roboto-RegularItalic.eot?#iefix') format('embedded-opentype'), | ||
127 | url('../fonts/Roboto-RegularItalic.woff2') format('woff2'), | ||
128 | url('../fonts/Roboto-RegularItalic.woff') format('woff'), | ||
129 | url('../fonts/Roboto-RegularItalic.ttf') format('truetype'), | ||
130 | url('../fonts/Roboto-RegularItalic.svg#Roboto') format('svg'); | ||
131 | } | ||
132 | |||
133 | @font-face { | ||
134 | font-family: 'Roboto'; | ||
135 | src: url('../fonts/Roboto-Medium.eot'); | ||
136 | src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'), | ||
137 | url('../fonts/Roboto-Medium.woff2') format('woff2'), | ||
138 | url('../fonts/Roboto-Medium.woff') format('woff'), | ||
139 | url('../fonts/Roboto-Medium.ttf') format('truetype'), | ||
140 | url('../fonts/Roboto-Medium.svg#Roboto') format('svg'); | ||
141 | font-weight: 500; | ||
142 | font-style: normal; | ||
143 | } | ||
144 | |||
145 | @font-face { | ||
146 | font-family: 'Roboto-Medium'; | ||
147 | src: url('../fonts/Roboto-Medium.eot'); | ||
148 | src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'), | ||
149 | url('../fonts/Roboto-Medium.woff2') format('woff2'), | ||
150 | url('../fonts/Roboto-Medium.woff') format('woff'), | ||
151 | url('../fonts/Roboto-Medium.ttf') format('truetype'), | ||
152 | url('../fonts/Roboto-Medium.svg#Roboto') format('svg'); | ||
153 | } | ||
154 | |||
155 | @font-face { | ||
156 | font-family: 'Roboto'; | ||
157 | src: url('../fonts/Roboto-MediumItalic.eot'); | ||
158 | src: url('../fonts/Roboto-MediumItalic.eot?#iefix') format('embedded-opentype'), | ||
159 | url('../fonts/Roboto-MediumItalic.woff2') format('woff2'), | ||
160 | url('../fonts/Roboto-MediumItalic.woff') format('woff'), | ||
161 | url('../fonts/Roboto-MediumItalic.ttf') format('truetype'), | ||
162 | url('../fonts/Roboto-MediumItalic.svg#Roboto') format('svg'); | ||
163 | font-weight: 500; | ||
164 | font-style: italic; | ||
165 | } | ||
166 | |||
167 | @font-face { | ||
168 | font-family: 'Roboto-MediumItalic'; | ||
169 | src: url('../fonts/Roboto-MediumItalic.eot'); | ||
170 | src: url('../fonts/Roboto-MediumItalic.eot?#iefix') format('embedded-opentype'), | ||
171 | url('../fonts/Roboto-MediumItalic.woff2') format('woff2'), | ||
172 | url('../fonts/Roboto-MediumItalic.woff') format('woff'), | ||
173 | url('../fonts/Roboto-MediumItalic.ttf') format('truetype'), | ||
174 | url('../fonts/Roboto-MediumItalic.svg#Roboto') format('svg'); | ||
175 | } | ||
176 | |||
177 | @font-face { | ||
178 | font-family: 'Roboto'; | ||
179 | src: url('../fonts/Roboto-Bold.eot'); | ||
180 | src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'), | ||
181 | url('../fonts/Roboto-Bold.woff2') format('woff2'), | ||
182 | url('../fonts/Roboto-Bold.woff') format('woff'), | ||
183 | url('../fonts/Roboto-Bold.ttf') format('truetype'), | ||
184 | url('../fonts/Roboto-Bold.svg#Roboto') format('svg'); | ||
185 | font-weight: 700; | ||
186 | font-style: normal; | ||
187 | } | ||
188 | |||
189 | @font-face { | ||
190 | font-family: 'Roboto-Bold'; | ||
191 | src: url('../fonts/Roboto-Bold.eot'); | ||
192 | src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'), | ||
193 | url('../fonts/Roboto-Bold.woff2') format('woff2'), | ||
194 | url('../fonts/Roboto-Bold.woff') format('woff'), | ||
195 | url('../fonts/Roboto-Bold.ttf') format('truetype'), | ||
196 | url('../fonts/Roboto-Bold.svg#Roboto') format('svg'); | ||
197 | } | ||
198 | |||
199 | @font-face { | ||
200 | font-family: 'Roboto'; | ||
201 | src: url('../fonts/Roboto-BoldItalic.eot'); | ||
202 | src: url('../fonts/Roboto-BoldItalic.eot?#iefix') format('embedded-opentype'), | ||
203 | url('../fonts/Roboto-BoldItalic.woff2') format('woff2'), | ||
204 | url('../fonts/Roboto-BoldItalic.woff') format('woff'), | ||
205 | url('../fonts/Roboto-BoldItalic.ttf') format('truetype'), | ||
206 | url('../fonts/Roboto-BoldItalic.svg#Roboto') format('svg'); | ||
207 | font-weight: 700; | ||
208 | font-style: italic; | ||
209 | } | ||
210 | |||
211 | @font-face { | ||
212 | font-family: 'Roboto-BoldItalic'; | ||
213 | src: url('../fonts/Roboto-BoldItalic.eot'); | ||
214 | src: url('../fonts/Roboto-BoldItalic.eot?#iefix') format('embedded-opentype'), | ||
215 | url('../fonts/Roboto-BoldItalic.woff2') format('woff2'), | ||
216 | url('../fonts/Roboto-BoldItalic.woff') format('woff'), | ||
217 | url('../fonts/Roboto-BoldItalic.ttf') format('truetype'), | ||
218 | url('../fonts/Roboto-BoldItalic.svg#Roboto') format('svg'); | ||
219 | } | ||
220 | |||
221 | @font-face { | ||
222 | font-family: 'Roboto'; | ||
223 | src: url('../fonts/Roboto-Black.eot'); | ||
224 | src: url('../fonts/Roboto-Black.eot?#iefix') format('embedded-opentype'), | ||
225 | url('../fonts/Roboto-Black.woff2') format('woff2'), | ||
226 | url('../fonts/Roboto-Black.woff') format('woff'), | ||
227 | url('../fonts/Roboto-Black.ttf') format('truetype'), | ||
228 | url('../fonts/Roboto-Black.svg#Roboto') format('svg'); | ||
229 | font-weight: 900; | ||
230 | font-style: normal; | ||
231 | } | ||
232 | |||
233 | @font-face { | ||
234 | font-family: 'Roboto-Black'; | ||
235 | src: url('../fonts/Roboto-Black.eot'); | ||
236 | src: url('../fonts/Roboto-Black.eot?#iefix') format('embedded-opentype'), | ||
237 | url('../fonts/Roboto-Black.woff2') format('woff2'), | ||
238 | url('../fonts/Roboto-Black.woff') format('woff'), | ||
239 | url('../fonts/Roboto-Black.ttf') format('truetype'), | ||
240 | url('../fonts/Roboto-Black.svg#Roboto') format('svg'); | ||
241 | } | ||
242 | |||
243 | @font-face { | ||
244 | font-family: 'Roboto'; | ||
245 | src: url('../fonts/Roboto-BlackItalic.eot'); | ||
246 | src: url('../fonts/Roboto-BlackItalic.eot?#iefix') format('embedded-opentype'), | ||
247 | url('../fonts/Roboto-BlackItalic.woff2') format('woff2'), | ||
248 | url('../fonts/Roboto-BlackItalic.woff') format('woff'), | ||
249 | url('../fonts/Roboto-BlackItalic.ttf') format('truetype'), | ||
250 | url('../fonts/Roboto-BlackItalic.svg#Roboto') format('svg'); | ||
251 | font-weight: 900; | ||
252 | font-style: italic; | ||
253 | } | ||
254 | |||
255 | @font-face { | ||
256 | font-family: 'Roboto-BlackItalic'; | ||
257 | src: url('../fonts/Roboto-BlackItalic.eot'); | ||
258 | src: url('../fonts/Roboto-BlackItalic.eot?#iefix') format('embedded-opentype'), | ||
259 | url('../fonts/Roboto-BlackItalic.woff2') format('woff2'), | ||
260 | url('../fonts/Roboto-BlackItalic.woff') format('woff'), | ||
261 | url('../fonts/Roboto-BlackItalic.ttf') format('truetype'), | ||
262 | url('../fonts/Roboto-BlackItalic.svg#Roboto') format('svg'); | ||
263 | } \ No newline at end of file | ||
diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-fontface.less b/xstatic/pkg/roboto_fontface/data/css/roboto-fontface.less new file mode 100644 index 0000000..ad8be20 --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-fontface.less | |||
@@ -0,0 +1,37 @@ | |||
1 | @roboto-font-path: '../fonts'; | ||
2 | |||
3 | .roboto-font(@type, @weight, @style) { | ||
4 | @font-face { | ||
5 | font-family: 'Roboto'; | ||
6 | src: url('@{roboto-font-path}/Roboto-@{type}.eot'); | ||
7 | src: url('@{roboto-font-path}/Roboto-@{type}.eot?#iefix') format('embedded-opentype'), | ||
8 | url('@{roboto-font-path}/Roboto-@{type}.woff2') format('woff2'), | ||
9 | url('@{roboto-font-path}/Roboto-@{type}.woff') format('woff'), | ||
10 | url('@{roboto-font-path}/Roboto-@{type}.ttf') format('truetype'), | ||
11 | url('@{roboto-font-path}/Roboto-@{type}.svg#Roboto') format('svg'); | ||
12 | font-weight: @weight; | ||
13 | font-style: @style; | ||
14 | } | ||
15 | |||
16 | @font-face { | ||
17 | font-family: 'Roboto-@{type}'; | ||
18 | src: url('@{roboto-font-path}/Roboto-@{type}.eot'); | ||
19 | src: url('@{roboto-font-path}/Roboto-@{type}.eot?#iefix') format('embedded-opentype'), | ||
20 | url('@{roboto-font-path}/Roboto-@{type}.woff2') format('woff2'), | ||
21 | url('@{roboto-font-path}/Roboto-@{type}.woff') format('woff'), | ||
22 | url('@{roboto-font-path}/Roboto-@{type}.ttf') format('truetype'), | ||
23 | url('@{roboto-font-path}/Roboto-@{type}.svg#Roboto') format('svg'); | ||
24 | } | ||
25 | } | ||
26 | |||
27 | .roboto-font-pair(@type, @weight) { | ||
28 | .roboto-font('@{type}', @weight, normal); | ||
29 | .roboto-font('@{type}Italic', @weight, italic); | ||
30 | } | ||
31 | |||
32 | .roboto-font-pair('Thin', 100); | ||
33 | .roboto-font-pair('Light', 300); | ||
34 | .roboto-font-pair('Regular', 400); | ||
35 | .roboto-font-pair('Medium', 500); | ||
36 | .roboto-font-pair('Bold', 700); | ||
37 | .roboto-font-pair('Black', 900); | ||
diff --git a/xstatic/pkg/roboto_fontface/data/css/roboto-fontface.scss b/xstatic/pkg/roboto_fontface/data/css/roboto-fontface.scss new file mode 100644 index 0000000..28df00e --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/css/roboto-fontface.scss | |||
@@ -0,0 +1,37 @@ | |||
1 | $roboto-font-path: '../fonts' !default; | ||
2 | |||
3 | @mixin roboto-font($type, $weight, $style: normal) { | ||
4 | @font-face { | ||
5 | font-family: 'Roboto'; | ||
6 | src: url('#{$roboto-font-path}/Roboto-#{$type}.eot'); | ||
7 | src: url('#{$roboto-font-path}/Roboto-#{$type}.eot?#iefix') format('embedded-opentype'), | ||
8 | url('#{$roboto-font-path}/Roboto-#{$type}.woff2') format('woff2'), | ||
9 | url('#{$roboto-font-path}/Roboto-#{$type}.woff') format('woff'), | ||
10 | url('#{$roboto-font-path}/Roboto-#{$type}.ttf') format('truetype'), | ||
11 | url('#{$roboto-font-path}/Roboto-#{$type}.svg#Roboto') format('svg'); | ||
12 | font-weight: $weight; | ||
13 | font-style: $style; | ||
14 | } | ||
15 | |||
16 | @font-face { | ||
17 | font-family: 'Roboto-#{$type}'; | ||
18 | src: url('#{$roboto-font-path}/Roboto-#{$type}.eot'); | ||
19 | src: url('#{$roboto-font-path}/Roboto-#{$type}.eot?#iefix') format('embedded-opentype'), | ||
20 | url('#{$roboto-font-path}/Roboto-#{$type}.woff2') format('woff2'), | ||
21 | url('#{$roboto-font-path}/Roboto-#{$type}.woff') format('woff'), | ||
22 | url('#{$roboto-font-path}/Roboto-#{$type}.ttf') format('truetype'), | ||
23 | url('#{$roboto-font-path}/Roboto-#{$type}.svg#Roboto') format('svg'); | ||
24 | } | ||
25 | } | ||
26 | |||
27 | @mixin roboto-font-pair($type, $weight) { | ||
28 | @include roboto-font($type, $weight); | ||
29 | @include roboto-font(#{$type}Italic, $weight, italic); | ||
30 | } | ||
31 | |||
32 | @include roboto-font-pair('Thin', 100); | ||
33 | @include roboto-font-pair('Light', 300); | ||
34 | @include roboto-font-pair('Regular', 400); | ||
35 | @include roboto-font-pair('Medium', 500); | ||
36 | @include roboto-font-pair('Bold', 700); | ||
37 | @include roboto-font-pair('Black', 900); | ||
diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Black.eot b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Black.eot new file mode 100755 index 0000000..fb31517 --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Black.eot | |||
Binary files differ | |||
diff --git a/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Black.svg b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Black.svg new file mode 100755 index 0000000..dbfd08f --- /dev/null +++ b/xstatic/pkg/roboto_fontface/data/fonts/Roboto-Black.svg | |||
@@ -0,0 +1,10968 @@ | |||
1 | <?xml version="1.0" standalone="no"?> | ||
2 | <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > | ||
3 | <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1"> | ||
4 | <metadata> | ||
5 | Created by FontForge 20150102 at Thu Feb 26 00:52:08 2015 | ||
6 | By uniteet7 | ||
7 | Copyright 2011 Google Inc. All Rights Reserved. | ||
8 | </metadata> | ||
9 | <defs> | ||
10 | <font id="RobotoBlack" horiz-adv-x="1395" > | ||
11 | <font-face | ||
12 | font-family="RobotoBlack" | ||
13 | font-weight="900" | ||
14 | font-stretch="normal" | ||
15 | units-per-em="2048" | ||
16 | panose-1="2 0 0 0 0 0 0 0 0 0" | ||
17 | ascent="1536" | ||
18 | descent="-512" | ||
19 | x-height="1082" | ||
20 | cap-height="1456" | ||
21 | bbox="-1476 -555 2482 2163" | ||
22 | underline-thickness="100" | ||
23 | underline-position="-100" | ||
24 | unicode-range="U+0002-FFFD" | ||
25 | /> | ||
26 | <missing-glyph horiz-adv-x="908" | ||
27 | d="M808 0h-708v1456h708v-1456zM754 84v1287l-274 -643zM154 1359v-1263l268 632zM194 54h515l-258 606zM451 796l258 606h-515z" /> | ||
28 | <glyph glyph-name="uniFB01" unicode="fi" horiz-adv-x="1302" | ||
29 | d="M173 0v848h-157v234h157v36q3 216 142 331q132 108 369 108q149 0 352 -58l-46 -266l-56 15q-109 29 -230 29q-193 0 -193 -176v-19h212v-234h-212v-848h-338zM1191 0h-339v1082h339v-1082z" /> | ||
30 | <glyph glyph-name="uniFB02" unicode="fl" horiz-adv-x="1298" | ||
31 | d="M848 1290q-86 7 -145 7q-196 0 -196 -153v-62h211v-234h-211v-848h-338v848h-157v234h157v70q1 194 125.5 299.5t356.5 105.5q165 0 536 -21v-1536h-339v1290z" /> | ||
32 | <glyph glyph-name=".notdef" horiz-adv-x="908" | ||
33 | d="M808 0h-708v1456h708v-1456zM754 84v1287l-274 -643zM154 1359v-1263l268 632zM194 54h515l-258 606zM451 796l258 606h-515z" /> | ||
34 | <glyph glyph-name="uni0000" horiz-adv-x="0" | ||
35 | /> | ||
36 | <glyph glyph-name="uni0000" horiz-adv-x="0" | ||
37 | /> | ||
38 | <glyph glyph-name="uni000D" unicode="
" horiz-adv-x="510" | ||
39 | /> | ||
40 | <glyph glyph-name="uni0002" horiz-adv-x="0" | ||
41 | /> | ||
42 | <glyph glyph-name="space" unicode=" " horiz-adv-x="510" | ||
43 | /> | ||
44 | <glyph glyph-name="exclam" unicode="!" horiz-adv-x="565" | ||
45 | d="M429 461h-273l-43 995h359zM103 151q0 74 53.5 121.5t133.5 47.5t133.5 -47.5t53.5 -121.5t-53.5 -121.5t-133.5 -47.5t-133.5 47.5t-53.5 121.5z" /> | ||
46 | <glyph glyph-name="quotedbl" unicode=""" horiz-adv-x="649" | ||
47 | d="M255 1398l-43 -429h-187v568h230v-139zM606 1398l-43 -429h-185v568h228v-139z" /> | ||
48 | <glyph glyph-name="numbersign" unicode="#" horiz-adv-x="1190" | ||
49 | d="M612 410h-161l-67 -410h-199l67 410h-222v183h252l44 264h-221v183h251l69 416h198l-68 -416h161l69 416h199l-69 -416h231v-183h-261l-44 -264h229v-183h-259l-67 -410h-199zM481 593h161l44 264h-161z" /> | ||
50 | <glyph glyph-name="dollar" unicode="$" horiz-adv-x="1186" | ||
51 | d="M760 386q0 79 -39 124t-137 85t-181 81t-143 95t-92 125t-32 172q0 169 114 278.5t304 127.5v211h159v-215q183 -27 287.5 -150.5t104.5 -313.5h-338q0 104 -40 160t-114 56q-66 0 -102.5 -41.5t-36.5 -114.5q0 -74 42 -117.5t135 -83t175.5 -82t142.5 -96.5t94 -126 | ||
52 | t34 -173q0 -171 -108.5 -279t-295.5 -126v-201h-159v202q-218 23 -334.5 149.5t-116.5 333.5h337q0 -114 50.5 -173.5t143.5 -59.5q68 0 107 40.5t39 111.5z" /> | ||
53 | <glyph glyph-name="percent" unicode="%" horiz-adv-x="1520" | ||
54 | d="M90 1176q0 135 88 218t236 83q150 0 237 -82.5t87 -223.5v-72q0 -135 -87 -217t-235 -82q-147 0 -236.5 81.5t-89.5 223.5v71zM307 1099q0 -52 29 -84.5t80 -32.5q105 0 105 134v60q0 52 -28 85.5t-79 33.5q-49 0 -78 -32.5t-29 -88.5v-75zM782 357q0 136 88.5 218 | ||
55 | t235.5 82q149 0 237 -81t88 -226v-70q0 -136 -87 -218t-236 -82q-147 0 -236.5 81.5t-89.5 223.5v72zM998 280q0 -47 32 -82.5t78 -35.5q97 0 105 92l1 103q0 53 -29 85.5t-79 32.5q-48 0 -77 -30.5t-31 -82.5v-82zM480 109l-157 79l711 1138l157 -79z" /> | ||
56 | <glyph glyph-name="ampersand" unicode="&" horiz-adv-x="1380" | ||
57 | d="M311 767q-59 84 -92.5 160t-33.5 157q0 176 114 284.5t298 108.5q165 0 273 -100.5t108 -249.5q0 -186 -205 -330l-76 -53l224 -257q55 110 55 241h283q0 -295 -136 -473l222 -255h-376l-68 77q-84 -50 -171.5 -74t-197.5 -24q-216 0 -346 113.5t-130 298.5 | ||
58 | q0 101 51.5 183t200.5 191zM554 239q88 0 168 41l-262 298l-9 -6q-57 -70 -57 -158q0 -73 46 -124t114 -51zM476 1088q0 -70 76 -170l67 42q46 30 67 62t21 81q0 46 -32 80t-79 34q-56 0 -88 -35.5t-32 -93.5z" /> | ||
59 | <glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="316" | ||
60 | d="M283 1374l-33 -413h-207v575h240v-162z" /> | ||
61 | <glyph glyph-name="parenleft" unicode="(" horiz-adv-x="723" | ||
62 | d="M120 592q0 244 65 454t179.5 356t254.5 204l64 -166q-140 -103 -216.5 -321.5t-77.5 -512.5v-44q0 -301 76.5 -522t217.5 -324l-64 -166q-138 56 -254.5 204.5t-179.5 354.5t-65 438v45z" /> | ||
63 | <glyph glyph-name="parenright" unicode=")" horiz-adv-x="721" | ||
64 | d="M626 564q0 -235 -69 -446t-190.5 -362.5t-262.5 -205.5l-64 166q139 104 215 320t79 497v61q0 301 -76.5 522t-217.5 324l64 166q140 -55 260.5 -203.5t190 -357t71.5 -437.5v-44z" /> | ||
65 | <glyph glyph-name="asterisk" unicode="*" horiz-adv-x="952" | ||
66 | d="M352 956l-326 90l65 189l319 -131l-25 352h214l-26 -359l310 128l65 -191l-330 -90l219 -265l-173 -118l-183 294l-184 -284l-173 113z" /> | ||
67 | <glyph glyph-name="plus" unicode="+" horiz-adv-x="1094" | ||
68 | d="M702 826h341v-289h-341v-391h-315v391h-342v289h342v380h315v-380z" /> | ||
69 | <glyph glyph-name="comma" unicode="," horiz-adv-x="552" | ||
70 | d="M213 -392l-170 80l34 68q70 130 73 248v250h270l-1 -217q-1 -115 -59 -234t-147 -195z" /> | ||
71 | <glyph glyph-name="hyphen" unicode="-" horiz-adv-x="921" | ||
72 | d="M753 497h-601v261h601v-261z" /> | ||
73 | <glyph glyph-name="period" unicode="." horiz-adv-x="619" | ||
74 | d="M303 327q80 0 133 -47.5t53 -121.5t-53 -121.5t-133 -47.5q-81 0 -133.5 48t-52.5 121t52.5 121t133.5 48z" /> | ||
75 | <glyph glyph-name="slash" unicode="/" horiz-adv-x="719" | ||
76 | d="M210 -125h-239l497 1581h240z" /> | ||
77 | <glyph glyph-name="zero" unicode="0" horiz-adv-x="1186" | ||
78 | d="M1100 595q0 -295 -132.5 -455t-373.5 -160q-243 0 -376 161t-133 454v266q0 295 132.5 455t374.5 160t375 -161t133 -455v-265zM763 904q0 157 -41 234.5t-130 77.5q-87 0 -126.5 -72t-42.5 -218v-372q0 -163 41 -238.5t130 -75.5q86 0 127 73.5t42 230.5v360z" /> | ||
79 | <glyph glyph-name="one" unicode="1" horiz-adv-x="1186" | ||
80 | d="M836 0h-338v1076l-332 -97v256l639 221h31v-1456z" /> | ||
81 | <glyph glyph-name="two" unicode="2" horiz-adv-x="1186" | ||
82 | d="M1105 0h-1016v220l468 492q173 197 173 313q0 94 -41 143t-119 49q-77 0 -125 -65.5t-48 -163.5h-338q0 134 67 247.5t186 177.5t266 64q236 0 363.5 -109t127.5 -313q0 -86 -32 -167.5t-99.5 -171t-217.5 -239.5l-188 -217h573v-260z" /> | ||
83 | <glyph glyph-name="three" unicode="3" horiz-adv-x="1186" | ||
84 | d="M397 869h159q189 0 189 185q0 72 -45 117.5t-127 45.5q-67 0 -116.5 -39t-49.5 -97h-337q0 115 64 205t177.5 140.5t249.5 50.5q243 0 382 -111t139 -305q0 -94 -57.5 -177.5t-167.5 -135.5q116 -42 182 -127.5t66 -211.5q0 -195 -150 -312t-394 -117q-143 0 -265.5 54.5 | ||
85 | t-185.5 151t-63 219.5h339q0 -67 54 -116t133 -49q89 0 142 49.5t53 126.5q0 110 -55 156t-152 46h-164v251z" /> | ||
86 | <glyph glyph-name="four" unicode="4" horiz-adv-x="1186" | ||
87 | d="M979 569h148v-260h-148v-309h-337v309h-563l-20 206l583 938v3h337v-887zM380 569h262v448l-21 -34z" /> | ||
88 | <glyph glyph-name="five" unicode="5" horiz-adv-x="1186" | ||
89 | d="M109 712l89 744h851v-262h-577l-33 -289q36 21 94.5 37t114.5 16q217 0 333.5 -128.5t116.5 -360.5q0 -140 -62.5 -253.5t-175.5 -174.5t-267 -61q-137 0 -257 56.5t-188 155t-67 222.5h338q5 -80 51 -127t121 -47q170 0 170 252q0 233 -208 233q-118 0 -176 -76z" /> | ||
90 | <glyph glyph-name="six" unicode="6" horiz-adv-x="1186" | ||
91 | d="M903 1477v-265h-15q-189 0 -310.5 -90.5t-149.5 -251.5q114 112 288 112q189 0 301 -138t112 -362q0 -139 -65.5 -255t-183 -181.5t-260.5 -65.5q-155 0 -277 70.5t-190 201.5t-70 302v135q0 225 96.5 404.5t275.5 281.5t397 102h51zM599 724q-67 0 -112 -31t-67 -76 | ||
92 | v-101q0 -276 191 -276q77 0 128.5 69t51.5 173q0 107 -52.5 174.5t-139.5 67.5z" /> | ||
93 | <glyph glyph-name="seven" unicode="7" horiz-adv-x="1186" | ||
94 | d="M1101 1276l-544 -1276h-356l545 1196h-694v260h1049v-180z" /> | ||
95 | <glyph glyph-name="eight" unicode="8" horiz-adv-x="1186" | ||
96 | d="M1071 1067q0 -106 -52.5 -187t-144.5 -130q104 -51 165 -139.5t61 -209.5q0 -195 -134.5 -308t-370.5 -113q-237 0 -374 113.5t-137 307.5q0 117 60 207t170 142q-93 49 -146 130t-53 187q0 190 129 300t348 110q221 0 350 -110t129 -300zM762 428q0 90 -46.5 138.5 | ||
97 | t-122.5 48.5t-123 -48.5t-47 -138.5q0 -87 47.5 -137.5t124.5 -50.5q75 0 121 50t46 138zM592 1217q-68 0 -103.5 -44.5t-35.5 -123.5q0 -78 36 -126t106 -48q69 0 103.5 48t34.5 126t-35.5 123t-105.5 45z" /> | ||
98 | <glyph glyph-name="nine" unicode="9" horiz-adv-x="1186" | ||
99 | d="M753 563q-109 -98 -244 -98q-198 0 -314 134t-116 358q0 140 65 260t182.5 190t259.5 70q144 0 260.5 -72.5t181.5 -205t67 -305.5v-129q0 -241 -94.5 -418t-269.5 -272t-408 -95h-21v270l64 1q348 17 387 312zM600 708q110 0 158 95v140q0 140 -47 207t-127 67 | ||
100 | q-71 0 -119 -76t-48 -184q0 -114 49 -181.5t134 -67.5z" /> | ||
101 | <glyph glyph-name="colon" unicode=":" horiz-adv-x="615" | ||
102 | d="M304 327q80 0 133 -47.5t53 -121.5t-53 -121.5t-133 -47.5q-81 0 -133.5 48t-52.5 121t52.5 121t133.5 48zM304 1125q80 0 133 -47.5t53 -121.5t-53 -121.5t-133 -47.5q-81 0 -133.5 48t-52.5 121t52.5 121t133.5 48z" /> | ||
103 | <glyph glyph-name="semicolon" unicode=";" horiz-adv-x="590" | ||
104 | d="M294 1125q80 0 133 -47.5t53 -121.5t-53 -121.5t-133 -47.5q-81 0 -133.5 48t-52.5 121t52.5 121t133.5 48zM238 -392l-170 80l34 68q70 130 73 248v250h270l-1 -217q-1 -115 -59 -234t-147 -195z" /> | ||
105 | <glyph glyph-name="less" unicode="<" horiz-adv-x="1044" | ||
106 | d="M383 609l547 -184v-307l-884 360v266l884 360v-306z" /> | ||
107 | <glyph glyph-name="equal" unicode="=" horiz-adv-x="1199" | ||
108 | d="M1054 722h-926v260h926v-260zM1054 283h-926v260h926v-260z" /> | ||
109 | <glyph glyph-name="greater" unicode=">" horiz-adv-x="1050" | ||
110 | d="M655 612l-544 185v306l879 -360v-266l-879 -360v306z" /> | ||
111 | <glyph glyph-name="question" unicode="?" horiz-adv-x="1043" | ||
112 | d="M344 461q0 146 33 230.5t107 146.5t112.5 113.5t38.5 113.5q0 151 -130 151q-60 0 -97 -44t-39 -119h-338q2 200 126 311.5t348 111.5q223 0 345.5 -103t122.5 -293q0 -83 -33 -151t-106 -139l-115 -107q-49 -47 -68 -96.5t-21 -125.5h-286zM303 157q0 74 53.5 121.5 | ||
113 | t133.5 47.5t133.5 -47.5t53.5 -121.5t-53.5 -121.5t-133.5 -47.5t-133.5 47.5t-53.5 121.5z" /> | ||
114 | <glyph glyph-name="at" unicode="@" horiz-adv-x="1834" | ||
115 | d="M1756 550q-10 -261 -130 -416t-320 -155q-82 0 -145 35.5t-98 100.5q-98 -132 -263 -132q-96 0 -168 56.5t-105.5 160.5t-20.5 236q30 250 161 402t321 152q147 0 253 -68l63 -42l-51 -587q-17 -139 96 -139q85 0 142.5 108.5t63.5 277.5q17 334 -138.5 516t-455.5 182 | ||
116 | q-191 0 -339.5 -97.5t-235 -276t-97.5 -406.5q-16 -350 140 -535.5t468 -185.5q84 0 178 19.5t153 45.5l37 -166q-61 -40 -164.5 -64.5t-207.5 -24.5q-273 0 -461.5 104.5t-280.5 309.5t-82 497q12 276 127.5 494.5t316 338t452.5 119.5t435 -104.5t275 -300.5t81 -455z | ||
117 | M756 436q-11 -130 20.5 -196.5t101.5 -66.5q47 0 86.5 42t65.5 120l40 456q-30 8 -62 8q-112 0 -172.5 -87.5t-79.5 -275.5z" /> | ||
118 | <glyph glyph-name="A" unicode="A" | ||
119 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505z" /> | ||
120 | <glyph glyph-name="B" unicode="B" horiz-adv-x="1321" | ||
121 | d="M110 0v1456h523q281 0 427.5 -103t146.5 -299q0 -113 -52 -193t-153 -118q114 -30 175 -112t61 -200q0 -214 -135.5 -321.5t-401.5 -109.5h-591zM461 619v-349h230q95 0 146 43.5t51 122.5q0 182 -181 183h-246zM461 849h183q115 1 164 42t49 121q0 92 -53 132.5 | ||
122 | t-171 40.5h-172v-336z" /> | ||
123 | <glyph glyph-name="C" unicode="C" horiz-adv-x="1344" | ||
124 | d="M1288 493q-7 -152 -82 -268.5t-210.5 -180.5t-309.5 -64q-287 0 -452 187t-165 528v72q0 214 74.5 374.5t214.5 248t324 87.5q265 0 426 -139.5t183 -384.5h-350q-4 133 -67 191t-192 58q-131 0 -192 -98t-64 -313v-103q0 -233 58.5 -333t201.5 -100q121 0 185 57t68 181 | ||
125 | h349z" /> | ||
126 | <glyph glyph-name="D" unicode="D" horiz-adv-x="1324" | ||
127 | d="M110 0v1456h469q193 0 347 -87.5t240.5 -247t87.5 -357.5v-67q0 -200 -84.5 -358.5t-238 -248t-342.5 -90.5h-479zM461 1185v-915h122q151 0 232 107.5t81 319.5v63q0 211 -81 318t-236 107h-118z" /> | ||
128 | <glyph glyph-name="E" unicode="E" horiz-adv-x="1146" | ||
129 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261z" /> | ||
130 | <glyph glyph-name="F" unicode="F" horiz-adv-x="1120" | ||
131 | d="M1027 580h-566v-580h-351v1456h974v-271h-623v-335h566v-270z" /> | ||
132 | <glyph glyph-name="G" unicode="G" horiz-adv-x="1396" | ||
133 | d="M1302 180q-81 -90 -237 -145t-342 -55q-286 0 -457 175t-183 487l-1 126q0 215 76 375.5t217.5 247t327.5 86.5q272 0 422.5 -124.5t175.5 -371.5h-338q-18 122 -78 174t-170 52q-132 0 -204 -112t-73 -320v-88q0 -218 74.5 -327.5t234.5 -109.5q137 0 204 61v226h-244 | ||
134 | v241h595v-598z" /> | ||
135 | <glyph glyph-name="H" unicode="H" horiz-adv-x="1439" | ||
136 | d="M1327 0h-349v608h-517v-608h-351v1456h351v-578h517v578h349v-1456z" /> | ||
137 | <glyph glyph-name="I" unicode="I" horiz-adv-x="618" | ||
138 | d="M484 0h-350v1456h350v-1456z" /> | ||
139 | <glyph glyph-name="J" unicode="J" horiz-adv-x="1151" | ||
140 | d="M690 1456h350v-999q0 -139 -64.5 -248t-180 -169t-257.5 -60q-238 0 -370 120t-132 340h352q0 -100 34.5 -145t115.5 -45q73 0 112.5 54.5t39.5 152.5v999z" /> | ||
141 | <glyph glyph-name="K" unicode="K" horiz-adv-x="1310" | ||
142 | d="M605 542l-144 -158v-384h-351v1456h351v-642l122 185l314 457h434l-492 -644l492 -812h-416z" /> | ||
143 | <glyph glyph-name="L" unicode="L" horiz-adv-x="1110" | ||
144 | d="M461 270h611v-270h-962v1456h351v-1186z" /> | ||
145 | <glyph glyph-name="M" unicode="M" horiz-adv-x="1795" | ||
146 | d="M571 1456l325 -1013l324 1013h462v-1456h-352v340l34 696l-352 -1036h-232l-353 1037l34 -697v-340h-351v1456h461z" /> | ||
147 | <glyph glyph-name="N" unicode="N" horiz-adv-x="1438" | ||
148 | d="M1326 0h-349l-516 906v-906h-351v1456h351l515 -906v906h350v-1456z" /> | ||
149 | <glyph glyph-name="O" unicode="O" horiz-adv-x="1414" | ||
150 | d="M1343 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 85.5t-224.5 244.5t-84.5 365v82q0 214 78.5 377.5t225 252.5t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM986 759q0 217 -72.5 329.5t-207.5 112.5q-264 0 -279 -396l-1 -107q0 -214 71 -329 | ||
151 | t211 -115q133 0 205 113t73 325v67z" /> | ||
152 | <glyph glyph-name="P" unicode="P" horiz-adv-x="1333" | ||
153 | d="M461 494v-494h-351v1456h581q167 0 295.5 -61.5t199 -175t70.5 -257.5q0 -213 -152.5 -340.5t-418.5 -127.5h-224zM461 765h230q102 0 155.5 51t53.5 144q0 102 -55 163t-150 62h-234v-420z" /> | ||
154 | <glyph glyph-name="Q" unicode="Q" horiz-adv-x="1414" | ||
155 | d="M1345 698q0 -202 -67 -352.5t-185 -241.5l235 -186l-217 -184l-313 252q-44 -6 -88 -6q-186 0 -330 86t-224.5 246t-83.5 368v77q0 215 78.5 378t224 252t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM988 759q0 217 -72.5 329.5t-207.5 112.5 | ||
156 | q-139 0 -209 -111t-71 -325v-67q0 -215 71 -329.5t211 -114.5q134 0 205.5 113t72.5 325v67z" /> | ||
157 | <glyph glyph-name="R" unicode="R" horiz-adv-x="1336" | ||
158 | d="M651 514h-190v-514h-351v1456h573q259 0 405 -115t146 -325q0 -152 -61.5 -252t-192.5 -162l304 -587v-15h-376zM461 785h222q100 0 150.5 52.5t50.5 146.5t-51 147.5t-150 53.5h-222v-400z" /> | ||
159 | <glyph glyph-name="S" unicode="S" horiz-adv-x="1282" | ||
160 | d="M861 387q0 77 -54.5 120t-191.5 89t-224 89q-283 139 -283 382q0 121 70.5 213.5t199.5 144t290 51.5q157 0 281.5 -56t193.5 -159.5t69 -236.5h-350q0 89 -54.5 138t-147.5 49q-94 0 -148.5 -41.5t-54.5 -105.5q0 -56 60 -101.5t211 -94t248 -104.5q236 -136 236 -375 | ||
161 | q0 -191 -144 -300t-395 -109q-177 0 -320.5 63.5t-216 174t-72.5 254.5h352q0 -117 60.5 -172.5t196.5 -55.5q87 0 137.5 37.5t50.5 105.5z" /> | ||
162 | <glyph glyph-name="T" unicode="T" horiz-adv-x="1291" | ||
163 | d="M1253 1185h-437v-1185h-351v1185h-429v271h1217v-271z" /> | ||
164 | <glyph glyph-name="U" unicode="U" horiz-adv-x="1361" | ||
165 | d="M1252 1456v-953q0 -162 -69 -280.5t-198 -180.5t-305 -62q-266 0 -419 138t-156 378v960h353v-967q6 -239 222 -239q109 0 165 60t56 195v951h351z" /> | ||
166 | <glyph glyph-name="V" unicode="V" horiz-adv-x="1353" | ||
167 | d="M675 396l290 1060h392l-490 -1456h-384l-486 1456h389z" /> | ||
168 | <glyph glyph-name="W" unicode="W" horiz-adv-x="1780" | ||
169 | d="M1238 543l167 913h348l-309 -1456h-364l-195 830l-191 -830h-363l-310 1456h349l167 -913l200 913h298z" /> | ||
170 | <glyph glyph-name="X" unicode="X" horiz-adv-x="1307" | ||
171 | d="M653 972l238 484h401l-407 -722l418 -734h-405l-245 493l-245 -493h-404l417 734l-406 722h400z" /> | ||
172 | <glyph glyph-name="Y" unicode="Y" horiz-adv-x="1286" | ||
173 | d="M643 824l268 632h379l-469 -933v-523h-356v523l-468 933h377z" /> | ||
174 | <glyph glyph-name="Z" unicode="Z" horiz-adv-x="1249" | ||
175 | d="M504 270h696v-270h-1134v185l694 1000h-698v271h1131v-180z" /> | ||
176 | <glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="577" | ||
177 | d="M564 1460h-118v-1564h118v-245h-456v2055h456v-246z" /> | ||
178 | <glyph glyph-name="backslash" unicode="\" horiz-adv-x="873" | ||
179 | d="M-20 1456h351l608 -1581h-353z" /> | ||
180 | <glyph glyph-name="bracketright" unicode="]" horiz-adv-x="577" | ||
181 | d="M14 1706h456v-2055h-456v245h119v1564h-119v246z" /> | ||
182 | <glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="916" | ||
183 | d="M460 1182l-171 -453h-253l299 727h249l300 -727h-254z" /> | ||
184 | <glyph glyph-name="underscore" unicode="_" horiz-adv-x="904" | ||
185 | d="M903 -251h-903v251h903v-251z" /> | ||
186 | <glyph glyph-name="grave" unicode="`" horiz-adv-x="695" | ||
187 | d="M610 1222h-274l-282 314h356z" /> | ||
188 | <glyph glyph-name="a" unicode="a" horiz-adv-x="1087" | ||
189 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
190 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5z" /> | ||
191 | <glyph glyph-name="b" unicode="b" horiz-adv-x="1153" | ||
192 | d="M1099 532q0 -266 -110 -409t-310 -143q-165 0 -266 131l-14 -111h-302v1536h337v-541q94 107 243 107q202 0 312 -145t110 -408v-17zM761 553q0 156 -41.5 222.5t-127.5 66.5q-114 0 -158 -87v-430q43 -86 160 -86q119 0 151 116q16 57 16 198z" /> | ||
193 | <glyph glyph-name="c" unicode="c" horiz-adv-x="1064" | ||
194 | d="M552 240q71 0 110 38.5t38 107.5h316q0 -178 -127.5 -292t-328.5 -114q-236 0 -372 148t-136 410v14q0 164 60.5 289.5t174.5 193t270 67.5q211 0 335 -117t124 -317h-316q0 84 -41 129t-110 45q-131 0 -153 -167q-7 -53 -7 -146q0 -163 39 -226t124 -63z" /> | ||
195 | <glyph glyph-name="d" unicode="d" horiz-adv-x="1152" | ||
196 | d="M52 549q0 257 111 405t310 148q145 0 244 -114v548h338v-1536h-303l-17 116q-104 -136 -264 -136q-193 0 -306 148t-113 421zM389 528q0 -288 168 -288q112 0 160 94v412q-46 96 -158 96q-156 0 -169 -252z" /> | ||
197 | <glyph glyph-name="e" unicode="e" horiz-adv-x="1115" | ||
198 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
199 | t-123 44.5z" /> | ||
200 | <glyph glyph-name="f" unicode="f" horiz-adv-x="742" | ||
201 | d="M169 0v848h-157v234h157v86q0 185 109 287t306 102q72 0 158 -21l1 -248q-31 9 -83 9q-153 0 -153 -132v-83h211v-234h-211v-848h-338z" /> | ||
202 | <glyph glyph-name="g" unicode="g" horiz-adv-x="1178" | ||
203 | d="M55 549q0 164 54 290t155 194.5t235 68.5q169 0 264 -114l12 94h306v-1041q0 -143 -66.5 -248.5t-192.5 -162t-292 -56.5q-119 0 -230.5 45t-170.5 117l141 198q94 -111 248 -111q224 0 224 230v34q-97 -107 -245 -107q-198 0 -320 151.5t-122 405.5v12zM393 528 | ||
204 | q0 -133 50 -210.5t140 -77.5q109 0 159 73v455q-49 74 -157 74q-90 0 -141 -80.5t-51 -233.5z" /> | ||
205 | <glyph glyph-name="h" unicode="h" horiz-adv-x="1156" | ||
206 | d="M424 966q108 136 276 136q179 0 270 -106t93 -313v-683h-338v675q0 86 -35 126.5t-119 40.5q-104 0 -147 -66v-776h-337v1536h337v-570z" /> | ||
207 | <glyph glyph-name="i" unicode="i" horiz-adv-x="563" | ||
208 | d="M450 0h-338v1082h338v-1082zM92 1361q0 72 52 118t135 46t135 -46t52 -118t-52 -118t-135 -46t-135 46t-52 118z" /> | ||
209 | <glyph glyph-name="j" unicode="j" horiz-adv-x="553" | ||
210 | d="M457 1082v-1119q-1 -192 -110 -296t-304 -104q-84 0 -159 17v255q58 -9 95 -9q140 0 140 139v1117h338zM94 1361q0 72 52 118t135 46t135 -46t52 -118t-52 -118t-135 -46t-135 46t-52 118z" /> | ||
211 | <glyph glyph-name="k" unicode="k" horiz-adv-x="1120" | ||
212 | d="M529 403l-95 -95v-308h-337v1537h337v-816l34 45l254 316h404l-379 -445l404 -637h-386z" /> | ||
213 | <glyph glyph-name="l" unicode="l" horiz-adv-x="563" | ||
214 | d="M450 0h-338v1536h338v-1536z" /> | ||
215 | <glyph glyph-name="m" unicode="m" horiz-adv-x="1764" | ||
216 | d="M413 1082l11 -127q115 147 309 147q205 0 277 -163q110 163 318 163q329 0 338 -398v-704h-338v683q0 83 -28 121t-102 38q-100 0 -149 -89l1 -14v-739h-338v681q0 85 -27 123t-103 38q-97 0 -148 -89v-753h-337v1082h316z" /> | ||
217 | <glyph glyph-name="n" unicode="n" horiz-adv-x="1155" | ||
218 | d="M404 1082l11 -127q112 147 309 147q169 0 252.5 -101t86.5 -304v-697h-338v683q0 82 -33 120.5t-120 38.5q-99 0 -147 -78v-764h-337v1082h316z" /> | ||
219 | <glyph glyph-name="o" unicode="o" horiz-adv-x="1150" | ||
220 | d="M52 551q0 162 63 288.5t181 194.5t277 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-231 0 -371 138.5t-151 375.5zM389 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251z" /> | ||
221 | <glyph glyph-name="p" unicode="p" horiz-adv-x="1153" | ||
222 | d="M1099 533q0 -252 -113.5 -402.5t-306.5 -150.5q-149 0 -245 109v-505h-337v1498h315l10 -100q97 120 255 120q200 0 311 -147.5t111 -405.5v-16zM762 554q0 288 -168 288q-120 0 -160 -86v-426q44 -90 162 -90q161 0 166 278v36z" /> | ||
223 | <glyph glyph-name="q" unicode="q" horiz-adv-x="1151" | ||
224 | d="M52 552q0 258 112 404t309 146q166 0 266 -136l24 116h292v-1498h-338v506q-97 -110 -246 -110q-192 0 -305.5 148.5t-113.5 423.5zM389 531q0 -291 168 -291q116 0 160 88v428q-42 86 -158 86q-157 0 -169 -251z" /> | ||
225 | <glyph glyph-name="r" unicode="r" horiz-adv-x="776" | ||
226 | d="M749 777l-111 8q-159 0 -204 -100v-685h-337v1082h316l11 -139q85 159 237 159q54 0 94 -12z" /> | ||
227 | <glyph glyph-name="s" unicode="s" horiz-adv-x="1049" | ||
228 | d="M661 304q0 43 -45 69t-171 54t-208 73.5t-125 110.5t-43 149q0 149 123 245.5t322 96.5q214 0 344 -97t130 -255h-338q0 130 -137 130q-53 0 -89 -29.5t-36 -73.5q0 -45 44 -73t140.5 -46t169.5 -43q244 -84 244 -301q0 -148 -131.5 -241t-340.5 -93q-139 0 -248 50 | ||
229 | t-170 136t-61 181h315q2 -75 50 -109.5t123 -34.5q69 0 103.5 28t34.5 73z" /> | ||
230 | <glyph glyph-name="t" unicode="t" horiz-adv-x="703" | ||
231 | d="M487 1351v-269h178v-234h-178v-495q0 -61 22 -85t87 -24q50 0 84 6v-241q-91 -29 -190 -29q-174 0 -257 82t-83 249v537h-138v234h138v269h337z" /> | ||
232 | <glyph glyph-name="u" unicode="u" horiz-adv-x="1155" | ||
233 | d="M739 117q-107 -137 -289 -137q-178 0 -269.5 103.5t-91.5 297.5v701h337v-703q0 -139 135 -139q116 0 165 83v759h339v-1082h-316z" /> | ||
234 | <glyph glyph-name="v" unicode="v" horiz-adv-x="1058" | ||
235 | d="M526 401l171 681h355l-353 -1082h-344l-353 1082h356z" /> | ||
236 | <glyph glyph-name="w" unicode="w" horiz-adv-x="1487" | ||
237 | d="M1029 444l109 638h323l-255 -1082h-285l-179 642l-180 -642h-285l-255 1082h323l107 -653l172 653h235z" /> | ||
238 | <glyph glyph-name="x" unicode="x" horiz-adv-x="1054" | ||
239 | d="M533 784l157 298h350l-285 -527l299 -555h-352l-170 320l-167 -320h-354l300 555l-284 527h354z" /> | ||
240 | <glyph glyph-name="y" unicode="y" horiz-adv-x="1061" | ||
241 | d="M527 472l180 610h361l-441 -1263l-19 -46q-94 -210 -332 -210q-66 0 -139 20v241h44q71 0 108.5 20.5t55.5 73.5l27 72l-376 1092h360z" /> | ||
242 | <glyph glyph-name="z" unicode="z" horiz-adv-x="1054" | ||
243 | d="M492 260h493v-260h-919v188l480 634h-459v260h887v-182z" /> | ||
244 | <glyph glyph-name="braceleft" unicode="{" horiz-adv-x="665" | ||
245 | d="M562 -360q-360 101 -360 465v198q0 202 -162 202v227q162 0 162 203v210q3 180 93.5 291t266.5 161l63 -176q-126 -48 -131 -269v-217q0 -224 -185 -316q185 -92 185 -317v-216q5 -221 131 -269z" /> | ||
246 | <glyph glyph-name="bar" unicode="|" horiz-adv-x="523" | ||
247 | d="M356 -270h-184v1726h184v-1726z" /> | ||
248 | <glyph glyph-name="braceright" unicode="}" horiz-adv-x="665" | ||
249 | d="M41 -183q126 48 131 269v217q0 225 186 316q-186 91 -186 316v217q-5 221 -131 269l63 176q179 -50 269 -163.5t91 -297.5v-201q0 -203 162 -203v-227q-162 0 -162 -201v-213q-7 -352 -360 -451z" /> | ||
250 | <glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="1295" | ||
251 | d="M1197 799q0 -196 -91.5 -314t-242.5 -118q-75 0 -135.5 29t-137 104.5t-141.5 75.5q-50 0 -83.5 -49t-33.5 -122l-238 4q0 196 89.5 311.5t242.5 115.5q76 0 139 -29.5t137.5 -104t137.5 -74.5q51 0 83.5 49.5t32.5 122.5z" /> | ||
252 | <glyph glyph-name="uni00A0" unicode=" " horiz-adv-x="510" | ||
253 | /> | ||
254 | <glyph glyph-name="exclamdown" unicode="¡" horiz-adv-x="615" | ||
255 | d="M171 623h273l43 -995h-359zM497 933q0 -74 -53.5 -121.5t-133.5 -47.5t-133.5 47.5t-53.5 121.5t53.5 121.5t133.5 47.5t133.5 -47.5t53.5 -121.5z" /> | ||
256 | <glyph glyph-name="cent" unicode="¢" horiz-adv-x="1209" | ||
257 | d="M598 240q71 0 110 38.5t38 107.5h316q0 -156 -97 -262.5t-255 -134.5v-234h-200v232q-193 28 -302.5 171.5t-109.5 375.5v18q0 224 109 369.5t303 173.5v223h200v-225q165 -29 258.5 -141.5t93.5 -283.5h-316q0 84 -41 129t-110 45q-131 0 -153 -167q-7 -53 -7 -146 | ||
258 | q0 -163 39 -226t124 -63z" /> | ||
259 | <glyph glyph-name="sterling" unicode="£" horiz-adv-x="1229" | ||
260 | d="M621 561l5 -112q0 -114 -59 -179h608v-270h-1069v270h103q57 15 60 103l1 53l-5 135h-162v261h154l-6 217q0 205 122.5 320.5t331.5 115.5q224 0 349.5 -115t125.5 -312h-330q0 157 -136 157q-51 0 -82 -40.5t-31 -125.5l9 -217h307v-261h-296z" /> | ||
261 | <glyph glyph-name="currency" unicode="¤" horiz-adv-x="1397" | ||
262 | d="M1061 107q-159 -127 -361 -127q-203 0 -361 126l-129 -132l-141 144l135 137q-100 156 -100 353q0 204 109 365l-144 147l141 144l142 -145q155 115 348 115q194 0 349 -117l144 148l142 -145l-148 -151q107 -159 107 -361q0 -193 -98 -349l139 -141l-142 -145zM290 608 | ||
263 | q0 -118 54 -218.5t149 -158.5t207 -58q111 0 206 58t149 158.5t54 218.5q0 119 -54.5 219.5t-149 157.5t-205.5 57q-112 0 -206.5 -57t-149 -157.5t-54.5 -219.5z" /> | ||
264 | <glyph glyph-name="yen" unicode="¥" horiz-adv-x="1259" | ||
265 | d="M633 880l236 576h379l-361 -714h203v-190h-287v-100h287v-189h-287v-263h-349v263h-319v189h319v100h-319v190h243l-362 714h380z" /> | ||
266 | <glyph glyph-name="brokenbar" unicode="¦" horiz-adv-x="524" | ||
267 | d="M119 -270v795h292v-795h-292zM411 698h-292v758h292v-758z" /> | ||
268 | <glyph glyph-name="section" unicode="§" horiz-adv-x="1301" | ||
269 | d="M1196 500q0 -177 -155 -268q138 -103 138 -293q0 -177 -141.5 -276.5t-389.5 -99.5q-268 0 -411 107t-143 305h338q0 -75 50.5 -113t165.5 -38q193 0 193 114q0 58 -57.5 94t-236.5 86t-270 104.5t-137 129t-46 176.5q0 176 157 270q-141 106 -141 292q0 174 145 280 | ||
270 | t389 106q250 0 391 -112t141 -313h-337q0 75 -51.5 120t-143.5 45q-95 0 -145 -33t-50 -91q0 -66 56 -100t202 -71.5t232 -74.5t142.5 -86t85.5 -112.5t29 -147.5zM597 652q-62 16 -117 36q-49 -40 -49 -120q0 -68 44.5 -103.5t214.5 -88.5l118 -34q56 44 56 120 | ||
271 | q0 62 -55 101.5t-212 88.5z" /> | ||
272 | <glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="1013" | ||
273 | d="M244 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM763 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
274 | <glyph glyph-name="copyright" unicode="©" horiz-adv-x="1608" | ||
275 | d="M1116 596q0 -152 -87.5 -233t-247.5 -81t-254.5 106.5t-94.5 286.5v113q0 174 95.5 280.5t253.5 106.5q163 0 249.5 -82.5t86.5 -231.5h-156q0 96 -46 137.5t-134 41.5q-92 0 -142.5 -67.5t-51.5 -180.5v-123q0 -117 51 -184.5t143 -67.5q89 0 134 40.5t45 138.5h156z | ||
276 | M207 729q0 -165 74.5 -308t211.5 -229.5t302 -86.5q164 0 300.5 86t211.5 229t75 309t-75 308.5t-212 228t-300 85.5q-159 0 -295.5 -82t-214.5 -226t-78 -314zM85 729q0 202 93.5 375t259 272.5t357.5 99.5t357.5 -99.5t259 -272.5t93.5 -375q0 -204 -95 -377.5 | ||
277 | t-259.5 -272.5t-355.5 -99q-193 0 -357.5 100t-258.5 273t-94 376z" /> | ||
278 | <glyph glyph-name="ordfeminine" unicode="ª" horiz-adv-x="904" | ||
279 | d="M600 705q-10 27 -17 68q-77 -82 -201 -82q-118 0 -183.5 61.5t-65.5 166.5q0 110 84 170.5t257 60.5h102v51q0 127 -116 127q-65 0 -101.5 -25.5t-36.5 -73.5l-173 14q0 104 87.5 168.5t223.5 64.5q135 0 213 -72t78 -205v-316q0 -97 26 -178h-177zM425 835q40 0 82 18.5 | ||
280 | t69 43.5v136h-106q-76 -1 -119 -31t-43 -79q0 -88 117 -88z" /> | ||
281 | <glyph glyph-name="guillemotleft" unicode="«" horiz-adv-x="1054" | ||
282 | d="M311 515l232 -399h-206l-272 390v19l272 390h206zM724 515l232 -399h-206l-272 390v19l272 390h206z" /> | ||
283 | <glyph glyph-name="logicalnot" unicode="¬" horiz-adv-x="1124" | ||
284 | d="M960 374h-200v260h-635v171h835v-431z" /> | ||
285 | <glyph glyph-name="uni00AD" unicode="­" horiz-adv-x="921" | ||
286 | d="M753 497h-601v261h601v-261z" /> | ||
287 | <glyph glyph-name="registered" unicode="®" horiz-adv-x="1608" | ||
288 | d="M85 729q0 202 93.5 375t259 272.5t357.5 99.5t357.5 -99.5t259 -272.5t93.5 -375q0 -204 -95 -377.5t-259.5 -272.5t-355.5 -99q-193 0 -357.5 100t-258.5 273t-94 376zM207 729q0 -165 74.5 -308t211.5 -229.5t302 -86.5q164 0 300.5 86t211.5 229t75 309t-75 308.5 | ||
289 | t-212 228t-300 85.5q-159 0 -295.5 -82t-214.5 -226t-78 -314zM651 653v-337h-151v850h281q154 0 239.5 -70t85.5 -194q0 -110 -107 -170q58 -32 81 -88t23 -138.5t3.5 -116.5t13.5 -57v-16h-155q-13 34 -13 194q0 76 -33 109.5t-110 33.5h-158zM651 787h128 | ||
290 | q76 0 126.5 31.5t50.5 84.5q0 70 -35.5 99.5t-128.5 30.5h-141v-246z" /> | ||
291 | <glyph glyph-name="macron" unicode="¯" horiz-adv-x="1065" | ||
292 | d="M895 1285h-734v173h734v-173z" /> | ||
293 | <glyph glyph-name="degree" unicode="°" horiz-adv-x="813" | ||
294 | d="M125 1195q0 117 83.5 199t197.5 82q112 0 193.5 -82t81.5 -199q0 -116 -80.5 -196.5t-194.5 -80.5q-116 0 -198.5 80.5t-82.5 196.5zM406 1071q53 0 87 36t34 88t-34 90t-87 38t-89.5 -37.5t-36.5 -90.5t37.5 -88.5t88.5 -35.5z" /> | ||
295 | <glyph glyph-name="plusminus" unicode="±" horiz-adv-x="1102" | ||
296 | d="M688 974h312v-271h-312v-348h-294v348h-310v271h310v319h294v-319zM979 1h-878v264h878v-264z" /> | ||
297 | <glyph glyph-name="uni00B2" unicode="²" horiz-adv-x="768" | ||
298 | d="M697 667h-628v147l286 253q50 44 74.5 86.5t24.5 62.5q0 76 -85 76q-43 0 -68 -30t-25 -73h-225q0 118 85.5 198.5t221.5 80.5q154 0 237 -65t83 -187q0 -75 -42.5 -137.5t-187.5 -168.5l-81 -68h330v-175z" /> | ||
299 | <glyph glyph-name="uni00B3" unicode="³" horiz-adv-x="768" | ||
300 | d="M277 1140h88q101 0 101 82q0 32 -25.5 50.5t-70.5 18.5q-35 0 -62 -13t-27 -38h-224q0 102 85 164.5t221 62.5q154 0 240.5 -61.5t86.5 -165.5q0 -120 -138 -169q154 -41 154 -183q0 -104 -94 -168.5t-249 -64.5q-145 0 -233.5 69t-88.5 183h227q0 -29 29.5 -52.5 | ||
301 | t81.5 -23.5q56 0 78.5 25t22.5 56q0 85 -109 86h-94v142z" /> | ||
302 | <glyph glyph-name="acute" unicode="´" horiz-adv-x="691" | ||
303 | d="M287 1536h356l-278 -314h-275z" /> | ||
304 | <glyph glyph-name="mu" unicode="µ" horiz-adv-x="1313" | ||
305 | d="M470 1082v-632q1 -107 36.5 -157t126.5 -50q128 0 181 91v748h337v-1082h-317l-5 53q-89 -74 -210 -74q-85 0 -149 34v-429h-338v1498h338z" /> | ||
306 | <glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="1001" | ||
307 | d="M657 0v520h-80q-230 0 -362.5 127t-132.5 341q0 213 133 340.5t363 127.5h308v-1456h-229z" /> | ||
308 | <glyph glyph-name="periodcentered" unicode="·" horiz-adv-x="657" | ||
309 | d="M324 854q81 0 133.5 -48t52.5 -121t-52.5 -121t-133.5 -48q-80 0 -133 47.5t-53 121.5t53 121.5t133 47.5z" /> | ||
310 | <glyph glyph-name="cedilla" unicode="¸" horiz-adv-x="569" | ||
311 | d="M373 10l-10 -61q150 -28 150 -173q0 -116 -99 -182t-275 -66l-7 186q88 0 88 77q0 38 -31.5 53t-102.5 20l31 146h256z" /> | ||
312 | <glyph glyph-name="uni00B9" unicode="¹" horiz-adv-x="768" | ||
313 | d="M542 667h-223v533l-176 -36v167l380 122h19v-786z" /> | ||
314 | <glyph glyph-name="ordmasculine" unicode="º" horiz-adv-x="938" | ||
315 | d="M117 1121q0 160 95.5 257.5t250.5 97.5t251 -97t96 -263v-72q0 -159 -94 -256.5t-251 -97.5q-158 0 -253 98t-95 261v72zM292 1044q0 -98 46.5 -153t126.5 -55q78 0 123.5 54t46.5 151v80q0 97 -46.5 152t-125.5 55q-78 0 -124.5 -54.5t-46.5 -156.5v-73z" /> | ||
316 | <glyph glyph-name="guillemotright" unicode="»" horiz-adv-x="1054" | ||
317 | d="M284 914l272 -390v-19l-272 -390h-207l232 399l-232 400h207zM697 914l272 -390v-19l-272 -390h-207l232 399l-232 400h207z" /> | ||
318 | <glyph glyph-name="onequarter" unicode="¼" horiz-adv-x="1452" | ||
319 | d="M512 664h-223v533l-176 -36v167l380 122h19v-786zM462 117l-157 79l711 1138l157 -79zM1288 335h79v-178h-79v-157h-225v157h-333l-15 145l348 487h225v-454zM925 335h138v191l-16 -23z" /> | ||
320 | <glyph glyph-name="onehalf" unicode="½" horiz-adv-x="1537" | ||
321 | d="M422 117l-157 79l711 1138l157 -79zM488 672h-223v533l-176 -36v167l380 122h19v-786zM1470 0h-628v147l286 253q50 44 74.5 86.5t24.5 62.5q0 76 -85 76q-43 0 -68 -30t-25 -73h-225q0 118 85.5 198.5t221.5 80.5q154 0 237 -65t83 -187q0 -75 -42.5 -137.5 | ||
322 | t-187.5 -168.5l-81 -68h330v-175z" /> | ||
323 | <glyph glyph-name="threequarters" unicode="¾" horiz-adv-x="1689" | ||
324 | d="M644 117l-157 79l711 1138l157 -79zM1486 335h79v-178h-79v-157h-225v157h-333l-15 145l348 487h225v-454zM1123 335h138v191l-16 -23zM321 1141h88q101 0 101 82q0 32 -25.5 50.5t-70.5 18.5q-35 0 -62 -13t-27 -38h-224q0 102 85 164.5t221 62.5q154 0 240.5 -61.5 | ||
325 | t86.5 -165.5q0 -120 -138 -169q154 -41 154 -183q0 -104 -94 -168.5t-249 -64.5q-145 0 -233.5 69t-88.5 183h227q0 -29 29.5 -52.5t81.5 -23.5q56 0 78.5 25t22.5 56q0 85 -109 86h-94v142z" /> | ||
326 | <glyph glyph-name="questiondown" unicode="¿" horiz-adv-x="1043" | ||
327 | d="M703 630q0 -150 -30.5 -230.5t-102.5 -141.5l-66 -61q-93 -90 -93 -186q0 -71 33.5 -103.5t86.5 -32.5q67 0 104.5 42.5t39.5 120.5h339q-4 -201 -127.5 -312t-347.5 -111q-223 0 -344.5 103.5t-121.5 292.5q0 83 38 156.5t130 159.5l85 78q77 66 86 153l5 72h286z | ||
328 | M569 765q-80 0 -133.5 47.5t-53.5 121.5t53.5 121.5t133.5 47.5q82 0 134.5 -48.5t52.5 -120.5t-52.5 -120.5t-134.5 -48.5z" /> | ||
329 | <glyph glyph-name="Agrave" unicode="À" | ||
330 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM860 1532h-274l-282 314h356z" /> | ||
331 | <glyph glyph-name="Aacute" unicode="Á" | ||
332 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM742 1846h356l-278 -314h-275z" /> | ||
333 | <glyph glyph-name="Acircumflex" unicode="Â" | ||
334 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM1124 1565v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
335 | <glyph glyph-name="Atilde" unicode="Ã" | ||
336 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM1085 1837q0 -114 -66.5 -193.5t-164.5 -79.5q-66 0 -147 42t-131 42q-32 0 -54.5 -22t-22.5 -68l-187 10q0 111 66.5 192t163.5 81q50 0 131 -36.5t102.5 -41.5t45.5 -5q32 0 55 22 | ||
337 | t23 68z" /> | ||
338 | <glyph glyph-name="Adieresis" unicode="Ä" | ||
339 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM436 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM955 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39 | ||
340 | t-43.5 94t43.5 94t107.5 39z" /> | ||
341 | <glyph glyph-name="Aring" unicode="Å" | ||
342 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM477 1729q0 86 65.5 144.5t159.5 58.5q93 0 158.5 -58.5t65.5 -144.5q0 -85 -64.5 -142t-159.5 -57q-96 0 -160.5 57t-64.5 142zM702 1625q48 0 75.5 30t27.5 74t-27.5 75t-75.5 31 | ||
343 | q-49 0 -76.5 -31t-27.5 -75t27.5 -74t76.5 -30z" /> | ||
344 | <glyph glyph-name="AE" unicode="Æ" horiz-adv-x="1926" | ||
345 | d="M1851 0h-897l-14 329h-382l-152 -329h-390l735 1456h1039v-264h-549l13 -316h455v-264h-444l15 -348h571v-264zM683 599h246l-21 486z" /> | ||
346 | <glyph glyph-name="Ccedilla" unicode="Ç" horiz-adv-x="1344" | ||
347 | d="M1288 493q-7 -152 -82 -268.5t-210.5 -180.5t-309.5 -64q-287 0 -452 187t-165 528v72q0 214 74.5 374.5t214.5 248t324 87.5q265 0 426 -139.5t183 -384.5h-350q-4 133 -67 191t-192 58q-131 0 -192 -98t-64 -313v-103q0 -233 58.5 -333t201.5 -100q121 0 185 57t68 181 | ||
348 | h349zM818 10l-10 -61q150 -28 150 -173q0 -116 -99 -182t-275 -66l-7 186q88 0 88 77q0 38 -31.5 53t-102.5 20l31 146h256z" /> | ||
349 | <glyph glyph-name="Egrave" unicode="È" horiz-adv-x="1146" | ||
350 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261zM804 1532h-274l-282 314h356z" /> | ||
351 | <glyph glyph-name="Eacute" unicode="É" horiz-adv-x="1146" | ||
352 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261zM686 1846h356l-278 -314h-275z" /> | ||
353 | <glyph glyph-name="Ecircumflex" unicode="Ê" horiz-adv-x="1146" | ||
354 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261zM1068 1565v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
355 | <glyph glyph-name="Edieresis" unicode="Ë" horiz-adv-x="1146" | ||
356 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261zM380 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM899 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94 | ||
357 | t43.5 94t107.5 39z" /> | ||
358 | <glyph glyph-name="Igrave" unicode="Ì" horiz-adv-x="618" | ||
359 | d="M484 0h-350v1456h350v-1456zM470 1532h-274l-282 314h356z" /> | ||
360 | <glyph glyph-name="Iacute" unicode="Í" horiz-adv-x="618" | ||
361 | d="M484 0h-350v1456h350v-1456zM351 1846h356l-278 -314h-275z" /> | ||
362 | <glyph glyph-name="Icircumflex" unicode="Î" horiz-adv-x="618" | ||
363 | d="M484 0h-350v1456h350v-1456zM734 1565v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
364 | <glyph glyph-name="Idieresis" unicode="Ï" horiz-adv-x="618" | ||
365 | d="M484 0h-350v1456h350v-1456zM46 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM565 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
366 | <glyph glyph-name="Eth" unicode="Ð" horiz-adv-x="1354" | ||
367 | d="M140 0v635h-170v191h170v630h469q193 0 347 -87.5t240.5 -247t87.5 -357.5v-67q0 -200 -84.5 -358.5t-238 -248t-342.5 -90.5h-479zM700 635h-209v-365h122q151 0 232 107.5t81 319.5v63q0 211 -81 318t-236 107h-118v-359h209v-191z" /> | ||
368 | <glyph glyph-name="Ntilde" unicode="Ñ" horiz-adv-x="1438" | ||
369 | d="M1326 0h-349l-516 906v-906h-351v1456h351l515 -906v906h350v-1456zM1112 1837q0 -114 -66.5 -193.5t-164.5 -79.5q-66 0 -147 42t-131 42q-32 0 -54.5 -22t-22.5 -68l-187 10q0 111 66.5 192t163.5 81q50 0 131 -36.5t102.5 -41.5t45.5 -5q32 0 55 22t23 68z" /> | ||
370 | <glyph glyph-name="Ograve" unicode="Ò" horiz-adv-x="1414" | ||
371 | d="M1343 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 85.5t-224.5 244.5t-84.5 365v82q0 214 78.5 377.5t225 252.5t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM986 759q0 217 -72.5 329.5t-207.5 112.5q-264 0 -279 -396l-1 -107q0 -214 71 -329 | ||
372 | t211 -115q133 0 205 113t73 325v67zM865 1532h-274l-282 314h356z" /> | ||
373 | <glyph glyph-name="Oacute" unicode="Ó" horiz-adv-x="1414" | ||
374 | d="M1343 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 85.5t-224.5 244.5t-84.5 365v82q0 214 78.5 377.5t225 252.5t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM986 759q0 217 -72.5 329.5t-207.5 112.5q-264 0 -279 -396l-1 -107q0 -214 71 -329 | ||
375 | t211 -115q133 0 205 113t73 325v67zM747 1846h356l-278 -314h-275z" /> | ||
376 | <glyph glyph-name="Ocircumflex" unicode="Ô" horiz-adv-x="1414" | ||
377 | d="M1343 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 85.5t-224.5 244.5t-84.5 365v82q0 214 78.5 377.5t225 252.5t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM986 759q0 217 -72.5 329.5t-207.5 112.5q-264 0 -279 -396l-1 -107q0 -214 71 -329 | ||
378 | t211 -115q133 0 205 113t73 325v67zM1129 1565v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
379 | <glyph glyph-name="Otilde" unicode="Õ" horiz-adv-x="1414" | ||
380 | d="M1343 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 85.5t-224.5 244.5t-84.5 365v82q0 214 78.5 377.5t225 252.5t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM986 759q0 217 -72.5 329.5t-207.5 112.5q-264 0 -279 -396l-1 -107q0 -214 71 -329 | ||
381 | t211 -115q133 0 205 113t73 325v67zM1090 1837q0 -114 -66.5 -193.5t-164.5 -79.5q-66 0 -147 42t-131 42q-32 0 -54.5 -22t-22.5 -68l-187 10q0 111 66.5 192t163.5 81q50 0 131 -36.5t102.5 -41.5t45.5 -5q32 0 55 22t23 68z" /> | ||
382 | <glyph glyph-name="Odieresis" unicode="Ö" horiz-adv-x="1414" | ||
383 | d="M1343 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 85.5t-224.5 244.5t-84.5 365v82q0 214 78.5 377.5t225 252.5t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM986 759q0 217 -72.5 329.5t-207.5 112.5q-264 0 -279 -396l-1 -107q0 -214 71 -329 | ||
384 | t211 -115q133 0 205 113t73 325v67zM441 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM960 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
385 | <glyph glyph-name="multiply" unicode="×" horiz-adv-x="1083" | ||
386 | d="M53 381l299 305l-299 306l193 183l293 -299l293 299l193 -183l-300 -306l300 -305l-193 -183l-293 298l-293 -298z" /> | ||
387 | <glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="1409" | ||
388 | d="M1354 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5q-162 0 -292 65l-81 -140h-207l141 245q-199 199 -199 556v51q0 215 78.5 378t224 252t333.5 89q157 0 287 -64l61 106h208l-121 -211q202 -200 202 -558v-51zM997 759q0 133 -29 229l-396 -689q60 -45 147 -45 | ||
389 | q134 0 205.5 113t72.5 325v67zM437 698q0 -133 27 -227l394 687q-60 43 -141 43q-139 0 -209 -111t-71 -325v-67z" /> | ||
390 | <glyph glyph-name="Ugrave" unicode="Ù" horiz-adv-x="1361" | ||
391 | d="M1252 1456v-953q0 -162 -69 -280.5t-198 -180.5t-305 -62q-266 0 -419 138t-156 378v960h353v-967q6 -239 222 -239q109 0 165 60t56 195v951h351zM835 1532h-274l-282 314h356z" /> | ||
392 | <glyph glyph-name="Uacute" unicode="Ú" horiz-adv-x="1361" | ||
393 | d="M1252 1456v-953q0 -162 -69 -280.5t-198 -180.5t-305 -62q-266 0 -419 138t-156 378v960h353v-967q6 -239 222 -239q109 0 165 60t56 195v951h351zM717 1846h356l-278 -314h-275z" /> | ||
394 | <glyph glyph-name="Ucircumflex" unicode="Û" horiz-adv-x="1361" | ||
395 | d="M1252 1456v-953q0 -162 -69 -280.5t-198 -180.5t-305 -62q-266 0 -419 138t-156 378v960h353v-967q6 -239 222 -239q109 0 165 60t56 195v951h351zM1099 1565v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
396 | <glyph glyph-name="Udieresis" unicode="Ü" horiz-adv-x="1361" | ||
397 | d="M1252 1456v-953q0 -162 -69 -280.5t-198 -180.5t-305 -62q-266 0 -419 138t-156 378v960h353v-967q6 -239 222 -239q109 0 165 60t56 195v951h351zM411 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM930 1808 | ||
398 | q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
399 | <glyph glyph-name="Yacute" unicode="Ý" horiz-adv-x="1286" | ||
400 | d="M643 824l268 632h379l-469 -933v-523h-356v523l-468 933h377zM686 1846h356l-278 -314h-275z" /> | ||
401 | <glyph glyph-name="Thorn" unicode="Þ" horiz-adv-x="1266" | ||
402 | d="M455 1456v-258h205q171 -1 296.5 -58t191.5 -161t66 -241q0 -209 -148.5 -333.5t-405.5 -126.5h-205v-278h-339v1456h339zM455 938v-400h198q103 0 162.5 52t59.5 146q0 95 -59 148.5t-161 53.5h-200z" /> | ||
403 | <glyph glyph-name="germandbls" unicode="ß" horiz-adv-x="1330" | ||
404 | d="M472 0h-338v1099q0 221 133.5 341.5t380.5 120.5q196 0 319 -104t123 -276q0 -107 -47.5 -183t-47.5 -163q0 -31 24.5 -64t108.5 -115q143 -139 143 -288q0 -187 -124.5 -287.5t-352.5 -100.5q-75 0 -150.5 13.5t-117.5 37.5l59 253q85 -44 211 -44q60 0 99.5 32.5 | ||
405 | t39.5 92.5q0 41 -25 77t-105 105t-113.5 132.5t-33.5 137.5q0 103 47 187t47 163q0 59 -40 97t-101 38q-74 0 -106.5 -52t-32.5 -156v-1094z" /> | ||
406 | <glyph glyph-name="agrave" unicode="à" horiz-adv-x="1087" | ||
407 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
408 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM695 1222h-274l-282 314h356z" /> | ||
409 | <glyph glyph-name="aacute" unicode="á" horiz-adv-x="1087" | ||
410 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
411 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM577 1536h356l-278 -314h-275z" /> | ||
412 | <glyph glyph-name="acircumflex" unicode="â" horiz-adv-x="1087" | ||
413 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
414 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM959 1255v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
415 | <glyph glyph-name="atilde" unicode="ã" horiz-adv-x="1087" | ||
416 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
417 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM920 1528q0 -114 -66.5 -193.5t-164.5 -79.5q-66 0 -147 42t-131 42q-32 0 -54.5 -22t-22.5 -68l-187 10q0 111 66.5 192t163.5 81q50 0 131 -36.5t102.5 -41.5t45.5 -5q32 0 55 22t23 68z" /> | ||
418 | <glyph glyph-name="adieresis" unicode="ä" horiz-adv-x="1087" | ||
419 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
420 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM271 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM790 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
421 | <glyph glyph-name="aring" unicode="å" horiz-adv-x="1087" | ||
422 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
423 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM312 1419q0 86 65.5 144.5t159.5 58.5q93 0 158.5 -58.5t65.5 -144.5q0 -85 -64.5 -142t-159.5 -57q-96 0 -160.5 57t-64.5 142zM537 1315q48 0 75.5 30t27.5 74t-27.5 75t-75.5 31q-49 0 -76.5 -31t-27.5 -75t27.5 -74t76.5 -30 | ||
424 | z" /> | ||
425 | <glyph glyph-name="ae" unicode="æ" horiz-adv-x="1730" | ||
426 | d="M1238 -20q-240 0 -380 134q-66 -66 -164 -100t-210 -34q-199 0 -311 91.5t-112 252.5q0 158 129.5 244t384.5 87h142v46q0 66 -34 103.5t-99 37.5q-72 0 -110 -29.5t-38 -72.5l-337 19q0 151 134 247t355 96q202 0 319 -91q126 93 320 91q212 0 335 -133t123 -360v-174 | ||
427 | h-639q14 -98 75 -146.5t163 -48.5q126 0 223 40l62 27l81 -206q-67 -52 -181.5 -86.5t-230.5 -34.5zM548 212q89 0 169 63v176h-139q-78 -1 -129 -37t-51 -94q0 -108 150 -108zM1227 842q-82 0 -125.5 -48.5t-54.5 -147.5h309v26q0 81 -33 125.5t-96 44.5z" /> | ||
428 | <glyph glyph-name="ccedilla" unicode="ç" horiz-adv-x="1064" | ||
429 | d="M552 240q71 0 110 38.5t38 107.5h316q0 -178 -127.5 -292t-328.5 -114q-236 0 -372 148t-136 410v14q0 164 60.5 289.5t174.5 193t270 67.5q211 0 335 -117t124 -317h-316q0 84 -41 129t-110 45q-131 0 -153 -167q-7 -53 -7 -146q0 -163 39 -226t124 -63zM698 10l-10 -61 | ||
430 | q150 -28 150 -173q0 -116 -99 -182t-275 -66l-7 186q88 0 88 77q0 38 -31.5 53t-102.5 20l31 146h256z" /> | ||
431 | <glyph glyph-name="egrave" unicode="è" horiz-adv-x="1115" | ||
432 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
433 | t-123 44.5zM694 1223h-274l-282 314h356z" /> | ||
434 | <glyph glyph-name="eacute" unicode="é" horiz-adv-x="1115" | ||
435 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
436 | t-123 44.5zM576 1537h356l-278 -314h-275z" /> | ||
437 | <glyph glyph-name="ecircumflex" unicode="ê" horiz-adv-x="1115" | ||
438 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
439 | t-123 44.5zM958 1256v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
440 | <glyph glyph-name="edieresis" unicode="ë" horiz-adv-x="1115" | ||
441 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
442 | t-123 44.5zM270 1499q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM789 1499q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
443 | <glyph glyph-name="igrave" unicode="ì" horiz-adv-x="584" | ||
444 | d="M462 0h-339v1082h339v-1082zM455 1202h-274l-282 314h356z" /> | ||
445 | <glyph glyph-name="iacute" unicode="í" horiz-adv-x="584" | ||
446 | d="M462 0h-339v1082h339v-1082zM336 1516h356l-278 -314h-275z" /> | ||
447 | <glyph glyph-name="icircumflex" unicode="î" horiz-adv-x="584" | ||
448 | d="M462 0h-339v1082h339v-1082zM719 1235v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
449 | <glyph glyph-name="idieresis" unicode="ï" horiz-adv-x="584" | ||
450 | d="M462 0h-339v1082h339v-1082zM31 1478q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM550 1478q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
451 | <glyph glyph-name="eth" unicode="ð" horiz-adv-x="1165" | ||
452 | d="M862 1308q261 -259 261 -658v-57q0 -177 -70.5 -318.5t-194.5 -218t-277 -76.5q-148 0 -267 63.5t-184.5 176t-65.5 248.5q0 233 120 363t334 130q127 0 228 -62q-49 139 -156 241l-178 -110l-78 118l136 84q-108 66 -244 103l108 244q236 -48 415 -176l163 101l77 -118z | ||
453 | M585 240q94 0 147 82.5t53 234.5v97q-66 66 -194 66q-98 0 -143.5 -67.5t-45.5 -184.5q0 -102 50 -165t133 -63z" /> | ||
454 | <glyph glyph-name="ntilde" unicode="ñ" horiz-adv-x="1155" | ||
455 | d="M404 1082l11 -127q112 147 309 147q169 0 252.5 -101t86.5 -304v-697h-338v683q0 82 -33 120.5t-120 38.5q-99 0 -147 -78v-764h-337v1082h316zM963 1528q0 -114 -66.5 -193.5t-164.5 -79.5q-66 0 -147 42t-131 42q-32 0 -54.5 -22t-22.5 -68l-187 10q0 111 66.5 192 | ||
456 | t163.5 81q50 0 131 -36.5t102.5 -41.5t45.5 -5q32 0 55 22t23 68z" /> | ||
457 | <glyph glyph-name="ograve" unicode="ò" horiz-adv-x="1150" | ||
458 | d="M52 551q0 162 63 288.5t181 194.5t277 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-231 0 -371 138.5t-151 375.5zM389 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251zM737 1222h-274l-282 314h356z" /> | ||
459 | <glyph glyph-name="oacute" unicode="ó" horiz-adv-x="1150" | ||
460 | d="M52 551q0 162 63 288.5t181 194.5t277 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-231 0 -371 138.5t-151 375.5zM389 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251zM619 1536h356l-278 -314h-275z" /> | ||
461 | <glyph glyph-name="ocircumflex" unicode="ô" horiz-adv-x="1150" | ||
462 | d="M52 551q0 162 63 288.5t181 194.5t277 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-231 0 -371 138.5t-151 375.5zM389 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251zM1001 1255v-13h-266l-159 136 | ||
463 | l-159 -136h-260v17l323 277h193z" /> | ||
464 | <glyph glyph-name="otilde" unicode="õ" horiz-adv-x="1150" | ||
465 | d="M52 551q0 162 63 288.5t181 194.5t277 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-231 0 -371 138.5t-151 375.5zM389 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251zM962 1528q0 -114 -66.5 -193.5 | ||
466 | t-164.5 -79.5q-66 0 -147 42t-131 42q-32 0 -54.5 -22t-22.5 -68l-187 10q0 111 66.5 192t163.5 81q50 0 131 -36.5t102.5 -41.5t45.5 -5q32 0 55 22t23 68z" /> | ||
467 | <glyph glyph-name="odieresis" unicode="ö" horiz-adv-x="1150" | ||
468 | d="M52 551q0 162 63 288.5t181 194.5t277 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-231 0 -371 138.5t-151 375.5zM389 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251zM313 1498q63 0 106.5 -39t43.5 -94 | ||
469 | t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM832 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
470 | <glyph glyph-name="divide" unicode="÷" horiz-adv-x="1166" | ||
471 | d="M1103 563h-1044v244h1044v-244zM394 1086q0 71 51 117.5t135 46.5t135 -46.5t51 -117.5t-51 -117.5t-135 -46.5t-135 46.5t-51 117.5zM394 277q0 71 51 117.5t135 46.5t135 -46.5t51 -117.5t-51 -117.5t-135 -46.5t-135 46.5t-51 117.5z" /> | ||
472 | <glyph glyph-name="oslash" unicode="ø" horiz-adv-x="1151" | ||
473 | d="M52 551q0 162 63 288.5t181 194.5t277 68q94 0 177 -25l69 142h177l-103 -212q203 -148 203 -477q0 -253 -140.5 -401.5t-380.5 -148.5q-93 0 -171 22l-71 -147h-177l104 215q-208 147 -208 481zM389 530q0 -96 18 -157l224 460q-26 9 -58 9q-169 0 -183 -251zM759 551 | ||
474 | q0 85 -17 147l-219 -452q22 -6 52 -6q180 0 184 277v34z" /> | ||
475 | <glyph glyph-name="ugrave" unicode="ù" horiz-adv-x="1155" | ||
476 | d="M739 117q-107 -137 -289 -137q-178 0 -269.5 103.5t-91.5 297.5v701h337v-703q0 -139 135 -139q116 0 165 83v759h339v-1082h-316zM737 1222h-274l-282 314h356z" /> | ||
477 | <glyph glyph-name="uacute" unicode="ú" horiz-adv-x="1155" | ||
478 | d="M739 117q-107 -137 -289 -137q-178 0 -269.5 103.5t-91.5 297.5v701h337v-703q0 -139 135 -139q116 0 165 83v759h339v-1082h-316zM619 1536h356l-278 -314h-275z" /> | ||
479 | <glyph glyph-name="ucircumflex" unicode="û" horiz-adv-x="1155" | ||
480 | d="M739 117q-107 -137 -289 -137q-178 0 -269.5 103.5t-91.5 297.5v701h337v-703q0 -139 135 -139q116 0 165 83v759h339v-1082h-316zM1001 1255v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
481 | <glyph glyph-name="udieresis" unicode="ü" horiz-adv-x="1155" | ||
482 | d="M739 117q-107 -137 -289 -137q-178 0 -269.5 103.5t-91.5 297.5v701h337v-703q0 -139 135 -139q116 0 165 83v759h339v-1082h-316zM313 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM832 1498q63 0 106.5 -39 | ||
483 | t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
484 | <glyph glyph-name="yacute" unicode="ý" horiz-adv-x="1061" | ||
485 | d="M527 472l180 610h361l-441 -1263l-19 -46q-94 -210 -332 -210q-66 0 -139 20v241h44q71 0 108.5 20.5t55.5 73.5l27 72l-376 1092h360zM571 1536h356l-278 -314h-275z" /> | ||
486 | <glyph glyph-name="thorn" unicode="þ" horiz-adv-x="1148" | ||
487 | d="M1096 533q0 -251 -112.5 -402t-306.5 -151q-150 0 -244 107v-503h-338v1952h338v-539q94 105 242 105q197 0 309 -145.5t112 -406.5v-17zM759 554q0 288 -168 288q-116 0 -158 -84v-431q43 -87 160 -87q161 0 166 276v38z" /> | ||
488 | <glyph glyph-name="ydieresis" unicode="ÿ" horiz-adv-x="1061" | ||
489 | d="M527 472l180 610h361l-441 -1263l-19 -46q-94 -210 -332 -210q-66 0 -139 20v241h44q71 0 108.5 20.5t55.5 73.5l27 72l-376 1092h360zM265 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM784 1498q63 0 106.5 -39 | ||
490 | t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
491 | <glyph glyph-name="Amacron" unicode="Ā" | ||
492 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM1066 1589h-734v173h734v-173z" /> | ||
493 | <glyph glyph-name="amacron" unicode="ā" horiz-adv-x="1087" | ||
494 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
495 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM901 1280h-734v173h734v-173z" /> | ||
496 | <glyph glyph-name="Abreve" unicode="Ă" | ||
497 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM1070 1848q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
498 | <glyph glyph-name="abreve" unicode="ă" horiz-adv-x="1087" | ||
499 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
500 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM905 1538q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
501 | <glyph glyph-name="Aogonek" unicode="Ą" | ||
502 | d="M861 1456l538 -1456h-107q-78 -39 -111.5 -74.5t-33.5 -86.5q0 -62 60 -62q30 0 69 18l38 -168q-73 -44 -166 -44q-110 0 -176.5 58t-66.5 156q0 130 114 213l-82 262h-481l-84 -272h-375l534 1456h330zM540 543h313l-157 505z" /> | ||
503 | <glyph glyph-name="aogonek" unicode="ą" horiz-adv-x="1087" | ||
504 | d="M702 3q-19 39 -30 94q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-55q-78 -39 -111.5 -74.5t-33.5 -86.5q0 -62 60 -62 | ||
505 | q30 0 69 18l38 -168q-73 -44 -166 -44q-110 0 -176.5 58t-66.5 156q0 127 103 206zM493 220q63 0 104.5 27t59.5 61v173h-98q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5z" /> | ||
506 | <glyph glyph-name="Cacute" unicode="Ć" horiz-adv-x="1344" | ||
507 | d="M1288 493q-7 -152 -82 -268.5t-210.5 -180.5t-309.5 -64q-287 0 -452 187t-165 528v72q0 214 74.5 374.5t214.5 248t324 87.5q265 0 426 -139.5t183 -384.5h-350q-4 133 -67 191t-192 58q-131 0 -192 -98t-64 -313v-103q0 -233 58.5 -333t201.5 -100q121 0 185 57t68 181 | ||
508 | h349zM735 1846h356l-278 -314h-275z" /> | ||
509 | <glyph glyph-name="cacute" unicode="ć" horiz-adv-x="1064" | ||
510 | d="M552 240q71 0 110 38.5t38 107.5h316q0 -178 -127.5 -292t-328.5 -114q-236 0 -372 148t-136 410v14q0 164 60.5 289.5t174.5 193t270 67.5q211 0 335 -117t124 -317h-316q0 84 -41 129t-110 45q-131 0 -153 -167q-7 -53 -7 -146q0 -163 39 -226t124 -63zM579 1536h356 | ||
511 | l-278 -314h-275z" /> | ||
512 | <glyph glyph-name="Ccircumflex" unicode="Ĉ" horiz-adv-x="1344" | ||
513 | d="M1288 493q-7 -152 -82 -268.5t-210.5 -180.5t-309.5 -64q-287 0 -452 187t-165 528v72q0 214 74.5 374.5t214.5 248t324 87.5q265 0 426 -139.5t183 -384.5h-350q-4 133 -67 191t-192 58q-131 0 -192 -98t-64 -313v-103q0 -233 58.5 -333t201.5 -100q121 0 185 57t68 181 | ||
514 | h349zM1117 1565v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
515 | <glyph glyph-name="ccircumflex" unicode="ĉ" horiz-adv-x="1064" | ||
516 | d="M552 240q71 0 110 38.5t38 107.5h316q0 -178 -127.5 -292t-328.5 -114q-236 0 -372 148t-136 410v14q0 164 60.5 289.5t174.5 193t270 67.5q211 0 335 -117t124 -317h-316q0 84 -41 129t-110 45q-131 0 -153 -167q-7 -53 -7 -146q0 -163 39 -226t124 -63zM961 1255v-13 | ||
517 | h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
518 | <glyph glyph-name="Cdotaccent" unicode="Ċ" horiz-adv-x="1344" | ||
519 | d="M1288 493q-7 -152 -82 -268.5t-210.5 -180.5t-309.5 -64q-287 0 -452 187t-165 528v72q0 214 74.5 374.5t214.5 248t324 87.5q265 0 426 -139.5t183 -384.5h-350q-4 133 -67 191t-192 58q-131 0 -192 -98t-64 -313v-103q0 -233 58.5 -333t201.5 -100q121 0 185 57t68 181 | ||
520 | h349zM525 1711q0 65 47 106t119 41q71 0 118 -41t47 -106q0 -64 -47 -105t-118 -41q-72 0 -119 41t-47 105z" /> | ||
521 | <glyph glyph-name="cdotaccent" unicode="ċ" horiz-adv-x="1064" | ||
522 | d="M552 240q71 0 110 38.5t38 107.5h316q0 -178 -127.5 -292t-328.5 -114q-236 0 -372 148t-136 410v14q0 164 60.5 289.5t174.5 193t270 67.5q211 0 335 -117t124 -317h-316q0 84 -41 129t-110 45q-131 0 -153 -167q-7 -53 -7 -146q0 -163 39 -226t124 -63zM369 1401 | ||
523 | q0 65 47 106t119 41q71 0 118 -41t47 -106q0 -64 -47 -105t-118 -41q-72 0 -119 41t-47 105z" /> | ||
524 | <glyph glyph-name="Ccaron" unicode="Č" horiz-adv-x="1344" | ||
525 | d="M1288 493q-7 -152 -82 -268.5t-210.5 -180.5t-309.5 -64q-287 0 -452 187t-165 528v72q0 214 74.5 374.5t214.5 248t324 87.5q265 0 426 -139.5t183 -384.5h-350q-4 133 -67 191t-192 58q-131 0 -192 -98t-64 -313v-103q0 -233 58.5 -333t201.5 -100q121 0 185 57t68 181 | ||
526 | h349zM692 1713l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
527 | <glyph glyph-name="ccaron" unicode="č" horiz-adv-x="1064" | ||
528 | d="M552 240q71 0 110 38.5t38 107.5h316q0 -178 -127.5 -292t-328.5 -114q-236 0 -372 148t-136 410v14q0 164 60.5 289.5t174.5 193t270 67.5q211 0 335 -117t124 -317h-316q0 84 -41 129t-110 45q-131 0 -153 -167q-7 -53 -7 -146q0 -163 39 -226t124 -63zM536 1403 | ||
529 | l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
530 | <glyph glyph-name="Dcaron" unicode="Ď" horiz-adv-x="1324" | ||
531 | d="M110 0v1456h469q193 0 347 -87.5t240.5 -247t87.5 -357.5v-67q0 -200 -84.5 -358.5t-238 -248t-342.5 -90.5h-479zM461 1185v-915h122q151 0 232 107.5t81 319.5v63q0 211 -81 318t-236 107h-118zM482 1713l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
532 | <glyph glyph-name="dcaron" unicode="ď" horiz-adv-x="1302" | ||
533 | d="M52 549q0 257 111 405t310 148q145 0 244 -114v548h338v-1536h-303l-17 116q-104 -136 -264 -136q-193 0 -306 148t-113 421zM389 528q0 -288 168 -288q112 0 160 94v412q-46 96 -158 96q-156 0 -169 -252zM1302 1106l-159 80l26 46q50 94 50 216v89h225v-74 | ||
534 | q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
535 | <glyph glyph-name="Dcroat" unicode="Đ" horiz-adv-x="1354" | ||
536 | d="M140 0v635h-170v191h170v630h469q193 0 347 -87.5t240.5 -247t87.5 -357.5v-67q0 -200 -84.5 -358.5t-238 -248t-342.5 -90.5h-479zM700 635h-209v-365h122q151 0 232 107.5t81 319.5v63q0 211 -81 318t-236 107h-118v-359h209v-191z" /> | ||
537 | <glyph glyph-name="dcroat" unicode="đ" horiz-adv-x="1182" | ||
538 | d="M1195 1215h-140v-1215h-303l-17 116q-104 -136 -264 -136q-193 0 -306 148t-113 421q0 257 111 405t310 148q145 0 244 -114v227h-252v191h252v130h338v-130h140v-191zM389 528q0 -288 168 -288q112 0 160 94v412q-46 96 -158 96q-156 0 -169 -252z" /> | ||
539 | <glyph glyph-name="Emacron" unicode="Ē" horiz-adv-x="1146" | ||
540 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261zM1010 1589h-734v173h734v-173z" /> | ||
541 | <glyph glyph-name="emacron" unicode="ē" horiz-adv-x="1115" | ||
542 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
543 | t-123 44.5zM900 1281h-734v173h734v-173z" /> | ||
544 | <glyph glyph-name="Ebreve" unicode="Ĕ" horiz-adv-x="1146" | ||
545 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261zM1014 1848q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
546 | <glyph glyph-name="ebreve" unicode="ĕ" horiz-adv-x="1115" | ||
547 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
548 | t-123 44.5zM904 1539q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
549 | <glyph glyph-name="Edotaccent" unicode="Ė" horiz-adv-x="1146" | ||
550 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261zM476 1711q0 65 47 106t119 41q71 0 118 -41t47 -106q0 -64 -47 -105t-118 -41q-72 0 -119 41t-47 105z" /> | ||
551 | <glyph glyph-name="edotaccent" unicode="ė" horiz-adv-x="1115" | ||
552 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
553 | t-123 44.5zM366 1402q0 65 47 106t119 41q71 0 118 -41t47 -106q0 -64 -47 -105t-118 -41q-72 0 -119 41t-47 105z" /> | ||
554 | <glyph glyph-name="Eogonek" unicode="Ę" horiz-adv-x="1146" | ||
555 | d="M1013 617h-552v-347h652v-270h-195q-78 -39 -111.5 -74.5t-33.5 -86.5q0 -62 60 -62q30 0 69 18l38 -168q-73 -44 -166 -44q-110 0 -176.5 58t-66.5 156q0 124 100 203h-521v1456h1005v-271h-654v-307h552v-261z" /> | ||
556 | <glyph glyph-name="eogonek" unicode="ę" horiz-adv-x="1115" | ||
557 | d="M1045 170q-57 -82 -168 -134l3 -1q-78 -39 -111.5 -74.5t-33.5 -86.5q0 -62 60 -62q30 0 69 18l38 -168q-73 -44 -166 -44q-110 0 -176.5 58t-66.5 156q0 91 49 152q-217 23 -349 167t-132 362v30q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131 | ||
558 | h-670q18 -91 79 -143t158 -52q160 0 250 112zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5t-123 44.5z" /> | ||
559 | <glyph glyph-name="Ecaron" unicode="Ě" horiz-adv-x="1146" | ||
560 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261zM643 1713l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
561 | <glyph glyph-name="ecaron" unicode="ě" horiz-adv-x="1115" | ||
562 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
563 | t-123 44.5zM533 1404l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
564 | <glyph glyph-name="Gcircumflex" unicode="Ĝ" horiz-adv-x="1396" | ||
565 | d="M1302 180q-81 -90 -237 -145t-342 -55q-286 0 -457 175t-183 487l-1 126q0 215 76 375.5t217.5 247t327.5 86.5q272 0 422.5 -124.5t175.5 -371.5h-338q-18 122 -78 174t-170 52q-132 0 -204 -112t-73 -320v-88q0 -218 74.5 -327.5t234.5 -109.5q137 0 204 61v226h-244 | ||
566 | v241h595v-598zM1134 1565v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
567 | <glyph glyph-name="gcircumflex" unicode="ĝ" horiz-adv-x="1178" | ||
568 | d="M55 549q0 164 54 290t155 194.5t235 68.5q169 0 264 -114l12 94h306v-1041q0 -143 -66.5 -248.5t-192.5 -162t-292 -56.5q-119 0 -230.5 45t-170.5 117l141 198q94 -111 248 -111q224 0 224 230v34q-97 -107 -245 -107q-198 0 -320 151.5t-122 405.5v12zM393 528 | ||
569 | q0 -133 50 -210.5t140 -77.5q109 0 159 73v455q-49 74 -157 74q-90 0 -141 -80.5t-51 -233.5zM978 1255v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
570 | <glyph glyph-name="Gbreve" unicode="Ğ" horiz-adv-x="1396" | ||
571 | d="M1302 180q-81 -90 -237 -145t-342 -55q-286 0 -457 175t-183 487l-1 126q0 215 76 375.5t217.5 247t327.5 86.5q272 0 422.5 -124.5t175.5 -371.5h-338q-18 122 -78 174t-170 52q-132 0 -204 -112t-73 -320v-88q0 -218 74.5 -327.5t234.5 -109.5q137 0 204 61v226h-244 | ||
572 | v241h595v-598zM1080 1848q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
573 | <glyph glyph-name="gbreve" unicode="ğ" horiz-adv-x="1178" | ||
574 | d="M55 549q0 164 54 290t155 194.5t235 68.5q169 0 264 -114l12 94h306v-1041q0 -143 -66.5 -248.5t-192.5 -162t-292 -56.5q-119 0 -230.5 45t-170.5 117l141 198q94 -111 248 -111q224 0 224 230v34q-97 -107 -245 -107q-198 0 -320 151.5t-122 405.5v12zM393 528 | ||
575 | q0 -133 50 -210.5t140 -77.5q109 0 159 73v455q-49 74 -157 74q-90 0 -141 -80.5t-51 -233.5zM924 1538q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
576 | <glyph glyph-name="Gdotaccent" unicode="Ġ" horiz-adv-x="1396" | ||
577 | d="M1302 180q-81 -90 -237 -145t-342 -55q-286 0 -457 175t-183 487l-1 126q0 215 76 375.5t217.5 247t327.5 86.5q272 0 422.5 -124.5t175.5 -371.5h-338q-18 122 -78 174t-170 52q-132 0 -204 -112t-73 -320v-88q0 -218 74.5 -327.5t234.5 -109.5q137 0 204 61v226h-244 | ||
578 | v241h595v-598zM542 1711q0 65 47 106t119 41q71 0 118 -41t47 -106q0 -64 -47 -105t-118 -41q-72 0 -119 41t-47 105z" /> | ||
579 | <glyph glyph-name="gdotaccent" unicode="ġ" horiz-adv-x="1178" | ||
580 | d="M55 549q0 164 54 290t155 194.5t235 68.5q169 0 264 -114l12 94h306v-1041q0 -143 -66.5 -248.5t-192.5 -162t-292 -56.5q-119 0 -230.5 45t-170.5 117l141 198q94 -111 248 -111q224 0 224 230v34q-97 -107 -245 -107q-198 0 -320 151.5t-122 405.5v12zM393 528 | ||
581 | q0 -133 50 -210.5t140 -77.5q109 0 159 73v455q-49 74 -157 74q-90 0 -141 -80.5t-51 -233.5zM386 1401q0 65 47 106t119 41q71 0 118 -41t47 -106q0 -64 -47 -105t-118 -41q-72 0 -119 41t-47 105z" /> | ||
582 | <glyph glyph-name="uni0122" unicode="Ģ" horiz-adv-x="1396" | ||
583 | d="M1302 180q-81 -90 -237 -145t-342 -55q-286 0 -457 175t-183 487l-1 126q0 215 76 375.5t217.5 247t327.5 86.5q272 0 422.5 -124.5t175.5 -371.5h-338q-18 122 -78 174t-170 52q-132 0 -204 -112t-73 -320v-88q0 -218 74.5 -327.5t234.5 -109.5q137 0 204 61v226h-244 | ||
584 | v241h595v-598zM707 -515l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
585 | <glyph glyph-name="uni0123" unicode="ģ" horiz-adv-x="1178" | ||
586 | d="M55 549q0 164 54 290t155 194.5t235 68.5q169 0 264 -114l12 94h306v-1041q0 -143 -66.5 -248.5t-192.5 -162t-292 -56.5q-119 0 -230.5 45t-170.5 117l141 198q94 -111 248 -111q224 0 224 230v34q-97 -107 -245 -107q-198 0 -320 151.5t-122 405.5v12zM393 528 | ||
587 | q0 -133 50 -210.5t140 -77.5q109 0 159 73v455q-49 74 -157 74q-90 0 -141 -80.5t-51 -233.5zM571 1730l168 -73q-67 -140 -70 -253l-2 -143h-237v120q0 264 141 349z" /> | ||
588 | <glyph glyph-name="Hcircumflex" unicode="Ĥ" horiz-adv-x="1439" | ||
589 | d="M1327 0h-349v608h-517v-608h-351v1456h351v-578h517v578h349v-1456zM1152 1565v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
590 | <glyph glyph-name="hcircumflex" unicode="ĥ" horiz-adv-x="1156" | ||
591 | d="M424 966q108 136 276 136q179 0 270 -106t93 -313v-683h-338v675q0 86 -35 126.5t-119 40.5q-104 0 -147 -66v-776h-337v1536h337v-570zM960 1658v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
592 | <glyph glyph-name="Hbar" unicode="Ħ" horiz-adv-x="1492" | ||
593 | d="M1352 1243h117v-183h-117v-1060h-349v608h-517v-608h-351v1060h-102v183h102v213h351v-213h517v213h349v-213zM486 878h517v182h-517v-182z" /> | ||
594 | <glyph glyph-name="hbar" unicode="ħ" horiz-adv-x="1186" | ||
595 | d="M669 1211h-215v-245q108 136 276 136q179 0 270 -106t93 -313v-683h-338v675q0 86 -35 126.5t-119 40.5q-104 0 -147 -66v-776h-337v1211h-178v191h178v134h337v-134h215v-191z" /> | ||
596 | <glyph glyph-name="Itilde" unicode="Ĩ" horiz-adv-x="618" | ||
597 | d="M484 0h-350v1456h350v-1456zM695 1837q0 -114 -66.5 -193.5t-164.5 -79.5q-66 0 -147 42t-131 42q-32 0 -54.5 -22t-22.5 -68l-187 10q0 111 66.5 192t163.5 81q50 0 131 -36.5t102.5 -41.5t45.5 -5q32 0 55 22t23 68z" /> | ||
598 | <glyph glyph-name="itilde" unicode="ĩ" horiz-adv-x="584" | ||
599 | d="M462 0h-339v1082h339v-1082zM680 1507q0 -114 -66.5 -193.5t-164.5 -79.5q-66 0 -147 42t-131 42q-32 0 -54.5 -22t-22.5 -68l-187 10q0 111 66.5 192t163.5 81q50 0 131 -36.5t102.5 -41.5t45.5 -5q32 0 55 22t23 68z" /> | ||
600 | <glyph glyph-name="Imacron" unicode="Ī" horiz-adv-x="618" | ||
601 | d="M484 0h-350v1456h350v-1456zM676 1589h-734v173h734v-173z" /> | ||
602 | <glyph glyph-name="imacron" unicode="ī" horiz-adv-x="584" | ||
603 | d="M462 0h-339v1082h339v-1082zM661 1259h-734v173h734v-173z" /> | ||
604 | <glyph glyph-name="Ibreve" unicode="Ĭ" horiz-adv-x="618" | ||
605 | d="M484 0h-350v1456h350v-1456zM680 1848q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
606 | <glyph glyph-name="ibreve" unicode="ĭ" horiz-adv-x="584" | ||
607 | d="M462 0h-339v1082h339v-1082zM665 1518q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
608 | <glyph glyph-name="Iogonek" unicode="Į" horiz-adv-x="618" | ||
609 | d="M484 0h-350v1456h350v-1456zM412 0q-78 -39 -111.5 -74.5t-33.5 -86.5q0 -62 60 -62q30 0 69 18l38 -168q-73 -44 -166 -44q-110 0 -176.5 58t-66.5 156q0 173 201 263z" /> | ||
610 | <glyph glyph-name="iogonek" unicode="į" horiz-adv-x="563" | ||
611 | d="M450 0h-338v1082h338v-1082zM92 1361q0 72 52 118t135 46t135 -46t52 -118t-52 -118t-135 -46t-135 46t-52 118zM395 0q-78 -39 -111.5 -74.5t-33.5 -86.5q0 -62 60 -62q30 0 69 18l38 -168q-73 -44 -166 -44q-110 0 -176.5 58t-66.5 156q0 173 201 263z" /> | ||
612 | <glyph glyph-name="Idotaccent" unicode="İ" horiz-adv-x="618" | ||
613 | d="M484 0h-350v1456h350v-1456zM141 1711q0 65 47 106t119 41q71 0 118 -41t47 -106q0 -64 -47 -105t-118 -41q-72 0 -119 41t-47 105z" /> | ||
614 | <glyph glyph-name="dotlessi" unicode="ı" horiz-adv-x="584" | ||
615 | d="M462 0h-339v1082h339v-1082z" /> | ||
616 | <glyph glyph-name="IJ" unicode="IJ" horiz-adv-x="1769" | ||
617 | d="M484 0h-350v1456h350v-1456zM1308 1456h350v-999q0 -139 -64.5 -248t-180 -169t-257.5 -60q-238 0 -370 120t-132 340h352q0 -100 34.5 -145t115.5 -45q73 0 112.5 54.5t39.5 152.5v999z" /> | ||
618 | <glyph glyph-name="ij" unicode="ij" horiz-adv-x="1116" | ||
619 | d="M450 0h-338v1082h338v-1082zM92 1361q0 72 52 118t135 46t135 -46t52 -118t-52 -118t-135 -46t-135 46t-52 118zM1020 1082v-1119q-1 -192 -110 -296t-304 -104q-84 0 -159 17v255q58 -9 95 -9q140 0 140 139v1117h338zM657 1361q0 72 52 118t135 46t135 -46t52 -118 | ||
620 | t-52 -118t-135 -46t-135 46t-52 118z" /> | ||
621 | <glyph glyph-name="Jcircumflex" unicode="Ĵ" horiz-adv-x="1151" | ||
622 | d="M690 1456h350v-999q0 -139 -64.5 -248t-180 -169t-257.5 -60q-238 0 -370 120t-132 340h352q0 -100 34.5 -145t115.5 -45q73 0 112.5 54.5t39.5 152.5v999zM1284 1565v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
623 | <glyph glyph-name="jcircumflex" unicode="ĵ" horiz-adv-x="604" | ||
624 | d="M476 1082v-1095q0 -204 -108 -314t-301 -110q-86 0 -159 17l15 255q50 -12 98 -12q118 0 118 166v1093h337zM701 1235v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
625 | <glyph glyph-name="uni0136" unicode="Ķ" horiz-adv-x="1310" | ||
626 | d="M605 542l-144 -158v-384h-351v1456h351v-642l122 185l314 457h434l-492 -644l492 -812h-416zM620 -515l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
627 | <glyph glyph-name="uni0137" unicode="ķ" horiz-adv-x="1120" | ||
628 | d="M529 403l-95 -95v-308h-337v1537h337v-816l34 45l254 316h404l-379 -445l404 -637h-386zM555 -515l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
629 | <glyph glyph-name="kgreenlandic" unicode="ĸ" horiz-adv-x="1242" | ||
630 | d="M575 378h-120v-378h-337v1082h337v-389h90l225 389h432l-342 -506l350 -576h-434z" /> | ||
631 | <glyph glyph-name="Lacute" unicode="Ĺ" horiz-adv-x="1110" | ||
632 | d="M461 270h611v-270h-962v1456h351v-1186zM340 1846h356l-278 -314h-275z" /> | ||
633 | <glyph glyph-name="lacute" unicode="ĺ" horiz-adv-x="563" | ||
634 | d="M450 0h-338v1536h338v-1536zM324 1923h356l-278 -314h-275z" /> | ||
635 | <glyph glyph-name="uni013B" unicode="Ļ" horiz-adv-x="1110" | ||
636 | d="M461 270h611v-270h-962v1456h351v-1186zM566 -515l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
637 | <glyph glyph-name="uni013C" unicode="ļ" horiz-adv-x="563" | ||
638 | d="M450 0h-338v1536h338v-1536zM255 -515l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
639 | <glyph glyph-name="Lcaron" unicode="Ľ" horiz-adv-x="1110" | ||
640 | d="M461 270h611v-270h-962v1456h351v-1186zM808 1026l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
641 | <glyph glyph-name="lcaron" unicode="ľ" horiz-adv-x="713" | ||
642 | d="M450 0h-338v1536h338v-1536zM683 1106l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
643 | <glyph glyph-name="Ldot" unicode="Ŀ" horiz-adv-x="1110" | ||
644 | d="M461 270h611v-270h-962v1456h351v-1186zM597 840q0 65 47 106t119 41q71 0 118 -41t47 -106q0 -64 -47 -105t-118 -41q-72 0 -119 41t-47 105z" /> | ||
645 | <glyph glyph-name="ldot" unicode="ŀ" horiz-adv-x="783" | ||
646 | d="M450 0h-338v1536h338v-1536zM542 771q0 65 47 106t119 41q71 0 118 -41t47 -106q0 -64 -47 -105t-118 -41q-72 0 -119 41t-47 105z" /> | ||
647 | <glyph glyph-name="Lslash" unicode="Ł" horiz-adv-x="1160" | ||
648 | d="M512 914l194 53v-178l-194 -53v-466h611v-270h-962v639l-136 -37v178l136 37v639h351v-542z" /> | ||
649 | <glyph glyph-name="lslash" unicode="ł" horiz-adv-x="662" | ||
650 | d="M494 925l135 42v-180l-135 -42v-745h-338v640l-130 -40v180l130 40v716h338v-611z" /> | ||
651 | <glyph glyph-name="Nacute" unicode="Ń" horiz-adv-x="1438" | ||
652 | d="M1326 0h-349l-516 906v-906h-351v1456h351l515 -906v906h350v-1456zM769 1846h356l-278 -314h-275z" /> | ||
653 | <glyph glyph-name="nacute" unicode="ń" horiz-adv-x="1155" | ||
654 | d="M404 1082l11 -127q112 147 309 147q169 0 252.5 -101t86.5 -304v-697h-338v683q0 82 -33 120.5t-120 38.5q-99 0 -147 -78v-764h-337v1082h316zM620 1536h356l-278 -314h-275z" /> | ||
655 | <glyph glyph-name="uni0145" unicode="Ņ" horiz-adv-x="1438" | ||
656 | d="M1326 0h-349l-516 906v-906h-351v1456h351l515 -906v906h350v-1456zM700 -515l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
657 | <glyph glyph-name="uni0146" unicode="ņ" horiz-adv-x="1155" | ||
658 | d="M404 1082l11 -127q112 147 309 147q169 0 252.5 -101t86.5 -304v-697h-338v683q0 82 -33 120.5t-120 38.5q-99 0 -147 -78v-764h-337v1082h316zM553 -515l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
659 | <glyph glyph-name="Ncaron" unicode="Ň" horiz-adv-x="1438" | ||
660 | d="M1326 0h-349l-516 906v-906h-351v1456h351l515 -906v906h350v-1456zM726 1713l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
661 | <glyph glyph-name="ncaron" unicode="ň" horiz-adv-x="1155" | ||
662 | d="M404 1082l11 -127q112 147 309 147q169 0 252.5 -101t86.5 -304v-697h-338v683q0 82 -33 120.5t-120 38.5q-99 0 -147 -78v-764h-337v1082h316zM577 1403l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
663 | <glyph glyph-name="napostrophe" unicode="ʼn" horiz-adv-x="1155" | ||
664 | d="M404 1082l11 -127q112 147 309 147q169 0 252.5 -101t86.5 -304v-697h-338v683q0 82 -33 120.5t-120 38.5q-99 0 -147 -78v-764h-337v1082h316zM28 1104l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
665 | <glyph glyph-name="Eng" unicode="Ŋ" horiz-adv-x="1453" | ||
666 | d="M1337 1456v-1460q0 -209 -109.5 -321t-307.5 -112q-88 0 -165 17l14 265q48 -11 101 -11q117 0 117 166l-524 907v-907h-350v1456h350l524 -906v906h350z" /> | ||
667 | <glyph glyph-name="eng" unicode="ŋ" horiz-adv-x="1151" | ||
668 | d="M407 1082l13 -154q116 174 306 174q166 0 250.5 -110t87.5 -325v-682q0 -202 -107.5 -312t-301.5 -110q-87 0 -160 17l14 255q50 -12 100 -12q117 0 117 165v664q0 97 -30.5 143.5t-98.5 46.5q-109 0 -170 -74v-768h-337v1082h317z" /> | ||
669 | <glyph glyph-name="Omacron" unicode="Ō" horiz-adv-x="1414" | ||
670 | d="M1343 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 85.5t-224.5 244.5t-84.5 365v82q0 214 78.5 377.5t225 252.5t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM986 759q0 217 -72.5 329.5t-207.5 112.5q-264 0 -279 -396l-1 -107q0 -214 71 -329 | ||
671 | t211 -115q133 0 205 113t73 325v67zM1071 1589h-734v173h734v-173z" /> | ||
672 | <glyph glyph-name="omacron" unicode="ō" horiz-adv-x="1150" | ||
673 | d="M52 551q0 162 63 288.5t181 194.5t277 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-231 0 -371 138.5t-151 375.5zM389 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251zM943 1280h-734v173h734v-173z" /> | ||
674 | <glyph glyph-name="Obreve" unicode="Ŏ" horiz-adv-x="1414" | ||
675 | d="M1343 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 85.5t-224.5 244.5t-84.5 365v82q0 214 78.5 377.5t225 252.5t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM986 759q0 217 -72.5 329.5t-207.5 112.5q-264 0 -279 -396l-1 -107q0 -214 71 -329 | ||
676 | t211 -115q133 0 205 113t73 325v67zM1075 1848q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
677 | <glyph glyph-name="obreve" unicode="ŏ" horiz-adv-x="1150" | ||
678 | d="M52 551q0 162 63 288.5t181 194.5t277 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-231 0 -371 138.5t-151 375.5zM389 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251zM947 1538q0 -137 -101 -222 | ||
679 | t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
680 | <glyph glyph-name="Ohungarumlaut" unicode="Ő" horiz-adv-x="1414" | ||
681 | d="M1343 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 85.5t-224.5 244.5t-84.5 365v82q0 214 78.5 377.5t225 252.5t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM986 759q0 217 -72.5 329.5t-207.5 112.5q-264 0 -279 -396l-1 -107q0 -214 71 -329 | ||
682 | t211 -115q133 0 205 113t73 325v67zM986 1845h278l-266 -300h-237zM570 1845h280l-238 -300h-240z" /> | ||
683 | <glyph glyph-name="ohungarumlaut" unicode="ő" horiz-adv-x="1150" | ||
684 | d="M52 551q0 162 63 288.5t181 194.5t277 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-231 0 -371 138.5t-151 375.5zM389 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251zM858 1535h278l-266 -300h-237z | ||
685 | M442 1535h280l-238 -300h-240z" /> | ||
686 | <glyph glyph-name="OE" unicode="Œ" horiz-adv-x="1994" | ||
687 | d="M1918 0h-908q-167 -20 -288 -20q-183 0 -327 75t-223.5 211.5t-79.5 308.5v305q0 173 79 310t223 211.5t326 74.5q123 0 290 -20h910v-271h-654v-307h552v-261h-552v-347h652v-270zM722 240q101 0 193 12v951q-102 13 -195 13q-135 0 -212.5 -83t-77.5 -251v-306 | ||
688 | q0 -168 78.5 -252t213.5 -84z" /> | ||
689 | <glyph glyph-name="oe" unicode="œ" horiz-adv-x="1845" | ||
690 | d="M75 551q0 164 63.5 289.5t181.5 193.5t277 68q218 0 357 -124q132 126 340 124q220 0 345 -131.5t125 -363.5v-172h-626q18 -93 77.5 -144t149.5 -51q127 0 222 36l76 31l80 -206q-71 -53 -185.5 -87t-238.5 -34q-216 0 -359 128q-138 -128 -361 -128q-231 0 -371.5 138 | ||
691 | t-151.5 376zM412 530q0 -290 187 -290q180 0 185 275v36q0 291 -187 291q-170 0 -184 -251zM1294 842q-134 0 -157 -196h298v26q0 170 -141 170z" /> | ||
692 | <glyph glyph-name="Racute" unicode="Ŕ" horiz-adv-x="1336" | ||
693 | d="M651 514h-190v-514h-351v1456h573q259 0 405 -115t146 -325q0 -152 -61.5 -252t-192.5 -162l304 -587v-15h-376zM461 785h222q100 0 150.5 52.5t50.5 146.5t-51 147.5t-150 53.5h-222v-400zM635 1846h356l-278 -314h-275z" /> | ||
694 | <glyph glyph-name="racute" unicode="ŕ" horiz-adv-x="776" | ||
695 | d="M749 777l-111 8q-159 0 -204 -100v-685h-337v1082h316l11 -139q85 159 237 159q54 0 94 -12zM455 1536h356l-278 -314h-275z" /> | ||
696 | <glyph glyph-name="uni0156" unicode="Ŗ" horiz-adv-x="1336" | ||
697 | d="M651 514h-190v-514h-351v1456h573q259 0 405 -115t146 -325q0 -152 -61.5 -252t-192.5 -162l304 -587v-15h-376zM461 785h222q100 0 150.5 52.5t50.5 146.5t-51 147.5t-150 53.5h-222v-400zM587 -515l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5 | ||
698 | t-102 -171.5z" /> | ||
699 | <glyph glyph-name="uni0157" unicode="ŗ" horiz-adv-x="776" | ||
700 | d="M749 777l-111 8q-159 0 -204 -100v-685h-337v1082h316l11 -139q85 159 237 159q54 0 94 -12zM239 -515l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
701 | <glyph glyph-name="Rcaron" unicode="Ř" horiz-adv-x="1336" | ||
702 | d="M651 514h-190v-514h-351v1456h573q259 0 405 -115t146 -325q0 -152 -61.5 -252t-192.5 -162l304 -587v-15h-376zM461 785h222q100 0 150.5 52.5t50.5 146.5t-51 147.5t-150 53.5h-222v-400zM592 1713l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
703 | <glyph glyph-name="rcaron" unicode="ř" horiz-adv-x="776" | ||
704 | d="M749 777l-111 8q-159 0 -204 -100v-685h-337v1082h316l11 -139q85 159 237 159q54 0 94 -12zM413 1403l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
705 | <glyph glyph-name="Sacute" unicode="Ś" horiz-adv-x="1282" | ||
706 | d="M861 387q0 77 -54.5 120t-191.5 89t-224 89q-283 139 -283 382q0 121 70.5 213.5t199.5 144t290 51.5q157 0 281.5 -56t193.5 -159.5t69 -236.5h-350q0 89 -54.5 138t-147.5 49q-94 0 -148.5 -41.5t-54.5 -105.5q0 -56 60 -101.5t211 -94t248 -104.5q236 -136 236 -375 | ||
707 | q0 -191 -144 -300t-395 -109q-177 0 -320.5 63.5t-216 174t-72.5 254.5h352q0 -117 60.5 -172.5t196.5 -55.5q87 0 137.5 37.5t50.5 105.5zM705 1846h356l-278 -314h-275z" /> | ||
708 | <glyph glyph-name="sacute" unicode="ś" horiz-adv-x="1049" | ||
709 | d="M661 304q0 43 -45 69t-171 54t-208 73.5t-125 110.5t-43 149q0 149 123 245.5t322 96.5q214 0 344 -97t130 -255h-338q0 130 -137 130q-53 0 -89 -29.5t-36 -73.5q0 -45 44 -73t140.5 -46t169.5 -43q244 -84 244 -301q0 -148 -131.5 -241t-340.5 -93q-139 0 -248 50 | ||
710 | t-170 136t-61 181h315q2 -75 50 -109.5t123 -34.5q69 0 103.5 28t34.5 73zM551 1536h356l-278 -314h-275z" /> | ||
711 | <glyph glyph-name="Scircumflex" unicode="Ŝ" horiz-adv-x="1282" | ||
712 | d="M861 387q0 77 -54.5 120t-191.5 89t-224 89q-283 139 -283 382q0 121 70.5 213.5t199.5 144t290 51.5q157 0 281.5 -56t193.5 -159.5t69 -236.5h-350q0 89 -54.5 138t-147.5 49q-94 0 -148.5 -41.5t-54.5 -105.5q0 -56 60 -101.5t211 -94t248 -104.5q236 -136 236 -375 | ||
713 | q0 -191 -144 -300t-395 -109q-177 0 -320.5 63.5t-216 174t-72.5 254.5h352q0 -117 60.5 -172.5t196.5 -55.5q87 0 137.5 37.5t50.5 105.5zM1087 1565v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
714 | <glyph glyph-name="scircumflex" unicode="ŝ" horiz-adv-x="1049" | ||
715 | d="M661 304q0 43 -45 69t-171 54t-208 73.5t-125 110.5t-43 149q0 149 123 245.5t322 96.5q214 0 344 -97t130 -255h-338q0 130 -137 130q-53 0 -89 -29.5t-36 -73.5q0 -45 44 -73t140.5 -46t169.5 -43q244 -84 244 -301q0 -148 -131.5 -241t-340.5 -93q-139 0 -248 50 | ||
716 | t-170 136t-61 181h315q2 -75 50 -109.5t123 -34.5q69 0 103.5 28t34.5 73zM934 1255v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
717 | <glyph glyph-name="Scedilla" unicode="Ş" horiz-adv-x="1282" | ||
718 | d="M861 387q0 77 -54.5 120t-191.5 89t-224 89q-283 139 -283 382q0 121 70.5 213.5t199.5 144t290 51.5q157 0 281.5 -56t193.5 -159.5t69 -236.5h-350q0 89 -54.5 138t-147.5 49q-94 0 -148.5 -41.5t-54.5 -105.5q0 -56 60 -101.5t211 -94t248 -104.5q236 -136 236 -375 | ||
719 | q0 -191 -144 -300t-395 -109q-177 0 -320.5 63.5t-216 174t-72.5 254.5h352q0 -117 60.5 -172.5t196.5 -55.5q87 0 137.5 37.5t50.5 105.5zM792 10l-10 -61q150 -28 150 -173q0 -116 -99 -182t-275 -66l-7 186q88 0 88 77q0 38 -31.5 53t-102.5 20l31 146h256z" /> | ||
720 | <glyph glyph-name="scedilla" unicode="ş" horiz-adv-x="1049" | ||
721 | d="M661 304q0 43 -45 69t-171 54t-208 73.5t-125 110.5t-43 149q0 149 123 245.5t322 96.5q214 0 344 -97t130 -255h-338q0 130 -137 130q-53 0 -89 -29.5t-36 -73.5q0 -45 44 -73t140.5 -46t169.5 -43q244 -84 244 -301q0 -148 -131.5 -241t-340.5 -93q-139 0 -248 50 | ||
722 | t-170 136t-61 181h315q2 -75 50 -109.5t123 -34.5q69 0 103.5 28t34.5 73zM639 1l-10 -61q150 -28 150 -173q0 -116 -99 -182t-275 -66l-7 186q88 0 88 77q0 38 -31.5 53t-102.5 20l31 146h256z" /> | ||
723 | <glyph glyph-name="Scaron" unicode="Š" horiz-adv-x="1282" | ||
724 | d="M861 387q0 77 -54.5 120t-191.5 89t-224 89q-283 139 -283 382q0 121 70.5 213.5t199.5 144t290 51.5q157 0 281.5 -56t193.5 -159.5t69 -236.5h-350q0 89 -54.5 138t-147.5 49q-94 0 -148.5 -41.5t-54.5 -105.5q0 -56 60 -101.5t211 -94t248 -104.5q236 -136 236 -375 | ||
725 | q0 -191 -144 -300t-395 -109q-177 0 -320.5 63.5t-216 174t-72.5 254.5h352q0 -117 60.5 -172.5t196.5 -55.5q87 0 137.5 37.5t50.5 105.5zM662 1713l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
726 | <glyph glyph-name="scaron" unicode="š" horiz-adv-x="1049" | ||
727 | d="M661 304q0 43 -45 69t-171 54t-208 73.5t-125 110.5t-43 149q0 149 123 245.5t322 96.5q214 0 344 -97t130 -255h-338q0 130 -137 130q-53 0 -89 -29.5t-36 -73.5q0 -45 44 -73t140.5 -46t169.5 -43q244 -84 244 -301q0 -148 -131.5 -241t-340.5 -93q-139 0 -248 50 | ||
728 | t-170 136t-61 181h315q2 -75 50 -109.5t123 -34.5q69 0 103.5 28t34.5 73zM508 1403l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
729 | <glyph glyph-name="uni0162" unicode="Ţ" horiz-adv-x="1291" | ||
730 | d="M1253 1185h-437v-1185h-351v1185h-429v271h1217v-271zM767 20l-10 -61q150 -28 150 -173q0 -116 -99 -182t-275 -66l-7 186q88 0 88 77q0 38 -31.5 53t-102.5 20l31 146h256z" /> | ||
731 | <glyph glyph-name="uni0163" unicode="ţ" horiz-adv-x="703" | ||
732 | d="M487 1351v-269h178v-234h-178v-495q0 -61 22 -85t87 -24q50 0 84 6v-241q-91 -29 -190 -29q-174 0 -257 82t-83 249v537h-138v234h138v269h337zM552 10l-10 -61q150 -28 150 -173q0 -116 -99 -182t-275 -66l-7 186q88 0 88 77q0 38 -31.5 53t-102.5 20l31 146h256z" /> | ||
733 | <glyph glyph-name="Tcaron" unicode="Ť" horiz-adv-x="1291" | ||
734 | d="M1253 1185h-437v-1185h-351v1185h-429v271h1217v-271zM636 1713l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
735 | <glyph glyph-name="tcaron" unicode="ť" horiz-adv-x="743" | ||
736 | d="M487 1351v-269h178v-234h-178v-495q0 -61 22 -85t87 -24q50 0 84 6v-241q-91 -29 -190 -29q-174 0 -257 82t-83 249v537h-138v234h138v269h337zM751 1238l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
737 | <glyph glyph-name="Tbar" unicode="Ŧ" horiz-adv-x="1291" | ||
738 | d="M976 723h-160v-723h-351v723h-219v191h219v271h-429v271h1217v-271h-437v-271h160v-191z" /> | ||
739 | <glyph glyph-name="tbar" unicode="ŧ" horiz-adv-x="703" | ||
740 | d="M487 1351v-269h178v-234h-178v-150h207v-191h-207v-154q0 -61 22 -85t87 -24q50 0 84 6v-241q-91 -29 -190 -29q-170 0 -253.5 79t-86.5 240v208h-186v191h186v150h-138v234h138v269h337z" /> | ||
741 | <glyph glyph-name="Utilde" unicode="Ũ" horiz-adv-x="1361" | ||
742 | d="M1252 1456v-953q0 -162 -69 -280.5t-198 -180.5t-305 -62q-266 0 -419 138t-156 378v960h353v-967q6 -239 222 -239q109 0 165 60t56 195v951h351zM1060 1837q0 -114 -66.5 -193.5t-164.5 -79.5q-66 0 -147 42t-131 42q-32 0 -54.5 -22t-22.5 -68l-187 10q0 111 66.5 192 | ||
743 | t163.5 81q50 0 131 -36.5t102.5 -41.5t45.5 -5q32 0 55 22t23 68z" /> | ||
744 | <glyph glyph-name="utilde" unicode="ũ" horiz-adv-x="1155" | ||
745 | d="M739 117q-107 -137 -289 -137q-178 0 -269.5 103.5t-91.5 297.5v701h337v-703q0 -139 135 -139q116 0 165 83v759h339v-1082h-316zM962 1528q0 -114 -66.5 -193.5t-164.5 -79.5q-66 0 -147 42t-131 42q-32 0 -54.5 -22t-22.5 -68l-187 10q0 111 66.5 192t163.5 81 | ||
746 | q50 0 131 -36.5t102.5 -41.5t45.5 -5q32 0 55 22t23 68z" /> | ||
747 | <glyph glyph-name="Umacron" unicode="Ū" horiz-adv-x="1361" | ||
748 | d="M1252 1456v-953q0 -162 -69 -280.5t-198 -180.5t-305 -62q-266 0 -419 138t-156 378v960h353v-967q6 -239 222 -239q109 0 165 60t56 195v951h351zM1041 1589h-734v173h734v-173z" /> | ||
749 | <glyph glyph-name="umacron" unicode="ū" horiz-adv-x="1155" | ||
750 | d="M739 117q-107 -137 -289 -137q-178 0 -269.5 103.5t-91.5 297.5v701h337v-703q0 -139 135 -139q116 0 165 83v759h339v-1082h-316zM943 1280h-734v173h734v-173z" /> | ||
751 | <glyph glyph-name="Ubreve" unicode="Ŭ" horiz-adv-x="1361" | ||
752 | d="M1252 1456v-953q0 -162 -69 -280.5t-198 -180.5t-305 -62q-266 0 -419 138t-156 378v960h353v-967q6 -239 222 -239q109 0 165 60t56 195v951h351zM1045 1848q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z | ||
753 | " /> | ||
754 | <glyph glyph-name="ubreve" unicode="ŭ" horiz-adv-x="1155" | ||
755 | d="M739 117q-107 -137 -289 -137q-178 0 -269.5 103.5t-91.5 297.5v701h337v-703q0 -139 135 -139q116 0 165 83v759h339v-1082h-316zM947 1538q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
756 | <glyph glyph-name="Uring" unicode="Ů" horiz-adv-x="1361" | ||
757 | d="M1252 1456v-953q0 -162 -69 -280.5t-198 -180.5t-305 -62q-266 0 -419 138t-156 378v960h353v-967q6 -239 222 -239q109 0 165 60t56 195v951h351zM452 1729q0 86 65.5 144.5t159.5 58.5q93 0 158.5 -58.5t65.5 -144.5q0 -85 -64.5 -142t-159.5 -57q-96 0 -160.5 57 | ||
758 | t-64.5 142zM677 1625q48 0 75.5 30t27.5 74t-27.5 75t-75.5 31q-49 0 -76.5 -31t-27.5 -75t27.5 -74t76.5 -30z" /> | ||
759 | <glyph glyph-name="uring" unicode="ů" horiz-adv-x="1155" | ||
760 | d="M739 117q-107 -137 -289 -137q-178 0 -269.5 103.5t-91.5 297.5v701h337v-703q0 -139 135 -139q116 0 165 83v759h339v-1082h-316zM354 1419q0 86 65.5 144.5t159.5 58.5q93 0 158.5 -58.5t65.5 -144.5q0 -85 -64.5 -142t-159.5 -57q-96 0 -160.5 57t-64.5 142zM579 1315 | ||
761 | q48 0 75.5 30t27.5 74t-27.5 75t-75.5 31q-49 0 -76.5 -31t-27.5 -75t27.5 -74t76.5 -30z" /> | ||
762 | <glyph glyph-name="Uhungarumlaut" unicode="Ű" horiz-adv-x="1361" | ||
763 | d="M1252 1456v-953q0 -162 -69 -280.5t-198 -180.5t-305 -62q-266 0 -419 138t-156 378v960h353v-967q6 -239 222 -239q109 0 165 60t56 195v951h351zM956 1845h278l-266 -300h-237zM540 1845h280l-238 -300h-240z" /> | ||
764 | <glyph glyph-name="uhungarumlaut" unicode="ű" horiz-adv-x="1155" | ||
765 | d="M739 117q-107 -137 -289 -137q-178 0 -269.5 103.5t-91.5 297.5v701h337v-703q0 -139 135 -139q116 0 165 83v759h339v-1082h-316zM858 1535h278l-266 -300h-237zM442 1535h280l-238 -300h-240z" /> | ||
766 | <glyph glyph-name="Uogonek" unicode="Ų" horiz-adv-x="1361" | ||
767 | d="M1252 1456v-953q-1 -288 -205 -426l4 -1q-78 -39 -111.5 -74.5t-33.5 -86.5q0 -62 60 -62q30 0 69 18l38 -168q-73 -44 -166 -44q-110 0 -176.5 58t-66.5 156q0 59 22 107q-275 0 -428 140.5t-153 387.5v948h353v-967q6 -239 222 -239q109 0 165 60t56 195v951h351z" /> | ||
768 | <glyph glyph-name="uogonek" unicode="ų" horiz-adv-x="1155" | ||
769 | d="M1022 0q-78 -39 -111.5 -74.5t-33.5 -86.5q0 -62 60 -62q30 0 69 18l38 -168q-73 -44 -166 -44q-110 0 -176.5 58t-66.5 156q0 131 113 213l-9 107q-107 -137 -289 -137q-178 0 -269.5 103.5t-91.5 297.5v701h337v-703q0 -139 135 -139q116 0 165 83v759h339v-1082h-43z | ||
770 | " /> | ||
771 | <glyph glyph-name="Wcircumflex" unicode="Ŵ" horiz-adv-x="1780" | ||
772 | d="M1238 543l167 913h348l-309 -1456h-364l-195 830l-191 -830h-363l-310 1456h349l167 -913l200 913h298zM1317 1565v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
773 | <glyph glyph-name="wcircumflex" unicode="ŵ" horiz-adv-x="1487" | ||
774 | d="M1029 444l109 638h323l-255 -1082h-285l-179 642l-180 -642h-285l-255 1082h323l107 -653l172 653h235zM1167 1255v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
775 | <glyph glyph-name="Ycircumflex" unicode="Ŷ" horiz-adv-x="1286" | ||
776 | d="M643 824l268 632h379l-469 -933v-523h-356v523l-468 933h377zM1068 1565v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
777 | <glyph glyph-name="ycircumflex" unicode="ŷ" horiz-adv-x="1061" | ||
778 | d="M527 472l180 610h361l-441 -1263l-19 -46q-94 -210 -332 -210q-66 0 -139 20v241h44q71 0 108.5 20.5t55.5 73.5l27 72l-376 1092h360zM953 1255v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
779 | <glyph glyph-name="Ydieresis" unicode="Ÿ" horiz-adv-x="1286" | ||
780 | d="M643 824l268 632h379l-469 -933v-523h-356v523l-468 933h377zM380 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM899 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39 | ||
781 | z" /> | ||
782 | <glyph glyph-name="Zacute" unicode="Ź" horiz-adv-x="1249" | ||
783 | d="M504 270h696v-270h-1134v185l694 1000h-698v271h1131v-180zM679 1846h356l-278 -314h-275z" /> | ||
784 | <glyph glyph-name="zacute" unicode="ź" horiz-adv-x="1054" | ||
785 | d="M492 260h493v-260h-919v188l480 634h-459v260h887v-182zM569 1536h356l-278 -314h-275z" /> | ||
786 | <glyph glyph-name="Zdotaccent" unicode="Ż" horiz-adv-x="1249" | ||
787 | d="M504 270h696v-270h-1134v185l694 1000h-698v271h1131v-180zM469 1711q0 65 47 106t119 41q71 0 118 -41t47 -106q0 -64 -47 -105t-118 -41q-72 0 -119 41t-47 105z" /> | ||
788 | <glyph glyph-name="zdotaccent" unicode="ż" horiz-adv-x="1054" | ||
789 | d="M492 260h493v-260h-919v188l480 634h-459v260h887v-182zM359 1401q0 65 47 106t119 41q71 0 118 -41t47 -106q0 -64 -47 -105t-118 -41q-72 0 -119 41t-47 105z" /> | ||
790 | <glyph glyph-name="Zcaron" unicode="Ž" horiz-adv-x="1249" | ||
791 | d="M504 270h696v-270h-1134v185l694 1000h-698v271h1131v-180zM636 1713l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
792 | <glyph glyph-name="zcaron" unicode="ž" horiz-adv-x="1054" | ||
793 | d="M492 260h493v-260h-919v188l480 634h-459v260h887v-182zM526 1403l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
794 | <glyph glyph-name="longs" unicode="ſ" horiz-adv-x="539" | ||
795 | d="M94 0v1168q0 187 111 288t317 101q67 0 167 -21l-24 -249q-48 10 -101 10q-132 0 -132 -132v-1165h-338z" /> | ||
796 | <glyph glyph-name="uni018F" unicode="Ə" horiz-adv-x="1430" | ||
797 | d="M707 -21q-303 0 -470.5 183t-167.5 515v170h923q-10 165 -105.5 248.5t-272.5 83.5q-214 0 -404 -57l-49 282q61 25 206 49t270 24q329 0 517.5 -178.5t188.5 -495.5v-163q0 -187 -81.5 -338.5t-228.5 -237t-326 -85.5zM707 276q116 0 190 76t92 219h-571v-31 | ||
798 | q0 -124 74 -194t215 -70z" /> | ||
799 | <glyph glyph-name="florin" unicode="ƒ" horiz-adv-x="758" | ||
800 | d="M720 848h-214l-2 -886q-1 -190 -101.5 -294.5t-284.5 -104.5q-89 0 -160 17l15 255q36 -12 87 -12q59 0 83 31t24 108v886h-156v234h156v86q0 187 111 288t318 101q67 0 167 -21l-25 -249q-46 10 -101 10q-131 0 -131 -132v-83h214v-234z" /> | ||
801 | <glyph glyph-name="Ohorn" unicode="Ơ" horiz-adv-x="1454" | ||
802 | d="M1346 698q0 -214 -79.5 -378t-225 -252t-331.5 -88t-330 86t-224.5 246t-83.5 368v77q0 215 78.5 378t224 252t333.5 89q143 0 262 -52t205 -150q54 19 79.5 82.5t25.5 199.5h204q0 -350 -214 -430q75 -159 76 -365v-63zM989 759q0 217 -73 329.5t-208 112.5 | ||
803 | q-263 0 -278 -396l-1 -107q0 -215 70.5 -329.5t210.5 -114.5q134 0 206 113t73 325v67z" /> | ||
804 | <glyph glyph-name="ohorn" unicode="ơ" horiz-adv-x="1198" | ||
805 | d="M50 551q0 162 63 288.5t180.5 194.5t277.5 68q246 0 385 -152q62 58 62 227h184q0 -260 -165 -349q57 -124 57 -298q0 -253 -140.5 -401.5t-380.5 -148.5q-232 0 -371.5 138.5t-150.5 375.5zM387 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291 | ||
806 | q-169 0 -183 -251z" /> | ||
807 | <glyph glyph-name="Uhorn" unicode="Ư" horiz-adv-x="1474" | ||
808 | d="M1252 1456v-232q73 5 113 33t57 79.5t17 200.5h205q0 -252 -94.5 -361t-297.5 -116v-557q0 -162 -69 -280.5t-198 -180.5t-305 -62q-266 0 -419 138t-156 378v960h353v-967q6 -239 222 -239q109 0 165 60t56 195v951h351z" /> | ||
809 | <glyph glyph-name="uhorn" unicode="ư" horiz-adv-x="1231" | ||
810 | d="M1349 1181q0 -180 -69 -270t-215 -114v-797h-316l-10 117q-107 -137 -289 -137q-178 0 -269.5 103.5t-91.5 297.5v701h337v-703q0 -139 135 -139q116 0 165 83v759h339v-133q55 22 78 73t23 159h183z" /> | ||
811 | <glyph glyph-name="uni01F0" unicode="ǰ" horiz-adv-x="604" | ||
812 | d="M476 1082v-1095q0 -204 -108 -314t-301 -110q-86 0 -159 17l15 255q50 -12 98 -12q118 0 118 166v1093h337zM276 1383l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
813 | <glyph glyph-name="Aringacute" unicode="Ǻ" | ||
814 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM821 2019h293l-292 -216h-212zM697 1383q-94 0 -155 54.5t-61 135.5t62.5 137t153.5 56t152.5 -56t61.5 -137t-60.5 -135.5t-153.5 -54.5zM606 1573q0 -40 26 -65t65 -25q40 0 64 25 | ||
815 | t24 65q0 42 -24 67t-64 25q-39 0 -65 -25t-26 -67z" /> | ||
816 | <glyph glyph-name="aringacute" unicode="ǻ" horiz-adv-x="1087" | ||
817 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
818 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM656 1710h293l-292 -216h-212zM532 1074q-94 0 -155 54.5t-61 135.5t62.5 137t153.5 56t152.5 -56t61.5 -137t-60.5 -135.5t-153.5 -54.5zM441 1264q0 -40 26 -65t65 -25q40 0 64 25t24 65q0 42 -24 67t-64 25q-39 0 -65 -25 | ||
819 | t-26 -67z" /> | ||
820 | <glyph glyph-name="AEacute" unicode="Ǽ" horiz-adv-x="1926" | ||
821 | d="M1851 0h-897l-14 329h-382l-152 -329h-390l735 1456h1039v-264h-549l13 -316h455v-264h-444l15 -348h571v-264zM683 599h246l-21 486zM976 1858h356l-278 -314h-275z" /> | ||
822 | <glyph glyph-name="aeacute" unicode="ǽ" horiz-adv-x="1730" | ||
823 | d="M1238 -20q-240 0 -380 134q-66 -66 -164 -100t-210 -34q-199 0 -311 91.5t-112 252.5q0 158 129.5 244t384.5 87h142v46q0 66 -34 103.5t-99 37.5q-72 0 -110 -29.5t-38 -72.5l-337 19q0 151 134 247t355 96q202 0 319 -91q126 93 320 91q212 0 335 -133t123 -360v-174 | ||
824 | h-639q14 -98 75 -146.5t163 -48.5q126 0 223 40l62 27l81 -206q-67 -52 -181.5 -86.5t-230.5 -34.5zM548 212q89 0 169 63v176h-139q-78 -1 -129 -37t-51 -94q0 -108 150 -108zM1227 842q-82 0 -125.5 -48.5t-54.5 -147.5h309v26q0 81 -33 125.5t-96 44.5zM906 1537h356 | ||
825 | l-278 -314h-275z" /> | ||
826 | <glyph glyph-name="Oslashacute" unicode="Ǿ" horiz-adv-x="1409" | ||
827 | d="M1354 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5q-162 0 -292 65l-81 -140h-207l141 245q-199 199 -199 556v51q0 215 78.5 378t224 252t333.5 89q157 0 287 -64l61 106h208l-121 -211q202 -200 202 -558v-51zM997 759q0 133 -29 229l-396 -689q60 -45 147 -45 | ||
828 | q134 0 205.5 113t72.5 325v67zM437 698q0 -133 27 -227l394 687q-60 43 -141 43q-139 0 -209 -111t-71 -325v-67zM759 1920h356l-278 -314h-275z" /> | ||
829 | <glyph glyph-name="oslashacute" unicode="ǿ" horiz-adv-x="1151" | ||
830 | d="M52 551q0 162 63 288.5t181 194.5t277 68q94 0 177 -25l69 142h177l-103 -212q203 -148 203 -477q0 -253 -140.5 -401.5t-380.5 -148.5q-93 0 -171 22l-71 -147h-177l104 215q-208 147 -208 481zM389 530q0 -96 18 -157l224 460q-26 9 -58 9q-169 0 -183 -251zM759 551 | ||
831 | q0 85 -17 147l-219 -452q22 -6 52 -6q180 0 184 277v34zM581 1531h356l-278 -314h-275z" /> | ||
832 | <glyph glyph-name="uni0218" unicode="Ș" horiz-adv-x="1282" | ||
833 | d="M861 387q0 77 -54.5 120t-191.5 89t-224 89q-283 139 -283 382q0 121 70.5 213.5t199.5 144t290 51.5q157 0 281.5 -56t193.5 -159.5t69 -236.5h-350q0 89 -54.5 138t-147.5 49q-94 0 -148.5 -41.5t-54.5 -105.5q0 -56 60 -101.5t211 -94t248 -104.5q236 -136 236 -375 | ||
834 | q0 -191 -144 -300t-395 -109q-177 0 -320.5 63.5t-216 174t-72.5 254.5h352q0 -117 60.5 -172.5t196.5 -55.5q87 0 137.5 37.5t50.5 105.5zM635 -515l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
835 | <glyph glyph-name="uni0219" unicode="ș" horiz-adv-x="1049" | ||
836 | d="M661 304q0 43 -45 69t-171 54t-208 73.5t-125 110.5t-43 149q0 149 123 245.5t322 96.5q214 0 344 -97t130 -255h-338q0 130 -137 130q-53 0 -89 -29.5t-36 -73.5q0 -45 44 -73t140.5 -46t169.5 -43q244 -84 244 -301q0 -148 -131.5 -241t-340.5 -93q-139 0 -248 50 | ||
837 | t-170 136t-61 181h315q2 -75 50 -109.5t123 -34.5q69 0 103.5 28t34.5 73zM482 -515l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
838 | <glyph glyph-name="uni021A" unicode="Ț" horiz-adv-x="1291" | ||
839 | d="M1253 1185h-437v-1185h-351v1185h-429v271h1217v-271zM610 -515l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
840 | <glyph glyph-name="uni021B" unicode="ț" horiz-adv-x="703" | ||
841 | d="M487 1351v-269h178v-234h-178v-495q0 -61 22 -85t87 -24q50 0 84 6v-241q-91 -29 -190 -29q-174 0 -257 82t-83 249v537h-138v234h138v269h337zM395 -515l-159 80l26 46q50 94 50 216v89h225v-74q-1 -86 -40 -185.5t-102 -171.5z" /> | ||
842 | <glyph glyph-name="uni0237" unicode="ȷ" horiz-adv-x="604" | ||
843 | d="M476 1082v-1095q0 -204 -108 -314t-301 -110q-86 0 -159 17l15 255q50 -12 98 -12q118 0 118 166v1093h337z" /> | ||
844 | <glyph glyph-name="uni0259" unicode="ə" horiz-adv-x="1083" | ||
845 | d="M511 1103q232 0 378.5 -146.5t146.5 -388.5v-28q0 -256 -134.5 -408.5t-365.5 -150.5q-220 0 -345 131.5t-125 363.5v172h626q-18 91 -77 143t-150 52q-127 0 -222 -36l-76 -31l-80 206q71 53 185.5 87t238.5 34zM536 241q134 0 157 196h-298v-26q0 -170 141 -170z" /> | ||
846 | <glyph glyph-name="uni02BC" unicode="ʼ" horiz-adv-x="497" | ||
847 | d="M214 1000l-148 80q83 144 85 282v174h246v-163q0 -93 -53.5 -198.5t-129.5 -174.5z" /> | ||
848 | <glyph glyph-name="circumflex" unicode="ˆ" horiz-adv-x="1033" | ||
849 | d="M941 1255v-13h-266l-159 136l-159 -136h-260v17l323 277h193z" /> | ||
850 | <glyph glyph-name="caron" unicode="ˇ" horiz-adv-x="985" | ||
851 | d="M492 1403l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
852 | <glyph glyph-name="uni02C9" unicode="ˉ" horiz-adv-x="1066" | ||
853 | d="M895 1285h-734v173h734v-173z" /> | ||
854 | <glyph glyph-name="breve" unicode="˘" horiz-adv-x="927" | ||
855 | d="M834 1538q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
856 | <glyph glyph-name="dotaccent" unicode="˙" horiz-adv-x="563" | ||
857 | d="M107 1378q0 65 47 106t119 41q71 0 118 -41t47 -106q0 -64 -47 -105t-118 -41q-72 0 -119 41t-47 105z" /> | ||
858 | <glyph glyph-name="ring" unicode="˚" horiz-adv-x="674" | ||
859 | d="M118 1294q0 86 65.5 144.5t159.5 58.5q93 0 158.5 -58.5t65.5 -144.5q0 -85 -64.5 -142t-159.5 -57q-96 0 -160.5 57t-64.5 142zM343 1190q48 0 75.5 30t27.5 74t-27.5 75t-75.5 31q-49 0 -76.5 -31t-27.5 -75t27.5 -74t76.5 -30z" /> | ||
860 | <glyph glyph-name="ogonek" unicode="˛" horiz-adv-x="645" | ||
861 | d="M412 0q-78 -39 -111.5 -74.5t-33.5 -86.5q0 -62 60 -62q30 0 69 18l38 -168q-73 -44 -166 -44q-110 0 -176.5 58t-66.5 156q0 173 201 263z" /> | ||
862 | <glyph glyph-name="tilde" unicode="˜" horiz-adv-x="987" | ||
863 | d="M885 1532q0 -114 -66.5 -193.5t-164.5 -79.5q-66 0 -147 42t-131 42q-32 0 -54.5 -22t-22.5 -68l-187 10q0 111 66.5 192t163.5 81q50 0 131 -36.5t102.5 -41.5t45.5 -5q32 0 55 22t23 68z" /> | ||
864 | <glyph glyph-name="hungarumlaut" unicode="˝" horiz-adv-x="883" | ||
865 | d="M654 1535h278l-266 -300h-237zM238 1535h280l-238 -300h-240z" /> | ||
866 | <glyph glyph-name="uni02F3" unicode="˳" horiz-adv-x="668" | ||
867 | d="M154 -225q0 74 57 123.5t137 49.5t135.5 -49.5t55.5 -123.5t-54 -122t-137 -48q-82 0 -138 48.5t-56 121.5zM279 -225q0 -31 19.5 -50.5t49.5 -19.5q29 0 47 19.5t18 50.5q0 32 -18 52t-47 20q-30 0 -49.5 -20t-19.5 -52z" /> | ||
868 | <glyph glyph-name="gravecomb" unicode="̀" horiz-adv-x="0" | ||
869 | d="M-355 1222h-273l-282 314h356z" /> | ||
870 | <glyph glyph-name="acutecomb" unicode="́" horiz-adv-x="0" | ||
871 | d="M-493 1536h356l-278 -314h-275z" /> | ||
872 | <glyph glyph-name="tildecomb" unicode="̃" horiz-adv-x="0" | ||
873 | d="M-172 1532q0 -114 -66.5 -193.5t-164.5 -79.5q-66 0 -147 42t-131 42q-32 0 -54.5 -22t-22.5 -68l-187 10q0 111 66.5 192t163.5 81q50 0 131 -36.5t102.5 -41.5t45.5 -5q32 0 55 22t23 68z" /> | ||
874 | <glyph glyph-name="hookabovecomb" unicode="̉" horiz-adv-x="0" | ||
875 | d="M-750 1276l-22 126q137 6 137 63q0 66 -135 66l7 145q208 0 314 -52t106 -145q0 -56 -40 -93.5t-110 -47.5v-62h-257z" /> | ||
876 | <glyph glyph-name="uni030F" unicode="̏" horiz-adv-x="0" | ||
877 | d="M-514 1252h-271l-284 266h310zM-134 1252h-274l-245 266h312z" /> | ||
878 | <glyph glyph-name="dotbelowcomb" unicode="̣" horiz-adv-x="0" | ||
879 | d="M-784 -230q0 65 53.5 107t133.5 42t133.5 -42t53.5 -107t-53.5 -107t-133.5 -42t-133.5 42t-53.5 107z" /> | ||
880 | <glyph glyph-name="tonos" unicode="΄" horiz-adv-x="779" | ||
881 | d="M324 1602h304l-189 -346h-200z" /> | ||
882 | <glyph glyph-name="dieresistonos" unicode="΅" horiz-adv-x="1163" | ||
883 | d="M520 1780h292l-180 -356h-150zM101 1365q0 55 43.5 94t107.5 39t107.5 -39t43.5 -94t-43.5 -94t-107.5 -39t-107.5 39t-43.5 94zM737 1365q0 55 43.5 94t107.5 39t107.5 -39t43.5 -94t-43.5 -94t-107.5 -39t-107.5 39t-43.5 94z" /> | ||
884 | <glyph glyph-name="Alphatonos" unicode="Ά" | ||
885 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM95 1602h304l-189 -346h-200z" /> | ||
886 | <glyph glyph-name="anoteleia" unicode="·" horiz-adv-x="658" | ||
887 | d="M324 854q81 0 133.5 -48t52.5 -121t-52.5 -121t-133.5 -48q-80 0 -133 47.5t-53 121.5t53 121.5t133 47.5z" /> | ||
888 | <glyph glyph-name="Epsilontonos" unicode="Έ" horiz-adv-x="1246" | ||
889 | d="M1113 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261zM-231 1604h304l-189 -346h-200z" /> | ||
890 | <glyph glyph-name="Etatonos" unicode="Ή" horiz-adv-x="1539" | ||
891 | d="M1427 0h-349v608h-517v-608h-351v1456h351v-578h517v578h349v-1456zM-233 1599h304l-189 -346h-200z" /> | ||
892 | <glyph glyph-name="Iotatonos" unicode="Ί" horiz-adv-x="718" | ||
893 | d="M584 0h-350v1456h350v-1456zM-233 1604h304l-189 -346h-200z" /> | ||
894 | <glyph glyph-name="Omicrontonos" unicode="Ό" horiz-adv-x="1434" | ||
895 | d="M1363 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 85.5t-224.5 244.5t-84.5 365v82q0 214 78.5 377.5t225 252.5t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM1006 759q0 217 -72.5 329.5t-207.5 112.5q-264 0 -279 -396l-1 -107q0 -214 71 -329 | ||
896 | t211 -115q133 0 205 113t73 325v67zM-131 1602h304l-189 -346h-200z" /> | ||
897 | <glyph glyph-name="Upsilontonos" unicode="Ύ" horiz-adv-x="1386" | ||
898 | d="M743 824l268 632h379l-469 -933v-523h-356v523l-468 933h377zM-297 1602h304l-189 -346h-200z" /> | ||
899 | <glyph glyph-name="Omegatonos" unicode="Ώ" horiz-adv-x="1401" | ||
900 | d="M755 278q65 44 99 175t34 338v80q0 165 -48.5 247.5t-136.5 82.5q-87 0 -135.5 -82.5t-48.5 -247.5v-77q0 -212 34 -341t106 -175v-278h-519v274h221q-113 98 -177.5 231.5t-65.5 282.5v81q0 175 74 313.5t207.5 215.5t303.5 77q167 0 300.5 -75.5t209 -212.5t77.5 -308 | ||
901 | v-85q0 -189 -101 -354q-58 -94 -141 -166h219v-274h-512v278zM-97 1602h304l-189 -346h-200z" /> | ||
902 | <glyph glyph-name="iotadieresistonos" unicode="ΐ" horiz-adv-x="698" | ||
903 | d="M445 1082l-1 -720q0 -61 22 -85t87 -24q50 0 84 6v-241q-91 -29 -190 -29q-175 0 -258 83t-83 248v762h339zM256 1759h292l-180 -356h-150zM-163 1344q0 55 43.5 94t107.5 39t107.5 -39t43.5 -94t-43.5 -94t-107.5 -39t-107.5 39t-43.5 94zM473 1344q0 55 43.5 94 | ||
904 | t107.5 39t107.5 -39t43.5 -94t-43.5 -94t-107.5 -39t-107.5 39t-43.5 94z" /> | ||
905 | <glyph glyph-name="Alpha" unicode="Α" | ||
906 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505z" /> | ||
907 | <glyph glyph-name="Beta" unicode="Β" horiz-adv-x="1321" | ||
908 | d="M110 0v1456h523q281 0 427.5 -103t146.5 -299q0 -113 -52 -193t-153 -118q114 -30 175 -112t61 -200q0 -214 -135.5 -321.5t-401.5 -109.5h-591zM461 619v-349h230q95 0 146 43.5t51 122.5q0 182 -181 183h-246zM461 849h183q115 1 164 42t49 121q0 92 -53 132.5 | ||
909 | t-171 40.5h-172v-336z" /> | ||
910 | <glyph glyph-name="Gamma" unicode="Γ" horiz-adv-x="1142" | ||
911 | d="M1092 1185h-633v-1185h-351v1456h984v-271z" /> | ||
912 | <glyph glyph-name="Delta" unicode="Δ" horiz-adv-x="1524" | ||
913 | d="M765 1456l4 -4l4 4h187l571 -1456h-1515l562 1456h187zM485 270h576l-291 785z" /> | ||
914 | <glyph glyph-name="Delta" unicode="∆" horiz-adv-x="1524" | ||
915 | d="M765 1456l4 -4l4 4h187l571 -1456h-1515l562 1456h187zM485 270h576l-291 785z" /> | ||
916 | <glyph glyph-name="Epsilon" unicode="Ε" horiz-adv-x="1146" | ||
917 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261z" /> | ||
918 | <glyph glyph-name="Zeta" unicode="Ζ" horiz-adv-x="1249" | ||
919 | d="M504 270h696v-270h-1134v185l694 1000h-698v271h1131v-180z" /> | ||
920 | <glyph glyph-name="Eta" unicode="Η" horiz-adv-x="1439" | ||
921 | d="M1327 0h-349v608h-517v-608h-351v1456h351v-578h517v578h349v-1456z" /> | ||
922 | <glyph glyph-name="Theta" unicode="Θ" horiz-adv-x="1416" | ||
923 | d="M870 589h-316v259h316v-259zM1346 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 86t-224.5 246t-83.5 368v77q0 215 78.5 378t224 252t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM989 759q0 217 -72.5 329.5t-207.5 112.5q-139 0 -209 -111 | ||
924 | t-71 -325v-67q0 -215 71 -329.5t211 -114.5q134 0 205.5 113t72.5 325v67z" /> | ||
925 | <glyph glyph-name="Iota" unicode="Ι" horiz-adv-x="618" | ||
926 | d="M484 0h-350v1456h350v-1456z" /> | ||
927 | <glyph glyph-name="Kappa" unicode="Κ" horiz-adv-x="1310" | ||
928 | d="M605 542l-144 -158v-384h-351v1456h351v-642l122 185l314 457h434l-492 -644l492 -812h-416z" /> | ||
929 | <glyph glyph-name="Lambda" unicode="Λ" horiz-adv-x="1315" | ||
930 | d="M659 1017l-279 -1017h-379l467 1456h380l469 -1456h-381z" /> | ||
931 | <glyph glyph-name="Mu" unicode="Μ" horiz-adv-x="1795" | ||
932 | d="M571 1456l325 -1013l324 1013h462v-1456h-352v340l34 696l-352 -1036h-232l-353 1037l34 -697v-340h-351v1456h461z" /> | ||
933 | <glyph glyph-name="Nu" unicode="Ν" horiz-adv-x="1438" | ||
934 | d="M1326 0h-349l-516 906v-906h-351v1456h351l515 -906v906h350v-1456z" /> | ||
935 | <glyph glyph-name="Xi" unicode="Ξ" horiz-adv-x="1154" | ||
936 | d="M81 270h1009v-270h-1009v270zM212 857h751v-257h-751v257zM117 1456h914v-271h-914v271z" /> | ||
937 | <glyph glyph-name="Omicron" unicode="Ο" horiz-adv-x="1414" | ||
938 | d="M1343 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 85.5t-224.5 244.5t-84.5 365v82q0 214 78.5 377.5t225 252.5t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM986 759q0 217 -72.5 329.5t-207.5 112.5q-264 0 -279 -396l-1 -107q0 -214 71 -329 | ||
939 | t211 -115q133 0 205 113t73 325v67z" /> | ||
940 | <glyph glyph-name="Pi" unicode="Π" horiz-adv-x="1441" | ||
941 | d="M1333 0h-351v1185h-523v-1185h-351v1456h1225v-1456z" /> | ||
942 | <glyph glyph-name="Rho" unicode="Ρ" horiz-adv-x="1333" | ||
943 | d="M461 494v-494h-351v1456h581q167 0 295.5 -61.5t199 -175t70.5 -257.5q0 -213 -152.5 -340.5t-418.5 -127.5h-224zM461 765h230q102 0 155.5 51t53.5 144q0 102 -55 163t-150 62h-234v-420z" /> | ||
944 | <glyph glyph-name="Sigma" unicode="Σ" horiz-adv-x="1154" | ||
945 | d="M863 732l-315 -463h562v-269h-1037v151l420 588l-420 567v150h1025v-271h-543l308 -440v-13z" /> | ||
946 | <glyph glyph-name="Tau" unicode="Τ" horiz-adv-x="1291" | ||
947 | d="M1253 1185h-437v-1185h-351v1185h-429v271h1217v-271z" /> | ||
948 | <glyph glyph-name="Upsilon" unicode="Υ" horiz-adv-x="1286" | ||
949 | d="M643 824l268 632h379l-469 -933v-523h-356v523l-468 933h377z" /> | ||
950 | <glyph glyph-name="Phi" unicode="Φ" horiz-adv-x="1634" | ||
951 | d="M1001 1293q171 -8 302 -81t202 -201t71 -293q0 -159 -71 -282.5t-202 -194t-302 -78.5v-163h-349v163q-174 8 -305.5 77.5t-203 192.5t-71.5 283q0 165 70.5 293.5t203 202t306.5 81.5v163h349v-163zM416 716q0 -116 64 -182.5t172 -74.5v538q-112 -11 -174 -84.5 | ||
952 | t-62 -196.5zM1233 718q0 121 -59.5 193.5t-172.5 85.5v-538q113 11 172.5 79t59.5 180z" /> | ||
953 | <glyph glyph-name="Chi" unicode="Χ" horiz-adv-x="1307" | ||
954 | d="M653 972l238 484h401l-407 -722l418 -734h-405l-245 493l-245 -493h-404l417 734l-406 722h400z" /> | ||
955 | <glyph glyph-name="Psi" unicode="Ψ" horiz-adv-x="1527" | ||
956 | d="M952 675q99 19 144.5 100t45.5 241v440h352v-449q-3 -263 -145.5 -421t-396.5 -184v-402h-350v400q-269 21 -417 181.5t-150 429.5v445h351v-458q6 -277 216 -322v780h350v-781z" /> | ||
957 | <glyph glyph-name="Omega" unicode="Ω" horiz-adv-x="1381" | ||
958 | d="M735 278q65 44 99 175t34 338v80q0 165 -48.5 247.5t-136.5 82.5q-87 0 -135.5 -82.5t-48.5 -247.5v-77q0 -212 34 -341t106 -175v-278h-519v274h221q-113 98 -177.5 231.5t-65.5 282.5v81q0 175 74 313.5t207.5 215.5t303.5 77q167 0 300.5 -75.5t209 -212.5t77.5 -308 | ||
959 | v-85q0 -189 -101 -354q-58 -94 -141 -166h219v-274h-512v278z" /> | ||
960 | <glyph glyph-name="Omega" unicode="Ω" horiz-adv-x="1381" | ||
961 | d="M735 278q65 44 99 175t34 338v80q0 165 -48.5 247.5t-136.5 82.5q-87 0 -135.5 -82.5t-48.5 -247.5v-77q0 -212 34 -341t106 -175v-278h-519v274h221q-113 98 -177.5 231.5t-65.5 282.5v81q0 175 74 313.5t207.5 215.5t303.5 77q167 0 300.5 -75.5t209 -212.5t77.5 -308 | ||
962 | v-85q0 -189 -101 -354q-58 -94 -141 -166h219v-274h-512v278z" /> | ||
963 | <glyph glyph-name="Iotadieresis" unicode="Ϊ" horiz-adv-x="618" | ||
964 | d="M484 0h-350v1456h350v-1456zM46 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM565 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
965 | <glyph glyph-name="Upsilondieresis" unicode="Ϋ" horiz-adv-x="1286" | ||
966 | d="M643 824l268 632h379l-469 -933v-523h-356v523l-468 933h377zM380 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM899 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39 | ||
967 | z" /> | ||
968 | <glyph glyph-name="alphatonos" unicode="ά" horiz-adv-x="1152" | ||
969 | d="M1041 1082v-729q3 -112 69 -112q11 0 16 3l26 -244q-51 -21 -125 -21q-200 0 -283 169q-95 -168 -263 -168q-195 0 -308 144.5t-113 414.5q0 257 112.5 410t310.5 153q151 0 240 -144l23 124h295zM399 518q0 -143 41.5 -210.5t125.5 -67.5q92 0 137 63v465 | ||
970 | q-45 74 -135 74q-169 0 -169 -324zM578 1602h304l-189 -346h-200z" /> | ||
971 | <glyph glyph-name="epsilontonos" unicode="έ" horiz-adv-x="1159" | ||
972 | d="M429 336q0 -51 46.5 -83.5t122.5 -32.5q89 0 130.5 29.5t41.5 70.5h337q0 -155 -137 -247.5t-349 -92.5q-236 0 -382 90.5t-146 235.5q0 92 53.5 155.5t153.5 95.5q-88 36 -138 96.5t-50 132.5q0 147 138 231t371 84q207 0 338 -93.5t131 -239.5h-337q0 48 -43.5 70.5 | ||
973 | t-110.5 22.5q-69 0 -109.5 -29t-40.5 -77q0 -98 175 -98h158v-207h-172q-181 0 -181 -114zM563 1602h304l-189 -346h-200z" /> | ||
974 | <glyph glyph-name="etatonos" unicode="ή" horiz-adv-x="1151" | ||
975 | d="M407 1082l11 -135q119 155 308 155q168 0 253 -103.5t85 -306.5v-1108h-338v1101q0 157 -129 157q-109 0 -170 -72v-770h-337v1082h317zM537 1602h304l-189 -346h-200z" /> | ||
976 | <glyph glyph-name="iotatonos" unicode="ί" horiz-adv-x="698" | ||
977 | d="M445 1082l-1 -720q0 -61 22 -85t87 -24q50 0 84 6v-241q-91 -29 -190 -29q-175 0 -258 83t-83 248v762h339zM255 1581h304l-189 -346h-200z" /> | ||
978 | <glyph glyph-name="upsilondieresistonos" unicode="ΰ" horiz-adv-x="1116" | ||
979 | d="M436 1082v-667q0 -176 91 -176q81 0 133.5 96t52.5 231q-4 246 -90 516h313q46 -92 79.5 -221.5t33.5 -294.5q0 -280 -131.5 -433.5t-380.5 -153.5q-210 0 -323 109.5t-115 315.5v678h337zM537 1780h292l-180 -356h-150zM118 1365q0 55 43.5 94t107.5 39t107.5 -39 | ||
980 | t43.5 -94t-43.5 -94t-107.5 -39t-107.5 39t-43.5 94zM754 1365q0 55 43.5 94t107.5 39t107.5 -39t43.5 -94t-43.5 -94t-107.5 -39t-107.5 39t-43.5 94z" /> | ||
981 | <glyph glyph-name="alpha" unicode="α" horiz-adv-x="1152" | ||
982 | d="M1041 1082v-729q3 -112 69 -112q11 0 16 3l26 -244q-51 -21 -125 -21q-200 0 -283 169q-95 -168 -263 -168q-195 0 -308 144.5t-113 414.5q0 257 112.5 410t310.5 153q151 0 240 -144l23 124h295zM399 518q0 -143 41.5 -210.5t125.5 -67.5q92 0 137 63v465 | ||
983 | q-45 74 -135 74q-169 0 -169 -324z" /> | ||
984 | <glyph glyph-name="beta" unicode="β" horiz-adv-x="1243" | ||
985 | d="M637 1476q232 0 360 -104t128 -290q0 -103 -51 -186.5t-142 -133.5q124 -42 190 -131.5t66 -221.5q0 -204 -115 -316.5t-327 -112.5q-152 0 -275 71v-466h-337v1434q0 133 64 237t180.5 162t258.5 58zM788 1051q0 76 -41.5 120.5t-109.5 44.5q-73 0 -119.5 -51.5 | ||
986 | t-46.5 -146.5v-737q72 -41 187 -41q87 0 140 49.5t53 126.5q0 111 -51.5 160.5t-150.5 49.5h-72v231l81 1q130 13 130 193z" /> | ||
987 | <glyph glyph-name="gamma" unicode="γ" horiz-adv-x="1053" | ||
988 | d="M528 371l164 711h355l-352 -1082h-4v-417h-337v417h-2l-352 1082h356z" /> | ||
989 | <glyph glyph-name="delta" unicode="δ" horiz-adv-x="1151" | ||
990 | d="M177 1244q0 155 113.5 243t312.5 88q94 0 187 -23l70 -18v-242l-30 9q-109 34 -186 34q-72 0 -112.5 -22t-40.5 -62q0 -76 130 -121q240 -84 365 -225t126 -352v-23q0 -160 -65 -286t-185 -195t-278 -69q-240 0 -385.5 145.5t-145.5 393.5v11q0 157 88 281.5t219 158.5 | ||
991 | l-4 6q-179 103 -179 268zM389 548q0 -141 51.5 -225t143.5 -84q91 0 141.5 84t50.5 245q0 101 -54 188.5t-138 106.5q-91 0 -143 -82t-52 -233z" /> | ||
992 | <glyph glyph-name="epsilon" unicode="ε" horiz-adv-x="1159" | ||
993 | d="M429 336q0 -51 46.5 -83.5t122.5 -32.5q89 0 130.5 29.5t41.5 70.5h337q0 -155 -137 -247.5t-349 -92.5q-236 0 -382 90.5t-146 235.5q0 92 53.5 155.5t153.5 95.5q-88 36 -138 96.5t-50 132.5q0 147 138 231t371 84q207 0 338 -93.5t131 -239.5h-337q0 48 -43.5 70.5 | ||
994 | t-110.5 22.5q-69 0 -109.5 -29t-40.5 -77q0 -98 175 -98h158v-207h-172q-181 0 -181 -114z" /> | ||
995 | <glyph glyph-name="zeta" unicode="ζ" horiz-adv-x="1001" | ||
996 | d="M966 1456v-178l-390 -460l-70 -91q-91 -130 -91 -287q0 -73 34 -115t138 -73l51 -17q132 -38 189.5 -72.5t86.5 -83t28 -117.5q0 -83 -77 -185.5t-183 -168.5l-170 121q49 48 71.5 92.5t20.5 70.5q4 65 -69 89l-93 25q-183 48 -272.5 139t-89.5 236q0 149 54 278t212 320 | ||
997 | l181 219h-473v258h912z" /> | ||
998 | <glyph glyph-name="eta" unicode="η" horiz-adv-x="1151" | ||
999 | d="M407 1082l11 -135q119 155 308 155q168 0 253 -103.5t85 -306.5v-1108h-338v1101q0 157 -129 157q-109 0 -170 -72v-770h-337v1082h317z" /> | ||
1000 | <glyph glyph-name="theta" unicode="θ" horiz-adv-x="1231" | ||
1001 | d="M1123 595q0 -295 -132.5 -455t-373.5 -160q-243 0 -376 161t-133 454v266q0 295 132.5 455t374.5 160t375 -161t133 -455v-265zM786 611h-340v-57q0 -163 41 -238.5t130 -75.5q86 0 127 73.5t42 230.5v67zM446 858h340v46q0 157 -41 234.5t-130 77.5q-88 0 -128 -75 | ||
1002 | t-41 -228v-55z" /> | ||
1003 | <glyph glyph-name="iota" unicode="ι" horiz-adv-x="698" | ||
1004 | d="M445 1082l-1 -720q0 -61 22 -85t87 -24q50 0 84 6v-241q-91 -29 -190 -29q-175 0 -258 83t-83 248v762h339z" /> | ||
1005 | <glyph glyph-name="kappa" unicode="κ" horiz-adv-x="1242" | ||
1006 | d="M575 378h-120v-378h-337v1082h337v-389h90l225 389h432l-342 -506l350 -576h-434z" /> | ||
1007 | <glyph glyph-name="lambda" unicode="λ" horiz-adv-x="1116" | ||
1008 | d="M298 1557q212 0 284 -180l407 -1019l17 -37q38 -80 92 -81h35l-1 -254q-32 -5 -125 -5q-237 0 -318 212l-147 424l-189 -617h-359l379 1076l-59 135q-37 84 -136 84l-65 -3l-9 240q85 25 194 25z" /> | ||
1009 | <glyph glyph-name="uni03BC" unicode="μ" horiz-adv-x="1313" | ||
1010 | d="M470 1082v-632q1 -107 36.5 -157t126.5 -50q128 0 181 91v748h337v-1082h-317l-5 53q-89 -74 -210 -74q-85 0 -149 34v-429h-338v1498h338z" /> | ||
1011 | <glyph glyph-name="nu" unicode="ν" horiz-adv-x="1058" | ||
1012 | d="M526 401l171 681h355l-353 -1082h-344l-353 1082h356z" /> | ||
1013 | <glyph glyph-name="xi" unicode="ξ" horiz-adv-x="1130" | ||
1014 | d="M946 1171l-105 26q-55 12 -121 12q-181 0 -181 -126q0 -123 190 -123h146v-271h-135q-297 0 -297 -225q0 -80 53 -129.5t174.5 -79t161.5 -42t69 -24.5q169 -70 166 -228q0 -80 -75.5 -183t-184.5 -171l-169 121q49 48 69.5 92.5t20.5 70.5q0 62 -91 95 | ||
1015 | q-176 56 -264.5 88t-147.5 77.5t-89.5 115t-30.5 181.5q0 276 298 374q-201 73 -201 256q0 182 127 290t344 108q105 0 171.5 -11.5t155.5 -42.5z" /> | ||
1016 | <glyph glyph-name="omicron" unicode="ο" horiz-adv-x="1150" | ||
1017 | d="M52 551q0 162 63 288.5t181 194.5t277 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-231 0 -371 138.5t-151 375.5zM389 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251z" /> | ||
1018 | <glyph glyph-name="pi" unicode="π" horiz-adv-x="1371" | ||
1019 | d="M1318 840h-184v-478q0 -61 22 -85t87 -24q50 0 84 6v-241q-91 -29 -190 -29q-174 0 -257.5 82.5t-83.5 248.5v520h-217v-840h-337v840h-182v242h1258v-242z" /> | ||
1020 | <glyph glyph-name="rho" unicode="ρ" horiz-adv-x="1151" | ||
1021 | d="M614 1102q226 0 355.5 -152.5t129.5 -417.5v-14q0 -247 -112.5 -393t-308.5 -146q-151 0 -244 120v-515h-338v986q0 246 141 389t377 143zM434 308q49 -69 161 -69q153 0 165 234l1 66q0 145 -43 224t-126 79q-158 0 -158 -312v-222z" /> | ||
1022 | <glyph glyph-name="sigma1" unicode="ς" horiz-adv-x="1027" | ||
1023 | d="M557 1102q209 0 331.5 -116t122.5 -318h-316q0 79 -36.5 126.5t-101.5 47.5q-87 0 -131 -69t-44 -244q0 -123 45 -183t164.5 -94.5t173.5 -60.5t83 -58q49 -53 55 -152q0 -81 -73 -184t-182 -171l-175 122q49 48 71 92.5t20 70.5q0 73 -83 96q-228 64 -330 182t-106 322 | ||
1024 | v41q0 252 137 401t375 149z" /> | ||
1025 | <glyph glyph-name="sigma" unicode="σ" horiz-adv-x="1176" | ||
1026 | d="M1149 822h-247q81 -65 126 -148t45 -164v-21q0 -232 -134 -371t-365 -139q-241 0 -383 149.5t-142 408.5v14q0 242 141 386.5t382 144.5q0 -1 1 -1v1h576v-260zM386 530q0 -291 188 -291q157 0 162 272v40q0 271 -163 271q-172 0 -186 -234z" /> | ||
1027 | <glyph glyph-name="tau" unicode="τ" horiz-adv-x="1062" | ||
1028 | d="M1039 824h-351v-473q0 -61 20 -85.5t68 -24.5q40 0 101 13l22 -250q-82 -24 -185 -24q-177 0 -271 95t-94 278v471h-326v258h1016v-258z" /> | ||
1029 | <glyph glyph-name="upsilon" unicode="υ" horiz-adv-x="1116" | ||
1030 | d="M436 1082v-667q0 -176 91 -176q81 0 133.5 96t52.5 231q-4 246 -90 516h313q46 -92 79.5 -221.5t33.5 -294.5q0 -280 -131.5 -433.5t-380.5 -153.5q-210 0 -323 109.5t-115 315.5v678h337z" /> | ||
1031 | <glyph glyph-name="phi" unicode="φ" horiz-adv-x="1567" | ||
1032 | d="M606 -9q-273 36 -420 195t-147 421q0 140 57.5 275t151.5 220l246 -160q-54 -68 -85 -156t-33 -179q0 -151 56 -233.5t174 -114.5v529q0 86 46 160t121 114.5t163 40.5q167 0 295.5 -63.5t203 -191.5t74.5 -283q0 -246 -147.5 -395.5t-417.5 -181.5v-466h-338v469z | ||
1033 | M944 255q113 27 170.5 102.5t57.5 207.5q-2 131 -49.5 204.5t-133.5 73.5q-45 0 -45 -34v-554z" /> | ||
1034 | <glyph glyph-name="chi" unicode="χ" horiz-adv-x="1054" | ||
1035 | d="M533 784l157 298h350l-285 -527l299 -555h-352l-170 320l-167 -320h-354l300 555l-284 527h354z" /> | ||
1036 | <glyph glyph-name="psi" unicode="ψ" horiz-adv-x="1569" | ||
1037 | d="M945 1082v-823q114 32 171 115t57 233q-3 211 -100 475h301q136 -212 136 -475q0 -266 -146.5 -425t-418.5 -193v-467h-337v469q-267 34 -408 182.5t-143 405.5v503h338v-507q3 -253 213 -315v822h337z" /> | ||
1038 | <glyph glyph-name="omega" unicode="ω" horiz-adv-x="1679" | ||
1039 | d="M533 1082q-124 -266 -131 -516q0 -159 33.5 -242.5t95.5 -83.5q132 0 132 272v360h361v-360q0 -272 132 -272q61 0 95 84t34 242q-8 255 -133 516h313q156 -231 156 -516q0 -296 -114.5 -441t-340.5 -145q-217 0 -323 201q-52 -99 -134.5 -150t-187.5 -51 | ||
1040 | q-227 0 -341.5 145t-114.5 441q0 285 156 516h312z" /> | ||
1041 | <glyph glyph-name="iotadieresis" unicode="ϊ" horiz-adv-x="698" | ||
1042 | d="M445 1082l-1 -720q0 -61 22 -85t87 -24q50 0 84 6v-241q-91 -29 -190 -29q-175 0 -258 83t-83 248v762h339zM31 1477q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM550 1477q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39 | ||
1043 | q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1044 | <glyph glyph-name="upsilondieresis" unicode="ϋ" horiz-adv-x="1116" | ||
1045 | d="M436 1082v-667q0 -176 91 -176q81 0 133.5 96t52.5 231q-4 246 -90 516h313q46 -92 79.5 -221.5t33.5 -294.5q0 -280 -131.5 -433.5t-380.5 -153.5q-210 0 -323 109.5t-115 315.5v678h337zM312 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39 | ||
1046 | t-43.5 94t43.5 94t107.5 39zM831 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1047 | <glyph glyph-name="omicrontonos" unicode="ό" horiz-adv-x="1150" | ||
1048 | d="M52 551q0 162 63 288.5t181 194.5t277 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-231 0 -371 138.5t-151 375.5zM389 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251zM537 1602h304l-189 -346h-200z" /> | ||
1049 | <glyph glyph-name="upsilontonos" unicode="ύ" horiz-adv-x="1116" | ||
1050 | d="M436 1082v-667q0 -176 91 -176q81 0 133.5 96t52.5 231q-4 246 -90 516h313q46 -92 79.5 -221.5t33.5 -294.5q0 -280 -131.5 -433.5t-380.5 -153.5q-210 0 -323 109.5t-115 315.5v678h337zM536 1602h304l-189 -346h-200z" /> | ||
1051 | <glyph glyph-name="omegatonos" unicode="ώ" horiz-adv-x="1679" | ||
1052 | d="M533 1082q-124 -266 -131 -516q0 -159 33.5 -242.5t95.5 -83.5q132 0 132 272v360h361v-360q0 -272 132 -272q61 0 95 84t34 242q-8 255 -133 516h313q156 -231 156 -516q0 -296 -114.5 -441t-340.5 -145q-217 0 -323 201q-52 -99 -134.5 -150t-187.5 -51 | ||
1053 | q-227 0 -341.5 145t-114.5 441q0 285 156 516h312zM797 1602h304l-189 -346h-200z" /> | ||
1054 | <glyph glyph-name="theta1" unicode="ϑ" horiz-adv-x="1236" | ||
1055 | d="M1242 562l-98 -24v-67q0 -222 -145.5 -356.5t-379.5 -134.5q-143 0 -257.5 61.5t-180 174t-65.5 250.5v213h316v-208q0 -101 58.5 -160.5t150.5 -59.5q65 0 103.5 56.5t39.5 154.5v69q-196 46 -316 182t-120 321v23q0 187 112 303t298 116q180 0 282.5 -116.5 | ||
1056 | t103.5 -319.5v-219l87 17zM663 1050q0 -150 121 -213v248q-1 101 -50 101q-71 0 -71 -116v-20z" /> | ||
1057 | <glyph glyph-name="Upsilon1" unicode="ϒ" horiz-adv-x="1275" | ||
1058 | d="M638 770l164 460q97 258 339 258q56 0 156 -25l-38 -256l-62 3q-75 0 -102 -71l-283 -680v-459h-353v457l-277 677q-31 76 -105 76l-62 -3l-35 256q91 25 155 25q133 0 215 -64t128 -195z" /> | ||
1059 | <glyph glyph-name="omega1" unicode="ϖ" horiz-adv-x="1740" | ||
1060 | d="M1752 860h-125q47 -139 47 -294q0 -299 -116 -442.5t-343 -143.5q-115 0 -203.5 53.5t-142.5 156.5q-54 -103 -142.5 -156.5t-202.5 -53.5q-229 0 -345 145t-116 441q0 155 47 294h-121v222h1763v-222zM1338 566q-4 147 -47 294h-844q-42 -154 -46 -294q0 -160 34.5 -243 | ||
1061 | t98.5 -83q155 0 155 273v171h360v-191q1 -122 41.5 -187.5t113.5 -65.5q65 0 99.5 83t34.5 243z" /> | ||
1062 | <glyph glyph-name="uni0400" unicode="Ѐ" horiz-adv-x="1146" | ||
1063 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261zM804 1532h-274l-282 314h356z" /> | ||
1064 | <glyph glyph-name="uni0401" unicode="Ё" horiz-adv-x="1146" | ||
1065 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261zM380 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM899 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94 | ||
1066 | t43.5 94t107.5 39z" /> | ||
1067 | <glyph glyph-name="uni0402" unicode="Ђ" horiz-adv-x="1527" | ||
1068 | d="M1161 1185h-451v-313q116 24 223 24q261 0 405 -117t144 -333q0 -143 -73 -251.5t-202.5 -161.5t-308.5 -53v253q217 0 232 152l2 38q0 93 -60.5 148.5t-160.5 55.5q-111 0 -201 -16v-611h-351v1185h-336v271h1138v-271z" /> | ||
1069 | <glyph glyph-name="uni0403" unicode="Ѓ" horiz-adv-x="1142" | ||
1070 | d="M1092 1185h-633v-1185h-351v1456h984v-271zM653 1846h356l-278 -314h-275z" /> | ||
1071 | <glyph glyph-name="uni0404" unicode="Є" horiz-adv-x="1331" | ||
1072 | d="M1288 492q-8 -152 -84 -268.5t-210.5 -180.5t-307.5 -64q-287 0 -452 187t-165 528v71q0 215 75 376.5t214.5 248t322.5 86.5q265 0 425 -139t184 -385h-350q-4 133 -66.5 193t-192.5 60q-122 0 -185.5 -86t-74.5 -256h386v-271h-386q12 -182 74.5 -263t190.5 -81 | ||
1073 | q245 0 251 244h351z" /> | ||
1074 | <glyph glyph-name="uni0405" unicode="Ѕ" horiz-adv-x="1282" | ||
1075 | d="M861 387q0 77 -54.5 120t-191.5 89t-224 89q-283 139 -283 382q0 121 70.5 213.5t199.5 144t290 51.5q157 0 281.5 -56t193.5 -159.5t69 -236.5h-350q0 89 -54.5 138t-147.5 49q-94 0 -148.5 -41.5t-54.5 -105.5q0 -56 60 -101.5t211 -94t248 -104.5q236 -136 236 -375 | ||
1076 | q0 -191 -144 -300t-395 -109q-177 0 -320.5 63.5t-216 174t-72.5 254.5h352q0 -117 60.5 -172.5t196.5 -55.5q87 0 137.5 37.5t50.5 105.5z" /> | ||
1077 | <glyph glyph-name="uni0406" unicode="І" horiz-adv-x="618" | ||
1078 | d="M484 0h-350v1456h350v-1456z" /> | ||
1079 | <glyph glyph-name="uni0407" unicode="Ї" horiz-adv-x="618" | ||
1080 | d="M484 0h-350v1456h350v-1456zM46 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM565 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1081 | <glyph glyph-name="uni0408" unicode="Ј" horiz-adv-x="1151" | ||
1082 | d="M690 1456h350v-999q0 -139 -64.5 -248t-180 -169t-257.5 -60q-238 0 -370 120t-132 340h352q0 -100 34.5 -145t115.5 -45q73 0 112.5 54.5t39.5 152.5v999z" /> | ||
1083 | <glyph glyph-name="uni0409" unicode="Љ" horiz-adv-x="2148" | ||
1084 | d="M1335 1456v-471h188q166 -1 298 -63.5t204.5 -175.5t72.5 -253q0 -141 -72 -253.5t-204 -175.5t-299 -64h-539v1185h-327l-24 -489q-15 -253 -70 -404t-156.5 -220.5t-276.5 -71.5h-94v270l49 5q105 15 152 128.5t61 382.5l25 670h1012zM1335 715v-445h181 | ||
1085 | q102 0 166.5 62.5t64.5 162.5q0 94 -62 156t-163 64h-187z" /> | ||
1086 | <glyph glyph-name="uni040A" unicode="Њ" horiz-adv-x="2144" | ||
1087 | d="M459 847h522v609h350v-466h183q168 0 300.5 -63t205.5 -176t73 -256t-72 -255.5t-203 -175.5t-299 -64h-538v577h-522v-577h-351v1456h351v-609zM1331 720v-452h181q103 0 167.5 64.5t64.5 164.5q0 96 -63.5 159t-166.5 64h-183z" /> | ||
1088 | <glyph glyph-name="uni040B" unicode="Ћ" horiz-adv-x="1531" | ||
1089 | d="M1118 1185h-436v-257q92 11 157 11q289 0 445.5 -125t160.5 -359v-454h-350v445q0 118 -57.5 170.5t-198.5 52.5q-54 0 -157 -11v-658h-351v1185h-315v271h1102v-271z" /> | ||
1090 | <glyph glyph-name="uni040C" unicode="Ќ" horiz-adv-x="1310" | ||
1091 | d="M605 542l-144 -158v-384h-351v1456h351v-642l122 185l314 457h434l-492 -644l492 -812h-416zM635 1846h356l-278 -314h-275z" /> | ||
1092 | <glyph glyph-name="uni040D" unicode="Ѝ" horiz-adv-x="1419" | ||
1093 | d="M964 1456h351v-1456h-351v918l-523 -918h-351v1456h351v-919zM865 1532h-274l-282 314h356z" /> | ||
1094 | <glyph glyph-name="uni040E" unicode="Ў" horiz-adv-x="1295" | ||
1095 | d="M675 824v-1l241 633h370l-490 -1155q-79 -175 -177.5 -246.5t-230.5 -75.5h-71l-54 2l-6 272q12 -4 70 -4q80 0 120.5 27.5t65.5 106.5l17 48l-526 1025h373zM1051 1848q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5 | ||
1096 | t36.5 94.5h231z" /> | ||
1097 | <glyph glyph-name="uni040F" unicode="Џ" horiz-adv-x="1419" | ||
1098 | d="M890 270h68v1186h352v-1456h-420v-360h-352v360h-452v1456h349v-1186h103v1h352v-1z" /> | ||
1099 | <glyph glyph-name="uni0410" unicode="А" | ||
1100 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505z" /> | ||
1101 | <glyph glyph-name="uni0411" unicode="Б" horiz-adv-x="1279" | ||
1102 | d="M1094 1185h-631v-230h181q173 0 306 -59t204.5 -166.5t71.5 -246.5q0 -215 -159.5 -349t-428.5 -134h-528v1456h984v-271zM463 685v-415h180q107 0 169.5 60t62.5 155q0 90 -62 145t-172 55h-178z" /> | ||
1103 | <glyph glyph-name="uni0412" unicode="В" horiz-adv-x="1321" | ||
1104 | d="M110 0v1456h523q281 0 427.5 -103t146.5 -299q0 -113 -52 -193t-153 -118q114 -30 175 -112t61 -200q0 -214 -135.5 -321.5t-401.5 -109.5h-591zM461 619v-349h230q95 0 146 43.5t51 122.5q0 182 -181 183h-246zM461 849h183q115 1 164 42t49 121q0 92 -53 132.5 | ||
1105 | t-171 40.5h-172v-336z" /> | ||
1106 | <glyph glyph-name="uni0413" unicode="Г" horiz-adv-x="1142" | ||
1107 | d="M1092 1185h-633v-1185h-351v1456h984v-271z" /> | ||
1108 | <glyph glyph-name="uni0414" unicode="Д" horiz-adv-x="1520" | ||
1109 | d="M1472 -358h-315v358h-793v-357h-325l-25 627h103q81 54 130.5 185.5t70.5 377.5l45 623h991v-1186h155zM514 270h490v915h-310l-27 -364q-30 -354 -153 -551z" /> | ||
1110 | <glyph glyph-name="uni0415" unicode="Е" horiz-adv-x="1146" | ||
1111 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261z" /> | ||
1112 | <glyph glyph-name="uni0416" unicode="Ж" horiz-adv-x="2136" | ||
1113 | d="M1435 569h-178v-569h-349v569h-181l-280 -569h-436l439 795l-426 661h443l298 -571h143v571h349v-571h142l285 571h442l-415 -659l430 -797h-438z" /> | ||
1114 | <glyph glyph-name="uni0417" unicode="З" horiz-adv-x="1289" | ||
1115 | d="M819 1052q0 69 -53.5 111t-144.5 42q-85 0 -136.5 -40.5t-51.5 -106.5h-350q0 120 68.5 215t193.5 148.5t276 53.5q260 0 404.5 -109t144.5 -305q0 -100 -58.5 -182.5t-161.5 -130.5q118 -42 180.5 -127.5t62.5 -212.5q0 -196 -156 -311.5t-416 -115.5q-241 0 -400 113.5 | ||
1116 | t-159 309.5h352q0 -65 58 -109.5t149 -44.5q98 0 159 46t61 120q0 108 -52 152.5t-152 44.5h-187v260h199q170 5 170 179z" /> | ||
1117 | <glyph glyph-name="uni0418" unicode="И" horiz-adv-x="1419" | ||
1118 | d="M964 1456h351v-1456h-351v918l-523 -918h-351v1456h351v-919z" /> | ||
1119 | <glyph glyph-name="uni0419" unicode="Й" horiz-adv-x="1419" | ||
1120 | d="M964 1456h351v-1456h-351v918l-523 -918h-351v1456h351v-919zM1075 1848q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
1121 | <glyph glyph-name="uni041A" unicode="К" horiz-adv-x="1325" | ||
1122 | d="M625 576h-166v-576h-351v1456h351v-563h135l280 563h425l-400 -672l450 -784h-415z" /> | ||
1123 | <glyph glyph-name="uni041B" unicode="Л" horiz-adv-x="1444" | ||
1124 | d="M1335 1456v-1456h-351v1185h-327l-24 -489q-15 -253 -70 -404t-156.5 -220.5t-276.5 -71.5h-94v270l49 5q105 15 152 128.5t61 382.5l25 670h1012z" /> | ||
1125 | <glyph glyph-name="uni041C" unicode="М" horiz-adv-x="1795" | ||
1126 | d="M571 1456l325 -1013l324 1013h462v-1456h-352v340l34 696l-352 -1036h-232l-353 1037l34 -697v-340h-351v1456h461z" /> | ||
1127 | <glyph glyph-name="uni041D" unicode="Н" horiz-adv-x="1439" | ||
1128 | d="M1327 0h-349v608h-517v-608h-351v1456h351v-578h517v578h349v-1456z" /> | ||
1129 | <glyph glyph-name="uni041E" unicode="О" horiz-adv-x="1414" | ||
1130 | d="M1343 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 85.5t-224.5 244.5t-84.5 365v82q0 214 78.5 377.5t225 252.5t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM986 759q0 217 -72.5 329.5t-207.5 112.5q-264 0 -279 -396l-1 -107q0 -214 71 -329 | ||
1131 | t211 -115q133 0 205 113t73 325v67z" /> | ||
1132 | <glyph glyph-name="uni041F" unicode="П" horiz-adv-x="1441" | ||
1133 | d="M1333 0h-351v1185h-523v-1185h-351v1456h1225v-1456z" /> | ||
1134 | <glyph glyph-name="uni0420" unicode="Р" horiz-adv-x="1333" | ||
1135 | d="M461 494v-494h-351v1456h581q167 0 295.5 -61.5t199 -175t70.5 -257.5q0 -213 -152.5 -340.5t-418.5 -127.5h-224zM461 765h230q102 0 155.5 51t53.5 144q0 102 -55 163t-150 62h-234v-420z" /> | ||
1136 | <glyph glyph-name="uni0421" unicode="С" horiz-adv-x="1344" | ||
1137 | d="M1288 493q-7 -152 -82 -268.5t-210.5 -180.5t-309.5 -64q-287 0 -452 187t-165 528v72q0 214 74.5 374.5t214.5 248t324 87.5q265 0 426 -139.5t183 -384.5h-350q-4 133 -67 191t-192 58q-131 0 -192 -98t-64 -313v-103q0 -233 58.5 -333t201.5 -100q121 0 185 57t68 181 | ||
1138 | h349z" /> | ||
1139 | <glyph glyph-name="uni0422" unicode="Т" horiz-adv-x="1291" | ||
1140 | d="M1253 1185h-437v-1185h-351v1185h-429v271h1217v-271z" /> | ||
1141 | <glyph glyph-name="uni0423" unicode="У" horiz-adv-x="1295" | ||
1142 | d="M675 824v-1l241 633h370l-490 -1155q-79 -175 -177.5 -246.5t-230.5 -75.5h-71l-54 2l-6 272q12 -4 70 -4q80 0 120.5 27.5t65.5 106.5l17 48l-526 1025h373z" /> | ||
1143 | <glyph glyph-name="uni0424" unicode="Ф" horiz-adv-x="1715" | ||
1144 | d="M1030 1332q184 -3 325.5 -78.5t218.5 -215t77 -319.5q0 -174 -76.5 -309.5t-219 -210t-325.5 -75.5v-184h-338v184q-186 1 -328.5 74.5t-219.5 208t-77 310.5q0 182 77 321t219.5 216t328.5 78v184h338v-184zM397 717q0 -145 77 -227t218 -84v644q-140 -2 -217.5 -89.5 | ||
1145 | t-77.5 -243.5zM1321 719q0 158 -76.5 243.5t-214.5 87.5v-644q136 2 213.5 83.5t77.5 229.5z" /> | ||
1146 | <glyph glyph-name="uni0425" unicode="Х" horiz-adv-x="1307" | ||
1147 | d="M653 972l238 484h401l-407 -722l418 -734h-405l-245 493l-245 -493h-404l417 734l-406 722h400z" /> | ||
1148 | <glyph glyph-name="uni0426" unicode="Ц" horiz-adv-x="1580" | ||
1149 | d="M86 1456h349v-1186h523v1186h352v-1189h223l-20 -618h-331v351h-1096v1456z" /> | ||
1150 | <glyph glyph-name="uni0427" unicode="Ч" horiz-adv-x="1431" | ||
1151 | d="M1323 1456v-1456h-350v538l-103 -13l-129 -8q-294 0 -450 127.5t-158 361.5v450h351v-445q0 -119 57.5 -171.5t199.5 -52.5l30 1q123 6 202 19v649h350z" /> | ||
1152 | <glyph glyph-name="uni0428" unicode="Ш" horiz-adv-x="1979" | ||
1153 | d="M454 1456v-1186h362v1186h351v-1186h358v1186h349v-1456h-1771v1456h351z" /> | ||
1154 | <glyph glyph-name="uni0429" unicode="Щ" horiz-adv-x="2143" | ||
1155 | d="M454 1456v-1186h362v1186h351v-1186h358v1186h349v-1197h216l-20 -609h-318v350h-1649v1456h351z" /> | ||
1156 | <glyph glyph-name="uni042A" unicode="Ъ" horiz-adv-x="1595" | ||
1157 | d="M27 1456h753v-501h181q173 0 306 -59t204.5 -166.5t71.5 -246.5q0 -215 -159.5 -349t-428.5 -134h-527v1196h-401v260zM780 685v-415h180q107 0 169.5 60t62.5 155q0 90 -62 145t-172 55h-178z" /> | ||
1158 | <glyph glyph-name="uni042B" unicode="Ы" horiz-adv-x="1785" | ||
1159 | d="M461 955h181q173 0 306 -59t204.5 -166.5t71.5 -246.5q0 -215 -159.5 -349t-428.5 -134h-527v1456h352v-501zM1680 0h-350v1456h350v-1456zM461 685v-415h180q107 0 169.5 60t62.5 155q0 90 -62 145t-172 55h-178z" /> | ||
1160 | <glyph glyph-name="uni042C" unicode="Ь" horiz-adv-x="1276" | ||
1161 | d="M463 955h181q173 0 306 -59t204.5 -166.5t71.5 -246.5q0 -215 -159.5 -349t-428.5 -134h-527v1456h352v-501zM463 685v-415h180q107 0 169.5 60t62.5 155q0 90 -62 145t-172 55h-178z" /> | ||
1162 | <glyph glyph-name="uni042D" unicode="Э" horiz-adv-x="1302" | ||
1163 | d="M367 492q8 -244 252 -244q125 0 188.5 79t75.5 266h-402v271h402q-14 180 -79 260.5t-180 80.5q-129 0 -192.5 -59.5t-67.5 -193.5h-349q22 245 183 384.5t426 139.5q182 0 321.5 -86t215 -247.5t75.5 -376.5v-79q0 -334 -165 -521t-452 -187q-173 0 -307.5 63.5 | ||
1164 | t-210.5 180t-84 269.5h350z" /> | ||
1165 | <glyph glyph-name="uni042E" unicode="Ю" horiz-adv-x="1991" | ||
1166 | d="M1889 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5q-168 0 -302.5 70t-219.5 202.5t-108 308.5h-151v-561h-350v1456h350v-634h144q12 197 93.5 346t222.5 228.5t319 79.5q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM1532 759q0 217 -72.5 329.5t-207.5 112.5 | ||
1167 | q-264 0 -279 -396l-1 -107q0 -214 71 -329t211 -115q133 0 205 113t73 325v67z" /> | ||
1168 | <glyph glyph-name="uni042F" unicode="Я" horiz-adv-x="1172" | ||
1169 | d="M737 0v511h-202l-246 -511h-381l299 630q-195 127 -195 373q0 216 142 334.5t409 118.5h526v-1456h-352zM362 972q0 -111 45 -161t151 -50h179v424h-177q-105 0 -151.5 -54.5t-46.5 -158.5z" /> | ||
1170 | <glyph glyph-name="uni0430" unicode="а" horiz-adv-x="1087" | ||
1171 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1172 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5z" /> | ||
1173 | <glyph glyph-name="uni0431" unicode="б" horiz-adv-x="1183" | ||
1174 | d="M663 1022q212 0 336.5 -139t124.5 -379v-14q0 -152 -63 -268.5t-181.5 -179.5t-277.5 -63q-240 0 -382.5 154t-142.5 424v32q2 370 122 582t367 267q111 25 145.5 48.5t34.5 73.5h271q0 -125 -38.5 -190t-122 -107.5t-234.5 -70.5q-119 -22 -183.5 -93.5t-87.5 -199.5 | ||
1175 | q135 123 312 123zM600 762q-185 0 -185 -256v-16q0 -251 187 -251q181 0 185 240v32q0 251 -187 251z" /> | ||
1176 | <glyph glyph-name="uni0432" unicode="в" horiz-adv-x="1150" | ||
1177 | d="M117 0v1082h464q223 0 341.5 -78t118.5 -225q0 -75 -52 -134.5t-152 -91.5q129 -22 199 -85.5t70 -158.5q0 -153 -115.5 -230.5t-332.5 -78.5h-541zM455 441v-183h197q63 0 90 22t27 67q0 90 -104 94h-210zM455 649h139q61 0 85.5 20.5t24.5 60.5q0 52 -30 73t-93 21 | ||
1178 | h-126v-175z" /> | ||
1179 | <glyph glyph-name="uni0433" unicode="г" horiz-adv-x="857" | ||
1180 | d="M852 822h-426v-822h-338v1082h764v-260z" /> | ||
1181 | <glyph glyph-name="uni0434" unicode="д" horiz-adv-x="1317" | ||
1182 | d="M123 260q81 81 117.5 161t42.5 186l3 74l6 401h843v-822h162v-588h-338v328h-586v-328h-346l-1 588h97zM511 260h288v562h-173l-1 -89q-7 -292 -114 -473z" /> | ||
1183 | <glyph glyph-name="uni0435" unicode="е" horiz-adv-x="1115" | ||
1184 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
1185 | t-123 44.5z" /> | ||
1186 | <glyph glyph-name="uni0436" unicode="ж" horiz-adv-x="1847" | ||
1187 | d="M1225 378h-128v-378h-337v378h-125l-185 -378h-400l322 579l-335 503h421l205 -389h97v389h337v-389h100l206 389h421l-337 -505l10 5l324 -582h-412z" /> | ||
1188 | <glyph glyph-name="uni0437" unicode="з" horiz-adv-x="1059" | ||
1189 | d="M655 755q0 106 -112 106q-129 0 -129 -93h-337q0 147 123.5 240t320.5 93q219 0 345 -82.5t126 -232.5q0 -72 -43.5 -132.5t-122.5 -96.5q185 -65 185 -251q0 -148 -133.5 -237t-356.5 -89q-203 0 -332 92.5t-129 247.5h337q0 -41 34 -70.5t113 -29.5q64 0 97.5 31 | ||
1190 | t33.5 85q0 116 -129 120h-151v196h137q123 0 123 103z" /> | ||
1191 | <glyph glyph-name="uni0438" unicode="и" horiz-adv-x="1148" | ||
1192 | d="M724 1082h338v-1082h-338v630l-297 -630h-339v1082h339v-628z" /> | ||
1193 | <glyph glyph-name="uni0439" unicode="й" horiz-adv-x="1148" | ||
1194 | d="M724 1082h338v-1082h-338v630l-297 -630h-339v1082h339v-628zM953 1538q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
1195 | <glyph glyph-name="uni043A" unicode="к" horiz-adv-x="1174" | ||
1196 | d="M556 378h-101v-378h-338v1082h338v-389h97l172 389h432l-316 -500h1l347 -582h-457z" /> | ||
1197 | <glyph glyph-name="uni043B" unicode="л" horiz-adv-x="1150" | ||
1198 | d="M1061 1082v-1082h-337v822h-202l-18 -331q-19 -246 -111 -368t-273 -123h-106l-4 258l35 4q67 8 99.5 89.5t41.5 246.5l21 484h854z" /> | ||
1199 | <glyph glyph-name="uni043C" unicode="м" horiz-adv-x="1572" | ||
1200 | d="M772 372l245 710h424v-1082h-338v600l-218 -600h-224l-206 568v-568h-338v1082h414z" /> | ||
1201 | <glyph glyph-name="uni043D" unicode="н" horiz-adv-x="1148" | ||
1202 | d="M1058 0h-338v401h-295v-401h-337v1082h337v-422h295v422h338v-1082z" /> | ||
1203 | <glyph glyph-name="uni043E" unicode="о" horiz-adv-x="1150" | ||
1204 | d="M52 551q0 162 63 288.5t181 194.5t277 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-231 0 -371 138.5t-151 375.5zM389 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251z" /> | ||
1205 | <glyph glyph-name="uni043F" unicode="п" horiz-adv-x="1148" | ||
1206 | d="M1062 0h-339v822h-298v-822h-337v1082h974v-1082z" /> | ||
1207 | <glyph glyph-name="uni0440" unicode="р" horiz-adv-x="1153" | ||
1208 | d="M1099 533q0 -252 -113.5 -402.5t-306.5 -150.5q-149 0 -245 109v-505h-337v1498h315l10 -100q97 120 255 120q200 0 311 -147.5t111 -405.5v-16zM762 554q0 288 -168 288q-120 0 -160 -86v-426q44 -90 162 -90q161 0 166 278v36z" /> | ||
1209 | <glyph glyph-name="uni0441" unicode="с" horiz-adv-x="1064" | ||
1210 | d="M552 240q71 0 110 38.5t38 107.5h316q0 -178 -127.5 -292t-328.5 -114q-236 0 -372 148t-136 410v14q0 164 60.5 289.5t174.5 193t270 67.5q211 0 335 -117t124 -317h-316q0 84 -41 129t-110 45q-131 0 -153 -167q-7 -53 -7 -146q0 -163 39 -226t124 -63z" /> | ||
1211 | <glyph glyph-name="uni0442" unicode="т" horiz-adv-x="1073" | ||
1212 | d="M1042 824h-341v-824h-339v824h-336v258h1016v-258z" /> | ||
1213 | <glyph glyph-name="uni0443" unicode="у" horiz-adv-x="1061" | ||
1214 | d="M527 472l180 610h361l-441 -1263l-19 -46q-94 -210 -332 -210q-66 0 -139 20v241h44q71 0 108.5 20.5t55.5 73.5l27 72l-376 1092h360z" /> | ||
1215 | <glyph glyph-name="uni0444" unicode="ф" horiz-adv-x="1502" | ||
1216 | d="M53 539q0 259 107.5 411t295.5 152q64 0 127 -26v460h337v-459q58 25 125 25q189 0 296.5 -153t107.5 -431q0 -250 -108.5 -394t-293.5 -144q-70 0 -127 23v-419h-337v420q-63 -24 -129 -24q-184 0 -292.5 144t-108.5 401v14zM390 518q0 -274 145 -277h26l22 2v596l-42 3 | ||
1217 | q-151 0 -151 -324zM1111 539q0 143 -37.5 223t-111.5 80l-42 -3v-597l44 -2q135 0 146 231z" /> | ||
1218 | <glyph glyph-name="uni0445" unicode="х" horiz-adv-x="1054" | ||
1219 | d="M533 784l157 298h350l-285 -527l299 -555h-352l-170 320l-167 -320h-354l300 555l-284 527h354z" /> | ||
1220 | <glyph glyph-name="uni0446" unicode="ц" horiz-adv-x="1261" | ||
1221 | d="M88 1082h337v-822h298v822h339v-824h178l-20 -579h-318v321h-814v1082z" /> | ||
1222 | <glyph glyph-name="uni0447" unicode="ч" horiz-adv-x="1142" | ||
1223 | d="M1056 0h-339v325q-58 -10 -100 -10q-267 0 -401.5 103.5t-135.5 310.5v353h337v-356q1 -88 42 -119.5t158 -31.5q49 0 100 9v498h339v-1082z" /> | ||
1224 | <glyph glyph-name="uni0448" unicode="ш" horiz-adv-x="1711" | ||
1225 | d="M425 1082v-822h254v822h338v-822h253v822h338v-1082h-1520v1082h337z" /> | ||
1226 | <glyph glyph-name="uni0449" unicode="щ" horiz-adv-x="1918" | ||
1227 | d="M427 1082v-822h253v822h339v-822h253v822h337v-824h247l-20 -579h-317v321h-1429v1082h337z" /> | ||
1228 | <glyph glyph-name="uni044A" unicode="ъ" horiz-adv-x="1385" | ||
1229 | d="M678 785h173q151 0 264.5 -49t173.5 -139t60 -209q0 -175 -135.5 -281.5t-367.5 -106.5h-506v821h-305v261h643v-297zM678 526v-268h172q78 0 120.5 35.5t42.5 96.5q0 60 -38.5 98t-124.5 38h-172z" /> | ||
1230 | <glyph glyph-name="uni044B" unicode="ы" horiz-adv-x="1746" | ||
1231 | d="M456 785h173q150 0 264 -49t174 -139t60 -209q0 -175 -135.5 -281.5t-369.5 -106.5h-505v1082h339v-297zM1626 0h-339v1082h339v-1082zM456 526v-268h171q77 0 120.5 35.5t43.5 96.5q0 60 -39 98t-125 38h-171z" /> | ||
1232 | <glyph glyph-name="uni044C" unicode="ь" horiz-adv-x="1157" | ||
1233 | d="M456 785h173q150 0 264 -49t174 -139t60 -209q0 -175 -135.5 -281.5t-369.5 -106.5h-505v1082h339v-297zM456 526v-268h171q77 0 120.5 35.5t43.5 96.5q0 60 -39 98t-125 38h-171z" /> | ||
1234 | <glyph glyph-name="uni044D" unicode="э" horiz-adv-x="1044" | ||
1235 | d="M497 842q-136 0 -136 -145h-316q0 177 125.5 291t326.5 114q237 0 375.5 -148t138.5 -411v-14q0 -252 -138 -400.5t-374 -148.5q-208 0 -331 115.5t-123 318.5h316q0 -81 35.5 -127.5t102.5 -46.5q151 0 170 211h-238v183h238q-18 208 -172 208z" /> | ||
1236 | <glyph glyph-name="uni044E" unicode="ю" horiz-adv-x="1657" | ||
1237 | d="M461 682h106q36 197 170.5 308.5t339.5 111.5q232 0 371 -138.5t151 -373.5l1 -60q0 -250 -140 -400t-381 -150q-212 0 -348.5 116.5t-166.5 324.5h-103v-421h-338v1082h338v-400zM893 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251z | ||
1238 | " /> | ||
1239 | <glyph glyph-name="uni044F" unicode="я" horiz-adv-x="1156" | ||
1240 | d="M1036 1082v-1082h-336v358h-130l-191 -358h-336l222 415q-97 46 -149.5 122t-52.5 172q0 165 132 267.5t344 105.5h497zM400 697q0 -49 40.5 -84.5t104.5 -37.5h155v249h-150q-66 0 -108 -37t-42 -90z" /> | ||
1241 | <glyph glyph-name="uni0450" unicode="ѐ" horiz-adv-x="1115" | ||
1242 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
1243 | t-123 44.5zM694 1223h-274l-282 314h356z" /> | ||
1244 | <glyph glyph-name="uni0451" unicode="ё" horiz-adv-x="1115" | ||
1245 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
1246 | t-123 44.5zM270 1499q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM789 1499q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1247 | <glyph glyph-name="uni0452" unicode="ђ" horiz-adv-x="1156" | ||
1248 | d="M663 1184h-239v-218q108 136 276 136q179 0 270 -106t93 -313v-698q0 -202 -107.5 -312t-301.5 -110q-87 0 -160 17l13 255q52 -12 101 -12q117 0 117 165v686q0 87 -35 127.5t-119 40.5q-104 0 -147 -66v-776h-337v1184h-154v191h154v161h337v-161h239v-191z" /> | ||
1249 | <glyph glyph-name="uni0453" unicode="ѓ" horiz-adv-x="857" | ||
1250 | d="M852 822h-426v-822h-338v1082h764v-260zM466 1536h356l-278 -314h-275z" /> | ||
1251 | <glyph glyph-name="uni0454" unicode="є" horiz-adv-x="1044" | ||
1252 | d="M544 240q71 0 110 38.5t38 107.5h316q0 -178 -127.5 -292t-328.5 -114q-236 0 -372 148t-136 410v14q0 164 60.5 289.5t174.5 193t270 67.5q211 0 335 -117t124 -317h-316q0 84 -41 129t-110 45q-73 0 -112 -50.5t-47 -175.5h263v-183h-260q10 -104 49.5 -148.5 | ||
1253 | t109.5 -44.5z" /> | ||
1254 | <glyph glyph-name="uni0455" unicode="ѕ" horiz-adv-x="1049" | ||
1255 | d="M661 304q0 43 -45 69t-171 54t-208 73.5t-125 110.5t-43 149q0 149 123 245.5t322 96.5q214 0 344 -97t130 -255h-338q0 130 -137 130q-53 0 -89 -29.5t-36 -73.5q0 -45 44 -73t140.5 -46t169.5 -43q244 -84 244 -301q0 -148 -131.5 -241t-340.5 -93q-139 0 -248 50 | ||
1256 | t-170 136t-61 181h315q2 -75 50 -109.5t123 -34.5q69 0 103.5 28t34.5 73z" /> | ||
1257 | <glyph glyph-name="uni0456" unicode="і" horiz-adv-x="563" | ||
1258 | d="M450 0h-338v1082h338v-1082zM92 1361q0 72 52 118t135 46t135 -46t52 -118t-52 -118t-135 -46t-135 46t-52 118z" /> | ||
1259 | <glyph glyph-name="uni0457" unicode="ї" horiz-adv-x="584" | ||
1260 | d="M462 0h-339v1082h339v-1082zM31 1478q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM550 1478q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1261 | <glyph glyph-name="uni0458" unicode="ј" horiz-adv-x="553" | ||
1262 | d="M457 1082v-1119q-1 -192 -110 -296t-304 -104q-84 0 -159 17v255q58 -9 95 -9q140 0 140 139v1117h338zM94 1361q0 72 52 118t135 46t135 -46t52 -118t-52 -118t-135 -46t-135 46t-52 118z" /> | ||
1263 | <glyph glyph-name="uni0459" unicode="љ" horiz-adv-x="1772" | ||
1264 | d="M1068 1082v-317h182q222 -3 355 -106.5t133 -275.5q0 -176 -135.5 -279t-360.5 -104h-513v822h-206l-18 -331q-19 -246 -111 -368t-274 -123h-105l-5 258l36 4q67 8 99.5 89.5t41.5 246.5l21 484h860zM1068 506v-248h171q86 0 124.5 36.5t38.5 90.5q0 52 -38.5 86.5 | ||
1265 | t-124.5 34.5h-171z" /> | ||
1266 | <glyph glyph-name="uni045A" unicode="њ" horiz-adv-x="1764" | ||
1267 | d="M425 660h295v422h338v-317h183q222 -3 355 -106.5t133 -275.5q0 -176 -135.5 -279t-360.5 -104h-513v401h-295v-401h-337v1082h337v-422zM1058 506v-248h172q86 0 124.5 36.5t38.5 90.5q0 52 -38.5 86.5t-124.5 34.5h-172z" /> | ||
1268 | <glyph glyph-name="uni045B" unicode="ћ" horiz-adv-x="1152" | ||
1269 | d="M671 1199h-247v-233q108 136 276 136q179 0 270 -106t93 -313v-683h-338v675q0 86 -35 126.5t-119 40.5q-104 0 -147 -66v-776h-337v1199h-146v191h146v146h337v-146h247v-191z" /> | ||
1270 | <glyph glyph-name="uni045C" unicode="ќ" horiz-adv-x="1174" | ||
1271 | d="M556 378h-101v-378h-338v1082h338v-389h97l172 389h432l-316 -500h1l347 -582h-457zM643 1536h356l-278 -314h-275z" /> | ||
1272 | <glyph glyph-name="uni045D" unicode="ѝ" horiz-adv-x="1148" | ||
1273 | d="M724 1082h338v-1082h-338v630l-297 -630h-339v1082h339v-628zM743 1222h-274l-282 314h356z" /> | ||
1274 | <glyph glyph-name="uni045E" unicode="ў" horiz-adv-x="1061" | ||
1275 | d="M527 472l180 610h361l-441 -1263l-19 -46q-94 -210 -332 -210q-66 0 -139 20v241h44q71 0 108.5 20.5t55.5 73.5l27 72l-376 1092h360zM899 1538q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
1276 | <glyph glyph-name="uni045F" unicode="џ" horiz-adv-x="1148" | ||
1277 | d="M425 1082v-822h298v822h339v-1082h-319v-360h-338v360h-317v1082h337z" /> | ||
1278 | <glyph glyph-name="uni0460" unicode="Ѡ" horiz-adv-x="2016" | ||
1279 | d="M1895 1456v-967q0 -155 -65 -270t-187.5 -177.5t-282.5 -62.5q-232 0 -361 155q-127 -155 -355 -155q-244 0 -392.5 135.5t-150.5 370.5v971h351v-961q0 -246 192 -246q175 0 180 226v981h348v-961q0 -246 188 -246q180 0 184 229v978h351z" /> | ||
1280 | <glyph glyph-name="uni0461" unicode="ѡ" horiz-adv-x="1748" | ||
1281 | d="M1686 1082v-610q-3 -227 -129 -360t-346 -133q-207 0 -321 142q-114 -142 -323 -142q-219 0 -347.5 132.5t-131.5 360.5v610h338v-621q5 -222 141 -222q80 0 118 57.5t38 185.5v600h338v-600q0 -128 35.5 -185.5t114.5 -57.5q71 0 103.5 57.5t32.5 185.5v600h339z" /> | ||
1282 | <glyph glyph-name="uni0462" unicode="Ѣ" horiz-adv-x="1276" | ||
1283 | d="M694 1085h-231v-130h181q173 0 306 -59t204.5 -166.5t71.5 -246.5q0 -215 -159.5 -349t-428.5 -134h-527v1085h-147v191h147v180h352v-180h231v-191zM463 685v-415h180q107 0 169.5 60t62.5 155q0 90 -62 145t-172 55h-178z" /> | ||
1284 | <glyph glyph-name="uni0463" unicode="ѣ" horiz-adv-x="1157" | ||
1285 | d="M678 1083h-222v-278h167q231 0 367.5 -109t136.5 -293q0 -182 -133.5 -292t-363.5 -111h-512v1083h-139v191h139v288h338v-288h222v-191zM456 546v-288h171q77 0 120.5 38.5t43.5 108.5q0 141 -176 141h-159z" /> | ||
1286 | <glyph glyph-name="uni0464" unicode="Ѥ" horiz-adv-x="1823" | ||
1287 | d="M446 869h169q26 279 188 444t420 165q265 0 426 -139.5t183 -384.5h-350q-4 133 -66.5 191t-192.5 58q-119 0 -180.5 -82.5t-72.5 -251.5h367v-261h-369q8 -186 69 -269t191 -83q121 0 184.5 57t67.5 181h350q-7 -151 -82 -267.5t-211 -181t-309 -64.5q-270 0 -432 165.5 | ||
1288 | t-182 461.5h-168v-608h-349v1456h349v-587z" /> | ||
1289 | <glyph glyph-name="uni0465" unicode="ѥ" horiz-adv-x="1553" | ||
1290 | d="M437 640h110q24 217 156.5 339.5t344.5 122.5q211 0 335 -117t124 -317h-316q0 84 -40.5 129t-109.5 45t-108 -46t-49 -156h269v-191h-270q7 -109 45.5 -159t114.5 -50q71 0 110 38.5t38 107.5h316q0 -178 -127.5 -292t-328.5 -114q-216 0 -349 123.5t-155 345.5h-110 | ||
1291 | v-449h-338v1082h338v-442z" /> | ||
1292 | <glyph glyph-name="uni0466" unicode="Ѧ" horiz-adv-x="1417" | ||
1293 | d="M895 414h-63v-414h-275v414h-52l-133 -414h-371l507 1456h188l3 -4l4 4h188l509 -1456h-370zM576 636h247l-124 383z" /> | ||
1294 | <glyph glyph-name="uni0467" unicode="ѧ" horiz-adv-x="1171" | ||
1295 | d="M728 262h-65v-262h-187v262h-48l-80 -262h-344l392 1082h365l391 -1082h-343zM489 460h178l-54 175l-35 152l-35 -152z" /> | ||
1296 | <glyph glyph-name="uni0468" unicode="Ѩ" horiz-adv-x="1976" | ||
1297 | d="M470 634h305l287 822h188l3 -4l4 4h187l510 -1456h-371l-134 414h-63v-414h-275v414h-53l-133 -414h-370l144 414h-229v-414h-350v1456h350v-822zM1129 636h248l-125 385z" /> | ||
1298 | <glyph glyph-name="uni0469" unicode="ѩ" horiz-adv-x="1681" | ||
1299 | d="M433 459h248l226 623h365l391 -1082h-343l-81 262h-65v-262h-186v262h-49l-80 -262h-344l95 263h-177v-263h-339v1082h339v-623zM1000 460h178l-54 175l-35 152l-35 -152z" /> | ||
1300 | <glyph glyph-name="uni046A" unicode="Ѫ" horiz-adv-x="1797" | ||
1301 | d="M1216 793q252 -15 370 -128.5t120 -331.5v-333h-349v327q0 102 -48 147.5t-161 46.5h-56v-521h-350v521h-86q-115 0 -164.5 -43.5t-51.5 -141.5v-336h-349v340q4 223 132.5 336t401.5 119l-368 661h1328zM921 867l152 314h-304z" /> | ||
1302 | <glyph glyph-name="uni046B" unicode="ѫ" horiz-adv-x="1493" | ||
1303 | d="M1038 609q185 -26 274 -128.5t90 -285.5v-195h-337v192q0 93 -33 136t-112 45v-373h-337v373q-83 0 -119 -40.5t-37 -134.5v-198h-337v202q3 183 94.5 284t285.5 125l-273 471h1115zM754 643l105 237h-210z" /> | ||
1304 | <glyph glyph-name="uni046C" unicode="Ѭ" horiz-adv-x="2408" | ||
1305 | d="M704 0v327q0 116 35 208h-255v-535h-350v1456h350v-657h751l-365 657h1328l-368 -663q249 -15 367.5 -127.5t121.5 -327.5v-338h-349v327q0 102 -48.5 148t-164.5 46h-52v-521h-350v521h-86q-115 0 -164.5 -43.5t-51.5 -141.5v-336h-349zM1534 867l152 314h-304z" /> | ||
1306 | <glyph glyph-name="uni046D" unicode="ѭ" horiz-adv-x="2080" | ||
1307 | d="M676 0v190q0 112 32 194h-246v-384h-339v1082h339v-465h590l-269 465h1114l-274 -473q186 -26 275 -128.5t90 -285.5v-195h-337v192q0 93 -33 136t-112 45v-373h-337v373q-83 0 -119 -40.5t-37 -134.5v-198h-337zM1340 643l105 237h-210z" /> | ||
1308 | <glyph glyph-name="uni046E" unicode="Ѯ" horiz-adv-x="1047" | ||
1309 | d="M560 1043q0 138 -188 143h-254v270h248q269 -2 401 -96.5t132 -277.5q0 -247 -223 -337q279 -88 279 -337q0 -199 -138.5 -314t-387.5 -115h-55q-99 0 -99 -89q0 -80 106 -131l31 -14l-83 -193q-173 29 -264 126t-93 264q0 148 94.5 228t270.5 80h74q98 0 152 43t54 111 | ||
1310 | q0 205 -258 205h-136v271h145q192 0 192 163zM466 1794l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
1311 | <glyph glyph-name="uni046F" unicode="ѯ" horiz-adv-x="1056" | ||
1312 | d="M543 752q0 97 -173 101h-252v229h258q256 -3 380 -77.5t124 -214.5q0 -176 -172 -250q229 -67 229 -236q0 -152 -129.5 -238.5t-354.5 -86.5h-50q-116 -2 -116 -89q0 -89 113 -145l-82 -172q-144 42 -227.5 140.5t-85.5 228.5q0 129 84 197.5t238 68.5h61q100 0 156 31.5 | ||
1313 | t56 80.5q0 123 -219 123h-158v187h178q77 0 109.5 35t32.5 87zM475 1391l147 134h287v-11l-326 -283h-217l-328 285v9h290z" /> | ||
1314 | <glyph glyph-name="uni0470" unicode="Ѱ" horiz-adv-x="1527" | ||
1315 | d="M952 675q99 19 144.5 100t45.5 241v440h352v-449q-3 -263 -145.5 -421t-396.5 -184v-402h-350v400q-269 21 -417 181.5t-150 429.5v445h351v-458q6 -277 216 -322v780h350v-781z" /> | ||
1316 | <glyph glyph-name="uni0471" unicode="ѱ" horiz-adv-x="1569" | ||
1317 | d="M945 1082v-823q114 32 171 115t57 233q-3 211 -100 475h301q136 -212 136 -475q0 -266 -146.5 -425t-418.5 -193v-467h-337v469q-267 34 -408 182.5t-143 405.5v503h338v-507q3 -253 213 -315v822h337z" /> | ||
1318 | <glyph glyph-name="uni0472" unicode="Ѳ" horiz-adv-x="1416" | ||
1319 | d="M1358 698q0 -214 -79 -377.5t-224 -252t-332 -88.5q-186 0 -330 86t-224.5 246t-83.5 368v77q0 215 78.5 378t224 252t333.5 89q185 0 331 -88.5t225.5 -250.5t80.5 -373v-66zM723 254q125 0 196.5 99.5t80.5 287.5h-557q9 -188 79 -287.5t201 -99.5zM721 1201 | ||
1320 | q-255 0 -277 -369h555q-12 182 -83.5 275.5t-194.5 93.5z" /> | ||
1321 | <glyph glyph-name="uni0473" unicode="ѳ" horiz-adv-x="1151" | ||
1322 | d="M50 551q0 162 63 288.5t180.5 194.5t277.5 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-232 0 -371.5 138.5t-150.5 375.5zM571 842q-156 0 -180 -212h362q-24 212 -182 212zM573 240q152 0 179 199h-360q27 -199 181 -199z" /> | ||
1323 | <glyph glyph-name="uni0474" unicode="Ѵ" horiz-adv-x="1327" | ||
1324 | d="M659 395l10 -56l10 51l185 711q61 194 161 283.5t251 89.5l35 -1l-4 -278h-36q-39 0 -70.5 -32t-40.5 -75l-300 -1088h-381l-473 1456h368z" /> | ||
1325 | <glyph glyph-name="uni0475" unicode="ѵ" horiz-adv-x="1053" | ||
1326 | d="M500 333l19 113l63 291q55 190 150.5 278t239.5 88q64 0 100 -16l-25 -256l-56 3q-39 0 -71.5 -31t-43.5 -79l-201 -724h-343l-332 1082h356l123 -631z" /> | ||
1327 | <glyph glyph-name="uni0476" unicode="Ѷ" horiz-adv-x="1327" | ||
1328 | d="M659 395l10 -56l10 51l185 711q61 194 161 283.5t251 89.5l35 -1l-4 -278h-36q-39 0 -70.5 -32t-40.5 -75l-300 -1088h-381l-473 1456h368zM622 1562h-271l-284 266h310zM1002 1562h-274l-245 266h312z" /> | ||
1329 | <glyph glyph-name="uni0477" unicode="ѷ" horiz-adv-x="1053" | ||
1330 | d="M500 333l19 113l63 291q55 190 150.5 278t239.5 88q64 0 100 -16l-25 -256l-56 3q-39 0 -71.5 -31t-43.5 -79l-201 -724h-343l-332 1082h356l123 -631zM526 1252h-271l-284 266h310zM906 1252h-274l-245 266h312z" /> | ||
1331 | <glyph glyph-name="uni0478" unicode="Ѹ" horiz-adv-x="2475" | ||
1332 | d="M1343 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 85.5t-224.5 244.5t-84.5 365v82q0 214 78.5 377.5t225 252.5t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM986 759q0 217 -72.5 329.5t-207.5 112.5q-264 0 -279 -396l-1 -107q0 -214 71 -329 | ||
1333 | t211 -115q133 0 205 113t73 325v67zM1941 472l180 610h361l-441 -1263l-19 -46q-94 -210 -332 -210q-66 0 -139 20v241h44q71 0 108.5 20.5t55.5 73.5l27 72l-376 1092h360z" /> | ||
1334 | <glyph glyph-name="uni0479" unicode="ѹ" horiz-adv-x="2211" | ||
1335 | d="M52 551q0 162 63 288.5t181 194.5t277 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-231 0 -371 138.5t-151 375.5zM389 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251zM1677 472l180 610h361l-441 -1263 | ||
1336 | l-19 -46q-94 -210 -332 -210q-66 0 -139 20v241h44q71 0 108.5 20.5t55.5 73.5l27 72l-376 1092h360z" /> | ||
1337 | <glyph glyph-name="uni047A" unicode="Ѻ" horiz-adv-x="1416" | ||
1338 | d="M1358 698q0 -196 -67.5 -351.5t-193 -249t-291.5 -112.5v-118h-193v121q-242 37 -384.5 226t-143.5 482v61q0 294 142.5 483.5t382.5 226.5v104h193v-100q252 -29 402.5 -220t152.5 -488v-65zM1002 759q0 181 -51 289t-148 140v-104h-193v94q-162 -76 -168 -396v-84 | ||
1339 | q0 -339 171 -421v87h193v-97q95 33 145.5 142t50.5 289v61z" /> | ||
1340 | <glyph glyph-name="uni047B" unicode="ѻ" horiz-adv-x="1151" | ||
1341 | d="M52 551q0 231 121.5 378.5t331.5 168.5v105h148v-106q207 -25 325 -171t118 -381v-15q0 -233 -121 -379t-330 -167v-110h-148v111q-205 23 -323 166.5t-122 365.5v34zM645 253q110 45 114 260v38q0 220 -106 273v-98h-148v103q-112 -47 -116 -261v-38q0 -222 108 -274 | ||
1342 | v115h148v-118z" /> | ||
1343 | <glyph glyph-name="uni047C" unicode="Ѽ" horiz-adv-x="2018" | ||
1344 | d="M1329 1456q246 0 393.5 -134.5t150.5 -365.5v-469q0 -234 -147.5 -371t-396.5 -137q-216 0 -343 141q-127 -141 -342 -141q-245 0 -392.5 134.5t-150.5 364.5v469q0 235 147.5 372t395.5 137v-271q-192 0 -192 -240v-458q0 -125 51.5 -181.5t140.5 -56.5q175 0 180 226 | ||
1345 | v340h326v-340q5 -226 179 -226q193 0 193 241v457q0 238 -193 238v271zM1445 1691v-134h-7q-86 0 -162.5 20t-233.5 79q-56 21 -97 21q-102 0 -102 -105v-15h-130v34q0 220 229 220q81 0 229 -60t274 -60zM854 1321q65 82 68 142v104h169v-103q0 -49 -48 -109t-107 -91z" /> | ||
1346 | <glyph glyph-name="uni047D" unicode="ѽ" horiz-adv-x="1707" | ||
1347 | d="M1084 1102q232 0 372 -128.5t141 -351.5v-160q0 -223 -127.5 -353t-340.5 -130q-179 0 -281 144q-102 -144 -280 -144q-213 0 -340.5 129t-127.5 357v154q0 225 140 354t373 129v-260q-80 0 -127.5 -53t-47.5 -170v-157q0 -117 35.5 -170t94.5 -53q119 0 123 225v152h315 | ||
1348 | v-152q4 -225 123 -225q59 0 94.5 53t35.5 170v157q0 109 -45 166t-130 57v260zM1304 1360v-134h-11q-86 0 -162.5 20t-234.5 80q-53 20 -94 20q-102 0 -102 -105v-15h-131v34q0 220 230 220q80 0 228 -60t277 -60zM721 1001q65 82 68 142v104h169v-103q0 -49 -48 -109 | ||
1349 | t-107 -91z" /> | ||
1350 | <glyph glyph-name="uni047E" unicode="Ѿ" horiz-adv-x="2016" | ||
1351 | d="M1895 1456v-967q0 -155 -65 -270t-187.5 -177.5t-282.5 -62.5q-232 0 -361 155q-127 -155 -355 -155q-244 0 -392.5 135.5t-150.5 370.5v971h351v-961q0 -246 192 -246q175 0 180 226v981h348v-961q0 -246 188 -246q180 0 184 229v978h351zM540 1687v142h917l2 -142h-378 | ||
1352 | v-127h-181v127h-360z" /> | ||
1353 | <glyph glyph-name="uni047F" unicode="ѿ" horiz-adv-x="1748" | ||
1354 | d="M1686 1082v-610q-3 -227 -129 -360t-346 -133q-207 0 -321 142q-114 -142 -323 -142q-219 0 -347.5 132.5t-131.5 360.5v610h338v-621q5 -222 141 -222q80 0 118 57.5t38 185.5v600h338v-600q0 -128 35.5 -185.5t114.5 -57.5q71 0 103.5 57.5t32.5 185.5v600h339z | ||
1355 | M474 1315v142h824l8 -142h-339v-127h-180v127h-313z" /> | ||
1356 | <glyph glyph-name="uni0480" unicode="Ҁ" horiz-adv-x="1236" | ||
1357 | d="M873 -353h-350v342q-208 36 -328 191.5t-120 397.5v304q0 176 69 311t197.5 209.5t297.5 74.5q269 0 407 -130.5t138 -382.5h-350q0 137 -43 189.5t-152 52.5q-103 0 -158.5 -82t-55.5 -244v-307q0 -156 55 -239.5t156 -84.5h237v-602z" /> | ||
1358 | <glyph glyph-name="uni0481" unicode="ҁ" horiz-adv-x="1092" | ||
1359 | d="M823 -358h-337v346q-190 32 -298 175t-108 373v16q0 252 137 401t375 149q210 0 331.5 -116.5t121.5 -317.5h-316q0 84 -35.5 129t-101.5 45q-87 0 -131 -69t-44 -244q0 -151 41.5 -219t124.5 -71h240v-597z" /> | ||
1360 | <glyph glyph-name="uni0482" unicode="҂" horiz-adv-x="1270" | ||
1361 | d="M599 449l289 -172l-72 -128l-291 170l-181 -319h-175l225 398l-289 171l71 128l293 -171l202 360l-290 171l73 130l291 -171l185 326h172l-228 -405l293 -171l-76 -127l-288 170z" /> | ||
1362 | <glyph glyph-name="uni0483" unicode="҃" horiz-adv-x="0" | ||
1363 | d="M-718 1312v-126l-177 1l1 238h546l-1 108l177 -1v-220h-546z" /> | ||
1364 | <glyph glyph-name="uni0484" unicode="҄" horiz-adv-x="0" | ||
1365 | d="M-374 1557q238 0 238 -220v-34h-136v16q0 104 -106 104q-43 0 -97 -20q-157 -58 -239.5 -79t-183.5 -21v134q78 0 137.5 13.5t168 52.5t145 46.5t73.5 7.5z" /> | ||
1366 | <glyph glyph-name="uni0485" unicode="҅" horiz-adv-x="0" | ||
1367 | d="M-591 1500v152h190l-1 -170l58 -105l-81 -68z" /> | ||
1368 | <glyph glyph-name="uni0486" unicode="҆" horiz-adv-x="0" | ||
1369 | d="M-517 1309l-82 68l59 105l-1 170h189v-152z" /> | ||
1370 | <glyph glyph-name="uni0488" unicode="҈" horiz-adv-x="0" | ||
1371 | d="M-727 1267q0 84 57.5 136t152.5 52t153 -52t58 -136h-112q0 46 -25.5 73.5t-73.5 27.5q-46 0 -71.5 -26.5t-25.5 -74.5h-113zM-136 990q0 84 58 136t151 52q95 0 153.5 -51.5t58.5 -136.5h-113q0 49 -26.5 75t-72.5 26q-45 0 -70 -26.5t-25 -74.5h-114zM50 487 | ||
1372 | q0 85 58.5 136.5t151.5 51.5q95 0 153 -52t58 -136h-112q0 49 -26.5 75t-72.5 26t-71.5 -27.5t-25.5 -73.5h-113zM-146 -32q0 84 58 136t151 52q95 0 153 -52t58 -136h-112q0 49 -26.5 75t-72.5 26q-45 0 -70.5 -27.5t-25.5 -73.5h-113zM-722 -316q0 84 57.5 136t152.5 52 | ||
1373 | t153 -52t58 -136h-112q0 46 -25.5 73.5t-73.5 27.5q-46 0 -71.5 -27.5t-25.5 -73.5h-113zM-1300 990q0 84 58 136t153 52t153 -52t58 -136h-112q0 46 -25.5 73.5t-73.5 27.5q-46 0 -71.5 -26.5t-25.5 -74.5h-114zM-1476 487q0 85 58.5 136.5t151.5 51.5q95 0 153 -52 | ||
1374 | t58 -136h-112q0 49 -26.5 75t-72.5 26t-71.5 -27.5t-25.5 -73.5h-113zM-1310 -32q0 85 58.5 136.5t151.5 51.5q95 0 153.5 -51.5t58.5 -136.5h-113q0 49 -26.5 75t-72.5 26q-45 0 -70.5 -26.5t-25.5 -74.5h-114z" /> | ||
1375 | <glyph glyph-name="uni0489" unicode="҉" horiz-adv-x="0" | ||
1376 | d="M-361 -60l11 -14l-122 -339h-96l70 353h137zM-556 1126l-12 14l122 338h96l-70 -352h-136zM121 631l13 12l333 -124v-98l-346 71v139zM-1042 433l-13 -12l-333 124v98l346 -71v-139zM-118 1002l2 16l320 153l68 -68l-293 -200zM-802 21l-2 -17l-320 -153l-69 69l294 200z | ||
1377 | M-942 860l-17 2l-148 326l65 69l198 -299zM19 161l17 -2l149 -325l-66 -71l-196 299z" /> | ||
1378 | <glyph glyph-name="uni048A" unicode="Ҋ" horiz-adv-x="1419" | ||
1379 | d="M964 1456h351v-1456h-351v918l-523 -918h-351v1456h351v-919zM1075 1848q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231zM1347 -426l-170 80l34 68q70 130 73 248v250h270l-1 -217q-1 -115 -59 -234t-147 -195 | ||
1380 | z" /> | ||
1381 | <glyph glyph-name="uni048B" unicode="ҋ" horiz-adv-x="1148" | ||
1382 | d="M724 1082h338v-1082h-338v630l-297 -630h-339v1082h339v-628zM953 1538q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231zM1096 -426l-170 80l34 68q70 130 73 248v250h270l-1 -217q-1 -115 -59 -234t-147 -195z | ||
1383 | " /> | ||
1384 | <glyph glyph-name="uni048C" unicode="Ҍ" horiz-adv-x="1276" | ||
1385 | d="M694 1085h-231v-130h181q173 0 306 -59t204.5 -166.5t71.5 -246.5q0 -215 -159.5 -349t-428.5 -134h-527v1085h-147v191h147v180h352v-180h231v-191zM463 685v-415h180q107 0 169.5 60t62.5 155q0 90 -62 145t-172 55h-178z" /> | ||
1386 | <glyph glyph-name="uni048D" unicode="ҍ" horiz-adv-x="1157" | ||
1387 | d="M678 1265h-222v-460h167q231 0 367.5 -109t136.5 -293q0 -182 -133.5 -292t-363.5 -111h-512v1265h-139v191h139v146h338v-146h222v-191zM456 546v-288h171q77 0 120.5 38.5t43.5 108.5q0 141 -176 141h-159z" /> | ||
1388 | <glyph glyph-name="uni048E" unicode="Ҏ" horiz-adv-x="1277" | ||
1389 | d="M461 494v-494h-351v1456h581q167 0 295.5 -61.5t199 -175t70.5 -257.5q0 -219 -162 -348l114 -126l-93 -84l-131 145q-125 -55 -293 -55h-230zM876 855q24 45 24 105q0 102 -55 163t-150 62h-234v-420h230q50 0 86 12l-132 146l94 85z" /> | ||
1390 | <glyph glyph-name="uni048F" unicode="ҏ" horiz-adv-x="1149" | ||
1391 | d="M1099 533q0 -271 -129 -422l95 -114l-98 -82l-94 114q-89 -49 -194 -49q-149 0 -245 109v-505h-337v1498h315l10 -100q97 120 255 120q200 0 311 -147.5t111 -405.5v-16zM762 554q0 288 -168 288q-120 0 -160 -86v-426q44 -90 162 -90q48 0 82 25l-118 144l96 82l90 -109 | ||
1392 | q16 66 16 172z" /> | ||
1393 | <glyph glyph-name="uni0490" unicode="Ґ" horiz-adv-x="1144" | ||
1394 | d="M1111 1197h-17v-12h-633v-1185h-351v1456h664v388h337v-647z" /> | ||
1395 | <glyph glyph-name="uni0491" unicode="ґ" horiz-adv-x="961" | ||
1396 | d="M912 822h-485v-822h-337v1082h485v317h337v-577z" /> | ||
1397 | <glyph glyph-name="uni0492" unicode="Ғ" horiz-adv-x="1142" | ||
1398 | d="M693 656h-234v-656h-351v656h-145v191h145v609h984v-271h-633v-338h234v-191z" /> | ||
1399 | <glyph glyph-name="uni0493" unicode="ғ" horiz-adv-x="857" | ||
1400 | d="M644 446h-218v-446h-338v446h-174v191h174v445h764v-260h-426v-185h218v-191z" /> | ||
1401 | <glyph glyph-name="uni0494" unicode="Ҕ" horiz-adv-x="1095" | ||
1402 | d="M1092 1185h-633v-347h159q293 0 451.5 -154t158.5 -437q0 -184 -73 -325.5t-201.5 -211t-304.5 -69.5v245q242 0 242 341q0 172 -68 261.5t-201 89.5h-163v-578h-351v1456h984v-271z" /> | ||
1403 | <glyph glyph-name="uni0495" unicode="ҕ" horiz-adv-x="1110" | ||
1404 | d="M853 822h-426v-150h15q290 0 444 -128t154 -363q5 -142 -96.5 -271t-266.5 -196l-158 207q106 65 145 125t39 135q2 231 -264 231h-12v-412h-337v1082h763v-260z" /> | ||
1405 | <glyph glyph-name="uni0496" unicode="Җ" horiz-adv-x="2136" | ||
1406 | d="M1435 569h-178v-569h-349v569h-181l-280 -569h-436l439 795l-426 661h443l298 -571h143v571h349v-571h142l285 571h442l-415 -659l430 -797h-438zM2297 -356h-337v579h337v-579z" /> | ||
1407 | <glyph glyph-name="uni0497" unicode="җ" horiz-adv-x="1847" | ||
1408 | d="M1225 378h-128v-378h-337v378h-125l-185 -378h-400l322 579l-335 503h421l205 -389h97v389h337v-389h100l206 389h421l-337 -505l10 5l324 -582h-412zM1965 -356h-337v579h337v-579z" /> | ||
1409 | <glyph glyph-name="uni0498" unicode="Ҙ" horiz-adv-x="1289" | ||
1410 | d="M819 1052q0 69 -53.5 111t-144.5 42q-85 0 -136.5 -40.5t-51.5 -106.5h-350q0 120 68.5 215t193.5 148.5t276 53.5q260 0 404.5 -109t144.5 -305q0 -100 -58.5 -182.5t-161.5 -130.5q118 -42 180.5 -127.5t62.5 -212.5q0 -196 -156 -311.5t-416 -115.5q-241 0 -400 113.5 | ||
1411 | t-159 309.5h352q0 -65 58 -109.5t149 -44.5q98 0 159 46t61 120q0 108 -52 152.5t-152 44.5h-187v260h199q170 5 170 179zM805 -498h-337v579h337v-579z" /> | ||
1412 | <glyph glyph-name="uni0499" unicode="ҙ" horiz-adv-x="1059" | ||
1413 | d="M655 755q0 106 -112 106q-129 0 -129 -93h-337q0 147 123.5 240t320.5 93q219 0 345 -82.5t126 -232.5q0 -72 -43.5 -132.5t-122.5 -96.5q185 -65 185 -251q0 -148 -133.5 -237t-356.5 -89q-203 0 -332 92.5t-129 247.5h337q0 -41 34 -70.5t113 -29.5q64 0 97.5 31 | ||
1414 | t33.5 85q0 116 -129 120h-151v196h137q123 0 123 103zM708 -497h-337v579h337v-579z" /> | ||
1415 | <glyph glyph-name="uni049A" unicode="Қ" horiz-adv-x="1325" | ||
1416 | d="M625 576h-166v-576h-351v1456h351v-563h135l280 563h425l-400 -672l450 -784h-415zM1509 -356h-337v579h337v-579z" /> | ||
1417 | <glyph glyph-name="uni049B" unicode="қ" horiz-adv-x="1174" | ||
1418 | d="M556 378h-101v-378h-338v1082h338v-389h97l172 389h432l-316 -500h1l347 -582h-457zM1327 -356h-337v579h337v-579z" /> | ||
1419 | <glyph glyph-name="uni049C" unicode="Ҝ" horiz-adv-x="1387" | ||
1420 | d="M1395 1456l-375 -652l5 3l409 -807h-450l-236 570h-39v-224h-172v224h-74v-570h-352v1456h352v-570h74v259h172v-259h18l225 570h443z" /> | ||
1421 | <glyph glyph-name="uni049D" unicode="ҝ" horiz-adv-x="1273" | ||
1422 | d="M1262 1082l-270 -504l278 -578h-434l-117 378h-45v-163h-147v163h-72v-378h-337v1082h337v-389h72v183h147v-183h51l105 389h432z" /> | ||
1423 | <glyph glyph-name="uni049E" unicode="Ҟ" horiz-adv-x="1345" | ||
1424 | d="M645 576h-166v-576h-351v1106h-202v191h202v159h351v-159h177v-191h-177v-213h135l280 563h425l-400 -672l450 -784h-415z" /> | ||
1425 | <glyph glyph-name="uni049F" unicode="ҟ" horiz-adv-x="1139" | ||
1426 | d="M518 430h-64v-430h-338v1207h-209v191h209v138h338v-138h183v-191h-183v-522h56l219 397h388l-327 -490l358 -592h-386z" /> | ||
1427 | <glyph glyph-name="uni04A0" unicode="Ҡ" horiz-adv-x="1696" | ||
1428 | d="M1014 576h-166v-576h-351v1195h-475v261h826v-563h135l280 563h425l-400 -672l450 -784h-415z" /> | ||
1429 | <glyph glyph-name="uni04A1" unicode="ҡ" horiz-adv-x="1486" | ||
1430 | d="M879 378h-101v-378h-338v821h-386v261h724v-389h97l171 389h433l-316 -500h1l347 -582h-457z" /> | ||
1431 | <glyph glyph-name="uni04A2" unicode="Ң" horiz-adv-x="1439" | ||
1432 | d="M1327 0h-349v608h-517v-608h-351v1456h351v-578h517v578h349v-1456zM1571 -356h-337v579h337v-579z" /> | ||
1433 | <glyph glyph-name="uni04A3" unicode="ң" horiz-adv-x="1148" | ||
1434 | d="M1058 0h-338v401h-295v-401h-337v1082h337v-422h295v422h338v-1082zM1304 -356h-337v579h337v-579z" /> | ||
1435 | <glyph glyph-name="uni04A4" unicode="Ҥ" horiz-adv-x="2035" | ||
1436 | d="M461 878h517v578h974v-260h-623l-2 1v-1197h-349v608h-517v-608h-351v1456h351v-578z" /> | ||
1437 | <glyph glyph-name="uni04A5" unicode="ҥ" horiz-adv-x="1441" | ||
1438 | d="M427 660h295v422h667v-260h-329v-822h-338v401h-295v-401h-337v1082h337v-422z" /> | ||
1439 | <glyph glyph-name="uni04A6" unicode="Ҧ" horiz-adv-x="2162" | ||
1440 | d="M1333 835h162q293 0 451.5 -154t158.5 -437q0 -184 -73 -325.5t-201.5 -211t-304.5 -69.5v245q242 0 242 341q0 172 -68 261.5t-201 89.5h-166v-575h-351v1185h-523v-1185h-351v1456h1225v-621z" /> | ||
1441 | <glyph glyph-name="uni04A7" unicode="ҧ" horiz-adv-x="1765" | ||
1442 | d="M1063 682h44q301 0 460 -128t159 -363q5 -142 -96.5 -271t-266.5 -196l-158 207q106 65 145 125t39 135q2 231 -284 231h-42v-422h-338v822h-298v-822h-337v1082h973v-400z" /> | ||
1443 | <glyph glyph-name="uni04A8" unicode="Ҩ" horiz-adv-x="1713" | ||
1444 | d="M1608 -8q-226 0 -416 66q-166 -79 -365 -79q-212 0 -381.5 86.5t-264.5 241.5t-95 347v229q0 167 71 304.5t198 213.5t286 76v-282q-81 0 -130 -86t-49 -228v-227q0 -178 99.5 -286t267.5 -108h18l18 1q-191 197 -191 488v180q0 155 56 282t156 196.5t225 69.5 | ||
1445 | q142 0 253.5 -78t172.5 -219t61 -319v-140q0 -266 -153 -460q76 -14 163 -14v-255zM1000 743q0 -204 143 -339q103 128 103 321v183q0 155 -28.5 221.5t-106.5 66.5q-60 0 -84.5 -56t-26.5 -186v-211z" /> | ||
1446 | <glyph glyph-name="uni04A9" unicode="ҩ" horiz-adv-x="1367" | ||
1447 | d="M1309 -32q-211 0 -364 51q-126 -40 -265 -40q-174 0 -313.5 69t-216.5 192t-77 275v112q0 135 59.5 244.5t166.5 170t241 60.5v-268q-106 -24 -106 -217v-103q0 -107 55.5 -177t149.5 -84q-65 114 -65 264v172q0 178 100 295t254 117q163 0 269.5 -131t106.5 -343v-156 | ||
1448 | q0 -193 -142 -325q67 -12 147 -12v-166zM797 497q0 -112 69 -197q101 67 101 198v160q0 78 -24.5 126.5t-60.5 48.5q-35 0 -59.5 -43t-25.5 -111v-182z" /> | ||
1449 | <glyph glyph-name="uni04AA" unicode="Ҫ" horiz-adv-x="1344" | ||
1450 | d="M1288 493q-7 -152 -82 -268.5t-210.5 -180.5t-309.5 -64q-287 0 -452 187t-165 528v72q0 214 74.5 374.5t214.5 248t324 87.5q265 0 426 -139.5t183 -384.5h-350q-4 133 -67 191t-192 58q-131 0 -192 -98t-64 -313v-103q0 -233 58.5 -333t201.5 -100q121 0 185 57t68 181 | ||
1451 | h349zM855 -488h-337v579h337v-579z" /> | ||
1452 | <glyph glyph-name="uni04AB" unicode="ҫ" horiz-adv-x="1064" | ||
1453 | d="M552 240q71 0 110 38.5t38 107.5h316q0 -178 -127.5 -292t-328.5 -114q-236 0 -372 148t-136 410v14q0 164 60.5 289.5t174.5 193t270 67.5q211 0 335 -117t124 -317h-316q0 84 -41 129t-110 45q-131 0 -153 -167q-7 -53 -7 -146q0 -163 39 -226t124 -63zM735 -488h-337 | ||
1454 | v579h337v-579z" /> | ||
1455 | <glyph glyph-name="uni04AC" unicode="Ҭ" horiz-adv-x="1291" | ||
1456 | d="M1253 1185h-437v-1185h-351v1185h-429v271h1217v-271zM1016 -356h-337v579h337v-579z" /> | ||
1457 | <glyph glyph-name="uni04AD" unicode="ҭ" horiz-adv-x="1073" | ||
1458 | d="M1042 824h-341v-824h-339v824h-336v258h1016v-258zM947 -356h-337v579h337v-579z" /> | ||
1459 | <glyph glyph-name="uni04AE" unicode="Ү" horiz-adv-x="1286" | ||
1460 | d="M643 824l268 632h379l-469 -933v-523h-356v523l-468 933h377z" /> | ||
1461 | <glyph glyph-name="uni04AF" unicode="ү" horiz-adv-x="1053" | ||
1462 | d="M528 371l164 711h355l-352 -1082h-4v-417h-337v417h-2l-352 1082h356z" /> | ||
1463 | <glyph glyph-name="uni04B0" unicode="Ұ" horiz-adv-x="1286" | ||
1464 | d="M1019 513h-198v-513h-356v513h-176v191h85l-377 752h377l269 -632l268 632h379l-378 -752h107v-191z" /> | ||
1465 | <glyph glyph-name="uni04B1" unicode="ұ" horiz-adv-x="1053" | ||
1466 | d="M897 20h-196l-6 -20h-4v-417h-337v417h-2l-7 20h-178v191h116l-283 871h356l172 -711l164 711h355l-284 -871h134v-191z" /> | ||
1467 | <glyph glyph-name="uni04B2" unicode="Ҳ" horiz-adv-x="1307" | ||
1468 | d="M653 972l238 484h401l-407 -722l418 -734h-405l-245 493l-245 -493h-404l417 734l-406 722h400zM1385 -356h-337v579h337v-579z" /> | ||
1469 | <glyph glyph-name="uni04B3" unicode="ҳ" horiz-adv-x="1054" | ||
1470 | d="M533 784l157 298h350l-285 -527l299 -555h-352l-170 320l-167 -320h-354l300 555l-284 527h354zM1115 -356h-337v579h337v-579z" /> | ||
1471 | <glyph glyph-name="uni04B4" unicode="Ҵ" horiz-adv-x="1824" | ||
1472 | d="M334 1195h-311v261h964v-261h-303v-925h523v1186h352v-1189h223l-20 -618h-332v351h-1096v1195z" /> | ||
1473 | <glyph glyph-name="uni04B5" unicode="ҵ" horiz-adv-x="1421" | ||
1474 | d="M247 821h-195v261h707v-261h-175v-561h298v822h338v-824h178l-20 -579h-317v321h-814v821z" /> | ||
1475 | <glyph glyph-name="uni04B6" unicode="Ҷ" horiz-adv-x="1431" | ||
1476 | d="M1323 1456v-1456h-350v538l-103 -13l-129 -8q-294 0 -450 127.5t-158 361.5v450h351v-445q0 -119 57.5 -171.5t199.5 -52.5l30 1q123 6 202 19v649h350zM1562 -356h-337v579h337v-579z" /> | ||
1477 | <glyph glyph-name="uni04B7" unicode="ҷ" horiz-adv-x="1142" | ||
1478 | d="M1056 0h-339v325q-58 -10 -100 -10q-267 0 -401.5 103.5t-135.5 310.5v353h337v-356q1 -88 42 -119.5t158 -31.5q49 0 100 9v498h339v-1082zM1302 -356h-337v579h337v-579z" /> | ||
1479 | <glyph glyph-name="uni04B8" unicode="Ҹ" horiz-adv-x="1391" | ||
1480 | d="M441 1456v-443q0 -102 37.5 -151.5t114.5 -65.5v279h171v-286q96 5 166 18v649h351v-1456h-351v538q-90 -14 -166 -18v-230h-171v231q-239 21 -370 145t-133 341v449h351z" /> | ||
1481 | <glyph glyph-name="uni04B9" unicode="ҹ" horiz-adv-x="1155" | ||
1482 | d="M1067 0h-338v325l-64 -8v-157h-171v162q-396 49 -402 399v361h337v-364q3 -99 65 -125v248h171v-265l64 9v497h338v-1082z" /> | ||
1483 | <glyph glyph-name="uni04BA" unicode="Һ" horiz-adv-x="1450" | ||
1484 | d="M138 0v1456h350v-538q130 21 232 21q294 0 450 -127.5t158 -362.5v-449h-351v445q0 119 -57.5 171.5t-199.5 52.5l-30 -1q-125 -6 -202 -19v-649h-350z" /> | ||
1485 | <glyph glyph-name="uni04BB" unicode="һ" horiz-adv-x="1156" | ||
1486 | d="M424 966q108 136 276 136q179 0 270 -106t93 -313v-683h-338v675q0 86 -35 126.5t-119 40.5q-104 0 -147 -66v-776h-337v1536h337v-570z" /> | ||
1487 | <glyph glyph-name="uni04BC" unicode="Ҽ" horiz-adv-x="1527" | ||
1488 | d="M930 -23q-326 0 -507.5 167t-181.5 471v20q-153 28 -236.5 144.5t-83.5 302.5h219q0 -153 101 -202q3 169 84.5 306.5t224.5 213.5t315 75q274 0 426.5 -183t152.5 -515v-172h-853q0 -166 86.5 -248.5t252.5 -82.5q203 0 383 57l49 -282q-58 -29 -182 -50.5t-250 -21.5z | ||
1489 | M865 1177q-126 0 -199 -81.5t-75 -213.5h503v31q0 126 -59 195t-170 69z" /> | ||
1490 | <glyph glyph-name="uni04BD" unicode="ҽ" horiz-adv-x="1229" | ||
1491 | d="M788 -20q-152 0 -273.5 58.5t-194.5 165.5t-86 243q-152 28 -234.5 136.5t-82.5 280.5h193q0 -161 129 -207q30 208 165.5 326.5t347.5 118.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t157 -52q161 0 251 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5 | ||
1492 | zM750 842q-148 0 -176 -196h340v26q1 81 -41.5 125.5t-122.5 44.5z" /> | ||
1493 | <glyph glyph-name="uni04BE" unicode="Ҿ" horiz-adv-x="1527" | ||
1494 | d="M930 -23q-326 0 -507.5 167t-181.5 471v20q-153 28 -236.5 144.5t-83.5 302.5h219q0 -153 101 -202q3 169 84.5 306.5t224.5 213.5t315 75q274 0 426.5 -183t152.5 -515v-172h-853q0 -166 86.5 -248.5t252.5 -82.5q203 0 383 57l49 -282q-58 -29 -182 -50.5t-250 -21.5z | ||
1495 | M865 1177q-126 0 -199 -81.5t-75 -213.5h503v31q0 126 -59 195t-170 69zM1092 -488h-337v579h337v-579z" /> | ||
1496 | <glyph glyph-name="uni04BF" unicode="ҿ" horiz-adv-x="1229" | ||
1497 | d="M788 -20q-152 0 -273.5 58.5t-194.5 165.5t-86 243q-152 28 -234.5 136.5t-82.5 280.5h193q0 -161 129 -207q30 208 165.5 326.5t347.5 118.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t157 -52q161 0 251 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5 | ||
1498 | zM750 842q-148 0 -176 -196h340v26q1 81 -41.5 125.5t-122.5 44.5zM890 -475h-337v579h337v-579z" /> | ||
1499 | <glyph glyph-name="uni04C0" unicode="Ӏ" horiz-adv-x="618" | ||
1500 | d="M484 0h-350v1456h350v-1456z" /> | ||
1501 | <glyph glyph-name="uni04C1" unicode="Ӂ" horiz-adv-x="2136" | ||
1502 | d="M1435 569h-178v-569h-349v569h-181l-280 -569h-436l439 795l-426 661h443l298 -571h143v571h349v-571h142l285 571h442l-415 -659l430 -797h-438zM1441 1848q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z | ||
1503 | " /> | ||
1504 | <glyph glyph-name="uni04C2" unicode="ӂ" horiz-adv-x="1847" | ||
1505 | d="M1225 378h-128v-378h-337v378h-125l-185 -378h-400l322 579l-335 503h421l205 -389h97v389h337v-389h100l206 389h421l-337 -505l10 5l324 -582h-412zM1313 1538q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231 | ||
1506 | z" /> | ||
1507 | <glyph glyph-name="uni04C3" unicode="Ӄ" horiz-adv-x="1348" | ||
1508 | d="M867 823q221 -37 340.5 -186t119.5 -395q0 -181 -75 -326t-207 -215t-307 -70l1 255q237 0 237 334q2 171 -64 258.5t-193 87.5h-256v-566h-352v1456h352v-572h87l277 572h443z" /> | ||
1509 | <glyph glyph-name="uni04C4" unicode="ӄ" horiz-adv-x="1195" | ||
1510 | d="M842 591q153 -56 230 -169t77 -274q3 -90 -41 -182t-127 -165.5t-196 -119.5l-158 207q102 60 143 122t41 138q2 103 -58.5 162.5t-179.5 67.5h-118v-378h-337v1082h337v-389h90l179 389h432z" /> | ||
1511 | <glyph glyph-name="uni04C5" unicode="Ӆ" horiz-adv-x="1444" | ||
1512 | d="M1335 1456v-1456h-351v1185h-327l-24 -489q-15 -253 -70 -404t-156.5 -220.5t-276.5 -71.5h-94v270l49 5q105 15 152 128.5t61 382.5l25 670h1012zM1364 -426l-170 80l34 68q70 130 73 248v250h270l-1 -217q-1 -115 -59 -234t-147 -195z" /> | ||
1513 | <glyph glyph-name="uni04C6" unicode="ӆ" horiz-adv-x="1150" | ||
1514 | d="M1061 1082v-1082h-337v822h-202l-18 -331q-19 -246 -111 -368t-273 -123h-106l-4 258l35 4q67 8 99.5 89.5t41.5 246.5l21 484h854zM1095 -426l-170 80l34 68q70 130 73 248v250h270l-1 -217q-1 -115 -59 -234t-147 -195z" /> | ||
1515 | <glyph glyph-name="uni04C7" unicode="Ӈ" horiz-adv-x="1441" | ||
1516 | d="M459 1456v-606h523v606h351v-1460q0 -209 -109.5 -321t-307.5 -112q-88 0 -165 17l14 265q48 -11 100 -11q117 0 117 161v585h-523v-580h-351v1456h351z" /> | ||
1517 | <glyph glyph-name="uni04C8" unicode="ӈ" horiz-adv-x="1151" | ||
1518 | d="M427 1082v-422h295v422h338v-1094q0 -205 -107.5 -315t-301.5 -110q-88 0 -161 17l14 255q52 -12 101 -12q117 0 117 165v413h-295v-401h-337v1082h337z" /> | ||
1519 | <glyph glyph-name="uni04C9" unicode="Ӊ" horiz-adv-x="1439" | ||
1520 | d="M1327 0h-349v608h-517v-608h-351v1456h351v-578h517v578h349v-1456zM1359 -426l-170 80l34 68q70 130 73 248v250h270l-1 -217q-1 -115 -59 -234t-147 -195z" /> | ||
1521 | <glyph glyph-name="uni04CA" unicode="ӊ" horiz-adv-x="1148" | ||
1522 | d="M1058 0h-338v401h-295v-401h-337v1082h337v-422h295v422h338v-1082zM1092 -426l-170 80l34 68q70 130 73 248v250h270l-1 -217q-1 -115 -59 -234t-147 -195z" /> | ||
1523 | <glyph glyph-name="uni04CB" unicode="Ӌ" horiz-adv-x="1431" | ||
1524 | d="M1323 1456v-1456h-350v538l-103 -13l-129 -8q-294 0 -450 127.5t-158 361.5v450h351v-445q0 -119 57.5 -171.5t199.5 -52.5l30 1q123 6 202 19v649h350zM1059 -356h-337v579h337v-579z" /> | ||
1525 | <glyph glyph-name="uni04CC" unicode="ӌ" horiz-adv-x="1142" | ||
1526 | d="M1056 0h-339v325q-58 -10 -100 -10q-267 0 -401.5 103.5t-135.5 310.5v353h337v-356q1 -88 42 -119.5t158 -31.5q49 0 100 9v498h339v-1082zM799 -356h-337v579h337v-579z" /> | ||
1527 | <glyph glyph-name="uni04CD" unicode="Ӎ" horiz-adv-x="1795" | ||
1528 | d="M571 1456l325 -1013l324 1013h462v-1456h-352v340l34 696l-352 -1036h-232l-353 1037l34 -697v-340h-351v1456h461zM1714 -426l-170 80l34 68q70 130 73 248v250h270l-1 -217q-1 -115 -59 -234t-147 -195z" /> | ||
1529 | <glyph glyph-name="uni04CE" unicode="ӎ" horiz-adv-x="1572" | ||
1530 | d="M772 372l245 710h424v-1082h-338v600l-218 -600h-224l-206 568v-568h-338v1082h414zM1475 -426l-170 80l34 68q70 130 73 248v250h270l-1 -217q-1 -115 -59 -234t-147 -195z" /> | ||
1531 | <glyph glyph-name="uni04CF" unicode="ӏ" horiz-adv-x="618" | ||
1532 | d="M484 0h-350v1456h350v-1456z" /> | ||
1533 | <glyph glyph-name="uni04D0" unicode="Ӑ" | ||
1534 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM1070 1848q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
1535 | <glyph glyph-name="uni04D1" unicode="ӑ" horiz-adv-x="1087" | ||
1536 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1537 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM905 1538q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
1538 | <glyph glyph-name="uni04D2" unicode="Ӓ" | ||
1539 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM436 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM955 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39 | ||
1540 | t-43.5 94t43.5 94t107.5 39z" /> | ||
1541 | <glyph glyph-name="uni04D3" unicode="ӓ" horiz-adv-x="1087" | ||
1542 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1543 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM271 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM790 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1544 | <glyph glyph-name="uni04D4" unicode="Ӕ" horiz-adv-x="1926" | ||
1545 | d="M1851 0h-897l-14 329h-382l-152 -329h-390l735 1456h1039v-264h-549l13 -316h455v-264h-444l15 -348h571v-264zM683 599h246l-21 486z" /> | ||
1546 | <glyph glyph-name="uni04D5" unicode="ӕ" horiz-adv-x="1730" | ||
1547 | d="M1238 -20q-240 0 -380 134q-66 -66 -164 -100t-210 -34q-199 0 -311 91.5t-112 252.5q0 158 129.5 244t384.5 87h142v46q0 66 -34 103.5t-99 37.5q-72 0 -110 -29.5t-38 -72.5l-337 19q0 151 134 247t355 96q202 0 319 -91q126 93 320 91q212 0 335 -133t123 -360v-174 | ||
1548 | h-639q14 -98 75 -146.5t163 -48.5q126 0 223 40l62 27l81 -206q-67 -52 -181.5 -86.5t-230.5 -34.5zM548 212q89 0 169 63v176h-139q-78 -1 -129 -37t-51 -94q0 -108 150 -108zM1227 842q-82 0 -125.5 -48.5t-54.5 -147.5h309v26q0 81 -33 125.5t-96 44.5z" /> | ||
1549 | <glyph glyph-name="uni04D6" unicode="Ӗ" horiz-adv-x="1146" | ||
1550 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261zM1014 1848q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
1551 | <glyph glyph-name="uni04D7" unicode="ӗ" horiz-adv-x="1115" | ||
1552 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
1553 | t-123 44.5zM904 1539q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231z" /> | ||
1554 | <glyph glyph-name="uni04D8" unicode="Ә" horiz-adv-x="1430" | ||
1555 | d="M614 1477q343 0 536 -177.5t193 -495.5v-164q0 -188 -82.5 -340.5t-229 -237t-324.5 -83.5q-303 0 -470.5 183t-167.5 515v170h923q-10 165 -105.5 248.5t-272.5 83.5q-214 0 -404 -57l-49 282l19 7q187 66 434 66zM707 276q116 0 190 76t92 219h-571v-31q0 -124 74 -194 | ||
1556 | t215 -70z" /> | ||
1557 | <glyph glyph-name="uni04D9" unicode="ә" horiz-adv-x="1083" | ||
1558 | d="M511 1103q232 0 378.5 -146.5t146.5 -388.5v-28q0 -256 -134.5 -408.5t-365.5 -150.5q-220 0 -345 131.5t-125 363.5v172h626q-18 91 -77 143t-150 52q-127 0 -222 -36l-76 -31l-80 206q71 53 185.5 87t238.5 34zM536 241q134 0 157 196h-298v-26q0 -170 141 -170z" /> | ||
1559 | <glyph glyph-name="uni04DA" unicode="Ӛ" horiz-adv-x="1430" | ||
1560 | d="M614 1477q343 0 536 -177.5t193 -495.5v-164q0 -188 -82.5 -340.5t-229 -237t-324.5 -83.5q-303 0 -470.5 183t-167.5 515v170h923q-10 165 -105.5 248.5t-272.5 83.5q-214 0 -404 -57l-49 282l19 7q187 66 434 66zM707 276q116 0 190 76t92 219h-571v-31q0 -124 74 -194 | ||
1561 | t215 -70zM407 1761q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM926 1761q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1562 | <glyph glyph-name="uni04DB" unicode="ӛ" horiz-adv-x="1083" | ||
1563 | d="M511 1103q232 0 378.5 -146.5t146.5 -388.5v-28q0 -256 -134.5 -408.5t-365.5 -150.5q-220 0 -345 131.5t-125 363.5v172h626q-18 91 -77 143t-150 52q-127 0 -222 -36l-76 -31l-80 206q71 53 185.5 87t238.5 34zM536 241q134 0 157 196h-298v-26q0 -170 141 -170z | ||
1564 | M277 1499q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM796 1499q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1565 | <glyph glyph-name="uni04DC" unicode="Ӝ" horiz-adv-x="2136" | ||
1566 | d="M1435 569h-178v-569h-349v569h-181l-280 -569h-436l439 795l-426 661h443l298 -571h143v571h349v-571h142l285 571h442l-415 -659l430 -797h-438zM807 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM1326 1808 | ||
1567 | q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1568 | <glyph glyph-name="uni04DD" unicode="ӝ" horiz-adv-x="1847" | ||
1569 | d="M1225 378h-128v-378h-337v378h-125l-185 -378h-400l322 579l-335 503h421l205 -389h97v389h337v-389h100l206 389h421l-337 -505l10 5l324 -582h-412zM679 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM1198 1498 | ||
1570 | q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1571 | <glyph glyph-name="uni04DE" unicode="Ӟ" horiz-adv-x="1289" | ||
1572 | d="M819 1052q0 69 -53.5 111t-144.5 42q-85 0 -136.5 -40.5t-51.5 -106.5h-350q0 120 68.5 215t193.5 148.5t276 53.5q260 0 404.5 -109t144.5 -305q0 -100 -58.5 -182.5t-161.5 -130.5q118 -42 180.5 -127.5t62.5 -212.5q0 -196 -156 -311.5t-416 -115.5q-241 0 -400 113.5 | ||
1573 | t-159 309.5h352q0 -65 58 -109.5t149 -44.5q98 0 159 46t61 120q0 108 -52 152.5t-152 44.5h-187v260h199q170 5 170 179zM363 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM882 1808q63 0 106.5 -39t43.5 -94t-43.5 -94 | ||
1574 | t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1575 | <glyph glyph-name="uni04DF" unicode="ӟ" horiz-adv-x="1059" | ||
1576 | d="M655 755q0 106 -112 106q-129 0 -129 -93h-337q0 147 123.5 240t320.5 93q219 0 345 -82.5t126 -232.5q0 -72 -43.5 -132.5t-122.5 -96.5q185 -65 185 -251q0 -148 -133.5 -237t-356.5 -89q-203 0 -332 92.5t-129 247.5h337q0 -41 34 -70.5t113 -29.5q64 0 97.5 31 | ||
1577 | t33.5 85q0 116 -129 120h-151v196h137q123 0 123 103zM277 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM796 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1578 | <glyph glyph-name="uni04E0" unicode="Ӡ" horiz-adv-x="1179" | ||
1579 | d="M738 1185h-597v271h994l1 -225l-339 -358q171 -41 263 -158.5t92 -306.5q0 -130 -69.5 -228t-195.5 -149.5t-290 -51.5q-151 0 -273 52t-189 147t-67 226h351q0 -70 49.5 -112.5t128.5 -42.5q93 0 149 47t56 120q0 141 -65 201.5t-190 60.5h-127v198z" /> | ||
1580 | <glyph glyph-name="uni04E1" unicode="ӡ" horiz-adv-x="1181" | ||
1581 | d="M745 822h-614v260h995l1 -216l-345 -368q175 -38 269.5 -156t94.5 -309q0 -195 -150 -311.5t-400 -116.5q-150 0 -272 52.5t-187.5 147.5t-65.5 224h338q0 -70 51 -117t136 -47q96 0 154.5 49.5t58.5 126.5q0 133 -61.5 198.5t-193.5 66.5h-134v193z" /> | ||
1582 | <glyph glyph-name="uni04E2" unicode="Ӣ" horiz-adv-x="1419" | ||
1583 | d="M964 1456h351v-1456h-351v918l-523 -918h-351v1456h351v-919zM1071 1589h-734v173h734v-173z" /> | ||
1584 | <glyph glyph-name="uni04E3" unicode="ӣ" horiz-adv-x="1148" | ||
1585 | d="M724 1082h338v-1082h-338v630l-297 -630h-339v1082h339v-628zM949 1280h-734v173h734v-173z" /> | ||
1586 | <glyph glyph-name="uni04E4" unicode="Ӥ" horiz-adv-x="1419" | ||
1587 | d="M964 1456h351v-1456h-351v918l-523 -918h-351v1456h351v-919zM441 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM960 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39 | ||
1588 | z" /> | ||
1589 | <glyph glyph-name="uni04E5" unicode="ӥ" horiz-adv-x="1148" | ||
1590 | d="M724 1082h338v-1082h-338v630l-297 -630h-339v1082h339v-628zM319 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM838 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39 | ||
1591 | z" /> | ||
1592 | <glyph glyph-name="uni04E6" unicode="Ӧ" horiz-adv-x="1414" | ||
1593 | d="M1343 698q0 -213 -79 -377t-224.5 -252.5t-331.5 -88.5t-330 85.5t-224.5 244.5t-84.5 365v82q0 214 78.5 377.5t225 252.5t333.5 89q185 0 330 -88t225.5 -250.5t81.5 -372.5v-67zM986 759q0 217 -72.5 329.5t-207.5 112.5q-264 0 -279 -396l-1 -107q0 -214 71 -329 | ||
1594 | t211 -115q133 0 205 113t73 325v67zM441 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM960 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1595 | <glyph glyph-name="uni04E7" unicode="ӧ" horiz-adv-x="1150" | ||
1596 | d="M52 551q0 162 63 288.5t181 194.5t277 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-231 0 -371 138.5t-151 375.5zM389 530q0 -150 47 -220t139 -70q180 0 184 277v34q0 291 -186 291q-169 0 -183 -251zM313 1498q63 0 106.5 -39t43.5 -94 | ||
1597 | t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM832 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1598 | <glyph glyph-name="uni04E8" unicode="Ө" horiz-adv-x="1416" | ||
1599 | d="M1358 698q0 -214 -79 -377.5t-224 -252t-332 -88.5q-186 0 -330 86t-224.5 246t-83.5 368v77q0 215 78.5 378t224 252t333.5 89q185 0 331 -88.5t225.5 -250.5t80.5 -373v-66zM723 254q125 0 196.5 99.5t80.5 287.5h-557q9 -188 79 -287.5t201 -99.5zM721 1201 | ||
1600 | q-255 0 -277 -369h555q-12 182 -83.5 275.5t-194.5 93.5z" /> | ||
1601 | <glyph glyph-name="uni04E9" unicode="ө" horiz-adv-x="1151" | ||
1602 | d="M50 551q0 162 63 288.5t180.5 194.5t277.5 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-232 0 -371.5 138.5t-150.5 375.5zM571 842q-156 0 -180 -212h362q-24 212 -182 212zM573 240q152 0 179 199h-360q27 -199 181 -199z" /> | ||
1603 | <glyph glyph-name="uni04EA" unicode="Ӫ" horiz-adv-x="1416" | ||
1604 | d="M1358 698q0 -214 -79 -377.5t-224 -252t-332 -88.5q-186 0 -330 86t-224.5 246t-83.5 368v77q0 215 78.5 378t224 252t333.5 89q185 0 331 -88.5t225.5 -250.5t80.5 -373v-66zM723 254q125 0 196.5 99.5t80.5 287.5h-557q9 -188 79 -287.5t201 -99.5zM721 1201 | ||
1605 | q-255 0 -277 -369h555q-12 182 -83.5 275.5t-194.5 93.5zM463 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM982 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1606 | <glyph glyph-name="uni04EB" unicode="ӫ" horiz-adv-x="1151" | ||
1607 | d="M50 551q0 162 63 288.5t180.5 194.5t277.5 68q243 0 383 -150.5t140 -409.5v-12q0 -253 -140.5 -401.5t-380.5 -148.5q-232 0 -371.5 138.5t-150.5 375.5zM571 842q-156 0 -180 -212h362q-24 212 -182 212zM573 240q152 0 179 199h-360q27 -199 181 -199zM308 1498 | ||
1608 | q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM827 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1609 | <glyph glyph-name="uni04EC" unicode="Ӭ" horiz-adv-x="1302" | ||
1610 | d="M367 492q8 -244 252 -244q125 0 188.5 79t75.5 266h-402v271h402q-14 180 -79 260.5t-180 80.5q-129 0 -192.5 -59.5t-67.5 -193.5h-349q22 245 183 384.5t426 139.5q182 0 321.5 -86t215 -247.5t75.5 -376.5v-79q0 -334 -165 -521t-452 -187q-173 0 -307.5 63.5 | ||
1611 | t-210.5 180t-84 269.5h350zM372 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM891 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1612 | <glyph glyph-name="uni04ED" unicode="ӭ" horiz-adv-x="1044" | ||
1613 | d="M497 842q-136 0 -136 -145h-316q0 177 125.5 291t326.5 114q237 0 375.5 -148t138.5 -411v-14q0 -252 -138 -400.5t-374 -148.5q-208 0 -331 115.5t-123 318.5h316q0 -81 35.5 -127.5t102.5 -46.5q151 0 170 211h-238v183h238q-18 208 -172 208zM249 1498q63 0 106.5 -39 | ||
1614 | t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM768 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1615 | <glyph glyph-name="uni04EE" unicode="Ӯ" horiz-adv-x="1295" | ||
1616 | d="M675 824v-1l241 633h370l-490 -1155q-79 -175 -177.5 -246.5t-230.5 -75.5h-71l-54 2l-6 272q12 -4 70 -4q80 0 120.5 27.5t65.5 106.5l17 48l-526 1025h373zM1047 1589h-734v173h734v-173z" /> | ||
1617 | <glyph glyph-name="uni04EF" unicode="ӯ" horiz-adv-x="1061" | ||
1618 | d="M527 472l180 610h361l-441 -1263l-19 -46q-94 -210 -332 -210q-66 0 -139 20v241h44q71 0 108.5 20.5t55.5 73.5l27 72l-376 1092h360zM895 1280h-734v173h734v-173z" /> | ||
1619 | <glyph glyph-name="uni04F0" unicode="Ӱ" horiz-adv-x="1295" | ||
1620 | d="M675 824v-1l241 633h370l-490 -1155q-79 -175 -177.5 -246.5t-230.5 -75.5h-71l-54 2l-6 272q12 -4 70 -4q80 0 120.5 27.5t65.5 106.5l17 48l-526 1025h373zM417 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z | ||
1621 | M936 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1622 | <glyph glyph-name="uni04F1" unicode="ӱ" horiz-adv-x="1061" | ||
1623 | d="M527 472l180 610h361l-441 -1263l-19 -46q-94 -210 -332 -210q-66 0 -139 20v241h44q71 0 108.5 20.5t55.5 73.5l27 72l-376 1092h360zM265 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM784 1498q63 0 106.5 -39 | ||
1624 | t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1625 | <glyph glyph-name="uni04F2" unicode="Ӳ" horiz-adv-x="1295" | ||
1626 | d="M675 824v-1l241 633h370l-490 -1155q-79 -175 -177.5 -246.5t-230.5 -75.5h-71l-54 2l-6 272q12 -4 70 -4q80 0 120.5 27.5t65.5 106.5l17 48l-526 1025h373zM962 1845h278l-266 -300h-237zM546 1845h280l-238 -300h-240z" /> | ||
1627 | <glyph glyph-name="uni04F3" unicode="ӳ" horiz-adv-x="1061" | ||
1628 | d="M527 472l180 610h361l-441 -1263l-19 -46q-94 -210 -332 -210q-66 0 -139 20v241h44q71 0 108.5 20.5t55.5 73.5l27 72l-376 1092h360zM810 1535h278l-266 -300h-237zM394 1535h280l-238 -300h-240z" /> | ||
1629 | <glyph glyph-name="uni04F4" unicode="Ӵ" horiz-adv-x="1431" | ||
1630 | d="M1323 1456v-1456h-350v538l-103 -13l-129 -8q-294 0 -450 127.5t-158 361.5v450h351v-445q0 -119 57.5 -171.5t199.5 -52.5l30 1q123 6 202 19v649h350zM524 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM1043 1808 | ||
1631 | q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1632 | <glyph glyph-name="uni04F5" unicode="ӵ" horiz-adv-x="1142" | ||
1633 | d="M1056 0h-339v325q-58 -10 -100 -10q-267 0 -401.5 103.5t-135.5 310.5v353h337v-356q1 -88 42 -119.5t158 -31.5q49 0 100 9v498h339v-1082zM339 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM858 1498 | ||
1634 | q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1635 | <glyph glyph-name="uni04F6" unicode="Ӷ" horiz-adv-x="1142" | ||
1636 | d="M1092 1185h-633v-1185h-351v1456h984v-271zM699 -356h-337v579h337v-579z" /> | ||
1637 | <glyph glyph-name="uni04F7" unicode="ӷ" horiz-adv-x="857" | ||
1638 | d="M852 822h-426v-822h-338v1082h764v-260zM672 -356h-337v579h337v-579z" /> | ||
1639 | <glyph glyph-name="uni04F8" unicode="Ӹ" horiz-adv-x="1785" | ||
1640 | d="M462 955h181q173 0 306 -59t204.5 -166.5t71.5 -246.5q0 -215 -159.5 -349t-428.5 -134h-527v1456h352v-501zM462 685v-415h180q107 0 169.5 60t62.5 155q0 90 -62 145t-172 55h-178zM1680 0h-350v1456h350v-1456zM644 1808q63 0 106.5 -39t43.5 -94t-43.5 -94 | ||
1641 | t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM1163 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1642 | <glyph glyph-name="uni04F9" unicode="ӹ" horiz-adv-x="1746" | ||
1643 | d="M456 785h173q150 0 264 -49t174 -139t60 -209q0 -175 -135.5 -281.5t-369.5 -106.5h-505v1082h339v-297zM456 526v-268h171q77 0 120.5 35.5t43.5 96.5q0 60 -39 98t-125 38h-171zM1626 0h-339v1082h339v-1082zM628 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39 | ||
1644 | q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM1147 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1645 | <glyph glyph-name="uni04FA" unicode="Ӻ" horiz-adv-x="1237" | ||
1646 | d="M1187 1185h-633v-1185h-351v1456h984v-271zM752 651h-730v191h730v-191zM867 297v-309q0 -205 -107.5 -315t-302.5 -110q-86 0 -159 17l14 255q52 -12 100 -12q116 0 116 164v310h339z" /> | ||
1647 | <glyph glyph-name="uni04FB" unicode="ӻ" horiz-adv-x="875" | ||
1648 | d="M929 822h-426v-822h-338v1082h764v-260zM728 475h-730v191h730v-191zM769 288v-309q0 -205 -107.5 -315t-302.5 -110q-86 0 -159 17l14 255q52 -12 100 -12q116 0 116 164v310h339z" /> | ||
1649 | <glyph glyph-name="uni04FC" unicode="Ӽ" horiz-adv-x="1307" | ||
1650 | d="M653 972l238 484h401l-407 -722l418 -734h-405l-245 493l-245 -493h-404l417 734l-406 722h400zM1478 297v-309q0 -205 -107.5 -315t-302.5 -110q-86 0 -159 17l14 255q52 -12 100 -12q116 0 116 164v310h339z" /> | ||
1651 | <glyph glyph-name="uni04FD" unicode="ӽ" horiz-adv-x="1054" | ||
1652 | d="M533 784l157 298h350l-285 -527l299 -555h-352l-170 320l-167 -320h-354l300 555l-284 527h354zM1208 297v-309q0 -205 -107.5 -315t-302.5 -110q-86 0 -159 17l14 255q52 -12 100 -12q116 0 116 164v310h339z" /> | ||
1653 | <glyph glyph-name="uni04FE" unicode="Ӿ" horiz-adv-x="1307" | ||
1654 | d="M1022 651h-90l371 -651h-405l-245 493l-245 -493h-404l370 651h-82v191h68l-345 614h400l238 -484l238 484h401l-346 -614h76v-191z" /> | ||
1655 | <glyph glyph-name="uni04FF" unicode="ӿ" horiz-adv-x="1054" | ||
1656 | d="M905 460h-99l248 -460h-352l-170 320l-167 -320h-354l248 460h-84v191h84l-232 431h354l152 -298l157 298h350l-233 -431h98v-191z" /> | ||
1657 | <glyph glyph-name="uni0500" unicode="Ԁ" horiz-adv-x="1276" | ||
1658 | d="M829 986v470h351v-1456h-533q-170 0 -303 62.5t-206 175.5t-73 255q0 140 72 252.5t202 175.5t296 65h194zM829 270v446h-182q-103 0 -166.5 -63t-63.5 -158q0 -99 63 -161.5t165 -63.5h184z" /> | ||
1659 | <glyph glyph-name="uni0501" unicode="ԁ" horiz-adv-x="1152" | ||
1660 | d="M52 549q0 257 111 405t310 148q145 0 244 -114v548h338v-1536h-303l-17 116q-104 -136 -264 -136q-193 0 -306 148t-113 421zM389 528q0 -288 168 -288q112 0 160 94v412q-46 96 -158 96q-156 0 -169 -252z" /> | ||
1661 | <glyph glyph-name="uni0502" unicode="Ԃ" horiz-adv-x="1941" | ||
1662 | d="M710 0q-170 0 -303 62.5t-205.5 175t-72.5 255.5q0 141 72 253.5t202 175t296 64.5h192v470h351v-1185h61q160 3 175 264q2 78 -14 215.5t-41 211.5l-5 14h343q27 -81 48 -221.5t19 -219.5q-5 -256 -141 -395.5t-382 -139.5h-595zM891 270v446h-181q-103 0 -167 -62.5 | ||
1663 | t-64 -158.5q0 -100 64 -162.5t169 -62.5h179z" /> | ||
1664 | <glyph glyph-name="uni0503" unicode="ԃ" horiz-adv-x="1739" | ||
1665 | d="M86 539q0 257 112.5 410t309.5 153q134 0 227 -112v570h337v-1171q0 -68 27 -107t70 -39q81 2 124 78t47 208q4 187 -61 403h331l23 -89q47 -183 44 -314q-2 -167 -67 -292t-180.5 -191.5t-260.5 -66.5q-280 -4 -379 183q-103 -183 -284 -183q-195 0 -307.5 146 | ||
1666 | t-112.5 400v14zM735 777q-53 65 -141 65q-84 0 -127 -78.5t-43 -245.5q0 -145 42.5 -212t125.5 -67q99 0 152 67q-8 37 -9 81v390z" /> | ||
1667 | <glyph glyph-name="uni0504" unicode="Ԅ" horiz-adv-x="1608" | ||
1668 | d="M176 583v275h210q126 0 181.5 45.5t55.5 138.5q0 134 -201 139h-351v275h350q268 -3 410 -109t142 -307q0 -239 -309 -337q298 -53 305 -297v-80q-1 -30 11 -51.5t33 -21.5q81 2 123 75t47 201q4 187 -61 403h344q26 -98 47.5 -199t19.5 -204q-2 -168 -72 -293 | ||
1669 | t-192.5 -191t-279.5 -66q-352 -8 -371 347v68q-1 88 -49.5 138.5t-127.5 50.5h-265z" /> | ||
1670 | <glyph glyph-name="uni0505" unicode="ԅ" horiz-adv-x="1311" | ||
1671 | d="M811 276q-2 -101 61 -101q50 2 78 66t31 178q4 153 -60 319h330q45 -134 57 -198t11 -121q-4 -207 -120 -326.5t-305 -119.5q-207 -4 -308 54.5t-113 186.5v72q0 83 -58 87h-285l-2 243h192q107 3 107 94q0 110 -118 110h-260l-6 262h281q207 -3 324 -86t117 -237 | ||
1672 | q0 -152 -150 -226q192 -45 196 -215v-42z" /> | ||
1673 | <glyph glyph-name="uni0506" unicode="Ԇ" horiz-adv-x="1254" | ||
1674 | d="M109 558l-2 260h277q214 0 214 180q0 90 -55 144t-158 54h-318l-9 260h323q259 0 407 -116.5t148 -320.5q0 -223 -235 -326q130 -37 190 -122t61 -222v-87h259l-1 -217q-1 -115 -59 -234t-147 -195l-170 80l56 115q44 96 49 189h-260q-59 46 -64 242v100q0 213 -211 216 | ||
1675 | h-295z" /> | ||
1676 | <glyph glyph-name="uni0507" unicode="ԇ" horiz-adv-x="1206" | ||
1677 | d="M961 -395l-171 80l60 122q42 94 46 193h-291q-12 21 -12 215q0 146 -166 151h-278l-3 217h276q69 0 109 31t40 83q0 53 -42.5 90t-107.5 37h-306l-13 258h315q227 0 360 -97.5t133 -259.5q0 -158 -152 -247q156 -62 171 -227h238l-1 -217q-1 -113 -57.5 -232t-147.5 -197 | ||
1678 | z" /> | ||
1679 | <glyph glyph-name="uni0508" unicode="Ԉ" horiz-adv-x="1971" | ||
1680 | d="M983 1181h-300l-25 -485q-15 -253 -69 -403t-156 -220.5t-278 -72.5h-93v270l49 5q105 15 152 128.5t61 382.5l24 670h985v-1045q0 -160 91 -158q75 1 115.5 75t43.5 201q5 182 -61 403h345q26 -98 47.5 -199t19.5 -204q-2 -167 -67.5 -292t-181 -191.5t-261.5 -66.5 | ||
1681 | q-214 0 -326 101t-115 300v801z" /> | ||
1682 | <glyph glyph-name="uni0509" unicode="ԉ" horiz-adv-x="1778" | ||
1683 | d="M745 817h-172l-16 -311q-17 -256 -111 -381t-277 -125h-103l-5 258l36 4q66 8 98.5 87t41.5 249l21 484h824v-693q0 -66 32 -106t88 -40q63 1 96.5 66t35.5 179q4 181 -60 381h330l20 -71q52 -186 49 -310q-2 -155 -62 -270t-167 -177t-242 -62q-223 0 -339.5 101.5 | ||
1684 | t-117.5 302.5v434z" /> | ||
1685 | <glyph glyph-name="uni050A" unicode="Ԋ" horiz-adv-x="2027" | ||
1686 | d="M1331 1456v-1070q0 -58 24 -95.5t65 -37.5q77 2 117 75t44 201q4 187 -61 403h345l23 -89q47 -183 44 -314q-2 -168 -66.5 -292t-181 -191t-264.5 -67q-207 -4 -318 99t-122 313v189h-519v-580h-350v1456h350v-606h519v606h351z" /> | ||
1687 | <glyph glyph-name="uni050B" unicode="ԋ" horiz-adv-x="1685" | ||
1688 | d="M710 415h-306v-415h-338v1082h338v-404h306v404h338v-695q-2 -64 31.5 -104t87.5 -40q63 2 96.5 66.5t36.5 178.5q4 175 -60 381h330q26 -93 47.5 -188.5t19.5 -192.5q-2 -156 -61.5 -270.5t-166.5 -176.5t-242 -62q-213 -4 -328 96.5t-129 311.5v28z" /> | ||
1689 | <glyph glyph-name="uni050C" unicode="Ԍ" horiz-adv-x="1311" | ||
1690 | d="M702 -21q-189 0 -339 79.5t-233 221.5t-83 316v263q0 175 83 317t233 221.5t339 79.5q223 0 359 -89l-62 -254q-136 68 -297 68q-136 0 -220 -97.5t-84 -248.5v-259q0 -150 84 -247t220 -97q101 2 154 53t56 142q3 143 -50 338h343l39 -165q20 -87 18 -173 | ||
1691 | q-4 -218 -158 -343.5t-402 -125.5z" /> | ||
1692 | <glyph glyph-name="uni050D" unicode="ԍ" horiz-adv-x="1100" | ||
1693 | d="M621 243q60 2 81 27.5t23 71.5q0 106 -19 195h330q29 -122 27 -195q-4 -172 -121 -267.5t-321 -95.5q-252 0 -408.5 152t-156.5 401v30q0 151 67.5 275.5t192 194.5t285.5 70q186 0 282 -66l-46 -256q-95 58 -236 58q-95 0 -151 -77t-56 -207v-34q0 -123 62 -200t165 -77 | ||
1694 | z" /> | ||
1695 | <glyph glyph-name="uni050E" unicode="Ԏ" horiz-adv-x="1439" | ||
1696 | d="M438 1181h-409v275h1152v-275h-393v-790q-1 -60 23.5 -99t66.5 -39q76 2 117 75t44 201q4 183 -60 403h343q28 -102 48.5 -201.5t18.5 -201.5q-2 -168 -66.5 -292t-181 -191t-263.5 -67q-417 -8 -440 412v790z" /> | ||
1697 | <glyph glyph-name="uni050F" unicode="ԏ" horiz-adv-x="1300" | ||
1698 | d="M329 820h-265v262h907v-262h-305v-433q-1 -63 30.5 -103.5t88.5 -40.5q128 4 134 182q4 135 -60 278h331l22 -58q49 -132 46 -220q-5 -205 -134.5 -325.5t-338.5 -120.5q-214 -4 -329.5 98t-126.5 310v433z" /> | ||
1699 | <glyph glyph-name="uni0510" unicode="Ԑ" horiz-adv-x="1318" | ||
1700 | d="M81 408q0 126 67 212t194 128q-114 49 -176.5 131t-62.5 182q0 197 157.5 306.5t432.5 109.5q153 0 282 -53.5t200.5 -148.5t71.5 -217h-351q0 68 -57.5 108t-145.5 40q-109 0 -173.5 -41.5t-64.5 -112.5q0 -173 206 -179h222v-260h-207q-120 0 -182.5 -44.5 | ||
1701 | t-62.5 -152.5q0 -74 72 -120.5t190 -46.5q94 0 159 43.5t65 111.5h350q0 -126 -72 -223t-207.5 -149.5t-294.5 -52.5q-278 0 -445 116t-167 313z" /> | ||
1702 | <glyph glyph-name="uni0511" unicode="ԑ" horiz-adv-x="1159" | ||
1703 | d="M429 336q0 -51 46.5 -83.5t122.5 -32.5q89 0 130.5 29.5t41.5 70.5h337q0 -155 -137 -247.5t-349 -92.5q-236 0 -382 90.5t-146 235.5q0 92 53.5 155.5t153.5 95.5q-88 36 -138 96.5t-50 132.5q0 147 138 231t371 84q207 0 338 -93.5t131 -239.5h-337q0 48 -43.5 70.5 | ||
1704 | t-110.5 22.5q-69 0 -109.5 -29t-40.5 -77q0 -98 175 -98h158v-207h-172q-181 0 -181 -114z" /> | ||
1705 | <glyph glyph-name="uni0512" unicode="Ԓ" horiz-adv-x="1444" | ||
1706 | d="M1335 1456v-1456h-351v1185h-327l-24 -489q-15 -253 -70 -404t-156.5 -220.5t-276.5 -71.5h-94v270l49 5q105 15 152 128.5t61 382.5l25 670h1012zM1669 297v-309q0 -205 -107.5 -315t-302.5 -110q-86 0 -159 17l14 255q52 -12 100 -12q116 0 116 164v310h339z" /> | ||
1707 | <glyph glyph-name="uni0513" unicode="ԓ" horiz-adv-x="1150" | ||
1708 | d="M1061 1082v-1082h-337v822h-202l-18 -331q-19 -246 -111 -368t-273 -123h-106l-4 258l35 4q67 8 99.5 89.5t41.5 246.5l21 484h854zM1400 297v-309q0 -205 -107.5 -315t-302.5 -110q-86 0 -159 17l14 255q52 -12 100 -12q116 0 116 164v310h339z" /> | ||
1709 | <glyph glyph-name="uni1E00" unicode="Ḁ" | ||
1710 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM505 -216q0 74 57 123.5t137 49.5t135.5 -49.5t55.5 -123.5t-54 -122t-137 -48q-82 0 -138 48.5t-56 121.5zM630 -216q0 -31 19.5 -50.5t49.5 -19.5q29 0 47 19.5t18 50.5q0 32 -18 52 | ||
1711 | t-47 20q-30 0 -49.5 -20t-19.5 -52z" /> | ||
1712 | <glyph glyph-name="uni1E01" unicode="ḁ" horiz-adv-x="1087" | ||
1713 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1714 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM265 -203q0 74 57 123.5t137 49.5t135.5 -49.5t55.5 -123.5t-54 -122t-137 -48q-82 0 -138 48.5t-56 121.5zM390 -203q0 -31 19.5 -50.5t49.5 -19.5q29 0 47 19.5t18 50.5q0 32 -18 52t-47 20q-30 0 -49.5 -20t-19.5 -52z" /> | ||
1715 | <glyph glyph-name="uni1E3E" unicode="Ḿ" horiz-adv-x="1795" | ||
1716 | d="M571 1456l325 -1013l324 1013h462v-1456h-352v340l34 696l-352 -1036h-232l-353 1037l34 -697v-340h-351v1456h461zM936 1846h356l-278 -314h-275z" /> | ||
1717 | <glyph glyph-name="uni1E3F" unicode="ḿ" horiz-adv-x="1764" | ||
1718 | d="M413 1082l11 -127q115 147 309 147q205 0 277 -163q110 163 318 163q329 0 338 -398v-704h-338v683q0 83 -28 121t-102 38q-100 0 -149 -89l1 -14v-739h-338v681q0 85 -27 123t-103 38q-97 0 -148 -89v-753h-337v1082h316zM946 1536h356l-278 -314h-275z" /> | ||
1719 | <glyph glyph-name="Wgrave" unicode="Ẁ" horiz-adv-x="1780" | ||
1720 | d="M1238 543l167 913h348l-309 -1456h-364l-195 830l-191 -830h-363l-310 1456h349l167 -913l200 913h298zM1053 1532h-274l-282 314h356z" /> | ||
1721 | <glyph glyph-name="wgrave" unicode="ẁ" horiz-adv-x="1487" | ||
1722 | d="M1029 444l109 638h323l-255 -1082h-285l-179 642l-180 -642h-285l-255 1082h323l107 -653l172 653h235zM903 1222h-274l-282 314h356z" /> | ||
1723 | <glyph glyph-name="Wacute" unicode="Ẃ" horiz-adv-x="1780" | ||
1724 | d="M1238 543l167 913h348l-309 -1456h-364l-195 830l-191 -830h-363l-310 1456h349l167 -913l200 913h298zM935 1846h356l-278 -314h-275z" /> | ||
1725 | <glyph glyph-name="wacute" unicode="ẃ" horiz-adv-x="1487" | ||
1726 | d="M1029 444l109 638h323l-255 -1082h-285l-179 642l-180 -642h-285l-255 1082h323l107 -653l172 653h235zM785 1536h356l-278 -314h-275z" /> | ||
1727 | <glyph glyph-name="Wdieresis" unicode="Ẅ" horiz-adv-x="1780" | ||
1728 | d="M1238 543l167 913h348l-309 -1456h-364l-195 830l-191 -830h-363l-310 1456h349l167 -913l200 913h298zM629 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM1148 1808q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39 | ||
1729 | q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1730 | <glyph glyph-name="wdieresis" unicode="ẅ" horiz-adv-x="1487" | ||
1731 | d="M1029 444l109 638h323l-255 -1082h-285l-179 642l-180 -642h-285l-255 1082h323l107 -653l172 653h235zM479 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39zM998 1498q63 0 106.5 -39t43.5 -94t-43.5 -94t-106.5 -39 | ||
1732 | q-64 0 -107.5 39t-43.5 94t43.5 94t107.5 39z" /> | ||
1733 | <glyph glyph-name="uni1EA0" unicode="Ạ" | ||
1734 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM516 -230q0 65 53.5 107t133.5 42t133.5 -42t53.5 -107t-53.5 -107t-133.5 -42t-133.5 42t-53.5 107z" /> | ||
1735 | <glyph glyph-name="uni1EA1" unicode="ạ" horiz-adv-x="1087" | ||
1736 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1737 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM276 -230q0 65 53.5 107t133.5 42t133.5 -42t53.5 -107t-53.5 -107t-133.5 -42t-133.5 42t-53.5 107z" /> | ||
1738 | <glyph glyph-name="uni1EA2" unicode="Ả" | ||
1739 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM568 1577l-22 126q137 6 137 63q0 66 -135 66l7 145q208 0 314 -52t106 -145q0 -56 -40 -93.5t-110 -47.5v-62h-257z" /> | ||
1740 | <glyph glyph-name="uni1EA3" unicode="ả" horiz-adv-x="1087" | ||
1741 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1742 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM403 1268l-22 126q137 6 137 63q0 66 -135 66l7 145q208 0 314 -52t106 -145q0 -56 -40 -93.5t-110 -47.5v-62h-257z" /> | ||
1743 | <glyph glyph-name="uni1EA4" unicode="Ấ" | ||
1744 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM613 1746h165l280 -218h-219l-143 116l-144 -116h-218zM1161 1921h241l-240 -275h-176z" /> | ||
1745 | <glyph glyph-name="uni1EA5" unicode="ấ" horiz-adv-x="1087" | ||
1746 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1747 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM448 1437h165l280 -218h-219l-143 116l-144 -116h-218zM996 1612h241l-240 -275h-176z" /> | ||
1748 | <glyph glyph-name="uni1EA6" unicode="Ầ" | ||
1749 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM1061 1528h-217l-144 116l-143 -116h-220l281 218h164zM410 1646h-176l-239 275h240z" /> | ||
1750 | <glyph glyph-name="uni1EA7" unicode="ầ" horiz-adv-x="1087" | ||
1751 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1752 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM896 1219h-217l-144 116l-143 -116h-220l281 218h164zM245 1337h-176l-239 275h240z" /> | ||
1753 | <glyph glyph-name="uni1EA8" unicode="Ẩ" | ||
1754 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM1058 1528h-221l-140 116l-140 -116h-223l283 218h160zM964 1651l-20 106q115 6 115 52q0 34 -31 45.5t-82 11.5l7 120q152 0 229 -43t77 -121q0 -47 -33.5 -79t-91.5 -40l1 -52h-171z | ||
1755 | " /> | ||
1756 | <glyph glyph-name="uni1EA9" unicode="ẩ" horiz-adv-x="1087" | ||
1757 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1758 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM893 1219h-221l-140 116l-140 -116h-223l283 218h160zM799 1342l-20 106q115 6 115 52q0 34 -31 45.5t-82 11.5l7 120q152 0 229 -43t77 -121q0 -47 -33.5 -79t-91.5 -40l1 -52h-171z" /> | ||
1759 | <glyph glyph-name="uni1EAA" unicode="Ẫ" | ||
1760 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM1061 1528h-221l-140 116l-140 -116h-223l279 218h168zM958 1951q0 -67 -35 -111t-87 -44q-46 0 -113 31t-103 31q-37 0 -37 -70l-111 32q0 66 33 111t85 45q36 0 110 -30.5t106 -30.5 | ||
1761 | q38 0 38 78z" /> | ||
1762 | <glyph glyph-name="uni1EAB" unicode="ẫ" horiz-adv-x="1087" | ||
1763 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1764 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM896 1219h-221l-140 116l-140 -116h-223l279 218h168zM793 1642q0 -67 -35 -111t-87 -44q-46 0 -113 31t-103 31q-37 0 -37 -70l-111 32q0 66 33 111t85 45q36 0 110 -30.5t106 -30.5q38 0 38 78z" /> | ||
1765 | <glyph glyph-name="uni1EAC" unicode="Ậ" | ||
1766 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM1124 1565v-13h-266l-159 136l-159 -136h-260v17l323 277h193zM516 -230q0 65 53.5 107t133.5 42t133.5 -42t53.5 -107t-53.5 -107t-133.5 -42t-133.5 42t-53.5 107z" /> | ||
1767 | <glyph glyph-name="uni1EAD" unicode="ậ" horiz-adv-x="1087" | ||
1768 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1769 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM959 1255v-13h-266l-159 136l-159 -136h-260v17l323 277h193zM276 -230q0 65 53.5 107t133.5 42t133.5 -42t53.5 -107t-53.5 -107t-133.5 -42t-133.5 42t-53.5 107z" /> | ||
1770 | <glyph glyph-name="uni1EAE" unicode="Ắ" | ||
1771 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM1066 1771q0 -108 -100.5 -175t-268.5 -67t-268.5 67t-100.5 175h207q0 -53 43 -82.5t119 -29.5t118.5 29.5t42.5 82.5h208zM737 1950h225l-181 -184h-175z" /> | ||
1772 | <glyph glyph-name="uni1EAF" unicode="ắ" horiz-adv-x="1087" | ||
1773 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1774 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM901 1461q0 -108 -100.5 -175t-268.5 -67t-268.5 67t-100.5 175h207q0 -53 43 -82.5t119 -29.5t118.5 29.5t42.5 82.5h208zM572 1640h225l-181 -184h-175z" /> | ||
1775 | <glyph glyph-name="uni1EB0" unicode="Ằ" | ||
1776 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM1066 1774q0 -108 -100.5 -175t-268.5 -67t-268.5 67t-100.5 175h207q0 -53 43 -82.5t119 -29.5t118.5 29.5t42.5 82.5h208zM440 1950h225l131 -184h-175z" /> | ||
1777 | <glyph glyph-name="uni1EB1" unicode="ằ" horiz-adv-x="1087" | ||
1778 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1779 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM901 1464q0 -108 -100.5 -175t-268.5 -67t-268.5 67t-100.5 175h207q0 -53 43 -82.5t119 -29.5t118.5 29.5t42.5 82.5h208zM275 1640h225l131 -184h-175z" /> | ||
1780 | <glyph glyph-name="uni1EB2" unicode="Ẳ" | ||
1781 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM1072 1752q0 -107 -101 -173t-276 -66q-173 0 -275.5 65.5t-102.5 173.5h212q0 -49 42.5 -77t123.5 -28q77 0 121 27.5t44 77.5h212zM582 1787l-23 99q135 4 135 48q0 52 -133 52l7 114 | ||
1782 | q182 0 274 -40.5t92 -113.5q0 -45 -40 -74.5t-107 -36.5v-48h-205z" /> | ||
1783 | <glyph glyph-name="uni1EB3" unicode="ẳ" horiz-adv-x="1087" | ||
1784 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1785 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM907 1443q0 -107 -101 -173t-276 -66q-173 0 -275.5 65.5t-102.5 173.5h212q0 -49 42.5 -77t123.5 -28q77 0 121 27.5t44 77.5h212zM417 1478l-23 99q135 4 135 48q0 52 -133 52l7 114q182 0 274 -40.5t92 -113.5 | ||
1786 | q0 -45 -40 -74.5t-107 -36.5v-48h-205z" /> | ||
1787 | <glyph glyph-name="uni1EB4" unicode="Ẵ" | ||
1788 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM1066 1755q0 -110 -102 -177t-268 -67t-268 67t-102 177h207q0 -50 42.5 -77.5t120.5 -27.5t119.5 27.5t41.5 77.5h209zM988 2030q0 -76 -47.5 -128.5t-114.5 -52.5q-58 0 -128 32.5 | ||
1789 | t-112 32.5q-26 0 -43 -24.5t-17 -60.5l-138 38q0 74 46.5 127.5t115.5 53.5q44 0 121 -32t119 -32q24 0 41.5 24.5t17.5 60.5z" /> | ||
1790 | <glyph glyph-name="uni1EB5" unicode="ẵ" horiz-adv-x="1087" | ||
1791 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1792 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM901 1446q0 -110 -102 -177t-268 -67t-268 67t-102 177h207q0 -50 42.5 -77.5t120.5 -27.5t119.5 27.5t41.5 77.5h209zM823 1721q0 -76 -47.5 -128.5t-114.5 -52.5q-58 0 -128 32.5t-112 32.5q-26 0 -43 -24.5t-17 -60.5l-138 38 | ||
1793 | q0 74 46.5 127.5t115.5 53.5q44 0 121 -32t119 -32q24 0 41.5 24.5t17.5 60.5z" /> | ||
1794 | <glyph glyph-name="uni1EB6" unicode="Ặ" | ||
1795 | d="M937 272h-481l-84 -272h-375l534 1456h330l538 -1456h-377zM540 543h313l-157 505zM1070 1848q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231zM516 -230q0 65 53.5 107t133.5 42t133.5 -42t53.5 -107 | ||
1796 | t-53.5 -107t-133.5 -42t-133.5 42t-53.5 107z" /> | ||
1797 | <glyph glyph-name="uni1EB7" unicode="ặ" horiz-adv-x="1087" | ||
1798 | d="M704 0q-18 33 -32 97q-93 -117 -260 -117q-153 0 -260 92.5t-107 232.5q0 176 130 266t378 90h104v57q0 149 -129 149q-120 0 -120 -118h-337q0 157 133.5 255t340.5 98t327 -101t123 -277v-479q2 -149 46 -228v-17h-337zM493 220q63 0 104.5 27t59.5 61v173h-98 | ||
1799 | q-176 0 -176 -158q0 -46 31 -74.5t79 -28.5zM905 1538q0 -137 -101 -222t-269 -85t-269 85t-101 222h229q0 -60 37.5 -93.5t103.5 -33.5t102.5 32.5t36.5 94.5h231zM276 -230q0 65 53.5 107t133.5 42t133.5 -42t53.5 -107t-53.5 -107t-133.5 -42t-133.5 42t-53.5 107z" /> | ||
1800 | <glyph glyph-name="uni1EB8" unicode="Ẹ" horiz-adv-x="1146" | ||
1801 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261zM462 -230q0 65 53.5 107t133.5 42t133.5 -42t53.5 -107t-53.5 -107t-133.5 -42t-133.5 42t-53.5 107z" /> | ||
1802 | <glyph glyph-name="uni1EB9" unicode="ẹ" horiz-adv-x="1115" | ||
1803 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
1804 | t-123 44.5zM384 -230q0 65 53.5 107t133.5 42t133.5 -42t53.5 -107t-53.5 -107t-133.5 -42t-133.5 42t-53.5 107z" /> | ||
1805 | <glyph glyph-name="uni1EBA" unicode="Ẻ" horiz-adv-x="1146" | ||
1806 | d="M1013 617h-552v-347h652v-270h-1003v1456h1005v-271h-654v-307h552v-261zM512 1577l-22 126q137 6 137 63q0 66 -135 66l7 145q208 0 314 -52t106 -145q0 -56 -40 -93.5t-110 -47.5v-62h-257z" /> | ||
1807 | <glyph glyph-name="uni1EBB" unicode="ẻ" horiz-adv-x="1115" | ||
1808 | d="M618 -20q-249 0 -403 148.5t-154 386.5v28q0 166 61.5 293t179.5 196.5t280 69.5q228 0 360 -141.5t132 -394.5v-131h-670q18 -91 79 -143t158 -52q160 0 250 112l154 -182q-63 -87 -178.5 -138.5t-248.5 -51.5zM580 842q-148 0 -176 -196h340v26q2 81 -41 125.5 | ||
1809 | t-123 44.5zM402 1269l-22 126q137 |