Repository: LivKing/Inclusive-Sans Branch: main Commit: 38b8ed1dd67b Files: 30 Total size: 1.4 MB Directory structure: gitextract_olugya9y/ ├── .github/ │ └── workflows/ │ └── build.yaml ├── .gitignore ├── .init.stamp ├── .templaterc.json ├── AUTHORS.txt ├── CONTRIBUTORS.txt ├── Makefile ├── OFL.txt ├── README.md ├── fonts/ │ ├── otf/ │ │ ├── InclusiveSans-Bold.otf │ │ ├── InclusiveSans-BoldItalic.otf │ │ ├── InclusiveSans-Italic.otf │ │ ├── InclusiveSans-Light.otf │ │ ├── InclusiveSans-LightItalic.otf │ │ ├── InclusiveSans-Medium.otf │ │ ├── InclusiveSans-MediumItalic.otf │ │ ├── InclusiveSans-Regular.otf │ │ ├── InclusiveSans-SemiBold.otf │ │ └── InclusiveSans-SemiBoldItalic.otf │ └── variable/ │ └── .ninja_log ├── requirements.txt ├── scripts/ │ ├── first-run.py │ ├── index.html │ └── read-config.py └── sources/ ├── CustomFilter_GFLatinCore.plist ├── InclusiveSans-Italic.glyphs ├── InclusiveSans.glyphs ├── V1.0/ │ ├── InclusiveSans.glyphs │ └── InclusiveSans_Italic.glyphs └── config.yaml ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/workflows/build.yaml ================================================ name: Build font and specimen on: [push, release] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python 3.8 uses: actions/setup-python@v2 with: python-version: 3.8 - name: Install sys tools/deps run: | sudo apt-get update sudo apt-get install ttfautohint sudo snap install yq - uses: actions/cache@v2 with: path: ./venv/ key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements*.txt') }} restore-keys: | ${{ runner.os }}-venv- - name: Do first-run script if necessary run: make .init.stamp if: github.repository != 'googlefonts/googlefonts-project-template' - uses: stefanzweifel/git-auto-commit-action@v4 name: First-run setup if: github.repository != 'googlefonts/googlefonts-project-template' with: file_pattern: .init.stamp README.md requirements.txt OFL.txt commit_message: "Personalize for this repo" - name: gen zip file name id: zip-name shell: bash # Set the archive name to repo name + "-assets" e.g "MavenPro-assets" run: echo "ZIP_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')-fonts" >> $GITHUB_ENV # If a new release is cut, use the release tag to auto-bump the source files - name: Bump release if: github.event_name == 'release' run: | . venv/bin/activate SRCS=$(yq e ".sources[]" sources/config.yaml) TAG_NAME=${GITHUB_REF/refs\/tags\//} echo "Bumping $SRCS to $TAG_NAME" for src in $SRCS do bumpfontversion sources/$src --new-version $TAG_NAME; done - name: Build font run: make build - name: Check with fontbakery run: make test continue-on-error: true - name: proof run: make proof - name: setup site run: cp scripts/index.html out/index.html - name: Deploy uses: peaceiris/actions-gh-pages@v3 if: ${{ github.ref == 'refs/heads/main' }} with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./out - name: Archive artifacts uses: actions/upload-artifact@v2 with: name: ${{ env.ZIP_NAME }} path: | fonts out outputs: zip_name: ${{ env.ZIP_NAME }} release: # only run if the commit is tagged... if: github.event_name == 'release' # ... and it builds successfully needs: - build runs-on: ubuntu-latest env: ZIP_NAME: ${{ needs.build.outputs.zip_name }} steps: - uses: actions/checkout@v2 - name: Download artefact files uses: actions/download-artifact@v2 with: name: ${{ env.ZIP_NAME }} path: ${{ env.ZIP_NAME }} - name: Zip files run: zip -r ${{ env.ZIP_NAME }}.zip ${{ env.ZIP_NAME }} - name: Upload binaries to release uses: svenstaro/upload-release-action@v2 with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: ${{ env.ZIP_NAME }}.zip asset_name: ${{ env.ZIP_NAME }}.zip tag: ${{ github.ref }} overwrite: true body: "Production ready fonts" ================================================ FILE: .gitignore ================================================ *~ venv build.stamp proof node_modules package-lock.json package.json # OS generated files # ###################### .DS_Store .DS_Store? ._* .Spotlight-V100 .Trashes ehthumbs.db Thumbs.db ================================================ FILE: .init.stamp ================================================ ================================================ FILE: .templaterc.json ================================================ { "files": [".github/**/*", "Makefile", "scripts/**/*", "requirements.txt"] } ================================================ FILE: AUTHORS.txt ================================================ # This is the official list of project authors for copyright purposes. # This file is distinct from the CONTRIBUTORS.txt file. # See the latter for an explanation. # # Names should be added to this file as: # Name or Organization Olivia King ================================================ FILE: CONTRIBUTORS.txt ================================================ # This is the list of people who have contributed to this project, # and includes those not listed in AUTHORS.txt because they are not # copyright authors. For example, company employees may be listed # here because their company holds the copyright and is listed there. # # When adding J Random Contributor's name to this file, either J's # name or J's organization's name should be added to AUTHORS.txt # # Names should be added to this file as: # Name Emma Marichal ================================================ FILE: Makefile ================================================ SOURCES=$(shell python3 scripts/read-config.py --sources ) FAMILY=$(shell python3 scripts/read-config.py --family ) DRAWBOT_SCRIPTS=$(shell ls documentation/*.py) DRAWBOT_OUTPUT=$(shell ls documentation/*.py | sed 's/\.py/.png/g') help: @echo "###" @echo "# Build targets for $(FAMILY)" @echo "###" @echo @echo " make build: Builds the fonts and places them in the fonts/ directory" @echo " make test: Tests the fonts with fontbakery" @echo " make proof: Creates HTML proof documents in the proof/ directory" @echo " make images: Creates PNG specimen images in the documentation/ directory" @echo build: build.stamp venv: venv/touchfile build.stamp: venv .init.stamp sources/config.yaml $(SOURCES) . venv/bin/activate; rm -rf fonts/; gftools builder sources/config.yaml && touch build.stamp .init.stamp: venv . venv/bin/activate; python3 scripts/first-run.py venv/touchfile: requirements.txt test -d venv || python3 -m venv venv . venv/bin/activate; pip install -Ur requirements.txt touch venv/touchfile test: venv build.stamp . venv/bin/activate; mkdir -p out/ out/fontbakery; fontbakery check-googlefonts -l WARN --full-lists --succinct --badges out/badges --html out/fontbakery/fontbakery-report.html --ghmarkdown out/fontbakery/fontbakery-report.md $(shell find fonts/ttf -type f) || echo '::warning file=sources/config.yaml,title=Fontbakery failures::The fontbakery QA check reported errors in your font. Please check the generated report.' proof: venv build.stamp . venv/bin/activate; mkdir -p out/ out/proof; gftools gen-html proof $(shell find fonts/ttf -type f) -o out/proof images: venv build.stamp $(DRAWBOT_OUTPUT) git add documentation/*.png && git commit -m "Rebuild images" documentation/*.png %.png: %.py build.stamp python3 $< --output $@ clean: rm -rf venv find . -name "*.pyc" | xargs rm delete update-project-template: npx update-template https://github.com/googlefonts/googlefonts-project-template/ update: pip install --upgrade $(dependency); pip freeze > requirements.txt ================================================ FILE: OFL.txt ================================================ Copyright 2022 The Inclusive Sans Project Authors (https://github.com/LivKing/Inclusive-Sans) This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: https://scripts.sil.org/OFL ----------------------------------------------------------- SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ----------------------------------------------------------- PREAMBLE The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. DEFINITIONS "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. "Reserved Font Name" refers to any names specified as such after the copyright statement(s). "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. PERMISSION & CONDITIONS Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. TERMINATION This license becomes null and void if any of the above conditions are not met. DISCLAIMER THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. ================================================ FILE: README.md ================================================ # Inclusive Sans Inclusive Sans is a text font designed for accessibility and readability. It is inspired by the friendly personality of contemporary neo-grotesques while incorporating key features to make it highly legible in all uses. ![Sample Image](documentation/InclusiveSans.jpg) ![Sample Image](documentation/InclusiveSans2.jpg) ![Sample Image](documentation/InclusiveSans3.jpg) ![Sample Image](documentation/InclusiveSans4.jpg) ![Sample Image](documentation/InclusiveSans5.jpg) ![Sample Image](documentation/InclusiveSans6.jpg) ![Sample Image](documentation/InclusiveSans7.jpg) ## Background The conversation and guidelines around accessibility in typography has largely centred on type sizes and colour contrasts [^1]. However research [^2] has shown that accessibility in type is crucial at a character level, where key features can enhance the readability of text for those who are hard of seeing or are neurodiverse. After reading Sophie Beier's book Reading Letters: Designing for Legibility [^3], working with clients across in disability non-for-profits and large government organisations, as well as conversations with fellow designer Johanna Roca, Olivia King was inspired to create a typeface that was truly legible at a character level. While some typefaces had been created in the same spirit [^4], she wanted to create a font that was more contemporary and usable as a text typeface for all types of use. To meet the criteria as outlined in Beier's work as well as Gareth Ford William's Guide [^5], Inclusive Sans incorporates the following key features: 1. Clear distinction between I, l and 1 2. Non-mirroring of letters d, b, q and p 3. Distinction between O and 0 4. Wider, more open counter forms on c, o, a and e 5. A higher x-height for easier readability at small sizes 6. Wider default letter-spacing 7. Clear difference between capital height and ascender height In early 2021 Olivia started work on the regular weight of Inclusive Sans while participating in a 10 week type design course run by Troy Leinster, and by August that year she had completed the majority of the full Latin set. Living and working on Gadigal Country (Sydney, Australia) she felt it was important to include support for Aboriginal and Torres Strait Islander languages. She added an additional 48 glyphs with the help of Vincent Chan (in consultation with Sasha Wilmouth from the University of Melbourne). Additional weights and styles are currently in development. [^1]: See WCAG 2 section 1.4 on Distinguishable https://www.w3.org/WAI/WCAG21/quickref/#distinguishable [^2]: See Sophie Beier's 2009 thesis on typeface legibility [^3]: http://sofiebeier.dk/?page_id=390 [^4]: https://www.myfonts.com/collections/fs-me-font-fontsmith [^5]: https://medium.com/the-readability-group/a-guide-to-understanding-what-makes-a-typeface-accessible-and-how-to-make-informed-decisions-9e5c0b9040a0 ## Building Fonts are built automatically by GitHub Actions - take a look in the "Actions" tab for the latest build. If you want to build fonts manually on your own computer: * `make build` will produce font files. * `make test` will run [FontBakery](https://github.com/googlefonts/fontbakery)'s quality assurance tests. * `make proof` will generate HTML proof files. The proof files and QA tests are also available automatically via GitHub Actions - look at https://LivKing.github.io/Inclusive-Sans. ## Changelog When you update your font (new version or new release), please report all notable changes here, with a date. [Font Versioning](https://github.com/googlefonts/gf-docs/tree/main/Spec#font-versioning) is based on semver. Changelog example: **26 May 2021. Version 2.13** - MAJOR Font turned to a variable font. - SIGNIFICANT New Stylistic sets added. ## License This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at https://scripts.sil.org/OFL ## Repository Layout This font repository structure is inspired by [Unified Font Repository v0.3](https://github.com/unified-font-repository/Unified-Font-Repository), modified for the Google Fonts workflow. ================================================ FILE: fonts/variable/.ninja_log ================================================ # ninja log v5 0 1853 1736348997572032296 out/Diffbrowsers 14e52ca88f40a7ab 0 1654 1736348999248472446 out/Diffbrowsers 8994a002886e94ae ================================================ FILE: requirements.txt ================================================ absl-py==1.3.0 appdirs==1.4.4 attrs==22.2.0 axisregistry==0.3.10 babelfont==3.0.0 beautifulsoup4==4.11.1 beziers==0.5.0 blackrenderer==0.6.0 booleanOperations==0.9.0 Brotli==1.0.9 browserstack-local==1.2.2 bump2version==1.0.1 bumpfontversion==0.4.1 cattrs==22.2.0 certifi==2022.12.7 cffi==1.15.1 cffsubr==0.2.9.post1 charset-normalizer==2.1.1 click==8.1.3 cmarkgfm==2022.10.27 collidoscope==0.5.2 colorlog==6.7.0 commandlines==0.4.1 commonmark==0.9.1 compreffor==0.5.3 cu2qu==1.6.7.post2 defcon==0.10.2 dehinter==4.0.0 Deprecated==1.2.13 drawbot-skia==0.5.0 exceptiongroup==1.0.4 font-v==2.1.0 fontbakery==0.8.10 fontdiffenator==0.9.13 fontFeatures==1.7.4 fontmake==3.5.1 fontMath==0.9.3 fonttools==4.38.0 freetype-py==2.3.0 fs==2.4.16 gfdiffbrowsers==0.1.7 gflanguages==0.4.3 gftools==0.9.21 gitdb==4.0.10 GitPython==3.1.29 glyphsets==0.5.4 glyphsLib==6.1.0 glyphtools==0.8.0 hyperglot==0.4.4 idna==3.4 importlib-resources==5.10.1 Jinja2==3.1.2 kurbopy==0.8.32 lxml==4.9.2 MarkupSafe==2.1.1 nanoemoji==0.15.1 ninja==1.11.1 numpy==1.24.0 openstep-plist==0.3.0.post1 opentype-sanitizer==9.0.0 opentypespec==1.9.1 orjson==3.8.3 packaging==22.0 picosvg==0.20.6 Pillow==9.3.0 pip-api==0.0.30 pngquant-cli==2.17.0.post5 protobuf==3.20.3 psutil==5.9.4 pybind11==2.10.2 pybrowserstack-screenshots==0.1 pycairo==1.23.0 pyclipper==1.3.0.post4 pycparser==2.21 pygit2==1.11.1 PyGithub==1.57 Pygments==2.13.0 PyJWT==2.6.0 PyNaCl==1.5.0 pyparsing==3.0.9 python-bidi==0.4.2 python-dateutil==2.8.2 PyYAML==6.0 regex==2022.10.31 requests==2.28.1 resvg-cli==0.22.0.post3 rich==12.6.0 rstr==3.2.0 sh==1.14.3 simplejson==3.18.0 six==1.16.0 skia-pathops==0.7.4 skia-python==87.5 smmap==5.0.0 soupsieve==2.3.2.post1 sre-yield==1.2 statmake==0.6.0 strictyaml==1.6.2 stringbrewer==0.0.1 tabulate==0.9.0 toml==0.10.2 ttfautohint-py==0.5.1 typing_extensions==4.4.0 ufo2ft==2.30.0 ufoLib2==0.14.0 ufolint==1.2.0 uharfbuzz==0.33.0 unicodedata2==15.0.0 Unidecode==1.3.6 urllib3==1.26.13 vharfbuzz==0.1.4 vttLib==0.11.0 wrapt==1.14.1 zipp==3.11.0 zopfli==0.2.2 ================================================ FILE: scripts/first-run.py ================================================ #!/usr/bin/env python3 # This script is run the first time any action is performed after the repository # is cloned. If you are reading this because the automatic initialization failed, # skip down to the section headed "INITIALIZATION STEPS". from sh import git import datetime import re import sys from urllib.parse import quote import subprocess BASE_OWNER = "googlefonts" BASE_REPONAME = "googlefonts-project-template" DUMMY_URL = "https://yourname.github.io/your-font-repository-name" def repo_url(owner, name): return f"https://github.com/{owner}/{name}" def web_url(owner, name): return f"https://{owner}.github.io/{name}" def raw_url(owner, name): return f"https://raw.githubusercontent.com/{owner}/{name}" def touch(): open(".init.stamp", "w").close() def lose(msg, e=None): print(msg) print("You will need to do the initialization steps manually.") print("Read scripts/first-run.py for more instructions how to do this.") if e: print( "\nHere's an additional error message which may help diagnose the problem." ) raise e sys.exit(1) try: my_repo_url = git.remote("get-url", "origin") except Exception as e: lose("Could not use git to find my own repository URL", e) m = re.match(r"(?:https://github.com/|git@github.com:)(.*)/(.*)/?", str(my_repo_url)) if not m: lose( f"My git repository URL ({my_repo_url}) didn't look what I expected - are you hosting this on github?" ) owner, reponame = m[1], m[2] if owner == BASE_OWNER and reponame == BASE_REPONAME: print("I am being run on the upstream repository (probably due to CI)") print("All I'm going to do is create the touch file and quit.") touch() sys.exit() # INITIALIZATION STEPS # First, the README file contains URLs to pages in the `gh-pages` branch of the # repo. When initially cloned, these URLs will point to the # googlefonts/Unified-Font-Repository itself. But downstream users want links # and badges about their own font, not ours! So any URLs need to be adjusted to # refer to the end user's repository. # We will also pin the dependencies so future builds are reproducible. readme = open("README.md").read() print( "Fixing URLs:", web_url(BASE_OWNER, BASE_REPONAME), "->", web_url(owner, reponame) ) readme = readme.replace(web_url(BASE_OWNER, BASE_REPONAME), web_url(owner, reponame)) # In the badges, the URLs to raw.githubusercontent.com are URL-encoded as they # are passed to shields.io. print( "Fixing URLs:", quote(raw_url(BASE_OWNER, BASE_REPONAME), safe=""), "->", quote(raw_url(owner, reponame), safe=""), ) readme = readme.replace( quote(raw_url(BASE_OWNER, BASE_REPONAME), safe=""), quote(raw_url(owner, reponame), safe=""), ) print( "Fixing URLs:", DUMMY_URL, "->", web_url(owner, reponame), ) readme = readme.replace( f"`{DUMMY_URL}`", web_url(owner, reponame), ) with open("README.md", "w") as fh: fh.write(readme) # Fix the OFL ofl = open("OFL.txt").read() ofl = ofl.replace(web_url(BASE_OWNER, BASE_REPONAME), web_url(owner, reponame)) ofl = ofl.replace("My Font", reponame.title()) ofl = ofl.replace("20**", str(datetime.date.today().year)) with open("OFL.txt", "w") as fh: fh.write(ofl) # Pin the dependencies print("Pinning dependencies") dependencies = subprocess.check_output(["pip", "freeze"]) with open("requirements.txt", "wb") as dependency_file: dependency_file.write(dependencies) # Finally, we add a "touch file" called ".init.stamp" to the repository which # prevents this first-run process from being run again. touch() ================================================ FILE: scripts/index.html ================================================ My Font development

My Font testing pages

================================================ FILE: scripts/read-config.py ================================================ #!/usr/bin/env python3 # Yes, this is a Bad YAML Parser, but at this stage we are not in the # venv and do not know what modules the user has available, so for # maximum compatibility, we are just assuming a plain Python distribution. import argparse import re import sys import os parser = argparse.ArgumentParser() group = parser.add_mutually_exclusive_group(required=True) group.add_argument('--sources',action='store_true') group.add_argument('--family',action='store_true') args = parser.parse_args() with open(os.path.join("sources", "config.yaml")) as config: data = config.read() if args.family: m = re.search(r"(?m)^familyName: (.*)", data) if m: print(m[1]) sys.exit(0) else: print("Could not determine family name from config file!") sys.exit(1) toggle = False sources = [] for line in data.splitlines(): if re.match("^sources:", line): toggle = True continue if toggle: m = re.match(r"^\s+-\s*(.*)", line) if m: sources.append("sources/"+m[1]) else: toggle = False if sources: print(" ".join(sources)) sys.exit(0) else: print("Could not determine sources from config file!") sys.exit(1) ================================================ FILE: sources/CustomFilter_GFLatinCore.plist ================================================ list zero one two three four five six seven eight nine space nbspace period colon ellipsis exclam asterisk numbersign slash backslash hyphen parenleft parenright braceleft braceright bracketleft bracketright quotedblleft quotedblright quoteleft quoteright guillemetleft guillemetright quotedbl quotesingle bar plus multiply divide equal greater less percent dieresiscomb gravecomb acutecomb hungarumlautcomb macroncomb dotaccent A Aacute Abreve Acaron Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE B C Cacute Ccaron Ccedilla Cdotaccent D Eth Dcaron Dcroat E Eacute Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gbreve Gcommaaccent Gdotaccent H Hbar I IJ Iacute Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek J K Kcommaaccent L Lacute Lcaron Lcommaaccent Lslash M N Nacute Ncaron Ncommaaccent Ntilde Eng O Oacute Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scommaaccent Germandbls T Tcaron Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent a aacute abreve acaron acircumflex adieresis agrave amacron aogonek aring atilde ae b c cacute ccaron ccedilla cdotaccent d eth dcaron dcroat e eacute ecaron ecircumflex edieresis edotaccent egrave emacron eogonek f g gbreve gcommaaccent gdotaccent h hbar i idotless iacute icircumflex idieresis idotaccent igrave ij imacron iogonek j jdotless k kcommaaccent l lacute lcaron lcommaaccent lslash m n nacute ncaron ncommaaccent ntilde eng o oacute ocircumflex odieresis ograve ohungarumlaut omacron oslash otilde oe p thorn q r racute rcaron rcommaaccent s sacute scaron scedilla scommaaccent germandbls t tcaron tcommaaccent u uacute ubreve ucircumflex udieresis ugrave uhungarumlaut umacron uogonek uring v w wacute wcircumflex wdieresis wgrave x y yacute ycircumflex ydieresis ygrave z zacute zcaron zdotaccent ordfeminine ordmasculine .notdef comma semicolon exclamdown question questiondown periodcentered bullet periodcentered.loclCAT periodcentered.loclCAT.case endash emdash underscore quotesinglbase quotedblbase guilsinglleft guilsinglright at ampersand paragraph section copyright registered trademark degree cent dollar euro sterling yen minus asciitilde asciicircum dotaccentcomb caroncomb.alt circumflexcomb caroncomb brevecomb ringcomb tildecomb commaturnedabovecomb commaaccentcomb cedillacomb ogonekcomb dieresis grave acute hungarumlaut circumflex caron breve ring tilde macron cedilla ogonek name GF_Latin_Core ================================================ FILE: sources/InclusiveSans-Italic.glyphs ================================================ { .appVersion = "3260"; .formatVersion = 3; DisplayStrings = ( "rř" ); axes = ( { name = Weight; tag = wght; } ); customParameters = ( { disabled = 1; name = glyphOrder; value = ( space, exclam, quotesingle, quotedbl, numbersign, dollar, percent, ampersand, parenleft, parenright, asterisk, plus, comma, hyphen, period, slash, zero, one, two, three, four, five, six, seven, eight, nine, colon, semicolon, less, equal, greater, question, at, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, bracketleft, backslash, bracketright, asciicircum, underscore, grave, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, braceleft, bar, braceright, asciitilde, exclamdown, cent, sterling, currency, yen, brokenbar, section, dieresis, copyright, ordfeminine, guillemetleft, logicalnot, registered, macron, degree, plusminus, twosuperior, threesuperior, acute, mu, paragraph, periodcentered, cedilla, onesuperior, ordmasculine, guillemetright, onequarter, onehalf, threequarters, questiondown, Agrave, Aacute, Acircumflex, Atilde, Adieresis, Aring, AE, Ccedilla, Egrave, Eacute, Ecircumflex, Edieresis, Igrave, Iacute, Icircumflex, Idieresis, Eth, Ntilde, Ograve, Oacute, Ocircumflex, Otilde, Odieresis, multiply, Oslash, Ugrave, Uacute, Ucircumflex, Udieresis, Yacute, Thorn, germandbls, agrave, aacute, acircumflex, atilde, adieresis, aring, ae, ccedilla, egrave, eacute, ecircumflex, edieresis, igrave, iacute, icircumflex, idieresis, eth, ntilde, ograve, oacute, ocircumflex, otilde, odieresis, divide, oslash, ugrave, uacute, ucircumflex, udieresis, yacute, thorn, ydieresis, dotlessi, circumflex, caron, breve, dotaccent, ring, ogonek, tilde, hungarumlaut, quoteleft, quoteright, minus, g.ss01, a.ss01 ); }, { name = "Use Typo Metrics"; value = 1; }, { name = fsType; value = ( ); }, { name = "Variable Font Origin"; value = m002; } ); date = "2024-11-02 04:16:01 +0000"; familyName = "Inclusive Sans"; featurePrefixes = ( { automatic = 1; code = "languagesystem DFLT dflt; languagesystem latn dflt; languagesystem latn AZE; languagesystem latn CRT; languagesystem latn KAZ; languagesystem latn TAT; languagesystem latn TRK; languagesystem latn ROM; languagesystem latn MOL; languagesystem latn MAH; languagesystem latn CAT; languagesystem latn NLD; "; name = Languagesystems; } ); features = ( { automatic = 1; code = "feature locl; feature case; feature ss01; feature ordn; "; tag = aalt; }, { automatic = 1; code = "lookup ccmp_DFLT_1 { @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hookabovecomb hungarumlautcomb macroncomb ringcomb tildecomb]; lookupflag UseMarkFilteringSet @CombiningTopAccents; sub i' @CombiningTopAccents by idotless; sub j' @CombiningTopAccents by jdotless; } ccmp_DFLT_1; lookup ccmp_DFLT_2 { lookupflag 0; sub brevecomb acutecomb by brevecomb_acutecomb; sub brevecomb gravecomb by brevecomb_gravecomb; sub brevecomb hookabovecomb by brevecomb_hookabovecomb; sub brevecomb tildecomb by brevecomb_tildecomb; sub circumflexcomb acutecomb by circumflexcomb_acutecomb; sub circumflexcomb gravecomb by circumflexcomb_gravecomb; sub circumflexcomb hookabovecomb by circumflexcomb_hookabovecomb; sub circumflexcomb tildecomb by circumflexcomb_tildecomb; } ccmp_DFLT_2; "; tag = ccmp; }, { automatic = 1; code = "script latn; language AZE; lookup locl_latn_0 { sub i by idotaccent; } locl_latn_0; language CRT; lookup locl_latn_0; language KAZ; lookup locl_latn_0; language TAT; lookup locl_latn_0; language TRK; lookup locl_latn_0; script latn; language ROM; lookup locl_latn_1 { sub Scedilla by Scommaaccent; sub scedilla by scommaaccent; sub Tcedilla by Tcommaaccent; sub tcedilla by tcommaaccent; } locl_latn_1; language MOL; lookup locl_latn_1; script latn; language MAH; lookup locl_latn_2 { sub Lcommaaccent by Lcommaaccent.loclMAH; sub Ncommaaccent by Ncommaaccent.loclMAH; sub lcommaaccent by lcommaaccent.loclMAH; sub ncommaaccent by ncommaaccent.loclMAH; sub commaaccentcomb by commaaccentcomb.loclMAH; } locl_latn_2; script latn; language CAT; lookup locl_latn_3 { sub l periodcentered' l by periodcentered.loclCAT; sub L periodcentered' L by periodcentered.loclCAT.case; } locl_latn_3; script latn; language NLD; lookup locl_latn_4 { sub iacute j' by jacute; sub Iacute J' by Jacute; } locl_latn_4; "; tag = locl; }, { automatic = 1; code = "sub periodcentered.loclCAT by periodcentered.loclCAT.case; "; tag = case; }, { code = "sub a by a.ss01; sub aacute by aacute.ss01; sub abreve by abreve.ss01; sub abreveacute by abreveacute.ss01; sub abrevedotbelow by abrevedotbelow.ss01; sub abrevegrave by abrevegrave.ss01; sub abrevehookabove by abrevehookabove.ss01; sub abrevetilde by abrevetilde.ss01; sub acircumflex by acircumflex.ss01; sub acircumflexacute by acircumflexacute.ss01; sub acircumflexdotbelow by acircumflexdotbelow.ss01; sub acircumflexgrave by acircumflexgrave.ss01; sub acircumflexhookabove by acircumflexhookabove.ss01; sub acircumflextilde by acircumflextilde.ss01; sub adieresis by adieresis.ss01; sub adotbelow by adotbelow.ss01; sub agrave by agrave.ss01; sub ahookabove by ahookabove.ss01; sub amacron by amacron.ss01; sub aogonek by aogonek.ss01; sub aring by aring.ss01; sub atilde by atilde.ss01; sub g by g.ss01; sub gbreve by gbreve.ss01; sub gcommaaccent by gcommaaccent.ss01; sub gdotaccent by gdotaccent.ss01; sub gmacron by gmacron.ss01; "; labels = ( { language = dflt; value = ss01; } ); tag = ss01; }, { automatic = 1; code = "sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; sub N o period by numero; "; tag = ordn; } ); fontMaster = ( { axesValues = ( 300 ); customParameters = ( { name = typoAscender; value = 950; }, { name = typoDescender; value = -250; }, { name = typoLineGap; value = 0; }, { name = winAscent; value = 1150; }, { name = winDescent; value = 404; }, { name = hheaAscender; value = 950; }, { name = hheaDescender; value = -250; }, { name = hheaLineGap; value = 0; } ); guides = ( { angle = 262.9959; pos = (108,350); } ); iconName = Light; id = m01; metricValues = ( { pos = 720; }, { pos = 700; }, { pos = 500; }, { }, { pos = -230; }, { pos = 512; }, { pos = -12; }, { pos = 712; }, { pos = 7; } ); name = "Light Italic"; visible = 1; }, { axesValues = ( 400 ); customParameters = ( { name = typoAscender; value = 950; }, { name = typoDescender; value = -250; }, { name = typoLineGap; value = 0; }, { name = winAscent; value = 1150; }, { name = winDescent; value = 404; }, { name = hheaAscender; value = 950; }, { name = hheaDescender; value = -250; }, { name = hheaLineGap; value = 0; } ); id = m002; metricValues = ( { pos = 720; }, { pos = 700; }, { pos = 500; }, { }, { pos = -230; }, { pos = 512; }, { pos = -12; }, { pos = 712; }, { pos = 7; } ); name = Italic; visible = 1; }, { axesValues = ( 700 ); customParameters = ( { name = typoAscender; value = 950; }, { name = typoDescender; value = -250; }, { name = typoLineGap; value = 0; }, { name = winAscent; value = 1150; }, { name = winDescent; value = 404; }, { name = hheaAscender; value = 950; }, { name = hheaDescender; value = -250; }, { name = hheaLineGap; value = 0; } ); iconName = Bold; id = m003; metricValues = ( { pos = 720; }, { pos = 700; }, { pos = 508; }, { }, { pos = -230; }, { pos = 520; }, { pos = -12; }, { pos = 712; }, { pos = 7; } ); name = "Bold Italic"; } ); glyphs = ( { glyphname = A; kernLeft = A; kernRight = A; lastChange = "2025-01-01 08:57:52 +0000"; layers = ( { anchors = ( { name = ogonek; pos = (516,29); }, { name = top; pos = (349,712); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (50,0,l), (376,700,l), (314,700,l), (-21,0,l) ); }, { closed = 1; nodes = ( (444,206,l), (450,262,l), (129,262,l), (123,206,l) ); }, { closed = 1; nodes = ( (539,0,l), (376,700,l), (318,700,l), (475,0,l) ); } ); width = 580; }, { anchors = ( { name = ogonek; pos = (525,34); }, { name = top; pos = (355,712); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (73,0,l), (394,700,l), (308,700,l), (-23,0,l) ); }, { closed = 1; nodes = ( (448,195,l), (458,275,l), (137,275,l), (127,195,l) ); }, { closed = 1; nodes = ( (552,0,l), (394,700,l), (314,700,l), (464,0,l) ); } ); width = 591; }, { anchors = ( { name = ogonek; pos = (595,41); }, { name = top; pos = (392,712); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (132,0,l), (455,700,l), (305,700,l), (-26,0,l) ); }, { closed = 1; nodes = ( (490,161,l), (505,287,l), (183,287,l), (168,161,l) ); }, { closed = 1; nodes = ( (633,0,l), (475,700,l), (337,700,l), (481,0,l) ); } ); width = 669; } ); unicode = 65; }, { glyphname = Aacute; kernLeft = A; kernRight = A; lastChange = "2025-01-01 09:00:47 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (267,200); ref = acutecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (276,200); ref = acutecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (292,204); ref = acutecomb; } ); width = 669; } ); unicode = 193; }, { glyphname = Abreve; kernLeft = A; kernRight = A; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (172,200); ref = brevecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (180,200); ref = brevecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (192,204); ref = brevecomb; } ); width = 669; } ); unicode = 258; }, { glyphname = Abreveacute; kernLeft = A; kernRight = A; lastChange = "2025-01-08 14:16:21 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (149,200); ref = brevecomb_acutecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (154,212); ref = brevecomb_acutecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (218,204); ref = brevecomb_acutecomb; } ); width = 669; } ); unicode = 7854; }, { glyphname = Abrevedotbelow; kernLeft = A; kernRight = A; lastChange = "2025-01-08 14:23:48 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (209,0); ref = dotbelowcomb; }, { pos = (172,200); ref = brevecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (232,0); ref = dotbelowcomb; }, { pos = (180,200); ref = brevecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (230,0); ref = dotbelowcomb; }, { pos = (192,204); ref = brevecomb; } ); width = 669; } ); unicode = 7862; }, { glyphname = Abrevegrave; kernLeft = A; kernRight = A; lastChange = "2025-01-08 14:17:44 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (133,200); ref = brevecomb_gravecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (144,212); ref = brevecomb_gravecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (219,204); ref = brevecomb_gravecomb; } ); width = 669; } ); unicode = 7856; }, { glyphname = Abrevehookabove; kernLeft = A; kernRight = A; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (129,200); ref = brevecomb_hookabovecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (124,212); ref = brevecomb_hookabovecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (186,204); ref = brevecomb_hookabovecomb; } ); width = 669; } ); unicode = 7858; }, { glyphname = Abrevetilde; kernLeft = A; kernRight = A; lastChange = "2025-01-08 14:17:09 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (112,200); ref = brevecomb_tildecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (126,200); ref = brevecomb_tildecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (216,204); ref = brevecomb_tildecomb; } ); width = 669; } ); unicode = 7860; }, { glyphname = Acircumflex; kernLeft = A; kernRight = A; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (183,200); ref = circumflexcomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (166,200); ref = circumflexcomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (182,204); ref = circumflexcomb; } ); width = 669; } ); unicode = 194; }, { glyphname = Acircumflexacute; kernLeft = A; kernRight = A; lastChange = "2025-01-08 14:16:50 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (65,200); ref = circumflexcomb_acutecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (75,212); ref = circumflexcomb_acutecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (212,204); ref = circumflexcomb_acutecomb; } ); width = 669; } ); unicode = 7844; }, { glyphname = Acircumflexdotbelow; kernLeft = A; kernRight = A; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (236,0); ref = dotbelowcomb; }, { pos = (183,200); ref = circumflexcomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (237,0); ref = dotbelowcomb; }, { pos = (166,200); ref = circumflexcomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (255,0); ref = dotbelowcomb; }, { pos = (182,204); ref = circumflexcomb; } ); width = 669; } ); unicode = 7852; }, { glyphname = Acircumflexgrave; kernLeft = A; kernRight = A; lastChange = "2025-01-08 14:17:48 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (207,200); ref = circumflexcomb_gravecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (199,212); ref = circumflexcomb_gravecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (212,205); ref = circumflexcomb_gravecomb; } ); width = 669; } ); unicode = 7846; }, { glyphname = Acircumflexhookabove; kernLeft = A; kernRight = A; lastChange = "2025-01-08 14:24:33 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (210,200); ref = circumflexcomb_hookabovecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (202,212); ref = circumflexcomb_hookabovecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (211,204); ref = circumflexcomb_hookabovecomb; } ); width = 669; } ); unicode = 7848; }, { glyphname = Acircumflextilde; kernLeft = A; kernRight = A; lastChange = "2025-01-08 14:34:31 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (215,212); ref = circumflexcomb_tildecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (206,212); ref = circumflexcomb_tildecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (187,204); ref = circumflexcomb_tildecomb; } ); width = 669; } ); unicode = 7850; }, { glyphname = Adieresis; kernLeft = A; kernRight = A; lastChange = "2025-01-01 09:01:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (152,200); ref = dieresiscomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (158,200); ref = dieresiscomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (146,204); ref = dieresiscomb; } ); width = 669; } ); unicode = 196; }, { glyphname = Adotbelow; kernLeft = A; kernRight = A; lastChange = "2025-01-01 09:02:24 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (228,0); ref = dotbelowcomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (229,0); ref = dotbelowcomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (251,0); ref = dotbelowcomb; } ); width = 669; } ); unicode = 7840; }, { glyphname = Agrave; kernLeft = A; kernRight = A; lastChange = "2025-01-01 09:02:42 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (153,200); ref = gravecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (160,200); ref = gravecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (162,204); ref = gravecomb; } ); width = 669; } ); unicode = 192; }, { glyphname = Ahookabove; kernLeft = A; kernRight = A; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (268,212); ref = hookabovecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (255,212); ref = hookabovecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (296,204); ref = hookabovecomb; } ); width = 669; } ); unicode = 7842; }, { glyphname = Amacron; kernLeft = A; kernRight = A; lastChange = "2025-01-08 14:20:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (184,200); ref = macroncomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (148,200); ref = macroncomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (189,201); ref = macroncomb; } ); width = 669; } ); unicode = 256; }, { glyphname = Aogonek; kernLeft = A; kernRight = A; lastChange = "2025-01-01 09:04:23 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (411,5); ref = ogonekcomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (420,1); ref = ogonekcomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (489,0); ref = ogonekcomb; } ); width = 669; } ); unicode = 260; }, { glyphname = Aring; kernLeft = A; kernRight = A; lastChange = "2025-01-01 09:04:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (192,200); ref = ringcomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (192,200); ref = ringcomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (216,204); ref = ringcomb; } ); width = 669; } ); unicode = 197; }, { glyphname = Atilde; kernLeft = A; kernRight = A; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (156,200); ref = tildecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (169,200); ref = tildecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (162,204); ref = tildecomb; } ); width = 669; } ); unicode = 195; }, { glyphname = AE; kernLeft = A; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = top; pos = (649,701); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (35,0,l), (492,700,l), (430,700,l), (-36,0,l) ); }, { closed = 1; nodes = ( (408,190,l), (415,246,l), (161,246,l), (154,190,l) ); }, { closed = 1; nodes = ( (776,0,l), (783,56,l), (449,56,l), (483,332,l), (755,332,l), (762,388,l), (490,388,l), (521,644,l), (855,644,l), (862,700,l), (464,700,l), (378,0,l) ); } ); width = 867; }, { anchors = ( { name = top; pos = (669,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (73,0,l), (525,700,l), (439,700,l), (-23,0,l) ); }, { closed = 1; nodes = ( (459,169,l), (469,249,l), (185,249,l), (175,169,l) ); }, { closed = 1; nodes = ( (807,0,l), (817,80,l), (494,80,l), (524,320,l), (786,320,l), (795,398,l), (533,398,l), (560,620,l), (883,620,l), (893,700,l), (482,700,l), (396,0,l) ); } ); width = 896; }, { anchors = ( { name = top; pos = (715,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (132,0,l), (589,700,l), (439,700,l), (-26,0,l) ); }, { closed = 1; nodes = ( (460,142,l), (476,268,l), (185,268,l), (169,142,l) ); }, { closed = 1; nodes = ( (894,0,l), (909,126,l), (598,126,l), (619,297,l), (879,297,l), (895,423,l), (635,423,l), (653,574,l), (964,574,l), (980,700,l), (523,700,l), (437,0,l) ); } ); width = 967; } ); unicode = 198; }, { glyphname = AEacute; kernLeft = A; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = AE; }, { pos = (567,189); ref = acutecomb; } ); width = 867; }, { layerId = m002; shapes = ( { ref = AE; }, { pos = (590,188); ref = acutecomb; } ); width = 896; }, { layerId = m003; shapes = ( { ref = AE; }, { pos = (615,192); ref = acutecomb; } ); width = 967; } ); unicode = 508; }, { glyphname = B; kernLeft = B; kernRight = B; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (299,0,ls), (459,0,o), (545,72,o), (561,202,cs), (572,288,o), (530,343,o), (439,365,c), (501,385,o), (551,438,o), (562,526,cs), (576,642,o), (506,701,o), (374,701,cs), (155,701,l), (69,0,l) ); }, { closed = 1; nodes = ( (170,330,l), (170,330,o), (359,330,o), (359,330,cs), (457,330,o), (508,277,o), (499,202,cs), (489,122,o), (427,56,o), (316,56,cs), (136,56,l) ); }, { closed = 1; nodes = ( (208,645,l), (208,645,o), (362,645,o), (362,645,cs), (469,645,o), (508,595,o), (500,525,cs), (489,439,o), (429,386,o), (332,386,cs), (177,386,l) ); } ); width = 618; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (322,0,ls), (487,0,o), (575,73,o), (591,200,cs), (602,287,o), (561,344,o), (469,366,c), (530,384,o), (579,424,o), (591,521,cs), (606,637,o), (537,701,o), (400,701,cs), (164,701,l), (78,0,l) ); }, { closed = 1; nodes = ( (205,319,l), (205,319,o), (371,319,o), (371,319,cs), (463,319,o), (507,267,o), (499,200,cs), (489,120,o), (429,80,o), (332,80,cs), (176,80,l) ); }, { closed = 1; nodes = ( (243,621,l), (243,621,o), (386,621,o), (386,621,cs), (459,621,o), (508,587,o), (500,520,cs), (490,435,o), (432,399,o), (359,399,cs), (215,399,l) ); } ); width = 655; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (371,0,ls), (542,0,o), (635,77,o), (651,204,cs), (661,283,o), (621,341,o), (545,363,c), (593,386,o), (640,434,o), (650,518,cs), (663,620,o), (597,701,o), (449,701,cs), (164,701,l), (78,0,l) ); }, { closed = 1; nodes = ( (260,293,l), (260,293,o), (397,293,o), (397,293,c), (464,293,o), (504,264,o), (498,211,cs), (490,145,o), (443,126,o), (366,126,cs), (239,126,l) ); }, { closed = 1; nodes = ( (294,575,l), (294,575,o), (415,575,o), (415,575,cs), (471,575,o), (501,549,o), (496,504,cs), (488,441,o), (452,419,o), (397,419,cs), (275,419,l) ); } ); width = 701; } ); unicode = 66; }, { glyphname = C; kernLeft = O; lastChange = "2025-01-08 14:19:36 +0000"; layers = ( { anchors = ( { name = bottom; pos = (307,-6); }, { name = top; pos = (411,713); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (467,-13,o), (567,76,o), (610,199,c), (551,211,l), (515,117,o), (441,43,o), (329,43,cs), (182,43,o), (112,167,o), (135,357,cs), (158,542,o), (273,657,o), (404,657,cs), (502,657,o), (575,581,o), (581,488,c), (647,501,l), (634,624,o), (556,713,o), (411,713,cs), (208,713,o), (96,541,o), (73,355,cs), (49,163,o), (114,-13,o), (322,-13,cs) ); } ); width = 663; }, { anchors = ( { name = bottom; pos = (318,-13); }, { name = top; pos = (417,713); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (474,-13,o), (587,75,o), (630,198,c), (543,216,l), (509,130,o), (430,67,o), (338,67,cs), (207,67,o), (147,194,o), (167,357,cs), (186,512,o), (276,633,o), (407,633,cs), (499,633,o), (563,570,o), (576,484,c), (667,502,l), (654,625,o), (563,713,o), (417,713,cs), (211,713,o), (101,548,o), (77,355,cs), (54,171,o), (121,-13,o), (328,-13,cs) ); } ); width = 689; }, { anchors = ( { name = bottom; pos = (332,-12); }, { name = top; pos = (437,713); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (502,-12,o), (601,76,o), (644,199,c), (507,227,l), (485,161,o), (422,119,o), (366,119,cs), (245,119,o), (198,198,o), (218,357,cs), (235,499,o), (298,583,o), (419,583,cs), (479,583,o), (529,532,o), (537,474,c), (681,502,l), (669,625,o), (566,713,o), (437,713,cs), (213,713,o), (87,549,o), (63,355,cs), (41,171,o), (104,-12,o), (350,-12,cs) ); } ); width = 684; }, { associatedMasterId = m01; layerId = "09577142-2BA9-4939-A4E9-BA986ECE9950"; name = "27 Mar 24 at 12:02"; shapes = ( { closed = 1; nodes = ( (596,-12,o), (684,157,o), (684,349,cs), (684,543,o), (596,712,o), (372,712,cs), (148,712,o), (60,543,o), (60,349,cs), (60,157,o), (148,-12,o), (372,-12,cs) ); }, { closed = 1; nodes = ( (217,44,o), (122,154,o), (122,349,cs), (122,540,o), (217,656,o), (372,656,cs), (527,656,o), (622,540,o), (622,349,cs), (622,154,o), (527,44,o), (372,44,cs) ); } ); width = 693; } ); unicode = 67; }, { glyphname = Cacute; kernLeft = O; kernRight = O; lastChange = "2025-01-08 14:19:36 +0000"; layers = ( { layerId = m01; shapes = ( { ref = C; }, { pos = (329,201); ref = acutecomb; } ); width = 663; }, { layerId = m002; shapes = ( { ref = C; }, { pos = (338,201); ref = acutecomb; } ); width = 689; }, { layerId = m003; shapes = ( { ref = C; }, { pos = (337,205); ref = acutecomb; } ); width = 684; } ); unicode = 262; }, { glyphname = Ccaron; kernLeft = O; kernRight = O; lastChange = "2025-01-08 14:19:36 +0000"; layers = ( { layerId = m01; shapes = ( { ref = C; }, { pos = (245,201); ref = caroncomb; } ); width = 663; }, { layerId = m002; shapes = ( { ref = C; }, { pos = (233,201); ref = caroncomb; } ); width = 689; }, { layerId = m003; shapes = ( { ref = C; }, { pos = (225,205); ref = caroncomb; } ); width = 684; } ); unicode = 268; }, { glyphname = Ccedilla; kernLeft = O; kernRight = O; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = C; }, { pos = (230,-8); ref = cedillacomb; } ); width = 663; }, { layerId = m002; shapes = ( { ref = C; }, { pos = (231,-15); ref = cedillacomb; } ); width = 689; }, { layerId = m003; shapes = ( { ref = C; }, { pos = (235,-11); ref = cedillacomb; } ); width = 684; } ); unicode = 199; }, { glyphname = Ccircumflex; kernLeft = O; kernRight = O; lastChange = "2025-01-08 14:19:36 +0000"; layers = ( { layerId = m01; shapes = ( { ref = C; }, { pos = (245,201); ref = circumflexcomb; } ); width = 663; }, { layerId = m002; shapes = ( { ref = C; }, { pos = (228,201); ref = circumflexcomb; } ); width = 689; }, { layerId = m003; shapes = ( { ref = C; }, { pos = (227,205); ref = circumflexcomb; } ); width = 684; } ); unicode = 264; }, { glyphname = Cdotaccent; kernLeft = O; kernRight = O; lastChange = "2025-01-08 14:19:43 +0000"; layers = ( { layerId = m01; shapes = ( { ref = C; }, { pos = (313,201); ref = dotaccentcomb; } ); width = 663; }, { layerId = m002; shapes = ( { ref = C; }, { pos = (311,201); ref = dotaccentcomb; } ); width = 689; }, { layerId = m003; shapes = ( { ref = C; }, { pos = (310,205); ref = dotaccentcomb; } ); width = 684; } ); unicode = 266; }, { glyphname = D; kernRight = O; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (283,0); }, { name = top; pos = (369,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (260,0,ls), (486,0,o), (611,141,o), (636,349,cs), (662,560,o), (572,700,o), (346,700,cs), (159,700,l), (73,0,l) ); }, { closed = 1; nodes = ( (216,644,l), (342,644,ls), (536,644,o), (594,507,o), (574,350,cs), (555,192,o), (464,56,o), (270,56,cs), (144,56,l) ); } ); width = 681; }, { anchors = ( { name = bottom; pos = (289,0); }, { name = top; pos = (375,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (260,0,ls), (492,0,o), (617,141,o), (642,349,cs), (668,560,o), (578,700,o), (346,700,cs), (151,700,l), (65,0,l) ); }, { closed = 1; nodes = ( (229,620,l), (339,620,ls), (502,620,o), (570,507,o), (550,350,cs), (531,192,o), (436,80,o), (273,80,cs), (163,80,l) ); } ); width = 680; }, { anchors = ( { name = bottom; pos = (320,0); }, { name = top; pos = (406,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (307,0,ls), (537,0,o), (661,141,o), (687,349,cs), (713,560,o), (623,700,o), (393,700,cs), (145,700,l), (59,0,l) ); }, { closed = 1; nodes = ( (275,574,l), (380,574,ls), (498,574,o), (552,507,o), (533,350,cs), (513,192,o), (443,126,o), (325,126,cs), (220,126,l) ); } ); width = 723; } ); unicode = 68; }, { glyphname = Dcaron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = D; }, { pos = (203,188); ref = caroncomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = D; }, { pos = (191,188); ref = caroncomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = D; }, { pos = (194,192); ref = caroncomb; } ); width = 723; } ); unicode = 270; }, { glyphname = Dcroat; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Eth; } ); width = 681; }, { layerId = m002; shapes = ( { ref = Eth; } ); width = 680; }, { layerId = m003; shapes = ( { ref = Eth; } ); width = 723; } ); unicode = 272; }, { glyphname = Ddotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = D; }, { pos = (257,1); ref = dotbelowcomb; } ); width = 723; }, { layerId = m01; shapes = ( { ref = D; }, { pos = (251,0); ref = dotbelowcomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = D; }, { pos = (245,0); ref = dotbelowcomb; } ); width = 680; } ); unicode = 7692; }, { glyphname = Dmacronbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = D; }, { pos = (171,1); ref = macronbelowcomb; } ); width = 723; }, { layerId = m01; shapes = ( { ref = D; }, { pos = (173,12); ref = macronbelowcomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = D; }, { pos = (161,12); ref = macronbelowcomb; } ); width = 680; } ); unicode = 7694; }, { glyphname = Eth; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-31,0); ref = D; }, { closed = 1; nodes = ( (354,329,l), (361,385,l), (39,385,l), (32,329,l) ); } ); width = 681; }, { layerId = m002; shapes = ( { pos = (-31,0); ref = D; }, { closed = 1; nodes = ( (372,315,l), (381,385,l), (44,385,l), (35,315,l) ); } ); width = 680; }, { layerId = m003; shapes = ( { pos = (-31,0); ref = D; }, { closed = 1; nodes = ( (388,291,l), (401,401,l), (18,401,l), (5,291,l) ); } ); width = 723; } ); unicode = 208; }, { glyphname = E; kernLeft = E; kernRight = E; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (268,0); }, { name = top; pos = (354,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (467,0,l), (474,56,l), (140,56,l), (174,332,l), (446,332,l), (453,388,l), (181,388,l), (212,644,l), (546,644,l), (553,700,l), (155,700,l), (69,0,l) ); } ); width = 558; }, { anchors = ( { name = bottom; pos = (271,0); }, { name = top; pos = (357,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (476,0,l), (486,80,l), (163,80,l), (193,320,l), (455,320,l), (464,398,l), (202,398,l), (229,620,l), (552,620,l), (562,700,l), (151,700,l), (65,0,l) ); } ); width = 564; }, { anchors = ( { name = bottom; pos = (288,0); }, { name = top; pos = (374,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (516,0,l), (531,126,l), (220,126,l), (241,297,l), (501,297,l), (517,423,l), (257,423,l), (275,574,l), (586,574,l), (602,700,l), (145,700,l), (59,0,l) ); } ); width = 589; } ); unicode = 69; }, { glyphname = Eacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (272,188); ref = acutecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (278,188); ref = acutecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (274,192); ref = acutecomb; } ); width = 589; } ); unicode = 201; }, { glyphname = Ebreve; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (177,188); ref = brevecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (182,188); ref = brevecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (174,192); ref = brevecomb; } ); width = 589; } ); unicode = 276; }, { glyphname = Ecaron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (188,188); ref = caroncomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (173,188); ref = caroncomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (162,192); ref = caroncomb; } ); width = 589; } ); unicode = 282; }, { glyphname = Ecircumflex; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (188,188); ref = circumflexcomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (168,188); ref = circumflexcomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (164,192); ref = circumflexcomb; } ); width = 589; } ); unicode = 202; }, { glyphname = Ecircumflexacute; lastChange = "2025-01-08 14:16:50 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (70,188); ref = circumflexcomb_acutecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (77,200); ref = circumflexcomb_acutecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (194,192); ref = circumflexcomb_acutecomb; } ); width = 589; } ); unicode = 7870; }, { glyphname = Ecircumflexdotbelow; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (236,0); ref = dotbelowcomb; }, { pos = (188,188); ref = circumflexcomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (227,0); ref = dotbelowcomb; }, { pos = (168,188); ref = circumflexcomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (225,1); ref = dotbelowcomb; }, { pos = (164,192); ref = circumflexcomb; } ); width = 589; } ); unicode = 7878; }, { glyphname = Ecircumflexgrave; lastChange = "2025-01-08 14:17:48 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (212,188); ref = circumflexcomb_gravecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (201,200); ref = circumflexcomb_gravecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (194,193); ref = circumflexcomb_gravecomb; } ); width = 589; } ); unicode = 7872; }, { glyphname = Ecircumflexhookabove; lastChange = "2025-01-08 14:24:33 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (215,188); ref = circumflexcomb_hookabovecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (204,200); ref = circumflexcomb_hookabovecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (193,192); ref = circumflexcomb_hookabovecomb; } ); width = 589; } ); unicode = 7874; }, { glyphname = Ecircumflextilde; lastChange = "2025-01-08 14:34:31 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (220,200); ref = circumflexcomb_tildecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (208,200); ref = circumflexcomb_tildecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (169,192); ref = circumflexcomb_tildecomb; } ); width = 589; } ); unicode = 7876; }, { glyphname = Edieresis; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (157,188); ref = dieresiscomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (160,188); ref = dieresiscomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (128,192); ref = dieresiscomb; } ); width = 589; } ); unicode = 203; }, { glyphname = Edotaccent; lastChange = "2025-01-08 14:19:43 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (256,188); ref = dotaccentcomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (251,188); ref = dotaccentcomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (247,192); ref = dotaccentcomb; } ); width = 589; } ); unicode = 278; }, { glyphname = Edotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (236,0); ref = dotbelowcomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (227,0); ref = dotbelowcomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (225,1); ref = dotbelowcomb; } ); width = 589; } ); unicode = 7864; }, { glyphname = Egrave; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (158,188); ref = gravecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (162,188); ref = gravecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (144,192); ref = gravecomb; } ); width = 589; } ); unicode = 200; }, { glyphname = Ehookabove; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (273,200); ref = hookabovecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (257,200); ref = hookabovecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (278,192); ref = hookabovecomb; } ); width = 589; } ); unicode = 7866; }, { glyphname = Emacron; lastChange = "2025-01-08 14:20:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (189,188); ref = macroncomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (150,188); ref = macroncomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (171,189); ref = macroncomb; } ); width = 589; } ); unicode = 274; }, { glyphname = Eogonek; lastChange = "2025-01-01 09:05:47 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (339,5); ref = ogonekcomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (344,1); ref = ogonekcomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (372,0); ref = ogonekcomb; } ); width = 589; } ); unicode = 280; }, { glyphname = Eopen; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (267,0); }, { name = top; pos = (353,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (407,-12,o), (513,61,o), (542,195,c), (481,199,l), (460,120,o), (403,44,o), (280,44,cs), (156,44,o), (106,123,o), (116,203,cs), (125,278,o), (190,350,o), (315,350,cs), (328,350,o), (341,349,o), (353,348,c), (360,404,l), (349,402,o), (336,401,o), (323,401,cs), (218,401,o), (182,465,o), (190,530,cs), (197,586,o), (246,656,o), (352,656,cs), (437,656,o), (476,611,o), (485,564,c), (547,584,l), (534,668,o), (461,712,o), (360,712,cs), (241,712,o), (143,649,o), (128,530,cs), (120,465,o), (156,415,o), (192,384,c), (126,348,o), (64,286,o), (54,203,cs), (37,64,o), (133,-12,o), (272,-12,cs) ); } ); width = 596; }, { anchors = ( { name = bottom; pos = (299,0); }, { name = top; pos = (385,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (470,-12,o), (574,63,o), (606,200,c), (515,207,l), (483,93,o), (412,68,o), (338,68,cs), (238,68,o), (183,123,o), (193,203,cs), (202,278,o), (266,340,o), (369,340,cs), (384,340,o), (398,340,o), (413,340,c), (423,418,l), (409,418,o), (394,418,o), (380,418,cs), (293,418,o), (255,465,o), (263,530,cs), (270,586,o), (316,636,o), (404,636,cs), (482,636,o), (521,597,o), (523,549,c), (611,576,l), (602,665,o), (526,712,o), (415,712,cs), (288,712,o), (190,649,o), (175,530,cs), (167,465,o), (191,415,o), (227,384,c), (161,348,o), (111,286,o), (101,203,cs), (84,64,o), (182,-12,o), (327,-12,cs) ); } ); width = 660; }, { anchors = ( { name = bottom; pos = (313,0); }, { name = top; pos = (399,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (521,-12,o), (618,81,o), (648,207,c), (502,216,l), (488,161,o), (451,116,o), (364,116,cs), (281,116,o), (251,157,o), (258,212,cs), (264,260,o), (304,306,o), (385,306,cs), (400,306,o), (417,307,o), (432,307,c), (448,434,l), (433,434,o), (417,433,o), (402,433,cs), (354,433,o), (318,458,o), (325,512,cs), (329,550,o), (370,584,o), (419,584,cs), (460,584,o), (492,559,o), (498,527,c), (651,569,l), (642,656,o), (565,712,o), (435,712,cs), (290,712,o), (190,639,o), (177,530,cs), (169,465,o), (193,415,o), (229,384,c), (163,348,o), (113,286,o), (103,203,cs), (87,74,o), (187,-12,o), (347,-12,cs) ); } ); width = 687; } ); unicode = 400; }, { glyphname = Etilde; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (161,188); ref = tildecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (171,188); ref = tildecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (144,192); ref = tildecomb; } ); width = 589; } ); unicode = 7868; }, { glyphname = Schwa; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (321,0); }, { name = top; pos = (407,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (503,-12,o), (643,126,o), (671,352,cs), (698,575,o), (601,712,o), (410,712,cs), (245,712,o), (142,608,o), (95,496,c), (157,482,l), (191,559,o), (268,656,o), (397,656,cs), (552,656,o), (631,531,o), (609,356,cs), (588,186,o), (496,44,o), (327,44,cs), (179,44,o), (114,174,o), (130,310,c), (623,310,l), (630,365,l), (74,365,l), (69,326,l), (43,112,o), (159,-12,o), (325,-12,cs) ); } ); width = 704; }, { anchors = ( { name = bottom; pos = (332,0); }, { name = top; pos = (418,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (518,-12,o), (658,126,o), (686,353,cs), (713,574,o), (607,712,o), (413,712,cs), (240,712,o), (146,618,o), (98,506,c), (182,485,l), (210,569,o), (301,632,o), (394,632,c), (566,632,o), (610,487,o), (594,357,cs), (573,187,o), (483,68,o), (333,68,cs), (201,68,o), (145,163,o), (161,287,c), (607,287,l), (616,367,l), (78,367,l), (74,334,l), (45,96,o), (155,-12,o), (328,-12,cs) ); } ); width = 726; }, { anchors = ( { name = bottom; pos = (344,0); }, { name = top; pos = (430,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (507,-12,o), (697,103,o), (727,347,cs), (756,583,o), (599,712,o), (428,712,cs), (321,712,o), (185,663,o), (103,512,c), (241,469,l), (269,538,o), (342,582,o), (409,582,cs), (527,582,o), (593,504,o), (573,347,cs), (556,204,o), (470,118,o), (359,118,cs), (258,118,o), (204,205,o), (214,286,c), (597,286,l), (610,402,l), (69,402,l), (64,357,l), (35,126,o), (149,-12,o), (341,-12,cs) ); } ); width = 749; } ); unicode = 399; }, { glyphname = F; kernLeft = E; kernRight = F; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (133,0,l), (174,335,l), (446,335,l), (453,391,l), (181,391,l), (212,644,l), (546,644,l), (553,700,l), (155,700,l), (69,0,l) ); } ); width = 558; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (153,0,l), (193,320,l), (455,320,l), (464,400,l), (202,400,l), (229,620,l), (552,620,l), (562,700,l), (151,700,l), (65,0,l) ); } ); width = 541; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (205,0,l), (241,297,l), (501,297,l), (517,423,l), (257,423,l), (275,574,l), (586,574,l), (602,700,l), (145,700,l), (59,0,l) ); } ); width = 577; } ); unicode = 70; }, { glyphname = G; kernLeft = O; kernRight = G; lastChange = "2025-01-08 14:18:45 +0000"; layers = ( { anchors = ( { name = bottom; pos = (316,-13); }, { name = top; pos = (416,713); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (438,-13,o), (529,49,o), (563,127,c), (563,127,o), (554,0,o), (554,0,c), (606,0,l), (651,368,l), (372,368,l), (366,312,l), (583,312,l), (564,159,o), (459,43,o), (334,43,cs), (180,43,o), (110,167,o), (133,357,cs), (156,542,o), (271,657,o), (409,657,cs), (515,657,o), (588,581,o), (594,488,c), (660,501,l), (647,624,o), (569,713,o), (416,713,cs), (206,713,o), (94,541,o), (71,355,cs), (47,163,o), (112,-13,o), (327,-13,cs) ); } ); width = 701; }, { anchors = ( { name = bottom; pos = (329,-12); }, { name = top; pos = (418,713); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (429,-12,o), (511,30,o), (560,107,c), (560,107,o), (560,0,o), (560,0,c), (629,0,l), (674,368,l), (394,368,l), (384,284,l), (575,284,l), (560,158,o), (447,67,o), (344,67,cs), (202,67,o), (145,194,o), (165,357,cs), (184,512,o), (274,633,o), (416,633,c), (519,633,o), (583,570,o), (596,484,c), (687,502,l), (674,625,o), (583,713,o), (426,713,c), (209,713,o), (99,548,o), (75,355,cs), (51,158,o), (122,-12,o), (347,-12,c) ); } ); width = 740; }, { anchors = ( { name = bottom; pos = (323,-12); }, { name = top; pos = (442,712); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (411,-12,o), (485,13,o), (533,80,c), (533,80,o), (535,0,o), (535,0,c), (633,0,l), (679,380,l), (394,380,l), (380,260,l), (530,260,l), (512,170,o), (432,119,o), (369,119,cs), (242,119,o), (195,198,o), (215,357,cs), (232,499,o), (299,583,o), (426,583,cs), (490,583,o), (539,532,o), (547,474,c), (691,502,l), (679,625,o), (578,712,o), (442,712,cs), (212,712,o), (84,549,o), (60,355,cs), (38,171,o), (101,-12,o), (353,-12,cs) ); } ); width = 726; }, { associatedMasterId = m01; layerId = "60D9B074-3643-47F8-BA45-851CCB9418B6"; name = "6 Jul 24 at 15:54"; shapes = ( { closed = 0; nodes = ( (514,106,l) ); }, { closed = 0; nodes = ( (531,106,l), (533,94,o), (544,0,o), (544,0,c), (596,0,l), (596,368,l), (349,368,l), (349,312,l), (516,312,l), (516,158,o), (420,43,o), (299,43,cs), (142,43,o), (57,167,o), (57,357,cs), (57,542,o), (158,657,o), (299,657,cs), (406,657,o), (488,581,o), (506,488,c), (570,501,l), (542,624,o), (453,713,o), (299,713,cs), (86,713,o), (-5,541,o), (-5,355,cs), (-5,163,o), (81,-13,o), (299,-13,cs), (453,-13,o), (542,76,o), (570,199,c) ); }, { closed = 1; nodes = ( (453,-13,o), (542,76,o), (570,199,c), (510,211,l), (485,117,o), (420,43,o), (299,43,cs), (142,43,o), (57,167,o), (57,357,cs), (57,542,o), (158,657,o), (299,657,cs), (406,657,o), (488,581,o), (506,488,c), (570,501,l), (542,624,o), (453,713,o), (299,713,cs), (86,713,o), (-5,541,o), (-5,355,cs), (-5,163,o), (81,-13,o), (299,-13,cs) ); } ); width = 600; } ); unicode = 71; }, { glyphname = Gbreve; lastChange = "2025-01-08 14:18:45 +0000"; layers = ( { layerId = m01; shapes = ( { ref = G; }, { pos = (239,201); ref = brevecomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = G; }, { pos = (243,201); ref = brevecomb; } ); width = 740; }, { layerId = m003; shapes = ( { ref = G; }, { pos = (242,204); ref = brevecomb; } ); width = 726; } ); unicode = 286; }, { glyphname = Gcircumflex; lastChange = "2025-01-08 14:18:45 +0000"; layers = ( { layerId = m01; shapes = ( { ref = G; }, { pos = (250,201); ref = circumflexcomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = G; }, { pos = (229,201); ref = circumflexcomb; } ); width = 740; }, { layerId = m003; shapes = ( { ref = G; }, { pos = (232,204); ref = circumflexcomb; } ); width = 726; } ); unicode = 284; }, { glyphname = Gcommaaccent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = G; }, { pos = (287,-1); ref = commaaccentcomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = G; }, { pos = (284,0); ref = commaaccentcomb; } ); width = 740; }, { layerId = m003; shapes = ( { ref = G; }, { pos = (259,-11); ref = commaaccentcomb; } ); width = 726; } ); unicode = 290; }, { glyphname = Gdotaccent; lastChange = "2025-01-08 14:19:43 +0000"; layers = ( { layerId = m01; shapes = ( { ref = G; }, { pos = (318,201); ref = dotaccentcomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = G; }, { pos = (312,201); ref = dotaccentcomb; } ); width = 740; }, { layerId = m003; shapes = ( { ref = G; }, { pos = (315,204); ref = dotaccentcomb; } ); width = 726; } ); unicode = 288; }, { glyphname = Gmacron; lastChange = "2025-01-08 14:20:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = G; }, { pos = (251,201); ref = macroncomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = G; }, { pos = (211,201); ref = macroncomb; } ); width = 740; }, { layerId = m003; shapes = ( { ref = G; }, { pos = (239,201); ref = macroncomb; } ); width = 726; } ); unicode = 7712; }, { glyphname = H; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (133,0,l), (175,336,l), (537,336,l), (495,0,l), (559,0,l), (645,700,l), (581,700,l), (543,392,l), (181,392,l), (219,700,l), (155,700,l), (69,0,l) ); } ); width = 690; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (151,0,l), (191,324,l), (527,324,l), (487,0,l), (575,0,l), (661,700,l), (573,700,l), (537,404,l), (201,404,l), (237,700,l), (149,700,l), (63,0,l) ); } ); width = 700; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (205,0,l), (242,301,l), (524,301,l), (487,0,l), (633,0,l), (719,700,l), (573,700,l), (539,427,l), (257,427,l), (291,700,l), (145,700,l), (59,0,l) ); } ); width = 754; } ); unicode = 72; }, { glyphname = Hbar; lastChange = "2025-01-08 14:18:24 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (133,0,l), (175,336,l), (537,336,l), (495,0,l), (559,0,l), (645,700,l), (581,700,l), (543,392,l), (181,392,l), (219,700,l), (155,700,l), (69,0,l) ); }, { closed = 1; nodes = ( (699,496,l), (706,550,l), (62,550,l), (55,496,l) ); } ); width = 690; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (148,0,l), (187,318,l), (523,318,l), (484,0,l), (572,0,l), (658,700,l), (570,700,l), (533,398,l), (197,398,l), (234,700,l), (146,700,l), (60,0,l) ); }, { closed = 1; nodes = ( (699,498,l), (708,568,l), (64,568,l), (55,498,l) ); } ); width = 700; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (205,0,l), (240,290,l), (522,290,l), (487,0,l), (633,0,l), (719,700,l), (573,700,l), (538,416,l), (256,416,l), (291,700,l), (145,700,l), (59,0,l) ); }, { closed = 1; nodes = ( (780,497,l), (793,607,l), (51,607,l), (38,497,l) ); } ); width = 754; } ); unicode = 294; }, { glyphname = Hcircumflex; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = H; }, { pos = (205,201); ref = circumflexcomb; } ); width = 690; }, { layerId = m002; shapes = ( { ref = H; }, { pos = (195,201); ref = circumflexcomb; } ); width = 700; }, { layerId = m003; shapes = ( { ref = H; }, { pos = (190,204); ref = circumflexcomb; } ); width = 754; } ); unicode = 292; }, { glyphname = I; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (207,0); }, { name = top; pos = (293,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (370,0,l), (377,56,l), (246,56,l), (318,644,l), (449,644,l), (456,700,l), (130,700,l), (123,644,l), (254,644,l), (182,56,l), (51,56,l), (44,0,l) ); } ); width = 476; }, { anchors = ( { name = bottom; pos = (207,0); }, { name = top; pos = (293,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (369,0,l), (379,76,l), (261,76,l), (328,624,l), (446,624,l), (455,700,l), (131,700,l), (122,624,l), (240,624,l), (173,76,l), (55,76,l), (45,0,l) ); } ); width = 476; }, { anchors = ( { name = bottom; pos = (236,0); }, { name = top; pos = (322,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (422,0,l), (437,122,l), (324,122,l), (380,578,l), (493,578,l), (508,700,l), (135,700,l), (120,578,l), (234,578,l), (178,122,l), (64,122,l), (49,0,l) ); } ); width = 533; } ); unicode = 73; }, { glyphname = IJ; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (466,0); ref = J; } ); width = 982; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (476,0); ref = J; } ); width = 1003; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (533,0); ref = J; } ); width = 1108; } ); unicode = 306; }, { glyphname = Iacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (211,188); ref = acutecomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (214,188); ref = acutecomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (222,192); ref = acutecomb; } ); width = 533; } ); unicode = 205; }, { glyphname = Ibreve; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (116,188); ref = brevecomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (118,188); ref = brevecomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (122,192); ref = brevecomb; } ); width = 533; } ); unicode = 300; }, { glyphname = Icircumflex; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (127,188); ref = circumflexcomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (104,188); ref = circumflexcomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (112,192); ref = circumflexcomb; } ); width = 533; } ); unicode = 206; }, { glyphname = Idieresis; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (96,188); ref = dieresiscomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (96,188); ref = dieresiscomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (76,192); ref = dieresiscomb; } ); width = 533; } ); unicode = 207; }, { glyphname = Idotaccent; lastChange = "2025-01-08 14:19:43 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (195,188); ref = dotaccentcomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (187,188); ref = dotaccentcomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (195,192); ref = dotaccentcomb; } ); width = 533; } ); unicode = 304; }, { glyphname = Idotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (175,0); ref = dotbelowcomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (163,0); ref = dotbelowcomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (173,1); ref = dotbelowcomb; } ); width = 533; } ); unicode = 7882; }, { glyphname = Igrave; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (97,188); ref = gravecomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (98,188); ref = gravecomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (92,192); ref = gravecomb; } ); width = 533; } ); unicode = 204; }, { glyphname = Ihookabove; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (212,200); ref = hookabovecomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (193,200); ref = hookabovecomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (226,192); ref = hookabovecomb; } ); width = 533; } ); unicode = 7880; }, { glyphname = Imacron; lastChange = "2025-01-08 14:20:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (128,188); ref = macroncomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (86,188); ref = macroncomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (119,189); ref = macroncomb; } ); width = 533; } ); unicode = 298; }, { glyphname = Iogonek; lastChange = "2025-01-01 09:06:08 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (242,5); ref = ogonekcomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (237,1); ref = ogonekcomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (278,0); ref = ogonekcomb; } ); width = 533; } ); unicode = 302; }, { glyphname = Itilde; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (100,188); ref = tildecomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (107,188); ref = tildecomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (92,192); ref = tildecomb; } ); width = 533; } ); unicode = 296; }, { glyphname = J; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = top; pos = (453,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (329,-12,o), (405,65,o), (428,253,cs), (483,700,l), (423,700,l), (368,252,ls), (351,111,o), (304,44,o), (194,44,cs), (108,44,o), (69,107,o), (66,192,c), (6,173,l), (9,56,o), (74,-12,o), (191,-12,cs) ); } ); width = 516; }, { anchors = ( { name = top; pos = (454,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (348,-12,o), (425,85,o), (446,256,cs), (500,700,l), (412,700,l), (358,255,ls), (344,148,o), (299,68,o), (208,68,cs), (135,68,o), (93,120,o), (89,200,c), (2,173,l), (5,56,o), (80,-12,o), (202,-12,cs) ); } ); width = 527; }, { anchors = ( { name = top; pos = (481,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (395,-12,o), (481,90,o), (502,261,cs), (556,700,l), (410,700,l), (356,260,ls), (347,185,o), (311,118,o), (238,118,cs), (162,118,o), (130,170,o), (126,227,c), (-7,183,l), (-3,66,o), (83,-12,o), (223,-12,cs) ); } ); width = 575; }, { associatedMasterId = m01; layerId = "F0224C38-C702-4CDE-838B-2E373CDF467B"; name = "5 Aug 24 at 10:34"; shapes = ( { closed = 1; nodes = ( (314,-12,o), (407,94,o), (407,275,cs), (407,701,l), (347,701,l), (347,275,l), (347,121,o), (270,44,o), (164,44,cs), (60,44,o), (-19,121,o), (-19,275,cs), (-19,701,l), (-79,701,l), (-79,275,ls), (-79,94,o), (15,-12,o), (168,-12,cs) ); } ); width = 496; }, { associatedMasterId = m002; layerId = "D039DF4E-49D3-4032-B6A6-5E0752F96B5B"; name = "5 Aug 24 at 10:37"; shapes = ( { closed = 1; nodes = ( (328,-12,o), (413,98,o), (413,275,cs), (413,701,l), (325,701,l), (325,275,ls), (325,139,o), (251,73,o), (162,73,cs), (69,73,o), (-1,139,o), (-1,275,cs), (-1,701,l), (-89,701,l), (-89,275,ls), (-89,98,o), (7,-12,o), (166,-12,cs) ); } ); width = 495; } ); unicode = 74; }, { glyphname = Jacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = J; }, { pos = (371,188); ref = acutecomb; } ); width = 516; }, { layerId = m002; shapes = ( { ref = J; }, { pos = (375,188); ref = acutecomb; } ); width = 527; }, { layerId = m003; shapes = ( { ref = J; }, { pos = (381,192); ref = acutecomb; } ); width = 575; } ); }, { glyphname = Jcircumflex; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = J; }, { pos = (287,188); ref = circumflexcomb; } ); width = 516; }, { layerId = m002; shapes = ( { ref = J; }, { pos = (265,188); ref = circumflexcomb; } ); width = 527; }, { layerId = m003; shapes = ( { ref = J; }, { pos = (271,192); ref = circumflexcomb; } ); width = 575; } ); unicode = 308; }, { glyphname = K; kernRight = K; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (285,0); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (129,0,l), (159,244,l), (616,700,l), (539,700,l), (170,330,l), (215,700,l), (155,700,l), (69,0,l) ); }, { closed = 1; nodes = ( (545,0,l), (338,429,l), (290,382,l), (467,0,l) ); } ); width = 592; }, { anchors = ( { name = bottom; pos = (321,0); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (149,0,l), (179,242,l), (642,700,l), (535,700,l), (193,358,l), (235,700,l), (147,700,l), (61,0,l) ); }, { closed = 1; nodes = ( (574,0,l), (363,435,l), (294,373,l), (469,0,l) ); } ); width = 615; }, { anchors = ( { name = bottom; pos = (309,0); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (205,0,l), (232,224,l), (706,700,l), (546,700,l), (254,404,l), (291,700,l), (145,700,l), (59,0,l) ); }, { closed = 1; nodes = ( (630,0,l), (439,450,l), (324,340,l), (460,0,l) ); } ); width = 665; } ); unicode = 75; }, { glyphname = Kcommaaccent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = K; }, { pos = (256,12); ref = commaaccentcomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = K; }, { pos = (276,12); ref = commaaccentcomb; } ); width = 615; }, { layerId = m003; shapes = ( { ref = K; }, { pos = (245,1); ref = commaaccentcomb; } ); width = 665; } ); unicode = 310; }, { glyphname = L; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (277,0); }, { name = top; pos = (185,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (478,0,l), (485,56,l), (138,56,l), (217,700,l), (153,700,l), (67,0,l) ); } ); width = 529; }, { anchors = ( { name = bottom; pos = (270,0); }, { name = top; pos = (191,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (475,0,l), (485,80,l), (161,80,l), (237,700,l), (149,700,l), (63,0,l) ); } ); width = 524; }, { anchors = ( { name = bottom; pos = (304,0); }, { name = top; pos = (214,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (534,0,l), (549,126,l), (220,126,l), (291,700,l), (145,700,l), (59,0,l) ); } ); width = 579; } ); unicode = 76; }, { glyphname = Lacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = L; }, { pos = (103,188); ref = acutecomb; } ); width = 529; }, { layerId = m002; shapes = ( { ref = L; }, { pos = (112,188); ref = acutecomb; } ); width = 524; }, { layerId = m003; shapes = ( { ref = L; }, { pos = (114,192); ref = acutecomb; } ); width = 579; } ); unicode = 313; }, { glyphname = Lcaron; lastChange = "2025-01-08 14:20:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = L; }, { alignment = -1; pos = (292,-4); ref = caroncomb.alt; } ); width = 529; }, { layerId = m002; shapes = ( { ref = L; }, { alignment = -1; pos = (310,-28); ref = caroncomb.alt; } ); width = 524; }, { layerId = m003; shapes = ( { alignment = -1; pos = (-31,0); ref = L; }, { alignment = -1; pos = (291,-30); ref = caroncomb.alt; } ); width = 579; } ); unicode = 317; }, { glyphname = Lcommaaccent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = L; }, { pos = (248,12); ref = commaaccentcomb; } ); width = 529; }, { layerId = m002; shapes = ( { ref = L; }, { pos = (225,12); ref = commaaccentcomb; } ); width = 524; }, { layerId = m003; shapes = ( { ref = L; }, { pos = (240,1); ref = commaaccentcomb; } ); width = 579; } ); unicode = 315; }, { glyphname = Ldot; lastChange = "2025-01-01 08:48:18 +0000"; layers = ( { layerId = m01; shapes = ( { ref = L; }, { pos = (238,46); ref = periodcentered.loclCAT.case; } ); width = 529; }, { layerId = m002; shapes = ( { ref = L; }, { pos = (224,46); ref = periodcentered.loclCAT.case; } ); width = 524; }, { layerId = m003; shapes = ( { ref = L; }, { pos = (264,45); ref = periodcentered.loclCAT.case; } ); width = 579; } ); unicode = 319; }, { glyphname = Ldotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = L; }, { pos = (241,1); ref = dotbelowcomb; } ); width = 579; }, { layerId = m01; shapes = ( { ref = L; }, { pos = (245,0); ref = dotbelowcomb; } ); width = 529; }, { layerId = m002; shapes = ( { ref = L; }, { pos = (226,0); ref = dotbelowcomb; } ); width = 524; } ); unicode = 7734; }, { glyphname = Lmacronbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = L; }, { pos = (155,1); ref = macronbelowcomb; } ); width = 579; }, { layerId = m01; shapes = ( { ref = L; }, { pos = (167,12); ref = macronbelowcomb; } ); width = 529; }, { layerId = m002; shapes = ( { ref = L; }, { pos = (142,12); ref = macronbelowcomb; } ); width = 524; } ); unicode = 7738; }, { glyphname = Lslash; lastChange = "2025-01-01 09:14:46 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (145,302,l), (165,310,l), (370,392,l), (356,444,l), (165,369,l), (138,358,l), (5,305,l), (18,252,l) ); }, { pos = (11,0); ref = L; } ); width = 571; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (156,293,l), (183,304,l), (408,395,l), (389,459,l), (195,381,l), (161,368,l), (13,308,l), (34,243,l) ); }, { pos = (25,0); ref = L; } ); width = 580; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (168,283,l), (271,315,l), (466,394,l), (439,494,l), (289,431,l), (176,395,l), (-4,320,l), (22,223,l) ); }, { pos = (43,0); ref = L; } ); width = 653; } ); unicode = 321; }, { glyphname = M; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (240,700,l), (153,700,l), (67,0,l), (127,0,l), (203,613,l), (364,80,l), (434,80,l), (727,613,l), (651,0,l), (711,0,l), (797,700,l), (710,700,l), (407,139,l) ); } ); width = 840; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (272,700,l), (150,700,l), (64,0,l), (152,0,l), (221,562,l), (366,62,l), (461,62,l), (723,562,l), (654,0,l), (742,0,l), (828,700,l), (706,700,l), (423,164,l) ); } ); width = 868; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (317,700,l), (145,700,l), (59,0,l), (205,0,l), (257,429,l), (364,62,l), (499,62,l), (691,430,l), (638,0,l), (784,0,l), (870,700,l), (699,700,l), (452,244,l) ); } ); width = 905; } ); unicode = 77; }, { glyphname = N; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (309,0); }, { name = top; pos = (395,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (129,0,l), (210,656,l), (179,656,l), (475,0,l), (550,0,l), (636,700,l), (576,700,l), (496,44,l), (527,44,l), (231,700,l), (155,700,l), (69,0,l) ); } ); width = 681; }, { anchors = ( { name = bottom; pos = (321,0); }, { name = top; pos = (407,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (153,0,l), (230,623,l), (200,623,l), (463,0,l), (572,0,l), (658,700,l), (570,700,l), (494,77,l), (524,77,l), (273,700,l), (151,700,l), (65,0,l) ); } ); width = 699; }, { anchors = ( { name = bottom; pos = (342,0); }, { name = top; pos = (425,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (199,0,l), (261,504,l), (229,504,l), (474,0,l), (618,0,l), (704,700,l), (558,700,l), (497,204,l), (529,204,l), (295,700,l), (139,700,l), (53,0,l) ); } ); width = 732; } ); unicode = 78; }, { glyphname = Nacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = N; }, { pos = (313,188); ref = acutecomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = N; }, { pos = (328,188); ref = acutecomb; } ); width = 699; }, { layerId = m003; shapes = ( { ref = N; }, { pos = (325,192); ref = acutecomb; } ); width = 732; } ); unicode = 323; }, { glyphname = Ncaron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = N; }, { pos = (229,188); ref = caroncomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = N; }, { pos = (223,188); ref = caroncomb; } ); width = 699; }, { layerId = m003; shapes = ( { ref = N; }, { pos = (213,192); ref = caroncomb; } ); width = 732; } ); unicode = 327; }, { glyphname = Ncommaaccent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = N; }, { pos = (280,12); ref = commaaccentcomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = N; }, { pos = (276,12); ref = commaaccentcomb; } ); width = 699; }, { layerId = m003; shapes = ( { ref = N; }, { pos = (278,1); ref = commaaccentcomb; } ); width = 732; } ); unicode = 325; }, { glyphname = Ndotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = N; }, { pos = (279,1); ref = dotbelowcomb; } ); width = 732; }, { layerId = m01; shapes = ( { ref = N; }, { pos = (277,0); ref = dotbelowcomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = N; }, { pos = (277,0); ref = dotbelowcomb; } ); width = 699; } ); unicode = 7750; }, { glyphname = Nhookleft; lastChange = "2025-01-01 09:35:24 +0000"; layers = ( { guides = ( { pos = (257,-165); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (224,-230,o), (291,-169,o), (302,-76,c), (367,451,l), (587,0,l), (730,0,l), (816,700,l), (671,700,l), (616,258,l), (408,700,l), (252,700,l), (162,-28,l), (158,-66,o), (133,-90,o), (97,-90,cs), (84,-90,o), (59,-89,o), (43,-86,c), (26,-222,l), (42,-227,o), (80,-230,o), (96,-230,cs) ); } ); width = 845; }, { guides = ( { pos = (680,-133); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (181,-230,o), (226,-179,o), (237,-86,cs), (321,604,l), (605,0,l), (660,0,l), (746,700,l), (687,700,l), (617,128,l), (349,700,l), (273,700,l), (176,-85,ls), (167,-158,o), (142,-176,o), (94,-176,cs), (81,-176,o), (64,-175,o), (48,-172,c), (42,-222,l), (58,-227,o), (80,-230,o), (96,-230,cs) ); } ); width = 791; }, { guides = ( { pos = (429,-142); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (202,-230,o), (249,-179,o), (261,-86,c), (341,571,l), (588,0,l), (675,0,l), (761,700,l), (673,700,l), (609,176,l), (398,700,l), (269,700,l), (175,-85,l), (169,-139,o), (140,-158,o), (93,-158,cs), (80,-158,o), (62,-157,o), (46,-154,c), (38,-222,l), (54,-227,o), (77,-230,o), (93,-230,cs) ); } ); width = 802; } ); unicode = 413; }, { glyphname = Nmacronbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = N; }, { pos = (193,1); ref = macronbelowcomb; } ); width = 732; }, { layerId = m01; shapes = ( { ref = N; }, { pos = (199,12); ref = macronbelowcomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = N; }, { pos = (193,12); ref = macronbelowcomb; } ); width = 699; } ); unicode = 7752; }, { glyphname = Ntilde; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = N; }, { pos = (202,188); ref = tildecomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = N; }, { pos = (221,188); ref = tildecomb; } ); width = 699; }, { layerId = m003; shapes = ( { ref = N; }, { pos = (195,192); ref = tildecomb; } ); width = 732; } ); unicode = 209; }, { glyphname = Eng; lastChange = "2025-01-01 09:35:22 +0000"; layers = ( { anchors = ( { name = bottom; pos = (342,0); }, { name = top; pos = (425,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (529,-230,o), (596,-169,o), (607,-76,cs), (703,700,l), (558,700,l), (503,258,l), (295,700,l), (139,700,l), (53,0,l), (199,0,l), (254,451,l), (474,0,l), (470,-28,ls), (466,-66,o), (441,-90,o), (405,-90,cs), (392,-90,o), (364,-89,o), (348,-86,c), (331,-222,l), (347,-227,o), (385,-230,o), (401,-230,cs) ); } ); width = 733; }, { anchors = ( { name = bottom; pos = (302,0); }, { name = top; pos = (388,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (476,-232,o), (520,-181,o), (531,-88,cs), (628,700,l), (569,700,l), (499,130,l), (231,700,l), (155,700,l), (69,0,l), (129,0,l), (203,604,l), (488,2,l), (476,-87,ls), (466,-160,o), (436,-178,o), (388,-178,cs), (375,-178,o), (359,-177,o), (343,-174,c), (337,-224,l), (353,-229,o), (375,-232,o), (391,-232,cs) ); } ); width = 674; }, { anchors = ( { name = bottom; pos = (306,0); }, { name = top; pos = (392,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (488,-230,o), (535,-179,o), (547,-86,cs), (643,700,l), (555,700,l), (491,176,l), (280,700,l), (151,700,l), (65,0,l), (153,0,l), (223,571,l), (470,0,l), (461,-85,ls), (455,-139,o), (426,-158,o), (379,-158,cs), (366,-158,o), (348,-157,o), (332,-154,c), (324,-222,l), (340,-227,o), (363,-230,o), (379,-230,cs) ); } ); width = 684; } ); unicode = 330; }, { glyphname = O; kernLeft = O; kernRight = O; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (331,-11); }, { name = top; pos = (420,713); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (552,-12,o), (661,157,o), (684,349,cs), (708,543,o), (641,712,o), (425,712,cs), (209,712,o), (100,543,o), (76,349,cs), (53,157,o), (120,-12,o), (336,-12,cs) ); }, { closed = 1; nodes = ( (196,44,o), (114,154,o), (138,349,cs), (162,540,o), (271,656,o), (418,656,cs), (565,656,o), (646,540,o), (622,349,cs), (598,154,o), (490,44,o), (343,44,cs) ); } ); width = 736; }, { anchors = ( { name = bottom; pos = (336,-11); }, { name = top; pos = (425,713); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (560,-11,o), (674,158,o), (697,351,cs), (721,544,o), (649,713,o), (429,713,cs), (209,713,o), (95,544,o), (71,351,cs), (48,158,o), (120,-11,o), (340,-11,cs) ); }, { closed = 1; nodes = ( (207,69,o), (144,196,o), (163,351,cs), (182,506,o), (276,633,o), (419,633,cs), (572,633,o), (624,506,o), (605,351,cs), (586,196,o), (503,69,o), (350,69,cs) ); } ); width = 744; }, { anchors = ( { name = bottom; pos = (342,-11); }, { name = top; pos = (431,713); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (571,-11,o), (697,148,o), (722,351,cs), (747,554,o), (660,713,o), (436,713,cs), (212,713,o), (85,554,o), (60,351,cs), (35,148,o), (123,-11,o), (347,-11,cs) ); }, { closed = 1; nodes = ( (249,115,o), (195,196,o), (214,351,cs), (233,506,o), (307,587,o), (421,587,cs), (543,587,o), (587,506,o), (568,351,cs), (549,196,o), (485,115,o), (363,115,cs) ); } ); width = 758; } ); unicode = 79; }, { glyphname = Oacute; kernLeft = O; kernRight = O; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (338,201); ref = acutecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (346,201); ref = acutecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (331,205); ref = acutecomb; } ); width = 758; } ); unicode = 211; }, { glyphname = Obreve; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (243,201); ref = brevecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (250,201); ref = brevecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (231,205); ref = brevecomb; } ); width = 758; } ); unicode = 334; }, { glyphname = Ocircumflex; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (254,201); ref = circumflexcomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (236,201); ref = circumflexcomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (221,205); ref = circumflexcomb; } ); width = 758; } ); unicode = 212; }, { glyphname = Ocircumflexacute; lastChange = "2025-01-08 14:16:50 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (136,201); ref = circumflexcomb_acutecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (145,213); ref = circumflexcomb_acutecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (251,205); ref = circumflexcomb_acutecomb; } ); width = 758; } ); unicode = 7888; }, { glyphname = Ocircumflexdotbelow; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (299,-11); ref = dotbelowcomb; }, { pos = (254,201); ref = circumflexcomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (292,-11); ref = dotbelowcomb; }, { pos = (236,201); ref = circumflexcomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (279,-10); ref = dotbelowcomb; }, { pos = (221,205); ref = circumflexcomb; } ); width = 758; } ); unicode = 7896; }, { glyphname = Ocircumflexgrave; lastChange = "2025-01-08 14:17:48 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (278,201); ref = circumflexcomb_gravecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (269,213); ref = circumflexcomb_gravecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (251,206); ref = circumflexcomb_gravecomb; } ); width = 758; } ); unicode = 7890; }, { glyphname = Ocircumflexhookabove; lastChange = "2025-01-08 14:24:33 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (281,201); ref = circumflexcomb_hookabovecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (272,213); ref = circumflexcomb_hookabovecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (250,205); ref = circumflexcomb_hookabovecomb; } ); width = 758; } ); unicode = 7892; }, { glyphname = Ocircumflextilde; lastChange = "2025-01-08 14:34:31 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (286,213); ref = circumflexcomb_tildecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (276,213); ref = circumflexcomb_tildecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (226,205); ref = circumflexcomb_tildecomb; } ); width = 758; } ); unicode = 7894; }, { glyphname = Odieresis; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (223,201); ref = dieresiscomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (228,201); ref = dieresiscomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (185,205); ref = dieresiscomb; } ); width = 758; } ); unicode = 214; }, { glyphname = Odotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (299,-11); ref = dotbelowcomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (292,-11); ref = dotbelowcomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (279,-10); ref = dotbelowcomb; } ); width = 758; } ); unicode = 7884; }, { glyphname = Ograve; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (224,201); ref = gravecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (230,201); ref = gravecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (201,205); ref = gravecomb; } ); width = 758; } ); unicode = 210; }, { glyphname = Ohookabove; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (339,213); ref = hookabovecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (325,213); ref = hookabovecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (335,205); ref = hookabovecomb; } ); width = 758; } ); unicode = 7886; }, { glyphname = Ohorn; kernLeft = O; lastChange = "2025-01-01 09:35:05 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (660,627,o), (754,705,o), (720,827,c), (657,808,l), (679,738,o), (643,676,o), (579,676,cs), (549,676,o), (520,691,o), (491,698,c), (484,641,l), (573,627,l) ); }, { pos = (-31,0); ref = O; } ); width = 757; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (687,612,o), (761,708,o), (727,830,c), (645,808,l), (666,749,o), (648,679,o), (580,679,cs), (544,679,o), (517,695,o), (494,699,c), (485,625,l), (553,612,l) ); }, { pos = (-31,0); ref = O; } ); width = 764; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (729,601,o), (827,710,o), (790,845,c), (672,814,l), (694,755,o), (681,682,o), (600,682,cs), (564,682,o), (542,696,o), (489,704,c), (479,621,l), (596,601,l) ); }, { pos = (-31,0); ref = O; } ); width = 775; } ); unicode = 416; }, { glyphname = Ohornacute; kernLeft = O; kernRight = Ohorn; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Ohorn; }, { pos = (307,201); ref = acutecomb; } ); width = 757; }, { layerId = m002; shapes = ( { ref = Ohorn; }, { pos = (315,201); ref = acutecomb; } ); width = 764; }, { layerId = m003; shapes = ( { ref = Ohorn; }, { pos = (300,205); ref = acutecomb; } ); width = 775; } ); unicode = 7898; }, { glyphname = Ohorndotbelow; kernLeft = O; kernRight = Ohorn; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Ohorn; }, { pos = (268,-11); ref = dotbelowcomb; } ); width = 757; }, { layerId = m002; shapes = ( { ref = Ohorn; }, { pos = (261,-11); ref = dotbelowcomb; } ); width = 764; }, { layerId = m003; shapes = ( { ref = Ohorn; }, { pos = (248,-10); ref = dotbelowcomb; } ); width = 775; } ); unicode = 7906; }, { glyphname = Ohorngrave; kernLeft = O; kernRight = Ohorn; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Ohorn; }, { pos = (193,201); ref = gravecomb; } ); width = 757; }, { layerId = m002; shapes = ( { ref = Ohorn; }, { pos = (199,201); ref = gravecomb; } ); width = 764; }, { layerId = m003; shapes = ( { ref = Ohorn; }, { pos = (170,205); ref = gravecomb; } ); width = 775; } ); unicode = 7900; }, { glyphname = Ohornhookabove; kernLeft = O; kernRight = Ohorn; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Ohorn; }, { pos = (308,213); ref = hookabovecomb; } ); width = 757; }, { layerId = m002; shapes = ( { ref = Ohorn; }, { pos = (294,213); ref = hookabovecomb; } ); width = 764; }, { layerId = m003; shapes = ( { ref = Ohorn; }, { pos = (304,205); ref = hookabovecomb; } ); width = 775; } ); unicode = 7902; }, { glyphname = Ohorntilde; kernLeft = O; kernRight = Ohorn; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Ohorn; }, { pos = (196,201); ref = tildecomb; } ); width = 757; }, { layerId = m002; shapes = ( { ref = Ohorn; }, { pos = (208,201); ref = tildecomb; } ); width = 764; }, { layerId = m003; shapes = ( { ref = Ohorn; }, { pos = (170,205); ref = tildecomb; } ); width = 775; } ); unicode = 7904; }, { glyphname = Ohungarumlaut; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (269,201); ref = hungarumlautcomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (270,201); ref = hungarumlautcomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (234,205); ref = hungarumlautcomb; } ); width = 758; } ); unicode = 336; }, { glyphname = Omacron; lastChange = "2025-01-08 14:20:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (255,201); ref = macroncomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (218,201); ref = macroncomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (228,202); ref = macroncomb; } ); width = 758; } ); unicode = 332; }, { glyphname = Oopen; lastChange = "2025-01-08 14:16:04 +0000"; layers = ( { layerId = m01; shapes = ( { angle = 180; pos = (688,700); ref = C; } ); width = 663; }, { layerId = m002; shapes = ( { angle = 180; pos = (714,700); ref = C; } ); width = 689; }, { layerId = m003; shapes = ( { angle = 180; pos = (708,700); ref = C; } ); width = 684; } ); unicode = 390; }, { glyphname = Oslash; lastChange = "2025-01-01 09:34:40 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (21,0); ref = O; }, { closed = 1; nodes = ( (68,-12,l), (807,682,l), (766,720,l), (30,31,l) ); } ); width = 827; }, { layerId = m002; shapes = ( { pos = (31,0); ref = O; }, { closed = 1; nodes = ( (65,-12,l), (828,656,l), (775,712,l), (16,47,l) ); } ); width = 855; }, { layerId = m003; shapes = ( { pos = (33,0); ref = O; }, { closed = 1; nodes = ( (90,-12,l), (857,619,l), (775,712,l), (13,85,l) ); } ); width = 874; } ); unicode = 216; }, { glyphname = Oslashacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Oslash; }, { pos = (359,201); ref = acutecomb; } ); width = 827; }, { layerId = m002; shapes = ( { ref = Oslash; }, { pos = (377,201); ref = acutecomb; } ); width = 855; }, { layerId = m003; shapes = ( { ref = Oslash; }, { pos = (364,205); ref = acutecomb; } ); width = 874; } ); unicode = 510; }, { glyphname = Otilde; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (227,201); ref = tildecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (239,201); ref = tildecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (201,205); ref = tildecomb; } ); width = 758; } ); unicode = 213; }, { glyphname = OE; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (459,0); }, { name = top; pos = (545,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (888,0,l), (895,56,l), (561,56,l), (595,332,l), (867,332,l), (874,388,l), (602,388,l), (633,644,l), (967,644,l), (974,700,l), (452,700,ls), (226,700,o), (102,560,o), (76,349,cs), (51,141,o), (140,0,o), (366,0,cs) ); }, { closed = 1; nodes = ( (176,56,o), (119,192,o), (138,350,cs), (158,507,o), (248,644,o), (442,644,cs), (568,644,l), (496,56,l), (370,56,ls) ); } ); width = 979; }, { anchors = ( { name = bottom; pos = (460,0); }, { name = top; pos = (546,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (893,0,l), (903,80,l), (580,80,l), (610,320,l), (872,320,l), (881,398,l), (619,398,l), (646,620,l), (969,620,l), (979,700,l), (453,700,ls), (221,700,o), (97,560,o), (71,349,cs), (46,141,o), (135,0,o), (367,0,cs) ); }, { closed = 1; nodes = ( (211,80,o), (144,192,o), (163,350,cs), (183,507,o), (277,620,o), (440,620,cs), (550,620,l), (484,80,l), (374,80,ls) ); } ); width = 981; }, { anchors = ( { name = bottom; pos = (456,0); }, { name = top; pos = (542,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (901,0,l), (916,126,l), (605,126,l), (626,297,l), (886,297,l), (902,423,l), (642,423,l), (660,574,l), (971,574,l), (987,700,l), (440,700,ls), (210,700,o), (85,554,o), (60,349,cs), (35,147,o), (124,0,o), (354,0,cs) ); }, { closed = 1; nodes = ( (257,126,o), (195,198,o), (214,350,cs), (232,501,o), (312,574,o), (421,574,cs), (526,574,l), (471,126,l), (366,126,ls) ); } ); width = 974; } ); unicode = 338; }, { glyphname = P; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (133,0,l), (165,262,l), (333,262,ls), (471,262,o), (559,350,o), (574,472,cs), (592,615,o), (516,700,o), (389,700,cs), (153,700,l), (67,0,l) ); }, { closed = 1; nodes = ( (210,644,l), (380,644,ls), (474,644,o), (525,578,o), (512,472,cs), (500,375,o), (436,318,o), (339,318,cs), (170,318,l) ); } ); width = 585; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (152,0,l), (183,252,l), (344,252,l), (485,252,o), (578,342,o), (594,472,cs), (612,615,o), (531,700,o), (401,700,cs), (150,700,l), (64,0,l) ); }, { closed = 1; nodes = ( (229,621,l), (390,621,ls), (463,621,o), (517,573,o), (504,472,cs), (492,376,o), (427,332,o), (353,332,cs), (193,332,l) ); } ); width = 602; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (207,-1,l), (235,231,l), (385,231,ls), (529,231,o), (628,336,o), (644,465,cs), (662,609,o), (578,701,o), (445,701,cs), (145,701,l), (59,-1,l) ); }, { closed = 1; nodes = ( (275,575,l), (404,575,ls), (467,575,o), (498,527,o), (490,467,cs), (483,410,o), (442,357,o), (378,357,cs), (249,357,l) ); } ); width = 638; } ); unicode = 80; }, { glyphname = Thorn; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (133,0,l), (150,138,l), (318,138,ls), (456,138,o), (544,226,o), (559,348,cs), (577,491,o), (501,576,o), (374,576,cs), (138,576,l), (67,0,l) ); }, { closed = 1; nodes = ( (195,520,l), (365,520,ls), (459,520,o), (510,454,o), (497,348,cs), (485,251,o), (421,194,o), (324,194,cs), (155,194,l) ); }, { closed = 1; nodes = ( (130,512,l), (195,512,l), (218,700,l), (153,700,l) ); } ); width = 585; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (152,0,l), (168,128,l), (329,128,l), (470,128,o), (563,218,o), (579,348,cs), (597,491,o), (516,576,o), (386,576,cs), (135,576,l), (64,0,l) ); }, { closed = 1; nodes = ( (213,497,l), (374,497,ls), (447,497,o), (501,449,o), (489,348,cs), (477,252,o), (412,208,o), (338,208,cs), (178,208,l) ); }, { closed = 1; nodes = ( (126,500,l), (212,500,l), (236,700,l), (150,700,l) ); } ); width = 602; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (207,-1,l), (222,122,l), (372,122,ls), (516,122,o), (615,227,o), (631,356,cs), (648,500,o), (565,592,o), (432,592,cs), (132,592,l), (59,-1,l) ); }, { closed = 1; nodes = ( (262,466,l), (391,466,ls), (454,466,o), (484,418,o), (477,358,cs), (470,301,o), (428,248,o), (364,248,cs), (235,248,l) ); }, { closed = 1; nodes = ( (116,462,l), (264,462,l), (293,700,l), (145,700,l) ); } ); width = 638; } ); unicode = 222; }, { glyphname = Q; kernLeft = O; kernRight = Q; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (552,-12,o), (661,157,o), (684,349,cs), (708,543,o), (641,712,o), (425,712,cs), (209,712,o), (100,543,o), (76,349,cs), (53,157,o), (120,-12,o), (336,-12,cs) ); }, { closed = 1; nodes = ( (648,-33,l), (437,256,l), (389,220,l), (599,-71,l) ); }, { closed = 1; nodes = ( (196,44,o), (114,154,o), (138,349,cs), (162,540,o), (271,656,o), (418,656,cs), (565,656,o), (646,540,o), (622,349,cs), (598,154,o), (490,44,o), (343,44,cs) ); } ); width = 745; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (560,-11,o), (674,158,o), (697,351,cs), (721,544,o), (649,713,o), (429,713,cs), (209,713,o), (95,544,o), (71,351,cs), (48,158,o), (120,-11,o), (340,-11,cs) ); }, { closed = 1; nodes = ( (666,-34,l), (439,272,l), (379,227,l), (603,-82,l) ); }, { closed = 1; nodes = ( (197,69,o), (144,196,o), (163,351,cs), (182,506,o), (266,633,o), (419,633,cs), (572,633,o), (624,506,o), (605,351,cs), (586,196,o), (503,69,o), (350,69,cs) ); } ); width = 752; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (565,-11,o), (686,158,o), (710,351,cs), (734,544,o), (654,713,o), (430,713,cs), (206,713,o), (84,544,o), (60,351,cs), (36,158,o), (117,-11,o), (341,-11,cs) ); }, { closed = 1; nodes = ( (676,-30,l), (436,299,l), (338,226,l), (577,-105,l) ); }, { closed = 1; nodes = ( (213,111,o), (176,224,o), (192,351,cs), (206,463,o), (266,592,o), (416,592,cs), (566,592,o), (590,463,o), (576,351,cs), (560,224,o), (506,111,o), (356,111,cs) ); } ); width = 734; } ); unicode = 81; }, { glyphname = R; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (274,0); }, { name = top; pos = (329,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (133,0,l), (169,292,l), (321,292,ls), (454,292,o), (544,395,o), (555,488,cs), (573,631,o), (495,700,o), (373,700,cs), (153,700,l), (67,0,l) ); }, { closed = 1; nodes = ( (532,0,l), (392,306,l), (331,292,l), (462,0,l) ); }, { closed = 1; nodes = ( (210,644,l), (364,644,ls), (453,644,o), (506,594,o), (493,488,cs), (485,420,o), (418,348,o), (326,348,cs), (174,348,l) ); } ); width = 608; }, { anchors = ( { name = bottom; pos = (297,0); }, { name = top; pos = (383,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (152,0,l), (188,290,l), (331,290,ls), (475,290,o), (579,376,o), (594,498,cs), (611,631,o), (529,700,o), (407,700,cs), (150,700,l), (64,0,l) ); }, { closed = 1; nodes = ( (571,0,l), (424,319,l), (338,292,l), (469,0,l) ); }, { closed = 1; nodes = ( (228,620,l), (391,620,ls), (461,620,o), (514,573,o), (504,498,cs), (495,422,o), (431,370,o), (361,370,cs), (198,370,l) ); } ); width = 644; }, { anchors = ( { name = bottom; pos = (286,0); }, { name = top; pos = (372,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (207,-1,l), (238,251,l), (388,251,ls), (532,251,o), (629,341,o), (646,478,cs), (663,622,o), (578,701,o), (445,701,cs), (145,701,l), (59,-1,l) ); }, { closed = 1; nodes = ( (636,0,l), (493,283,l), (332,269,l), (463,0,l) ); }, { closed = 1; nodes = ( (275,575,l), (404,575,ls), (467,575,o), (498,533,o), (492,480,cs), (483,410,o), (444,377,o), (380,377,cs), (251,377,l) ); } ); width = 699; } ); unicode = 82; }, { glyphname = Racute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = R; }, { pos = (247,188); ref = acutecomb; } ); width = 608; }, { layerId = m002; shapes = ( { ref = R; }, { pos = (304,188); ref = acutecomb; } ); width = 644; }, { layerId = m003; shapes = ( { ref = R; }, { pos = (272,192); ref = acutecomb; } ); width = 699; } ); unicode = 340; }, { glyphname = Rcaron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = R; }, { pos = (163,188); ref = caroncomb; } ); width = 608; }, { layerId = m002; shapes = ( { ref = R; }, { pos = (199,188); ref = caroncomb; } ); width = 644; }, { layerId = m003; shapes = ( { ref = R; }, { pos = (160,192); ref = caroncomb; } ); width = 699; } ); unicode = 344; }, { glyphname = Rcommaaccent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = R; }, { pos = (245,12); ref = commaaccentcomb; } ); width = 608; }, { layerId = m002; shapes = ( { ref = R; }, { pos = (252,12); ref = commaaccentcomb; } ); width = 644; }, { layerId = m003; shapes = ( { ref = R; }, { pos = (222,1); ref = commaaccentcomb; } ); width = 699; } ); unicode = 342; }, { glyphname = Rdotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = R; }, { pos = (223,1); ref = dotbelowcomb; } ); width = 699; }, { layerId = m01; shapes = ( { ref = R; }, { pos = (242,0); ref = dotbelowcomb; } ); width = 608; }, { layerId = m002; shapes = ( { ref = R; }, { pos = (253,0); ref = dotbelowcomb; } ); width = 644; } ); unicode = 7770; }, { glyphname = Rmacronbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = R; }, { pos = (137,1); ref = macronbelowcomb; } ); width = 699; }, { layerId = m01; shapes = ( { ref = R; }, { pos = (164,12); ref = macronbelowcomb; } ); width = 608; }, { layerId = m002; shapes = ( { ref = R; }, { pos = (169,12); ref = macronbelowcomb; } ); width = 644; } ); unicode = 7774; }, { glyphname = S; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (275,-12); }, { name = top; pos = (361,712); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (410,-12,o), (519,58,o), (536,195,cs), (566,437,o), (139,334,o), (162,521,cs), (171,591,o), (235,656,o), (342,656,cs), (460,656,o), (501,580,o), (501,513,c), (567,513,l), (573,603,o), (501,712,o), (356,712,cs), (199,712,o), (112,618,o), (100,516,cs), (68,259,o), (497,382,o), (473,186,cs), (464,114,o), (401,44,o), (280,44,cs), (157,44,o), (111,121,o), (107,214,c), (40,214,l), (38,99,o), (109,-12,o), (273,-12,cs) ); } ); width = 596; }, { anchors = ( { name = bottom; pos = (281,-12); }, { name = top; pos = (367,712); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (421,-12,o), (535,58,o), (552,195,cs), (584,457,o), (177,344,o), (198,521,cs), (207,591,o), (280,632,o), (350,632,cs), (445,632,o), (486,572,o), (488,513,c), (581,513,l), (587,603,o), (520,712,o), (367,712,cs), (207,712,o), (118,618,o), (106,516,cs), (73,246,o), (482,371,o), (459,186,cs), (450,114,o), (374,68,o), (291,68,cs), (196,68,o), (148,129,o), (145,214,c), (48,214,l), (46,99,o), (111,-12,o), (281,-12,cs) ); } ); width = 597; }, { anchors = ( { name = bottom; pos = (281,-5); }, { name = top; pos = (370,712); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (439,-12,o), (552,63,o), (568,200,cs), (600,459,o), (228,386,o), (243,509,cs), (251,568,o), (310,582,o), (354,582,cs), (410,582,o), (444,554,o), (447,505,c), (600,505,l), (606,595,o), (548,712,o), (370,712,cs), (193,712,o), (102,606,o), (90,504,cs), (57,234,o), (431,338,o), (413,186,cs), (407,142,o), (357,118,o), (296,118,cs), (240,118,o), (192,147,o), (187,222,c), (31,222,l), (30,107,o), (86,-12,o), (280,-12,cs) ); } ); width = 611; } ); unicode = 83; }, { glyphname = Sacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = S; }, { pos = (279,200); ref = acutecomb; } ); width = 596; }, { layerId = m002; shapes = ( { ref = S; }, { pos = (288,200); ref = acutecomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = S; }, { pos = (270,204); ref = acutecomb; } ); width = 611; } ); unicode = 346; }, { glyphname = Scaron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = S; }, { pos = (195,200); ref = caroncomb; } ); width = 596; }, { layerId = m002; shapes = ( { ref = S; }, { pos = (183,200); ref = caroncomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = S; }, { pos = (158,204); ref = caroncomb; } ); width = 611; } ); unicode = 352; }, { glyphname = Scedilla; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = S; }, { pos = (198,-14); ref = cedillacomb; } ); width = 596; }, { layerId = m002; shapes = ( { ref = S; }, { pos = (194,-14); ref = cedillacomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = S; }, { pos = (184,-4); ref = cedillacomb; } ); width = 611; } ); unicode = 350; }, { glyphname = Scircumflex; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = S; }, { pos = (195,200); ref = circumflexcomb; } ); width = 596; }, { layerId = m002; shapes = ( { ref = S; }, { pos = (178,200); ref = circumflexcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = S; }, { pos = (160,204); ref = circumflexcomb; } ); width = 611; } ); unicode = 348; }, { glyphname = Scommaaccent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = S; }, { pos = (246,0); ref = commaaccentcomb; } ); width = 596; }, { layerId = m002; shapes = ( { ref = S; }, { pos = (236,0); ref = commaaccentcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = S; }, { pos = (217,-4); ref = commaaccentcomb; } ); width = 611; } ); unicode = 536; }, { glyphname = Germandbls; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (129,0,l), (215,700,l), (155,700,l), (69,0,l) ); }, { closed = 1; nodes = ( (183,98,l), (215,29,o), (284,-12,o), (369,-12,cs), (491,-12,o), (595,69,o), (610,204,cs), (624,320,o), (555,423,o), (401,423,c), (628,639,l), (635,700,l), (177,700,l), (170,644,l), (555,644,l), (320,423,l), (314,370,l), (371,370,ls), (500,370,o), (562,305,o), (550,208,cs), (540,124,o), (478,44,o), (376,44,cs), (302,44,o), (259,76,o), (239,128,c) ); } ); width = 667; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (166,0,l), (252,700,l), (164,700,l), (78,0,l) ); }, { closed = 1; nodes = ( (216,91,l), (236,31,o), (299,-12,o), (394,-12,cs), (529,-12,o), (620,77,o), (636,210,cs), (649,312,o), (581,414,o), (446,414,c), (643,615,l), (653,700,l), (229,700,l), (219,620,l), (537,620,l), (335,414,l), (327,346,l), (386,346,ls), (494,346,o), (555,295,o), (543,200,cs), (532,114,o), (472,68,o), (404,68,cs), (344,68,o), (312,105,o), (302,139,c) ); } ); width = 699; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (224,0,l), (310,700,l), (164,700,l), (78,0,l) ); }, { closed = 1; nodes = ( (270,92,l), (298,21,o), (373,-13,o), (460,-13,cs), (623,-13,o), (702,92,o), (718,218,cs), (731,331,o), (655,423,o), (554,423,c), (719,574,l), (735,700,l), (239,700,l), (223,574,l), (556,574,l), (391,422,l), (378,317,l), (450,317,ls), (525,317,o), (581,288,o), (572,217,cs), (565,155,o), (520,117,o), (472,117,cs), (435,117,o), (407,133,o), (395,166,c) ); } ); width = 760; } ); unicode = 7838; }, { glyphname = T; kernLeft = T; kernRight = T; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (219,0); }, { name = top; pos = (305,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (251,0,l), (330,644,l), (532,644,l), (539,700,l), (71,700,l), (64,644,l), (266,644,l), (187,0,l) ); } ); width = 500; }, { anchors = ( { name = bottom; pos = (252,0); }, { name = top; pos = (338,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (296,0,l), (372,620,l), (561,620,l), (571,700,l), (105,700,l), (95,620,l), (284,620,l), (208,0,l) ); } ); width = 562; }, { anchors = ( { name = bottom; pos = (269,0); }, { name = top; pos = (351,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (338,0,l), (408,574,l), (595,574,l), (611,700,l), (95,700,l), (79,574,l), (262,574,l), (192,0,l) ); } ); width = 596; } ); unicode = 84; }, { glyphname = Tcaron; kernLeft = T; kernRight = T; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = T; }, { pos = (139,188); ref = caroncomb; } ); width = 500; }, { layerId = m002; shapes = ( { ref = T; }, { pos = (154,188); ref = caroncomb; } ); width = 562; }, { layerId = m003; shapes = ( { ref = T; }, { pos = (139,192); ref = caroncomb; } ); width = 596; } ); unicode = 356; }, { glyphname = Tcedilla; kernLeft = T; kernRight = T; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = T; }, { pos = (142,-2); ref = cedillacomb; } ); width = 500; }, { layerId = m002; shapes = ( { ref = T; }, { pos = (165,-2); ref = cedillacomb; } ); width = 562; }, { layerId = m003; shapes = ( { ref = T; }, { pos = (172,1); ref = cedillacomb; } ); width = 596; } ); unicode = 354; }, { glyphname = Tcommaaccent; kernLeft = T; kernRight = T; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = T; }, { pos = (190,12); ref = commaaccentcomb; } ); width = 500; }, { layerId = m002; shapes = ( { ref = T; }, { pos = (207,12); ref = commaaccentcomb; } ); width = 562; }, { layerId = m003; shapes = ( { ref = T; }, { pos = (205,1); ref = commaaccentcomb; } ); width = 596; } ); unicode = 538; }, { glyphname = Tdotbelow; kernLeft = T; kernRight = T; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = T; }, { pos = (206,1); ref = dotbelowcomb; } ); width = 596; }, { layerId = m01; shapes = ( { ref = T; }, { pos = (187,0); ref = dotbelowcomb; } ); width = 500; }, { layerId = m002; shapes = ( { ref = T; }, { pos = (208,0); ref = dotbelowcomb; } ); width = 562; } ); unicode = 7788; }, { glyphname = Tmacronbelow; kernLeft = T; kernRight = T; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = T; }, { pos = (120,1); ref = macronbelowcomb; } ); width = 596; }, { layerId = m01; shapes = ( { ref = T; }, { pos = (109,12); ref = macronbelowcomb; } ); width = 500; }, { layerId = m002; shapes = ( { ref = T; }, { pos = (124,12); ref = macronbelowcomb; } ); width = 562; } ); unicode = 7790; }, { glyphname = U; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (304,-12); }, { name = top; pos = (393,713); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (451,-12,o), (557,94,o), (579,275,cs), (631,701,l), (571,701,l), (519,275,ls), (500,121,o), (414,44,o), (308,44,cs), (204,44,o), (134,121,o), (153,275,cs), (205,701,l), (145,701,l), (93,275,ls), (71,94,o), (152,-12,o), (305,-12,cs) ); } ); width = 666; }, { anchors = ( { name = bottom; pos = (310,-12); }, { name = top; pos = (399,713); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (477,-12,o), (575,98,o), (597,275,cs), (649,701,l), (561,701,l), (509,275,ls), (492,139,o), (410,73,o), (318,73,cs), (222,73,o), (160,139,o), (177,275,cs), (229,701,l), (141,701,l), (89,275,ls), (67,98,o), (150,-12,o), (312,-12,cs) ); } ); width = 680; }, { anchors = ( { name = bottom; pos = (318,-12); }, { name = top; pos = (406,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (494,-12,o), (607,98,o), (629,275,cs), (681,701,l), (535,701,l), (483,275,ls), (471,184,o), (417,118,o), (330,118,cs), (239,118,o), (205,184,o), (217,275,cs), (269,701,l), (123,701,l), (71,275,ls), (49,98,o), (145,-12,o), (318,-12,cs) ); } ); width = 694; } ); unicode = 85; }, { glyphname = Uacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (311,201); ref = acutecomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (320,201); ref = acutecomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (306,192); ref = acutecomb; } ); width = 694; } ); unicode = 218; }, { glyphname = Ubreve; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (216,201); ref = brevecomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (224,201); ref = brevecomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (206,192); ref = brevecomb; } ); width = 694; } ); unicode = 364; }, { glyphname = Ucircumflex; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (227,201); ref = circumflexcomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (210,201); ref = circumflexcomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (196,192); ref = circumflexcomb; } ); width = 694; } ); unicode = 219; }, { glyphname = Udieresis; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (196,201); ref = dieresiscomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (202,201); ref = dieresiscomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (160,192); ref = dieresiscomb; } ); width = 694; } ); unicode = 220; }, { glyphname = Udotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (272,-12); ref = dotbelowcomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (266,-12); ref = dotbelowcomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (255,-11); ref = dotbelowcomb; } ); width = 694; } ); unicode = 7908; }, { glyphname = Ugrave; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (197,201); ref = gravecomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (204,201); ref = gravecomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (176,192); ref = gravecomb; } ); width = 694; } ); unicode = 217; }, { glyphname = Uhookabove; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (312,213); ref = hookabovecomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (299,213); ref = hookabovecomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (310,192); ref = hookabovecomb; } ); width = 694; } ); unicode = 7910; }, { glyphname = Uhorn; kernLeft = U; kernRight = Uhorn; lastChange = "2025-01-01 09:15:51 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-31,0); ref = U; }, { closed = 1; nodes = ( (679,652,o), (773,730,o), (739,852,c), (676,833,l), (698,763,o), (662,701,o), (598,701,c), (592,652,l) ); } ); width = 701; }, { layerId = m002; shapes = ( { pos = (-31,0); ref = U; }, { closed = 1; nodes = ( (733,647,o), (805,730,o), (771,852,c), (688,830,l), (710,771,o), (697,701,o), (616,701,c), (610,647,l) ); } ); width = 744; }, { layerId = m003; shapes = ( { pos = (-31,0); ref = U; }, { closed = 1; nodes = ( (769,620,o), (870,729,o), (833,864,c), (715,833,l), (737,774,o), (727,701,o), (646,701,c), (636,620,l) ); } ); width = 777; } ); unicode = 431; }, { glyphname = Uhornacute; kernLeft = U; kernRight = Uhorn; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Uhorn; }, { pos = (280,201); ref = acutecomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = Uhorn; }, { pos = (289,201); ref = acutecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = Uhorn; }, { pos = (275,192); ref = acutecomb; } ); width = 777; } ); unicode = 7912; }, { glyphname = Uhorndotbelow; kernLeft = U; kernRight = Uhorn; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Uhorn; }, { pos = (241,-12); ref = dotbelowcomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = Uhorn; }, { pos = (235,-12); ref = dotbelowcomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = Uhorn; }, { pos = (224,-11); ref = dotbelowcomb; } ); width = 777; } ); unicode = 7920; }, { glyphname = Uhorngrave; kernLeft = U; kernRight = Uhorn; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Uhorn; }, { pos = (166,201); ref = gravecomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = Uhorn; }, { pos = (173,201); ref = gravecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = Uhorn; }, { pos = (145,192); ref = gravecomb; } ); width = 777; } ); unicode = 7914; }, { glyphname = Uhornhookabove; kernLeft = U; kernRight = Uhorn; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Uhorn; }, { pos = (281,213); ref = hookabovecomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = Uhorn; }, { pos = (268,213); ref = hookabovecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = Uhorn; }, { pos = (279,192); ref = hookabovecomb; } ); width = 777; } ); unicode = 7916; }, { glyphname = Uhorntilde; kernLeft = U; kernRight = Uhorn; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Uhorn; }, { pos = (169,201); ref = tildecomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = Uhorn; }, { pos = (182,201); ref = tildecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = Uhorn; }, { pos = (145,192); ref = tildecomb; } ); width = 777; } ); unicode = 7918; }, { glyphname = Uhungarumlaut; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (242,201); ref = hungarumlautcomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (244,201); ref = hungarumlautcomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (209,192); ref = hungarumlautcomb; } ); width = 694; } ); unicode = 368; }, { glyphname = Umacron; lastChange = "2025-01-08 14:20:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (228,201); ref = macroncomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (192,201); ref = macroncomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (203,189); ref = macroncomb; } ); width = 694; } ); unicode = 362; }, { glyphname = Uogonek; lastChange = "2025-01-01 09:07:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (245,3); ref = ogonekcomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (259,0); ref = ogonekcomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (278,3); ref = ogonekcomb; } ); width = 694; } ); unicode = 370; }, { glyphname = Uring; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (236,201); ref = ringcomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (236,201); ref = ringcomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (230,192); ref = ringcomb; } ); width = 694; } ); unicode = 366; }, { glyphname = Utilde; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (200,201); ref = tildecomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (213,201); ref = tildecomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (176,192); ref = tildecomb; } ); width = 694; } ); unicode = 360; }, { glyphname = V; kernLeft = V; kernRight = V; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (226,0,l), (288,0,l), (134,700,l), (63,700,l) ); }, { closed = 1; nodes = ( (230,0,l), (288,0,l), (623,700,l), (559,700,l) ); } ); width = 579; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (222,0,l), (308,0,l), (161,700,l), (63,700,l) ); }, { closed = 1; nodes = ( (228,0,l), (308,0,l), (638,700,l), (552,700,l) ); } ); width = 590; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (216,0,l), (366,0,l), (215,700,l), (57,700,l) ); }, { closed = 1; nodes = ( (248,0,l), (386,0,l), (716,700,l), (564,700,l) ); } ); width = 663; } ); unicode = 86; }, { glyphname = W; kernLeft = V; kernRight = V; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (443,0); }, { name = top; pos = (529,700); } ); guides = ( { angle = 270; pos = (268,658); }, { angle = 270; pos = (474,649); }, { angle = 270; pos = (695,658); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (274,0,l), (533,638,l), (516,638,l), (622,0,l), (701,0,l), (981,700,l), (918,700,l), (662,48,l), (678,48,l), (578,700,l), (495,700,l), (235,48,l), (251,48,l), (157,700,l), (87,700,l), (193,0,l) ); } ); width = 958; }, { anchors = ( { name = bottom; pos = (438,0); }, { name = top; pos = (533,700); } ); guides = ( { angle = 89.2931; pos = (265,413); }, { angle = 89.2931; pos = (474,411); }, { angle = 89.2931; pos = (696,411); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (287,0,l), (535,616,l), (509,616,l), (605,0,l), (720,0,l), (981,700,l), (888,700,l), (656,59,l), (685,59,l), (587,700,l), (477,700,l), (223,59,l), (252,59,l), (176,700,l), (83,700,l), (172,0,l) ); } ); width = 954; }, { anchors = ( { name = bottom; pos = (460,0); }, { name = top; pos = (546,700); } ); guides = ( { angle = 270; pos = (287,528); }, { angle = 270; pos = (491,528); }, { angle = 270; pos = (696,528); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (331,0,l), (547,567,l), (511,567,l), (591,0,l), (755,0,l), (1022,700,l), (865,700,l), (662,129,l), (702,129,l), (628,700,l), (464,700,l), (252,129,l), (291,129,l), (228,700,l), (71,700,l), (167,0,l) ); } ); width = 983; }, { associatedMasterId = m002; layerId = "61F56607-383A-4625-9FCC-44CDCF2F703C"; name = "14 Jul 24 at 12:33"; shapes = ( { closed = 1; nodes = ( (293,0,l), (463,569,l), (633,0,l), (748,0,l), (898,700,l), (805,700,l), (688,116,l), (517,700,l), (409,700,l), (238,116,l), (121,700,l), (28,700,l), (178,0,l) ); } ); width = 926; }, { associatedMasterId = m003; layerId = "5ACD06B8-073E-40FC-B562-77ADC4AD2B58"; name = "14 Jul 24 at 12:35"; shapes = ( { closed = 1; nodes = ( (332,0,l), (168,0,l), (18,700,l), (175,700,l), (262,213,l), (408,700,l), (556,700,l), (702,213,l), (789,700,l), (946,700,l), (796,0,l), (632,0,l), (482,485,l) ); } ); width = 964; } ); unicode = 87; }, { glyphname = Wacute; kernLeft = V; kernRight = V; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = W; }, { pos = (447,188); ref = acutecomb; } ); width = 958; }, { layerId = m002; shapes = ( { ref = W; }, { pos = (454,188); ref = acutecomb; } ); width = 954; }, { layerId = m003; shapes = ( { ref = W; }, { pos = (446,192); ref = acutecomb; } ); width = 983; } ); unicode = 7810; }, { glyphname = Wcircumflex; kernLeft = V; kernRight = V; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = W; }, { pos = (363,188); ref = circumflexcomb; } ); width = 958; }, { layerId = m002; shapes = ( { ref = W; }, { pos = (344,188); ref = circumflexcomb; } ); width = 954; }, { layerId = m003; shapes = ( { ref = W; }, { pos = (336,192); ref = circumflexcomb; } ); width = 983; } ); unicode = 372; }, { glyphname = Wdieresis; kernLeft = V; kernRight = V; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = W; }, { pos = (332,188); ref = dieresiscomb; } ); width = 958; }, { layerId = m002; shapes = ( { ref = W; }, { pos = (336,188); ref = dieresiscomb; } ); width = 954; }, { layerId = m003; shapes = ( { ref = W; }, { pos = (300,192); ref = dieresiscomb; } ); width = 983; } ); unicode = 7812; }, { glyphname = Wgrave; kernLeft = V; kernRight = V; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = W; }, { pos = (333,188); ref = gravecomb; } ); width = 958; }, { layerId = m002; shapes = ( { ref = W; }, { pos = (338,188); ref = gravecomb; } ); width = 954; }, { layerId = m003; shapes = ( { ref = W; }, { pos = (316,192); ref = gravecomb; } ); width = 983; } ); unicode = 7808; }, { glyphname = X; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (542,-1,l), (167,699,l), (96,699,l), (472,-1,l) ); }, { closed = 1; nodes = ( (59,-1,l), (605,699,l), (534,699,l), (-11,-1,l) ); } ); width = 593; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (549,0,l), (182,700,l), (81,700,l), (449,0,l) ); }, { closed = 1; nodes = ( (84,0,l), (624,700,l), (524,700,l), (-15,0,l) ); } ); width = 596; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (605,0,l), (221,700,l), (62,700,l), (447,0,l) ); }, { closed = 1; nodes = ( (133,0,l), (689,700,l), (530,700,l), (-25,0,l) ); } ); width = 642; } ); unicode = 88; }, { glyphname = Y; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (255,0); }, { name = top; pos = (341,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (286,0,l), (319,294,l), (613,700,l), (546,700,l), (298,350,l), (135,700,l), (61,700,l), (262,294,l), (223,0,l) ); } ); width = 564; }, { anchors = ( { name = bottom; pos = (263,0); }, { name = top; pos = (349,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (308,0,l), (341,294,l), (632,700,l), (539,700,l), (308,375,l), (160,700,l), (60,700,l), (259,294,l), (220,0,l) ); } ); width = 582; }, { anchors = ( { name = bottom; pos = (293,0); }, { name = top; pos = (378,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (366,0,l), (398,289,l), (700,700,l), (542,700,l), (342,411,l), (216,700,l), (55,700,l), (257,289,l), (219,0,l) ); } ); width = 645; } ); unicode = 89; }, { glyphname = Yacute; kernLeft = Y; kernRight = Y; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Y; }, { pos = (259,188); ref = acutecomb; } ); width = 564; }, { layerId = m002; shapes = ( { ref = Y; }, { pos = (270,188); ref = acutecomb; } ); width = 582; }, { layerId = m003; shapes = ( { ref = Y; }, { pos = (278,192); ref = acutecomb; } ); width = 645; } ); unicode = 221; }, { glyphname = Ycircumflex; kernLeft = Y; kernRight = Y; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Y; }, { pos = (175,188); ref = circumflexcomb; } ); width = 564; }, { layerId = m002; shapes = ( { ref = Y; }, { pos = (160,188); ref = circumflexcomb; } ); width = 582; }, { layerId = m003; shapes = ( { ref = Y; }, { pos = (168,192); ref = circumflexcomb; } ); width = 645; } ); unicode = 374; }, { glyphname = Ydieresis; kernLeft = Y; kernRight = Y; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Y; }, { pos = (144,188); ref = dieresiscomb; } ); width = 564; }, { layerId = m002; shapes = ( { ref = Y; }, { pos = (152,188); ref = dieresiscomb; } ); width = 582; }, { layerId = m003; shapes = ( { ref = Y; }, { pos = (132,192); ref = dieresiscomb; } ); width = 645; } ); unicode = 376; }, { glyphname = Ydotbelow; kernLeft = Y; kernRight = Y; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Y; }, { pos = (223,0); ref = dotbelowcomb; } ); width = 564; }, { layerId = m002; shapes = ( { ref = Y; }, { pos = (219,0); ref = dotbelowcomb; } ); width = 582; }, { layerId = m003; shapes = ( { ref = Y; }, { pos = (230,1); ref = dotbelowcomb; } ); width = 645; } ); unicode = 7924; }, { glyphname = Ygrave; kernLeft = Y; kernRight = Y; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Y; }, { pos = (145,188); ref = gravecomb; } ); width = 564; }, { layerId = m002; shapes = ( { ref = Y; }, { pos = (154,188); ref = gravecomb; } ); width = 582; }, { layerId = m003; shapes = ( { ref = Y; }, { pos = (148,192); ref = gravecomb; } ); width = 645; } ); unicode = 7922; }, { glyphname = Yhookabove; kernLeft = Y; kernRight = Y; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Y; }, { pos = (260,200); ref = hookabovecomb; } ); width = 564; }, { layerId = m002; shapes = ( { ref = Y; }, { pos = (249,200); ref = hookabovecomb; } ); width = 582; }, { layerId = m003; shapes = ( { ref = Y; }, { pos = (282,192); ref = hookabovecomb; } ); width = 645; } ); unicode = 7926; }, { glyphname = Ytilde; kernLeft = Y; kernRight = Y; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Y; }, { pos = (148,188); ref = tildecomb; } ); width = 564; }, { layerId = m002; shapes = ( { ref = Y; }, { pos = (163,188); ref = tildecomb; } ); width = 582; }, { layerId = m003; shapes = ( { ref = Y; }, { pos = (148,192); ref = tildecomb; } ); width = 645; } ); unicode = 7928; }, { glyphname = Z; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (233,0); }, { name = top; pos = (319,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (452,1,l), (459,57,l), (90,57,l), (531,642,l), (538,700,l), (101,700,l), (94,644,l), (464,644,l), (23,59,l), (15,1,l) ); } ); width = 533; }, { anchors = ( { name = bottom; pos = (240,0); }, { name = top; pos = (326,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (464,1,l), (474,81,l), (129,81,l), (540,618,l), (550,700,l), (101,700,l), (91,620,l), (436,620,l), (25,83,l), (15,1,l) ); } ); width = 545; }, { anchors = ( { name = bottom; pos = (240,0); }, { name = top; pos = (326,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (486,1,l), (501,127,l), (183,127,l), (557,578,l), (572,700,l), (85,700,l), (69,574,l), (389,574,l), (14,123,l), (-1,1,l) ); } ); width = 549; } ); unicode = 90; }, { glyphname = Zacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Z; }, { pos = (237,188); ref = acutecomb; } ); width = 533; }, { layerId = m002; shapes = ( { ref = Z; }, { pos = (247,188); ref = acutecomb; } ); width = 545; }, { layerId = m003; shapes = ( { ref = Z; }, { pos = (226,192); ref = acutecomb; } ); width = 549; } ); unicode = 377; }, { glyphname = Zcaron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Z; }, { pos = (153,188); ref = caroncomb; } ); width = 533; }, { layerId = m002; shapes = ( { ref = Z; }, { pos = (142,188); ref = caroncomb; } ); width = 545; }, { layerId = m003; shapes = ( { ref = Z; }, { pos = (114,192); ref = caroncomb; } ); width = 549; } ); unicode = 381; }, { glyphname = Zdotaccent; lastChange = "2025-01-08 14:19:43 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Z; }, { pos = (221,188); ref = dotaccentcomb; } ); width = 533; }, { layerId = m002; shapes = ( { ref = Z; }, { pos = (220,188); ref = dotaccentcomb; } ); width = 545; }, { layerId = m003; shapes = ( { ref = Z; }, { pos = (199,192); ref = dotaccentcomb; } ); width = 549; } ); unicode = 379; }, { glyphname = Lcommaaccent.loclMAH; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = L; }, { pos = (198,-2); ref = commaaccentcomb.loclMAH; } ); width = 529; }, { layerId = m002; shapes = ( { ref = L; }, { pos = (175,-2); ref = commaaccentcomb.loclMAH; } ); width = 524; }, { layerId = m003; shapes = ( { ref = L; }, { pos = (200,1); ref = commaaccentcomb.loclMAH; } ); width = 579; } ); }, { glyphname = Ncommaaccent.loclMAH; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = N; }, { pos = (230,-2); ref = commaaccentcomb.loclMAH; } ); width = 681; }, { layerId = m002; shapes = ( { ref = N; }, { pos = (226,-2); ref = commaaccentcomb.loclMAH; } ); width = 699; }, { layerId = m003; shapes = ( { ref = N; }, { pos = (238,1); ref = commaaccentcomb.loclMAH; } ); width = 732; } ); }, { glyphname = a; kernLeft = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (250,-12); }, { name = top; pos = (313,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (302,-12,o), (391,23,o), (423,92,c), (411,0,l), (467,0,l), (529,500,l), (473,500,l), (461,406,l), (448,461,o), (385,512,o), (300,512,cs), (183,512,o), (77,419,o), (56,250,cs), (36,86,o), (119,-12,o), (236,-12,cs) ); }, { closed = 1; nodes = ( (155,38,o), (100,124,o), (115,252,cs), (131,377,o), (193,462,o), (306,462,cs), (385,462,o), (459,392,o), (443,250,cs), (425,112,o), (350,38,o), (254,38,cs) ); } ); width = 568; }, { anchors = ( { name = bottom; pos = (259,-12); }, { name = top; pos = (323,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (312,-12,o), (390,27,o), (420,96,c), (408,0,l), (492,0,l), (554,500,l), (470,500,l), (458,402,l), (445,457,o), (400,512,o), (312,512,cs), (173,512,o), (75,419,o), (54,250,cs), (34,86,o), (109,-12,o), (243,-12,cs) ); }, { closed = 1; nodes = ( (164,64,o), (126,148,o), (139,252,cs), (152,356,o), (210,437,o), (308,437,cs), (407,437,o), (452,360,o), (438,250,cs), (425,148,o), (361,64,o), (265,64,cs) ); } ); width = 609; }, { anchors = ( { name = bottom; pos = (252,-12); }, { name = top; pos = (318,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (308,-12,o), (362,29,o), (395,83,c), (385,0,l), (524,0,l), (587,508,l), (447,508,l), (436,415,l), (417,470,o), (374,520,o), (290,520,cs), (159,520,o), (59,421,o), (38,253,cs), (18,88,o), (83,-12,o), (219,-12,cs) ); }, { closed = 1; nodes = ( (210,95,o), (172,157,o), (184,253,cs), (195,340,o), (249,410,o), (321,410,cs), (389,410,o), (427,341,o), (416,253,cs), (404,158,o), (351,97,o), (283,96,cs) ); } ); width = 610; } ); unicode = 97; }, { glyphname = aacute; kernLeft = a; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (231,0); ref = acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (244,0); ref = acutecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (218,12); ref = acutecomb; } ); width = 610; } ); unicode = 225; }, { glyphname = abreve; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (136,0); ref = brevecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (148,0); ref = brevecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (118,12); ref = brevecomb; } ); width = 610; } ); unicode = 259; }, { glyphname = abreveacute; lastChange = "2025-01-08 14:16:21 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (113,0); ref = brevecomb_acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (122,12); ref = brevecomb_acutecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (144,12); ref = brevecomb_acutecomb; } ); width = 610; } ); unicode = 7855; }, { glyphname = abrevedotbelow; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (218,-12); ref = dotbelowcomb; }, { pos = (136,0); ref = brevecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (215,-12); ref = dotbelowcomb; }, { pos = (148,0); ref = brevecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (189,-11); ref = dotbelowcomb; }, { pos = (118,12); ref = brevecomb; } ); width = 610; } ); unicode = 7863; }, { glyphname = abrevegrave; lastChange = "2025-01-08 14:17:44 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (97,0); ref = brevecomb_gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (112,12); ref = brevecomb_gravecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (145,12); ref = brevecomb_gravecomb; } ); width = 610; } ); unicode = 7857; }, { glyphname = abrevehookabove; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (93,0); ref = brevecomb_hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (92,12); ref = brevecomb_hookabovecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (112,12); ref = brevecomb_hookabovecomb; } ); width = 610; } ); unicode = 7859; }, { glyphname = abrevetilde; lastChange = "2025-01-08 14:17:09 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (76,0); ref = brevecomb_tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (94,0); ref = brevecomb_tildecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (142,12); ref = brevecomb_tildecomb; } ); width = 610; } ); unicode = 7861; }, { glyphname = acircumflex; kernLeft = a; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (147,0); ref = circumflexcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (134,0); ref = circumflexcomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (108,12); ref = circumflexcomb; } ); width = 610; } ); unicode = 226; }, { glyphname = acircumflexacute; lastChange = "2025-01-08 14:16:50 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (29,0); ref = circumflexcomb_acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (43,12); ref = circumflexcomb_acutecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (138,12); ref = circumflexcomb_acutecomb; } ); width = 610; } ); unicode = 7845; }, { glyphname = acircumflexdotbelow; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (218,-12); ref = dotbelowcomb; }, { pos = (147,0); ref = circumflexcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (215,-12); ref = dotbelowcomb; }, { pos = (134,0); ref = circumflexcomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (189,-11); ref = dotbelowcomb; }, { pos = (108,12); ref = circumflexcomb; } ); width = 610; } ); unicode = 7853; }, { glyphname = acircumflexgrave; lastChange = "2025-01-08 14:17:48 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (171,0); ref = circumflexcomb_gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (167,12); ref = circumflexcomb_gravecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (138,13); ref = circumflexcomb_gravecomb; } ); width = 610; } ); unicode = 7847; }, { glyphname = acircumflexhookabove; lastChange = "2025-01-08 14:24:33 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (174,0); ref = circumflexcomb_hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (170,12); ref = circumflexcomb_hookabovecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (137,12); ref = circumflexcomb_hookabovecomb; } ); width = 610; } ); unicode = 7849; }, { glyphname = acircumflextilde; lastChange = "2025-01-08 14:34:31 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (179,12); ref = circumflexcomb_tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (174,12); ref = circumflexcomb_tildecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (113,12); ref = circumflexcomb_tildecomb; } ); width = 610; } ); unicode = 7851; }, { glyphname = adieresis; kernLeft = a; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (116,0); ref = dieresiscomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (126,0); ref = dieresiscomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (72,12); ref = dieresiscomb; } ); width = 610; } ); unicode = 228; }, { glyphname = adotbelow; lastChange = "2025-01-01 09:19:42 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (218,-12); ref = dotbelowcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (215,-12); ref = dotbelowcomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (189,-11); ref = dotbelowcomb; } ); width = 610; } ); unicode = 7841; }, { glyphname = agrave; kernLeft = a; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (117,0); ref = gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (128,0); ref = gravecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (88,12); ref = gravecomb; } ); width = 610; } ); unicode = 224; }, { glyphname = ahookabove; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (232,12); ref = hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (223,12); ref = hookabovecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (222,12); ref = hookabovecomb; } ); width = 610; } ); unicode = 7843; }, { glyphname = amacron; lastChange = "2025-01-08 14:20:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (148,0); ref = macroncomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (116,0); ref = macroncomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (115,9); ref = macroncomb; } ); width = 610; } ); unicode = 257; }, { glyphname = aogonek; lastChange = "2025-01-01 09:07:36 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (339,5); ref = ogonekcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (360,1); ref = ogonekcomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (380,0); ref = ogonekcomb; } ); width = 610; } ); unicode = 261; }, { glyphname = aring; kernLeft = a; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (156,0); ref = ringcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (160,0); ref = ringcomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (142,12); ref = ringcomb; } ); width = 610; } ); unicode = 229; }, { glyphname = atilde; kernLeft = a; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (120,0); ref = tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (137,0); ref = tildecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (88,12); ref = tildecomb; } ); width = 610; } ); unicode = 227; }, { glyphname = ae; kernLeft = o; kernRight = e; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = top; pos = (484,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (746,-13,o), (822,62,o), (857,144,c), (805,154,l), (780,100,o), (723,37,o), (627,37,cs), (508,37,o), (456,118,o), (471,245,cs), (486,368,o), (546,462,o), (676,462,cs), (783,462,o), (828,381,o), (818,302,c), (467,302,l), (461,252,l), (872,252,l), (874,267,l), (893,422,o), (806,512,o), (678,512,cs), (541,512,o), (443,412,o), (423,248,cs), (403,87,o), (471,-13,o), (617,-13,cs) ); }, { closed = 1; nodes = ( (309,-12,o), (417,65,o), (429,163,c), (451,145,l), (475,338,ls), (489,450,o), (440,512,o), (304,512,cs), (225,512,o), (149,476,o), (100,400,c), (149,373,l), (176,420,o), (229,460,o), (298,460,cs), (400,460,o), (443,409,o), (426,333,cs), (419,301,l), (179,301,o), (59,271,o), (42,132,cs), (30,40,o), (105,-12,o), (189,-12,cs) ); }, { closed = 1; nodes = ( (134,38,o), (96,81,o), (102,131,cs), (114,228,o), (176,251,o), (413,251,c), (411,230,ls), (398,129,o), (313,38,o), (197,38,cs) ); } ); width = 924; }, { anchors = ( { name = top; pos = (503,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (761,-13,o), (837,55,o), (872,137,c), (792,151,l), (766,97,o), (706,63,o), (649,63,cs), (524,63,o), (502,152,o), (514,247,cs), (529,369,o), (583,436,o), (692,436,cs), (786,436,o), (816,360,o), (809,311,c), (516,311,l), (508,241,l), (887,241,l), (889,261,l), (911,434,o), (821,512,o), (697,512,cs), (560,512,o), (461,414,o), (441,250,cs), (421,89,o), (496,-13,o), (636,-13,cs) ); }, { closed = 1; nodes = ( (321,-12,o), (436,73,o), (445,147,c), (471,148,l), (494,332,ls), (508,447,o), (454,512,o), (322,512,cs), (211,512,o), (143,462,o), (104,392,c), (169,356,l), (193,413,o), (255,442,o), (310,442,cs), (380,442,o), (437,414,o), (428,339,cs), (425,313,l), (169,313,o), (69,261,o), (55,141,cs), (43,49,o), (116,-12,o), (199,-12,cs) ); }, { closed = 1; nodes = ( (172,62,o), (131,96,o), (137,141,cs), (145,210,o), (193,247,o), (417,247,c), (413,215,ls), (400,110,o), (281,62,o), (219,62,cs) ); } ); width = 941; }, { anchors = ( { name = top; pos = (494,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (699,-13,o), (800,23,o), (860,134,c), (733,173,l), (709,130,o), (659,107,o), (629,107,cs), (540,107,o), (508,164,o), (519,256,cs), (529,337,o), (576,400,o), (660,400,cs), (727,400,o), (758,346,o), (754,311,c), (493,311,l), (483,225,l), (886,225,l), (889,248,l), (910,418,o), (826,520,o), (676,520,cs), (545,520,o), (422,436,o), (400,256,cs), (379,82,o), (477,-13,o), (612,-13,cs) ); }, { closed = 1; nodes = ( (424,-12,o), (450,173,o), (450,173,c), (478,174,l), (499,340,ls), (512,451,o), (468,520,o), (318,520,cs), (197,520,o), (114,459,o), (81,387,c), (181,342,l), (200,385,o), (241,412,o), (296,412,cs), (364,412,o), (395,374,o), (388,322,cs), (388,318,l), (164,318,o), (42,273,o), (26,144,cs), (15,51,o), (80,-12,o), (194,-12,cs) ); }, { closed = 1; nodes = ( (207,93,o), (162,109,o), (167,151,cs), (173,199,o), (205,226,o), (377,226,c), (374,206,ls), (364,124,o), (298,93,o), (228,93,cs) ); } ); width = 935; } ); unicode = 230; }, { glyphname = aeacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = ae; }, { pos = (402,0); ref = acutecomb; } ); width = 924; }, { layerId = m002; shapes = ( { ref = ae; }, { pos = (424,0); ref = acutecomb; } ); width = 941; }, { layerId = m003; shapes = ( { ref = ae; }, { pos = (394,12); ref = acutecomb; } ); width = 935; } ); unicode = 509; }, { glyphname = b; kernRight = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (207,700,l), (151,700,l), (65,0,l), (121,0,l), (133,98,l), (147,43,o), (209,-12,o), (294,-12,cs), (419,-12,o), (517,81,o), (538,250,cs), (558,414,o), (475,512,o), (358,512,cs), (267,512,o), (197,457,o), (171,402,c) ); }, { closed = 1; nodes = ( (439,462,o), (494,376,o), (479,248,cs), (463,123,o), (401,38,o), (288,38,cs), (209,38,o), (135,108,o), (151,250,c), (169,392,o), (261,462,o), (340,462,cs) ); } ); width = 600; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (231,700,l), (147,700,l), (61,0,l), (145,0,l), (157,98,l), (170,43,o), (215,-12,o), (303,-12,cs), (442,-12,o), (540,81,o), (561,250,cs), (581,414,o), (506,512,o), (372,512,cs), (303,512,o), (226,476,o), (195,407,c) ); }, { closed = 1; nodes = ( (451,436,o), (489,352,o), (476,248,cs), (463,144,o), (405,63,o), (307,63,cs), (208,63,o), (163,140,o), (177,250,cs), (190,352,o), (254,436,o), (350,436,cs) ); } ); width = 615; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (276,700,l), (136,700,l), (49,0,l), (190,0,l), (201,93,l), (220,38,o), (269,-12,o), (347,-12,cs), (478,-12,o), (578,87,o), (599,255,cs), (619,420,o), (549,520,o), (418,520,cs), (335,520,o), (275,479,o), (242,425,c) ); }, { closed = 1; nodes = ( (427,413,o), (465,351,o), (453,255,cs), (442,168,o), (388,98,o), (316,98,cs), (248,98,o), (210,167,o), (221,255,cs), (233,350,o), (286,411,o), (354,412,cs) ); } ); width = 633; } ); unicode = 98; }, { glyphname = c; kernLeft = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (252,-12); }, { name = top; pos = (295,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (462,468,o), (395,512,o), (312,512,cs), (192,512,o), (77,422,o), (56,250,cs), (35,78,o), (128,-12,o), (248,-12,cs), (348,-12,o), (406,35,o), (455,121,c), (406,142,l), (378,86,o), (325,38,o), (254,38,cs), (147,38,o), (98,121,o), (114,250,cs), (130,379,o), (199,462,o), (306,462,cs), (376,462,o), (421,413,o), (436,363,c), (490,383,l) ); } ); width = 518; }, { anchors = ( { name = bottom; pos = (243,-12); }, { name = top; pos = (307,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (481,464,o), (412,512,o), (324,512,c), (198,512,o), (75,424,o), (54,248,cs), (32,74,o), (134,-13,o), (260,-13,cs), (361,-13,o), (429,37,o), (474,120,c), (402,150,l), (374,99,o), (327,63,o), (267,63,cs), (163,63,o), (124,140,o), (138,251,cs), (151,359,o), (208,436,o), (313,436,cs), (373,436,o), (412,402,o), (426,351,c), (506,381,l) ); } ); width = 536; }, { anchors = ( { name = bottom; pos = (258,-12); }, { name = top; pos = (324,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (506,473,o), (434,520,o), (346,520,cs), (183,520,o), (64,420,o), (44,254,cs), (24,88,o), (117,-12,o), (280,-12,cs), (368,-12,o), (452,35,o), (502,127,c), (392,173,l), (376,141,o), (336,108,o), (290,108,cs), (218,108,o), (179,163,o), (190,255,cs), (201,347,o), (254,400,o), (326,400,cs), (372,400,o), (404,367,o), (412,335,c), (534,381,l) ); } ); width = 550; }, { associatedMasterId = m01; layerId = "D6DBBF6B-18E3-4F95-B026-A0427CA97C42"; name = "26 Mar 24 at 21:35"; visible = 1; width = 529; } ); unicode = 99; }, { glyphname = cacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = c; }, { pos = (213,0); ref = acutecomb; } ); width = 518; }, { layerId = m002; shapes = ( { ref = c; }, { pos = (228,0); ref = acutecomb; } ); width = 536; }, { layerId = m003; shapes = ( { ref = c; }, { pos = (224,12); ref = acutecomb; } ); width = 550; } ); unicode = 263; }, { glyphname = ccaron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = c; }, { pos = (129,0); ref = caroncomb; } ); width = 518; }, { layerId = m002; shapes = ( { ref = c; }, { pos = (123,0); ref = caroncomb; } ); width = 536; }, { layerId = m003; shapes = ( { ref = c; }, { pos = (112,12); ref = caroncomb; } ); width = 550; } ); unicode = 269; }, { glyphname = ccedilla; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = c; }, { pos = (175,-14); ref = cedillacomb; } ); width = 518; }, { layerId = m002; shapes = ( { ref = c; }, { pos = (156,-14); ref = cedillacomb; } ); width = 536; }, { layerId = m003; shapes = ( { ref = c; }, { pos = (161,-11); ref = cedillacomb; } ); width = 550; } ); unicode = 231; }, { glyphname = ccircumflex; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = c; }, { pos = (129,0); ref = circumflexcomb; } ); width = 518; }, { layerId = m002; shapes = ( { ref = c; }, { pos = (118,0); ref = circumflexcomb; } ); width = 536; }, { layerId = m003; shapes = ( { ref = c; }, { pos = (114,12); ref = circumflexcomb; } ); width = 550; } ); unicode = 265; }, { glyphname = cdotaccent; lastChange = "2025-01-08 14:19:43 +0000"; layers = ( { layerId = m01; shapes = ( { ref = c; }, { pos = (197,0); ref = dotaccentcomb; } ); width = 518; }, { layerId = m002; shapes = ( { ref = c; }, { pos = (201,0); ref = dotaccentcomb; } ); width = 536; }, { layerId = m003; shapes = ( { ref = c; }, { pos = (197,12); ref = dotaccentcomb; } ); width = 550; } ); unicode = 267; }, { glyphname = d; kernLeft = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (272,-12); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (413,17,o), (451,0,o), (490,-1,cs), (515,-2,o), (526,3,o), (541,11,c), (546,58,l), (501,39,o), (474,53,o), (480,103,cs), (553,700,l), (497,700,l), (461,404,l), (446,473,o), (366,512,o), (300,512,cs), (183,512,o), (76,414,o), (56,250,cs), (35,81,o), (113,-12,o), (236,-12,cs), (302,-12,o), (391,19,o), (422,88,c) ); }, { closed = 1; nodes = ( (141,38,o), (99,123,o), (115,248,cs), (130,376,o), (207,462,o), (306,462,cs), (402,462,o), (459,388,o), (443,250,cs), (425,112,o), (350,38,o), (254,38,cs) ); } ); width = 610; }, { anchors = ( { name = bottom; pos = (295,-12); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (417,44,o), (450,-1,o), (502,-1,cs), (527,-1,o), (541,3,o), (556,11,c), (564,79,l), (514,68,o), (502,86,o), (507,126,cs), (577,700,l), (493,700,l), (457,406,l), (445,461,o), (399,512,o), (311,512,cs), (172,512,o), (74,419,o), (53,250,cs), (33,86,o), (104,-12,o), (242,-12,cs), (311,-12,o), (392,25,o), (423,94,c) ); }, { closed = 1; nodes = ( (163,64,o), (125,148,o), (138,252,cs), (151,356,o), (209,437,o), (307,437,cs), (406,437,o), (451,360,o), (437,250,cs), (424,148,o), (360,64,o), (264,64,cs) ); } ); width = 627; }, { anchors = ( { name = bottom; pos = (292,-12); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (396,30,o), (469,-1,o), (516,-1,cs), (543,-1,o), (578,6,o), (593,14,c), (606,124,l), (556,113,o), (544,128,o), (548,168,cs), (615,700,l), (475,700,l), (440,415,l), (421,470,o), (377,520,o), (294,520,cs), (163,520,o), (63,421,o), (42,253,cs), (22,88,o), (92,-12,o), (223,-12,cs), (311,-12,o), (369,32,o), (405,101,c) ); }, { closed = 1; nodes = ( (215,95,o), (177,157,o), (189,253,cs), (200,340,o), (254,410,o), (326,410,cs), (394,410,o), (432,341,o), (421,253,cs), (409,158,o), (356,97,o), (288,96,cs) ); } ); width = 660; }, { associatedMasterId = m01; layerId = "F3AABDD4-5D52-40E7-9352-25D68A3D59C9"; name = "5 Apr 24 at 08:05"; shapes = ( { closed = 1; nodes = ( (378,462,o), (444,388,o), (445,250,cs), (444,108,o), (361,38,o), (282,38,cs), (169,38,o), (117,123,o), (117,248,cs), (117,376,o), (183,462,o), (282,462,cs) ); }, { closed = 1; nodes = ( (500,700,l), (444,700,l), (444,404,l), (421,473,o), (336,512,o), (270,512,cs), (153,512,o), (58,414,o), (58,250,cs), (58,81,o), (153,-12,o), (270,-12,cs), (355,-12,o), (424,41,o), (444,96,c), (444,25,o), (484,0,o), (523,-1,cs), (548,-2,o), (558,3,o), (572,11,c), (572,64,l), (529,48,o), (500,69,o), (500,119,cs) ); } ); width = 652; } ); unicode = 100; }, { glyphname = dcaron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-31,0); ref = d; }, { closed = 1; nodes = ( (722,700,l), (629,700,l), (602,582,l), (652,582,l) ); } ); width = 667; }, { layerId = m002; shapes = ( { pos = (-31,0); ref = d; }, { closed = 1; nodes = ( (763,701,l), (653,701,l), (626,564,l), (698,564,l) ); } ); width = 708; }, { layerId = m003; shapes = ( { pos = (-31,0); ref = d; }, { closed = 1; nodes = ( (815,701,l), (685,701,l), (645,531,l), (740,531,l) ); } ); width = 760; } ); unicode = 271; }, { glyphname = dcroat; lastChange = "2025-01-08 14:43:20 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-31,0); ref = d; }, { closed = 1; nodes = ( (309,562,l), (575,562,l), (581,609,l), (315,609,l) ); } ); width = 617; }, { layerId = m002; shapes = ( { pos = (-31,0); ref = d; }, { closed = 1; nodes = ( (291,564,l), (600,564,l), (608,632,l), (299,632,l) ); } ); width = 653; }, { layerId = m003; shapes = ( { pos = (-31,0); ref = d; }, { closed = 1; nodes = ( (303,540,l), (646,540,l), (658,640,l), (315,640,l) ); } ); width = 679; } ); unicode = 273; }, { glyphname = ddotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = d; }, { pos = (229,-11); ref = dotbelowcomb; } ); width = 660; }, { layerId = m01; shapes = ( { ref = d; }, { pos = (240,-12); ref = dotbelowcomb; } ); width = 610; }, { layerId = m002; shapes = ( { ref = d; }, { pos = (251,-12); ref = dotbelowcomb; } ); width = 627; } ); unicode = 7693; }, { glyphname = dmacronbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = d; }, { pos = (143,-11); ref = macronbelowcomb; } ); width = 660; }, { layerId = m01; shapes = ( { ref = d; }, { pos = (162,0); ref = macronbelowcomb; } ); width = 610; }, { layerId = m002; shapes = ( { ref = d; }, { pos = (167,0); ref = macronbelowcomb; } ); width = 627; } ); unicode = 7695; }, { glyphname = eth; kernLeft = o; kernRight = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (250,0); }, { name = top; pos = (339,720); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (399,-12,o), (487,105,o), (510,289,cs), (532,472,o), (484,622,o), (285,713,c), (253,664,l), (308,647,o), (464,542,o), (455,389,c), (434,453,o), (375,489,o), (303,489,cs), (189,489,o), (75,405,o), (55,239,cs), (34,72,o), (128,-12,o), (242,-12,cs) ); }, { closed = 1; nodes = ( (147,38,o), (98,113,o), (114,239,cs), (129,365,o), (196,439,o), (297,439,cs), (390,439,o), (448,365,o), (433,239,cs), (417,113,o), (349,38,o), (248,38,cs) ); }, { closed = 1; nodes = ( (511,635,l), (496,678,l), (244,562,l), (261,519,l) ); } ); width = 561; }, { anchors = ( { name = bottom; pos = (257,0); }, { name = top; pos = (346,720); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (410,-12,o), (503,120,o), (523,284,cs), (553,529,o), (458,654,o), (300,725,c), (257,660,l), (308,640,o), (441,558,o), (441,429,c), (410,471,o), (354,488,o), (310,488,cs), (196,488,o), (75,402,o), (55,238,cs), (34,74,o), (128,-12,o), (252,-12,cs) ); }, { closed = 1; nodes = ( (169,60,o), (125,128,o), (139,238,cs), (152,348,o), (214,416,o), (304,416,cs), (397,416,o), (441,348,o), (428,238,cs), (414,128,o), (354,60,o), (261,60,cs) ); }, { closed = 1; nodes = ( (537,644,l), (515,702,l), (246,571,l), (268,512,l) ); } ); width = 575; }, { anchors = ( { name = bottom; pos = (261,0); }, { name = top; pos = (349,720); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (419,-12,o), (533,129,o), (555,307,cs), (582,533,o), (468,677,o), (285,744,c), (224,651,l), (262,642,o), (415,578,o), (438,432,c), (420,466,o), (363,498,o), (304,498,cs), (183,498,o), (56,419,o), (35,243,cs), (14,76,o), (128,-12,o), (257,-12,cs) ); }, { closed = 1; nodes = ( (200,108,o), (167,161,o), (177,243,cs), (186,323,o), (234,378,o), (302,378,cs), (380,378,o), (408,323,o), (399,243,cs), (389,161,o), (346,108,o), (269,108,cs) ); }, { closed = 1; nodes = ( (549,650,l), (517,722,l), (222,583,l), (253,511,l) ); } ); width = 584; } ); unicode = 240; }, { glyphname = e; kernLeft = o; kernRight = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (253,-13); }, { name = top; pos = (317,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (390,-13,o), (466,62,o), (501,144,c), (449,154,l), (424,100,o), (367,37,o), (271,37,cs), (152,37,o), (100,118,o), (115,245,cs), (130,368,o), (190,462,o), (320,462,cs), (427,462,o), (470,368,o), (461,289,c), (110,289,l), (104,239,l), (515,239,l), (518,267,l), (537,422,o), (450,512,o), (322,512,cs), (185,512,o), (78,412,o), (58,248,cs), (38,87,o), (115,-13,o), (261,-13,cs) ); } ); width = 568; }, { anchors = ( { name = bottom; pos = (255,-13); }, { name = top; pos = (319,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (389,-13,o), (465,55,o), (500,137,c), (420,151,l), (394,97,o), (334,63,o), (277,63,cs), (152,63,o), (130,150,o), (141,245,cs), (156,367,o), (211,436,o), (320,436,cs), (414,436,o), (442,345,o), (437,304,c), (144,304,l), (135,234,l), (514,234,l), (517,261,l), (539,434,o), (449,512,o), (325,512,cs), (188,512,o), (77,412,o), (57,248,cs), (37,87,o), (124,-13,o), (264,-13,cs) ); } ); width = 569; }, { anchors = ( { name = bottom; pos = (258,-13); }, { name = top; pos = (324,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (355,-13,o), (456,23,o), (516,134,c), (389,173,l), (365,130,o), (315,107,o), (285,107,cs), (196,107,o), (164,164,o), (175,256,cs), (185,337,o), (232,400,o), (316,400,cs), (383,400,o), (413,336,o), (409,301,c), (148,301,l), (138,215,l), (541,215,l), (545,248,l), (566,418,o), (482,520,o), (332,520,cs), (201,520,o), (60,436,o), (38,256,cs), (17,82,o), (133,-13,o), (268,-13,cs) ); } ); width = 591; }, { associatedMasterId = m003; layerId = "35791070-3456-4186-8F4C-DCAEEFC69CEB"; name = "28 Feb 24 at 11:45"; shapes = ( { closed = 1; nodes = ( (395,-13,o), (490,19,o), (537,122,c), (402,149,l), (385,115,o), (339,107,o), (309,107,cs), (216,107,o), (179,161,o), (179,253,cs), (179,334,o), (216,400,o), (304,400,cs), (375,400,o), (410,335,o), (410,300,c), (141,300,l), (142,210,l), (553,210,l), (553,245,l), (553,415,o), (456,520,o), (302,520,cs), (167,520,o), (37,436,o), (37,256,cs), (37,82,o), (165,-13,o), (304,-13,cs) ); } ); visible = 1; width = 582; }, { associatedMasterId = m01; layerId = "DC9D73E7-764C-4C88-8E22-C9A4CAB6D2B5"; name = "26 Mar 24 at 21:50"; shapes = ( { closed = 1; nodes = ( (416,-12,o), (550,70,o), (550,254,cs), (550,440,o), (422,520,o), (293,520,cs), (168,520,o), (34,440,o), (34,254,cs), (34,70,o), (160,-12,o), (293,-12,cs) ); }, { closed = 1; nodes = ( (219,108,o), (180,164,o), (180,254,cs), (180,342,o), (220,400,o), (293,400,cs), (367,400,o), (404,342,o), (404,254,cs), (404,164,o), (366,108,o), (293,108,cs) ); }, { closed = 0; nodes = ( (293,520,l) ); } ); visible = 1; width = 572; } ); unicode = 101; }, { glyphname = eacute; kernLeft = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (235,0); ref = acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (240,0); ref = acutecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (224,12); ref = acutecomb; } ); width = 591; } ); unicode = 233; }, { glyphname = ebreve; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (140,0); ref = brevecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (144,0); ref = brevecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (124,12); ref = brevecomb; } ); width = 591; } ); unicode = 277; }, { glyphname = ecaron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (151,0); ref = caroncomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (135,0); ref = caroncomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (112,12); ref = caroncomb; } ); width = 591; } ); unicode = 283; }, { glyphname = ecircumflex; kernLeft = o; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (151,0); ref = circumflexcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (130,0); ref = circumflexcomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (114,12); ref = circumflexcomb; } ); width = 591; } ); unicode = 234; }, { glyphname = ecircumflexacute; lastChange = "2025-01-08 14:16:50 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (33,0); ref = circumflexcomb_acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (39,12); ref = circumflexcomb_acutecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (144,12); ref = circumflexcomb_acutecomb; } ); width = 591; } ); unicode = 7871; }, { glyphname = ecircumflexdotbelow; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (221,-13); ref = dotbelowcomb; }, { pos = (151,0); ref = circumflexcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (211,-13); ref = dotbelowcomb; }, { pos = (130,0); ref = circumflexcomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (195,-12); ref = dotbelowcomb; }, { pos = (114,12); ref = circumflexcomb; } ); width = 591; } ); unicode = 7879; }, { glyphname = ecircumflexgrave; lastChange = "2025-01-08 14:17:48 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (175,0); ref = circumflexcomb_gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (163,12); ref = circumflexcomb_gravecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (144,13); ref = circumflexcomb_gravecomb; } ); width = 591; } ); unicode = 7873; }, { glyphname = ecircumflexhookabove; lastChange = "2025-01-08 14:24:33 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (178,0); ref = circumflexcomb_hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (166,12); ref = circumflexcomb_hookabovecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (143,12); ref = circumflexcomb_hookabovecomb; } ); width = 591; } ); unicode = 7875; }, { glyphname = ecircumflextilde; lastChange = "2025-01-08 14:34:31 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (183,12); ref = circumflexcomb_tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (170,12); ref = circumflexcomb_tildecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (119,12); ref = circumflexcomb_tildecomb; } ); width = 591; } ); unicode = 7877; }, { glyphname = edieresis; kernLeft = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (120,0); ref = dieresiscomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (122,0); ref = dieresiscomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (78,12); ref = dieresiscomb; } ); width = 591; } ); unicode = 235; }, { glyphname = edotaccent; lastChange = "2025-01-08 14:19:43 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (219,0); ref = dotaccentcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (213,0); ref = dotaccentcomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (197,12); ref = dotaccentcomb; } ); width = 591; } ); unicode = 279; }, { glyphname = edotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (221,-13); ref = dotbelowcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (211,-13); ref = dotbelowcomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (195,-12); ref = dotbelowcomb; } ); width = 591; } ); unicode = 7865; }, { glyphname = egrave; kernLeft = o; kernRight = e; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (121,0); ref = gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (124,0); ref = gravecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (94,12); ref = gravecomb; } ); width = 591; } ); unicode = 232; }, { glyphname = ehookabove; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (236,12); ref = hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (219,12); ref = hookabovecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (228,12); ref = hookabovecomb; } ); width = 591; } ); unicode = 7867; }, { glyphname = emacron; lastChange = "2025-01-08 14:20:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (152,0); ref = macroncomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (112,0); ref = macroncomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (121,9); ref = macroncomb; } ); width = 591; } ); unicode = 275; }, { glyphname = eogonek; lastChange = "2025-01-01 09:08:25 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-31,0); ref = e; }, { closed = 1; nodes = ( (388,-143,o), (414,-134,o), (429,-121,c), (412,-70,l), (380,-92,o), (335,-78,o), (339,-40,cs), (343,-12,o), (356,3,o), (421,67,c), (396,86,l), (317,49,o), (281,0,o), (275,-55,cs), (268,-110,o), (308,-143,o), (362,-143,cs) ); } ); width = 568; }, { layerId = m002; shapes = ( { pos = (-31,0); ref = e; }, { closed = 1; nodes = ( (385,-152,o), (417,-140,o), (433,-127,c), (417,-64,l), (372,-91,o), (332,-79,o), (337,-39,cs), (340,-10,o), (371,16,o), (409,51,c), (377,83,l), (306,52,o), (268,-4,o), (261,-59,cs), (254,-116,o), (296,-152,o), (349,-152,cs) ); } ); width = 569; }, { layerId = m003; shapes = ( { pos = (-31,0); ref = e; }, { closed = 1; nodes = ( (404,-183,o), (444,-165,o), (467,-145,c), (438,-70,l), (397,-101,o), (356,-78,o), (362,-35,cs), (364,-15,o), (376,13,o), (428,60,c), (408,96,l), (305,50,o), (264,3,o), (254,-74,cs), (245,-139,o), (296,-183,o), (356,-183,cs) ); } ); width = 592; } ); unicode = 281; }, { glyphname = eopen; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (432,143,l), (406,76,o), (337,38,o), (251,38,cs), (141,38,o), (95,79,o), (102,136,cs), (108,184,o), (159,240,o), (289,240,cs), (289,240,o), (347,240,o), (347,240,c), (354,294,l), (296,294,l), (173,294,o), (150,339,o), (154,375,cs), (160,423,o), (198,462,o), (299,462,cs), (367,462,o), (415,442,o), (430,403,c), (476,425,l), (451,488,o), (380,512,o), (305,512,cs), (184,512,o), (106,456,o), (96,374,cs), (90,320,o), (115,278,o), (156,265,c), (84,239,o), (50,184,o), (44,134,cs), (31,31,o), (113,-12,o), (244,-12,cs), (349,-12,o), (445,38,o), (476,128,c) ); } ); width = 543; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (410,159,l), (382,87,o), (321,64,o), (256,64,cs), (157,64,o), (122,98,o), (128,147,cs), (134,194,o), (176,239,o), (286,239,cs), (286,239,o), (339,239,o), (339,239,c), (349,312,l), (296,312,l), (200,312,o), (173,335,o), (178,371,cs), (181,398,o), (209,436,o), (301,436,cs), (344,436,o), (383,426,o), (400,387,c), (470,421,l), (458,479,o), (373,512,o), (306,512,cs), (175,512,o), (104,457,o), (94,375,cs), (88,321,o), (118,288,o), (158,275,c), (98,252,o), (51,203,o), (44,142,cs), (31,38,o), (108,-12,o), (246,-12,cs), (349,-12,o), (441,39,o), (478,139,c) ); } ); width = 545; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (395,177,l), (377,140,o), (341,108,o), (271,108,cs), (194,108,o), (169,131,o), (173,164,cs), (177,201,o), (207,221,o), (283,221,cs), (283,221,o), (334,221,o), (334,221,c), (346,309,l), (295,309,l), (245,309,o), (218,325,o), (221,354,cs), (225,381,o), (248,400,o), (301,400,cs), (348,400,o), (370,382,o), (376,358,c), (502,415,l), (491,479,o), (408,520,o), (312,520,cs), (176,520,o), (91,461,o), (81,379,cs), (75,325,o), (103,282,o), (144,269,c), (67,243,o), (32,209,o), (25,148,cs), (12,44,o), (104,-12,o), (255,-12,cs), (391,-12,o), (475,56,o), (511,149,c) ); } ); width = 569; } ); unicode = 603; }, { glyphname = etilde; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (124,0); ref = tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (133,0); ref = tildecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (94,12); ref = tildecomb; } ); width = 591; } ); unicode = 7869; }, { glyphname = schwa; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { angle = 180; pos = (568,500); ref = e; } ); width = 568; }, { layerId = m002; shapes = ( { angle = 180; pos = (569,500); ref = e; } ); width = 569; }, { layerId = m003; shapes = ( { angle = 180; pos = (591,508); ref = e; } ); width = 591; } ); unicode = 601; }, { glyphname = f; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (169,0,l), (225,450,l), (352,450,l), (358,500,l), (231,500,l), (240,575,ls), (249,648,o), (279,666,o), (327,666,cs), (340,666,o), (357,665,o), (373,662,c), (379,712,l), (362,717,o), (341,720,o), (325,720,cs), (240,720,o), (195,669,o), (184,576,cs), (175,500,l), (83,500,l), (77,450,l), (169,450,l), (113,0,l) ); } ); width = 346; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (196,0,l), (248,424,l), (376,424,l), (386,500,l), (258,500,l), (267,575,ls), (274,629,o), (303,648,o), (352,648,cs), (365,648,o), (383,647,o), (398,644,c), (407,712,l), (390,717,o), (368,720,o), (352,720,cs), (243,720,o), (194,669,o), (183,576,cs), (174,500,l), (78,500,l), (68,424,l), (164,424,l), (112,0,l) ); } ); width = 375; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (241,0,l), (288,388,l), (404,388,l), (419,508,l), (303,508,l), (307,539,ls), (312,576,o), (330,604,o), (379,604,cs), (392,604,o), (409,603,o), (424,600,c), (439,712,l), (423,717,o), (388,720,o), (353,720,cs), (270,720,o), (188,686,o), (173,576,cs), (163,508,l), (63,508,l), (48,388,l), (148,388,l), (101,0,l) ); } ); width = 400; } ); unicode = 102; }, { glyphname = g; kernLeft = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = top; pos = (349,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (400,-103,o), (335,-176,o), (221,-176,cs), (120,-176,o), (82,-109,o), (70,-81,c), (16,-115,l), (37,-171,o), (90,-230,o), (214,-230,cs), (339,-230,o), (447,-175,o), (470,13,c), (529,500,l), (473,500,l), (461,402,l), (447,457,o), (385,512,o), (300,512,cs), (183,512,o), (77,419,o), (56,250,cs), (36,86,o), (117,-12,o), (236,-12,cs), (302,-12,o), (393,27,o), (424,96,c), (414,13,ls) ); }, { closed = 1; nodes = ( (155,38,o), (99,124,o), (114,252,cs), (130,377,o), (193,462,o), (306,462,cs), (385,462,o), (459,392,o), (443,250,cs), (425,112,o), (350,38,o), (254,38,cs) ); } ); width = 569; }, { anchors = ( { name = top; pos = (356,512); } ); guides = ( { angle = 270; pos = (52,419); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (395,-96,o), (344,-156,o), (234,-156,cs), (167,-156,o), (116,-117,o), (98,-60,c), (20,-107,l), (45,-195,o), (135,-229,o), (222,-230,cs), (354,-232,o), (469,-171,o), (492,17,cs), (552,500,l), (468,500,l), (456,402,l), (443,457,o), (398,512,o), (310,512,cs), (171,512,o), (73,419,o), (52,250,cs), (32,86,o), (107,-12,o), (241,-12,cs), (310,-12,o), (388,27,o), (418,96,c), (408,17,ls) ); }, { closed = 1; nodes = ( (162,64,o), (124,148,o), (137,252,cs), (150,356,o), (208,437,o), (306,437,cs), (405,437,o), (450,360,o), (436,250,cs), (423,148,o), (359,64,o), (263,64,cs) ); } ); width = 607; }, { anchors = ( { name = top; pos = (361,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (384,-80,o), (327,-123,o), (242,-123,cs), (175,-123,o), (127,-76,o), (111,-29,c), (-6,-102,l), (18,-180,o), (104,-237,o), (225,-237,cs), (406,-237,o), (512,-142,o), (530,0,cs), (593,508,l), (459,508,l), (448,419,l), (428,474,o), (387,520,o), (303,520,cs), (172,520,o), (69,421,o), (48,253,cs), (28,88,o), (101,-12,o), (232,-12,cs), (315,-12,o), (373,25,o), (404,79,c), (394,0,ls) ); }, { closed = 1; nodes = ( (220,95,o), (182,157,o), (194,253,cs), (205,340,o), (259,410,o), (331,410,cs), (399,410,o), (437,341,o), (426,253,cs), (414,158,o), (361,97,o), (293,96,cs) ); } ); width = 632; } ); unicode = 103; }, { glyphname = gbreve; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g; }, { pos = (172,0); ref = brevecomb; } ); width = 569; }, { layerId = m002; shapes = ( { ref = g; }, { pos = (181,0); ref = brevecomb; } ); width = 607; }, { layerId = m003; shapes = ( { ref = g; }, { pos = (161,12); ref = brevecomb; } ); width = 632; } ); unicode = 287; }, { glyphname = gcircumflex; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g; }, { pos = (183,0); ref = circumflexcomb; } ); width = 569; }, { layerId = m002; shapes = ( { ref = g; }, { pos = (167,0); ref = circumflexcomb; } ); width = 607; }, { layerId = m003; shapes = ( { ref = g; }, { pos = (151,12); ref = circumflexcomb; } ); width = 632; } ); unicode = 285; }, { glyphname = gcommaaccent; lastChange = "2025-01-01 09:21:45 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g; }, { pos = (234,0); ref = commaturnedabovecomb; } ); width = 569; }, { layerId = m002; shapes = ( { ref = g; }, { pos = (216,0); ref = commaturnedabovecomb; } ); width = 607; }, { layerId = m003; shapes = ( { ref = g; }, { pos = (214,12); ref = commaturnedabovecomb; } ); width = 632; } ); unicode = 291; }, { glyphname = gdotaccent; lastChange = "2025-01-08 14:19:43 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g; }, { pos = (251,0); ref = dotaccentcomb; } ); width = 569; }, { layerId = m002; shapes = ( { ref = g; }, { pos = (250,0); ref = dotaccentcomb; } ); width = 607; }, { layerId = m003; shapes = ( { ref = g; }, { pos = (234,12); ref = dotaccentcomb; } ); width = 632; } ); unicode = 289; }, { glyphname = gmacron; lastChange = "2025-01-08 14:20:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g; }, { pos = (184,0); ref = macroncomb; } ); width = 569; }, { layerId = m002; shapes = ( { ref = g; }, { pos = (149,0); ref = macroncomb; } ); width = 607; }, { layerId = m003; shapes = ( { ref = g; }, { pos = (158,9); ref = macroncomb; } ); width = 632; } ); unicode = 7713; }, { glyphname = h; lastChange = "2025-01-08 15:05:49 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (121,0,l), (154,270,ls), (166,366,o), (233,462,o), (332,462,cs), (413,462,o), (468,411,o), (455,310,cs), (417,0,l), (473,0,l), (513,322,ls), (528,442,o), (451,512,o), (354,512,cs), (235,512,o), (183,431,o), (170,396,c), (207,700,l), (151,700,l), (65,0,l) ); } ); width = 592; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (145,0,l), (178,270,ls), (190,366,o), (246,436,o), (338,436,cs), (405,436,o), (446,403,o), (435,316,cs), (396,0,l), (480,0,l), (521,328,ls), (535,448,o), (472,512,o), (375,512,cs), (263,512,o), (208,441,o), (195,406,c), (231,700,l), (147,700,l), (61,0,l) ); } ); width = 597; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (189,0,l), (218,239,ls), (231,347,o), (267,408,o), (350,408,cs), (407,408,o), (430,370,o), (421,296,cs), (385,0,l), (525,0,l), (563,315,ls), (578,435,o), (531,520,o), (397,520,cs), (329,520,o), (269,479,o), (242,430,c), (275,700,l), (135,700,l), (49,0,l) ); } ); width = 624; } ); unicode = 104; }, { glyphname = hbar; lastChange = "2025-01-01 09:20:25 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (46,0); ref = h; }, { closed = 1; nodes = ( (111,562,l), (377,562,l), (383,609,l), (117,609,l) ); } ); width = 669; }, { layerId = m002; shapes = ( { pos = (58,0); ref = h; }, { closed = 1; nodes = ( (100,564,l), (409,564,l), (417,632,l), (108,632,l) ); } ); width = 686; }, { layerId = m003; shapes = ( { pos = (53,0); ref = h; }, { closed = 1; nodes = ( (96,540,l), (439,540,l), (451,640,l), (108,640,l) ); } ); width = 712; } ); unicode = 295; }, { glyphname = hcircumflex; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = h; }, { pos = (167,0); ref = circumflexcomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = h; }, { pos = (176,0); ref = circumflexcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = h; }, { pos = (236,22); ref = circumflexcomb; } ); width = 624; } ); unicode = 293; }, { glyphname = i; kernLeft = i; kernRight = i; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (-47,680); }, { pos = (-42,585); }, { pos = (-47,632); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (204,585,o), (228,607,o), (231,632,cs), (234,658,o), (216,680,o), (191,680,cs), (165,680,o), (140,658,o), (137,632,cs), (134,607,o), (153,585,o), (179,585,cs) ); }, { closed = 1; nodes = ( (134,0,l), (196,500,l), (140,500,l), (78,0,l) ); } ); width = 274; }, { guides = ( { pos = (-27,700); }, { pos = (-26,590); }, { pos = (-27,645); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (199,590,o), (226,615,o), (229,645,cs), (233,675,o), (212,700,o), (182,700,cs), (152,700,o), (124,675,o), (120,645,cs), (117,615,o), (139,590,o), (169,590,cs) ); }, { closed = 1; nodes = ( (138,0,l), (200,500,l), (116,500,l), (54,0,l) ); } ); width = 253; }, { guides = ( { pos = (15,559); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (219,559,o), (260,598,o), (266,644,cs), (272,690,o), (240,729,o), (192,729,cs), (147,729,o), (104,690,o), (98,644,cs), (92,598,o), (126,559,o), (171,559,cs) ); }, { closed = 1; nodes = ( (173,0,l), (235,508,l), (95,508,l), (33,0,l) ); } ); width = 268; } ); unicode = 105; }, { glyphname = idotless; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (86,0); }, { name = top; pos = (149,500); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (115,0,l), (177,500,l), (121,500,l), (59,0,l) ); } ); width = 236; }, { anchors = ( { name = bottom; pos = (83,0); }, { name = top; pos = (144,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (125,0,l), (187,500,l), (103,500,l), (41,0,l) ); } ); width = 228; }, { anchors = ( { name = bottom; pos = (89,0); }, { name = top; pos = (150,508); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (159,0,l), (221,508,l), (81,508,l), (19,0,l) ); } ); width = 240; } ); unicode = 305; }, { glyphname = iacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (67,-12); ref = acutecomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (65,-12); ref = acutecomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (50,0); ref = acutecomb; } ); width = 240; } ); unicode = 237; }, { glyphname = ibreve; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (-28,-12); ref = brevecomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (-31,-12); ref = brevecomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (-50,0); ref = brevecomb; } ); width = 240; } ); unicode = 301; }, { glyphname = icircumflex; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (-17,-12); ref = circumflexcomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (-45,-12); ref = circumflexcomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (-60,0); ref = circumflexcomb; } ); width = 240; } ); unicode = 238; }, { glyphname = idieresis; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (-48,-12); ref = dieresiscomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (-53,-12); ref = dieresiscomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (-96,0); ref = dieresiscomb; } ); width = 240; } ); unicode = 239; }, { glyphname = idotaccent; lastChange = "2025-01-08 14:19:43 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (51,-12); ref = dotaccentcomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (38,-12); ref = dotaccentcomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (23,0); ref = dotaccentcomb; } ); width = 240; } ); }, { glyphname = idotbelow; lastChange = "2025-01-01 09:11:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = i; }, { pos = (66,0); ref = dotbelowcomb; } ); width = 274; }, { layerId = m002; shapes = ( { ref = i; }, { pos = (52,0); ref = dotbelowcomb; } ); width = 253; }, { layerId = m003; shapes = ( { ref = i; }, { pos = (43,0); ref = dotbelowcomb; } ); width = 268; } ); unicode = 7883; }, { glyphname = igrave; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (-47,-12); ref = gravecomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (-51,-12); ref = gravecomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (-80,0); ref = gravecomb; } ); width = 240; } ); unicode = 236; }, { glyphname = ihookabove; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (68,0); ref = hookabovecomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (44,0); ref = hookabovecomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (54,0); ref = hookabovecomb; } ); width = 240; } ); unicode = 7881; }, { glyphname = imacron; lastChange = "2025-01-08 14:20:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (-16,-12); ref = macroncomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (-63,-12); ref = macroncomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (-53,-3); ref = macroncomb; } ); width = 240; } ); unicode = 299; }, { glyphname = iogonek; lastChange = "2025-01-08 14:19:43 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (51,-12); ref = dotaccentcomb; }, { pos = (-13,5); ref = ogonekcomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (38,-12); ref = dotaccentcomb; }, { pos = (-7,1); ref = ogonekcomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (23,0); ref = dotaccentcomb; }, { pos = (15,0); ref = ogonekcomb; } ); width = 240; } ); unicode = 303; }, { glyphname = itilde; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (-44,-12); ref = tildecomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (-42,-12); ref = tildecomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (-80,0); ref = tildecomb; } ); width = 240; } ); unicode = 297; }, { glyphname = ij; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = i; }, { pos = (254,0); ref = j; } ); width = 532; }, { layerId = m002; shapes = ( { ref = i; }, { pos = (223,0); ref = j; } ); width = 512; }, { layerId = m003; shapes = ( { ref = i; }, { pos = (268,0); ref = j; } ); width = 552; } ); unicode = 307; }, { glyphname = j; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (-37,680); }, { pos = (-32,585); }, { pos = (-37,632); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (81,-232,o), (125,-181,o), (136,-88,cs), (210,500,l), (154,500,l), (81,-87,ls), (70,-160,o), (41,-178,o), (-7,-178,cs), (-20,-178,o), (-36,-177,o), (-52,-174,c), (-58,-224,l), (-42,-229,o), (-20,-232,o), (-4,-232,cs) ); }, { closed = 1; nodes = ( (214,585,o), (238,607,o), (241,632,cs), (244,658,o), (226,680,o), (201,680,cs), (175,680,o), (150,658,o), (147,632,cs), (144,607,o), (163,585,o), (189,585,cs) ); } ); width = 278; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (108,-230,o), (155,-179,o), (167,-86,cs), (240,500,l), (156,500,l), (84,-85,ls), (77,-139,o), (48,-158,o), (-1,-158,cs), (-14,-158,o), (-32,-157,o), (-48,-154,c), (-56,-222,l), (-40,-227,o), (-17,-230,o), (-1,-230,cs) ); }, { closed = 1; nodes = ( (237,590,o), (264,615,o), (267,645,cs), (271,675,o), (250,700,o), (220,700,cs), (190,700,o), (162,675,o), (158,645,cs), (155,615,o), (177,590,o), (207,590,cs) ); } ); width = 289; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (100,-230,o), (167,-169,o), (178,-76,cs), (251,508,l), (111,508,l), (45,-28,ls), (41,-66,o), (16,-90,o), (-20,-90,cs), (-33,-90,o), (-65,-89,o), (-81,-86,c), (-98,-222,l), (-82,-227,o), (-44,-230,o), (-28,-230,cs) ); }, { closed = 1; nodes = ( (235,559,o), (276,598,o), (282,644,cs), (288,690,o), (256,729,o), (208,729,cs), (163,729,o), (120,690,o), (114,644,cs), (108,598,o), (142,559,o), (187,559,cs) ); } ); width = 284; } ); unicode = 106; }, { glyphname = jdotless; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = top; pos = (181,500); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (81,-232,o), (125,-181,o), (136,-88,cs), (210,500,l), (154,500,l), (81,-87,ls), (70,-160,o), (41,-178,o), (-7,-178,cs), (-20,-178,o), (-36,-177,o), (-52,-174,c), (-58,-224,l), (-42,-229,o), (-20,-232,o), (-4,-232,cs) ); } ); width = 265; }, { anchors = ( { name = top; pos = (197,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (108,-230,o), (155,-179,o), (167,-86,cs), (240,500,l), (156,500,l), (84,-85,ls), (77,-139,o), (48,-158,o), (-1,-158,cs), (-14,-158,o), (-32,-157,o), (-48,-154,c), (-56,-222,l), (-40,-227,o), (-17,-230,o), (-1,-230,cs) ); } ); width = 279; }, { anchors = ( { name = top; pos = (181,508); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (100,-230,o), (167,-169,o), (178,-76,cs), (251,508,l), (111,508,l), (45,-28,ls), (41,-66,o), (16,-90,o), (-20,-90,cs), (-33,-90,o), (-65,-89,o), (-81,-86,c), (-98,-222,l), (-82,-227,o), (-44,-230,o), (-28,-230,cs) ); } ); width = 270; } ); unicode = 567; }, { glyphname = jacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = jdotless; }, { pos = (99,-12); ref = acutecomb; } ); width = 265; }, { layerId = m002; shapes = ( { ref = jdotless; }, { pos = (118,-12); ref = acutecomb; } ); width = 279; }, { layerId = m003; shapes = ( { ref = jdotless; }, { pos = (81,0); ref = acutecomb; } ); width = 270; } ); }, { glyphname = jcircumflex; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = jdotless; }, { pos = (15,-12); ref = circumflexcomb; } ); width = 265; }, { layerId = m002; shapes = ( { ref = jdotless; }, { pos = (8,-12); ref = circumflexcomb; } ); width = 279; }, { layerId = m003; shapes = ( { ref = jdotless; }, { pos = (-29,0); ref = circumflexcomb; } ); width = 270; } ); unicode = 309; }, { glyphname = k; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (230,0); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (248,291,l), (267,301,l), (483,500,l), (413,500,l), (103,219,l), (94,145,l) ); }, { closed = 1; nodes = ( (121,0,l), (207,700,l), (151,700,l), (65,0,l) ); }, { closed = 1; nodes = ( (437,0,l), (277,331,l), (234,294,l), (372,0,l) ); } ); width = 483; }, { anchors = ( { name = bottom; pos = (252,0); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (270,272,l), (296,288,l), (530,500,l), (426,500,l), (111,219,l), (99,120,l) ); }, { closed = 1; nodes = ( (145,0,l), (231,700,l), (147,700,l), (61,0,l) ); }, { closed = 1; nodes = ( (484,0,l), (320,322,l), (251,269,l), (382,0,l) ); } ); width = 525; }, { anchors = ( { name = bottom; pos = (284,0); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (309,241,l), (335,251,l), (601,508,l), (423,508,l), (97,210,l), (160,116,l) ); }, { closed = 1; nodes = ( (189,0,l), (276,712,l), (136,711,l), (49,-1,l) ); }, { closed = 1; nodes = ( (557,0,l), (379,351,l), (248,280,l), (389,0,l) ); } ); width = 588; } ); unicode = 107; }, { glyphname = kcommaaccent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = k; }, { pos = (201,12); ref = commaaccentcomb; } ); width = 483; }, { layerId = m002; shapes = ( { ref = k; }, { pos = (207,12); ref = commaaccentcomb; } ); width = 525; }, { layerId = m003; shapes = ( { ref = k; }, { pos = (220,1); ref = commaaccentcomb; } ); width = 588; } ); unicode = 311; }, { glyphname = l; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (87,0); }, { name = top; pos = (174,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (115,0,l), (201,700,l), (145,700,l), (59,0,l) ); } ); width = 236; }, { anchors = ( { name = bottom; pos = (82,0); }, { name = top; pos = (168,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (125,0,l), (211,700,l), (127,700,l), (41,0,l) ); } ); width = 228; }, { anchors = ( { name = bottom; pos = (117,0); }, { name = top; pos = (204,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (187,0,l), (273,700,l), (133,700,l), (47,0,l) ); } ); width = 296; } ); unicode = 108; }, { glyphname = lacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = l; }, { pos = (92,188); ref = acutecomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = l; }, { pos = (89,188); ref = acutecomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = l; }, { pos = (104,192); ref = acutecomb; } ); width = 296; } ); unicode = 314; }, { glyphname = lcaron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-31,0); ref = l; }, { closed = 1; nodes = ( (374,700,l), (281,700,l), (254,582,l), (304,582,l) ); } ); width = 319; }, { layerId = m002; shapes = ( { pos = (-31,0); ref = l; }, { closed = 1; nodes = ( (398,700,l), (288,700,l), (260,563,l), (332,563,l) ); } ); width = 343; }, { layerId = m003; shapes = ( { pos = (-31,0); ref = l; }, { closed = 1; nodes = ( (473,700,l), (343,700,l), (303,530,l), (398,530,l) ); } ); width = 418; } ); unicode = 318; }, { glyphname = lcommaaccent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = l; }, { pos = (58,12); ref = commaaccentcomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = l; }, { pos = (37,12); ref = commaaccentcomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = l; }, { pos = (53,1); ref = commaaccentcomb; } ); width = 296; } ); unicode = 316; }, { glyphname = ldot; lastChange = "2025-01-01 08:52:59 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-31,0); ref = l; }, { closed = 1; nodes = ( (329,303,o), (352,325,o), (355,349,cs), (358,375,o), (340,397,o), (316,397,cs), (290,397,o), (265,375,o), (262,349,cs), (259,325,o), (279,303,o), (305,303,cs) ); } ); width = 369; }, { layerId = m002; shapes = ( { pos = (-31,0); ref = l; }, { closed = 1; nodes = ( (337,285,o), (370,315,o), (374,350,cs), (379,386,o), (353,416,o), (318,416,cs), (282,416,o), (249,386,o), (244,350,cs), (240,315,o), (266,285,o), (302,285,cs) ); } ); width = 382; }, { layerId = m003; shapes = ( { pos = (-31,0); ref = l; }, { closed = 1; nodes = ( (423,262,o), (469,302,o), (475,352,cs), (481,400,o), (445,439,o), (397,439,cs), (348,439,o), (302,400,o), (296,352,cs), (290,302,o), (326,262,o), (375,262,cs) ); } ); width = 467; } ); unicode = 320; }, { glyphname = ldotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = l; }, { pos = (54,1); ref = dotbelowcomb; } ); width = 296; }, { layerId = m01; shapes = ( { ref = l; }, { pos = (55,0); ref = dotbelowcomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = l; }, { pos = (38,0); ref = dotbelowcomb; } ); width = 228; } ); unicode = 7735; }, { glyphname = lmacronbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = l; }, { pos = (-32,1); ref = macronbelowcomb; } ); width = 296; }, { layerId = m01; shapes = ( { ref = l; }, { pos = (-23,12); ref = macronbelowcomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = l; }, { pos = (-46,12); ref = macronbelowcomb; } ); width = 228; } ); unicode = 7739; }, { glyphname = lslash; lastChange = "2025-01-01 09:14:27 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-18,0); ref = l; }, { closed = 1; nodes = ( (273,423,l), (248,468,l), (-38,284,l), (-13,238,l) ); } ); width = 294; }, { layerId = m002; shapes = ( { pos = (12,0); ref = l; }, { closed = 1; nodes = ( (306,420,l), (270,480,l), (-32,286,l), (3,226,l) ); } ); width = 331; }, { layerId = m003; shapes = ( { pos = (18,0); ref = l; }, { closed = 1; nodes = ( (396,432,l), (338,518,l), (-42,278,l), (14,190,l) ); } ); width = 399; } ); unicode = 322; }, { glyphname = m; kernLeft = n; kernRight = n; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (121,0,l), (154,270,ls), (166,366,o), (233,462,o), (332,462,cs), (413,462,o), (468,411,o), (455,310,cs), (417,0,l), (473,0,l), (513,322,ls), (528,442,o), (451,512,o), (354,512,cs), (235,512,o), (183,431,o), (170,396,c), (183,500,l), (127,500,l), (65,0,l) ); }, { closed = 1; nodes = ( (825,0,l), (865,322,ls), (880,442,o), (803,512,o), (706,512,cs), (587,512,o), (522,414,o), (509,379,c), (506,270,l), (519,373,o), (585,462,o), (684,462,cs), (765,462,o), (820,411,o), (807,310,cs), (769,0,l) ); } ); width = 944; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (145,0,l), (178,270,ls), (190,366,o), (246,436,o), (338,436,cs), (405,436,o), (446,403,o), (435,316,cs), (396,0,l), (480,0,l), (521,328,ls), (535,448,o), (472,512,o), (375,512,cs), (263,512,o), (208,441,o), (195,406,c), (207,500,l), (123,500,l), (61,0,l) ); }, { closed = 1; nodes = ( (815,0,l), (856,328,ls), (870,448,o), (807,512,o), (710,512,cs), (598,512,o), (532,432,o), (519,397,c), (513,270,l), (525,366,o), (581,436,o), (673,436,cs), (740,436,o), (781,403,o), (770,316,cs), (731,0,l) ); } ); width = 934; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (189,0,l), (218,239,ls), (231,347,o), (271,408,o), (354,408,cs), (411,408,o), (436,373,o), (426,296,cs), (390,0,l), (530,0,l), (568,315,ls), (583,435,o), (531,520,o), (402,520,cs), (334,520,o), (269,479,o), (242,430,c), (251,508,l), (111,508,l), (49,0,l) ); }, { closed = 1; nodes = ( (871,0,l), (909,315,ls), (924,435,o), (872,520,o), (743,520,cs), (679,520,o), (603,496,o), (564,410,c), (559,239,l), (572,347,o), (612,408,o), (695,408,cs), (752,408,o), (777,373,o), (767,296,cs), (731,0,l) ); } ); width = 974; }, { associatedMasterId = m01; layerId = "9734DA5E-3835-4262-844E-572FF4DD55DE"; name = "5 Apr 24 at 07:53"; shapes = ( { closed = 1; nodes = ( (152,0,l), (152,270,ls), (152,366,o), (200,458,o), (299,458,cs), (380,458,o), (448,411,o), (448,310,cs), (448,0,l), (504,0,l), (504,322,ls), (504,442,o), (424,512,o), (327,512,cs), (208,512,o), (161,431,o), (152,396,c), (152,500,l), (96,500,l), (96,0,l) ); }, { closed = 1; nodes = ( (504,270,l), (504,366,o), (552,458,o), (651,458,cs), (732,458,o), (800,411,o), (800,310,cs), (800,0,l), (856,0,l), (856,322,ls), (856,442,o), (776,512,o), (679,512,cs), (560,512,o), (513,431,o), (504,396,c) ); } ); width = 926; } ); unicode = 109; }, { glyphname = n; kernLeft = n; kernRight = n; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (276,0); }, { name = top; pos = (339,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (121,0,l), (154,270,ls), (166,366,o), (233,462,o), (332,462,cs), (413,462,o), (468,411,o), (455,310,cs), (417,0,l), (473,0,l), (513,322,ls), (528,442,o), (451,512,o), (354,512,cs), (235,512,o), (183,431,o), (170,396,c), (183,500,l), (127,500,l), (65,0,l) ); } ); width = 592; }, { anchors = ( { name = bottom; pos = (276,0); }, { name = top; pos = (339,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (145,0,l), (178,270,ls), (190,366,o), (246,436,o), (338,436,cs), (405,436,o), (446,403,o), (435,316,cs), (396,0,l), (480,0,l), (521,328,ls), (535,448,o), (472,512,o), (375,512,cs), (263,512,o), (208,441,o), (195,406,c), (207,500,l), (123,500,l), (61,0,l) ); } ); width = 587; }, { anchors = ( { name = bottom; pos = (295,0); }, { name = top; pos = (364,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (189,0,l), (218,239,ls), (231,347,o), (267,408,o), (350,408,cs), (407,408,o), (430,370,o), (421,296,cs), (385,0,l), (525,0,l), (563,315,ls), (578,435,o), (531,520,o), (397,520,cs), (329,520,o), (269,479,o), (242,430,c), (251,508,l), (111,508,l), (49,0,l) ); } ); width = 624; } ); unicode = 110; }, { glyphname = nacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = n; }, { pos = (257,0); ref = acutecomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = n; }, { pos = (260,0); ref = acutecomb; } ); width = 587; }, { layerId = m003; shapes = ( { ref = n; }, { pos = (264,12); ref = acutecomb; } ); width = 624; } ); unicode = 324; }, { glyphname = ncaron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = n; }, { pos = (173,0); ref = caroncomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = n; }, { pos = (155,0); ref = caroncomb; } ); width = 587; }, { layerId = m003; shapes = ( { ref = n; }, { pos = (152,12); ref = caroncomb; } ); width = 624; } ); unicode = 328; }, { glyphname = ncommaaccent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = n; }, { pos = (247,12); ref = commaaccentcomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = n; }, { pos = (231,12); ref = commaaccentcomb; } ); width = 587; }, { layerId = m003; shapes = ( { ref = n; }, { pos = (231,1); ref = commaaccentcomb; } ); width = 624; } ); unicode = 326; }, { glyphname = ndotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = n; }, { pos = (232,1); ref = dotbelowcomb; } ); width = 624; }, { layerId = m01; shapes = ( { ref = n; }, { pos = (244,0); ref = dotbelowcomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = n; }, { pos = (232,0); ref = dotbelowcomb; } ); width = 587; } ); unicode = 7751; }, { color = 3; glyphname = nhookleft; kernLeft = j; kernRight = n; lastChange = "2025-01-01 10:14:12 +0000"; layers = ( { guides = ( { pos = (205,-165); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (138,-165,o), (205,-104,o), (215,-11,cs), (242,239,ls), (254,347,o), (288,408,o), (371,408,cs), (428,408,o), (452,370,o), (444,296,cs), (413,0,l), (553,0,l), (586,315,ls), (599,435,o), (550,520,o), (416,520,cs), (348,520,o), (289,479,o), (262,430,c), (271,508,l), (131,508,l), (80,37,ls), (76,-1,o), (52,-25,o), (16,-25,cs), (3,-25,o), (-29,-24,o), (-45,-21,c), (-60,-157,l), (-44,-162,o), (-6,-165,o), (10,-165,cs) ); } ); width = 646; }, { guides = ( { pos = (579,-133); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (81,-133,o), (124,-88,o), (134,5,cs), (162,270,ls), (172,366,o), (237,462,o), (336,462,cs), (417,462,o), (473,411,o), (462,310,cs), (430,0,l), (486,0,l), (520,322,ls), (532,442,o), (455,512,o), (358,512,cs), (239,512,o), (188,431,o), (175,396,c), (186,500,l), (130,500,l), (78,6,ls), (71,-67,o), (40,-79,o), (-8,-79,cs), (-21,-79,o), (-37,-78,o), (-53,-75,c), (-58,-125,l), (-42,-130,o), (-20,-133,o), (-4,-133,cs) ); } ); width = 598; }, { guides = ( { pos = (330,-142); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (107,-142,o), (154,-91,o), (164,2,cs), (192,270,ls), (202,366,o), (257,436,o), (349,436,cs), (416,436,o), (457,403,o), (448,316,cs), (415,0,l), (499,0,l), (533,328,ls), (546,448,o), (482,512,o), (385,512,cs), (273,512,o), (219,441,o), (206,406,c), (216,500,l), (132,500,l), (80,3,ls), (74,-51,o), (45,-70,o), (-4,-70,cs), (-17,-70,o), (-35,-69,o), (-50,-66,c), (-57,-134,l), (-41,-139,o), (-18,-142,o), (-2,-142,cs) ); } ); width = 599; } ); unicode = 626; }, { color = 3; glyphname = nhookretroflex; kernLeft = n; lastChange = "2025-01-01 10:16:17 +0000"; layers = ( { guides = ( { pos = (176,-165); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (572,-165,o), (610,-162,o), (628,-157,c), (641,-21,l), (625,-24,o), (593,-25,o), (580,-25,cs), (544,-25,o), (524,1,o), (528,37,cs), (557,315,ls), (570,435,o), (521,520,o), (387,520,cs), (319,520,o), (260,479,o), (233,430,c), (242,508,l), (102,508,l), (48,0,l), (188,0,l), (213,239,ls), (225,347,o), (259,408,o), (342,408,cs), (399,408,o), (423,370,o), (415,296,cs), (384,-5,ls), (374,-98,o), (428,-165,o), (556,-165,cs) ); } ); width = 626; }, { guides = ( { pos = (566,-133); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (543,-133,o), (565,-130,o), (583,-125,c), (588,-75,l), (572,-78,o), (554,-79,o), (541,-79,cs), (493,-79,o), (466,-61,o), (474,12,cs), (507,322,ls), (520,442,o), (442,512,o), (345,512,cs), (226,512,o), (175,431,o), (162,396,c), (173,500,l), (117,500,l), (65,0,l), (121,0,l), (149,270,ls), (159,366,o), (224,462,o), (323,462,cs), (404,462,o), (459,411,o), (449,310,cs), (418,11,ls), (408,-82,o), (442,-133,o), (527,-133,cs) ); } ); width = 578; }, { guides = ( { pos = (310,-142); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (548,-142,o), (571,-139,o), (589,-134,c), (596,-66,l), (579,-69,o), (561,-70,o), (548,-70,cs), (499,-70,o), (474,-51,o), (480,3,cs), (513,328,ls), (525,448,o), (462,512,o), (365,512,cs), (253,512,o), (199,441,o), (186,406,c), (196,500,l), (112,500,l), (60,0,l), (144,0,l), (172,270,ls), (182,366,o), (237,436,o), (329,436,cs), (396,436,o), (437,403,o), (428,316,cs), (396,2,ls), (386,-91,o), (423,-142,o), (532,-142,cs) ); } ); width = 586; } ); unicode = 627; }, { glyphname = nmacronbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = n; }, { pos = (146,1); ref = macronbelowcomb; } ); width = 624; }, { layerId = m01; shapes = ( { ref = n; }, { pos = (166,12); ref = macronbelowcomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = n; }, { pos = (148,12); ref = macronbelowcomb; } ); width = 587; } ); unicode = 7753; }, { glyphname = ntilde; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = n; }, { pos = (146,0); ref = tildecomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = n; }, { pos = (153,0); ref = tildecomb; } ); width = 587; }, { layerId = m003; shapes = ( { ref = n; }, { pos = (134,12); ref = tildecomb; } ); width = 624; } ); unicode = 241; }, { color = 3; glyphname = eng; kernLeft = n; kernRight = n; lastChange = "2025-01-01 10:16:27 +0000"; layers = ( { anchors = ( { name = bottom; pos = (295,0); }, { name = top; pos = (364,520); } ); guides = ( { pos = (185,-165); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (563,315,ls), (578,435,o), (531,520,o), (397,520,cs), (329,520,o), (269,479,o), (242,430,c), (251,508,l), (111,508,l), (49,0,l), (189,0,l), (218,239,ls), (231,347,o), (267,408,o), (350,408,cs), (407,408,o), (430,370,o), (421,296,cs), (390,37,ls), (386,-1,o), (361,-25,o), (325,-25,cs), (312,-25,o), (280,-24,o), (264,-21,c), (247,-157,l), (263,-162,o), (301,-165,o), (317,-165,cs), (445,-165,o), (511,-104,o), (523,-11,cs) ); } ); width = 624; }, { anchors = ( { name = bottom; pos = (276,0); }, { name = top; pos = (339,512); } ); guides = ( { pos = (576,-133); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (513,322,ls), (528,442,o), (451,512,o), (354,512,cs), (235,512,o), (183,431,o), (170,396,c), (183,500,l), (127,500,l), (65,0,l), (121,0,l), (154,270,ls), (166,366,o), (233,462,o), (332,462,cs), (413,462,o), (467,411,o), (455,310,cs), (419,10,ls), (410,-63,o), (380,-79,o), (332,-79,cs), (319,-79,o), (302,-78,o), (286,-75,c), (280,-125,l), (296,-130,o), (318,-133,o), (334,-133,cs), (419,-133,o), (462,-89,o), (474,4,cs) ); } ); width = 592; }, { anchors = ( { name = bottom; pos = (275,0); }, { name = top; pos = (338,512); } ); guides = ( { pos = (320,-142); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (520,328,ls), (535,448,o), (471,512,o), (374,512,cs), (262,512,o), (207,441,o), (194,406,c), (206,500,l), (122,500,l), (60,0,l), (144,0,l), (177,270,ls), (189,366,o), (245,436,o), (337,436,cs), (404,436,o), (445,403,o), (434,316,cs), (396,3,ls), (389,-51,o), (360,-70,o), (311,-70,cs), (298,-70,o), (280,-69,o), (264,-66,c), (256,-134,l), (272,-139,o), (295,-142,o), (311,-142,cs), (420,-142,o), (468,-91,o), (480,2,cs) ); } ); width = 590; } ); unicode = 331; }, { glyphname = o; kernLeft = o; kernRight = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (252,-12); }, { name = top; pos = (316,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (376,-12,o), (491,78,o), (512,250,cs), (533,422,o), (440,512,o), (316,512,cs), (192,512,o), (77,422,o), (56,250,cs), (35,78,o), (128,-12,o), (252,-12,cs) ); }, { closed = 1; nodes = ( (147,38,o), (98,121,o), (114,250,cs), (130,379,o), (199,462,o), (310,462,cs), (421,462,o), (470,379,o), (454,250,cs), (438,121,o), (369,38,o), (258,38,cs) ); } ); width = 568; }, { anchors = ( { name = bottom; pos = (258,-12); }, { name = top; pos = (322,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (382,-12,o), (503,78,o), (524,250,cs), (545,422,o), (452,512,o), (322,512,cs), (198,512,o), (77,422,o), (56,250,cs), (35,78,o), (128,-12,o), (258,-12,cs) ); }, { closed = 1; nodes = ( (169,64,o), (126,135,o), (140,250,cs), (154,365,o), (217,436,o), (313,436,cs), (411,436,o), (454,365,o), (440,250,cs), (426,135,o), (365,64,o), (267,64,cs) ); } ); width = 580; }, { anchors = ( { name = bottom; pos = (270,-12); }, { name = top; pos = (336,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (401,-12,o), (545,70,o), (568,254,cs), (591,440,o), (473,520,o), (336,520,cs), (207,520,o), (59,440,o), (36,254,cs), (13,70,o), (133,-12,o), (270,-12,cs) ); }, { closed = 1; nodes = ( (207,108,o), (171,164,o), (182,254,cs), (193,342,o), (244,400,o), (321,400,cs), (403,400,o), (433,342,o), (422,254,cs), (411,164,o), (366,108,o), (285,108,cs) ); } ); width = 604; } ); unicode = 111; }, { glyphname = oacute; kernLeft = o; kernRight = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (234,0); ref = acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (243,0); ref = acutecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (236,12); ref = acutecomb; } ); width = 604; } ); unicode = 243; }, { glyphname = obreve; kernLeft = o; kernRight = o; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (139,0); ref = brevecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (147,0); ref = brevecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (136,12); ref = brevecomb; } ); width = 604; } ); unicode = 335; }, { glyphname = ocircumflex; kernLeft = o; kernRight = o; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (150,0); ref = circumflexcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (133,0); ref = circumflexcomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (126,12); ref = circumflexcomb; } ); width = 604; } ); unicode = 244; }, { glyphname = ocircumflexacute; kernLeft = o; kernRight = o; lastChange = "2025-01-08 14:16:50 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (32,0); ref = circumflexcomb_acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (42,12); ref = circumflexcomb_acutecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (156,12); ref = circumflexcomb_acutecomb; } ); width = 604; } ); unicode = 7889; }, { glyphname = ocircumflexdotbelow; kernLeft = o; kernRight = o; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (220,-12); ref = dotbelowcomb; }, { pos = (150,0); ref = circumflexcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (214,-12); ref = dotbelowcomb; }, { pos = (133,0); ref = circumflexcomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (207,-11); ref = dotbelowcomb; }, { pos = (126,12); ref = circumflexcomb; } ); width = 604; } ); unicode = 7897; }, { glyphname = ocircumflexgrave; kernLeft = o; kernRight = o; lastChange = "2025-01-08 14:17:48 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (174,0); ref = circumflexcomb_gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (166,12); ref = circumflexcomb_gravecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (156,13); ref = circumflexcomb_gravecomb; } ); width = 604; } ); unicode = 7891; }, { glyphname = ocircumflexhookabove; kernLeft = o; kernRight = o; lastChange = "2025-01-08 14:24:33 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (177,0); ref = circumflexcomb_hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (169,12); ref = circumflexcomb_hookabovecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (155,12); ref = circumflexcomb_hookabovecomb; } ); width = 604; } ); unicode = 7893; }, { glyphname = ocircumflextilde; kernLeft = o; kernRight = o; lastChange = "2025-01-08 14:34:31 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (182,12); ref = circumflexcomb_tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (173,12); ref = circumflexcomb_tildecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (131,12); ref = circumflexcomb_tildecomb; } ); width = 604; } ); unicode = 7895; }, { glyphname = odieresis; kernLeft = o; kernRight = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (119,0); ref = dieresiscomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (125,0); ref = dieresiscomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (90,12); ref = dieresiscomb; } ); width = 604; } ); unicode = 246; }, { glyphname = odotbelow; kernLeft = o; kernRight = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (220,-12); ref = dotbelowcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (214,-12); ref = dotbelowcomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (207,-11); ref = dotbelowcomb; } ); width = 604; } ); unicode = 7885; }, { glyphname = ograve; kernLeft = o; kernRight = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (120,0); ref = gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (127,0); ref = gravecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (106,12); ref = gravecomb; } ); width = 604; } ); unicode = 242; }, { glyphname = ohookabove; kernLeft = o; kernRight = o; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (235,12); ref = hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (222,12); ref = hookabovecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (240,12); ref = hookabovecomb; } ); width = 604; } ); unicode = 7887; }, { glyphname = ohorn; kernLeft = o; kernRight = ohorn; lastChange = "2025-01-01 09:33:46 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (512,434,o), (605,512,o), (571,634,c), (508,615,l), (530,545,o), (495,483,o), (431,483,cs), (401,483,o), (371,498,o), (342,505,c), (337,462,l), (425,434,l) ); }, { pos = (-31,0); ref = o; } ); width = 568; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (546,430,o), (618,513,o), (584,635,c), (502,613,l), (523,554,o), (505,484,o), (437,484,cs), (414,484,o), (374,500,o), (351,504,c), (344,447,l), (412,430,l) ); }, { pos = (-31,0); ref = o; } ); width = 580; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (595,413,o), (693,522,o), (655,657,c), (538,626,l), (559,567,o), (546,494,o), (465,494,cs), (429,494,o), (408,508,o), (355,516,c), (345,433,l), (462,413,l) ); }, { pos = (-31,0); ref = o; } ); width = 685; } ); unicode = 417; }, { glyphname = ohornacute; kernLeft = o; kernRight = ohorn; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = ohorn; }, { pos = (203,0); ref = acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = ohorn; }, { pos = (212,0); ref = acutecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = ohorn; }, { pos = (205,12); ref = acutecomb; } ); width = 685; } ); unicode = 7899; }, { glyphname = ohorndotbelow; kernLeft = o; kernRight = ohorn; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = ohorn; }, { pos = (189,-12); ref = dotbelowcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = ohorn; }, { pos = (183,-12); ref = dotbelowcomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = ohorn; }, { pos = (176,-11); ref = dotbelowcomb; } ); width = 685; } ); unicode = 7907; }, { glyphname = ohorngrave; kernLeft = o; kernRight = ohorn; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = ohorn; }, { pos = (89,0); ref = gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = ohorn; }, { pos = (96,0); ref = gravecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = ohorn; }, { pos = (75,12); ref = gravecomb; } ); width = 685; } ); unicode = 7901; }, { glyphname = ohornhookabove; kernLeft = o; kernRight = ohorn; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = ohorn; }, { pos = (204,12); ref = hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = ohorn; }, { pos = (191,12); ref = hookabovecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = ohorn; }, { pos = (209,12); ref = hookabovecomb; } ); width = 685; } ); unicode = 7903; }, { glyphname = ohorntilde; kernLeft = o; kernRight = ohorn; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = ohorn; }, { pos = (92,0); ref = tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = ohorn; }, { pos = (105,0); ref = tildecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = ohorn; }, { pos = (75,12); ref = tildecomb; } ); width = 685; } ); unicode = 7905; }, { glyphname = ohungarumlaut; kernLeft = o; kernRight = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (165,0); ref = hungarumlautcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (167,0); ref = hungarumlautcomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (139,12); ref = hungarumlautcomb; } ); width = 604; } ); unicode = 337; }, { glyphname = omacron; lastChange = "2025-01-08 14:20:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (151,0); ref = macroncomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (115,0); ref = macroncomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (133,9); ref = macroncomb; } ); width = 604; } ); unicode = 333; }, { glyphname = oopen; lastChange = "2025-01-01 09:15:19 +0000"; layers = ( { layerId = m01; shapes = ( { angle = 180; pos = (518,500); ref = c; } ); width = 518; }, { layerId = m002; shapes = ( { angle = 180; pos = (536,500); ref = c; } ); width = 536; }, { layerId = m003; shapes = ( { angle = 180; pos = (550,508); ref = c; } ); width = 550; } ); unicode = 596; }, { glyphname = oslash; kernLeft = o; kernRight = o; lastChange = "2025-01-01 09:34:09 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-24,0); ref = o; }, { closed = 1; nodes = ( (20,-27,l), (528,493,l), (495,523,l), (-11,6,l) ); } ); width = 576; }, { layerId = m002; shapes = ( { pos = (-18,0); ref = o; }, { closed = 1; nodes = ( (34,-34,l), (550,488,l), (502,532,l), (-12,13,l) ); } ); width = 595; }, { layerId = m003; shapes = ( { pos = (-25,0); ref = o; }, { closed = 1; nodes = ( (42,-51,l), (594,495,l), (522,556,l), (-28,13,l) ); } ); width = 613; } ); unicode = 248; }, { glyphname = oslashacute; kernLeft = o; kernRight = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = oslash; }, { pos = (210,0); ref = acutecomb; } ); width = 576; }, { layerId = m002; shapes = ( { ref = oslash; }, { pos = (225,0); ref = acutecomb; } ); width = 595; }, { layerId = m003; shapes = ( { ref = oslash; }, { pos = (211,12); ref = acutecomb; } ); width = 613; } ); unicode = 511; }, { glyphname = otilde; kernLeft = o; kernRight = o; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (123,0); ref = tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (136,0); ref = tildecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (106,12); ref = tildecomb; } ); width = 604; } ); unicode = 245; }, { glyphname = oe; kernLeft = o; kernRight = e; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (830,-13); }, { name = top; pos = (890,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (376,-12,o), (482,78,o), (503,250,cs), (524,422,o), (440,512,o), (316,512,cs), (192,512,o), (77,422,o), (56,250,cs), (35,78,o), (128,-12,o), (252,-12,cs) ); }, { closed = 1; nodes = ( (147,38,o), (98,121,o), (114,250,cs), (130,379,o), (199,462,o), (310,462,cs), (421,462,o), (470,379,o), (454,250,cs), (438,121,o), (369,38,o), (258,38,cs) ); }, { closed = 1; nodes = ( (791,-13,o), (867,62,o), (902,144,c), (850,154,l), (825,100,o), (768,37,o), (672,37,cs), (553,37,o), (501,118,o), (516,245,cs), (531,368,o), (591,462,o), (721,462,cs), (828,462,o), (871,368,o), (862,289,c), (511,289,l), (505,239,l), (916,239,l), (919,267,l), (938,422,o), (851,512,o), (723,512,cs), (586,512,o), (485,412,o), (465,248,cs), (445,87,o), (516,-13,o), (662,-13,cs) ); } ); width = 973; }, { anchors = ( { name = bottom; pos = (844,-13); }, { name = top; pos = (904,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (382,-12,o), (493,78,o), (514,250,cs), (535,422,o), (452,512,o), (322,512,cs), (198,512,o), (77,422,o), (56,250,cs), (35,78,o), (128,-12,o), (258,-12,cs) ); }, { closed = 1; nodes = ( (169,64,o), (126,135,o), (140,250,cs), (154,365,o), (217,436,o), (313,436,cs), (411,436,o), (454,365,o), (440,250,cs), (426,135,o), (365,64,o), (267,64,cs) ); }, { closed = 1; nodes = ( (775,-13,o), (851,55,o), (886,137,c), (806,151,l), (780,97,o), (720,63,o), (663,63,cs), (538,63,o), (516,150,o), (527,245,cs), (542,367,o), (597,436,o), (706,436,cs), (800,436,o), (828,345,o), (823,304,c), (530,304,l), (521,234,l), (900,234,l), (903,261,l), (925,434,o), (835,512,o), (711,512,cs), (574,512,o), (472,412,o), (452,248,cs), (432,87,o), (510,-13,o), (650,-13,cs) ); } ); width = 958; }, { anchors = ( { name = bottom; pos = (301,-13); }, { name = top; pos = (365,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (401,-12,o), (529,70,o), (552,254,cs), (575,440,o), (473,520,o), (336,520,cs), (207,520,o), (59,440,o), (36,254,cs), (13,70,o), (133,-12,o), (270,-12,cs) ); }, { closed = 1; nodes = ( (207,108,o), (171,164,o), (182,254,cs), (193,342,o), (244,400,o), (321,400,cs), (403,400,o), (433,342,o), (422,254,cs), (411,164,o), (366,108,o), (285,108,cs) ); }, { closed = 1; nodes = ( (745,-13,o), (846,23,o), (906,134,c), (779,173,l), (755,130,o), (705,107,o), (675,107,cs), (586,107,o), (554,164,o), (565,256,cs), (575,337,o), (622,400,o), (706,400,cs), (773,400,o), (803,336,o), (799,301,c), (538,301,l), (528,215,l), (931,215,l), (935,248,l), (956,418,o), (872,520,o), (722,520,cs), (591,520,o), (464,436,o), (442,256,cs), (421,82,o), (523,-13,o), (658,-13,cs) ); } ); width = 972; } ); unicode = 339; }, { glyphname = p; kernRight = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (147,43,o), (203,-12,o), (294,-12,cs), (411,-12,o), (518,86,o), (538,250,cs), (559,419,o), (489,512,o), (358,512,cs), (273,512,o), (197,457,o), (171,402,c), (183,500,l), (127,500,l), (37,-230,l), (93,-230,l), (133,98,l) ); }, { closed = 1; nodes = ( (209,38,o), (135,108,o), (151,250,c), (169,392,o), (261,462,o), (340,462,cs), (453,462,o), (495,377,o), (479,252,cs), (464,124,o), (387,38,o), (288,38,cs) ); } ); width = 594; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (170,24,o), (239,-12,o), (308,-12,cs), (442,-12,o), (541,86,o), (561,250,cs), (582,419,o), (506,512,o), (367,512,cs), (279,512,o), (220,457,o), (195,402,c), (207,500,l), (123,500,l), (33,-230,l), (117,-230,l), (157,93,l) ); }, { closed = 1; nodes = ( (208,64,o), (164,148,o), (177,250,cs), (191,360,o), (254,437,o), (353,437,cs), (451,437,o), (489,356,o), (476,252,cs), (463,148,o), (405,64,o), (304,64,cs) ); } ); width = 615; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (189,29,o), (234,-12,o), (317,-12,cs), (448,-12,o), (549,88,o), (569,253,cs), (590,421,o), (509,520,o), (378,520,cs), (300,520,o), (244,470,o), (211,415,c), (222,508,l), (81,508,l), (-8,-230,l), (132,-230,l), (170,83,l) ); }, { closed = 1; nodes = ( (218,97,o), (179,158,o), (191,253,cs), (202,341,o), (256,410,o), (324,410,cs), (396,410,o), (434,340,o), (423,253,cs), (411,157,o), (357,95,o), (286,96,cs) ); } ); width = 613; } ); unicode = 112; }, { glyphname = thorn; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (147,43,o), (203,-12,o), (294,-12,cs), (411,-12,o), (518,86,o), (538,250,cs), (559,419,o), (489,512,o), (358,512,cs), (273,512,o), (197,457,o), (171,402,c), (207,700,l), (151,700,l), (37,-230,l), (93,-230,l), (133,98,l) ); }, { closed = 1; nodes = ( (209,38,o), (135,108,o), (151,250,c), (169,392,o), (261,462,o), (340,462,cs), (453,462,o), (495,377,o), (479,252,cs), (464,124,o), (387,38,o), (288,38,cs) ); } ); width = 594; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (170,24,o), (239,-12,o), (308,-12,cs), (442,-12,o), (541,86,o), (561,250,cs), (582,419,o), (506,512,o), (367,512,cs), (279,512,o), (220,457,o), (195,402,c), (231,700,l), (147,700,l), (33,-230,l), (117,-230,l), (157,93,l) ); }, { closed = 1; nodes = ( (208,64,o), (164,148,o), (177,250,cs), (191,360,o), (254,437,o), (353,437,cs), (451,437,o), (489,356,o), (476,252,cs), (463,148,o), (405,64,o), (304,64,cs) ); } ); width = 615; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (191,29,o), (236,-12,o), (319,-12,cs), (450,-12,o), (551,88,o), (571,253,cs), (592,421,o), (511,520,o), (380,520,cs), (302,520,o), (246,470,o), (213,415,c), (248,700,l), (107,700,l), (-6,-230,l), (134,-230,l), (172,83,l) ); }, { closed = 1; nodes = ( (220,97,o), (181,158,o), (193,253,cs), (204,341,o), (258,410,o), (326,410,cs), (398,410,o), (436,340,o), (425,253,cs), (413,157,o), (359,95,o), (288,96,cs) ); } ); width = 600; } ); unicode = 254; }, { glyphname = q; kernLeft = o; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (488,-231,o), (499,-226,o), (514,-218,c), (519,-171,l), (476,-190,o), (447,-176,o), (453,-126,c), (529,500,l), (473,500,l), (461,402,l), (447,457,o), (385,512,o), (300,512,cs), (169,512,o), (77,419,o), (56,250,cs), (36,86,o), (119,-12,o), (236,-12,cs), (327,-12,o), (397,43,o), (423,98,c), (395,-141,ls), (386,-212,o), (424,-229,o), (463,-230,cs) ); }, { closed = 1; nodes = ( (155,38,o), (100,124,o), (115,252,cs), (131,377,o), (193,462,o), (306,462,cs), (385,462,o), (459,392,o), (443,250,c), (425,108,o), (333,38,o), (254,38,cs) ); } ); width = 600; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (498,-230,o), (512,-226,o), (527,-218,c), (535,-150,l), (485,-161,o), (474,-143,o), (481,-103,cs), (555,500,l), (472,500,l), (460,402,l), (445,457,o), (400,512,o), (312,512,cs), (181,512,o), (75,419,o), (54,250,cs), (34,86,o), (112,-12,o), (243,-12,cs), (312,-12,o), (392,27,o), (421,96,c), (394,-124,ls), (384,-204,o), (421,-230,o), (473,-230,cs) ); }, { closed = 1; nodes = ( (163,64,o), (125,148,o), (138,252,cs), (151,356,o), (209,437,o), (307,437,cs), (406,437,o), (451,360,o), (437,250,cs), (424,148,o), (360,64,o), (264,64,cs) ); } ); width = 604; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (512,-229,o), (553,-222,o), (568,-214,c), (581,-104,l), (531,-115,o), (519,-100,o), (523,-60,cs), (594,508,l), (453,508,l), (442,415,l), (423,470,o), (379,520,o), (301,520,cs), (170,520,o), (65,421,o), (44,253,cs), (24,88,o), (99,-12,o), (230,-12,cs), (313,-12,o), (368,29,o), (401,83,c), (378,-100,ls), (366,-191,o), (410,-229,o), (485,-229,cs) ); }, { closed = 1; nodes = ( (216,95,o), (178,157,o), (190,253,cs), (201,340,o), (255,410,o), (327,410,cs), (395,410,o), (433,341,o), (422,253,cs), (410,158,o), (357,97,o), (289,96,cs) ); } ); width = 655; } ); unicode = 113; }, { glyphname = r; lastChange = "2025-02-21 05:19:56 +0000"; layers = ( { anchors = ( { name = bottom; pos = (94,0); }, { name = top; pos = (247,500); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (121,0,l), (154,270,ls), (166,366,o), (232,456,o), (331,456,cs), (349,456,o), (367,454,o), (382,449,c), (390,509,l), (378,511,o), (366,512,o), (354,512,cs), (235,512,o), (183,431,o), (170,396,c), (183,500,l), (127,500,l), (65,0,l) ); } ); width = 375; }, { anchors = ( { name = bottom; pos = (105,0); }, { name = top; pos = (242,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (145,0,l), (178,270,ls), (190,366,o), (242,420,o), (325,436,cs), (350,441,o), (385,436,o), (404,430,c), (414,508,l), (405,510,o), (381,512,o), (371,512,cs), (268,512,o), (221,454,o), (195,401,c), (207,500,l), (123,500,l), (61,0,l) ); } ); width = 402; }, { anchors = ( { name = bottom; pos = (118,0); }, { name = top; pos = (263,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (189,0,l), (216,221,ls), (228,317,o), (257,375,o), (338,391,cs), (363,396,o), (398,391,o), (417,385,c), (433,516,l), (425,519,o), (401,520,o), (391,520,cs), (323,520,o), (267,477,o), (241,424,c), (251,508,l), (111,508,l), (49,0,l) ); } ); width = 419; } ); unicode = 114; }, { glyphname = racute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = r; }, { pos = (165,-12); ref = acutecomb; } ); width = 375; }, { layerId = m002; shapes = ( { ref = r; }, { pos = (163,-12); ref = acutecomb; } ); width = 402; }, { layerId = m003; shapes = ( { ref = r; }, { pos = (163,12); ref = acutecomb; } ); width = 419; } ); unicode = 341; }, { glyphname = rcaron; lastChange = "2025-02-21 05:19:56 +0000"; layers = ( { layerId = m01; shapes = ( { ref = r; }, { pos = (81,-12); ref = caroncomb; } ); width = 375; }, { layerId = m002; shapes = ( { ref = r; }, { pos = (58,-12); ref = caroncomb; } ); width = 402; }, { layerId = m003; shapes = ( { ref = r; }, { pos = (51,12); ref = caroncomb; } ); width = 419; } ); unicode = 345; }, { glyphname = rcommaaccent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = r; }, { pos = (65,12); ref = commaaccentcomb; } ); width = 375; }, { layerId = m002; shapes = ( { ref = r; }, { pos = (60,12); ref = commaaccentcomb; } ); width = 402; }, { layerId = m003; shapes = ( { ref = r; }, { pos = (54,1); ref = commaaccentcomb; } ); width = 419; } ); unicode = 343; }, { glyphname = rdotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = r; }, { pos = (55,1); ref = dotbelowcomb; } ); width = 419; }, { layerId = m01; shapes = ( { ref = r; }, { pos = (62,0); ref = dotbelowcomb; } ); width = 375; }, { layerId = m002; shapes = ( { ref = r; }, { pos = (61,0); ref = dotbelowcomb; } ); width = 402; } ); unicode = 7771; }, { glyphname = rmacronbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = r; }, { pos = (-31,1); ref = macronbelowcomb; } ); width = 419; }, { layerId = m01; shapes = ( { ref = r; }, { pos = (-16,12); ref = macronbelowcomb; } ); width = 375; }, { layerId = m002; shapes = ( { ref = r; }, { pos = (-23,12); ref = macronbelowcomb; } ); width = 402; } ); unicode = 7775; }, { glyphname = s; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (220,-12); }, { name = top; pos = (285,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (364,-12,o), (427,53,o), (437,134,cs), (461,331,o), (125,228,o), (143,371,cs), (150,432,o), (212,462,o), (278,462,cs), (354,462,o), (397,418,o), (390,367,c), (450,367,l), (458,429,o), (434,512,o), (285,512,cs), (162,512,o), (93,441,o), (84,368,cs), (60,168,o), (395,269,o), (379,134,cs), (371,70,o), (313,38,o), (228,38,cs), (163,38,o), (89,80,o), (98,156,c), (38,156,l), (26,57,o), (117,-12,o), (220,-12,cs) ); } ); width = 505; }, { anchors = ( { name = bottom; pos = (219,-12); }, { name = top; pos = (275,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (366,-12,o), (433,60,o), (443,141,cs), (467,338,o), (137,253,o), (151,365,cs), (156,407,o), (192,436,o), (265,436,cs), (345,436,o), (378,400,o), (374,367,c), (460,367,l), (468,429,o), (428,512,o), (275,512,cs), (145,512,o), (75,433,o), (67,360,cs), (42,161,o), (373,258,o), (358,137,cs), (352,87,o), (304,64,o), (230,64,cs), (172,64,o), (113,93,o), (120,156,c), (30,156,l), (18,57,o), (110,-12,o), (219,-12,c) ); } ); width = 503; }, { anchors = ( { name = bottom; pos = (242,-12); }, { name = top; pos = (305,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (396,-12,o), (489,53,o), (503,162,cs), (525,347,o), (199,287,o), (208,361,cs), (212,389,o), (235,406,o), (290,406,cs), (347,406,o), (379,380,o), (376,351,c), (512,351,l), (521,424,o), (477,520,o), (305,520,cs), (150,520,o), (80,447,o), (68,355,cs), (44,157,o), (371,224,o), (363,155,cs), (358,116,o), (320,102,o), (263,102,cs), (197,102,o), (156,126,o), (162,175,c), (26,176,l), (14,77,o), (84,-12,o), (242,-12,c) ); } ); width = 554; }, { associatedMasterId = m003; layerId = "F69D4450-EE1F-4301-BB03-F9CA77403C17"; name = "10 Aug 24 at 16:46"; shapes = ( { closed = 1; nodes = ( (434,-12,o), (514,66,o), (514,145,cs), (514,351,o), (195,285,o), (195,361,cs), (195,389,o), (216,406,o), (271,406,cs), (328,406,o), (364,380,o), (364,351,c), (500,351,l), (500,424,o), (444,520,o), (272,520,cs), (117,520,o), (56,448,o), (56,364,cs), (56,156,o), (375,226,o), (375,155,cs), (375,116,o), (339,102,o), (282,102,cs), (216,102,o), (172,126,o), (172,175,c), (36,176,l), (36,77,o), (117,-12,o), (275,-12,c) ); } ); visible = 1; width = 554; } ); unicode = 115; }, { glyphname = sacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = s; }, { pos = (203,0); ref = acutecomb; } ); width = 505; }, { layerId = m002; shapes = ( { ref = s; }, { pos = (196,0); ref = acutecomb; } ); width = 503; }, { layerId = m003; shapes = ( { ref = s; }, { pos = (205,12); ref = acutecomb; } ); width = 554; } ); unicode = 347; }, { glyphname = scaron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = s; }, { pos = (119,0); ref = caroncomb; } ); width = 505; }, { layerId = m002; shapes = ( { ref = s; }, { pos = (91,0); ref = caroncomb; } ); width = 503; }, { layerId = m003; shapes = ( { ref = s; }, { pos = (93,12); ref = caroncomb; } ); width = 554; } ); unicode = 353; }, { glyphname = scedilla; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = s; }, { pos = (143,-14); ref = cedillacomb; } ); width = 505; }, { layerId = m002; shapes = ( { ref = s; }, { pos = (132,-14); ref = cedillacomb; } ); width = 503; }, { layerId = m003; shapes = ( { ref = s; }, { pos = (145,-11); ref = cedillacomb; } ); width = 554; } ); unicode = 351; }, { glyphname = scircumflex; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = s; }, { pos = (119,0); ref = circumflexcomb; } ); width = 505; }, { layerId = m002; shapes = ( { ref = s; }, { pos = (86,0); ref = circumflexcomb; } ); width = 503; }, { layerId = m003; shapes = ( { ref = s; }, { pos = (95,12); ref = circumflexcomb; } ); width = 554; } ); unicode = 349; }, { glyphname = scommaaccent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = s; }, { pos = (191,0); ref = commaaccentcomb; } ); width = 505; }, { layerId = m002; shapes = ( { ref = s; }, { pos = (174,0); ref = commaaccentcomb; } ); width = 503; }, { layerId = m003; shapes = ( { ref = s; }, { pos = (178,-11); ref = commaaccentcomb; } ); width = 554; } ); unicode = 537; }, { glyphname = germandbls; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (191,122,l), (182,46,o), (238,-12,o), (335,-12,cs), (425,-12,o), (504,41,o), (516,140,cs), (537,303,o), (367,302,o), (377,379,cs), (383,431,o), (447,461,o), (459,557,cs), (470,646,o), (409,712,o), (313,712,cs), (204,712,o), (132,642,o), (115,506,cs), (53,0,l), (109,0,l), (171,506,ls), (183,598,o), (220,662,o), (310,662,cs), (372,662,o), (407,608,o), (401,557,cs), (390,473,o), (329,458,o), (319,379,cs), (304,260,o), (476,286,o), (458,138,cs), (450,74,o), (404,38,o), (342,38,cs), (274,38,o), (238,82,o), (243,122,c) ); } ); width = 570; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (201,140,l), (191,58,o), (236,-12,o), (358,-12,cs), (460,-12,o), (537,54,o), (550,157,cs), (569,316,o), (405,327,o), (414,393,cs), (420,445,o), (475,460,o), (486,552,cs), (497,642,o), (427,712,o), (329,712,cs), (206,712,o), (133,631,o), (117,506,cs), (55,0,l), (143,0,l), (205,506,ls), (215,583,o), (241,636,o), (322,636,cs), (374,636,o), (407,595,o), (402,552,cs), (393,480,o), (339,472,o), (330,393,cs), (314,268,o), (481,284,o), (465,155,cs), (458,97,o), (419,64,o), (367,64,cs), (305,64,o), (279,95,o), (284,140,c) ); } ); width = 596; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (236,163,l), (221,43,o), (297,-12,o), (412,-12,cs), (547,-12,o), (620,68,o), (633,170,cs), (653,334,o), (486,332,o), (493,392,cs), (499,443,o), (538,462,o), (547,537,cs), (558,626,o), (485,712,o), (358,712,cs), (185,712,o), (123,602,o), (106,463,cs), (49,0,l), (189,0,l), (245,457,ls), (257,554,o), (287,598,o), (345,598,cs), (384,598,o), (412,570,o), (408,537,cs), (399,465,o), (361,459,o), (353,392,cs), (336,256,o), (508,271,o), (496,171,cs), (490,126,o), (467,102,o), (427,102,cs), (385,102,o), (362,122,o), (367,163,c) ); } ); width = 673; } ); unicode = 223; }, { glyphname = t; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (165,-3); }, { name = top; pos = (206,629); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (237,-11,o), (259,-8,o), (277,-3,c), (283,47,l), (267,44,o), (250,43,o), (237,43,cs), (189,43,o), (163,61,o), (172,134,cs), (210,449,l), (339,449,l), (346,499,l), (217,499,l), (232,627,l), (180,627,l), (173,570,ls), (165,506,o), (155,500,o), (94,500,cs), (71,500,l), (64,449,l), (154,449,l), (116,133,ls), (104,40,o), (136,-11,o), (221,-11,cs) ); } ); width = 355; }, { anchors = ( { name = bottom; pos = (182,-8); }, { name = top; pos = (203,627); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (250,-12,o), (272,-9,o), (290,-4,c), (298,64,l), (282,61,o), (265,60,o), (252,60,cs), (203,60,o), (179,78,o), (186,132,cs), (221,423,l), (350,423,l), (360,499,l), (231,499,l), (246,627,l), (162,627,l), (155,570,ls), (148,512,o), (134,500,o), (80,500,cs), (57,500,l), (47,423,l), (137,423,l), (102,132,ls), (90,39,o), (125,-12,o), (234,-12,cs) ); } ); width = 366; }, { anchors = ( { name = bottom; pos = (198,-4); }, { name = top; pos = (233,628); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (284,-12,o), (314,-9,o), (331,-4,c), (346,126,l), (330,123,o), (307,122,o), (294,122,cs), (267,122,o), (240,137,o), (245,184,cs), (270,387,l), (386,387,l), (401,507,l), (285,507,l), (300,627,l), (166,627,l), (160,582,ls), (154,527,o), (131,508,o), (68,508,cs), (49,508,l), (34,387,l), (130,387,l), (101,149,ls), (88,42,o), (137,-12,o), (268,-12,cs) ); } ); width = 400; } ); unicode = 116; }, { glyphname = tcaron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (344,582,l), (414,700,l), (321,700,l), (294,582,l) ); }, { pos = (-31,0); ref = t; } ); width = 359; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (371,562,l), (437,699,l), (327,699,l), (299,562,l) ); }, { pos = (-31,0); ref = t; } ); width = 382; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (438,562,l), (510,702,l), (380,702,l), (343,562,l) ); }, { pos = (-31,0); ref = t; } ); width = 455; } ); unicode = 357; }, { glyphname = tcedilla; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = t; }, { pos = (88,-5); ref = cedillacomb; } ); width = 355; }, { layerId = m002; shapes = ( { ref = t; }, { pos = (95,-10); ref = cedillacomb; } ); width = 366; }, { layerId = m003; shapes = ( { ref = t; }, { pos = (101,-3); ref = cedillacomb; } ); width = 400; } ); unicode = 355; }, { glyphname = tcommaaccent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = t; }, { pos = (136,9); ref = commaaccentcomb; } ); width = 355; }, { layerId = m002; shapes = ( { ref = t; }, { pos = (137,4); ref = commaaccentcomb; } ); width = 366; }, { layerId = m003; shapes = ( { ref = t; }, { pos = (134,-3); ref = commaaccentcomb; } ); width = 400; } ); unicode = 539; }, { glyphname = tdotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = t; }, { pos = (135,-3); ref = dotbelowcomb; } ); width = 400; }, { layerId = m01; shapes = ( { ref = t; }, { pos = (133,-3); ref = dotbelowcomb; } ); width = 355; }, { layerId = m002; shapes = ( { ref = t; }, { pos = (138,-8); ref = dotbelowcomb; } ); width = 366; } ); unicode = 7789; }, { glyphname = tmacronbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = t; }, { pos = (49,-3); ref = macronbelowcomb; } ); width = 400; }, { layerId = m01; shapes = ( { ref = t; }, { pos = (55,9); ref = macronbelowcomb; } ); width = 355; }, { layerId = m002; shapes = ( { ref = t; }, { pos = (54,4); ref = macronbelowcomb; } ); width = 366; } ); unicode = 7791; }, { glyphname = u; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (253,-12); }, { name = top; pos = (316,500); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (469,500,l), (436,230,ls), (424,134,o), (357,38,o), (258,38,cs), (177,38,o), (122,89,o), (135,190,cs), (173,500,l), (117,500,l), (77,178,ls), (62,58,o), (139,-12,o), (236,-12,cs), (355,-12,o), (407,69,o), (420,104,c), (407,0,l), (463,0,l), (525,500,l) ); } ); width = 584; }, { anchors = ( { name = bottom; pos = (258,-12); }, { name = top; pos = (321,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (452,500,l), (419,230,ls), (407,134,o), (351,64,o), (259,64,cs), (192,64,o), (151,97,o), (162,184,cs), (201,500,l), (117,500,l), (76,172,ls), (62,52,o), (125,-12,o), (222,-12,cs), (334,-12,o), (389,59,o), (402,94,c), (390,0,l), (474,0,l), (536,500,l) ); } ); width = 597; }, { anchors = ( { name = bottom; pos = (254,-12); }, { name = top; pos = (325,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (427,508,l), (398,269,ls), (385,161,o), (349,100,o), (266,100,cs), (209,100,o), (186,138,o), (195,212,cs), (231,508,l), (91,508,l), (53,193,ls), (38,73,o), (85,-12,o), (219,-12,cs), (287,-12,o), (347,29,o), (374,78,c), (365,0,l), (505,0,l), (567,508,l) ); } ); width = 616; } ); unicode = 117; }, { glyphname = uacute; kernLeft = u; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (234,-12); ref = acutecomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (242,-12); ref = acutecomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (225,12); ref = acutecomb; } ); width = 616; } ); unicode = 250; }, { glyphname = ubreve; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (139,-12); ref = brevecomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (146,-12); ref = brevecomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (125,12); ref = brevecomb; } ); width = 616; } ); unicode = 365; }, { glyphname = ucircumflex; kernLeft = u; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (150,-12); ref = circumflexcomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (132,-12); ref = circumflexcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (115,12); ref = circumflexcomb; } ); width = 616; } ); unicode = 251; }, { glyphname = udieresis; kernLeft = u; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (119,-12); ref = dieresiscomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (124,-12); ref = dieresiscomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (79,12); ref = dieresiscomb; } ); width = 616; } ); unicode = 252; }, { glyphname = udotbelow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (221,-12); ref = dotbelowcomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (214,-12); ref = dotbelowcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (191,-11); ref = dotbelowcomb; } ); width = 616; } ); unicode = 7909; }, { glyphname = ugrave; kernLeft = uhorn; kernRight = u; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (120,-12); ref = gravecomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (126,-12); ref = gravecomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (95,12); ref = gravecomb; } ); width = 616; } ); unicode = 249; }, { glyphname = uhookabove; kernLeft = uhorn; kernRight = u; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (235,0); ref = hookabovecomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (221,0); ref = hookabovecomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (229,12); ref = hookabovecomb; } ); width = 616; } ); unicode = 7911; }, { glyphname = uhorn; kernLeft = u; kernRight = uhorn; lastChange = "2025-01-01 09:36:03 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-31,0); ref = u; }, { closed = 1; nodes = ( (574,451,o), (667,529,o), (633,651,c), (570,632,l), (592,562,o), (557,500,o), (493,500,c), (487,451,l) ); } ); width = 640; }, { layerId = m002; shapes = ( { pos = (-31,0); ref = u; }, { closed = 1; nodes = ( (621,446,o), (693,529,o), (659,651,c), (577,629,l), (598,570,o), (586,500,o), (505,500,c), (498,446,l) ); } ); width = 675; }, { layerId = m003; shapes = ( { pos = (-31,0); ref = u; }, { closed = 1; nodes = ( (658,427,o), (760,536,o), (722,671,c), (604,640,l), (626,581,o), (616,508,o), (535,508,c), (525,427,l) ); } ); width = 736; } ); unicode = 432; }, { glyphname = uhornacute; kernLeft = u; kernRight = uhorn; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = uhorn; }, { pos = (203,-12); ref = acutecomb; } ); width = 640; }, { layerId = m002; shapes = ( { ref = uhorn; }, { pos = (211,-12); ref = acutecomb; } ); width = 675; }, { layerId = m003; shapes = ( { ref = uhorn; }, { pos = (194,12); ref = acutecomb; } ); width = 736; } ); unicode = 7913; }, { glyphname = uhorndotbelow; kernLeft = u; kernRight = uhorn; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = uhorn; }, { pos = (190,-12); ref = dotbelowcomb; } ); width = 640; }, { layerId = m002; shapes = ( { ref = uhorn; }, { pos = (183,-12); ref = dotbelowcomb; } ); width = 675; }, { layerId = m003; shapes = ( { ref = uhorn; }, { pos = (160,-11); ref = dotbelowcomb; } ); width = 736; } ); unicode = 7921; }, { glyphname = uhorngrave; kernLeft = u; kernRight = uhorn; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = uhorn; }, { pos = (89,-12); ref = gravecomb; } ); width = 640; }, { layerId = m002; shapes = ( { ref = uhorn; }, { pos = (95,-12); ref = gravecomb; } ); width = 675; }, { layerId = m003; shapes = ( { ref = uhorn; }, { pos = (64,12); ref = gravecomb; } ); width = 736; } ); unicode = 7915; }, { glyphname = uhornhookabove; kernLeft = u; kernRight = uhorn; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = uhorn; }, { pos = (204,0); ref = hookabovecomb; } ); width = 640; }, { layerId = m002; shapes = ( { ref = uhorn; }, { pos = (190,0); ref = hookabovecomb; } ); width = 675; }, { layerId = m003; shapes = ( { ref = uhorn; }, { pos = (198,12); ref = hookabovecomb; } ); width = 736; } ); unicode = 7917; }, { glyphname = uhorntilde; kernLeft = u; kernRight = uhorn; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = uhorn; }, { pos = (92,-12); ref = tildecomb; } ); width = 640; }, { layerId = m002; shapes = ( { ref = uhorn; }, { pos = (104,-12); ref = tildecomb; } ); width = 675; }, { layerId = m003; shapes = ( { ref = uhorn; }, { pos = (64,12); ref = tildecomb; } ); width = 736; } ); unicode = 7919; }, { glyphname = uhungarumlaut; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (165,-12); ref = hungarumlautcomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (166,-12); ref = hungarumlautcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (128,12); ref = hungarumlautcomb; } ); width = 616; } ); unicode = 369; }, { glyphname = umacron; lastChange = "2025-01-08 14:20:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (151,-12); ref = macroncomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (114,-12); ref = macroncomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (122,9); ref = macroncomb; } ); width = 616; } ); unicode = 363; }, { glyphname = uogonek; lastChange = "2025-01-01 09:09:03 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (335,5); ref = ogonekcomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (342,1); ref = ogonekcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (361,0); ref = ogonekcomb; } ); width = 616; } ); unicode = 371; }, { glyphname = uring; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (159,-12); ref = ringcomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (158,-12); ref = ringcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (149,12); ref = ringcomb; } ); width = 616; } ); unicode = 367; }, { glyphname = utilde; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (123,-12); ref = tildecomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (135,-12); ref = tildecomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (95,12); ref = tildecomb; } ); width = 616; } ); unicode = 361; }, { glyphname = v; kernLeft = v; kernRight = v; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (183,0,l), (243,0,l), (118,500,l), (46,500,l) ); }, { closed = 1; nodes = ( (430,500,l), (183,0,l), (243,0,l), (495,500,l) ); } ); width = 480; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (173,0,l), (256,0,l), (144,500,l), (45,500,l) ); }, { closed = 1; nodes = ( (422,500,l), (183,0,l), (264,0,l), (513,500,l) ); } ); width = 496; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (173,0,l), (298,0,l), (178,508,l), (34,508,l) ); }, { closed = 1; nodes = ( (438,508,l), (188,0,l), (307,0,l), (572,508,l) ); } ); width = 544; } ); unicode = 118; }, { glyphname = w; kernLeft = w; kernRight = w; lastChange = "2025-01-01 10:11:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (383,0); }, { name = top; pos = (445,500); } ); guides = ( { angle = 270; pos = (414,596); }, { angle = 270; pos = (232,568); }, { angle = 270; pos = (601,594); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (237,0,l), (454,473,l), (430,473,l), (532,0,l), (592,0,l), (821,500,l), (758,500,l), (566,61,l), (579,61,l), (486,500,l), (408,500,l), (210,61,l), (224,61,l), (139,500,l), (71,500,l), (176,0,l) ); } ); width = 830; }, { anchors = ( { name = bottom; pos = (396,0); }, { name = top; pos = (458,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (264,0,l), (466,420,l), (430,420,l), (527,0,l), (617,0,l), (843,500,l), (756,500,l), (572,62,l), (593,62,l), (501,500,l), (418,500,l), (221,62,l), (240,62,l), (162,500,l), (67,500,l), (174,0,l) ); } ); width = 848; }, { anchors = ( { name = bottom; pos = (427,-12); }, { name = top; pos = (493,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (313,0,l), (493,408,l), (464,408,l), (541,0,l), (678,0,l), (917,508,l), (781,508,l), (606,95,l), (630,95,l), (568,508,l), (422,508,l), (251,95,l), (275,95,l), (209,508,l), (63,508,l), (176,0,l) ); } ); width = 918; }, { associatedMasterId = m002; layerId = "30F2B960-0829-4076-A92C-CF2E7BC166CC"; name = m; shapes = ( { closed = 1; nodes = ( (68,0,l), (68,270,ls), (68,366,o), (115,436,o), (207,436,cs), (274,436,o), (319,403,o), (319,316,cs), (319,0,l), (403,0,l), (403,328,ls), (403,448,o), (332,512,o), (235,512,cs), (123,512,o), (77,441,o), (68,406,c), (68,500,l), (-16,500,l), (-16,0,l) ); }, { closed = 1; nodes = ( (738,0,l), (738,328,ls), (738,448,o), (667,512,o), (570,512,cs), (458,512,o), (402,432,o), (393,397,c), (403,270,l), (403,366,o), (450,436,o), (542,436,cs), (609,436,o), (654,403,o), (654,316,cs), (654,0,l) ); } ); width = 730; }, { associatedMasterId = m002; layerId = "54EF5A92-DF5C-4F27-901D-AD1120EB6B99"; name = v; shapes = ( { closed = 1; nodes = ( (130,0,l), (213,0,l), (39,500,l), (-60,500,l) ); }, { closed = 1; nodes = ( (317,500,l), (140,0,l), (221,0,l), (408,500,l) ); } ); width = 730; }, { associatedMasterId = m003; layerId = "6140675B-CD52-4F0B-8FAC-842A7E23690F"; name = "29 Jul 24 at 14:44"; shapes = ( { closed = 1; nodes = ( (332,0,l), (442,394,l), (395,394,l), (500,0,l), (673,0,l), (812,508,l), (671,508,l), (566,60,l), (609,60,l), (490,508,l), (345,508,l), (225,60,l), (270,60,l), (165,508,l), (25,508,l), (164,0,l) ); } ); width = 837; }, { associatedMasterId = m003; layerId = "C266404C-C364-4E5A-B81C-638BAB07B38C"; name = "29 Jul 24 at 14:44"; shapes = ( { closed = 1; nodes = ( (142,0,l), (142,239,ls), (142,347,o), (174,408,o), (257,408,cs), (314,408,o), (343,373,o), (343,296,cs), (343,0,l), (483,0,l), (483,315,ls), (483,435,o), (420,520,o), (291,520,cs), (223,520,o), (163,479,o), (142,430,c), (142,508,l), (2,508,l), (2,0,l) ); }, { closed = 1; nodes = ( (483,239,l), (483,347,o), (515,408,o), (598,408,cs), (655,408,o), (684,373,o), (684,296,cs), (684,0,l), (824,0,l), (824,315,ls), (824,435,o), (761,520,o), (632,520,cs), (568,520,o), (490,490,o), (468,404,c) ); } ); width = 837; }, { associatedMasterId = m01; guides = ( { angle = 270; pos = (415,596); }, { angle = 270; pos = (233,568); }, { angle = 270; pos = (602,594); } ); layerId = "CC5DFB62-56C2-4ABB-B478-555D61F8676C"; name = "29 Jul 24 at 16:40"; shapes = ( { closed = 1; nodes = ( (80,0,l), (80,270,ls), (80,366,o), (135,458,o), (234,458,cs), (315,458,o), (376,411,o), (376,310,cs), (376,0,l), (432,0,l), (432,322,ls), (432,442,o), (347,512,o), (250,512,cs), (131,512,o), (89,431,o), (80,396,c), (80,500,l), (24,500,l), (24,0,l) ); }, { closed = 1; nodes = ( (432,270,l), (432,373,o), (487,458,o), (586,458,cs), (667,458,o), (728,411,o), (728,310,cs), (728,0,l), (784,0,l), (784,322,ls), (784,442,o), (699,512,o), (602,512,cs), (483,512,o), (430,414,o), (421,379,c) ); } ); width = 830; } ); unicode = 119; }, { glyphname = wacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = w; }, { pos = (363,-12); ref = acutecomb; } ); width = 830; }, { layerId = m002; shapes = ( { ref = w; }, { pos = (379,-12); ref = acutecomb; } ); width = 848; }, { layerId = m003; shapes = ( { ref = w; }, { pos = (393,12); ref = acutecomb; } ); width = 918; } ); unicode = 7811; }, { glyphname = wcircumflex; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = w; }, { pos = (279,-12); ref = circumflexcomb; } ); width = 830; }, { layerId = m002; shapes = ( { ref = w; }, { pos = (269,-12); ref = circumflexcomb; } ); width = 848; }, { layerId = m003; shapes = ( { ref = w; }, { pos = (283,12); ref = circumflexcomb; } ); width = 918; } ); unicode = 373; }, { glyphname = wdieresis; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = w; }, { pos = (248,-12); ref = dieresiscomb; } ); width = 830; }, { layerId = m002; shapes = ( { ref = w; }, { pos = (261,-12); ref = dieresiscomb; } ); width = 848; }, { layerId = m003; shapes = ( { ref = w; }, { pos = (247,12); ref = dieresiscomb; } ); width = 918; } ); unicode = 7813; }, { glyphname = wgrave; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = w; }, { pos = (249,-12); ref = gravecomb; } ); width = 830; }, { layerId = m002; shapes = ( { ref = w; }, { pos = (263,-12); ref = gravecomb; } ); width = 848; }, { layerId = m003; shapes = ( { ref = w; }, { pos = (263,12); ref = gravecomb; } ); width = 918; } ); unicode = 7809; }, { glyphname = x; lastChange = "2025-01-01 10:11:35 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (434,0,l), (264,287,l), (259,296,l), (138,500,l), (67,500,l), (217,248,l), (224,235,l), (363,0,l) ); }, { closed = 1; nodes = ( (58,0,l), (248,227,l), (259,239,l), (478,500,l), (409,500,l), (233,290,l), (219,274,l), (-11,0,l) ); } ); width = 491; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (439,0,l), (272,283,l), (266,292,l), (143,500,l), (43,500,l), (201,233,l), (207,224,l), (339,0,l) ); }, { closed = 1; nodes = ( (71,0,l), (252,215,l), (263,229,l), (491,500,l), (396,500,l), (221,292,l), (207,275,l), (-24,0,l) ); } ); width = 477; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (518,0,l), (326,306,l), (317,313,l), (197,508,l), (43,508,l), (224,218,l), (232,212,l), (364,0,l) ); }, { closed = 1; nodes = ( (124,0,l), (309,213,l), (319,220,l), (569,508,l), (420,508,l), (249,310,l), (239,304,l), (-25,0,l) ); } ); width = 555; } ); unicode = 120; }, { glyphname = y; kernLeft = v; kernRight = v; lastChange = "2025-01-01 10:15:53 +0000"; layers = ( { anchors = ( { name = top; pos = (297,500); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (148,-230,o), (183,-164,o), (250,-34,cs), (525,500,l), (461,500,l), (244,71,l), (117,500,l), (48,500,l), (206,0,l), (146,-126,o), (111,-170,o), (64,-170,c), (46,-170,o), (28,-169,o), (16,-166,c), (9,-222,l), (22,-226,o), (33,-230,o), (54,-230,cs) ); } ); width = 510; }, { anchors = ( { name = top; pos = (296,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (157,-230,o), (194,-164,o), (259,-34,cs), (526,500,l), (431,500,l), (248,110,l), (136,500,l), (40,500,l), (191,3,l), (141,-126,o), (106,-152,o), (55,-152,c), (37,-152,o), (22,-151,o), (10,-148,c), (1,-222,l), (14,-226,o), (42,-230,o), (63,-230,cs) ); } ); width = 507; }, { anchors = ( { name = top; pos = (307,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (163,-230,o), (234,-177,o), (305,-34,cs), (572,508,l), (431,508,l), (271,141,l), (175,508,l), (35,508,l), (181,3,l), (152,-78,o), (98,-104,o), (52,-104,c), (42,-104,o), (15,-103,o), (4,-100,c), (-12,-220,l), (0,-224,o), (33,-230,o), (73,-230,cs) ); } ); width = 543; }, { associatedMasterId = m002; layerId = "D87BC176-5E8B-42A9-9E7C-690C4401C1BD"; name = "14 Jul 24 at 12:20"; shapes = ( { closed = 1; nodes = ( (209,0,l), (292,0,l), (118,500,l), (22,500,l) ); }, { closed = 1; nodes = ( (396,500,l), (219,0,l), (300,0,l), (484,500,l) ); } ); visible = 1; width = 498; } ); unicode = 121; }, { glyphname = yacute; kernLeft = y; kernRight = y; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = y; }, { pos = (215,-12); ref = acutecomb; } ); width = 510; }, { layerId = m002; shapes = ( { ref = y; }, { pos = (217,-12); ref = acutecomb; } ); width = 507; }, { layerId = m003; shapes = ( { ref = y; }, { pos = (207,12); ref = acutecomb; } ); width = 543; } ); unicode = 253; }, { glyphname = ycircumflex; kernLeft = y; kernRight = y; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m01; shapes = ( { ref = y; }, { pos = (131,-12); ref = circumflexcomb; } ); width = 510; }, { layerId = m002; shapes = ( { ref = y; }, { pos = (107,-12); ref = circumflexcomb; } ); width = 507; }, { layerId = m003; shapes = ( { ref = y; }, { pos = (97,12); ref = circumflexcomb; } ); width = 543; } ); unicode = 375; }, { glyphname = ydieresis; kernLeft = y; kernRight = y; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = y; }, { pos = (100,-12); ref = dieresiscomb; } ); width = 510; }, { layerId = m002; shapes = ( { ref = y; }, { pos = (99,-12); ref = dieresiscomb; } ); width = 507; }, { layerId = m003; shapes = ( { ref = y; }, { pos = (61,12); ref = dieresiscomb; } ); width = 543; } ); unicode = 255; }, { glyphname = ydotbelow; kernLeft = y; kernRight = y; lastChange = "2025-01-01 09:37:19 +0000"; layers = ( { layerId = m01; shapes = ( { ref = y; }, { pos = (161,-158); ref = dotbelowcomb; } ); width = 510; }, { layerId = m002; shapes = ( { ref = y; }, { pos = (175,-164); ref = dotbelowcomb; } ); width = 507; }, { layerId = m003; shapes = ( { ref = y; }, { pos = (215,-177); ref = dotbelowcomb; } ); width = 543; } ); unicode = 7925; }, { glyphname = ygrave; kernLeft = y; kernRight = y; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = y; }, { pos = (101,-12); ref = gravecomb; } ); width = 510; }, { layerId = m002; shapes = ( { ref = y; }, { pos = (101,-12); ref = gravecomb; } ); width = 507; }, { layerId = m003; shapes = ( { ref = y; }, { pos = (77,12); ref = gravecomb; } ); width = 543; } ); unicode = 7923; }, { glyphname = yhookabove; kernLeft = y; kernRight = y; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = y; }, { pos = (216,0); ref = hookabovecomb; } ); width = 510; }, { layerId = m002; shapes = ( { ref = y; }, { pos = (196,0); ref = hookabovecomb; } ); width = 507; }, { layerId = m003; shapes = ( { ref = y; }, { pos = (211,12); ref = hookabovecomb; } ); width = 543; } ); unicode = 7927; }, { glyphname = ytilde; kernLeft = y; kernRight = y; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = y; }, { pos = (104,-12); ref = tildecomb; } ); width = 510; }, { layerId = m002; shapes = ( { ref = y; }, { pos = (110,-12); ref = tildecomb; } ); width = 507; }, { layerId = m003; shapes = ( { ref = y; }, { pos = (77,12); ref = tildecomb; } ); width = 543; } ); unicode = 7929; }, { glyphname = z; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (208,0); }, { name = top; pos = (270,500); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (388,1,l), (395,51,l), (92,51,l), (442,454,l), (448,501,l), (81,501,l), (75,451,l), (373,451,l), (26,51,l), (19,1,l) ); } ); width = 475; }, { anchors = ( { name = bottom; pos = (215,0); }, { name = top; pos = (277,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (398,1,l), (408,77,l), (133,77,l), (449,428,l), (458,501,l), (85,501,l), (75,425,l), (348,425,l), (33,75,l), (23,1,l) ); } ); width = 483; }, { anchors = ( { name = bottom; pos = (221,0); }, { name = top; pos = (288,508); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (441,1,l), (456,121,l), (209,121,l), (488,396,l), (501,508,l), (71,508,l), (57,388,l), (303,388,l), (24,114,l), (9,1,l) ); } ); width = 516; } ); unicode = 122; }, { glyphname = zacute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = z; }, { pos = (188,-12); ref = acutecomb; } ); width = 475; }, { layerId = m002; shapes = ( { ref = z; }, { pos = (198,-12); ref = acutecomb; } ); width = 483; }, { layerId = m003; shapes = ( { ref = z; }, { pos = (188,0); ref = acutecomb; } ); width = 516; } ); unicode = 378; }, { glyphname = zcaron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = z; }, { pos = (104,-12); ref = caroncomb; } ); width = 475; }, { layerId = m002; shapes = ( { ref = z; }, { pos = (93,-12); ref = caroncomb; } ); width = 483; }, { layerId = m003; shapes = ( { ref = z; }, { pos = (76,0); ref = caroncomb; } ); width = 516; } ); unicode = 382; }, { glyphname = zdotaccent; lastChange = "2025-01-08 14:19:43 +0000"; layers = ( { layerId = m01; shapes = ( { ref = z; }, { pos = (172,-12); ref = dotaccentcomb; } ); width = 475; }, { layerId = m002; shapes = ( { ref = z; }, { pos = (171,-12); ref = dotaccentcomb; } ); width = 483; }, { layerId = m003; shapes = ( { ref = z; }, { pos = (161,0); ref = dotaccentcomb; } ); width = 516; } ); unicode = 380; }, { glyphname = lcommaaccent.loclMAH; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = l; }, { pos = (8,-2); ref = commaaccentcomb.loclMAH; } ); width = 236; }, { layerId = m002; shapes = ( { ref = l; }, { pos = (-13,-2); ref = commaaccentcomb.loclMAH; } ); width = 228; }, { layerId = m003; shapes = ( { ref = l; }, { pos = (13,1); ref = commaaccentcomb.loclMAH; } ); width = 296; } ); }, { glyphname = ncommaaccent.loclMAH; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = n; }, { pos = (197,-2); ref = commaaccentcomb.loclMAH; } ); width = 592; }, { layerId = m002; shapes = ( { ref = n; }, { pos = (181,-2); ref = commaaccentcomb.loclMAH; } ); width = 587; }, { layerId = m003; shapes = ( { ref = n; }, { pos = (191,1); ref = commaaccentcomb.loclMAH; } ); width = 624; } ); }, { glyphname = a.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (247,-10); }, { name = top; pos = (311,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (336,-12,o), (394,97,o), (394,97,c), (386,30,o), (418,-1,o), (461,-1,cs), (486,-1,o), (497,3,o), (512,11,c), (518,59,l), (473,43,o), (446,63,o), (452,113,cs), (480,338,ls), (494,450,o), (437,512,o), (301,512,cs), (222,512,o), (146,476,o), (97,400,c), (146,373,l), (173,420,o), (226,460,o), (295,460,cs), (397,460,o), (433,409,o), (423,333,cs), (421,318,l), (193,318,o), (59,278,o), (42,135,cs), (31,43,o), (96,-12,o), (180,-12,cs) ); }, { closed = 1; nodes = ( (131,38,o), (93,81,o), (99,131,cs), (111,228,o), (190,268,o), (415,268,c), (411,233,ls), (399,132,o), (310,38,o), (194,38,cs) ); } ); width = 581; }, { anchors = ( { name = bottom; pos = (285,-10); }, { name = top; pos = (351,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (330,-12,o), (361,97,o), (361,97,c), (353,37,o), (389,0,o), (464,0,cs), (491,0,o), (532,6,o), (547,14,c), (560,124,l), (510,113,o), (498,128,o), (502,168,cs), (524,340,ls), (537,451,o), (468,520,o), (318,520,cs), (197,520,o), (114,459,o), (81,387,c), (181,342,l), (200,385,o), (241,412,o), (296,412,cs), (364,412,o), (396,383,o), (389,331,cs), (389,327,l), (172,327,o), (42,273,o), (26,144,cs), (15,51,o), (80,-12,o), (194,-12,cs) ); }, { closed = 1; nodes = ( (207,93,o), (162,109,o), (167,151,cs), (173,199,o), (206,239,o), (378,239,c), (374,206,ls), (364,124,o), (298,93,o), (228,93,cs) ); } ); width = 631; }, { anchors = ( { name = bottom; pos = (265,-10); }, { name = top; pos = (329,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (344,-12,o), (398,96,o), (398,96,c), (392,25,o), (428,0,o), (480,0,cs), (505,0,o), (519,4,o), (534,12,c), (543,80,l), (493,69,o), (481,87,o), (486,127,cs), (511,330,ls), (525,445,o), (459,512,o), (322,512,cs), (211,512,o), (143,462,o), (104,392,c), (169,356,l), (193,413,o), (255,442,o), (310,442,cs), (380,442,o), (437,414,o), (428,339,cs), (426,326,l), (170,326,o), (69,261,o), (55,141,cs), (43,49,o), (111,-12,o), (194,-12,cs) ); }, { closed = 1; nodes = ( (172,62,o), (131,96,o), (137,141,cs), (145,210,o), (194,260,o), (418,260,c), (414,225,ls), (401,120,o), (281,62,o), (219,62,cs) ); } ); width = 620; }, { associatedMasterId = m003; layerId = "75EC2996-E87C-4405-B059-48FBE7BE3912"; name = "6 May 24 at 07:51"; shapes = ( { closed = 1; nodes = ( (198,190,o), (236,239,o), (423,239,c), (423,208,ls), (423,126,o), (351,93,o), (281,93,cs), (245,93,o), (198,109,o), (198,142,cs) ); }, { closed = 1; nodes = ( (58,51,o), (131,-12,o), (245,-12,cs), (391,-12,o), (430,97,o), (430,97,c), (430,37,o), (469,0,o), (544,0,cs), (569,0,o), (613,4,o), (627,12,c), (627,107,l), (577,96,o), (563,114,o), (563,154,cs), (563,340,ls), (563,459,o), (444,520,o), (315,520,cs), (135,520,o), (71,393,o), (71,393,c), (175,339,l), (192,368,o), (237,405,o), (307,405,cs), (373,405,o), (423,366,o), (423,331,cs), (423,329,l), (187,329,o), (58,273,o), (58,144,cs) ); } ); width = 629; } ); }, { glyphname = aacute.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (176,0); ref = acutecomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 581; }, { layerId = m002; shapes = ( { pos = (201,0); ref = acutecomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (166,12); ref = acutecomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 610; } ); }, { glyphname = abreve.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (85,0); ref = brevecomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (112,0); ref = brevecomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (89,12); ref = brevecomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 610; } ); }, { glyphname = abreveacute.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-08 14:16:21 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (177,12); ref = brevecomb_acutecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (111,0); ref = brevecomb_acutecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (128,12); ref = brevecomb_acutecomb; } ); width = 620; } ); }, { glyphname = abrevedotbelow.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (222,-9); ref = dotbelowcomb; }, { pos = (151,12); ref = brevecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (215,-10); ref = dotbelowcomb; }, { pos = (134,0); ref = brevecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (221,-10); ref = dotbelowcomb; }, { pos = (154,0); ref = brevecomb; } ); width = 620; } ); }, { glyphname = abrevegrave.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-08 14:17:44 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (178,12); ref = brevecomb_gravecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (95,0); ref = brevecomb_gravecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (118,12); ref = brevecomb_gravecomb; } ); width = 620; } ); }, { glyphname = abrevehookabove.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (145,12); ref = brevecomb_hookabovecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (91,0); ref = brevecomb_hookabovecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (98,12); ref = brevecomb_hookabovecomb; } ); width = 620; } ); }, { glyphname = abrevetilde.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-08 14:17:09 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (175,12); ref = brevecomb_tildecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (74,0); ref = brevecomb_tildecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (100,0); ref = brevecomb_tildecomb; } ); width = 620; } ); }, { glyphname = acircumflex.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (105,0); ref = circumflexcomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (109,0); ref = circumflexcomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (84,12); ref = circumflexcomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 610; } ); }, { glyphname = acircumflexacute.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-08 14:16:50 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (171,12); ref = circumflexcomb_acutecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (27,0); ref = circumflexcomb_acutecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (49,12); ref = circumflexcomb_acutecomb; } ); width = 620; } ); }, { glyphname = acircumflexdotbelow.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (222,-9); ref = dotbelowcomb; }, { pos = (141,12); ref = circumflexcomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (215,-10); ref = dotbelowcomb; }, { pos = (145,0); ref = circumflexcomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (221,-10); ref = dotbelowcomb; }, { pos = (140,0); ref = circumflexcomb; } ); width = 620; } ); }, { glyphname = acircumflexgrave.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-08 14:17:48 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (171,13); ref = circumflexcomb_gravecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (169,0); ref = circumflexcomb_gravecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (173,12); ref = circumflexcomb_gravecomb; } ); width = 620; } ); }, { glyphname = acircumflexhookabove.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-08 14:24:33 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (170,12); ref = circumflexcomb_hookabovecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (172,0); ref = circumflexcomb_hookabovecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (176,12); ref = circumflexcomb_hookabovecomb; } ); width = 620; } ); }, { glyphname = acircumflextilde.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-08 14:34:31 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (146,12); ref = circumflexcomb_tildecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (177,12); ref = circumflexcomb_tildecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (180,12); ref = circumflexcomb_tildecomb; } ); width = 620; } ); }, { glyphname = adieresis.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (81,0); ref = dieresiscomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (71,0); ref = dieresiscomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (60,12); ref = dieresiscomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 610; } ); }, { glyphname = adotbelow.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (222,-9); ref = dotbelowcomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (215,-10); ref = dotbelowcomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (221,-10); ref = dotbelowcomb; } ); width = 620; } ); }, { glyphname = agrave.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (97,0); ref = gravecomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (110,0); ref = gravecomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (77,12); ref = gravecomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 610; } ); }, { glyphname = ahookabove.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-08 14:18:02 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (255,12); ref = hookabovecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (230,12); ref = hookabovecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (229,12); ref = hookabovecomb; } ); width = 620; } ); }, { glyphname = amacron.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (99,0); ref = macroncomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (82,0); ref = macroncomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (89,12); ref = macroncomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 610; } ); }, { glyphname = aogonek.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-01 09:09:20 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (349,14); ref = ogonekcomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (371,13); ref = ogonekcomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (372,14); ref = ogonekcomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 610; } ); }, { glyphname = aring.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (154,0); ref = ringcomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (144,0); ref = ringcomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (151,12); ref = ringcomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 610; } ); }, { glyphname = atilde.ss01; kernLeft = a2; kernRight = a2; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (65,0); ref = tildecomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (89,0); ref = tildecomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (53,12); ref = tildecomb; }, { pos = (-31,0); ref = a.ss01; } ); width = 610; } ); }, { glyphname = g.ss01; kernLeft = g2; kernRight = g2; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (222,-230); }, { name = top; pos = (301,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (389,-230,o), (477,-156,o), (490,-54,cs), (498,17,o), (440,77,o), (328,77,cs), (149,77,ls), (107,77,o), (97,109,o), (99,129,cs), (103,159,o), (134,182,o), (173,192,c), (130,218,l), (67,192,o), (46,157,o), (40,115,cs), (36,78,o), (59,44,o), (86,35,c), (19,16,o), (-5,-51,o), (-8,-74,cs), (-20,-173,o), (58,-230,o), (219,-230,cs) ); }, { closed = 1; nodes = ( (97,-180,o), (42,-140,o), (51,-69,cs), (56,-24,o), (103,27,o), (176,27,c), (315,27,l), (392,28,o), (438,-6,o), (431,-59,cs), (425,-110,o), (384,-180,o), (220,-180,cs) ); }, { closed = 1; nodes = ( (377,176,o), (462,243,o), (475,345,cs), (487,445,o), (418,512,o), (301,512,cs), (187,512,o), (100,445,o), (88,345,cs), (75,243,o), (146,176,o), (260,176,cs) ); }, { closed = 1; nodes = ( (177,226,o), (136,279,o), (144,345,cs), (152,409,o), (206,462,o), (295,462,cs), (385,462,o), (427,409,o), (419,345,cs), (411,279,o), (356,226,o), (266,226,cs) ); }, { closed = 1; nodes = ( (463,484,o), (520,508,o), (567,495,c), (574,553,l), (483,569,o), (435,516,o), (420,475,c), (446,455,l) ); } ); width = 562; }, { anchors = ( { name = bottom; pos = (242,-230); }, { name = top; pos = (323,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (449,-230,o), (533,-137,o), (546,-35,cs), (555,41,o), (494,104,o), (373,104,cs), (205,104,ls), (171,104,o), (151,112,o), (154,137,cs), (156,154,o), (170,160,o), (185,166,c), (126,226,l), (59,198,o), (34,161,o), (27,110,cs), (21,61,o), (41,28,o), (84,7,c), (29,-10,o), (1,-50,o), (-4,-92,cs), (-14,-167,o), (51,-230,o), (235,-230,cs) ); }, { closed = 1; nodes = ( (154,-117,o), (129,-90,o), (133,-55,cs), (136,-33,o), (163,-6,o), (200,-6,c), (340,-6,l), (381,-6,o), (405,-21,o), (401,-56,cs), (397,-91,o), (339,-117,o), (243,-117,cs) ); }, { closed = 1; nodes = ( (417,145,o), (515,226,o), (528,333,cs), (541,440,o), (463,520,o), (323,520,cs), (187,520,o), (87,440,o), (74,333,cs), (61,226,o), (141,145,o), (277,145,cs) ); }, { closed = 1; nodes = ( (229,257,o), (206,293,o), (211,333,cs), (215,372,o), (251,410,o), (309,410,c), (371,410,o), (395,372,o), (391,333,cs), (386,293,o), (352,257,o), (290,257,cs) ); }, { closed = 1; nodes = ( (511,471,o), (577,469,o), (605,456,c), (619,568,l), (528,584,o), (456,525,o), (447,480,c), (494,442,l) ); } ); width = 601; }, { anchors = ( { name = bottom; pos = (231,-230); }, { name = top; pos = (300,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (396,-230,o), (484,-156,o), (497,-54,cs), (506,22,o), (463,82,o), (333,82,cs), (157,82,ls), (115,82,o), (101,104,o), (104,129,cs), (108,159,o), (142,182,o), (181,192,c), (113,218,l), (50,192,o), (19,156,o), (14,114,cs), (10,77,o), (26,37,o), (67,16,c), (1,-3,o), (-24,-67,o), (-27,-93,cs), (-36,-167,o), (36,-230,o), (217,-230,cs) ); }, { closed = 1; nodes = ( (100,-154,o), (54,-114,o), (60,-69,cs), (65,-23,o), (111,6,o), (169,6,c), (319,6,l), (385,6,o), (417,-21,o), (411,-69,cs), (405,-114,o), (361,-154,o), (221,-154,cs) ); }, { closed = 1; nodes = ( (378,162,o), (469,236,o), (482,338,cs), (494,438,o), (421,512,o), (300,512,cs), (182,512,o), (89,438,o), (77,338,cs), (64,236,o), (139,162,o), (257,162,cs) ); }, { closed = 1; nodes = ( (184,238,o), (148,281,o), (155,338,cs), (162,393,o), (208,436,o), (291,436,cs), (376,436,o), (411,393,o), (404,338,cs), (397,281,o), (352,238,o), (267,238,cs) ); }, { closed = 1; nodes = ( (474,471,o), (534,473,o), (572,467,c), (582,555,l), (491,571,o), (435,520,o), (426,475,c), (458,442,l) ); } ); width = 580; }, { associatedMasterId = m01; layerId = "3EA75350-8DAD-4CD2-A32D-BF5A6E43F144"; name = "10 Aug 24 at 16:59"; shapes = ( { closed = 1; nodes = ( (443,-229,o), (522,-148,o), (522,-46,cs), (522,20,o), (479,87,o), (352,87,cs), (174,87,ls), (105,87,o), (113,176,o), (173,176,cs), (184,176,o), (255,176,o), (267,176,cs), (399,176,o), (469,247,o), (469,340,cs), (469,375,o), (457,419,o), (424,452,c), (437,481,o), (481,505,o), (530,492,c), (530,555,l), (437,571,o), (399,522,o), (395,477,c), (369,495,o), (335,512,o), (260,512,cs), (119,512,o), (56,420,o), (56,340,cs), (56,280,o), (86,222,o), (133,197,c), (97,193,o), (60,163,o), (60,126,cs), (60,85,o), (89,58,o), (122,49,c), (58,30,o), (37,-31,o), (37,-73,cs), (37,-172,o), (122,-229,o), (278,-229,cs) ); }, { closed = 1; nodes = ( (155,-179,o), (94,-137,o), (94,-66,cs), (94,-25,o), (116,22,o), (173,37,c), (345,37,l), (426,38,o), (464,-2,o), (464,-49,cs), (464,-100,o), (432,-179,o), (273,-179,cs) ); }, { closed = 1; nodes = ( (154,225,o), (114,275,o), (114,344,cs), (114,408,o), (154,463,o), (259,463,cs), (368,463,o), (411,408,o), (411,345,cs), (411,275,o), (368,225,o), (259,225,cs) ); } ); width = 562; }, { associatedMasterId = m002; layerId = "C08E6C22-B8C2-4688-8674-8526B1088BC5"; name = "10 Aug 24 at 17:56"; shapes = ( { closed = 0; nodes = ( (408,480,l), (390,494,o), (346,512,o), (262,512,cs), (116,512,o), (49,424,o), (49,337,cs), (49,280,o), (83,223,o), (130,198,c), (94,194,o), (55,160,o), (55,123,cs), (55,87,o), (79,60,o), (113,48,c), (54,27,o), (30,-31,o), (30,-73,cs), (30,-172,o), (117,-229,o), (275,-229,cs), (453,-229,o), (532,-148,o), (532,-46,cs), (532,20,o), (496,98,o), (367,98,cs), (192,98,ls), (130,98,o), (124,177,o), (200,177,cs), (211,177,o), (257,177,o), (269,177,cs), (404,177,o), (478,246,o), (479,340,cs), (479,375,o), (467,417,o), (444,447,c) ); }, { closed = 1; nodes = ( (155,-154,o), (108,-122,o), (108,-59,cs), (108,-22,o), (134,16,o), (177,26,c), (359,26,l), (431,26,o), (453,-2,o), (454,-49,cs), (455,-100,o), (416,-154,o), (275,-154,cs) ); }, { closed = 1; nodes = ( (163,247,o), (127,289,o), (127,344,cs), (127,397,o), (163,442,o), (261,442,cs), (365,442,o), (401,398,o), (401,345,cs), (401,287,o), (365,247,o), (261,247,cs) ); } ); width = 580; }, { associatedMasterId = m003; layerId = "F79AD273-4246-4744-B8B8-59AC46FF7D92"; name = "10 Aug 24 at 19:33"; shapes = ( { closed = 1; nodes = ( (475,-229,o), (587,-151,o), (587,-46,cs), (587,20,o), (551,111,o), (394,111,cs), (218,111,ls), (174,111,o), (175,166,o), (218,166,cs), (229,166,o), (286,166,o), (298,166,cs), (435,166,o), (534,242,o), (534,340,cs), (534,375,o), (529,414,o), (506,444,c), (519,473,o), (574,469,o), (603,456,c), (603,568,l), (510,584,o), (458,533,o), (454,488,c), (436,502,o), (373,520,o), (291,520,cs), (129,520,o), (51,432,o), (51,337,cs), (51,266,o), (89,220,o), (136,195,c), (100,191,o), (55,164,o), (55,116,cs), (55,75,o), (83,46,o), (116,37,c), (57,16,o), (32,-30,o), (32,-72,cs), (32,-171,o), (152,-229,o), (304,-229,cs) ); }, { closed = 1; nodes = ( (211,-119,o), (172,-96,o), (172,-59,cs), (172,-21,o), (200,1,o), (234,1,cs), (323,1,ls), (402,1,o), (446,-4,o), (446,-51,cs), (446,-94,o), (394,-119,o), (304,-119,cs) ); }, { closed = 1; nodes = ( (230,275,o), (191,298,o), (191,343,cs), (191,387,o), (230,411,o), (290,411,cs), (357,411,o), (394,386,o), (394,343,cs), (394,297,o), (357,275,o), (290,275,cs) ); } ); width = 633; } ); }, { glyphname = gbreve.ss01; kernLeft = g2; kernRight = g2; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g.ss01; }, { pos = (124,0); ref = brevecomb; } ); width = 562; }, { layerId = m002; shapes = ( { ref = g.ss01; }, { pos = (125,0); ref = brevecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = g.ss01; }, { pos = (123,12); ref = brevecomb; } ); width = 601; } ); }, { glyphname = gcommaaccent.ss01; kernLeft = g2; kernRight = g2; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g.ss01; }, { pos = (186,0); ref = commaturnedabovecomb; } ); width = 562; }, { layerId = m002; shapes = ( { ref = g.ss01; }, { pos = (160,0); ref = commaturnedabovecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = g.ss01; }, { pos = (176,12); ref = commaturnedabovecomb; } ); width = 601; } ); }, { glyphname = gdotaccent.ss01; kernLeft = g2; kernRight = g2; lastChange = "2025-01-08 14:19:43 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g.ss01; }, { pos = (203,0); ref = dotaccentcomb; } ); width = 562; }, { layerId = m002; shapes = ( { ref = g.ss01; }, { pos = (194,0); ref = dotaccentcomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = g.ss01; }, { pos = (196,12); ref = dotaccentcomb; } ); width = 601; } ); }, { glyphname = gmacron.ss01; kernLeft = g2; kernRight = g2; lastChange = "2025-01-08 14:20:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g.ss01; }, { pos = (136,0); ref = macroncomb; } ); width = 562; }, { layerId = m002; shapes = ( { ref = g.ss01; }, { pos = (93,0); ref = macroncomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = g.ss01; }, { pos = (120,9); ref = macroncomb; } ); width = 601; } ); }, { glyphname = ordfeminine; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (185,370); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (235,370,o), (268,441,o), (268,441,c), (265,395,o), (291,378,o), (324,378,cs), (340,378,o), (349,381,o), (359,386,c), (365,441,l), (333,433,o), (325,445,o), (328,471,cs), (343,594,ls), (352,668,o), (310,712,o), (221,712,cs), (148,712,o), (107,681,o), (76,637,c), (114,604,l), (134,634,o), (165,657,o), (212,657,cs), (255,657,o), (292,634,o), (288,599,cs), (287,591,l), (121,591,o), (57,549,o), (47,471,cs), (40,410,o), (83,370,o), (137,370,cs) ); }, { closed = 1; nodes = ( (349,307,l), (29,308,l), (22,249,l), (342,248,l) ); }, { closed = 1; nodes = ( (123,426,o), (102,444,o), (105,471,cs), (110,514,o), (139,541,o), (281,541,c), (279,526,ls), (272,466,o), (198,426,o), (157,426,cs) ); } ); width = 362; }, { guides = ( { pos = (182,354); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (244,353,o), (268,427,o), (268,427,c), (264,379,o), (292,361,o), (337,361,cs), (354,361,o), (364,364,o), (374,370,c), (382,435,l), (349,427,o), (339,440,o), (343,467,cs), (358,588,ls), (367,666,o), (323,712,o), (229,712,cs), (158,712,o), (110,684,o), (78,637,c), (120,595,l), (133,615,o), (170,644,o), (218,644,cs), (263,644,o), (291,620,o), (288,593,cs), (287,585,l), (113,585,o), (55,533,o), (46,459,cs), (38,395,o), (80,353,o), (141,353,cs) ); }, { closed = 1; nodes = ( (366,307,l), (27,308,l), (18,232,l), (357,231,l) ); }, { closed = 1; nodes = ( (133,421,o), (114,434,o), (117,462,cs), (121,491,o), (144,523,o), (280,523,c), (278,508,ls), (271,454,o), (206,421,o), (163,421,cs) ); } ); width = 379; }, { guides = ( { pos = (201,349); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (244,349,o), (277,420,o), (277,420,c), (272,380,o), (303,357,o), (355,357,cs), (375,357,o), (402,361,o), (413,367,c), (422,442,l), (387,434,o), (378,445,o), (382,472,cs), (396,589,ls), (405,665,o), (351,712,o), (252,712,cs), (189,712,o), (130,692,o), (86,637,c), (143,580,l), (157,600,o), (194,621,o), (236,621,cs), (276,621,o), (300,602,o), (297,581,cs), (297,578,l), (143,580,o), (67,537,o), (57,456,cs), (49,393,o), (81,349,o), (160,349,cs) ); }, { closed = 1; nodes = ( (406,308,l), (37,308,l), (23,198,l), (392,198,l) ); }, { closed = 1; nodes = ( (183,439,o), (166,448,o), (168,467,cs), (171,487,o), (197,501,o), (286,501,c), (286,497,ls), (282,466,o), (252,439,o), (218,439,cs) ); } ); width = 429; } ); unicode = 170; }, { glyphname = ordmasculine; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (169,370); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (21,249,l), (317,248,l), (324,307,l), (28,308,l) ); }, { closed = 1; nodes = ( (267,370,o), (342,429,o), (356,541,cs), (369,653,o), (309,712,o), (226,712,cs), (143,712,o), (67,653,o), (54,541,cs), (40,429,o), (101,370,o), (184,370,cs) ); }, { closed = 1; nodes = ( (133,427,o), (104,470,o), (113,540,cs), (121,610,o), (161,656,o), (219,656,cs), (277,656,o), (305,611,o), (297,541,cs), (288,471,o), (249,427,o), (191,427,cs) ); } ); width = 338; }, { guides = ( { pos = (181,354); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (18,232,l), (340,231,l), (349,307,l), (27,308,l) ); }, { closed = 1; nodes = ( (284,354,o), (362,416,o), (377,533,cs), (391,650,o), (328,712,o), (238,712,cs), (148,712,o), (69,650,o), (55,533,cs), (40,416,o), (104,354,o), (194,354,c) ); }, { closed = 1; nodes = ( (147,428,o), (120,468,o), (128,532,cs), (135,596,o), (173,639,o), (229,639,cs), (285,639,o), (312,597,o), (304,533,cs), (296,469,o), (259,428,o), (203,428,c) ); } ); width = 362; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (18,198,l), (371,198,l), (385,308,l), (32,308,l) ); }, { closed = 1; nodes = ( (304,349,o), (402,405,o), (417,530,cs), (432,657,o), (352,712,o), (258,712,cs), (170,712,o), (69,657,o), (54,530,cs), (39,405,o), (121,349,o), (214,349,cs) ); }, { closed = 1; nodes = ( (187,456,o), (169,485,o), (175,530,cs), (180,575,o), (206,605,o), (245,605,cs), (287,605,o), (301,575,o), (296,530,cs), (290,485,o), (269,456,o), (227,456,c) ); } ); width = 403; } ); unicode = 186; }, { glyphname = zero; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (475,-13,o), (560,171,o), (583,354,cs), (606,547,o), (562,712,o), (370,712,cs), (177,712,o), (90,547,o), (67,354,cs), (44,171,o), (86,-13,o), (281,-13,cs) ); }, { closed = 1; nodes = ( (149,42,o), (107,177,o), (129,355,cs), (151,536,o), (225,657,o), (364,657,cs), (497,657,o), (543,536,o), (521,355,cs), (499,177,o), (421,42,o), (287,42,cs) ); }, { closed = 1; nodes = ( (189,68,l), (528,635,l), (463,635,l), (124,68,l) ); } ); width = 624; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (475,-13,o), (566,171,o), (589,354,cs), (612,547,o), (562,712,o), (370,712,cs), (176,712,o), (84,547,o), (61,354,cs), (38,171,o), (85,-13,o), (281,-13,cs) ); }, { closed = 1; nodes = ( (167,67,o), (133,197,o), (153,355,cs), (173,516,o), (236,632,o), (361,632,cs), (480,632,o), (517,516,o), (497,355,cs), (477,197,o), (411,67,o), (291,67,cs) ); }, { closed = 1; nodes = ( (209,75,l), (534,625,l), (444,625,l), (119,75,l) ); } ); width = 624; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (505,-13,o), (614,161,o), (637,354,cs), (662,557,o), (592,712,o), (396,712,cs), (197,712,o), (89,557,o), (64,354,cs), (41,161,o), (106,-13,o), (307,-13,c) ); }, { closed = 1; nodes = ( (219,117,o), (187,213,o), (204,355,cs), (222,500,o), (276,582,o), (381,582,cs), (480,582,o), (515,500,o), (497,355,cs), (480,213,o), (423,117,o), (323,117,cs) ); }, { closed = 1; nodes = ( (261,86,l), (571,610,l), (441,610,l), (131,86,l) ); } ); width = 677; } ); unicode = 48; }, { glyphname = one; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (338,0,l), (345,57,l), (218,57,l), (297,699,l), (250,699,l), (236,586,o), (216,563,o), (98,563,c), (92,512,l), (214,512,l), (158,57,l), (31,57,l), (24,0,l) ); } ); width = 424; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (372,0,l), (382,80,l), (249,80,l), (325,699,l), (250,699,l), (239,606,o), (212,592,o), (102,592,c), (92,512,l), (214,512,l), (161,80,l), (34,80,l), (24,0,l) ); } ); width = 458; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (428,0,l), (443,126,l), (314,126,l), (385,699,l), (252,699,l), (240,606,o), (216,592,o), (99,592,c), (83,467,l), (210,467,l), (168,126,l), (37,126,l), (22,0,l) ); } ); width = 512; } ); unicode = 49; }, { glyphname = two; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (437,1,l), (444,57,l), (104,57,l), (133,290,o), (459,283,o), (489,528,cs), (504,647,o), (422,712,o), (307,712,cs), (247,712,o), (170,677,o), (127,615,cs), (109,589,o), (95,555,o), (91,519,c), (151,519,l), (158,576,o), (209,656,o), (302,656,cs), (418,656,o), (436,584,o), (429,528,cs), (406,337,o), (69,306,o), (40,73,cs), (31,1,l) ); } ); width = 533; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (455,1,l), (465,81,l), (132,81,l), (156,277,o), (479,284,o), (509,528,cs), (524,647,o), (441,712,o), (326,712,c), (246,712,o), (169,677,o), (126,615,c), (108,589,o), (94,555,o), (90,519,c), (178,519,l), (185,576,o), (237,632,o), (315,632,c), (393,632,o), (430,584,o), (423,528,cs), (399,335,o), (70,332,o), (39,81,cs), (29,1,l) ); } ); width = 546; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (488,1,l), (503,127,l), (199,127,l), (215,253,o), (511,276,o), (540,518,cs), (556,642,o), (456,712,o), (335,712,c), (228,712,o), (161,677,o), (117,615,c), (92,579,o), (82,523,o), (78,487,c), (224,487,l), (230,538,o), (256,582,o), (318,582,cs), (370,582,o), (389,542,o), (385,509,cs), (365,341,o), (66,332,o), (38,107,cs), (25,1,l) ); } ); width = 574; } ); unicode = 50; }, { glyphname = three; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (385,-12,o), (487,69,o), (504,208,cs), (518,324,o), (461,423,o), (314,423,c), (534,639,l), (541,700,l), (130,700,l), (123,644,l), (461,644,l), (233,423,l), (227,370,l), (277,370,ls), (399,370,o), (455,309,o), (443,212,cs), (433,128,o), (372,44,o), (247,44,cs), (154,44,o), (112,88,o), (103,167,cs), (101,179,o), (101,198,o), (102,210,c), (42,203,l), (40,182,o), (40,162,o), (43,144,cs), (58,44,o), (135,-12,o), (240,-12,cs) ); } ); width = 568; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (378,-12,o), (500,71,o), (517,210,cs), (533,337,o), (465,423,o), (342,423,c), (541,615,l), (551,700,l), (124,700,l), (114,620,l), (435,620,l), (224,423,l), (216,355,l), (295,355,ls), (395,355,o), (436,299,o), (425,212,cs), (415,128,o), (349,68,o), (260,68,cs), (187,68,o), (131,94,o), (121,173,c), (119,185,o), (119,198,o), (120,210,c), (29,203,l), (27,182,o), (27,162,o), (29,144,c), (44,43,o), (134,-12,o), (243,-12,cs) ); } ); width = 575; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (422,-12,o), (530,79,o), (547,218,cs), (562,347,o), (488,414,o), (397,423,c), (558,574,l), (574,700,l), (128,700,l), (112,574,l), (401,574,l), (236,423,l), (223,318,l), (299,318,ls), (370,318,o), (410,288,o), (401,215,cs), (394,153,o), (336,118,o), (276,118,cs), (212,118,o), (180,144,o), (171,197,c), (169,209,o), (169,222,o), (171,234,c), (35,203,l), (32,182,o), (33,162,o), (34,144,c), (49,43,o), (141,-12,o), (264,-12,cs) ); } ); width = 598; } ); unicode = 51; }, { glyphname = four; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (406,1,l), (423,140,l), (540,140,l), (548,200,l), (431,200,l), (492,701,l), (427,701,l), (39,205,l), (31,140,l), (363,140,l), (346,1,l) ); }, { closed = 1; nodes = ( (420,602,l), (371,200,l), (109,200,l) ); } ); width = 599; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (421,1,l), (437,131,l), (557,131,l), (567,212,l), (447,212,l), (507,701,l), (416,701,l), (40,212,l), (31,132,l), (350,132,l), (333,1,l) ); }, { closed = 1; nodes = ( (402,559,l), (359,212,l), (135,212,l) ); } ); width = 612; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (484,1,l), (499,121,l), (606,121,l), (621,248,l), (514,248,l), (570,701,l), (406,701,l), (43,238,l), (29,121,l), (353,121,l), (338,1,l) ); }, { closed = 1; nodes = ( (400,504,l), (368,248,l), (201,248,l) ); } ); width = 661; } ); unicode = 52; }, { glyphname = five; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (392,-12,o), (503,77,o), (522,234,cs), (541,387,o), (456,469,o), (328,469,cs), (271,469,o), (203,445,o), (179,409,c), (239,640,l), (517,640,l), (524,700,l), (197,700,l), (111,366,l), (184,347,l), (211,386,o), (257,413,o), (309,413,cs), (424,413,o), (472,330,o), (460,234,cs), (447,126,o), (378,44,o), (265,44,cs), (177,44,o), (119,106,o), (116,187,c), (46,163,l), (59,49,o), (148,-12,o), (257,-12,cs) ); } ); width = 569; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (398,-12,o), (521,77,o), (540,234,cs), (559,387,o), (462,469,o), (334,469,cs), (277,469,o), (220,448,o), (194,417,c), (243,620,l), (535,620,l), (545,700,l), (186,700,l), (97,343,l), (182,322,l), (209,361,o), (255,388,o), (307,388,cs), (398,388,o), (460,330,o), (448,234,cs), (435,126,o), (363,68,o), (274,68,cs), (200,68,o), (151,123,o), (146,195,c), (52,163,l), (65,49,o), (154,-12,o), (263,-12,cs) ); } ); width = 597; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (429,-12,o), (552,86,o), (572,243,cs), (590,396,o), (495,487,o), (357,487,cs), (306,487,o), (257,472,o), (243,461,c), (278,574,l), (557,574,l), (573,700,l), (184,700,l), (83,333,l), (208,302,l), (226,338,o), (266,367,o), (318,367,cs), (382,367,o), (432,325,o), (422,243,cs), (414,178,o), (359,118,o), (297,118,cs), (230,118,o), (195,155,o), (190,216,c), (47,172,l), (58,74,o), (134,-12,o), (284,-12,cs) ); } ); width = 616; } ); unicode = 53; }, { glyphname = six; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (399,-12,o), (502,90,o), (519,229,cs), (536,367,o), (457,462,o), (331,462,cs), (272,462,o), (236,444,o), (222,429,c), (383,700,l), (313,700,l), (142,420,ls), (111,370,o), (70,308,o), (60,226,cs), (43,87,o), (122,-12,o), (265,-12,cs) ); }, { closed = 1; nodes = ( (158,44,o), (109,116,o), (122,226,cs), (135,330,o), (202,406,o), (313,406,cs), (418,406,o), (469,324,o), (457,226,cs), (443,110,o), (374,44,o), (273,44,cs) ); } ); width = 567; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (404,-12,o), (503,97,o), (520,233,cs), (536,368,o), (458,474,o), (322,474,cs), (288,474,o), (242,464,o), (228,449,c), (378,700,l), (278,700,l), (120,426,ls), (90,376,o), (45,288,o), (38,231,cs), (21,92,o), (94,-12,o), (248,-12,cs) ); }, { closed = 1; nodes = ( (161,68,o), (119,147,o), (130,234,cs), (139,309,o), (201,393,o), (295,393,cs), (411,393,o), (437,310,o), (428,234,cs), (417,147,o), (364,68,o), (259,68,cs) ); } ); width = 561; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (426,-12,o), (543,94,o), (560,233,cs), (577,371,o), (506,477,o), (365,477,cs), (319,477,o), (290,460,o), (290,460,c), (431,700,l), (279,700,l), (121,434,ls), (82,367,o), (56,298,o), (48,233,cs), (31,94,o), (113,-12,o), (275,-12,cs) ); }, { closed = 1; nodes = ( (211,109,o), (186,170,o), (194,237,cs), (201,291,o), (242,356,o), (318,356,cs), (402,356,o), (423,291,o), (416,237,cs), (408,170,o), (371,109,o), (291,109,cs) ); } ); width = 600; } ); unicode = 54; }, { glyphname = seven; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (188,1,l), (507,646,l), (513,700,l), (100,700,l), (93,644,l), (441,644,l), (123,1,l) ); } ); width = 493; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (197,1,l), (519,622,l), (528,700,l), (90,700,l), (80,620,l), (419,620,l), (98,1,l) ); } ); width = 486; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (231,1,l), (531,574,l), (547,700,l), (90,700,l), (74,574,l), (393,574,l), (88,1,l) ); } ); width = 502; } ); unicode = 55; }, { glyphname = eight; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (408,-12,o), (524,64,o), (541,203,cs), (551,286,o), (504,348,o), (445,384,c), (491,416,o), (537,465,o), (545,530,cs), (560,649,o), (479,712,o), (358,712,cs), (239,712,o), (141,649,o), (126,530,cs), (118,465,o), (154,415,o), (190,384,c), (124,348,o), (62,286,o), (52,203,cs), (35,64,o), (131,-12,o), (270,-12,cs) ); }, { closed = 1; nodes = ( (154,44,o), (104,123,o), (114,203,cs), (123,278,o), (188,350,o), (313,350,cs), (438,350,o), (488,278,o), (479,203,cs), (469,123,o), (403,44,o), (278,44,cs) ); }, { closed = 1; nodes = ( (216,401,o), (180,465,o), (188,530,cs), (195,586,o), (244,656,o), (350,656,cs), (456,656,o), (490,586,o), (483,530,cs), (475,465,o), (425,401,o), (321,401,cs) ); } ); width = 605; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (411,-12,o), (529,64,o), (546,203,cs), (556,286,o), (521,348,o), (462,384,c), (508,416,o), (542,465,o), (550,530,cs), (565,649,o), (484,712,o), (355,712,cs), (228,712,o), (130,649,o), (115,530,cs), (107,465,o), (131,415,o), (167,384,c), (101,348,o), (51,286,o), (41,203,cs), (24,64,o), (122,-12,o), (267,-12,cs) ); }, { closed = 1; nodes = ( (178,68,o), (123,123,o), (133,203,cs), (142,278,o), (206,340,o), (309,340,cs), (412,340,o), (463,278,o), (454,203,cs), (444,123,o), (379,68,o), (278,68,cs) ); }, { closed = 1; nodes = ( (233,418,o), (195,465,o), (203,530,cs), (210,586,o), (256,636,o), (344,636,cs), (432,636,o), (469,586,o), (462,530,cs), (454,465,o), (406,418,o), (320,418,cs) ); } ); width = 600; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (445,-12,o), (576,74,o), (592,203,cs), (602,286,o), (567,348,o), (508,384,c), (554,416,o), (588,465,o), (596,530,cs), (609,639,o), (529,712,o), (381,712,cs), (236,712,o), (136,639,o), (123,530,cs), (115,465,o), (139,415,o), (175,384,c), (109,348,o), (59,286,o), (49,203,cs), (33,74,o), (133,-12,o), (293,-12,cs) ); }, { closed = 1; nodes = ( (227,116,o), (197,157,o), (204,212,cs), (210,260,o), (250,306,o), (331,306,cs), (420,306,o), (445,260,o), (439,212,cs), (432,157,o), (397,116,o), (310,116,cs) ); }, { closed = 1; nodes = ( (300,433,o), (264,458,o), (271,512,cs), (275,550,o), (316,584,o), (365,584,cs), (413,584,o), (448,550,o), (444,512,cs), (437,458,o), (394,433,o), (348,433,cs) ); } ); width = 653; } ); unicode = 56; }, { glyphname = nine; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (213,712,o), (109,610,o), (92,471,cs), (75,333,o), (155,238,o), (281,238,cs), (340,238,o), (376,256,o), (390,271,c), (228,0,l), (298,0,l), (470,280,ls), (501,330,o), (541,392,o), (552,474,cs), (569,613,o), (490,712,o), (347,712,cs) ); }, { closed = 1; nodes = ( (454,656,o), (503,584,o), (490,474,cs), (477,370,o), (409,294,o), (298,294,cs), (193,294,o), (142,376,o), (155,474,cs), (169,590,o), (238,656,o), (339,656,cs) ); } ); width = 587; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (182,712,o), (82,603,o), (66,467,cs), (49,328,o), (128,222,o), (264,222,cs), (298,222,o), (343,232,o), (357,247,c), (207,0,l), (307,0,l), (465,270,ls), (495,320,o), (540,408,o), (548,469,cs), (565,608,o), (492,712,o), (338,712,cs) ); }, { closed = 1; nodes = ( (425,632,o), (466,553,o), (456,466,cs), (446,386,o), (385,303,o), (291,303,cs), (175,303,o), (148,386,o), (158,466,cs), (168,553,o), (222,632,o), (327,632,cs) ); } ); width = 561; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (215,712,o), (98,606,o), (81,467,cs), (64,324,o), (135,223,o), (276,223,cs), (322,223,o), (351,240,o), (351,240,c), (211,0,l), (363,0,l), (521,271,ls), (560,338,o), (586,407,o), (593,467,cs), (610,606,o), (528,712,o), (366,712,cs) ); }, { closed = 1; nodes = ( (430,591,o), (457,535,o), (448,468,cs), (442,414,o), (400,344,o), (324,344,cs), (240,344,o), (220,414,o), (226,468,cs), (235,535,o), (270,591,o), (350,591,cs) ); } ); width = 597; } ); unicode = 57; }, { glyphname = space; lastChange = "2025-01-08 15:07:06 +0000"; layers = ( { layerId = m01; width = 300; }, { layerId = m002; width = 300; }, { layerId = m003; width = 300; } ); unicode = 32; }, { glyphname = nbspace; lastChange = "2025-01-08 15:07:17 +0000"; layers = ( { layerId = m01; width = 300; }, { layerId = m002; width = 300; }, { layerId = m003; width = 300; } ); metricWidth = space; unicode = 160; }, { glyphname = .notdef; lastChange = "2025-01-08 15:06:31 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (476,-150,l), (584,730,l), (126,730,l), (18,-150,l) ); }, { closed = 1; nodes = ( (177,678,l), (523,678,l), (425,-98,l), (79,-98,l) ); } ); width = 600; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (477,-150,l), (587,730,l), (129,730,l), (19,-150,l) ); }, { closed = 1; nodes = ( (202,652,l), (490,652,l), (404,-72,l), (116,-72,l) ); } ); width = 600; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (492,-150,l), (595,730,l), (107,730,l), (4,-150,l) ); }, { closed = 1; nodes = ( (229,602,l), (447,602,l), (370,-22,l), (152,-22,l) ); } ); width = 600; } ); }, { glyphname = period; kernLeft = "."; kernRight = "."; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (132,-12,o), (157,10,o), (160,37,cs), (163,66,o), (144,88,o), (116,88,cs), (88,88,o), (62,66,o), (59,37,cs), (56,10,o), (76,-12,o), (104,-12,cs) ); } ); width = 271; }, { associatedMasterId = m01; layerId = "2626C257-C8D1-4BEC-A76B-04061BD798F2"; name = foreground; width = 309; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (149,-12,o), (182,18,o), (186,53,cs), (190,89,o), (165,119,o), (130,119,cs), (94,119,o), (60,89,o), (56,53,cs), (52,18,o), (78,-12,o), (114,-12,cs) ); } ); width = 290; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (185,-16,o), (231,24,o), (237,74,cs), (243,122,o), (207,161,o), (159,161,cs), (110,161,o), (64,122,o), (58,74,cs), (52,24,o), (88,-16,o), (137,-16,cs) ); } ); width = 328; } ); unicode = 46; }, { glyphname = comma; kernLeft = "."; kernRight = "."; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (95,-92,o), (138,-35,o), (146,27,cs), (150,62,o), (136,88,o), (99,88,cs), (70,88,o), (48,63,o), (45,38,cs), (42,14,o), (60,-7,o), (85,-7,cs), (86,-7,o), (90,-7,o), (91,-7,c), (85,-58,o), (32,-69,o), (32,-69,c), (32,-69,o), (28,-92,o), (29,-92,cs) ); } ); width = 244; }, { associatedMasterId = m01; layerId = "7090993E-1050-418C-BDF4-9BE23E3E6164"; name = foreground; shapes = ( { closed = 1; nodes = ( (132,0,o), (136,0,o), (139,1,c), (139,-76,o), (60,-92,o), (60,-92,c), (60,-92,o), (59,-131,o), (60,-131,cs), (171,-131,o), (214,-21,o), (214,50,c), (214,94,o), (190,142,o), (131,142,cs), (91,142,o), (60,105,o), (60,67,cs), (60,32,o), (92,0,o), (129,0,cs) ); } ); width = 274; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (103,-119,o), (150,-26,o), (159,38,c), (164,76,o), (150,119,o), (96,119,cs), (59,119,o), (30,86,o), (26,53,cs), (22,21,o), (47,-7,o), (78,-7,cs), (80,-7,o), (84,-7,o), (88,-6,c), (79,-74,o), (8,-89,o), (8,-89,c), (8,-89,o), (4,-119,o), (5,-119,cs) ); } ); width = 235; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (133,-144,o), (195,-21,o), (205,58,cs), (211,106,o), (191,160,o), (126,160,cs), (77,160,o), (41,118,o), (36,76,cs), (31,37,o), (60,2,o), (104,2,cs), (108,2,o), (113,2,o), (116,3,c), (106,-83,o), (14,-101,o), (14,-101,c), (14,-101,o), (8,-144,o), (9,-144,cs) ); } ); width = 293; } ); unicode = 44; }, { glyphname = colon; kernLeft = colon; kernRight = colon; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (151,-12,o), (176,10,o), (179,37,cs), (182,66,o), (163,88,o), (135,88,cs), (107,88,o), (81,66,o), (78,37,cs), (75,10,o), (95,-12,o), (123,-12,cs) ); }, { closed = 1; nodes = ( (196,354,o), (220,376,o), (224,403,cs), (227,432,o), (208,454,o), (180,454,cs), (152,454,o), (126,432,o), (123,403,cs), (119,376,o), (140,354,o), (168,354,cs) ); } ); width = 309; }, { associatedMasterId = m01; layerId = "1129757A-F034-4623-96F5-2C126444C93D"; name = foreground; shapes = ( { closed = 1; nodes = ( (196,-12,o), (229,23,o), (229,62,cs), (229,104,o), (196,139,o), (156,139,cs), (115,139,o), (80,104,o), (80,62,cs), (80,23,o), (115,-12,o), (156,-12,cs) ); }, { closed = 1; nodes = ( (196,289,o), (229,324,o), (229,363,cs), (229,405,o), (196,440,o), (156,440,cs), (115,440,o), (80,405,o), (80,363,cs), (80,324,o), (115,289,o), (156,289,cs) ); } ); width = 309; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (159,-12,o), (192,18,o), (196,53,cs), (200,89,o), (175,119,o), (140,119,cs), (104,119,o), (70,89,o), (66,53,cs), (62,18,o), (88,-12,o), (124,-12,cs) ); }, { closed = 1; nodes = ( (203,349,o), (236,379,o), (240,414,cs), (245,450,o), (219,480,o), (184,480,cs), (148,480,o), (115,450,o), (110,414,cs), (106,379,o), (132,349,o), (168,349,cs) ); } ); width = 310; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (181,-12,o), (225,27,o), (231,75,cs), (237,122,o), (202,160,o), (155,160,cs), (107,160,o), (64,122,o), (58,75,cs), (52,27,o), (86,-12,o), (134,-12,cs) ); }, { closed = 1; nodes = ( (223,329,o), (267,368,o), (273,416,cs), (279,463,o), (244,501,o), (197,501,cs), (149,501,o), (106,463,o), (100,416,cs), (94,368,o), (128,329,o), (176,329,cs) ); } ); width = 333; } ); unicode = 58; }, { glyphname = semicolon; kernLeft = colon; kernRight = colon; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (108,-92,o), (151,-35,o), (159,27,cs), (163,62,o), (149,88,o), (112,88,cs), (83,88,o), (61,63,o), (58,38,cs), (55,14,o), (73,-7,o), (98,-7,cs), (99,-7,o), (103,-7,o), (104,-7,c), (98,-58,o), (45,-69,o), (45,-69,c), (45,-69,o), (41,-92,o), (42,-92,cs) ); }, { closed = 1; nodes = ( (177,354,o), (201,376,o), (205,403,cs), (208,432,o), (189,454,o), (161,454,cs), (133,454,o), (107,432,o), (104,403,cs), (100,376,o), (121,354,o), (149,354,cs) ); } ); width = 270; }, { associatedMasterId = m01; layerId = "7C7B3130-D28B-462C-85A7-59917ACED75E"; name = foreground; shapes = ( { closed = 1; nodes = ( (180,289,o), (213,324,o), (213,363,cs), (213,405,o), (180,440,o), (140,440,cs), (99,440,o), (64,405,o), (64,363,cs), (64,324,o), (99,289,o), (140,289,cs) ); }, { closed = 1; nodes = ( (132,0,o), (136,0,o), (139,1,c), (139,-76,o), (60,-92,o), (60,-92,c), (60,-92,o), (59,-131,o), (60,-131,cs), (171,-131,o), (214,-21,o), (214,50,c), (214,94,o), (190,142,o), (131,142,cs), (91,142,o), (60,105,o), (60,67,cs), (60,32,o), (92,0,o), (129,0,cs) ); } ); width = 274; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (126,-119,o), (173,-26,o), (182,38,c), (187,76,o), (173,119,o), (119,119,cs), (82,119,o), (53,86,o), (49,53,cs), (45,21,o), (70,-7,o), (101,-7,cs), (103,-7,o), (107,-7,o), (111,-6,c), (102,-74,o), (31,-89,o), (31,-89,c), (31,-89,o), (27,-119,o), (28,-119,cs) ); }, { closed = 1; nodes = ( (189,349,o), (222,379,o), (226,414,cs), (231,450,o), (205,480,o), (170,480,cs), (134,480,o), (101,450,o), (96,414,cs), (92,379,o), (118,349,o), (154,349,cs) ); } ); width = 265; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (156,-144,o), (218,-21,o), (228,58,cs), (234,106,o), (214,160,o), (149,160,cs), (100,160,o), (64,118,o), (59,76,cs), (54,37,o), (83,2,o), (127,2,cs), (131,2,o), (136,2,o), (139,3,c), (129,-83,o), (37,-101,o), (37,-101,c), (37,-101,o), (31,-144,o), (32,-144,cs) ); }, { closed = 1; nodes = ( (223,329,o), (267,368,o), (273,416,cs), (279,463,o), (244,501,o), (197,501,cs), (149,501,o), (106,463,o), (100,416,cs), (94,368,o), (128,329,o), (176,329,cs) ); } ); width = 333; } ); unicode = 59; }, { glyphname = ellipsis; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (199,0); ref = period; }, { pos = (429,0); ref = period; }, { pos = (-31,0); ref = period; } ); width = 770; }, { layerId = m002; shapes = ( { pos = (199,0); ref = period; }, { pos = (429,0); ref = period; }, { pos = (-31,0); ref = period; } ); width = 764; }, { layerId = m003; shapes = ( { pos = (231,0); ref = period; }, { pos = (506,0); ref = period; }, { pos = (-46,0); ref = period; } ); width = 876; } ); unicode = 8230; }, { glyphname = exclam; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (167,162,l), (247,700,l), (172,700,l), (123,162,l) ); }, { closed = 1; nodes = ( (149,-12,o), (174,10,o), (177,36,cs), (180,64,o), (161,85,o), (134,85,cs), (107,85,o), (82,64,o), (79,36,cs), (76,10,o), (95,-12,o), (122,-12,cs) ); } ); width = 308; }, { associatedMasterId = m01; layerId = "A93029F6-5A44-47E5-8EBB-60AEDDECB850"; name = foreground; shapes = ( { closed = 1; nodes = ( (205,215,l), (218,720,l), (89,720,l), (105,215,l) ); }, { closed = 1; nodes = ( (196,-12,o), (229,23,o), (229,62,cs), (229,104,o), (196,139,o), (156,139,cs), (115,139,o), (80,104,o), (80,62,cs), (80,23,o), (115,-12,o), (156,-12,cs) ); } ); width = 309; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (187,215,l), (259,700,l), (152,700,l), (109,215,l) ); }, { closed = 1; nodes = ( (153,-12,o), (184,17,o), (189,51,cs), (193,86,o), (168,115,o), (134,115,cs), (99,115,o), (67,86,o), (63,51,cs), (58,17,o), (84,-12,o), (119,-12,cs) ); } ); width = 300; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (239,231,l), (311,700,l), (160,700,l), (117,231,l) ); }, { closed = 1; nodes = ( (195,-12,o), (239,27,o), (245,75,cs), (251,122,o), (216,160,o), (169,160,cs), (121,160,o), (78,122,o), (72,75,cs), (66,27,o), (100,-12,o), (148,-12,cs) ); } ); width = 361; } ); unicode = 33; }, { glyphname = exclamdown; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (62,-200,l), (137,-200,l), (189,338,l), (145,338,l) ); }, { closed = 1; nodes = ( (159,512,o), (134,490,o), (131,464,cs), (128,436,o), (147,415,o), (174,415,cs), (201,415,o), (226,436,o), (229,464,cs), (232,490,o), (213,512,o), (186,512,cs) ); } ); width = 308; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (45,-200,l), (152,-200,l), (198,285,l), (120,285,l) ); }, { closed = 1; nodes = ( (151,512,o), (119,483,o), (114,449,cs), (110,414,o), (136,385,o), (171,385,cs), (205,385,o), (236,414,o), (240,449,cs), (245,483,o), (220,512,o), (186,512,cs) ); } ); width = 306; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (50,-192,l), (201,-192,l), (245,277,l), (123,277,l) ); }, { closed = 1; nodes = ( (166,520,o), (122,481,o), (116,433,cs), (110,386,o), (145,348,o), (193,348,cs), (240,348,o), (283,386,o), (289,433,cs), (295,481,o), (261,520,o), (214,520,cs) ); } ); width = 361; } ); unicode = 161; }, { glyphname = question; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,16); target = (0,6); type = Stem; }, { horizontal = 1; place = (-43,231); target = (0,22); type = Stem; }, { origin = (0,12); target = (0,13); type = Stem; }, { origin = (0,22); target = (0,1); type = Stem; }, { origin = (0,19); target = (0,3); type = Stem; }, { origin = (0,22); target = (0,1); type = Stem; } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (252,188,l), (277,392,o), (462,332,o), (487,537,cs), (501,649,o), (424,719,o), (311,719,cs), (238,719,o), (170,685,o), (127,623,c), (109,597,o), (96,566,o), (91,530,c), (153,530,l), (163,611,o), (232,663,o), (303,663,cs), (379,663,o), (435,616,o), (425,536,cs), (405,372,o), (220,426,o), (190,188,c) ); }, { closed = 1; nodes = ( (224,-12,o), (249,10,o), (252,36,cs), (255,64,o), (236,85,o), (209,85,cs), (182,85,o), (157,64,o), (154,36,cs), (151,10,o), (170,-12,o), (197,-12,cs) ); } ); width = 502; }, { associatedMasterId = m01; layerId = "CB6FE323-AA22-456B-834C-E280C3EC3E3D"; name = foreground; shapes = ( { closed = 1; nodes = ( (312,380,o), (500,311,o), (500,530,cs), (500,649,o), (404,719,o), (289,719,c), (209,719,o), (137,685,o), (101,623,c), (86,597,o), (77,566,o), (77,530,c), (174,530,l), (174,587,o), (210,636,o), (288,636,c), (366,636,o), (405,592,o), (405,536,cs), (405,372,o), (208,437,o), (208,216,cs), (208,216,o), (312,216,o), (312,216,c) ); }, { closed = 1; nodes = ( (308,-12,o), (341,23,o), (341,62,cs), (341,104,o), (308,139,o), (268,139,cs), (227,139,o), (192,104,o), (192,62,cs), (192,23,o), (227,-12,o), (268,-12,cs) ); } ); width = 587; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (274,200,l), (295,371,o), (472,322,o), (498,536,cs), (511,645,o), (429,719,o), (314,719,cs), (238,719,o), (161,685,o), (118,623,c), (100,597,o), (87,566,o), (82,530,c), (164,530,l), (171,587,o), (229,639,o), (303,639,cs), (381,639,o), (415,592,o), (408,536,cs), (388,372,o), (209,421,o), (182,200,c) ); }, { closed = 1; nodes = ( (233,-12,o), (264,17,o), (269,51,cs), (273,86,o), (248,115,o), (214,115,cs), (179,115,o), (147,86,o), (143,51,cs), (138,17,o), (164,-12,o), (199,-12,cs) ); } ); width = 511; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (311,209,l), (330,356,o), (497,325,o), (522,531,cs), (537,650,o), (455,720,o), (323,720,cs), (226,720,o), (155,686,o), (111,624,cs), (93,598,o), (78,544,o), (73,508,c), (225,508,l), (231,555,o), (252,590,o), (306,590,cs), (353,590,o), (372,560,o), (368,527,cs), (350,383,o), (186,427,o), (159,209,c) ); }, { closed = 1; nodes = ( (257,-16,o), (301,23,o), (307,71,cs), (312,118,o), (278,156,o), (231,156,cs), (183,156,o), (139,118,o), (134,71,cs), (128,23,o), (162,-16,o), (210,-16,cs) ); } ); width = 528; } ); unicode = 63; }, { glyphname = questiondown; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (271,-219,o), (339,-185,o), (382,-123,c), (400,-97,o), (413,-66,o), (418,-30,c), (356,-30,l), (346,-111,o), (277,-163,o), (206,-163,cs), (130,-163,o), (74,-116,o), (84,-36,cs), (104,128,o), (289,74,o), (319,312,c), (257,312,l), (232,108,o), (47,168,o), (22,-37,cs), (8,-149,o), (85,-219,o), (198,-219,cs) ); }, { closed = 1; nodes = ( (327,415,o), (352,436,o), (355,464,cs), (358,490,o), (339,512,o), (312,512,cs), (285,512,o), (260,490,o), (257,464,cs), (254,436,o), (273,415,o), (300,415,cs) ); } ); width = 495; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (273,-219,o), (350,-185,o), (393,-123,c), (411,-97,o), (424,-66,o), (429,-30,c), (347,-30,l), (340,-87,o), (282,-139,o), (208,-139,cs), (130,-139,o), (96,-92,o), (103,-36,cs), (123,128,o), (302,79,o), (329,300,c), (237,300,l), (216,129,o), (39,178,o), (13,-36,cs), (0,-145,o), (82,-219,o), (197,-219,cs) ); }, { closed = 1; nodes = ( (332,385,o), (364,414,o), (368,449,cs), (373,483,o), (347,512,o), (312,512,cs), (278,512,o), (247,483,o), (242,449,cs), (238,414,o), (263,385,o), (297,385,cs) ); } ); width = 511; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (303,-216,o), (374,-182,o), (418,-120,cs), (436,-94,o), (452,-40,o), (456,-4,c), (304,-4,l), (299,-51,o), (277,-86,o), (223,-86,cs), (176,-86,o), (158,-56,o), (162,-23,cs), (180,121,o), (343,77,o), (370,295,c), (218,295,l), (200,148,o), (33,179,o), (7,-27,cs), (-7,-146,o), (74,-216,o), (206,-216,cs) ); }, { closed = 1; nodes = ( (347,348,o), (390,386,o), (396,433,cs), (402,481,o), (368,520,o), (320,520,cs), (273,520,o), (229,481,o), (223,433,cs), (217,386,o), (252,348,o), (299,348,cs) ); } ); width = 528; } ); unicode = 191; }, { glyphname = periodcentered; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (164,255,o), (188,277,o), (192,304,cs), (195,333,o), (176,355,o), (148,355,cs), (120,355,o), (94,333,o), (91,304,cs), (87,277,o), (108,255,o), (136,255,cs) ); } ); width = 269; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (188,239,o), (220,268,o), (225,304,cs), (229,340,o), (204,369,o), (168,369,cs), (132,369,o), (99,340,o), (95,304,cs), (90,268,o), (116,239,o), (152,239,cs) ); } ); width = 306; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (210,217,o), (256,257,o), (263,307,cs), (268,355,o), (232,394,o), (184,394,cs), (135,394,o), (89,355,o), (84,307,cs), (77,257,o), (113,217,o), (162,217,cs) ); } ); width = 333; } ); unicode = 183; }, { glyphname = bullet; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (172,247,o), (202,275,o), (206,306,cs), (210,339,o), (186,367,o), (155,367,cs), (122,367,o), (91,339,o), (87,306,cs), (83,275,o), (108,247,o), (141,247,cs) ); } ); width = 279; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (213,223,o), (255,262,o), (261,307,cs), (267,354,o), (234,393,o), (189,393,cs), (142,393,o), (98,354,o), (92,307,cs), (86,262,o), (121,223,o), (168,223,cs) ); } ); width = 339; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (233,197,o), (289,247,o), (297,309,cs), (304,370,o), (260,419,o), (199,419,cs), (137,419,o), (81,370,o), (74,309,cs), (66,247,o), (110,197,o), (172,197,cs) ); } ); width = 357; } ); unicode = 8226; }, { glyphname = asterisk; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (289,489,l), (247,489,l), (356,339,l), (404,374,l), (290,533,l), (280,488,l), (458,567,l), (442,616,l), (269,540,l), (301,522,l), (325,712,l), (269,712,l), (245,519,l), (282,536,l), (126,613,l), (99,567,l), (257,488,l), (258,533,l), (104,374,l), (143,339,l) ); } ); width = 479; }, { associatedMasterId = m01; layerId = "52A87255-65B2-4E80-95F9-0AF50A018D84"; name = foreground; shapes = ( { closed = 1; nodes = ( (146,321,l), (246,438,l), (344,320,l), (407,374,l), (310,489,l), (436,553,l), (400,624,l), (287,568,l), (287,714,l), (204,714,l), (204,568,l), (92,624,l), (55,553,l), (180,490,l), (83,374,l) ); } ); width = 491; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (302,489,l), (244,489,l), (360,330,l), (417,374,l), (303,533,l), (284,480,l), (469,562,l), (449,624,l), (275,548,l), (312,522,l), (336,712,l), (268,712,l), (244,519,l), (288,545,l), (132,622,l), (96,561,l), (260,480,l), (255,533,l), (101,374,l), (148,330,l) ); } ); width = 489; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (336,489,l), (236,489,l), (368,310,l), (452,374,l), (337,533,l), (295,459,l), (498,551,l), (466,646,l), (291,570,l), (348,522,l), (371,712,l), (261,712,l), (238,519,l), (305,568,l), (143,646,l), (86,548,l), (271,456,l), (248,533,l), (95,374,l), (166,311,l) ); } ); width = 512; } ); unicode = 42; }, { glyphname = numbersign; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (1,3); target = (1,2); type = Stem; }, { horizontal = 1; origin = (3,3); target = (3,2); type = Stem; }, { origin = (1,3); target = (3,0); type = Stem; } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (431,0,l), (693,720,l), (631,720,l), (369,0,l) ); }, { closed = 1; nodes = ( (641,183,l), (647,239,l), (73,239,l), (67,183,l) ); }, { closed = 1; nodes = ( (194,0,l), (456,720,l), (394,720,l), (132,0,l) ); }, { closed = 1; nodes = ( (741,482,l), (748,538,l), (174,538,l), (167,482,l) ); } ); width = 787; }, { associatedMasterId = m01; layerId = "21C28542-C2BA-4EFE-9B17-DE8F14164D30"; name = foreground; shapes = ( { closed = 1; nodes = ( (227,0,l), (400,720,l), (306,720,l), (133,0,l) ); }, { closed = 1; nodes = ( (462,0,l), (635,720,l), (541,720,l), (368,0,l) ); }, { closed = 1; nodes = ( (707,425,l), (707,523,l), (133,523,l), (133,425,l) ); }, { closed = 1; nodes = ( (644,199,l), (644,297,l), (70,297,l), (70,199,l) ); } ); width = 777; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (429,0,l), (691,720,l), (618,720,l), (356,0,l) ); }, { closed = 1; nodes = ( (638,187,l), (648,267,l), (74,267,l), (64,187,l) ); }, { closed = 1; nodes = ( (201,0,l), (463,720,l), (390,720,l), (128,0,l) ); }, { closed = 1; nodes = ( (735,457,l), (745,537,l), (171,537,l), (161,457,l) ); } ); width = 782; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (478,0,l), (739,720,l), (605,720,l), (344,0,l) ); }, { closed = 1; nodes = ( (675,152,l), (691,278,l), (68,278,l), (52,152,l) ); }, { closed = 1; nodes = ( (226,0,l), (487,720,l), (353,720,l), (92,0,l) ); }, { closed = 1; nodes = ( (755,416,l), (770,542,l), (153,542,l), (138,416,l) ); } ); width = 800; } ); unicode = 35; }, { glyphname = slash; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (208,-160); }, { pos = (177,775); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (32,-160,l), (494,775,l), (429,775,l), (-33,-160,l) ); } ); width = 438; }, { associatedMasterId = m01; layerId = "B6C497E8-57DB-4813-80B4-1FC1C004D65A"; name = foreground; shapes = ( { closed = 1; nodes = ( (97,0,l), (390,720,l), (303,720,l), (10,0,l) ); } ); width = 385; }, { guides = ( { pos = (-230,-160); }, { pos = (-230,776); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (56,-160,l), (524,776,l), (434,776,l), (-34,-160,l) ); } ); width = 460; }, { guides = ( { pos = (-242,-159); }, { pos = (6,775); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (97,-161,l), (566,775,l), (426,775,l), (-43,-161,l) ); } ); width = 482; } ); unicode = 47; }, { glyphname = backslash; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (371,-160,l), (137,775,l), (72,775,l), (306,-160,l) ); } ); width = 438; }, { associatedMasterId = m01; layerId = "343D6EAE-1DF2-4E0E-B6B5-032545DCA862"; name = foreground; shapes = ( { closed = 1; nodes = ( (82,720,l), (-5,720,l), (288,0,l), (375,0,l) ); } ); width = 385; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (394,-160,l), (156,776,l), (66,776,l), (304,-160,l) ); } ); width = 460; }, { guides = ( { pos = (-270,-159); }, { pos = (-22,775); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (423,-161,l), (184,775,l), (44,775,l), (283,-161,l) ); } ); width = 482; } ); unicode = 92; }, { glyphname = periodcentered.loclCAT; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (158,257,o), (182,279,o), (185,303,cs), (188,329,o), (169,351,o), (145,351,cs), (119,351,o), (95,329,o), (92,303,cs), (89,279,o), (108,257,o), (134,257,cs) ); } ); width = 263; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (178,239,o), (210,269,o), (215,304,cs), (219,340,o), (194,370,o), (159,370,cs), (123,370,o), (89,340,o), (85,304,cs), (80,269,o), (107,239,o), (143,239,cs) ); } ); width = 286; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (210,217,o), (256,257,o), (263,307,cs), (268,355,o), (232,394,o), (184,394,cs), (135,394,o), (89,355,o), (84,307,cs), (77,257,o), (113,217,o), (162,217,cs) ); } ); width = 333; } ); }, { glyphname = periodcentered.loclCAT.case; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (158,257,o), (182,279,o), (185,303,cs), (188,329,o), (169,351,o), (145,351,cs), (119,351,o), (95,329,o), (92,303,cs), (89,279,o), (108,257,o), (134,257,cs) ); } ); width = 263; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (185,239,o), (217,269,o), (222,304,cs), (226,340,o), (201,370,o), (166,370,cs), (130,370,o), (96,340,o), (92,304,cs), (87,269,o), (114,239,o), (150,239,cs) ); } ); width = 300; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (210,217,o), (256,257,o), (263,307,cs), (268,355,o), (232,394,o), (184,394,cs), (135,394,o), (89,355,o), (84,307,cs), (77,257,o), (113,217,o), (162,217,cs) ); } ); width = 333; } ); }, { glyphname = hyphen; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (259,296); } ); hints = ( { horizontal = 1; origin = (0,3); target = (0,2); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (420,268,l), (427,324,l), (79,324,l), (72,268,l) ); } ); width = 488; }, { associatedMasterId = m01; layerId = "A4E3A6E5-E339-49A3-BA7C-5350A83F40F5"; name = foreground; shapes = ( { closed = 1; nodes = ( (428,247,l), (428,345,l), (80,345,l), (80,247,l) ); } ); width = 508; }, { guides = ( { pos = (251,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (418,253,l), (429,337,l), (81,337,l), (70,253,l) ); } ); width = 488; }, { guides = ( { pos = (251,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (458,230,l), (474,358,l), (78,358,l), (62,230,l) ); } ); width = 526; } ); unicode = 45; }, { glyphname = endash; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (486,270,l), (493,322,l), (79,322,l), (72,270,l) ); } ); width = 554; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (484,256,l), (493,334,l), (80,334,l), (71,256,l) ); } ); width = 553; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (515,236,l), (529,352,l), (77,352,l), (63,236,l) ); } ); width = 582; } ); unicode = 8211; }, { glyphname = emdash; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (816,270,l), (823,322,l), (79,322,l), (72,270,l) ); } ); width = 884; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (816,254,l), (826,332,l), (81,332,l), (71,254,l) ); } ); width = 886; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (851,236,l), (865,352,l), (77,352,l), (63,236,l) ); } ); width = 918; } ); unicode = 8212; }, { glyphname = underscore; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,3); target = (0,2); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (425,0,l), (432,52,l), (-27,52,l), (-34,0,l) ); } ); width = 453; }, { associatedMasterId = m01; layerId = "1AB4D43C-2735-4A3F-815D-32BCD16357D5"; name = foreground; shapes = ( { closed = 1; nodes = ( (546,0,l), (546,98,l), (60,98,l), (60,0,l) ); } ); width = 606; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (452,0,l), (462,78,l), (-24,78,l), (-34,0,l) ); } ); width = 480; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (501,0,l), (515,116,l), (-20,116,l), (-34,0,l) ); } ); width = 529; } ); unicode = 95; }, { glyphname = parenleft; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (183,-160); }, { pos = (152,775); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (214,-160,l), (217,-158,o), (104,4,o), (141,308,c), (178,610,o), (331,773,o), (328,775,c), (266,775,l), (267,775,o), (110,579,o), (77,308,c), (44,35,o), (153,-160,o), (153,-160,c) ); } ); width = 299; }, { associatedMasterId = m01; layerId = "A003329C-BEC9-4397-9AAD-9155A5EADE70"; name = foreground; shapes = ( { closed = 1; nodes = ( (62,109,o), (172,-60,o), (172,-60,c), (280,-60,l), (283,-58,o), (163,82,o), (163,345,c), (163,607,o), (283,748,o), (280,750,c), (172,750,l), (172,750,o), (62,580,o), (62,345,c) ); } ); width = 313; }, { guides = ( { pos = (-216,-160); }, { pos = (-216,776); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (228,-160,l), (231,-158,o), (128,5,o), (165,308,cs), (202,610,o), (345,774,o), (343,776,c), (259,776,l), (259,776,o), (111,580,o), (77,308,cs), (44,35,o), (143,-160,o), (143,-160,c) ); } ); width = 308; }, { guides = ( { pos = (-314,-159); }, { pos = (-66,775); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (275,-159,l), (279,-157,o), (167,4,o), (205,309,c), (242,611,o), (392,773,o), (389,775,c), (250,775,l), (250,775,o), (88,579,o), (55,309,c), (21,36,o), (136,-159,o), (136,-159,c) ); } ); width = 394; } ); unicode = 40; }, { glyphname = parenright; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (46,-160,o), (203,35,o), (236,308,c), (269,579,o), (160,775,o), (161,775,c), (99,775,l), (96,773,o), (209,610,o), (172,308,c), (135,4,o), (-18,-158,o), (-15,-160,c), (46,-160,l) ); } ); width = 299; }, { associatedMasterId = m01; layerId = "FEA7CF8C-5847-4A35-8A6B-C76339FB953A"; name = foreground; shapes = ( { closed = 1; nodes = ( (243,580,o), (133,750,o), (133,750,c), (25,750,l), (22,748,o), (142,607,o), (142,345,c), (142,82,o), (22,-58,o), (25,-60,c), (133,-60,l), (133,-60,o), (243,109,o), (243,345,c) ); } ); width = 303; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (65,-160,o), (212,35,o), (245,308,cs), (279,580,o), (179,776,o), (179,776,c), (95,776,l), (91,774,o), (194,610,o), (157,308,cs), (120,5,o), (-23,-158,o), (-20,-160,c), (65,-160,l) ); } ); width = 308; }, { guides = ( { pos = (-297,-159); }, { pos = (-49,775); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (156,-159,o), (319,36,o), (353,309,c), (386,579,o), (272,775,o), (272,775,c), (133,775,l), (130,773,o), (240,611,o), (203,309,c), (165,4,o), (15,-157,o), (17,-159,c), (156,-159,l) ); } ); width = 394; } ); unicode = 41; }, { glyphname = braceleft; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (238,-160); }, { pos = (207,775); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (287,-159,l), (293,-105,l), (234,-105,ls), (186,-105,o), (161,-77,o), (168,-18,cs), (195,205,ls), (203,270,o), (183,294,o), (150,303,c), (150,311,l), (187,321,o), (212,340,o), (221,416,cs), (248,634,ls), (255,693,o), (288,721,o), (336,721,cs), (395,721,l), (401,775,l), (335,775,ls), (235,775,o), (198,712,o), (188,632,cs), (161,416,ls), (157,378,o), (121,340,o), (76,340,c), (68,278,l), (114,278,o), (141,251,o), (135,205,cs), (108,-16,ls), (99,-96,o), (121,-159,o), (221,-159,cs) ); } ); width = 370; }, { guides = ( { pos = (-216,-160); }, { pos = (-216,776); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (317,-159,l), (327,-79,l), (249,-79,ls), (206,-79,o), (183,-46,o), (188,0,cs), (214,209,ls), (221,267,o), (199,296,o), (154,305,c), (155,313,l), (202,323,o), (232,354,o), (239,414,cs), (264,616,ls), (271,673,o), (301,695,o), (344,695,cs), (422,695,l), (431,775,l), (336,775,ls), (255,775,o), (187,705,o), (177,624,cs), (155,444,ls), (148,389,o), (120,357,o), (68,357,c), (57,266,l), (109,266,o), (129,235,o), (122,180,cs), (99,-9,ls), (89,-90,o), (141,-159,o), (222,-159,cs) ); } ); width = 400; }, { guides = ( { pos = (-253,-159); }, { pos = (-5,775); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (369,-159,l), (385,-33,l), (291,-33,ls), (256,-33,o), (241,0,o), (246,40,cs), (266,209,ls), (274,267,o), (246,296,o), (201,305,c), (202,313,l), (249,323,o), (284,354,o), (292,414,cs), (312,576,ls), (318,626,o), (339,649,o), (374,649,cs), (468,649,l), (484,775,l), (344,775,ls), (261,775,o), (187,703,o), (177,622,cs), (157,455,ls), (150,400,o), (123,376,o), (71,376,c), (55,246,l), (107,246,o), (128,223,o), (121,168,cs), (100,-6,ls), (90,-87,o), (146,-159,o), (229,-159,cs) ); } ); width = 442; } ); unicode = 123; }, { glyphname = braceright; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (149,-159,o), (187,-96,o), (196,-16,cs), (223,205,ls), (229,251,o), (262,277,o), (308,277,c), (316,342,l), (271,342,o), (245,378,o), (249,416,cs), (276,632,ls), (286,712,o), (263,775,o), (163,775,cs), (97,775,l), (91,721,l), (150,721,ls), (198,721,o), (223,693,o), (216,634,cs), (189,416,ls), (180,340,o), (201,321,o), (234,311,c), (234,303,l), (197,294,o), (171,270,o), (163,205,cs), (136,-18,ls), (129,-77,o), (96,-105,o), (48,-105,cs), (-11,-105,l), (-17,-159,l), (49,-159,ls) ); } ); width = 370; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (159,-159,o), (227,-90,o), (237,-9,cs), (260,180,ls), (267,235,o), (295,266,o), (347,266,c), (358,357,l), (306,357,o), (286,389,o), (293,444,cs), (315,624,ls), (325,705,o), (273,775,o), (192,775,cs), (97,775,l), (88,695,l), (166,695,ls), (209,695,o), (233,673,o), (226,616,cs), (201,414,ls), (194,354,o), (213,323,o), (258,313,c), (257,305,l), (210,296,o), (183,267,o), (176,209,cs), (150,0,ls), (145,-46,o), (114,-79,o), (71,-79,cs), (-7,-79,l), (-17,-159,l), (78,-159,ls) ); } ); width = 400; }, { guides = ( { pos = (-373,-159); }, { pos = (-125,775); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (194,-159,o), (268,-87,o), (278,-6,cs), (299,168,ls), (306,223,o), (333,246,o), (385,246,c), (401,376,l), (349,376,o), (328,400,o), (335,455,cs), (355,622,ls), (365,703,o), (309,775,o), (226,775,cs), (86,775,l), (70,649,l), (164,649,ls), (199,649,o), (216,626,o), (210,576,cs), (190,414,ls), (182,354,o), (209,323,o), (254,313,c), (253,305,l), (206,296,o), (172,267,o), (164,209,cs), (144,40,ls), (139,0,o), (116,-33,o), (81,-33,cs), (-13,-33,l), (-29,-159,l), (111,-159,ls) ); } ); width = 442; } ); unicode = 125; }, { glyphname = bracketleft; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (181,-160); }, { pos = (150,775); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (265,-160,l), (272,-104,l), (117,-104,l), (217,718,l), (373,718,l), (380,774,l), (164,774,l), (50,-160,l) ); } ); width = 356; }, { guides = ( { pos = (-259,-160); }, { pos = (-259,776); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (294,-160,l), (303,-84,l), (134,-84,l), (230,700,l), (400,700,l), (409,775,l), (159,775,l), (45,-160,l) ); } ); width = 383; }, { guides = ( { pos = (-305,-159); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (355,-158,l), (371,-32,l), (195,-32,l), (278,649,l), (455,649,l), (471,775,l), (154,775,l), (39,-158,l) ); } ); width = 439; } ); unicode = 91; }, { glyphname = bracketright; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (320,774,l), (104,774,l), (97,718,l), (253,718,l), (153,-104,l), (-2,-104,l), (-9,-160,l), (206,-160,l) ); } ); width = 356; }, { guides = ( { pos = (-259,-160); }, { pos = (-259,776); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (409,775,l), (159,775,l), (150,700,l), (320,700,l), (224,-84,l), (55,-84,l), (46,-160,l), (295,-160,l) ); } ); width = 383; }, { guides = ( { pos = (-305,-159); }, { pos = (-57,750); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (472,775,l), (155,775,l), (139,649,l), (316,649,l), (233,-32,l), (57,-32,l), (41,-158,l), (357,-158,l) ); } ); width = 439; } ); unicode = 93; }, { glyphname = quotesinglbase; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-72,0); ref = comma; } ); width = 162; }, { layerId = m002; shapes = ( { pos = (-51,0); ref = comma; } ); width = 195; }, { layerId = m003; shapes = ( { pos = (-41,-15); ref = comma; } ); width = 271; } ); unicode = 8218; }, { glyphname = quotedblbase; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (66,0); ref = comma; }, { pos = (-72,0); ref = comma; } ); width = 300; }, { layerId = m002; shapes = ( { pos = (132,0); ref = comma; }, { pos = (-51,0); ref = comma; } ); width = 378; }, { layerId = m003; shapes = ( { pos = (167,-15); ref = comma; }, { pos = (-41,-15); ref = comma; } ); width = 479; } ); unicode = 8222; }, { glyphname = quotedblleft; kernLeft = quoteleft; kernRight = quoteleft; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (153,712,o), (110,655,o), (102,593,cs), (98,558,o), (117,532,o), (151,532,cs), (176,532,o), (200,557,o), (203,582,c), (206,606,o), (187,627,o), (162,627,cs), (161,627,o), (157,627,o), (156,627,c), (163,678,o), (216,689,o), (216,689,c), (216,689,o), (220,712,o), (219,712,cs) ); }, { closed = 1; nodes = ( (291,712,o), (248,655,o), (240,593,cs), (236,558,o), (255,532,o), (289,532,cs), (314,532,o), (338,557,o), (341,582,cs), (344,606,o), (325,627,o), (300,627,cs), (299,627,o), (295,627,o), (294,627,c), (301,678,o), (354,689,o), (354,689,c), (354,689,o), (358,712,o), (357,712,cs) ); } ); width = 361; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (148,720,o), (100,627,o), (91,563,c), (87,525,o), (102,482,o), (154,482,cs), (188,482,o), (221,515,o), (225,548,cs), (229,580,o), (203,608,o), (172,608,cs), (170,608,o), (166,608,o), (163,607,c), (171,675,o), (242,690,o), (242,690,c), (242,690,o), (247,720,o), (246,720,cs) ); }, { closed = 1; nodes = ( (336,720,o), (288,627,o), (279,563,c), (275,525,o), (290,482,o), (342,482,cs), (376,482,o), (409,515,o), (413,548,cs), (417,580,o), (391,608,o), (360,608,cs), (358,608,o), (354,608,o), (351,607,c), (359,675,o), (430,690,o), (430,690,c), (430,690,o), (435,720,o), (434,720,cs) ); } ); width = 432; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (154,721,o), (92,598,o), (83,519,cs), (77,471,o), (96,417,o), (161,417,cs), (207,417,o), (246,459,o), (251,501,cs), (256,540,o), (224,575,o), (183,575,cs), (179,575,o), (174,575,o), (171,574,c), (182,660,o), (273,678,o), (273,678,c), (273,678,o), (279,721,o), (278,721,cs) ); }, { closed = 1; nodes = ( (357,721,o), (295,598,o), (286,519,cs), (280,471,o), (299,417,o), (364,417,cs), (410,417,o), (449,459,o), (454,501,cs), (459,540,o), (427,575,o), (386,575,cs), (382,575,o), (377,575,o), (374,574,c), (385,660,o), (476,678,o), (476,678,c), (476,678,o), (482,721,o), (481,721,cs) ); } ); width = 467; } ); unicode = 8220; }, { glyphname = quotedblright; kernLeft = quoteright; kernRight = quoteright; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (300,532,o), (343,589,o), (350,651,cs), (355,686,o), (336,712,o), (302,712,cs), (277,712,o), (253,687,o), (250,662,c), (247,638,o), (265,617,o), (290,617,cs), (291,617,o), (295,617,o), (296,617,c), (290,566,o), (236,555,o), (236,555,c), (236,555,o), (234,532,o), (234,532,cs) ); }, { closed = 1; nodes = ( (166,532,o), (209,589,o), (216,651,cs), (221,686,o), (202,712,o), (168,712,cs), (143,712,o), (119,687,o), (116,662,cs), (113,638,o), (131,617,o), (156,617,cs), (157,617,o), (161,617,o), (162,617,c), (156,566,o), (102,555,o), (102,555,c), (102,555,o), (99,532,o), (100,532,cs) ); } ); width = 361; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (368,482,o), (416,575,o), (425,639,c), (429,677,o), (414,720,o), (362,720,cs), (328,720,o), (296,687,o), (292,654,cs), (288,622,o), (313,594,o), (344,594,cs), (346,594,o), (350,594,o), (353,595,c), (345,527,o), (274,512,o), (274,512,c), (274,512,o), (269,482,o), (270,482,cs) ); }, { closed = 1; nodes = ( (180,482,o), (228,575,o), (237,639,c), (241,677,o), (226,720,o), (174,720,cs), (140,720,o), (108,687,o), (104,654,cs), (100,622,o), (125,594,o), (156,594,cs), (158,594,o), (162,594,o), (165,595,c), (157,527,o), (86,512,o), (86,512,c), (86,512,o), (81,482,o), (82,482,cs) ); } ); width = 432; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (392,417,o), (454,540,o), (464,619,cs), (470,667,o), (450,721,o), (385,721,cs), (339,721,o), (300,679,o), (295,637,cs), (290,598,o), (322,563,o), (363,563,cs), (367,563,o), (372,563,o), (375,564,c), (365,478,o), (273,460,o), (273,460,c), (273,460,o), (267,417,o), (268,417,cs) ); }, { closed = 1; nodes = ( (189,417,o), (251,540,o), (261,619,cs), (267,667,o), (247,721,o), (182,721,cs), (136,721,o), (97,679,o), (92,637,cs), (87,598,o), (119,563,o), (160,563,cs), (164,563,o), (169,563,o), (172,564,c), (162,478,o), (70,460,o), (70,460,c), (70,460,o), (64,417,o), (65,417,cs) ); } ); width = 469; } ); unicode = 8221; }, { glyphname = quoteleft; kernLeft = quoteleft; kernRight = quoteleft; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (177,540,o), (201,565,o), (204,590,c), (207,614,o), (188,635,o), (163,635,cs), (162,635,o), (158,635,o), (157,635,c), (164,686,o), (217,697,o), (217,697,c), (217,697,o), (221,720,o), (220,720,cs), (154,720,o), (111,663,o), (103,601,cs), (99,566,o), (118,540,o), (152,540,cs) ); } ); width = 212; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (180,482,o), (213,515,o), (217,548,cs), (221,580,o), (195,608,o), (164,608,cs), (162,608,o), (158,608,o), (155,607,c), (163,675,o), (234,690,o), (234,690,c), (234,690,o), (239,720,o), (238,720,cs), (140,720,o), (92,627,o), (83,563,c), (79,525,o), (94,482,o), (146,482,cs) ); } ); width = 244; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (200,416,o), (239,458,o), (244,500,cs), (249,539,o), (217,574,o), (176,574,cs), (172,574,o), (167,574,o), (164,573,c), (175,659,o), (266,677,o), (266,677,c), (266,677,o), (272,720,o), (271,720,cs), (147,720,o), (85,597,o), (75,518,cs), (70,470,o), (89,416,o), (154,416,cs) ); } ); width = 264; } ); unicode = 8216; }, { glyphname = quoteright; kernLeft = quoteright; kernRight = quoteright; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (151,532,o), (194,589,o), (201,651,cs), (206,686,o), (187,712,o), (153,712,cs), (128,712,o), (104,687,o), (101,662,c), (98,638,o), (116,617,o), (141,617,cs), (142,617,o), (146,617,o), (147,617,c), (141,566,o), (87,555,o), (87,555,c), (87,555,o), (84,532,o), (85,532,cs) ); } ); width = 212; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (184,482,o), (232,575,o), (241,639,c), (245,677,o), (230,720,o), (178,720,cs), (144,720,o), (112,687,o), (108,654,cs), (104,622,o), (129,594,o), (160,594,cs), (162,594,o), (166,594,o), (169,595,c), (161,527,o), (90,512,o), (90,512,c), (90,512,o), (85,482,o), (86,482,cs) ); } ); width = 244; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (194,417,o), (256,540,o), (266,619,cs), (272,667,o), (252,721,o), (187,721,cs), (141,721,o), (102,679,o), (97,637,cs), (92,598,o), (124,563,o), (165,563,cs), (169,563,o), (174,563,o), (177,564,c), (167,478,o), (75,460,o), (75,460,c), (75,460,o), (69,417,o), (70,417,cs) ); } ); width = 264; } ); unicode = 8217; }, { glyphname = guillemetleft; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (614,99,l), (352,291,l), (351,283,l), (661,475,l), (669,545,l), (315,326,l), (306,250,l), (606,31,l) ); }, { closed = 1; nodes = ( (358,99,l), (96,291,l), (95,283,l), (405,475,l), (413,545,l), (59,326,l), (50,250,l), (350,31,l) ); } ); width = 693; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (615,120,l), (353,312,l), (346,262,l), (656,454,l), (667,544,l), (313,325,l), (304,249,l), (604,30,l) ); }, { closed = 1; nodes = ( (359,121,l), (97,313,l), (91,263,l), (400,455,l), (411,545,l), (57,326,l), (48,250,l), (348,31,l) ); } ); width = 687; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (661,145,l), (398,337,l), (386,240,l), (696,432,l), (713,571,l), (359,352,l), (343,222,l), (643,3,l) ); }, { closed = 1; nodes = ( (359,145,l), (96,337,l), (84,240,l), (394,432,l), (411,571,l), (57,352,l), (41,222,l), (341,3,l) ); } ); width = 715; } ); unicode = 171; }, { glyphname = guillemetright; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (643,250,l), (652,326,l), (352,545,l), (344,475,l), (606,283,l), (607,291,l), (297,99,l), (289,31,l) ); }, { closed = 1; nodes = ( (387,250,l), (396,326,l), (96,545,l), (88,475,l), (350,283,l), (351,291,l), (41,99,l), (33,31,l) ); } ); width = 693; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (639,250,l), (648,326,l), (348,545,l), (337,455,l), (600,263,l), (606,313,l), (296,121,l), (285,31,l) ); }, { closed = 1; nodes = ( (383,249,l), (392,325,l), (92,544,l), (81,454,l), (343,262,l), (350,312,l), (40,120,l), (29,30,l) ); } ); width = 687; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (670,222,l), (686,352,l), (386,571,l), (369,432,l), (631,240,l), (643,337,l), (334,145,l), (316,3,l) ); }, { closed = 1; nodes = ( (368,222,l), (384,352,l), (84,571,l), (67,432,l), (329,240,l), (341,337,l), (32,145,l), (14,3,l) ); } ); width = 715; } ); unicode = 187; }, { glyphname = guilsinglleft; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (329,100,l), (93,294,l), (92,281,l), (375,475,l), (383,545,l), (59,326,l), (50,250,l), (320,31,l) ); } ); width = 407; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (329,121,l), (94,315,l), (87,261,l), (370,455,l), (381,545,l), (57,326,l), (48,250,l), (318,31,l) ); } ); width = 401; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (358,145,l), (95,337,l), (83,240,l), (393,432,l), (410,571,l), (56,352,l), (40,222,l), (340,3,l) ); } ); width = 421; } ); unicode = 8249; }, { glyphname = guilsinglright; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (357,250,l), (366,326,l), (96,545,l), (88,475,l), (323,281,l), (324,294,l), (42,100,l), (33,31,l) ); } ); width = 407; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (353,250,l), (362,326,l), (92,545,l), (81,455,l), (316,261,l), (323,315,l), (40,121,l), (29,31,l) ); } ); width = 401; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (367,222,l), (383,352,l), (83,571,l), (66,432,l), (328,240,l), (340,337,l), (31,145,l), (13,3,l) ); } ); width = 421; } ); unicode = 8250; }, { glyphname = quotedbl; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (327,490,l), (338,519,o), (383,635,o), (387,667,c), (391,699,o), (371,720,o), (344,720,cs), (315,720,o), (289,699,o), (285,667,c), (281,635,o), (299,519,o), (302,490,c) ); }, { closed = 1; nodes = ( (178,490,l), (189,519,o), (234,635,o), (238,667,c), (242,699,o), (222,720,o), (195,720,cs), (166,720,o), (140,699,o), (136,667,c), (132,635,o), (150,519,o), (153,490,c) ); } ); width = 421; }, { associatedMasterId = m01; layerId = "24C34471-2878-49D9-AC64-055C689381E7"; name = foreground; shapes = ( { closed = 1; nodes = ( (354,459,l), (387,579,o), (401,624,o), (401,651,cs), (401,689,o), (371,721,o), (335,721,cs), (298,721,o), (266,689,o), (266,651,cs), (266,625,o), (280,579,o), (314,459,c) ); }, { closed = 1; nodes = ( (153,459,l), (186,579,o), (200,624,o), (200,651,cs), (200,689,o), (170,721,o), (134,721,cs), (97,721,o), (65,689,o), (65,651,cs), (65,625,o), (79,579,o), (113,459,c) ); } ); width = 473; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (346,465,l), (359,499,o), (410,621,o), (414,658,c), (419,696,o), (395,720,o), (364,720,cs), (331,720,o), (301,696,o), (296,658,c), (292,621,o), (314,499,o), (317,465,c) ); }, { closed = 1; nodes = ( (180,465,l), (193,499,o), (244,621,o), (248,658,c), (253,696,o), (229,720,o), (198,720,cs), (165,720,o), (135,696,o), (130,658,c), (126,621,o), (148,499,o), (151,465,c) ); } ); width = 444; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (440,401,l), (458,449,o), (526,579,o), (532,632,c), (539,687,o), (504,721,o), (459,721,cs), (413,721,o), (370,687,o), (363,632,c), (357,579,o), (395,449,o), (399,401,c) ); }, { closed = 1; nodes = ( (204,401,l), (221,449,o), (289,579,o), (295,632,c), (302,687,o), (267,721,o), (224,721,cs), (176,721,o), (133,687,o), (126,632,c), (120,579,o), (158,449,o), (163,401,c) ); } ); width = 566; } ); unicode = 34; }, { glyphname = quotesingle; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (178,490,l), (189,519,o), (234,635,o), (238,667,c), (242,699,o), (222,720,o), (195,720,cs), (166,720,o), (140,699,o), (136,667,c), (132,635,o), (150,519,o), (153,490,c) ); } ); width = 272; }, { associatedMasterId = m01; layerId = "9EC1078A-27A8-4ABD-A85E-C1F27DFD7ADE"; name = foreground; shapes = ( { closed = 1; nodes = ( (158,459,l), (191,579,o), (205,624,o), (205,651,cs), (205,689,o), (175,721,o), (139,721,cs), (102,721,o), (70,689,o), (70,651,cs), (70,625,o), (84,579,o), (118,459,c) ); } ); width = 282; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (180,465,l), (193,499,o), (244,621,o), (248,658,c), (253,696,o), (229,720,o), (198,720,cs), (165,720,o), (135,696,o), (130,658,c), (126,621,o), (148,499,o), (151,465,c) ); } ); width = 278; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (204,401,l), (221,449,o), (289,579,o), (295,632,c), (302,687,o), (267,721,o), (224,721,cs), (176,721,o), (133,687,o), (126,632,c), (120,579,o), (158,449,o), (163,401,c) ); } ); width = 329; } ); unicode = 39; }, { glyphname = baht; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (299,0,ls), (451,0,o), (545,70,o), (560,197,cs), (571,283,o), (530,343,o), (439,365,c), (500,383,o), (551,437,o), (562,524,cs), (576,637,o), (510,701,o), (374,701,cs), (155,701,l), (69,0,l) ); }, { closed = 1; nodes = ( (295,-91,l), (403,791,l), (343,791,l), (235,-91,l) ); }, { closed = 1; nodes = ( (170,330,l), (170,330,o), (359,330,o), (359,330,cs), (448,330,o), (508,275,o), (498,197,cs), (488,108,o), (418,56,o), (316,56,cs), (136,56,l) ); }, { closed = 1; nodes = ( (208,645,l), (208,645,o), (362,645,o), (362,645,cs), (473,645,o), (508,596,o), (500,523,cs), (489,437,o), (429,386,o), (332,386,cs), (177,386,l) ); } ); width = 627; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (312,0,ls), (477,0,o), (565,73,o), (581,200,cs), (592,287,o), (551,344,o), (459,366,c), (520,384,o), (569,424,o), (581,521,cs), (596,637,o), (527,701,o), (390,701,cs), (165,701,l), (79,0,l) ); }, { closed = 1; nodes = ( (323,-91,l), (431,791,l), (351,791,l), (243,-91,l) ); }, { closed = 1; nodes = ( (206,319,l), (206,319,o), (361,319,o), (361,319,cs), (453,319,o), (497,267,o), (489,200,cs), (479,120,o), (419,80,o), (322,80,cs), (177,80,l) ); }, { closed = 1; nodes = ( (244,621,l), (244,621,o), (376,621,o), (376,621,cs), (449,621,o), (498,587,o), (490,520,cs), (480,435,o), (422,399,o), (349,399,cs), (216,399,l) ); } ); width = 645; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (371,0,ls), (542,0,o), (635,77,o), (651,204,cs), (661,283,o), (621,341,o), (545,363,c), (593,386,o), (640,434,o), (650,518,cs), (663,620,o), (597,701,o), (449,701,cs), (164,701,l), (78,0,l) ); }, { closed = 1; nodes = ( (368,-112,l), (482,812,l), (342,812,l), (228,-112,l) ); }, { closed = 1; nodes = ( (260,293,l), (260,293,o), (397,293,o), (397,293,c), (464,293,o), (504,264,o), (498,211,cs), (490,145,o), (443,126,o), (366,126,cs), (239,126,l) ); }, { closed = 1; nodes = ( (294,575,l), (294,575,o), (415,575,o), (415,575,cs), (471,575,o), (501,549,o), (496,504,cs), (488,441,o), (452,419,o), (397,419,cs), (275,419,l) ); } ); width = 679; }, { associatedMasterId = m003; attr = { axisRules = ( { min = 600; } ); }; layerId = "146F865F-F0A7-457A-8702-6F6D77ADE7D3"; name = "7 Nov 24 at 18:15"; shapes = ( { closed = 1; nodes = ( (402,0,ls), (573,0,o), (657,77,o), (657,204,cs), (657,283,o), (610,341,o), (532,363,c), (577,386,o), (618,434,o), (618,518,cs), (618,620,o), (542,701,o), (394,701,cs), (109,701,l), (109,0,l) ); }, { closed = 1; nodes = ( (413,653,l), (413,812,l), (273,812,l), (273,653,l) ); }, { closed = 1; nodes = ( (255,293,l), (255,293,o), (392,293,o), (392,293,c), (459,293,o), (503,264,o), (503,211,cs), (503,145,o), (459,126,o), (382,126,cs), (255,126,l) ); }, { closed = 1; nodes = ( (255,575,l), (255,575,o), (376,575,o), (376,575,cs), (432,575,o), (465,549,o), (465,504,cs), (465,441,o), (432,419,o), (377,419,cs), (255,419,l) ); }, { closed = 1; nodes = ( (273,25,l), (273,-112,l), (413,-112,l), (413,25,l) ); } ); width = 679; }, { associatedMasterId = m002; attr = { axisRules = ( { min = 600; } ); }; layerId = "58BBDCE9-3238-4861-830D-775DCFB9C0AA"; name = "7 Nov 24 at 18:15"; shapes = ( { closed = 1; nodes = ( (343,0,ls), (508,0,o), (587,73,o), (587,200,cs), (587,287,o), (539,344,o), (445,366,c), (504,384,o), (548,424,o), (548,521,cs), (548,637,o), (472,701,o), (335,701,cs), (110,701,l), (110,0,l) ); }, { closed = 1; nodes = ( (365,649,l), (365,791,l), (285,791,l), (285,649,l) ); }, { closed = 1; nodes = ( (198,319,l), (198,319,o), (353,319,o), (353,319,cs), (445,319,o), (495,267,o), (495,200,cs), (495,120,o), (440,80,o), (343,80,cs), (198,80,l) ); }, { closed = 1; nodes = ( (198,621,l), (198,621,o), (330,621,o), (330,621,cs), (403,621,o), (457,587,o), (457,520,cs), (457,435,o), (404,399,o), (331,399,cs), (198,399,l) ); }, { closed = 1; nodes = ( (285,49,l), (285,-91,l), (365,-91,l), (365,49,l) ); } ); width = 645; }, { associatedMasterId = m01; attr = { axisRules = ( { min = 600; } ); }; layerId = "D6CB5547-73D4-4B35-8ABC-68B8B3C69349"; name = "7 Nov 24 at 18:15"; shapes = ( { closed = 1; nodes = ( (330,0,ls), (482,0,o), (567,70,o), (567,197,cs), (567,283,o), (519,343,o), (425,365,c), (484,383,o), (528,437,o), (528,524,cs), (528,637,o), (455,701,o), (319,701,cs), (100,701,l), (100,0,l) ); }, { closed = 1; nodes = ( (337,671,l), (337,791,l), (277,791,l), (277,671,l) ); }, { closed = 1; nodes = ( (160,330,l), (160,330,o), (349,330,o), (349,330,cs), (438,330,o), (505,275,o), (505,197,cs), (505,108,o), (442,56,o), (340,56,cs), (160,56,l) ); }, { closed = 1; nodes = ( (160,645,l), (160,645,o), (314,645,o), (314,645,cs), (425,645,o), (466,596,o), (466,523,cs), (466,437,o), (412,386,o), (315,386,cs), (160,386,l) ); }, { closed = 1; nodes = ( (277,31,l), (277,-91,l), (337,-91,l), (337,31,l) ); } ); width = 627; } ); unicode = 3647; }, { glyphname = at; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (329,129,o), (291,180,o), (315,287,cs), (332,373,o), (397,442,o), (470,442,cs), (517,442,o), (577,396,o), (551,285,cs), (527,176,o), (449,129,o), (387,129,cs) ); }, { closed = 1; nodes = ( (765,80,o), (834,213,o), (851,348,cs), (873,529,o), (771,712,o), (513,712,cs), (250,712,o), (82,512,o), (54,279,cs), (26,57,o), (148,-141,o), (412,-141,cs), (553,-141,o), (654,-94,o), (738,-35,c), (714,17,l), (627,-45,o), (531,-85,o), (419,-85,cs), (218,-85,o), (90,67,o), (116,281,cs), (143,502,o), (309,656,o), (506,656,cs), (698,656,o), (811,530,o), (789,348,cs), (772,210,o), (713,134,o), (648,134,cs), (614,134,o), (579,155,o), (591,207,c), (663,481,l), (596,481,l), (579,406,l), (573,450,o), (532,492,o), (471,492,cs), (376,492,o), (285,418,o), (255,285,cs), (225,155,o), (289,79,o), (376,79,cs), (434,79,o), (505,114,o), (530,161,c), (536,116,o), (569,80,o), (633,80,cs) ); } ); width = 889; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (353,148,o), (334,214,o), (350,284,cs), (368,354,o), (416,416,o), (486,416,cs), (562,416,o), (583,350,o), (567,280,cs), (550,211,o), (499,148,o), (421,148,cs) ); }, { closed = 1; nodes = ( (815,72,o), (884,249,o), (896,348,cs), (919,539,o), (792,712,o), (538,712,cs), (276,712,o), (92,512,o), (64,279,cs), (36,57,o), (152,-151,o), (432,-151,cs), (569,-151,o), (655,-118,o), (749,-56,c), (716,14,l), (634,-45,o), (548,-70,o), (442,-70,cs), (229,-70,o), (127,84,o), (151,281,cs), (175,478,o), (332,632,o), (528,632,cs), (712,632,o), (832,512,o), (812,348,cs), (802,264,o), (754,149,o), (670,149,cs), (646,149,o), (622,170,o), (628,204,c), (696,483,l), (622,483,l), (603,404,l), (594,461,o), (543,492,o), (493,492,cs), (373,492,o), (291,388,o), (265,293,cs), (234,175,o), (285,72,o), (390,72,cs), (445,72,o), (518,102,o), (547,144,c), (555,106,o), (586,72,o), (650,72,cs) ); } ); width = 944; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (413,162,o), (394,217,o), (410,280,cs), (425,335,o), (462,372,o), (511,372,cs), (573,372,o), (585,322,o), (572,270,cs), (555,201,o), (519,162,o), (468,162,cs) ); }, { closed = 1; nodes = ( (794,55,o), (934,171,o), (955,340,cs), (980,550,o), (838,712,o), (560,712,cs), (285,712,o), (85,519,o), (53,264,cs), (24,23,o), (168,-183,o), (453,-183,cs), (595,-183,o), (702,-149,o), (797,-88,c), (752,14,l), (657,-39,o), (578,-61,o), (468,-61,cs), (281,-61,o), (167,70,o), (192,267,cs), (212,435,o), (364,590,o), (545,590,cs), (715,590,o), (839,519,o), (817,340,cs), (805,248,o), (758,176,o), (713,176,cs), (680,176,o), (681,207,o), (690,245,cs), (738,469,l), (619,469,l), (605,403,l), (594,445,o), (563,478,o), (504,478,cs), (412,478,o), (308,407,o), (278,276,cs), (249,150,o), (314,54,o), (418,54,cs), (516,54,o), (558,126,o), (579,167,c), (564,106,o), (627,55,o), (676,55,cs) ); } ); width = 996; } ); unicode = 64; }, { glyphname = ampersand; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (478,-13,o), (578,171,o), (599,336,c), (541,336,l), (522,187,o), (435,43,o), (285,43,cs), (179,43,o), (127,109,o), (135,173,cs), (145,255,o), (212,299,o), (316,364,cs), (431,435,o), (494,504,o), (502,570,cs), (512,653,o), (461,712,o), (365,712,cs), (264,712,o), (197,638,o), (187,556,cs), (175,465,o), (218,416,o), (247,376,c), (551,0,l), (600,40,l), (299,413,l), (267,453,o), (241,492,o), (249,556,cs), (254,602,o), (287,656,o), (357,656,cs), (415,656,o), (447,622,o), (440,570,cs), (435,525,o), (393,480,o), (285,411,cs), (143,321,o), (85,271,o), (73,173,cs), (59,62,o), (140,-13,o), (282,-13,cs) ); } ); width = 693; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (492,-12,o), (607,180,o), (630,347,c), (548,347,l), (530,214,o), (442,70,o), (294,70,cs), (198,70,o), (157,124,o), (164,188,cs), (174,270,o), (234,306,o), (327,343,cs), (439,387,o), (516,485,o), (525,556,cs), (536,650,o), (468,713,o), (371,713,cs), (255,713,o), (188,638,o), (176,544,cs), (166,460,o), (201,420,o), (230,380,c), (564,0,l), (630,56,l), (309,424,l), (281,463,o), (262,491,o), (268,540,cs), (273,585,o), (308,633,o), (360,633,cs), (400,633,o), (438,603,o), (433,556,cs), (427,510,o), (393,449,o), (298,412,cs), (152,355,o), (85,290,o), (72,184,cs), (58,73,o), (138,-12,o), (284,-12,cs) ); } ); width = 706; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (523,-12,o), (651,210,o), (671,375,c), (539,375,l), (522,238,o), (430,113,o), (315,113,cs), (234,113,o), (203,150,o), (209,194,cs), (215,243,o), (244,263,o), (344,317,cs), (474,388,o), (559,467,o), (568,542,cs), (582,656,o), (497,713,o), (384,713,cs), (261,713,o), (170,635,o), (158,542,cs), (148,457,o), (172,420,o), (201,380,c), (574,-12,l), (675,80,l), (353,426,l), (324,466,o), (301,488,o), (307,535,cs), (311,568,o), (338,592,o), (369,592,cs), (400,592,o), (422,568,o), (418,535,cs), (414,506,o), (370,462,o), (293,418,cs), (155,339,o), (70,290,o), (58,188,cs), (43,70,o), (121,-12,o), (299,-12,cs) ); } ); width = 732; } ); unicode = 38; }, { glyphname = paragraph; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (513,0,l), (520,56,l), (433,56,l), (505,644,l), (592,644,l), (599,700,l), (267,700,ls), (197,700,o), (108,637,o), (95,535,cs), (82,429,o), (157,371,o), (227,371,c), (181,0,l) ); }, { closed = 1; nodes = ( (320,644,l), (445,644,l), (373,54,l), (248,54,l) ); } ); width = 612; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (572,0,l), (582,80,l), (463,80,l), (529,620,l), (648,620,l), (658,700,l), (279,700,ls), (197,700,o), (108,637,o), (95,535,cs), (82,429,o), (157,371,o), (239,371,c), (193,0,l) ); }, { closed = 1; nodes = ( (357,620,l), (441,620,l), (375,78,l), (291,78,l) ); } ); width = 669; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (716,0,l), (731,126,l), (612,126,l), (667,574,l), (786,574,l), (802,700,l), (274,700,ls), (192,700,o), (100,628,o), (87,526,cs), (74,420,o), (149,352,o), (231,352,c), (188,0,l) ); }, { closed = 1; nodes = ( (404,574,l), (521,574,l), (466,124,l), (349,124,l) ); } ); width = 807; } ); unicode = 182; }, { glyphname = section; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (358,85,o), (435,170,o), (444,241,cs), (469,443,o), (146,445,o), (160,562,cs), (166,605,o), (203,657,o), (294,657,cs), (366,657,o), (413,614,o), (407,565,c), (466,565,l), (473,628,o), (429,712,o), (302,712,cs), (180,712,o), (109,649,o), (98,559,cs), (78,395,o), (401,400,o), (382,241,cs), (375,188,o), (296,131,o), (255,124,c), (267,76,l) ); }, { closed = 1; nodes = ( (307,-184,o), (374,-121,o), (385,-31,cs), (405,131,o), (91,129,o), (111,288,cs), (118,344,o), (190,400,o), (232,407,c), (226,452,l), (135,443,o), (58,360,o), (49,288,cs), (24,86,o), (337,83,o), (323,-34,cs), (318,-77,o), (283,-129,o), (192,-129,cs), (117,-129,o), (71,-86,o), (77,-37,c), (18,-37,l), (10,-100,o), (55,-184,o), (185,-184,cs) ); } ); width = 489; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (383,82,o), (461,156,o), (472,240,cs), (494,417,o), (184,439,o), (198,552,cs), (203,595,o), (240,635,o), (305,635,cs), (377,635,o), (411,599,o), (407,565,c), (493,565,l), (500,628,o), (461,712,o), (316,712,cs), (194,712,o), (123,623,o), (114,549,cs), (90,358,o), (402,363,o), (387,240,cs), (380,187,o), (322,146,o), (280,139,c), (292,73,l) ); }, { closed = 1; nodes = ( (332,-205,o), (403,-116,o), (412,-42,cs), (436,150,o), (125,150,o), (140,271,cs), (146,320,o), (187,356,o), (241,373,c), (234,434,l), (142,425,o), (64,351,o), (55,271,cs), (33,95,o), (342,69,o), (328,-45,cs), (323,-87,o), (286,-128,o), (221,-128,cs), (149,-128,o), (115,-92,o), (119,-58,c), (33,-58,l), (25,-121,o), (65,-205,o), (210,-205,cs) ); } ); width = 525; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (510,90,o), (581,146,o), (590,221,cs), (621,472,o), (226,428,o), (238,519,cs), (243,564,o), (292,583,o), (353,583,cs), (409,583,o), (458,554,o), (463,479,c), (619,479,l), (620,594,o), (563,713,o), (369,713,cs), (210,713,o), (100,651,o), (83,514,cs), (59,322,o), (461,340,o), (445,212,cs), (436,143,o), (341,124,o), (341,124,c), (463,72,l) ); }, { closed = 1; nodes = ( (415,-230,o), (525,-166,o), (542,-29,cs), (565,156,o), (167,150,o), (182,270,cs), (191,342,o), (284,359,o), (284,359,c), (162,411,l), (115,393,o), (46,336,o), (37,261,cs), (7,18,o), (397,43,o), (387,-41,cs), (381,-90,o), (333,-100,o), (272,-100,cs), (216,-100,o), (167,-71,o), (162,4,c), (6,4,l), (5,-111,o), (62,-230,o), (256,-230,cs) ); } ); width = 630; } ); unicode = 167; }, { glyphname = copyright; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (570,-12,o), (719,164,o), (743,353,cs), (766,544,o), (660,720,o), (438,720,cs), (216,720,o), (66,544,o), (43,353,cs), (19,164,o), (126,-12,o), (348,-12,cs) ); }, { closed = 1; nodes = ( (189,44,o), (82,170,o), (105,354,cs), (127,532,o), (264,664,o), (431,664,cs), (598,664,o), (703,532,o), (681,354,cs), (658,170,o), (521,44,o), (355,44,cs) ); }, { closed = 1; nodes = ( (451,153,o), (502,191,o), (536,253,c), (485,274,l), (464,231,o), (426,206,o), (380,206,cs), (302,206,o), (266,269,o), (277,353,cs), (287,435,o), (336,498,o), (415,498,cs), (461,498,o), (494,474,o), (504,431,c), (561,451,l), (542,515,o), (491,551,o), (424,551,cs), (328,551,o), (235,484,o), (218,351,cs), (202,219,o), (279,153,o), (375,153,cs) ); } ); width = 760; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (618,-12,o), (767,164,o), (791,353,cs), (814,544,o), (708,720,o), (482,720,cs), (256,720,o), (106,544,o), (83,353,cs), (59,164,o), (166,-12,o), (392,-12,cs) ); }, { closed = 1; nodes = ( (246,69,o), (149,184,o), (170,353,cs), (190,518,o), (315,640,o), (472,640,cs), (629,640,o), (725,518,o), (705,353,cs), (684,184,o), (558,69,o), (402,69,cs) ); }, { closed = 1; nodes = ( (484,151,o), (547,188,o), (581,252,c), (518,279,l), (499,242,o), (469,227,o), (426,227,cs), (365,227,o), (336,279,o), (345,353,cs), (353,423,o), (391,478,o), (457,478,cs), (496,478,o), (526,463,o), (535,425,c), (605,448,l), (587,512,o), (534,554,o), (466,554,cs), (370,554,o), (276,477,o), (260,351,cs), (245,228,o), (321,151,o), (417,151,cs) ); } ); width = 848; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (638,-13,o), (788,164,o), (811,353,cs), (835,544,o), (728,719,o), (487,720,cs), (245,721,o), (96,545,o), (72,354,cs), (49,165,o), (155,-11,o), (397,-12,cs) ); }, { closed = 1; nodes = ( (275,109,o), (178,211,o), (195,354,cs), (212,493,o), (325,601,o), (472,600,cs), (619,599,o), (705,492,o), (688,353,cs), (671,210,o), (558,107,o), (412,108,cs) ); }, { closed = 1; nodes = ( (494,175,o), (559,214,o), (589,274,c), (506,314,l), (492,289,o), (467,279,o), (442,279,cs), (399,279,o), (381,312,o), (386,355,cs), (391,394,o), (417,428,o), (460,428,cs), (484,428,o), (505,420,o), (516,392,c), (608,433,l), (592,493,o), (539,532,o), (474,532,cs), (372,532,o), (290,466,o), (276,352,cs), (262,241,o), (326,175,o), (430,175,cs) ); } ); width = 859; } ); unicode = 169; }, { glyphname = registered; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (374,276,o), (466,382,o), (480,494,cs), (494,607,o), (428,712,o), (293,712,cs), (158,712,o), (66,607,o), (52,494,cs), (38,382,o), (104,276,o), (239,276,cs) ); }, { closed = 1; nodes = ( (147,318,o), (83,387,o), (96,494,cs), (108,596,o), (191,670,o), (288,670,cs), (385,670,o), (447,596,o), (435,494,cs), (422,387,o), (341,318,o), (244,318,cs) ); }, { closed = 1; nodes = ( (304,381,l), (348,381,l), (301,475,l), (261,471,l) ); }, { closed = 1; nodes = ( (211,381,l), (221,465,l), (269,465,ls), (317,465,o), (352,493,o), (357,537,cs), (363,585,o), (333,613,o), (289,613,cs), (201,613,l), (172,381,l) ); }, { closed = 1; nodes = ( (235,573,l), (287,573,ls), (307,573,o), (320,559,o), (317,538,cs), (315,515,o), (298,505,o), (278,505,cs), (226,505,l) ); } ); width = 472; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (374,276,o), (466,382,o), (480,494,cs), (494,607,o), (428,712,o), (293,712,cs), (158,712,o), (66,607,o), (52,494,cs), (38,382,o), (104,276,o), (239,276,cs) ); }, { closed = 1; nodes = ( (152,326,o), (93,391,o), (106,494,cs), (118,592,o), (194,662,o), (287,662,cs), (380,662,o), (438,592,o), (426,494,cs), (413,391,o), (338,326,o), (245,326,cs) ); }, { closed = 1; nodes = ( (301,381,l), (353,381,l), (306,475,l), (258,471,l) ); }, { closed = 1; nodes = ( (216,381,l), (226,464,l), (271,464,ls), (319,464,o), (354,494,o), (359,538,cs), (365,586,o), (333,613,o), (289,613,cs), (200,613,l), (171,381,l) ); }, { closed = 1; nodes = ( (239,568,l), (283,568,ls), (303,568,o), (314,555,o), (312,539,cs), (310,519,o), (296,508,o), (276,508,cs), (232,508,l) ); } ); width = 472; }, { guides = ( { pos = (-293,319); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (377,262,o), (471,371,o), (486,490,cs), (500,604,o), (432,712,o), (292,712,cs), (152,712,o), (59,612,o), (44,490,cs), (30,379,o), (97,262,o), (237,262,cs) ); }, { closed = 1; nodes = ( (156,325,o), (98,389,o), (110,490,cs), (121,582,o), (196,650,o), (285,650,cs), (374,650,o), (431,582,o), (420,490,cs), (408,389,o), (334,325,o), (245,325,cs) ); }, { closed = 1; nodes = ( (293,374,l), (352,374,l), (304,466,l), (250,462,l) ); }, { closed = 1; nodes = ( (223,374,l), (232,452,l), (272,452,ls), (320,452,o), (351,485,o), (357,531,cs), (363,581,o), (332,606,o), (289,606,cs), (197,606,l), (169,374,l) ); }, { closed = 1; nodes = ( (244,555,l), (277,555,ls), (296,555,o), (304,543,o), (304,530,cs), (303,513,o), (291,503,o), (271,503,cs), (239,503,l) ); } ); width = 472; } ); unicode = 174; }, { glyphname = trademark; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (414,319,l), (450,609,l), (515,367,l), (551,367,l), (690,609,l), (654,319,l), (712,319,l), (759,700,l), (687,700,l), (546,453,l), (474,700,l), (403,700,l), (356,319,l) ); }, { closed = 1; nodes = ( (192,319,l), (233,648,l), (339,648,l), (345,700,l), (75,700,l), (69,648,l), (173,648,l), (132,319,l) ); } ); width = 724; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (454,319,l), (485,570,l), (553,351,l), (594,351,l), (716,570,l), (685,319,l), (761,319,l), (808,700,l), (718,700,l), (590,475,l), (516,700,l), (425,700,l), (378,319,l) ); }, { closed = 1; nodes = ( (220,319,l), (259,636,l), (366,636,l), (374,700,l), (85,700,l), (77,636,l), (181,636,l), (142,319,l) ); } ); width = 783; }, { guides = ( { pos = (-112,319); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (516,319,l), (541,522,l), (600,349,l), (645,349,l), (746,522,l), (721,319,l), (827,319,l), (874,700,l), (765,700,l), (640,492,l), (566,700,l), (457,700,l), (410,319,l) ); }, { closed = 1; nodes = ( (248,319,l), (283,604,l), (388,604,l), (400,700,l), (85,700,l), (73,604,l), (175,604,l), (140,319,l) ); } ); width = 849; } ); unicode = 8482; }, { glyphname = degree; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (297,444,o), (354,511,o), (363,582,cs), (372,655,o), (331,720,o), (246,720,cs), (162,720,o), (105,655,o), (96,582,cs), (87,511,o), (128,444,o), (212,444,cs) ); }, { closed = 1; nodes = ( (169,495,o), (139,531,o), (145,582,cs), (151,632,o), (191,670,o), (240,670,cs), (290,670,o), (320,632,o), (314,582,cs), (308,531,o), (268,495,o), (218,495,cs) ); } ); width = 377; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (297,434,o), (356,503,o), (365,576,cs), (374,652,o), (332,720,o), (244,720,cs), (157,720,o), (97,652,o), (88,576,cs), (79,503,o), (122,434,o), (209,434,cs) ); }, { closed = 1; nodes = ( (171,496,o), (143,529,o), (149,576,cs), (155,624,o), (191,658,o), (236,658,cs), (282,658,o), (310,624,o), (304,576,cs), (298,529,o), (262,496,o), (216,496,cs) ); } ); width = 373; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (299,419,o), (361,492,o), (371,569,cs), (380,649,o), (336,720,o), (243,720,cs), (151,720,o), (89,649,o), (80,569,cs), (70,492,o), (114,419,o), (206,419,cs) ); }, { closed = 1; nodes = ( (181,504,o), (157,532,o), (162,569,cs), (166,606,o), (197,634,o), (233,634,c), (270,634,o), (293,606,o), (289,569,c), (284,532,o), (254,504,o), (217,504,cs) ); } ); width = 373; } ); unicode = 176; }, { glyphname = bar; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (175,-160); }, { pos = (144,775); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (105,-160,l), (219,775,l), (164,775,l), (50,-160,l) ); } ); width = 255; }, { guides = ( { pos = (-259,-160); }, { pos = (-259,776); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (127,-160,l), (242,776,l), (162,776,l), (47,-160,l) ); } ); width = 274; }, { guides = ( { pos = (-305,-159); }, { pos = (-57,775); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (179,-159,l), (294,775,l), (164,775,l), (49,-159,l) ); } ); width = 330; } ); unicode = 124; }, { glyphname = numero; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (129,0,l), (210,656,l), (179,656,l), (475,0,l), (550,0,l), (636,700,l), (576,700,l), (496,44,l), (527,44,l), (231,700,l), (155,700,l), (69,0,l) ); }, { closed = 1; nodes = ( (683,249,l), (977,248,l), (984,307,l), (690,308,l) ); }, { closed = 1; nodes = ( (924,370,o), (999,429,o), (1013,541,cs), (1026,653,o), (966,712,o), (885,712,cs), (804,712,o), (728,653,o), (715,541,cs), (701,429,o), (762,370,o), (843,370,cs) ); }, { closed = 1; nodes = ( (794,427,o), (765,470,o), (774,540,cs), (782,610,o), (822,656,o), (878,656,cs), (934,656,o), (962,611,o), (954,541,cs), (945,471,o), (906,427,o), (850,427,cs) ); } ); width = 1094; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (153,0,l), (230,623,l), (200,623,l), (463,0,l), (572,0,l), (658,700,l), (570,700,l), (494,77,l), (524,77,l), (273,700,l), (151,700,l), (65,0,l) ); }, { closed = 1; nodes = ( (698,232,l), (1020,231,l), (1029,307,l), (707,308,l) ); }, { closed = 1; nodes = ( (964,354,o), (1042,416,o), (1057,533,cs), (1071,650,o), (1008,712,o), (918,712,cs), (828,712,o), (749,650,o), (735,533,cs), (720,416,o), (784,354,o), (874,354,c) ); }, { closed = 1; nodes = ( (827,428,o), (800,468,o), (808,532,cs), (815,596,o), (853,639,o), (909,639,cs), (965,639,o), (992,597,o), (984,533,cs), (976,469,o), (939,428,o), (883,428,c) ); } ); width = 1124; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (199,0,l), (261,504,l), (229,504,l), (474,0,l), (618,0,l), (704,700,l), (558,700,l), (497,204,l), (529,204,l), (295,700,l), (139,700,l), (53,0,l) ); }, { closed = 1; nodes = ( (736,198,l), (1089,198,l), (1103,308,l), (750,308,l) ); }, { closed = 1; nodes = ( (1022,349,o), (1120,405,o), (1135,530,cs), (1150,657,o), (1070,712,o), (976,712,cs), (888,712,o), (787,657,o), (772,530,cs), (757,405,o), (839,349,o), (932,349,cs) ); }, { closed = 1; nodes = ( (905,456,o), (887,485,o), (893,530,cs), (898,575,o), (924,605,o), (963,605,cs), (1005,605,o), (1019,575,o), (1014,530,cs), (1008,485,o), (987,456,o), (945,456,c) ); } ); width = 1208; } ); unicode = 8470; }, { glyphname = cent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (370,91,o), (428,138,o), (478,224,c), (428,245,l), (401,189,o), (348,141,o), (271,141,cs), (159,141,o), (110,224,o), (126,353,cs), (141,482,o), (211,565,o), (323,565,cs), (399,565,o), (444,516,o), (459,466,c), (513,486,l), (484,571,o), (418,615,o), (329,615,cs), (204,615,o), (89,525,o), (68,353,cs), (47,181,o), (139,91,o), (264,91,cs) ); }, { closed = 1; nodes = ( (271,0,l), (357,700,l), (301,700,l), (215,0,l) ); } ); width = 538; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (365,95,o), (448,143,o), (493,226,c), (421,256,l), (393,205,o), (346,171,o), (286,171,cs), (185,171,o), (145,255,o), (157,359,cs), (170,463,o), (231,544,o), (332,544,cs), (392,544,o), (431,510,o), (446,459,c), (525,489,l), (501,572,o), (431,620,o), (343,620,cs), (217,620,o), (93,520,o), (73,356,cs), (53,195,o), (153,95,o), (279,95,cs) ); }, { closed = 1; nodes = ( (297,0,l), (383,700,l), (303,700,l), (217,0,l) ); } ); width = 556; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (390,87,o), (474,134,o), (525,226,c), (414,272,l), (398,240,o), (358,207,o), (312,207,cs), (240,207,o), (201,262,o), (212,354,cs), (224,446,o), (276,499,o), (348,499,cs), (394,499,o), (426,466,o), (434,434,c), (556,480,l), (528,572,o), (456,619,o), (368,619,cs), (205,619,o), (87,519,o), (66,353,cs), (46,187,o), (139,87,o), (302,87,cs) ); }, { closed = 1; nodes = ( (343,1,l), (429,700,l), (289,700,l), (203,1,l) ); } ); width = 582; }, { associatedMasterId = m003; attr = { axisRules = ( { min = 600; } ); }; layerId = "280F69CE-47B6-4046-8CCF-B9C082780243"; name = "7 Nov 24 at 18:17"; shapes = ( { closed = 1; nodes = ( (411,87,o), (489,134,o), (528,226,c), (412,272,l), (400,240,o), (364,207,o), (318,207,cs), (246,207,o), (200,262,o), (200,354,cs), (200,446,o), (246,499,o), (318,499,cs), (364,499,o), (400,466,o), (412,434,c), (528,480,l), (489,572,o), (411,619,o), (323,619,cs), (160,619,o), (54,519,o), (54,353,cs), (54,187,o), (160,87,o), (323,87,cs) ); }, { closed = 1; nodes = ( (374,601,l), (374,700,l), (234,700,l), (234,601,l) ); }, { closed = 1; nodes = ( (234,100,l), (234,1,l), (374,1,l), (374,100,l) ); } ); width = 582; }, { associatedMasterId = m002; attr = { axisRules = ( { min = 600; } ); }; layerId = "3A6FAC1D-FADA-40F9-92A1-43A177BC82EB"; name = "7 Nov 24 at 18:18"; shapes = ( { closed = 1; nodes = ( (384,95,o), (461,143,o), (496,226,c), (420,256,l), (399,205,o), (356,171,o), (296,171,cs), (195,171,o), (144,255,o), (144,359,cs), (144,463,o), (195,544,o), (296,544,cs), (356,544,o), (399,510,o), (420,459,c), (496,489,l), (461,572,o), (386,620,o), (298,620,cs), (172,620,o), (60,520,o), (60,356,cs), (60,195,o), (172,95,o), (298,95,cs) ); }, { closed = 1; nodes = ( (328,572,l), (328,700,l), (248,700,l), (248,572,l) ); }, { closed = 1; nodes = ( (248,152,l), (248,0,l), (328,0,l), (328,152,l) ); } ); width = 556; }, { associatedMasterId = m01; attr = { axisRules = ( { min = 600; } ); }; layerId = "A3A43FF9-CB49-45E8-8740-D4BD55CCC712"; name = "7 Nov 24 at 18:18"; shapes = ( { closed = 1; nodes = ( (390,91,o), (442,138,o), (481,224,c), (429,245,l), (408,189,o), (361,141,o), (284,141,cs), (172,141,o), (113,224,o), (113,353,cs), (113,482,o), (172,565,o), (284,565,cs), (360,565,o), (411,516,o), (432,466,c), (484,486,l), (445,571,o), (373,615,o), (284,615,cs), (159,615,o), (55,525,o), (55,353,cs), (55,181,o), (159,91,o), (284,91,cs) ); }, { closed = 1; nodes = ( (302,593,l), (302,700,l), (246,700,l), (246,593,l) ); }, { closed = 1; nodes = ( (246,123,l), (246,0,l), (302,0,l), (302,123,l) ); } ); width = 538; } ); unicode = 162; }, { glyphname = dollar; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (405,-12,o), (517,58,o), (534,195,cs), (564,437,o), (136,337,o), (158,521,cs), (167,591,o), (233,656,o), (340,656,cs), (458,656,o), (499,580,o), (499,513,c), (565,513,l), (571,603,o), (499,712,o), (354,712,cs), (197,712,o), (110,618,o), (98,516,cs), (66,259,o), (497,379,o), (473,186,cs), (464,114,o), (396,44,o), (275,44,cs), (149,44,o), (109,121,o), (105,214,c), (38,214,l), (36,99,o), (101,-12,o), (268,-12,cs) ); }, { closed = 1; nodes = ( (282,-91,l), (390,791,l), (330,791,l), (222,-91,l) ); } ); width = 594; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (421,-12,o), (535,58,o), (552,195,cs), (584,457,o), (177,344,o), (198,521,cs), (207,591,o), (280,632,o), (350,632,cs), (445,632,o), (486,572,o), (488,513,c), (581,513,l), (587,603,o), (520,712,o), (367,712,cs), (207,712,o), (118,618,o), (106,516,cs), (73,246,o), (482,371,o), (459,186,cs), (450,114,o), (374,68,o), (291,68,cs), (196,68,o), (148,129,o), (145,214,c), (48,214,l), (46,99,o), (111,-12,o), (281,-12,cs) ); }, { closed = 1; nodes = ( (306,-91,l), (414,791,l), (334,791,l), (226,-91,l) ); } ); width = 597; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (439,-12,o), (551,58,o), (568,195,c), (600,460,o), (228,385,o), (243,508,cs), (250,567,o), (310,582,o), (354,582,cs), (410,582,o), (444,554,o), (447,505,c), (600,505,l), (606,595,o), (548,712,o), (370,712,cs), (193,712,o), (104,618,o), (91,516,c), (56,226,o), (431,338,o), (413,186,c), (407,142,o), (357,118,o), (296,118,c), (240,118,o), (192,147,o), (187,222,c), (31,222,l), (30,107,o), (86,-12,o), (280,-12,cs) ); }, { closed = 1; nodes = ( (343,-112,l), (457,812,l), (317,812,l), (203,-112,l) ); } ); width = 639; }, { associatedMasterId = m003; attr = { axisRules = ( { min = 600; } ); }; layerId = "A228A55F-5D4A-4BFE-9EA2-05026646E7A9"; name = "7 Nov 24 at 18:19"; shapes = ( { closed = 1; nodes = ( (472,-12,o), (575,58,o), (575,195,c), (575,460,o), (212,385,o), (212,508,cs), (212,567,o), (270,582,o), (314,582,cs), (370,582,o), (407,554,o), (416,505,c), (569,505,l), (564,595,o), (492,712,o), (314,712,cs), (137,712,o), (59,618,o), (59,516,c), (59,226,o), (421,338,o), (421,186,c), (421,142,o), (374,118,o), (313,118,c), (257,118,o), (205,147,o), (191,222,c), (35,222,l), (48,107,o), (119,-12,o), (313,-12,cs) ); }, { closed = 1; nodes = ( (388,653,l), (388,812,l), (248,812,l), (248,653,l) ); }, { closed = 1; nodes = ( (248,25,l), (248,-112,l), (388,-112,l), (388,25,l) ); } ); width = 639; }, { associatedMasterId = m002; attr = { axisRules = ( { min = 600; } ); }; layerId = "977ED246-DC2B-4AB2-93BE-62ADE115E105"; name = "7 Nov 24 at 18:19"; shapes = ( { closed = 1; nodes = ( (453,-12,o), (559,58,o), (559,195,cs), (559,457,o), (165,344,o), (165,521,cs), (165,591,o), (233,632,o), (303,632,cs), (398,632,o), (446,572,o), (456,513,c), (549,513,l), (544,603,o), (463,712,o), (310,712,cs), (150,712,o), (73,618,o), (73,516,cs), (73,246,o), (467,371,o), (467,186,cs), (467,114,o), (396,68,o), (313,68,cs), (218,68,o), (163,129,o), (149,214,c), (52,214,l), (65,99,o), (143,-12,o), (313,-12,cs) ); }, { closed = 1; nodes = ( (348,660,l), (348,791,l), (268,791,l), (268,660,l) ); }, { closed = 1; nodes = ( (268,30,l), (268,-91,l), (348,-91,l), (348,30,l) ); } ); width = 597; }, { associatedMasterId = m01; attr = { axisRules = ( { min = 600; } ); }; layerId = "1E7D3510-5BD8-4C64-BDAD-4DBB14FDB730"; name = "7 Nov 24 at 18:20"; shapes = ( { closed = 1; nodes = ( (437,-12,o), (541,58,o), (541,195,cs), (541,437,o), (125,337,o), (125,521,cs), (125,591,o), (183,656,o), (290,656,cs), (408,656,o), (458,580,o), (467,513,c), (533,513,l), (528,603,o), (442,712,o), (297,712,cs), (140,712,o), (65,618,o), (65,516,cs), (65,259,o), (481,379,o), (481,186,cs), (481,114,o), (421,44,o), (300,44,cs), (174,44,o), (125,121,o), (109,214,c), (42,214,l), (55,99,o), (133,-12,o), (300,-12,cs) ); }, { closed = 1; nodes = ( (324,679,l), (324,791,l), (264,791,l), (264,679,l) ); }, { closed = 1; nodes = ( (264,19,l), (264,-91,l), (324,-91,l), (324,19,l) ); } ); width = 594; } ); unicode = 36; }, { glyphname = euro; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (424,396,l), (431,452,l), (59,452,l), (52,396,l) ); }, { closed = 1; nodes = ( (475,-13,o), (575,76,o), (618,199,c), (559,211,l), (523,117,o), (449,43,o), (360,43,cs), (233,43,o), (163,167,o), (186,357,cs), (209,542,o), (320,657,o), (431,657,cs), (514,657,o), (583,581,o), (589,488,c), (655,501,l), (642,624,o), (568,713,o), (438,713,cs), (255,713,o), (147,541,o), (124,355,cs), (100,163,o), (165,-13,o), (353,-13,cs) ); }, { closed = 1; nodes = ( (407,260,l), (414,316,l), (42,316,l), (35,260,l) ); } ); width = 668; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (433,385,l), (442,465,l), (46,465,l), (37,385,l) ); }, { closed = 1; nodes = ( (471,-13,o), (586,75,o), (629,198,c), (542,216,l), (508,130,o), (434,67,o), (364,67,cs), (247,67,o), (189,194,o), (209,357,cs), (228,512,o), (316,633,o), (433,633,cs), (503,633,o), (562,570,o), (575,484,c), (666,502,l), (653,625,o), (560,713,o), (443,713,cs), (251,713,o), (143,548,o), (119,355,cs), (96,171,o), (161,-13,o), (354,-13,cs) ); }, { closed = 1; nodes = ( (415,241,l), (425,321,l), (29,321,l), (19,241,l) ); } ); width = 660; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (444,376,l), (457,486,l), (54,486,l), (41,376,l) ); }, { closed = 1; nodes = ( (492,-12,o), (601,76,o), (644,199,c), (507,227,l), (485,161,o), (429,119,o), (379,119,cs), (280,119,o), (243,198,o), (263,357,cs), (280,499,o), (331,583,o), (430,583,cs), (486,583,o), (529,532,o), (537,474,c), (681,502,l), (669,625,o), (552,713,o), (446,713,cs), (244,713,o), (132,549,o), (108,355,cs), (86,171,o), (139,-12,o), (363,-12,cs) ); }, { closed = 1; nodes = ( (424,211,l), (437,321,l), (34,321,l), (21,211,l) ); } ); width = 677; }, { associatedMasterId = m002; layerId = "7BD3C881-F3A6-4A11-830F-50E4BCAEA752"; name = "5 Aug 24 at 14:37"; shapes = ( { closed = 1; nodes = ( (506,-13,o), (575,171,o), (575,354,cs), (575,547,o), (504,712,o), (296,712,cs), (86,712,o), (15,547,o), (15,354,cs), (15,171,o), (84,-13,o), (296,-13,cs) ); }, { closed = 1; nodes = ( (156,67,o), (107,197,o), (107,355,cs), (107,516,o), (156,632,o), (297,632,cs), (432,632,o), (483,516,o), (483,355,cs), (483,197,o), (432,67,o), (296,67,cs) ); } ); width = 600; }, { associatedMasterId = m003; layerId = "EA768BBE-DB56-4D11-87BD-F07499E3EA9D"; name = "5 Aug 24 at 14:41"; shapes = ( { closed = 1; nodes = ( (50,-13,o), (-37,161,o), (-37,354,cs), (-37,557,o), (52,712,o), (267,712,cs), (479,712,o), (568,557,o), (568,354,cs), (568,161,o), (481,-13,o), (267,-13,c) ); }, { closed = 1; nodes = ( (147,582,o), (103,500,o), (103,355,cs), (103,213,o), (147,117,o), (267,117,cs), (383,117,o), (428,213,o), (428,355,cs), (428,500,o), (383,582,o), (268,582,cs) ); } ); width = 600; }, { associatedMasterId = m01; layerId = "8C681B85-91CA-4D47-BC45-2B848EF584BC"; name = "5 Aug 24 at 14:47"; shapes = ( { closed = 1; nodes = ( (512,-13,o), (575,171,o), (575,354,cs), (575,547,o), (510,712,o), (296,712,cs), (81,712,o), (15,547,o), (15,354,cs), (15,171,o), (79,-13,o), (296,-13,cs) ); }, { closed = 1; nodes = ( (136,42,o), (77,177,o), (77,355,cs), (77,536,o), (136,657,o), (297,657,cs), (452,657,o), (513,536,o), (513,355,cs), (513,177,o), (452,42,o), (296,42,cs) ); } ); width = 600; } ); unicode = 8364; }, { glyphname = rupeeIndian; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (449,0,l), (180,298,l), (247,298,ls), (388,297,o), (487,388,o), (501,500,cs), (518,643,o), (413,682,o), (294,682,cs), (143,682,l), (138,644,l), (285,644,ls), (389,644,o), (451,602,o), (439,500,cs), (428,413,o), (352,353,o), (254,353,cs), (103,353,l), (96,301,l), (368,0,l) ); }, { closed = 1; nodes = ( (564,468,l), (571,524,l), (124,524,l), (117,468,l) ); }, { closed = 1; nodes = ( (585,644,l), (592,700,l), (145,700,l), (138,644,l) ); } ); width = 591; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (463,0,l), (193,267,l), (261,267,ls), (396,266,o), (490,362,o), (505,485,cs), (517,585,o), (447,685,o), (271,685,cs), (135,685,l), (127,620,l), (287,620,ls), (376,620,o), (424,558,o), (415,485,cs), (403,389,o), (343,346,o), (253,346,cs), (88,346,l), (78,270,l), (349,0,l) ); }, { closed = 1; nodes = ( (569,443,l), (579,523,l), (111,523,l), (101,443,l) ); }, { closed = 1; nodes = ( (590,620,l), (600,700,l), (133,700,l), (123,620,l) ); } ); width = 578; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (500,0,l), (251,225,l), (257,225,l), (396,237,o), (490,322,o), (508,464,cs), (525,606,o), (408,679,o), (265,679,cs), (132,679,l), (120,578,l), (270,578,ls), (333,578,o), (368,531,o), (360,464,cs), (351,390,o), (306,350,o), (242,350,cs), (92,350,l), (76,225,l), (319,0,l) ); }, { closed = 1; nodes = ( (587,409,l), (601,519,l), (113,519,l), (99,409,l) ); }, { closed = 1; nodes = ( (609,591,l), (623,701,l), (135,701,l), (121,591,l) ); } ); width = 588; } ); unicode = 8377; }, { glyphname = sterling; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (457,0,l), (464,56,l), (105,56,l), (131,73,o), (217,161,o), (232,285,cs), (247,406,o), (152,440,o), (163,528,cs), (173,608,o), (237,656,o), (315,656,cs), (399,656,o), (459,600,o), (449,519,c), (509,519,l), (513,555,o), (509,589,o), (497,615,cs), (468,677,o), (401,712,o), (321,712,cs), (206,712,o), (118,647,o), (103,528,cs), (89,413,o), (182,377,o), (170,285,cs), (155,163,o), (82,95,o), (24,56,c), (17,0,l) ); }, { closed = 1; nodes = ( (373,276,l), (380,332,l), (46,332,l), (39,276,l) ); } ); width = 513; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (461,0,l), (471,80,l), (135,80,l), (161,97,o), (236,175,o), (248,274,cs), (263,395,o), (169,440,o), (180,528,cs), (187,584,o), (242,632,o), (320,632,c), (398,632,o), (436,576,o), (429,519,c), (517,519,l), (521,555,o), (517,589,o), (505,615,c), (476,677,o), (409,712,o), (329,712,c), (214,712,o), (109,647,o), (94,528,cs), (80,413,o), (173,377,o), (161,285,cs), (149,188,o), (82,119,o), (24,80,c), (14,0,l) ); }, { closed = 1; nodes = ( (394,266,l), (404,346,l), (49,346,l), (39,266,l) ); } ); width = 516; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (484,0,l), (499,126,l), (200,126,l), (226,143,o), (285,197,o), (297,296,cs), (312,417,o), (228,437,o), (238,513,cs), (239,519,o), (250,582,o), (328,582,cs), (390,582,o), (408,545,o), (401,494,c), (531,494,l), (536,530,o), (534,589,o), (522,615,cs), (494,677,o), (417,712,o), (343,712,cs), (205,712,o), (100,649,o), (86,528,cs), (72,413,o), (156,399,o), (145,307,cs), (133,210,o), (79,165,o), (21,126,c), (6,0,l) ); }, { closed = 1; nodes = ( (424,254,l), (438,364,l), (48,364,l), (34,254,l) ); } ); width = 533; } ); unicode = 163; }, { glyphname = yen; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (276,0,l), (309,294,l), (593,700,l), (526,700,l), (288,350,l), (135,700,l), (61,700,l), (252,294,l), (213,0,l) ); }, { closed = 1; nodes = ( (446,130,l), (453,186,l), (76,186,l), (69,130,l) ); }, { closed = 1; nodes = ( (463,266,l), (470,322,l), (93,322,l), (86,266,l) ); } ); width = 544; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (296,0,l), (331,309,l), (608,700,l), (515,700,l), (298,390,l), (160,700,l), (60,700,l), (249,309,l), (208,0,l) ); }, { closed = 1; nodes = ( (468,134,l), (478,214,l), (73,214,l), (63,134,l) ); }, { closed = 1; nodes = ( (485,278,l), (495,358,l), (90,358,l), (80,278,l) ); } ); width = 558; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (356,0,l), (388,289,l), (680,700,l), (522,700,l), (332,411,l), (216,700,l), (55,700,l), (247,289,l), (209,0,l) ); }, { closed = 1; nodes = ( (535,109,l), (549,219,l), (69,219,l), (55,109,l) ); }, { closed = 1; nodes = ( (555,274,l), (569,384,l), (89,384,l), (75,274,l) ); } ); width = 625; } ); unicode = 165; }, { glyphname = dotmath; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m002; shapes = ( { closed = 1; nodes = ( (188,239,o), (220,268,o), (225,304,cs), (229,340,o), (204,369,o), (168,369,cs), (132,369,o), (99,340,o), (95,304,cs), (90,268,o), (116,239,o), (152,239,cs) ); } ); width = 306; }, { layerId = m01; shapes = ( { closed = 1; nodes = ( (160,255,o), (184,277,o), (188,304,cs), (191,333,o), (172,355,o), (144,355,cs), (116,355,o), (90,333,o), (87,304,cs), (83,277,o), (104,255,o), (132,255,cs) ); } ); width = 261; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (210,217,o), (256,257,o), (263,307,cs), (268,355,o), (232,394,o), (184,394,cs), (135,394,o), (89,355,o), (84,307,cs), (77,257,o), (113,217,o), (162,217,cs) ); } ); width = 333; } ); unicode = 8901; }, { glyphname = plus; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (266,296); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (300,47,l), (361,547,l), (305,547,l), (244,47,l) ); }, { closed = 1; nodes = ( (536,272,l), (542,322,l), (69,322,l), (63,272,l) ); } ); width = 593; }, { guides = ( { pos = (308,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (326,45,l), (387,545,l), (299,545,l), (238,45,l) ); }, { closed = 1; nodes = ( (551,255,l), (560,335,l), (74,335,l), (65,255,l) ); } ); width = 614; }, { guides = ( { pos = (273,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (356,41,l), (418,549,l), (283,549,l), (221,41,l) ); }, { closed = 1; nodes = ( (558,232,l), (574,358,l), (81,358,l), (65,232,l) ); } ); width = 629; } ); unicode = 43; }, { glyphname = minus; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (249,296); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (505,270,l), (512,320,l), (69,320,l), (62,270,l) ); } ); width = 563; }, { guides = ( { pos = (249,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (510,255,l), (519,335,l), (74,335,l), (65,255,l) ); } ); width = 573; }, { guides = ( { pos = (259,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (544,231,l), (560,357,l), (81,357,l), (65,231,l) ); } ); width = 615; } ); unicode = 8722; }, { glyphname = multiply; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (249,296); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (415,93,l), (455,130,l), (127,497,l), (86,461,l) ); }, { closed = 1; nodes = ( (463,497,l), (45,130,l), (77,93,l), (496,461,l) ); } ); width = 530; }, { guides = ( { pos = (251,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (419,85,l), (477,139,l), (149,506,l), (90,453,l) ); }, { closed = 1; nodes = ( (469,506,l), (51,139,l), (97,85,l), (516,453,l) ); } ); width = 556; }, { guides = ( { pos = (259,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (417,71,l), (501,146,l), (175,517,l), (91,442,l) ); }, { closed = 1; nodes = ( (471,517,l), (55,146,l), (121,71,l), (537,442,l) ); } ); width = 582; } ); unicode = 215; }, { glyphname = divide; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (238,296); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (263,41,o), (288,63,o), (291,90,cs), (296,124,o), (277,141,o), (248,141,cs), (220,141,o), (194,119,o), (190,90,cs), (187,63,o), (207,41,o), (235,41,cs) ); }, { closed = 1; nodes = ( (314,453,o), (339,475,o), (342,502,cs), (346,531,o), (326,553,o), (298,553,cs), (270,553,o), (245,531,o), (241,502,cs), (238,475,o), (258,453,o), (286,453,cs) ); }, { closed = 1; nodes = ( (463,272,l), (469,322,l), (69,322,l), (63,272,l) ); } ); width = 520; }, { guides = ( { pos = (262,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (294,26,o), (326,55,o), (330,89,cs), (335,124,o), (310,153,o), (276,153,cs), (241,153,o), (209,124,o), (204,89,cs), (200,55,o), (225,26,o), (260,26,cs) ); }, { closed = 1; nodes = ( (345,436,o), (376,465,o), (381,499,cs), (385,534,o), (360,563,o), (326,563,cs), (291,563,o), (259,534,o), (255,499,cs), (250,465,o), (276,436,o), (311,436,cs) ); }, { closed = 1; nodes = ( (510,256,l), (520,336,l), (75,336,l), (65,256,l) ); } ); width = 573; }, { guides = ( { pos = (277,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (329,3,o), (373,42,o), (379,90,cs), (385,137,o), (350,175,o), (303,175,cs), (255,175,o), (212,137,o), (206,90,cs), (200,42,o), (234,3,o), (282,3,cs) ); }, { closed = 1; nodes = ( (380,414,o), (423,453,o), (429,501,cs), (435,548,o), (401,586,o), (354,586,cs), (306,586,o), (262,548,o), (256,501,cs), (250,453,o), (285,414,o), (333,414,cs) ); }, { closed = 1; nodes = ( (554,235,l), (569,361,l), (81,361,l), (66,235,l) ); } ); width = 624; } ); unicode = 247; }, { glyphname = equal; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (246,296); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (536,349,l), (542,399,l), (78,399,l), (72,349,l) ); }, { closed = 1; nodes = ( (517,193,l), (523,243,l), (59,243,l), (53,193,l) ); } ); width = 584; }, { guides = ( { pos = (271,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (561,336,l), (570,416,l), (85,416,l), (76,336,l) ); }, { closed = 1; nodes = ( (540,173,l), (549,253,l), (64,253,l), (55,173,l) ); } ); width = 614; }, { guides = ( { pos = (245,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (569,347,l), (585,473,l), (95,473,l), (79,347,l) ); }, { closed = 1; nodes = ( (541,117,l), (557,243,l), (67,243,l), (51,117,l) ); } ); width = 626; } ); unicode = 61; }, { glyphname = greater; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (237,296); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (478,271,l), (483,316,l), (75,538,l), (67,468,l), (440,271,l), (445,315,l), (25,124,l), (16,55,l) ); } ); width = 535; }, { guides = ( { pos = (245,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (490,267,l), (497,325,l), (80,544,l), (69,454,l), (433,262,l), (442,330,l), (30,138,l), (19,48,l) ); } ); width = 552; }, { guides = ( { pos = (249,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (514,247,l), (526,344,l), (86,563,l), (70,432,l), (456,252,l), (467,342,l), (37,162,l), (20,28,l) ); } ); width = 583; } ); unicode = 62; }, { glyphname = less; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (263,296); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (479,123,l), (106,314,l), (100,270,l), (522,467,l), (530,537,l), (68,315,l), (62,270,l), (471,54,l) ); } ); width = 535; }, { guides = ( { pos = (260,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (494,136,l), (130,328,l), (121,260,l), (533,452,l), (544,542,l), (73,323,l), (66,265,l), (483,46,l) ); } ); width = 552; }, { guides = ( { pos = (274,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (524,162,l), (138,342,l), (127,252,l), (557,432,l), (573,563,l), (79,344,l), (67,247,l), (507,28,l) ); } ); width = 583; } ); unicode = 60; }, { glyphname = plusminus; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (300,171,l), (351,586,l), (295,586,l), (244,171,l) ); }, { closed = 1; nodes = ( (516,354,l), (522,404,l), (79,404,l), (73,354,l) ); }, { closed = 1; nodes = ( (472,0,l), (478,50,l), (35,50,l), (29,0,l) ); } ); width = 563; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (323,183,l), (373,594,l), (285,594,l), (235,183,l) ); }, { closed = 1; nodes = ( (521,349,l), (531,429,l), (86,429,l), (76,349,l) ); }, { closed = 1; nodes = ( (478,0,l), (488,80,l), (43,80,l), (33,0,l) ); } ); width = 573; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (368,194,l), (421,625,l), (286,625,l), (233,194,l) ); }, { closed = 1; nodes = ( (558,347,l), (574,473,l), (95,473,l), (79,347,l) ); }, { closed = 1; nodes = ( (516,0,l), (531,126,l), (52,126,l), (37,0,l) ); } ); width = 615; } ); unicode = 177; }, { glyphname = asciitilde; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { guides = ( { pos = (202,296); }, { pos = (202,239); }, { pos = (202,354); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (398,239,o), (438,281,o), (459,313,c), (425,345,l), (411,329,o), (388,291,o), (342,291,cs), (296,291,o), (255,354,o), (193,354,cs), (135,354,o), (83,308,o), (63,278,c), (95,247,l), (111,264,o), (137,302,o), (181,302,cs), (229,302,o), (263,239,o), (339,239,cs) ); } ); width = 511; }, { guides = ( { pos = (251,366); }, { pos = (162,223); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (407,223,o), (467,274,o), (488,306,c), (437,357,l), (421,341,o), (397,303,o), (351,303,cs), (307,303,o), (276,366,o), (199,366,cs), (136,366,o), (77,310,o), (58,280,c), (106,231,l), (122,248,o), (150,286,o), (194,286,cs), (236,286,o), (270,223,o), (348,223,cs) ); } ); width = 506; }, { guides = ( { pos = (239,391); }, { pos = (239,198); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (511,195,o), (583,271,o), (605,303,c), (530,385,l), (517,369,o), (492,325,o), (432,325,cs), (387,325,o), (331,394,o), (260,394,cs), (154,394,o), (93,315,o), (72,283,c), (144,206,l), (157,221,o), (183,264,o), (243,264,cs), (287,264,o), (341,195,o), (423,195,cs) ); } ); width = 667; } ); unicode = 126; }, { glyphname = asciicircum; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (320,700,l), (282,700,l), (71,407,l), (151,408,l), (312,646,l), (277,645,l), (380,406,l), (458,406,l) ); } ); width = 547; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (372,700,l), (310,700,l), (99,407,l), (189,407,l), (347,645,l), (323,645,l), (426,406,l), (510,406,l) ); } ); width = 571; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (374,700,l), (291,700,l), (69,407,l), (206,407,l), (347,624,l), (297,624,l), (388,406,l), (524,406,l) ); } ); width = 555; } ); unicode = 94; }, { glyphname = percent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (217,0,l), (681,700,l), (616,700,l), (152,0,l) ); }, { closed = 1; nodes = ( (300,383,o), (381,439,o), (395,548,cs), (408,655,o), (345,712,o), (261,712,cs), (180,712,o), (100,655,o), (86,547,cs), (73,439,o), (136,383,o), (220,383,cs) ); }, { closed = 1; nodes = ( (163,433,o), (136,487,o), (143,547,cs), (150,604,o), (192,662,o), (255,662,cs), (318,662,o), (345,606,o), (338,548,cs), (330,489,o), (286,433,o), (226,433,cs) ); }, { closed = 1; nodes = ( (674,-12,o), (755,44,o), (768,153,cs), (781,260,o), (718,317,o), (634,317,cs), (553,317,o), (473,260,o), (460,152,cs), (447,44,o), (510,-12,o), (594,-12,cs) ); }, { closed = 1; nodes = ( (537,38,o), (510,92,o), (517,152,cs), (524,209,o), (565,267,o), (628,267,cs), (691,267,o), (718,211,o), (711,153,cs), (704,94,o), (660,38,o), (600,38,cs) ); } ); width = 830; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (244,0,l), (716,700,l), (625,700,l), (153,0,l) ); }, { closed = 1; nodes = ( (318,383,o), (400,442,o), (413,548,cs), (425,651,o), (363,712,o), (279,712,cs), (198,712,o), (117,650,o), (104,547,cs), (91,441,o), (154,383,o), (238,383,cs) ); }, { closed = 1; nodes = ( (197,454,o), (175,498,o), (181,547,cs), (187,594,o), (220,641,o), (270,641,cs), (320,641,o), (341,595,o), (336,548,cs), (330,500,o), (294,454,o), (247,454,cs) ); }, { closed = 1; nodes = ( (672,-13,o), (753,46,o), (766,152,cs), (779,255,o), (716,316,o), (632,316,cs), (551,316,o), (470,254,o), (458,151,cs), (445,45,o), (508,-13,o), (592,-13,cs) ); }, { closed = 1; nodes = ( (550,58,o), (529,102,o), (535,151,cs), (541,198,o), (573,245,o), (623,245,cs), (673,245,o), (695,199,o), (689,152,cs), (683,104,o), (647,58,o), (600,58,cs) ); } ); width = 846; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (321,0,l), (791,700,l), (654,700,l), (184,0,l) ); }, { closed = 1; nodes = ( (332,353,o), (422,417,o), (436,533,cs), (450,645,o), (381,712,o), (289,712,cs), (201,712,o), (112,644,o), (98,533,cs), (84,416,o), (153,353,o), (245,353,cs) ); }, { closed = 1; nodes = ( (215,455,o), (196,492,o), (201,533,cs), (206,573,o), (234,610,o), (277,610,cs), (320,610,o), (338,574,o), (333,533,cs), (328,494,o), (299,455,o), (258,455,cs) ); }, { closed = 1; nodes = ( (771,-12,o), (861,52,o), (875,168,cs), (889,280,o), (820,347,o), (728,347,cs), (640,347,o), (551,279,o), (537,168,cs), (523,51,o), (592,-12,o), (684,-12,cs) ); }, { closed = 1; nodes = ( (654,89,o), (635,127,o), (640,168,cs), (645,208,o), (673,246,o), (716,246,cs), (759,246,o), (777,209,o), (772,168,cs), (768,129,o), (738,89,o), (697,89,cs) ); } ); width = 950; } ); unicode = 37; }, { glyphname = upArrow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (662,337,l), (709,379,l), (427,700,l), (380,658,l) ); }, { closed = 1; nodes = ( (427,700,l), (66,378,l), (104,336,l), (464,658,l) ); }, { closed = 1; nodes = ( (371,0,l), (451,653,l), (391,653,l), (311,0,l) ); } ); width = 743; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (642,321,l), (708,380,l), (426,700,l), (361,641,l) ); }, { closed = 1; nodes = ( (426,700,l), (66,378,l), (117,320,l), (477,642,l) ); }, { closed = 1; nodes = ( (380,0,l), (453,592,l), (370,591,l), (297,0,l) ); } ); width = 742; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (609,288,l), (709,377,l), (428,698,l), (328,609,l) ); }, { closed = 1; nodes = ( (426,700,l), (65,379,l), (143,290,l), (504,611,l) ); }, { closed = 1; nodes = ( (408,0,l), (483,611,l), (343,610,l), (268,0,l) ); } ); width = 744; } ); unicode = 8593; }, { glyphname = northEastArrow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (468,47,l), (528,47,l), (584,500,l), (524,500,l) ); }, { closed = 1; nodes = ( (129,500,l), (121,440,l), (576,441,l), (584,500,l) ); }, { closed = 1; nodes = ( (61,0,l), (565,446,l), (527,488,l), (24,42,l) ); } ); width = 603; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (452,47,l), (535,47,l), (590,500,l), (508,500,l) ); }, { closed = 1; nodes = ( (136,500,l), (126,418,l), (580,418,l), (590,500,l) ); }, { closed = 1; nodes = ( (78,0,l), (529,396,l), (477,454,l), (27,59,l) ); } ); width = 610; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (402,54,l), (528,54,l), (584,508,l), (458,508,l) ); }, { closed = 1; nodes = ( (127,508,l), (112,382,l), (566,382,l), (581,508,l) ); }, { closed = 1; nodes = ( (102,0,l), (557,394,l), (471,493,l), (15,99,l) ); } ); width = 600; } ); unicode = 8599; }, { glyphname = rightArrow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (763,359,l), (481,681,l), (434,638,l), (716,317,l) ); }, { closed = 1; nodes = ( (713,329,l), (720,389,l), (67,389,l), (60,329,l) ); }, { closed = 1; nodes = ( (763,359,l), (727,401,l), (366,80,l), (403,38,l) ); } ); width = 800; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (763,357,l), (481,678,l), (415,620,l), (698,299,l) ); }, { closed = 1; nodes = ( (650,317,l), (659,400,l), (68,400,l), (58,317,l) ); }, { closed = 1; nodes = ( (763,357,l), (711,415,l), (352,95,l), (404,36,l) ); } ); width = 800; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (763,361,l), (482,682,l), (382,593,l), (663,272,l) ); }, { closed = 1; nodes = ( (666,293,l), (682,433,l), (72,433,l), (55,293,l) ); }, { closed = 1; nodes = ( (761,359,l), (683,448,l), (322,127,l), (400,38,l) ); } ); width = 800; } ); unicode = 8594; }, { glyphname = southEastArrow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (76,458,l), (467,12,l), (514,55,l), (123,500,l) ); }, { closed = 1; nodes = ( (519,0,l), (575,455,l), (515,455,l), (460,0,l) ); }, { closed = 1; nodes = ( (74,60,l), (66,0,l), (519,0,l), (527,60,l) ); } ); width = 600; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (73,441,l), (427,46,l), (493,104,l), (140,500,l) ); }, { closed = 1; nodes = ( (528,0,l), (585,453,l), (502,453,l), (446,0,l) ); }, { closed = 1; nodes = ( (84,82,l), (74,0,l), (528,0,l), (538,82,l) ); } ); width = 610; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (69,410,l), (408,13,l), (519,111,l), (180,509,l) ); }, { closed = 1; nodes = ( (521,3,l), (577,457,l), (451,457,l), (395,3,l) ); }, { closed = 1; nodes = ( (82,126,l), (67,0,l), (521,0,l), (536,126,l) ); } ); width = 602; } ); unicode = 8600; }, { glyphname = downArrow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (396,700,l), (316,47,l), (376,47,l), (456,700,l) ); }, { closed = 1; nodes = ( (340,0,l), (702,322,l), (664,364,l), (303,42,l) ); }, { closed = 1; nodes = ( (106,363,l), (59,321,l), (340,0,l), (387,42,l) ); } ); width = 743; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (383,700,l), (311,109,l), (394,108,l), (466,700,l) ); }, { closed = 1; nodes = ( (340,0,l), (701,320,l), (649,379,l), (290,59,l) ); }, { closed = 1; nodes = ( (124,380,l), (59,322,l), (340,0,l), (405,58,l) ); } ); width = 742; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (354,700,l), (279,90,l), (419,89,l), (494,700,l) ); }, { closed = 1; nodes = ( (342,2,l), (702,323,l), (624,412,l), (264,91,l) ); }, { closed = 1; nodes = ( (158,410,l), (58,321,l), (340,0,l), (440,89,l) ); } ); width = 744; } ); unicode = 8595; }, { glyphname = southWestArrow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (38,55,l), (75,12,l), (576,458,l), (539,500,l) ); }, { closed = 1; nodes = ( (135,455,l), (75,455,l), (19,0,l), (78,0,l) ); }, { closed = 1; nodes = ( (19,0,l), (472,0,l), (480,60,l), (27,60,l) ); } ); width = 600; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (81,104,l), (133,46,l), (583,441,l), (532,500,l) ); }, { closed = 1; nodes = ( (158,453,l), (75,453,l), (20,0,l), (102,0,l) ); }, { closed = 1; nodes = ( (20,0,l), (474,0,l), (484,82,l), (30,82,l) ); } ); width = 610; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (47,111,l), (134,13,l), (571,410,l), (484,509,l) ); }, { closed = 1; nodes = ( (201,457,l), (75,457,l), (19,3,l), (145,3,l) ); }, { closed = 1; nodes = ( (19,0,l), (473,0,l), (488,126,l), (34,126,l) ); } ); width = 602; } ); unicode = 8601; }, { glyphname = leftArrow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (114,389,l), (107,329,l), (760,329,l), (767,389,l) ); }, { closed = 1; nodes = ( (63,359,l), (345,38,l), (392,80,l), (111,401,l) ); }, { closed = 1; nodes = ( (462,638,l), (425,681,l), (63,359,l), (100,317,l) ); } ); width = 800; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (177,400,l), (166,317,l), (758,317,l), (768,400,l) ); }, { closed = 1; nodes = ( (63,357,l), (344,36,l), (410,95,l), (129,415,l) ); }, { closed = 1; nodes = ( (475,620,l), (425,678,l), (63,357,l), (114,299,l) ); } ); width = 800; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (162,433,l), (144,293,l), (755,293,l), (772,433,l) ); }, { closed = 1; nodes = ( (65,359,l), (346,38,l), (446,127,l), (165,448,l) ); }, { closed = 1; nodes = ( (502,593,l), (424,682,l), (63,361,l), (141,272,l) ); } ); width = 800; } ); unicode = 8592; }, { glyphname = northWestArrow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (524,42,l), (133,488,l), (86,445,l), (477,0,l) ); }, { closed = 1; nodes = ( (534,500,l), (81,500,l), (73,440,l), (526,440,l) ); }, { closed = 1; nodes = ( (140,500,l), (81,500,l), (25,45,l), (85,45,l) ); } ); width = 600; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (537,59,l), (183,454,l), (117,396,l), (470,0,l) ); }, { closed = 1; nodes = ( (536,500,l), (82,500,l), (72,418,l), (526,418,l) ); }, { closed = 1; nodes = ( (164,500,l), (82,500,l), (25,47,l), (108,47,l) ); } ); width = 610; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (550,99,l), (190,493,l), (80,394,l), (439,0,l) ); }, { closed = 1; nodes = ( (538,508,l), (84,508,l), (69,382,l), (523,382,l) ); }, { closed = 1; nodes = ( (207,508,l), (81,508,l), (25,54,l), (151,54,l) ); } ); width = 619; } ); unicode = 8598; }, { glyphname = leftRightArrow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (105,388,l), (98,328,l), (938,328,l), (945,388,l) ); }, { closed = 1; nodes = ( (710,591,l), (951,316,l), (999,358,l), (758,633,l) ); }, { closed = 1; nodes = ( (652,124,l), (689,82,l), (999,358,l), (961,399,l) ); }, { closed = 1; nodes = ( (372,633,l), (63,358,l), (101,316,l), (410,591,l) ); }, { closed = 1; nodes = ( (305,82,l), (354,124,l), (111,399,l), (63,358,l) ); } ); width = 1036; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (176,400,l), (166,317,l), (886,317,l), (895,400,l) ); }, { closed = 1; nodes = ( (687,575,l), (934,299,l), (999,357,l), (752,633,l) ); }, { closed = 1; nodes = ( (633,133,l), (684,74,l), (999,357,l), (947,415,l) ); }, { closed = 1; nodes = ( (378,633,l), (63,357,l), (114,299,l), (429,575,l) ); }, { closed = 1; nodes = ( (308,74,l), (375,133,l), (129,415,l), (63,357,l) ); } ); width = 1036; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (231,428,l), (214,288,l), (933,288,l), (950,428,l) ); }, { closed = 1; nodes = ( (675,564,l), (929,270,l), (1029,359,l), (775,653,l) ); }, { closed = 1; nodes = ( (625,154,l), (703,65,l), (1029,359,l), (951,448,l) ); }, { closed = 1; nodes = ( (389,653,l), (63,359,l), (141,270,l), (467,564,l) ); }, { closed = 1; nodes = ( (317,65,l), (417,154,l), (163,448,l), (63,359,l) ); } ); width = 1066; } ); unicode = 8596; }, { glyphname = upDownArrow; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (345,654,l), (241,-186,l), (301,-186,l), (405,654,l) ); }, { closed = 1; nodes = ( (418,669,l), (382,712,l), (73,437,l), (110,394,l) ); }, { closed = 1; nodes = ( (382,712,l), (335,669,l), (577,393,l), (624,436,l) ); }, { closed = 1; nodes = ( (26,51,l), (267,-224,l), (314,-181,l), (73,94,l) ); }, { closed = 1; nodes = ( (577,52,l), (540,95,l), (231,-181,l), (267,-224,l) ); } ); width = 651; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (336,604,l), (248,-116,l), (331,-115,l), (419,604,l) ); }, { closed = 1; nodes = ( (440,653,l), (390,712,l), (72,432,l), (124,373,l) ); }, { closed = 1; nodes = ( (390,712,l), (325,654,l), (566,373,l), (631,431,l) ); }, { closed = 1; nodes = ( (26,56,l), (275,-224,l), (340,-165,l), (92,115,l) ); }, { closed = 1; nodes = ( (585,57,l), (534,115,l), (224,-166,l), (275,-224,l) ); } ); width = 659; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (276,613,l), (194,-57,l), (334,-57,l), (416,613,l) ); }, { closed = 1; nodes = ( (434,611,l), (356,700,l), (26,410,l), (104,321,l) ); }, { closed = 1; nodes = ( (356,700,l), (256,611,l), (514,321,l), (614,410,l) ); }, { closed = 1; nodes = ( (-17,60,l), (242,-230,l), (342,-141,l), (83,149,l) ); }, { closed = 1; nodes = ( (571,60,l), (493,149,l), (164,-141,l), (242,-230,l) ); } ); width = 600; } ); unicode = 8597; }, { glyphname = dieresiscomb; lastChange = "2025-01-01 09:01:28 +0000"; layers = ( { anchors = ( { name = _top; pos = (197,512); } ); guides = ( { pos = (-33,679); }, { pos = (-28,584); }, { pos = (-33,631); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (297,584,o), (321,606,o), (324,631,cs), (327,657,o), (309,679,o), (284,679,cs), (258,679,o), (233,657,o), (230,631,cs), (227,606,o), (246,584,o), (272,584,cs) ); }, { closed = 1; nodes = ( (148,584,o), (172,606,o), (175,631,cs), (178,657,o), (160,679,o), (135,679,cs), (109,679,o), (84,657,o), (81,631,cs), (78,606,o), (97,584,o), (123,584,cs) ); } ); width = 312; }, { anchors = ( { name = _top; pos = (197,512); } ); guides = ( { pos = (-27,700); }, { pos = (-26,590); }, { pos = (-27,645); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (322,590,o), (349,615,o), (352,645,cs), (356,675,o), (335,700,o), (305,700,cs), (275,700,o), (247,675,o), (243,645,cs), (240,615,o), (262,590,o), (292,590,cs) ); }, { closed = 1; nodes = ( (147,590,o), (174,615,o), (177,645,cs), (181,675,o), (160,700,o), (130,700,cs), (100,700,o), (72,675,o), (68,645,cs), (65,615,o), (87,590,o), (117,590,cs) ); } ); width = 324; }, { anchors = ( { name = _top; pos = (246,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (408,559,o), (449,598,o), (455,644,cs), (461,690,o), (429,729,o), (381,729,cs), (336,729,o), (293,690,o), (287,644,cs), (281,598,o), (315,559,o), (360,559,cs) ); }, { closed = 1; nodes = ( (181,559,o), (222,598,o), (228,644,cs), (234,690,o), (202,729,o), (154,729,cs), (109,729,o), (66,690,o), (60,644,cs), (54,598,o), (88,559,o), (133,559,cs) ); } ); width = 419; } ); unicode = 776; }, { glyphname = dotaccentcomb; lastChange = "2025-01-08 14:19:43 +0000"; layers = ( { anchors = ( { name = _top; pos = (98,512); } ); guides = ( { pos = (-47,680); }, { pos = (-42,585); }, { pos = (-47,632); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (135,595,o), (159,617,o), (162,642,cs), (165,668,o), (147,690,o), (122,690,cs), (96,690,o), (71,668,o), (68,642,cs), (65,617,o), (84,595,o), (110,595,cs) ); } ); width = 137; }, { anchors = ( { name = _top; pos = (106,512); } ); guides = ( { pos = (-27,700); }, { pos = (-26,590); }, { pos = (-27,645); }, { pos = (-27,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (147,590,o), (174,615,o), (177,645,cs), (181,675,o), (160,700,o), (130,700,cs), (100,700,o), (72,675,o), (68,645,cs), (65,615,o), (87,590,o), (117,590,cs) ); } ); width = 147; }, { anchors = ( { name = _top; pos = (127,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (181,559,o), (222,598,o), (228,644,cs), (234,690,o), (202,729,o), (154,729,cs), (109,729,o), (66,690,o), (60,644,cs), (54,598,o), (88,559,o), (133,559,cs) ); } ); width = 192; } ); unicode = 775; }, { glyphname = gravecomb; lastChange = "2025-01-01 09:02:42 +0000"; layers = ( { anchors = ( { name = _top; pos = (196,512); } ); guides = ( { pos = (-42,586); }, { pos = (-47,633); }, { pos = (-47,681); }, { pos = (-47,704); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (215,586,l), (179,704,l), (86,704,l), (165,586,l) ); } ); width = 208; }, { anchors = ( { name = _top; pos = (195,512); } ); guides = ( { pos = (-49,700); }, { pos = (-48,590); }, { pos = (-49,645); }, { pos = (-49,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (223,590,l), (179,727,l), (69,727,l), (151,590,l) ); } ); width = 191; }, { anchors = ( { name = _top; pos = (230,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (274,559,l), (225,729,l), (71,729,l), (171,559,l) ); } ); width = 244; } ); unicode = 768; }, { glyphname = acutecomb; lastChange = "2025-01-01 09:00:47 +0000"; layers = ( { anchors = ( { name = _top; pos = (82,512); } ); guides = ( { pos = (-42,586); }, { pos = (-47,633); }, { pos = (-47,681); }, { pos = (-47,704); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (230,704,l), (137,704,l), (71,586,l), (121,586,l) ); } ); width = 208; }, { anchors = ( { name = _top; pos = (79,512); } ); guides = ( { pos = (-49,700); }, { pos = (-48,590); }, { pos = (-49,645); }, { pos = (-49,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (240,727,l), (130,727,l), (52,590,l), (124,590,l) ); } ); width = 191; }, { anchors = ( { name = _top; pos = (100,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (295,729,l), (141,729,l), (50,559,l), (153,559,l) ); } ); width = 244; } ); unicode = 769; }, { glyphname = hungarumlautcomb; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = _top; pos = (151,512); } ); guides = ( { pos = (-42,586); }, { pos = (-47,633); }, { pos = (-47,704); }, { pos = (-47,681); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (230,704,l), (137,704,l), (71,586,l), (121,586,l) ); }, { closed = 1; nodes = ( (363,704,l), (270,704,l), (204,586,l), (254,586,l) ); } ); width = 374; }, { anchors = ( { name = _top; pos = (155,512); } ); guides = ( { pos = (-68,700); }, { pos = (-67,590); }, { pos = (-68,645); }, { pos = (-68,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (240,727,l), (130,727,l), (52,590,l), (124,590,l) ); }, { closed = 1; nodes = ( (396,727,l), (286,727,l), (208,590,l), (280,590,l) ); } ); width = 347; }, { anchors = ( { name = _top; pos = (197,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (300,729,l), (146,729,l), (55,559,l), (158,559,l) ); }, { closed = 1; nodes = ( (499,729,l), (345,729,l), (254,559,l), (357,559,l) ); } ); width = 440; } ); unicode = 779; }, { glyphname = caroncomb.alt; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = _top; pos = (84,508); } ); guides = ( { pos = (-46,586); }, { pos = (-47,633); }, { pos = (-47,681); }, { pos = (-47,704); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (132,586,l), (203,704,l), (110,704,l), (82,586,l) ); } ); width = 155; }, { anchors = ( { name = _top; pos = (84,508); } ); guides = ( { pos = (-60,700); }, { pos = (-59,590); }, { pos = (-60,645); }, { pos = (-60,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (124,590,l), (190,727,l), (80,727,l), (52,590,l) ); } ); width = 141; }, { anchors = ( { name = _top; pos = (83,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (164,559,l), (239,729,l), (109,729,l), (69,559,l) ); } ); width = 196; } ); }, { glyphname = circumflexcomb; lastChange = "2025-01-08 14:16:38 +0000"; layers = ( { anchors = ( { name = _top; pos = (166,512); } ); guides = ( { pos = (-86,591); }, { pos = (-87,638); }, { pos = (-87,686); }, { pos = (-87,709); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (124,591,l), (216,694,l), (161,694,l), (229,591,l), (300,591,l), (217,709,l), (163,709,l), (52,591,l) ); } ); width = 268; }, { associatedMasterId = m01; layerId = "20458CA3-7F03-4177-ABD8-708FA8DF63BB"; name = "3 Aug 21, 16:24"; shapes = ( { closed = 1; nodes = ( (104,557,l), (190,557,l), (353,745,l), (267,745,l) ); }, { closed = 1; nodes = ( (216,745,l), (379,557,l), (465,557,l), (302,745,l) ); }, { closed = 1; nodes = ( (104,557,l), (190,557,l), (353,745,l), (267,745,l) ); }, { closed = 1; nodes = ( (216,745,l), (379,557,l), (465,557,l), (302,745,l) ); } ); width = 600; }, { anchors = ( { name = _top; pos = (189,512); } ); guides = ( { pos = (-88,700); }, { pos = (-87,590); }, { pos = (-88,645); }, { pos = (-88,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (135,590,l), (232,695,l), (176,695,l), (247,590,l), (330,590,l), (232,727,l), (185,727,l), (52,590,l) ); } ); width = 298; }, { anchors = ( { name = _top; pos = (210,508); } ); guides = ( { pos = (-9,729); }, { pos = (-4,559); }, { pos = (-7,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (167,559,l), (270,690,l), (201,690,l), (268,559,l), (389,559,l), (287,729,l), (190,729,l), (47,559,l) ); } ); width = 362; } ); unicode = 770; }, { glyphname = caroncomb; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = _top; pos = (166,512); } ); guides = ( { pos = (-86,591); }, { pos = (-87,638); }, { pos = (-87,686); }, { pos = (-87,709); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (203,591,l), (314,709,l), (243,709,l), (150,606,l), (205,605,l), (138,709,l), (66,709,l), (149,591,l) ); } ); width = 268; }, { anchors = ( { name = _top; pos = (184,512); } ); guides = ( { pos = (-88,700); }, { pos = (-87,590); }, { pos = (-88,645); }, { pos = (-88,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (215,590,l), (347,727,l), (264,727,l), (167,622,l), (223,622,l), (152,727,l), (69,727,l), (168,590,l) ); } ); width = 298; }, { anchors = ( { name = _top; pos = (212,508); } ); guides = ( { pos = (-5,729); }, { pos = (0,559); }, { pos = (-3,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (266,559,l), (410,729,l), (289,729,l), (189,598,l), (258,598,l), (188,729,l), (68,729,l), (169,559,l) ); } ); width = 362; } ); unicode = 780; }, { glyphname = brevecomb; lastChange = "2025-01-08 14:16:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (177,512); } ); guides = ( { pos = (-2,592); }, { pos = (-3,639); }, { pos = (-3,687); }, { pos = (-3,710); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (261,590,o), (306,645,o), (314,709,c), (257,709,l), (252,663,o), (224,641,o), (194,641,cs), (165,641,o), (142,663,o), (147,709,c), (90,709,l), (82,645,o), (115,590,o), (188,590,cs) ); } ); width = 298; }, { anchors = ( { name = _top; pos = (175,512); } ); guides = ( { pos = (-251,700); }, { pos = (-250,590); }, { pos = (-251,645); }, { pos = (-251,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (270,588,o), (327,655,o), (336,727,c), (263,727,l), (258,688,o), (234,651,o), (192,651,cs), (152,651,o), (137,688,o), (142,727,c), (69,727,l), (60,655,o), (101,588,o), (185,588,cs) ); } ); width = 287; }, { anchors = ( { name = _top; pos = (200,508); } ); guides = ( { pos = (20,729); }, { pos = (25,559); }, { pos = (22,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (315,556,o), (384,639,o), (395,729,c), (296,729,l), (291,683,o), (271,643,o), (223,643,cs), (177,643,o), (164,683,o), (169,729,c), (70,729,l), (59,639,o), (110,556,o), (212,556,cs) ); } ); width = 349; } ); unicode = 774; }, { glyphname = ringcomb; lastChange = "2025-01-01 09:04:46 +0000"; layers = ( { anchors = ( { name = _top; pos = (157,512); } ); guides = ( { pos = (2,592); }, { pos = (1,639); }, { pos = (1,687); }, { pos = (1,710); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (231,588,o), (283,645,o), (291,705,cs), (299,768,o), (259,822,o), (188,822,cs), (118,822,o), (66,768,o), (58,705,cs), (50,645,o), (90,588,o), (160,588,cs) ); }, { closed = 1; nodes = ( (132,641,o), (106,667,o), (111,705,cs), (115,741,o), (148,770,o), (182,770,cs), (217,770,o), (242,741,o), (238,705,cs), (233,667,o), (201,641,o), (166,641,cs) ); } ); width = 237; }, { anchors = ( { name = _top; pos = (163,512); } ); guides = ( { pos = (-246,700); }, { pos = (-245,590); }, { pos = (-246,645); }, { pos = (-246,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (242,589,o), (296,649,o), (304,712,cs), (312,776,o), (272,834,o), (197,834,cs), (123,834,o), (69,776,o), (61,712,cs), (53,649,o), (93,589,o), (167,589,cs) ); }, { closed = 1; nodes = ( (142,651,o), (117,675,o), (122,712,cs), (126,746,o), (157,772,o), (189,772,cs), (222,772,o), (247,746,o), (243,712,cs), (238,675,o), (207,651,o), (174,651,cs) ); } ); width = 251; }, { anchors = ( { name = _top; pos = (176,508); } ); guides = ( { pos = (27,729); }, { pos = (32,559); }, { pos = (29,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (258,556,o), (315,619,o), (323,686,cs), (331,753,o), (290,814,o), (211,814,cs), (133,814,o), (76,753,o), (68,686,cs), (60,619,o), (101,556,o), (179,556,cs) ); }, { closed = 1; nodes = ( (166,640,o), (148,658,o), (151,686,cs), (154,710,o), (177,730,o), (200,730,cs), (224,730,o), (243,710,o), (240,686,cs), (237,658,o), (213,640,o), (189,640,cs) ); } ); width = 285; } ); unicode = 778; }, { glyphname = tildecomb; lastChange = "2025-01-08 14:43:46 +0000"; layers = ( { anchors = ( { name = _top; pos = (193,512); } ); guides = ( { pos = (-17,591); }, { pos = (-18,638); }, { pos = (-18,686); }, { pos = (-18,709); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (188,628,o), (214,591,o), (252,591,cs), (302,591,o), (334,623,o), (341,682,c), (284,682,l), (282,660,o), (277,646,o), (251,646,cs), (231,646,o), (205,682,o), (168,682,cs), (118,682,o), (86,652,o), (79,591,c), (136,591,l), (139,614,o), (146,628,o), (169,628,cs) ); } ); width = 351; }, { anchors = ( { name = _top; pos = (186,512); } ); guides = ( { pos = (-387,700); }, { pos = (-386,590); }, { pos = (-387,645); }, { pos = (-387,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (188,628,o), (216,590,o), (260,590,cs), (317,590,o), (355,632,o), (363,700,c), (293,700,l), (290,677,o), (282,663,o), (256,663,cs), (233,663,o), (205,700,o), (162,700,cs), (105,700,o), (68,663,o), (59,590,c), (130,590,l), (133,614,o), (143,628,o), (166,628,cs) ); } ); width = 325; }, { anchors = ( { name = _top; pos = (230,508); } ); guides = ( { pos = (22,729); }, { pos = (27,559); }, { pos = (24,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (225,620,o), (250,556,o), (320,556,cs), (406,556,o), (450,619,o), (461,714,c), (362,714,l), (358,676,o), (342,662,o), (318,662,cs), (287,662,o), (257,717,o), (189,717,cs), (104,717,o), (60,660,o), (47,559,c), (146,559,l), (151,596,o), (163,620,o), (192,620,cs) ); } ); width = 415; }, { anchors = ( { name = _top; pos = (209,508); } ); associatedMasterId = m003; guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = "BBFD4248-F8E1-451A-B1D3-0F4A06B581F3"; name = "12 Sep 24 at 16:05"; shapes = ( { closed = 1; nodes = ( (212,579,o), (271,579,cs), (365,579,o), (384,675,o), (384,708,c), (290,708,l), (290,687,o), (277,671,o), (254,671,cs), (206,671,o), (198,708,o), (122,708,cs), (29,708,o), (8,612,o), (8,579,c), (103,579,l), (103,602,o), (121,619,o), (143,619,cs), (180,619,o) ); }, { closed = 1; nodes = ( (605,1725,l), (605,1757,o), (621,1778,o), (645,1778,cs), (663,1778,o), (677,1768,o), (692,1756,cs), (712,1742,o), (734,1725,o), (773,1726,cs), (835,1726,o), (884,1775,o), (885,1862,c), (804,1865,l), (804,1833,o), (790,1812,o), (763,1811,cs), (746,1811,o), (731,1821,o), (715,1833,cs), (695,1847,o), (671,1863,o), (635,1863,cs), (573,1863,o), (523,1814,o), (523,1726,c) ); } ); width = 389; }, { anchors = ( { name = _top; pos = (194,508); } ); associatedMasterId = m003; guides = ( { pos = (8,729); }, { pos = (13,559); }, { pos = (10,644); } ); layerId = "45818B1E-5F7D-4BC1-B8BA-26BE04D49AE9"; name = "23 Sep 24 at 16:04"; shapes = ( { closed = 1; nodes = ( (168,619,o), (215,559,o), (273,559,cs), (353,559,o), (386,625,o), (386,720,c), (292,720,l), (292,685,o), (284,660,o), (250,660,cs), (219,660,o), (171,720,o), (115,720,cs), (36,720,o), (2,660,o), (2,559,c), (96,559,l), (96,594,o), (106,619,o), (138,619,cs) ); } ); width = 387; } ); unicode = 771; }, { glyphname = macroncomb; lastChange = "2025-01-08 14:20:46 +0000"; layers = ( { anchors = ( { name = _top; pos = (165,512); } ); guides = ( { pos = (-27,592); }, { pos = (-28,639); }, { pos = (-28,687); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (318,612,l), (325,666,l), (61,666,l), (54,612,l) ); } ); width = 284; }, { anchors = ( { name = _top; pos = (207,512); } ); guides = ( { pos = (-251,700); }, { pos = (-250,590); }, { pos = (-251,645); }, { pos = (-251,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (373,612,l), (382,680,l), (83,680,l), (74,612,l) ); } ); width = 359; }, { anchors = ( { name = _top; pos = (203,511); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (377,579,l), (388,671,l), (62,671,l), (51,579,l) ); } ); width = 346; } ); unicode = 772; }, { glyphname = hookabovecomb; lastChange = "2025-01-08 14:18:11 +0000"; layers = ( { anchors = ( { name = _top; pos = (81,500); } ); guides = ( { pos = (-17,591); }, { pos = (-18,638); }, { pos = (-18,686); }, { pos = (-18,709); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (106,561,l), (109,587,l), (154,593,o), (182,619,o), (187,658,cs), (194,717,o), (147,738,o), (73,733,c), (67,687,l), (120,692,o), (142,676,o), (140,658,cs), (138,641,o), (117,627,o), (66,627,c), (58,561,l) ); } ); width = 143; }, { anchors = ( { name = _top; pos = (100,500); } ); guides = ( { pos = (-251,700); }, { pos = (-250,590); }, { pos = (-251,645); }, { pos = (-251,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (136,560,l), (139,588,l), (182,593,o), (227,624,o), (232,668,cs), (241,739,o), (173,760,o), (96,755,c), (88,696,l), (132,700,o), (167,688,o), (165,668,cs), (162,646,o), (124,635,o), (81,635,c), (72,560,l) ); } ); width = 194; }, { anchors = ( { name = _top; pos = (96,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (137,559,l), (142,593,l), (186,597,o), (229,630,o), (235,677,cs), (245,762,o), (162,780,o), (80,775,c), (71,702,l), (123,706,o), (156,698,o), (153,677,cs), (150,656,o), (117,646,o), (64,646,c), (53,559,l) ); } ); width = 193; } ); unicode = 777; }, { glyphname = commaturnedabovecomb; lastChange = "2025-01-01 09:21:45 +0000"; layers = ( { anchors = ( { name = _top; pos = (115,512); } ); guides = ( { pos = (-102,592); }, { pos = (-103,639); }, { pos = (-103,687); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (107,772,o), (64,715,o), (56,653,cs), (52,618,o), (71,592,o), (105,592,cs), (130,592,o), (154,617,o), (157,642,c), (160,666,o), (142,687,o), (117,687,cs), (116,687,o), (112,687,o), (111,687,c), (117,738,o), (170,749,o), (170,749,c), (170,749,o), (174,772,o), (173,772,cs) ); } ); width = 122; }, { anchors = ( { name = _top; pos = (140,512); } ); guides = ( { pos = (-251,700); }, { pos = (-250,590); }, { pos = (-251,645); }, { pos = (-251,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (146,788,o), (82,742,o), (73,662,cs), (68,624,o), (89,590,o), (129,590,cs), (166,590,o), (186,619,o), (190,647,cs), (193,673,o), (170,699,o), (143,699,cs), (142,699,o), (137,699,o), (135,698,c), (142,756,o), (203,761,o), (203,761,c), (203,761,o), (207,788,o), (206,788,cs) ); } ); width = 162; }, { anchors = ( { name = _top; pos = (147,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (116,802,o), (66,709,o), (58,644,cs), (53,604,o), (71,559,o), (127,559,cs), (167,559,o), (200,587,o), (205,628,cs), (209,661,o), (182,690,o), (146,690,cs), (142,690,o), (138,690,o), (134,689,c), (142,752,o), (220,766,o), (220,766,c), (220,766,o), (225,802,o), (224,802,cs) ); } ); width = 169; } ); unicode = 786; }, { glyphname = horncomb; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (122,451,o), (215,529,o), (181,651,c), (118,632,l), (140,562,o), (105,500,o), (41,500,c), (35,451,l) ); } ); width = 156; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (157,446,o), (229,529,o), (195,651,c), (113,629,l), (134,570,o), (122,500,o), (41,500,c), (34,446,l) ); } ); width = 173; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (170,434,o), (271,543,o), (234,678,c), (116,647,l), (138,588,o), (128,515,o), (47,515,c), (37,434,l) ); } ); width = 208; } ); unicode = 795; }, { glyphname = dotbelowcomb; lastChange = "2025-01-01 09:19:42 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (32,0); } ); guides = ( { pos = (-58,-119); }, { pos = (-58,-71); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (45,-166,o), (69,-144,o), (72,-119,cs), (75,-93,o), (57,-71,o), (32,-71,cs), (6,-71,o), (-19,-93,o), (-22,-119,cs), (-25,-144,o), (-6,-166,o), (20,-166,cs) ); } ); width = 141; }, { anchors = ( { name = _bottom; pos = (44,0); } ); guides = ( { pos = (75,-119); }, { pos = (75,-64); }, { pos = (75,-174); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (53,-174,o), (80,-149,o), (84,-119,cs), (87,-89,o), (66,-64,o), (36,-64,cs), (6,-64,o), (-22,-89,o), (-25,-119,cs), (-29,-149,o), (-7,-174,o), (23,-174,cs) ); } ); width = 149; }, { anchors = ( { name = _bottom; pos = (63,-1); } ); guides = ( { pos = (-261,-137); }, { pos = (-261,-52); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (84,-222,o), (124,-183,o), (130,-137,cs), (136,-91,o), (104,-52,o), (56,-52,cs), (11,-52,o), (-32,-91,o), (-38,-137,cs), (-44,-183,o), (-9,-222,o), (36,-222,cs) ); } ); width = 188; } ); unicode = 803; }, { glyphname = commaaccentcomb; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (29,-12); } ); guides = ( { pos = (-121,-120); }, { pos = (-119,-120); }, { pos = (-119,-71); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (15,-248,o), (58,-191,o), (65,-129,cs), (70,-94,o), (56,-68,o), (19,-68,cs), (-10,-68,o), (-32,-93,o), (-35,-118,cs), (-38,-142,o), (-20,-163,o), (5,-163,cs), (6,-163,o), (10,-163,o), (11,-163,c), (5,-214,o), (-48,-225,o), (-48,-225,c), (-48,-225,o), (-52,-248,o), (-51,-248,cs) ); } ); width = 122; }, { anchors = ( { name = _bottom; pos = (45,-12); } ); guides = ( { pos = (75,-119); }, { pos = (75,-64); }, { pos = (75,-174); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (26,-269,o), (82,-214,o), (92,-134,cs), (97,-96,o), (72,-64,o), (35,-64,cs), (6,-64,o), (-21,-93,o), (-25,-121,cs), (-28,-147,o), (-6,-173,o), (21,-173,cs), (22,-173,o), (27,-173,o), (29,-172,c), (22,-230,o), (-39,-242,o), (-39,-242,c), (-39,-242,o), (-44,-269,o), (-43,-269,cs) ); } ); width = 158; }, { anchors = ( { name = _bottom; pos = (64,-1); } ); guides = ( { pos = (-309,-137); }, { pos = (-309,-52); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (59,-354,o), (121,-231,o), (131,-152,cs), (137,-104,o), (118,-50,o), (53,-50,cs), (4,-50,o), (-32,-92,o), (-38,-134,cs), (-42,-173,o), (-14,-208,o), (30,-208,cs), (34,-208,o), (39,-208,o), (42,-207,c), (32,-293,o), (-59,-311,o), (-59,-311,c), (-59,-311,o), (-66,-354,o), (-65,-354,cs) ); } ); width = 191; } ); unicode = 806; }, { glyphname = commaaccentcomb.loclMAH; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (79,2); } ); guides = ( { pos = (-73,-204); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (105,-204,o), (156,-169,o), (161,-122,cs), (168,-65,o), (121,-40,o), (74,-40,cs), (60,-40,o), (48,-42,o), (37,-45,c), (41,-91,l), (41,-91,o), (55,-87,o), (70,-87,c), (94,-87,o), (111,-100,o), (108,-121,cs), (106,-139,o), (90,-157,o), (58,-157,cs), (28,-157,o), (6,-135,o), (-3,-122,c), (-38,-158,l), (-21,-186,o), (11,-204,o), (55,-204,cs) ); } ); width = 215; }, { anchors = ( { name = _bottom; pos = (95,2); } ); guides = ( { pos = (63,-119); }, { pos = (63,-207); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (112,-207,o), (161,-172,o), (168,-119,cs), (174,-66,o), (133,-41,o), (87,-41,cs), (68,-41,o), (56,-43,o), (45,-46,c), (52,-95,l), (58,-93,o), (66,-91,o), (74,-91,cs), (102,-91,o), (114,-101,o), (112,-118,cs), (110,-136,o), (91,-146,o), (66,-146,cs), (30,-146,o), (11,-124,o), (3,-111,c), (-40,-157,l), (-22,-185,o), (15,-207,o), (60,-207,cs) ); } ); width = 223; }, { anchors = ( { name = _bottom; pos = (104,-1); } ); guides = ( { pos = (-309,-137); }, { pos = (-309,-52); }, { pos = (-309,-227); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (139,-227,o), (196,-188,o), (203,-127,cs), (211,-67,o), (163,-39,o), (108,-39,cs), (87,-39,o), (65,-44,o), (53,-48,c), (62,-112,l), (67,-109,o), (79,-105,o), (93,-105,cs), (124,-105,o), (132,-119,o), (131,-129,cs), (128,-151,o), (108,-159,o), (84,-159,cs), (44,-159,o), (23,-134,o), (14,-120,c), (-33,-172,l), (-14,-203,o), (27,-227,o), (78,-227,cs) ); } ); width = 263; } ); }, { glyphname = cedillacomb; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (77,2); } ); guides = ( { pos = (-69,-120); }, { pos = (-73,-204); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (109,-208,o), (158,-174,o), (164,-123,cs), (171,-66,o), (123,-31,o), (75,-45,c), (106,9,l), (52,9,l), (2,-77,l), (36,-102,l), (40,-97,o), (52,-88,o), (72,-88,cs), (90,-88,o), (107,-103,o), (104,-122,cs), (102,-142,o), (84,-157,o), (58,-157,cs), (28,-157,o), (6,-136,o), (-3,-123,c), (-39,-162,l), (-21,-190,o), (11,-208,o), (55,-208,cs) ); } ); width = 215; }, { anchors = ( { name = _bottom; pos = (87,2); } ); guides = ( { pos = (75,-119); }, { pos = (75,-207); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (135,-214,o), (181,-180,o), (188,-124,cs), (196,-61,o), (145,-33,o), (91,-46,c), (124,8,l), (58,8,l), (7,-73,l), (48,-104,l), (52,-99,o), (68,-90,o), (86,-90,cs), (104,-90,o), (121,-102,o), (118,-121,cs), (116,-145,o), (97,-153,o), (76,-153,cs), (45,-153,o), (22,-131,o), (14,-118,c), (-29,-164,l), (-11,-192,o), (26,-214,o), (71,-214,cs) ); } ); width = 247; }, { anchors = ( { name = _bottom; pos = (97,-1); } ); guides = ( { pos = (-305,-237); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (163,-239,o), (217,-197,o), (224,-135,cs), (232,-69,o), (180,-25,o), (115,-37,c), (147,13,l), (61,13,l), (5,-74,l), (54,-118,l), (61,-114,o), (74,-104,o), (95,-104,cs), (115,-104,o), (129,-116,o), (127,-132,cs), (124,-150,o), (107,-160,o), (88,-160,cs), (53,-160,o), (26,-134,o), (17,-123,c), (-38,-184,l), (-19,-216,o), (33,-239,o), (84,-239,cs) ); } ); width = 288; }, { associatedMasterId = m003; layerId = "D7FDC5D9-E24B-404A-97F7-033D7CD42960"; name = "2 Sep 24 at 17:10"; shapes = ( { closed = 1; nodes = ( (359,-216,o), (409,-177,o), (409,-118,cs), (409,-60,o), (360,-32,o), (305,-32,cs), (284,-32,o), (263,-37,o), (251,-41,c), (268,-103,l), (273,-100,o), (284,-96,o), (298,-96,cs), (329,-96,o), (339,-110,o), (339,-120,cs), (339,-142,o), (320,-150,o), (296,-150,cs), (256,-150,o), (232,-125,o), (221,-111,c), (180,-161,l), (203,-192,o), (247,-216,o), (298,-216,cs) ); } ); width = 600; } ); unicode = 807; }, { glyphname = ogonekcomb; lastChange = "2025-01-01 09:04:23 +0000"; layers = ( { anchors = ( { name = _ogonek; pos = (105,24); } ); guides = ( { pos = (-73,-204); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (96,-204,o), (122,-195,o), (138,-182,c), (120,-131,l), (89,-153,o), (43,-139,o), (48,-101,cs), (52,-65,o), (78,-36,o), (128,-5,c), (104,25,l), (26,-12,o), (-10,-61,o), (-17,-116,cs), (-24,-171,o), (16,-204,o), (70,-204,cs) ); } ); width = 185; }, { anchors = ( { name = _ogonek; pos = (105,33); } ); guides = ( { pos = (77,-119); }, { pos = (77,-207); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (93,-206,o), (125,-194,o), (141,-181,c), (126,-118,l), (81,-145,o), (40,-133,o), (45,-93,cs), (49,-63,o), (75,-29,o), (132,-1,c), (105,34,l), (15,-1,o), (-24,-58,o), (-31,-113,cs), (-38,-170,o), (4,-206,o), (57,-206,cs) ); } ); width = 192; }, { anchors = ( { name = _ogonek; pos = (106,41); } ); guides = ( { pos = (-309,-237); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (111,-237,o), (143,-219,o), (166,-199,c), (138,-124,l), (97,-155,o), (56,-132,o), (61,-89,cs), (65,-56,o), (89,-26,o), (144,0,c), (107,42,l), (4,-4,o), (-36,-51,o), (-47,-128,cs), (-56,-193,o), (-4,-237,o), (63,-237,cs) ); } ); width = 214; } ); unicode = 808; }, { glyphname = macronbelowcomb; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (110,-12); } ); guides = ( { pos = (-102,-120); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (225,-147,l), (232,-93,l), (-32,-93,l), (-39,-147,l) ); } ); width = 284; }, { anchors = ( { name = _bottom; pos = (128,-12); } ); guides = ( { pos = (41,-119); }, { pos = (41,-207); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (260,-153,l), (268,-85,l), (-31,-85,l), (-39,-153,l) ); } ); width = 319; }, { anchors = ( { name = _bottom; pos = (149,-1); } ); guides = ( { pos = (-261,-137); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (289,-182,l), (301,-90,l), (-25,-90,l), (-37,-182,l) ); } ); width = 359; } ); unicode = 817; }, { glyphname = brevecomb_acutecomb; lastChange = "2025-01-08 14:16:21 +0000"; layers = ( { anchors = ( { name = _top; pos = (200,512); } ); layerId = m01; shapes = ( { pos = (20,0); ref = brevecomb; }, { pos = (127,138); ref = acutecomb; } ); width = 408; }, { anchors = ( { name = _top; pos = (201,500); } ); layerId = m002; shapes = ( { pos = (24,0); ref = brevecomb; }, { pos = (134,160); ref = acutecomb; } ); width = 410; }, { anchors = ( { name = _top; pos = (174,508); } ); layerId = m003; shapes = ( { pos = (-31,0); ref = brevecomb; }, { pos = (97,201); ref = acutecomb; } ); width = 329; } ); }, { glyphname = brevecomb_gravecomb; lastChange = "2025-01-08 14:17:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (216,512); } ); layerId = m01; shapes = ( { pos = (30,0); ref = brevecomb; }, { pos = (50,134); ref = gravecomb; } ); width = 410; }, { anchors = ( { name = _top; pos = (211,500); } ); layerId = m002; shapes = ( { pos = (33,0); ref = brevecomb; }, { pos = (52,161); ref = gravecomb; } ); width = 410; }, { anchors = ( { name = _top; pos = (173,508); } ); layerId = m003; shapes = ( { pos = (-31,0); ref = brevecomb; }, { pos = (-15,201); ref = gravecomb; } ); width = 329; } ); }, { glyphname = brevecomb_hookabovecomb; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { anchors = ( { name = _top; pos = (220,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (303,590,o), (348,645,o), (356,709,c), (299,709,l), (294,663,o), (266,641,o), (236,641,cs), (207,641,o), (184,663,o), (189,709,c), (132,709,l), (124,645,o), (157,590,o), (230,590,cs) ); }, { closed = 1; nodes = ( (280,739,l), (283,767,l), (326,772,o), (366,802,o), (371,847,cs), (380,918,o), (314,939,o), (236,934,c), (229,881,l), (273,885,o), (315,874,o), (311,847,cs), (307,816,o), (269,805,o), (226,805,c), (218,739,l) ); } ); width = 376; }, { anchors = ( { name = _top; pos = (231,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (326,588,o), (383,655,o), (392,727,c), (319,727,l), (314,688,o), (290,651,o), (248,651,cs), (208,651,o), (193,688,o), (198,727,c), (125,727,l), (116,655,o), (157,588,o), (241,588,cs) ); }, { closed = 1; nodes = ( (289,739,l), (292,767,l), (335,772,o), (375,802,o), (380,847,cs), (389,918,o), (323,939,o), (245,934,c), (238,881,l), (282,885,o), (324,874,o), (320,847,cs), (316,816,o), (278,805,o), (235,805,c), (227,739,l) ); } ); width = 401; }, { anchors = ( { name = _top; pos = (206,508); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (315,556,o), (384,639,o), (395,729,c), (296,729,l), (291,683,o), (271,643,o), (223,643,cs), (177,643,o), (164,683,o), (169,729,c), (70,729,l), (59,639,o), (110,556,o), (212,556,cs) ); }, { closed = 1; nodes = ( (275,736,l), (279,770,l), (324,774,o), (367,807,o), (373,854,cs), (383,939,o), (299,957,o), (218,952,c), (209,879,l), (261,883,o), (293,875,o), (291,854,cs), (288,833,o), (255,823,o), (202,823,c), (191,736,l) ); } ); width = 329; } ); }, { glyphname = brevecomb_tildecomb; lastChange = "2025-01-08 14:17:09 +0000"; layers = ( { anchors = ( { name = _top; pos = (237,512); } ); layerId = m01; shapes = ( { pos = (53,0); ref = brevecomb; }, { pos = (57,161); ref = tildecomb; } ); width = 441; }, { anchors = ( { name = _top; pos = (229,512); } ); layerId = m002; shapes = ( { pos = (55,12); ref = brevecomb; }, { pos = (56,173); ref = tildecomb; } ); width = 441; }, { anchors = ( { name = _top; pos = (176,508); } ); layerId = m003; shapes = ( { pos = (-31,0); ref = brevecomb; }, { pos = (-39,208); ref = tildecomb; } ); width = 329; } ); }, { glyphname = circumflexcomb_acutecomb; lastChange = "2025-01-08 14:16:50 +0000"; layers = ( { anchors = ( { name = _top; pos = (284,512); } ); layerId = m01; shapes = ( { pos = (116,0); ref = circumflexcomb; }, { pos = (313,98); ref = acutecomb; } ); width = 585; }, { anchors = ( { name = _top; pos = (280,500); } ); layerId = m002; shapes = ( { pos = (101,0); ref = circumflexcomb; }, { pos = (329,98); ref = acutecomb; } ); width = 585; }, { anchors = ( { name = _top; pos = (180,508); } ); layerId = m003; shapes = ( { pos = (-31,0); ref = circumflexcomb; }, { pos = (252,134); ref = acutecomb; } ); width = 396; } ); }, { glyphname = circumflexcomb_gravecomb; lastChange = "2025-01-08 14:17:48 +0000"; layers = ( { anchors = ( { name = _top; pos = (142,512); } ); layerId = m01; shapes = ( { pos = (-31,0); ref = circumflexcomb; }, { pos = (80,99); ref = gravecomb; } ); width = 283; }, { anchors = ( { name = _top; pos = (156,500); } ); layerId = m002; shapes = ( { pos = (-31,0); ref = circumflexcomb; }, { pos = (129,99); ref = gravecomb; } ); width = 339; }, { anchors = ( { name = _top; pos = (180,507); } ); layerId = m003; shapes = ( { pos = (-31,0); ref = circumflexcomb; }, { pos = (164,136); ref = gravecomb; } ); width = 425; } ); }, { glyphname = circumflexcomb_hookabovecomb; lastChange = "2025-01-08 14:24:33 +0000"; layers = ( { anchors = ( { name = _top; pos = (139,512); } ); layerId = m01; shapes = ( { pos = (-31,0); ref = circumflexcomb; }, { pos = (196,111); ref = hookabovecomb; } ); width = 342; }, { anchors = ( { name = _top; pos = (153,500); } ); layerId = m002; shapes = ( { pos = (-31,0); ref = circumflexcomb; }, { pos = (195,117); ref = hookabovecomb; } ); width = 401; }, { anchors = ( { name = _top; pos = (181,508); } ); layerId = m003; shapes = ( { pos = (-31,0); ref = circumflexcomb; }, { pos = (264,119); ref = hookabovecomb; } ); width = 474; } ); }, { glyphname = circumflexcomb_tildecomb; lastChange = "2025-01-08 14:34:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (134,500); } ); layerId = m01; shapes = ( { pos = (-29,0); ref = circumflexcomb; }, { pos = (-39,153); ref = tildecomb; } ); width = 271; }, { anchors = ( { name = _top; pos = (149,500); } ); layerId = m002; shapes = ( { pos = (-24,0); ref = circumflexcomb; }, { pos = (-17,168); ref = tildecomb; } ); width = 311; }, { anchors = ( { name = _top; pos = (205,508); } ); layerId = m003; shapes = ( { pos = (-4,0); ref = circumflexcomb; }, { pos = (-7,200); ref = tildecomb; } ); width = 415; } ); }, { glyphname = dieresis; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-15,0); ref = dieresiscomb; } ); width = 343; }, { layerId = m002; shapes = ( { pos = (-31,0); ref = dieresiscomb; } ); width = 324; }, { layerId = m003; shapes = ( { pos = (-74,0); ref = dieresiscomb; } ); width = 332; } ); unicode = 168; }, { glyphname = dotaccent; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-1,0); ref = dotaccentcomb; } ); width = 194; }, { layerId = m002; shapes = ( { pos = (-32,0); ref = dotaccentcomb; } ); width = 147; }, { layerId = m003; shapes = ( { pos = (-47,0); ref = dotaccentcomb; } ); width = 159; } ); unicode = 729; }, { glyphname = grave; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-11,0); ref = gravecomb; } ); width = 244; }, { layerId = m002; shapes = ( { pos = (-7,0); ref = gravecomb; } ); width = 238; }, { layerId = m003; shapes = ( { pos = (-34,0); ref = gravecomb; } ); width = 244; } ); unicode = 96; }, { glyphname = acute; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-11,0); ref = acutecomb; } ); width = 244; }, { layerId = m002; shapes = ( { pos = (-5,0); ref = acutecomb; } ); width = 242; }, { layerId = m003; shapes = ( { pos = (-34,0); ref = acutecomb; } ); width = 244; } ); unicode = 180; }, { glyphname = hungarumlaut; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-11,0); ref = hungarumlautcomb; } ); width = 377; }, { layerId = m002; shapes = ( { pos = (16,0); ref = hungarumlautcomb; } ); width = 440; }, { layerId = m003; shapes = ( { pos = (-40,0); ref = hungarumlautcomb; } ); width = 440; } ); unicode = 733; }, { glyphname = circumflex; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (9,0); ref = circumflexcomb; } ); width = 348; }, { layerId = m002; shapes = ( { pos = (31,0); ref = circumflexcomb; } ); width = 421; }, { layerId = m003; shapes = ( { pos = (-14,0); ref = circumflexcomb; } ); width = 396; } ); unicode = 710; }, { glyphname = caron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (9,0); ref = caroncomb; } ); width = 348; }, { layerId = m002; shapes = ( { pos = (31,0); ref = caroncomb; } ); width = 421; }, { layerId = m003; shapes = ( { pos = (-14,0); ref = caroncomb; } ); width = 396; } ); unicode = 711; }, { glyphname = breve; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-15,0); ref = brevecomb; } ); width = 324; }, { layerId = m002; shapes = ( { pos = (126,0); ref = brevecomb; } ); width = 600; }, { layerId = m003; shapes = ( { pos = (-41,0); ref = brevecomb; } ); width = 329; } ); unicode = 728; }, { glyphname = ring; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (17,0); ref = ringcomb; } ); width = 333; }, { layerId = m002; shapes = ( { pos = (-38,0); ref = ringcomb; } ); width = 237; }, { layerId = m003; shapes = ( { pos = (-55,0); ref = ringcomb; } ); width = 237; } ); unicode = 730; }, { glyphname = tilde; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-18,0); ref = tildecomb; } ); width = 351; }, { layerId = m002; shapes = ( { pos = (107,0); ref = tildecomb; } ); width = 601; }, { layerId = m003; shapes = ( { pos = (-44,0); ref = tildecomb; } ); width = 389; } ); unicode = 732; }, { glyphname = macron; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (9,0); ref = macroncomb; } ); width = 364; }, { layerId = m002; shapes = ( { pos = (-31,0); ref = macroncomb; } ); width = 359; }, { layerId = m003; shapes = ( { pos = (-32,0); ref = macroncomb; } ); width = 346; } ); unicode = 175; }, { glyphname = cedilla; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (7,0); ref = cedillacomb; } ); width = 298; }, { layerId = m002; shapes = ( { pos = (-35,0); ref = cedillacomb; } ); width = 247; }, { layerId = m003; shapes = ( { pos = (-44,0); ref = cedillacomb; } ); width = 262; } ); unicode = 184; }, { glyphname = ogonek; lastChange = "2025-01-01 08:47:28 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-9,0); ref = ogonekcomb; } ); width = 263; }, { layerId = m002; shapes = ( { pos = (-27,0); ref = ogonekcomb; } ); width = 215; }, { layerId = m003; shapes = ( { pos = (-46,0); ref = ogonekcomb; } ); width = 191; } ); unicode = 731; } ); instances = ( { axesValues = ( 300 ); instanceInterpolations = { m01 = 1; }; isItalic = 1; name = "Light Italic"; weightClass = 300; }, { axesValues = ( 400 ); instanceInterpolations = { m002 = 1; }; isItalic = 1; name = Italic; }, { axesValues = ( 500 ); instanceInterpolations = { m002 = 0.66667; m003 = 0.33333; }; isItalic = 1; name = "Medium Italic"; weightClass = 500; }, { axesValues = ( 600 ); instanceInterpolations = { m002 = 0.33333; m003 = 0.66667; }; isItalic = 1; name = "SemiBold Italic"; weightClass = 600; }, { axesValues = ( 700 ); instanceInterpolations = { m003 = 1; }; isBold = 1; isItalic = 1; name = "Bold Italic"; weightClass = 700; } ); kerningLTR = { m01 = { "@MMK_L_A" = { "@MMK_R_A" = 50; "@MMK_R_O" = -10; "@MMK_R_V" = -20; "@MMK_R_o" = -10; J = 20; T = -30; X = 30; Y = -30; Z = 40; question = -10; quotedblright = -80; quoteright = -80; v = -23; w = -29; x = 10; y = -17; }; "@MMK_L_B" = { "@MMK_R_O" = 10; "@MMK_R_a" = -20; "@MMK_R_o" = -10; N = 10; b = -10; h = -10; i = -10; j = -10; k = -10; l = -10; p = -10; period = -20; quotedblright = -10; r = -6; u = -13; w = -10; x = -10; }; "@MMK_L_E" = { "@MMK_R_A" = 0; "@MMK_R_O" = -30; "@MMK_R_T" = 20; "@MMK_R_a" = -20; "@MMK_R_o" = -57; J = 10; Z = 10; aacute = -47; acircumflex = -56; adieresis = -72; agrave = -34; aring = -49; atilde = -58; braceright = 20; bracketright = 20; eacute = -58; ecircumflex = -58; edieresis = -58; egrave = -58; f = -20; iacute = -50; icircumflex = -50; igrave = -50; oacute = -58; ocircumflex = -58; odieresis = -61; ograve = -58; otilde = -58; parenright = 10; period = 0; r = -48; u = -40; uacute = -58; ucircumflex = -58; udieresis = -58; ugrave = -58; v = -20; w = -20; y = -34; ydieresis = -58; }; "@MMK_L_F" = { "@MMK_R_A" = -90; "@MMK_R_O" = -40; "@MMK_R_a" = -70; "@MMK_R_o" = -80; D = -10; H = -20; J = -80; L = -20; S = -30; b = -20; backslash = 20; braceright = 20; comma = -100; f = -20; h = -10; i = -30; j = -30; k = -10; m = -40; n = -40; p = -50; parenright = 10; period = -120; r = -50; s = -50; t = -20; u = -50; w = -20; x = -30; y = -30; z = -30; }; "@MMK_L_G" = { "@MMK_R_A" = 40; Lslash = 10; X = 10; braceright = 20; bracketright = 20; parenright = 30; }; "@MMK_L_O" = { "@MMK_R_A" = 20; "@MMK_R_B" = 10; "@MMK_R_E" = 10; "@MMK_R_T" = -20; "@MMK_R_V" = -10; "@MMK_R_a" = -10; I = -30; J = 10; M = 0; S = 10; X = -10; Y = -20; braceright = 20; comma = -50; i = -10; j = -20; k = -10; m = -10; n = -10; p = -20; period = -40; quotedblright = -10; quoteright = -30; u = -10; x = -10; }; "@MMK_L_Q" = { parenright = 20; period = -30; quotedblright = -30; quoteright = -30; }; "@MMK_L_T" = { "@MMK_R_O" = -20; "@MMK_R_T" = 20; "@MMK_R_V" = 30; "@MMK_R_a2" = -80; I = 10; J = -40; L = 10; Y = 20; Z = 20; backslash = 50; braceright = 30; bracketright = 30; colon = -20; comma = -100; hyphen = -50; icircumflex = 20; igrave = 50; imacron = 50; itilde = 30; m = -40; n = -30; p = -20; parenright = 20; period = -80; quoteright = 40; semicolon = -20; ubreve = -30; v = -30; x = -20; }; "@MMK_L_Uhorn" = { "@MMK_R_O" = 0; }; "@MMK_L_V" = { "@MMK_R_A" = -30; "@MMK_R_O" = -20; "@MMK_R_T" = 30; "@MMK_R_V" = 30; "@MMK_R_a" = -59; "@MMK_R_a2" = -30; "@MMK_R_o" = -65; J = -40; aacute = -20; abreve = -40; acircumflex = -30; adieresis = -20; agrave = -30; aring = -20; atilde = -30; backslash = 50; braceright = 30; bracketright = 30; colon = -60; comma = -60; eacute = -30; ecircumflex = -30; edieresis = -20; egrave = -20; hyphen = -20; i = -20; icircumflex = 48; idieresis = 48; igrave = 48; m = -30; n = -30; oacute = -30; ocircumflex = -30; odieresis = -30; ograve = -30; ohornacute = -50; otilde = -30; p = -30; parenright = 30; period = -60; quoteright = 50; r = -45; s = -40; u = -40; v = -16; y = -17; }; "@MMK_L_o" = { "@MMK_R_T" = -60; "@MMK_R_V" = -20; Y = -40; bracketright = -20; comma = -30; emdash = 20; endash = 20; f = -10; i = -10; j = -20; l = -10; lslash = 30; parenright = 10; period = -30; question = -10; quotedblright = -80; quoteright = -30; s = 10; slash = 10; w = -10; x = -10; }; "@MMK_L_w" = { nhookretroflex = -10; }; C = { J = 10; braceright = 20; parenright = 10; quotedblright = 20; quoteright = 20; }; H = { "@MMK_R_O" = -10; "@MMK_R_a" = -20; "@MMK_R_o" = -20; D = -10; i = -10; j = -10; m = -10; n = -10; p = -20; period = -50; }; I = { "@MMK_R_O" = -30; "@MMK_R_T" = 10; "@MMK_R_a" = -30; "@MMK_R_o" = -40; J = -10; backslash = 50; f = -30; quoteright = 10; u = -20; v = -20; w = -20; y = -30; z = 10; }; J = { "@MMK_R_V" = 20; L = 0; X = 10; Y = 20; Z = 10; backslash = 50; braceright = 30; period = -30; quotedblright = 20; quoteright = 20; }; K = { "@MMK_R_A" = 10; "@MMK_R_O" = -10; "@MMK_R_V" = 20; "@MMK_R_a" = -10; "@MMK_R_o" = -10; P = 10; Z = 20; backslash = 50; braceright = 20; idieresis = 23; igrave = 25; semicolon = 20; v = -23; w = -19; y = -21; }; L = { "@MMK_R_A" = 20; "@MMK_R_O" = -30; "@MMK_R_T" = -50; "@MMK_R_V" = -30; U = -20; X = 10; Y = -80; Z = 20; braceright = 20; bracketright = 20; colon = 20; emdash = -40; endash = -30; hyphen = -40; parenright = 20; quotedblright = -60; quoteright = -100; semicolon = 20; v = -20; w = -30; x = 20; y = -40; }; Lslash = { "@MMK_R_A" = 50; "@MMK_R_O" = -40; U = -20; Y = -80; }; M = { "@MMK_R_a" = -20; "@MMK_R_o" = -20; D = -10; }; N = { "@MMK_R_a" = -20; "@MMK_R_o" = -20; p = -10; }; P = { "@MMK_R_A" = -45; "@MMK_R_a" = -27; "@MMK_R_a2" = -20; "@MMK_R_o" = -24; J = -50; braceright = 10; comma = -150; period = -120; quotedblright = 20; }; R = { "@MMK_R_O" = -20; "@MMK_R_a" = -20; "@MMK_R_o" = -20; D = -10; f = -10; quotedblright = -10; u = -20; w = -20; y = -10; }; S = { L = 10; quoteright = 30; w = -10; }; T = { "@MMK_R_A" = -40; "@MMK_R_a" = -80; "@MMK_R_o" = -80; aacute = -60; acircumflex = -60; adieresis = -60; agrave = -60; aring = -60; atilde = -60; eacute = -60; ecircumflex = -60; edieresis = -60; egrave = -60; i = -12; idieresis = 30; idotless = -14; oacute = -60; ocircumflex = -60; odieresis = -60; ograve = -60; otilde = -60; r = -60; s = -68; u = -60; uacute = -60; ucircumflex = -60; udieresis = -60; ugrave = -60; uhorn = -60; w = -60; y = -60; }; U = { "@MMK_R_A" = -14; "@MMK_R_B" = -10; "@MMK_R_a" = -10; "@MMK_R_o" = -10; D = -10; X = -10; backslash = 40; colon = -20; comma = -50; period = -30; }; X = { "@MMK_R_A" = 30; "@MMK_R_O" = -20; "@MMK_R_a" = -20; "@MMK_R_o" = -20; period = 20; quoteright = 20; semicolon = 20; u = -20; v = -20; w = -20; }; Y = { "@MMK_R_A" = -30; "@MMK_R_O" = -30; "@MMK_R_T" = 40; "@MMK_R_a" = -70; "@MMK_R_o" = -70; J = -80; aacute = -60; acircumflex = -30; adieresis = -30; agrave = -30; aring = -30; atilde = -30; backslash = 50; braceright = 30; bracketright = 30; colon = -30; comma = -120; eacute = -30; ecircumflex = -30; edieresis = -30; egrave = -30; hyphen = -50; icircumflex = 50; idieresis = 50; idotless = -6; igrave = 50; m = -30; n = -30; oacute = -60; ocircumflex = -60; odieresis = -60; ograve = -60; otilde = -60; p = -60; parenright = 30; period = -150; quotedblbase = -70; quoteright = 60; r = -40; s = -40; semicolon = -20; u = -40; uacute = -60; w = -50; x = -30; z = -20; }; Z = { "@MMK_R_A" = 20; "@MMK_R_E" = -20; "@MMK_R_T" = 20; "@MMK_R_a" = -20; "@MMK_R_o" = -20; Y = 20; backslash = 50; braceright = 20; bracketright = 20; parenright = 20; quoteright = 30; }; a = { braceright = 20; bracketright = 20; j = -10; l = 10; parenright = 30; s = 20; slash = 20; z = 20; }; adieresis = { germandbls = 20; }; b = { f = -20; j = -10; period = -20; w = -20; y = -10; }; backslash = { "@MMK_R_A" = 30; "@MMK_R_a" = 40; j = 50; p = 40; y = 50; z = 20; }; braceleft = { "@MMK_R_T" = 30; "@MMK_R_V" = 30; "@MMK_R_o" = -30; Y = 30; Z = 20; f = -20; j = 20; m = -10; n = -10; w = -20; }; bracketleft = { "@MMK_R_O" = -20; "@MMK_R_T" = 30; "@MMK_R_V" = 30; "@MMK_R_a" = -10; "@MMK_R_o" = -30; Y = 30; Z = 20; j = 30; u = -20; }; c = { parenright = 20; quoteright = -20; y = 10; }; caroncomb = { "@MMK_R_a" = -60; "@MMK_R_a2" = -100; u = -60; }; comma = { X = 20; x = 20; }; d = { "@MMK_R_A" = 10; "@MMK_R_a" = -20; braceright = 30; bracketright = 20; hyphen = -20; parenright = 30; slash = 20; w = -10; x = 20; z = 20; }; dcaron = { "@MMK_R_a" = -50; "@MMK_R_o" = -50; a.ss01 = -40; n = -50; s = -40; u = -40; }; degree = { "@MMK_R_O" = -40; "@MMK_R_o" = -60; }; eight = { degree = -30; eight = -20; five = -30; four = -20; nine = -40; one = -20; percent = -20; seven = -70; six = -50; three = -30; two = -20; zero = -20; }; endash = { space = -150; }; f = { "@MMK_R_T" = 30; "@MMK_R_V" = 40; "@MMK_R_a" = -10; "@MMK_R_o" = -10; I = 20; Y = 30; b = 30; backslash = 60; braceright = 50; bracketright = 60; exclam = 20; h = 20; k = 10; l = 10; m = 10; parenright = 50; period = -30; quotedblright = 50; quoteright = 70; t = 20; v = 20; x = 20; y = 20; z = 20; }; five = { degree = -10; nine = -30; }; four = { degree = -50; nine = -30; ordfeminine = -30; percent = -40; seven = -20; zero = -20; }; g = { "@MMK_R_o" = 10; parenright = 10; quoteright = -10; }; g.ss01 = { j = 40; }; h = { "@MMK_R_a" = -10; "@MMK_R_o" = -20; h = -10; j = -20; k = -10; quotedblright = -80; quoteright = -50; u = -20; w = -10; }; hyphen = { f = -20; }; i = { "@MMK_R_a" = -20; "@MMK_R_o" = -30; D = -20; j = -20; p = -10; quoteright = 20; space = 0; }; iacute = { l = 20; }; icircumflex = { l = 20; }; idieresis = { l = 20; }; j = { "@MMK_R_a" = -30; "@MMK_R_o" = -20; D = -20; b = 10; braceright = 20; i = -20; quoteright = 20; y = 10; }; k = { b = 10; k = 10; l = 10; parenright = 10; r = 10; }; l = { "@MMK_R_a" = -20; "@MMK_R_o" = -10; i = -10; icircumflex = 20; idieresis = 20; quoteright = 10; v = 10; }; lcaron = { "@MMK_R_a" = -70; "@MMK_R_o" = -60; a.ss01 = -50; n = -60; s = -60; u = -60; }; lslash = { w = 20; y = 20; }; m = { "@MMK_R_o" = -10; f = -20; quotedblright = -80; quoteright = -70; w = -20; y = -20; }; n = { "@MMK_R_a" = -10; f = -20; period = -20; quotedblright = -80; quoteright = -40; w = -10; }; nhookretroflex = { "@MMK_R_v" = -10; "@MMK_R_w" = -20; j = 20; p = 30; x = 20; }; nine = { comma = -100; eight = -20; five = -50; four = -50; nine = -20; one = -20; period = -90; seven = -50; six = -50; three = -30; two = -30; zero = -10; }; ohorn = { i = 20; }; ohornacute = { i = 20; }; one = { degree = -90; eight = -50; five = -30; four = -50; nine = -50; ordfeminine = -80; ordmasculine = -50; percent = -60; seven = -50; six = -30; three = -30; zero = -50; }; parenleft = { "@MMK_R_T" = 20; "@MMK_R_V" = 30; "@MMK_R_o" = -20; Y = 30; Z = 20; eight = -10; j = 30; }; period = { X = 50; x = 20; }; q = { "@MMK_R_a" = -20; "@MMK_R_o" = -10; braceright = 30; j = 10; k = -10; m = -10; n = -10; period = -20; quotedblright = -20; slash = 20; u = -10; w = -10; }; questiondown = { "@MMK_R_o" = -30; }; quotedblleft = { "@MMK_R_A" = -90; "@MMK_R_O" = -10; "@MMK_R_a" = -40; "@MMK_R_o" = -40; J = -70; m = -20; }; quoteleft = { "@MMK_R_A" = -80; "@MMK_R_O" = -10; "@MMK_R_V" = 40; "@MMK_R_a" = -30; "@MMK_R_o" = -40; J = -50; Y = 40; Z = 30; s = -10; }; quoteright = { "@MMK_R_O" = -50; "@MMK_R_T" = 20; "@MMK_R_V" = 30; "@MMK_R_a" = -60; "@MMK_R_o" = -60; J = -80; Y = 20; j = 20; k = 20; n = -30; p = -20; s = -80; u = -30; w = -30; z = -30; }; r = { b = 10; braceright = 20; comma = -80; f = 20; l = 10; period = -80; quoteright = 40; t = 20; }; s = { braceright = 10; slash = 10; }; seven = { comma = -120; eight = -30; five = -40; four = -60; nine = -30; one = -10; ordfeminine = 10; parenright = 20; period = -120; six = -60; two = -20; }; six = { degree = -40; five = -30; four = -20; nine = -50; one = -20; percent = -30; seven = -80; six = -30; two = -30; zero = 10; }; slash = { "@MMK_R_T" = 40; "@MMK_R_V" = 50; "@MMK_R_a" = -10; "@MMK_R_o" = -20; U = 30; Y = 50; Z = 50; b = 20; }; space = { "@MMK_R_A" = -2; "@MMK_R_V" = -30; }; t = { "@MMK_R_a" = 10; slash = 20; }; tcaron = { "@MMK_R_o" = -20; n = -20; }; three = { degree = -10; ordfeminine = -10; }; two = { eight = -50; five = -30; four = -50; nine = -30; ordfeminine = -20; percent = -10; seven = -50; six = -50; three = -20; zero = -20; }; u = { "@MMK_R_a" = -20; braceright = 10; bracketright = -20; f = -20; period = -20; quoteright = -30; }; uhorn = { ohorn = -30; ohorndotbelow = -20; }; v = { "@MMK_R_o" = -10; comma = -60; period = -60; quoteright = 20; }; w = { "@MMK_R_a" = -20; "@MMK_R_o" = -20; comma = -70; f = -10; hyphen = -20; j = -10; lslash = 20; p = -10; period = -70; quotedblright = -10; s = -10; space = -11; u = -10; }; x = { "@MMK_R_a" = -10; "@MMK_R_o" = -10; exclam = 20; nhookretroflex = -10; slash = 20; }; y = { "@MMK_R_T" = -50; "@MMK_R_a" = -20; "@MMK_R_o" = -20; comma = -100; lslash = 20; period = -100; quoteright = 30; }; z = { "@MMK_R_a" = -20; "@MMK_R_o" = -10; period = -20; }; }; m002 = { "@MMK_L_A" = { "@MMK_R_A" = 50; "@MMK_R_E" = 10; "@MMK_R_O" = -20; "@MMK_R_T" = -80; "@MMK_R_V" = -20; J = 10; X = 20; Y = -50; Z = 10; bracketright = -30; comma = 20; question = -10; quotedblright = -50; quoteright = -70; s = 10; slash = 50; v = -10; w = -20; x = 30; z = 10; }; "@MMK_L_B" = { "@MMK_R_T" = -60; "@MMK_R_a" = -10; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -20; Y = -20; Z = 10; backslash = 20; braceright = -10; bracketright = -40; comma = -20; h = -10; icircumflex = 10; igrave = 10; j = -10; n = -10; p = -10; period = -30; question = -10; quotedblright = -10; w = -20; }; "@MMK_L_E" = { "@MMK_R_A" = 0; "@MMK_R_O" = -10; "@MMK_R_a" = -30; "@MMK_R_o" = -30; P = 10; X = 20; b = -10; backslash = 40; icircumflex = 50; idieresis = 50; igrave = 50; m = -10; period = -20; quotedblright = 10; slash = 40; u = -30; udieresis = -20; v = -20; w = -30; x = 10; y = -20; }; "@MMK_L_F" = { "@MMK_R_A" = -70; "@MMK_R_O" = -20; "@MMK_R_V" = 10; "@MMK_R_a" = -60; "@MMK_R_o" = -60; J = -80; backslash = 50; comma = -100; i = -20; j = -30; k = -10; m = -30; n = -40; p = -40; period = -100; r = -40; s = -50; u = -40; v = -30; w = -30; x = -20; y = 0; z = -20; }; "@MMK_L_G" = { "@MMK_R_A" = 20; "@MMK_R_T" = -70; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -20; K = 10; Y = -20; bracketright = -60; l = 20; x = 10; }; "@MMK_L_K" = { "@MMK_R_quoteright" = -20; backslash = 30; slash = 30; }; "@MMK_L_O" = { "@MMK_R_A" = -10; "@MMK_R_T" = -70; "@MMK_R_a" = -20; "@MMK_R_o" = -20; "@MMK_R_quoteright" = -30; I = -20; Y = -40; backslash = 10; braceright = -20; bracketright = -60; comma = -30; emdash = 20; icircumflex = 30; idieresis = 30; igrave = 30; j = -20; k = -20; n = -10; p = -10; period = -60; quotedblright = -10; u = -20; }; "@MMK_L_Q" = { "@MMK_R_T" = -80; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -30; Y = -20; question = -10; quotedblright = -20; }; "@MMK_L_T" = { "@MMK_R_A" = -50; "@MMK_R_O" = -40; "@MMK_R_a2" = -80; "@MMK_R_colon" = -40; "@MMK_R_n" = -30; "@MMK_R_u" = -70; "@MMK_R_v" = -40; J = -80; S = -10; comma = -100; emdash = -20; four = -50; h = -10; hyphen = -70; i = -30; iacute = -10; imacron = 40; itilde = 40; j = -40; n = -50; p = -60; period = -100; slash = -40; ubreve = -70; x = -30; z = -30; }; "@MMK_L_Uhorn" = { "@MMK_R_O" = -40; }; "@MMK_L_V" = { "@MMK_R_." = -100; "@MMK_R_A" = -30; "@MMK_R_O" = -10; "@MMK_R_T" = -20; "@MMK_R_V" = 40; "@MMK_R_a" = -30; "@MMK_R_a2" = -60; "@MMK_R_colon" = -20; "@MMK_R_n" = -20; "@MMK_R_o" = -40; "@MMK_R_w" = -20; D = 10; J = -50; Lslash = -10; X = 30; Y = 10; abreve = -50; backslash = 100; bracketright = -20; colon = -30; hyphen = -30; icircumflex = 50; idieresis = 50; igrave = 50; p = -20; period = -100; r = -20; s = -20; slash = -40; u = -20; }; "@MMK_L_i" = { "@MMK_R_quoteright" = 10; bracketright = -50; }; "@MMK_L_n" = { "@MMK_R_quoteright" = -40; bracketright = -80; question = -20; quotedblright = -50; slash = 20; }; "@MMK_L_o" = { "@MMK_R_T" = -100; "@MMK_R_V" = -30; "@MMK_R_quoteright" = -60; Y = -50; b = -10; braceright = -20; bracketright = -60; comma = -30; f = -10; h = -10; j = -30; lslash = 20; m = -10; period = -40; question = -20; quotedblright = -40; r = -10; w = -30; }; "@MMK_L_quoteleft" = { "@MMK_R_O" = -20; "@MMK_R_o" = -60; D = -10; J = -100; p = -20; r = -20; s = -20; u = -30; }; "@MMK_L_quoteright" = { "@MMK_R_A" = -70; "@MMK_R_V" = 30; "@MMK_R_n" = -50; "@MMK_R_o" = -80; "@MMK_R_v" = -10; "@MMK_R_w" = -20; s = -80; u = -50; z = -10; }; "@MMK_L_u" = { "@MMK_R_o" = -50; }; "@MMK_L_uhorn" = { "@MMK_R_o" = -50; }; "@MMK_L_v" = { "@MMK_R_A" = 20; "@MMK_R_O" = -20; "@MMK_R_T" = -20; "@MMK_R_o" = -10; "@MMK_R_quoteright" = 10; "@MMK_R_v" = -30; X = 20; Y = 20; Z = 20; braceright = -30; bracketright = -40; period = -20; slash = 0; }; "@MMK_L_w" = { "@MMK_R_quoteright" = 0; braceright = -60; bracketright = -80; comma = -70; endash = -10; period = -60; slash = -20; }; AE = { "@MMK_R_A" = 10; }; C = { "@MMK_R_T" = -40; "@MMK_R_o" = -10; backslash = 30; braceright = -20; bracketright = -30; comma = -30; j = -20; period = -40; quotedblright = 10; x = 10; y = 20; }; H = { "@MMK_R_T" = -30; "@MMK_R_o" = -20; "@MMK_R_quoteright" = -20; backslash = 30; bracketright = -50; j = -20; period = -30; u = -20; }; I = { "@MMK_R_O" = -20; "@MMK_R_a" = -30; "@MMK_R_o" = -40; backslash = 50; bracketright = -20; p = -20; period = -20; r = -20; slash = 20; u = -30; v = -20; w = -30; y = -30; }; J = { "@MMK_R_T" = -30; "@MMK_R_o" = -10; Y = 20; backslash = 30; icircumflex = 30; idieresis = 30; igrave = 30; m = -10; p = -10; period = -50; slash = 20; u = -10; v = 10; y = 10; }; K = { "@MMK_R_a" = -25; "@MMK_R_o" = -30; "@MMK_R_w" = -20; icircumflex = 40; idieresis = 40; igrave = 40; j = -10; u = -15; v = -30; w = -30; x = 20; }; L = { "@MMK_R_A" = 20; "@MMK_R_O" = -30; "@MMK_R_T" = -80; "@MMK_R_V" = -30; "@MMK_R_quoteright" = -100; "@MMK_R_v" = -10; Y = -60; Z = 30; endash = -50; hyphen = -50; question = -20; quotedblright = -100; slash = 40; w = -30; x = 30; y = -10; z = 10; }; Lslash = { "@MMK_R_A" = 40; "@MMK_R_O" = -30; Oacute = -20; U = -20; Y = -70; }; M = { "@MMK_R_T" = -40; "@MMK_R_o" = -20; "@MMK_R_quoteright" = -20; braceright = -10; bracketright = -40; icircumflex = 30; idieresis = 30; igrave = 30; period = -30; slash = 10; }; N = { "@MMK_R_O" = -10; "@MMK_R_T" = -40; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -20; "@MMK_R_w" = -10; b = -10; bracketright = -30; icircumflex = 30; idieresis = 30; igrave = 30; j = -10; period = -40; }; P = { "@MMK_R_A" = -40; "@MMK_R_T" = -20; "@MMK_R_a" = -40; "@MMK_R_o" = -40; "@MMK_R_v" = 20; J = -50; bracketright = -40; comma = -120; four = -20; icircumflex = 40; idieresis = 40; igrave = 40; j = -20; period = -150; slash = -40; t = 10; x = 10; }; R = { "@MMK_R_O" = -10; "@MMK_R_T" = -70; "@MMK_R_o" = -20; "@MMK_R_quoteright" = -30; Lslash = -20; braceright = -20; icircumflex = 30; idieresis = 30; igrave = 30; question = -20; quotedblright = -10; u = -10; x = 10; }; S = { "@MMK_R_O" = 10; "@MMK_R_T" = -30; J = 30; N = 20; P = 10; icircumflex = 40; idieresis = 40; igrave = 40; parenright = 20; period = -10; quotedblright = -10; }; T = { "@MMK_R_a" = -80; "@MMK_R_o" = -100; icircumflex = 40; idieresis = 60; igrave = 40; r = -70; s = -80; u = -70; uhorn = -100; w = -70; y = -40; }; Thorn = { Y = -20; }; U = { "@MMK_R_A" = -20; "@MMK_R_T" = -40; "@MMK_R_n" = -10; "@MMK_R_quoteright" = -20; bracketright = -40; icircumflex = 40; idieresis = 40; igrave = 40; k = -10; p = -10; period = -50; v = 20; }; X = { "@MMK_R_A" = 20; "@MMK_R_O" = -20; "@MMK_R_T" = -30; "@MMK_R_o" = -20; "@MMK_R_v" = -10; "@MMK_R_w" = -10; J = 20; Z = 30; backslash = 50; bracketright = -50; icircumflex = 40; idieresis = 40; igrave = 40; x = 10; }; Y = { "@MMK_R_A" = -50; "@MMK_R_O" = -40; "@MMK_R_T" = -10; "@MMK_R_V" = 10; "@MMK_R_a" = -60; "@MMK_R_colon" = -30; "@MMK_R_n" = -40; "@MMK_R_o" = -80; J = -80; backslash = 80; bracketright = -30; comma = -100; f = -10; hyphen = -70; i = -10; icircumflex = 60; idieresis = 60; igrave = 70; j = -20; n = -40; p = -50; period = -130; quotedblbase = -100; r = -50; s = -60; slash = -50; u = -60; w = -50; }; Z = { "@MMK_R_A" = 10; "@MMK_R_O" = -20; "@MMK_R_o" = -20; backslash = 60; icircumflex = 60; idieresis = 60; igrave = 60; }; a = { "@MMK_R_colon" = -10; "@MMK_R_quoteright" = -10; bracketright = -40; j = -10; p = -10; period = -20; question = -10; w = -10; x = 10; z = 10; }; aogonek = { lslash = 10; }; backslash = { "@MMK_R_A" = 20; "@MMK_R_O" = -20; "@MMK_R_V" = -20; "@MMK_R_v" = -20; "@MMK_R_w" = -40; Y = -40; Z = 20; j = 50; }; braceleft = { "@MMK_R_B" = -10; "@MMK_R_O" = -40; "@MMK_R_T" = -10; "@MMK_R_o" = -40; "@MMK_R_v" = -10; "@MMK_R_w" = -60; D = -10; L = -10; M = -10; R = -20; S = -20; f = -50; j = 20; u = -50; }; bracketleft = { "@MMK_R_O" = -20; "@MMK_R_V" = 10; "@MMK_R_n" = -50; "@MMK_R_o" = -50; "@MMK_R_v" = -20; "@MMK_R_w" = -40; j = 20; k = -20; s = -30; u = -40; }; c = { bracketright = -50; w = -10; }; caroncomb = { "@MMK_R_a" = -70; "@MMK_R_a2" = -120; u = -70; }; comma = { x = 40; }; d = { caroncomb = -10; hyphen = -20; slash = 20; w = -20; z = 10; }; dcaron = { "@MMK_R_a" = -60; "@MMK_R_o" = -60; a.ss01 = -60; n = -50; s = -50; u = -50; }; eight = { "@MMK_R_." = -60; five = -30; four = -30; percent = -30; seven = -40; three = -10; two = -20; }; emdash = { "@MMK_R_E" = 20; "@MMK_R_T" = -100; }; endash = { "@MMK_R_T" = -70; space = -100; }; equal = { seven = -20; }; f = { "@MMK_R_E" = 30; "@MMK_R_V" = 50; I = 10; Y = 40; backslash = 70; braceright = 50; bracketright = 50; comma = -30; l = 20; p = 10; parenright = 50; period = -40; quotedblright = 50; quoteright = 40; t = 30; v = 40; x = 30; y = 30; z = 20; }; five = { "@MMK_R_." = -80; degree = -20; five = -20; four = -30; greater = 10; nine = -30; one = -20; percent = -40; seven = -20; three = -20; two = -20; }; four = { "@MMK_R_." = -50; "@MMK_R_T" = -50; cent = -30; degree = -30; equal = 20; percent = -50; }; g = { "@MMK_R_o" = -10; "@MMK_R_quoteright" = -50; bracketright = -90; comma = -10; p = -10; period = -40; w = -10; }; h = { "@MMK_R_A" = 10; "@MMK_R_colon" = -10; "@MMK_R_o" = -30; "@MMK_R_quoteright" = -80; bracketright = -60; period = -20; quotedblright = -50; w = -25; }; hyphen = { "@MMK_R_T" = -100; }; i = { j = -30; }; iacute = { l = 50; }; icircumflex = { l = 40; }; idieresis = { l = 60; }; igrave = { space = 0; }; j = { "@MMK_R_B" = -10; "@MMK_R_o" = -10; bracketright = -30; slash = 20; x = 20; y = 20; }; k = { bracketright = -60; n = 10; slash = 20; v = 10; x = 20; y = 20; z = 10; }; l = { "@MMK_R_O" = 10; "@MMK_R_V" = 30; backslash = 40; bracketright = -40; icircumflex = 50; idieresis = 40; quotedblright = 10; t = 10; }; lcaron = { "@MMK_R_a" = -70; "@MMK_R_o" = -70; a.ss01 = -70; n = -60; s = -60; u = -60; }; lslash = { "@MMK_R_o" = 10; w = 20; y = 20; }; m = { "@MMK_R_o" = -10; h = -10; t = -10; v = -10; w = -20; }; n = { "@MMK_R_o" = -10; period = -20; w = -10; }; nhookretroflex = { "@MMK_R_o" = -10; }; nine = { cent = -20; comma = -70; five = -30; four = -40; nine = -10; period = -100; seven = -40; six = -20; three = -20; }; one = { "@MMK_R_." = -30; cent = -50; degree = -80; eight = -50; five = -50; four = -50; nine = -50; ordfeminine = -90; ordmasculine = -50; percent = -80; seven = -50; six = -30; three = -30; zero = -20; }; parenleft = { "@MMK_R_a" = -20; eight = -10; j = 20; }; q = { "@MMK_R_A" = 10; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -30; j = 30; slash = 40; x = 10; y = 20; }; questiondown = { "@MMK_R_o" = -50; }; quotedblleft = { "@MMK_R_A" = -80; "@MMK_R_O" = -10; "@MMK_R_n" = -30; "@MMK_R_o" = -60; J = -80; S = -20; p = -10; s = -30; t = 10; u = -10; }; quoteleft = { "@MMK_R_A" = -80; }; r = { "@MMK_R_a" = -10; "@MMK_R_o" = -20; "@MMK_R_quoteright" = 20; backslash = 30; comma = -80; f = 20; period = -100; quotedblright = 20; t = 30; v = 20; w = 20; x = 20; y = 40; z = 10; }; rupeeIndian = { nine = 20; seven = 20; }; s = { "@MMK_R_o" = -10; "@MMK_R_quoteright" = -40; J = 20; bracketright = -60; j = -30; lslash = 10; question = -10; }; seven = { cent = -30; comma = -80; degree = 30; four = -50; ordfeminine = 20; parenright = 20; period = -120; six = -30; three = 20; }; six = { "@MMK_R_." = -30; degree = -40; five = -30; four = -30; nine = -30; one = -20; percent = -60; seven = -50; two = -20; }; slash = { "@MMK_R_E" = 10; "@MMK_R_T" = 40; "@MMK_R_V" = 50; "@MMK_R_n" = -20; "@MMK_R_o" = -50; "@MMK_R_w" = -20; I = 20; J = -50; K = 20; M = 20; P = 20; X = 70; Y = 70; Z = 40; }; t = { "@MMK_R_o" = -10; f = 0; l = 10; quotedblright = 10; v = 10; x = 20; y = 10; }; tcaron = { "@MMK_R_a" = -20; a.ss01 = -20; h = 20; }; three = { "@MMK_R_." = -50; cent = -30; degree = -10; percent = -10; }; two = { "@MMK_R_." = -30; cent = -30; degree = -10; eight = -20; five = -30; four = -50; nine = -10; percent = -20; seven = -50; six = -30; three = -30; x = 20; zero = -10; }; u = { "@MMK_R_o" = -10; "@MMK_R_quoteright" = -50; D = -20; braceright = -20; bracketright = -60; j = -20; period = -20; quotedblright = -20; }; uhorn = { n = -30; ohorn = -50; }; uhorntilde = { n = -30; }; v = { f = 20; j = -20; t = 20; v = 30; w = 10; x = 20; y = 30; }; w = { "@MMK_R_a" = -20; "@MMK_R_o" = -30; j = -10; lslash = 10; p = -10; r = -10; t = 10; x = 10; }; x = { "@MMK_R_A" = 40; "@MMK_R_o" = -10; J = 20; bracketright = -30; l = 20; p = 10; t = 20; v = 20; y = 10; }; y = { "@MMK_R_T" = -60; "@MMK_R_o" = -10; comma = -80; k = -10; lslash = 20; period = -100; r = -10; t = 20; v = 30; }; z = { "@MMK_R_o" = -10; }; zero = { "@MMK_R_." = -80; degree = -10; percent = -20; }; }; m003 = { "@MMK_L_." = { "@MMK_R_T" = -80; "@MMK_R_V" = -60; X = 30; Y = -80; Z = 50; }; "@MMK_L_0" = { icircumflex = 50; idieresis = 50; igrave = 30; }; "@MMK_L_A" = { "@MMK_R_A" = 80; "@MMK_R_O" = -20; "@MMK_R_T" = -80; "@MMK_R_V" = -40; "@MMK_R_o" = -10; J = 40; Lslash = -10; X = 20; Y = -50; Z = 20; backslash = -20; icircumflex = 40; idieresis = 40; igrave = 40; question = -10; questiondown = 20; quotedblright = -50; quoteright = -60; slash = 30; t = -10; w = -30; x = 10; }; "@MMK_L_B" = { "@MMK_R_B" = -10; "@MMK_R_T" = -10; "@MMK_R_V" = -10; "@MMK_R_w" = -10; J = 30; Y = -20; Z = 10; backslash = 20; icircumflex = 30; idieresis = 30; igrave = 40; }; "@MMK_L_E" = { "@MMK_R_A" = 30; "@MMK_R_V" = 30; "@MMK_R_a" = -40; "@MMK_R_o" = -30; "@MMK_R_quoteright" = 20; "@MMK_R_v" = -10; "@MMK_R_w" = -20; J = 30; X = 20; Z = 20; Zdotaccent = 20; backslash = 50; icircumflex = 70; idieresis = 100; igrave = 70; parenright = 20; period = 0; r = -30; slash = 20; u = -30; }; "@MMK_L_F" = { "@MMK_R_." = -100; "@MMK_R_A" = -70; "@MMK_R_B" = -10; "@MMK_R_T" = 10; "@MMK_R_V" = 20; "@MMK_R_a" = -20; "@MMK_R_n" = -30; "@MMK_R_o" = -40; "@MMK_R_quoteright" = 20; "@MMK_R_w" = -20; J = -70; Y = 20; Z = 30; backslash = 60; parenright = 10; r = -20; s = -20; u = -20; }; "@MMK_L_G" = { "@MMK_R_A" = 10; "@MMK_R_T" = -20; "@MMK_R_o" = -10; "@MMK_R_w" = -20; Y = -20; backslash = 20; }; "@MMK_L_K" = { "@MMK_R_A" = 20; "@MMK_R_O" = -20; "@MMK_R_V" = 10; "@MMK_R_v" = -20; backslash = 60; x = 20; z = 10; }; "@MMK_L_O" = { "@MMK_R_." = -40; "@MMK_R_A" = -10; "@MMK_R_B" = -10; "@MMK_R_V" = -10; "@MMK_R_w" = -20; I = -10; J = 10; X = -10; Y = -40; backslash = 30; icircumflex = 40; idieresis = 40; igrave = 20; question = -10; questiondown = -20; slash = -20; }; "@MMK_L_Q" = { "@MMK_R_A" = 10; "@MMK_R_O" = 10; J = 20; Lslash = 10; M = 10; Y = -10; Z = 30; slash = 30; }; "@MMK_L_T" = { "@MMK_R_." = -80; "@MMK_R_A" = -50; "@MMK_R_E" = -20; "@MMK_R_O" = -40; "@MMK_R_V" = 20; "@MMK_R_a2" = -70; "@MMK_R_n" = -50; "@MMK_R_quoteright" = 20; "@MMK_R_v" = -40; J = -80; Lslash = -30; backslash = 60; braceright = 30; bracketright = -20; comma = -100; four = -40; hyphen = -40; imacron = 80; itilde = 80; n = -50; p = -50; slash = -40; ubreve = -30; x = -20; y = -20; z = -20; }; "@MMK_L_Uhorn" = { "@MMK_R_O" = -50; }; "@MMK_L_V" = { "@MMK_R_." = -50; "@MMK_R_A" = -40; "@MMK_R_E" = -10; "@MMK_R_O" = -10; "@MMK_R_T" = 20; "@MMK_R_V" = 50; "@MMK_R_a" = -40; "@MMK_R_a2" = -50; "@MMK_R_n" = -30; "@MMK_R_o" = -60; "@MMK_R_quoteright" = 30; "@MMK_R_w" = -30; J = -40; Lslash = -20; U = 20; X = 50; Y = 40; Z = 20; abreve = -30; backslash = 100; braceright = 40; bracketright = -20; colon = -20; icircumflex = 70; idieresis = 100; igrave = 70; p = -10; questiondown = -70; r = -30; s = -50; slash = -20; u = -30; x = -10; z = -20; }; "@MMK_L_i" = { "@MMK_R_o" = -5; "@MMK_R_quoteright" = 20; backslash = 40; bracketright = -10; slash = 10; }; "@MMK_L_n" = { "@MMK_R_." = -30; "@MMK_R_colon" = -10; "@MMK_R_o" = -20; "@MMK_R_quoteright" = -40; "@MMK_R_w" = -40; bracketright = -30; f = -20; k = -10; parenright = -10; question = -30; }; "@MMK_L_o" = { "@MMK_R_." = -30; "@MMK_R_V" = -30; "@MMK_R_colon" = -10; "@MMK_R_i" = -10; "@MMK_R_n" = -20; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -20; "@MMK_R_v" = -20; "@MMK_R_w" = -40; H = -20; J = 20; Y = -80; b = -20; bracketright = -30; f = -20; h = -10; k = -20; l = -10; lslash = 40; parenright = -20; question = -30; r = -20; s = -10; x = -20; }; "@MMK_L_quoteleft" = { "@MMK_R_O" = -10; "@MMK_R_o" = -20; }; "@MMK_L_quoteright" = { "@MMK_R_A" = -70; "@MMK_R_O" = -20; "@MMK_R_T" = 20; "@MMK_R_V" = 30; "@MMK_R_o" = -60; "@MMK_R_w" = -20; J = -80; r = -30; s = -80; u = -20; }; "@MMK_L_uhorn" = { "@MMK_R_o" = -60; }; "@MMK_L_v" = { "@MMK_R_." = -80; "@MMK_R_a" = -10; "@MMK_R_o" = -20; "@MMK_R_v" = 20; I = -30; backslash = 20; bracketright = -50; f = 20; k = -20; parenright = -10; r = -10; s = -20; slash = -10; x = 20; }; "@MMK_L_w" = { "@MMK_R_." = -80; "@MMK_R_colon" = -30; "@MMK_R_n" = -30; I = -30; J = -20; b = -20; bracketright = -70; h = -20; k = -40; l = -20; parenright = -10; r = -20; s = -30; u = -10; }; AE = { "@MMK_R_A" = 30; }; C = { J = 20; Z = 10; backslash = 20; icircumflex = 50; idieresis = 50; igrave = 30; slash = 10; }; H = { "@MMK_R_o" = -30; "@MMK_R_quoteright" = -10; "@MMK_R_w" = -20; backslash = 20; icircumflex = 30; idieresis = 50; igrave = 30; period = -20; s = -10; u = -20; }; I = { "@MMK_R_B" = -10; "@MMK_R_O" = -10; "@MMK_R_a" = -20; "@MMK_R_n" = -20; "@MMK_R_o" = -30; "@MMK_R_v" = -30; "@MMK_R_w" = -30; Lslash = -30; b = -10; backslash = 40; braceright = 10; f = -20; icircumflex = 40; idieresis = 50; igrave = 40; r = -20; s = -30; t = -10; u = -30; y = -20; }; J = { "@MMK_R_." = -40; "@MMK_R_B" = -10; "@MMK_R_O" = -10; "@MMK_R_V" = 30; "@MMK_R_n" = -10; "@MMK_R_o" = -20; "@MMK_R_w" = -10; X = 20; Z = 20; backslash = 50; icircumflex = 30; idieresis = 50; igrave = 30; }; K = { "@MMK_R_a" = -10; "@MMK_R_o" = -20; icircumflex = 30; idieresis = 70; igrave = 50; v = -30; w = -40; }; L = { "@MMK_R_A" = 20; "@MMK_R_O" = -30; "@MMK_R_T" = -90; "@MMK_R_V" = -50; "@MMK_R_quoteright" = -40; "@MMK_R_v" = -30; I = 20; J = 40; X = 30; Y = -60; Z = 40; w = -40; x = 30; }; Lslash = { "@MMK_R_A" = 40; "@MMK_R_O" = -20; "@MMK_R_T" = -50; "@MMK_R_V" = -30; J = 40; X = 40; Y = -70; Z = 30; }; M = { "@MMK_R_." = -20; "@MMK_R_n" = -10; "@MMK_R_o" = -20; "@MMK_R_v" = -10; "@MMK_R_w" = -20; Lslash = -10; b = -10; backslash = 20; h = -10; icircumflex = 30; idieresis = 60; igrave = 30; s = -20; u = -10; }; N = { "@MMK_R_." = -20; "@MMK_R_o" = -10; "@MMK_R_w" = -20; Lslash = -10; backslash = 30; icircumflex = 20; idieresis = 50; igrave = 20; s = -20; }; P = { "@MMK_R_." = -120; "@MMK_R_A" = -40; "@MMK_R_o" = -10; "@MMK_R_quoteright" = 20; "@MMK_R_v" = 10; J = -40; Lslash = -10; backslash = 30; comma = -120; four = -10; icircumflex = 50; idieresis = 60; igrave = 20; s = -10; slash = -30; y = 20; }; R = { "@MMK_R_O" = -20; "@MMK_R_T" = -30; "@MMK_R_V" = -10; "@MMK_R_a" = -20; "@MMK_R_o" = -30; "@MMK_R_v" = -20; Lslash = -20; U = -20; Y = -30; Z = 20; bracketright = -50; icircumflex = 20; idieresis = 20; u = -20; }; S = { J = 10; Lslash = 10; backslash = 30; bracketright = -40; icircumflex = 30; idieresis = 50; igrave = 20; }; T = { "@MMK_R_a" = -80; "@MMK_R_o" = -100; "@MMK_R_u" = -50; icircumflex = 60; idieresis = 100; igrave = 80; r = -50; s = -70; u = -50; uhorn = -50; w = -60; }; U = { "@MMK_R_." = -10; "@MMK_R_A" = -10; "@MMK_R_B" = -10; J = 10; backslash = 40; bracketright = -30; icircumflex = 50; idieresis = 60; igrave = 40; slash = -30; }; X = { "@MMK_R_A" = 20; "@MMK_R_O" = -20; "@MMK_R_V" = 40; "@MMK_R_o" = -20; "@MMK_R_w" = -50; J = 20; Lslash = -10; X = 40; Y = 40; Z = 50; backslash = 50; braceright = 40; bracketright = -30; idieresis = 90; igrave = 50; }; Y = { "@MMK_R_A" = -60; "@MMK_R_O" = -40; "@MMK_R_V" = 40; "@MMK_R_a" = -80; "@MMK_R_o" = -100; J = -80; X = 40; backslash = 100; braceright = 40; bracketright = -20; comma = -130; hyphen = -100; icircumflex = 50; idieresis = 100; igrave = 60; n = -30; p = -20; period = -100; questiondown = -70; quotedblbase = -100; r = -50; s = -80; slash = -60; u = -40; w = -50; }; Z = { "@MMK_R_A" = 20; "@MMK_R_V" = 30; J = 20; Y = 20; backslash = 80; braceright = 40; bracketright = -20; icircumflex = 60; idieresis = 90; igrave = 60; }; a = { "@MMK_R_i" = 10; "@MMK_R_quoteright" = 20; J = 20; bracketright = -10; slash = 40; x = 20; y = 20; }; backslash = { "@MMK_R_B" = -10; "@MMK_R_O" = -10; "@MMK_R_T" = -20; "@MMK_R_V" = -20; "@MMK_R_v" = 40; "@MMK_R_w" = -30; U = -20; X = 10; Y = -40; Z = 20; f = -20; j = 100; p = 20; }; braceleft = { "@MMK_R_T" = 20; "@MMK_R_V" = 40; "@MMK_R_n" = -10; "@MMK_R_o" = -20; X = 40; Y = 40; Z = 40; f = -20; j = 80; p = 20; s = -10; }; bracketleft = { "@MMK_R_T" = 20; "@MMK_R_V" = 20; "@MMK_R_i" = 20; "@MMK_R_o" = -10; "@MMK_R_w" = -20; X = 20; Y = 20; Z = 10; j = 80; p = 30; x = 10; }; c = { "@MMK_R_." = -30; "@MMK_R_n" = -10; "@MMK_R_o" = -10; "@MMK_R_quoteright" = 10; "@MMK_R_w" = -30; H = -30; b = -10; bracketright = -20; k = -20; question = -20; }; caroncomb = { "@MMK_R_a" = -80; "@MMK_R_a2" = -100; u = -70; }; ccaron = { r = -10; }; d = { "@MMK_R_o" = -10; "@MMK_R_v" = -20; "@MMK_R_w" = -40; backslash = 30; braceright = 20; slash = 20; x = 10; }; dcaron = { "@MMK_R_a" = -70; "@MMK_R_o" = -60; a.ss01 = -70; n = -50; s = -50; u = -20; }; eight = { degree = -20; eight = -30; five = -20; four = -20; nine = -50; one = -10; ordfeminine = -10; percent = -30; period = -40; seven = -50; six = -30; three = -20; two = -10; zero = -10; }; endash = { space = -150; }; f = { "@MMK_R_." = -50; "@MMK_R_v" = 30; "@MMK_R_w" = 10; N = 10; backslash = 60; braceright = 70; bracketright = 60; i = 10; j = 10; l = 10; p = 30; parenright = 60; quotedblright = 40; quoteright = 50; t = 30; u = 20; x = 10; }; five = { "@MMK_R_." = -40; five = -10; nine = -30; percent = -30; seven = -10; }; four = { "@MMK_R_." = -20; "@MMK_R_T" = -40; equal = 20; percent = -40; }; g = { "@MMK_R_." = -30; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -20; "@MMK_R_w" = -20; H = -10; j = 40; r = -20; s = -20; slash = 20; }; greater = { two = -20; }; guillemetright = { four = 30; }; h = { "@MMK_R_." = -30; "@MMK_R_o" = -20; "@MMK_R_quoteright" = -40; "@MMK_R_v" = -20; "@MMK_R_w" = -20; b = -10; bracketright = -20; r = -10; }; hyphen = { "@MMK_R_O" = 20; }; iacute = { b = 10; l = 40; }; icircumflex = { l = 60; }; idieresis = { l = 90; }; j = { "@MMK_R_." = -20; "@MMK_R_o" = -20; "@MMK_R_quoteright" = 20; bracketright = -20; l = -20; lslash = 20; slash = 30; }; k = { "@MMK_R_o" = -20; "@MMK_R_v" = 10; endash = -40; hyphen = -30; v = 20; x = 20; z = 10; }; l = { "@MMK_R_." = -10; "@MMK_R_o" = -20; "@MMK_R_w" = -20; backslash = 30; bracketright = -20; h = -20; icircumflex = 60; idieresis = 70; s = -20; }; lcaron = { "@MMK_R_a" = -80; "@MMK_R_o" = -80; a.ss01 = -80; n = -50; s = -60; u = -30; }; lslash = { "@MMK_R_o" = -10; p = 10; w = 20; y = 40; }; n = { period = -20; }; nhookretroflex = { "@MMK_R_v" = -10; "@MMK_R_w" = -30; p = 50; }; nine = { comma = -80; eight = -10; five = -20; four = -30; period = -80; seven = -10; six = -20; three = -20; }; ohorn = { n = -50; }; one = { degree = -80; eight = -50; five = -30; four = -30; nine = -80; ordfeminine = -80; ordmasculine = -70; percent = -80; seven = -50; three = -30; zero = -30; }; parenleft = { "@MMK_R_E" = -20; "@MMK_R_O" = -30; "@MMK_R_a" = -30; "@MMK_R_n" = -20; "@MMK_R_o" = -40; "@MMK_R_v" = -20; "@MMK_R_w" = -30; M = -10; eight = -40; f = -20; j = 30; u = -20; x = -10; }; period = { zero = -20; }; q = { "@MMK_R_." = -30; "@MMK_R_i" = -10; "@MMK_R_o" = -30; "@MMK_R_quoteright" = -30; "@MMK_R_v" = -10; "@MMK_R_w" = -40; H = -10; b = -20; f = -20; h = -20; j = 50; k = -20; l = -20; r = -20; s = -20; slash = 20; u = -10; }; question = { "@MMK_R_A" = -40; }; questiondown = { "@MMK_R_o" = -30; }; quotedblleft = { "@MMK_R_A" = -70; J = -80; }; quoteleft = { "@MMK_R_A" = -50; }; r = { "@MMK_R_o" = -20; "@MMK_R_quoteright" = 30; "@MMK_R_v" = 30; "@MMK_R_w" = 20; backslash = 30; braceright = 20; comma = -80; f = 20; p = 10; period = -90; t = 30; x = 20; z = 20; }; s = { "@MMK_R_." = -20; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -20; "@MMK_R_v" = -20; "@MMK_R_w" = -30; bracketright = -60; f = -10; lslash = 20; r = -10; x = -10; }; seven = { comma = -80; degree = 30; four = -40; ordfeminine = 20; percent = 20; period = -90; seven = 30; six = -20; }; six = { "@MMK_R_." = -40; degree = -40; five = -20; nine = -50; percent = -50; seven = -30; six = -10; }; slash = { "@MMK_R_A" = -20; "@MMK_R_E" = 10; "@MMK_R_O" = -10; "@MMK_R_T" = 20; "@MMK_R_V" = 60; "@MMK_R_i" = 20; "@MMK_R_n" = -30; "@MMK_R_o" = -30; X = 40; Y = 50; Z = 40; b = 20; h = 20; j = 20; s = -20; u = -20; x = -20; }; t = { "@MMK_R_quoteright" = 20; I = 20; backslash = 20; braceright = 20; }; tcaron = { "@MMK_R_a" = -40; "@MMK_R_o" = -10; a.ss01 = -30; s = -20; }; three = { "@MMK_R_." = -40; percent = -30; }; two = { degree = -10; eight = -20; five = -20; four = -30; nine = -40; ordfeminine = -10; percent = -40; seven = -20; six = -20; three = -20; x = 30; zero = -20; }; u = { "@MMK_R_." = -20; "@MMK_R_o" = -20; "@MMK_R_quoteright" = -20; "@MMK_R_w" = -10; b = -10; bracketright = -20; f = -20; h = -10; parenright = -10; s = -20; }; uhorn = { n = -50; ohorn = -100; }; uhorntilde = { n = -50; }; v = { "@MMK_R_o" = -30; n = 10; questiondown = -50; w = 20; }; w = { "@MMK_R_a" = -30; "@MMK_R_o" = -40; at = -10; x = 10; }; x = { "@MMK_R_o" = -20; "@MMK_R_v" = 20; bracketright = -40; k = -20; minus = -30; s = -10; x = 20; y = 20; }; y = { "@MMK_R_T" = -70; comma = -100; lslash = 20; period = -110; questiondown = -50; z = 20; }; z = { "@MMK_R_o" = -20; k = -20; }; zero = { "@MMK_R_." = -50; percent = -40; zero = -10; }; }; }; metrics = ( { type = ascender; }, { type = "cap height"; }, { type = "x-height"; }, { type = baseline; }, { type = descender; }, { name = "Overshoot X"; }, { name = "Overshoot Base"; }, { name = "Overshoot Cap"; }, { type = "italic angle"; } ); properties = ( { key = copyrights; values = ( { language = ENG; value = "Copyright 2024 The Inclusive Sans Project Authors (https://github.com/LivKing/Inclusive-Sans)"; } ); }, { key = designers; values = ( { language = ENG; value = "Olivia King"; } ); }, { key = designerURL; value = "https://www.oliviaking.com"; }, { key = licenses; values = ( { language = ENG; value = "This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://openfontlicense.org"; } ); }, { key = licenseURL; value = "https://openfontlicense.org"; }, { key = manufacturers; values = ( { language = dflt; value = "Olivia King"; } ); }, { key = manufacturerURL; value = "https://www.oliviaking.com"; } ); unitsPerEm = 1000; userData = { GSDimensionPlugin.Dimensions = { m002 = { HH = "80"; HV = "88"; OH = "80"; OV = "92"; nV = "84"; nd = "63"; oH = "76"; oV = "84"; tH = "76"; }; m003 = { HH = "126"; HV = "146"; OH = "130"; OV = "154"; nV = "140"; nd = "100"; oH = "120"; oV = "146"; tH = "120"; }; m01 = { HH = "56"; HV = "60"; OH = "56"; OV = "62"; nV = "56"; nd = "48"; oH = "50"; oV = "58"; tH = "50"; }; }; }; versionMajor = 2; versionMinor = 5; } ================================================ FILE: sources/InclusiveSans.glyphs ================================================ { .appVersion = "3260"; .formatVersion = 3; DisplayStrings = ( "rř" ); axes = ( { name = Weight; tag = wght; } ); customParameters = ( { disabled = 1; name = glyphOrder; value = ( space, exclam, quotesingle, quotedbl, numbersign, dollar, percent, ampersand, parenleft, parenright, asterisk, plus, comma, hyphen, period, slash, zero, one, two, three, four, five, six, seven, eight, nine, colon, semicolon, less, equal, greater, question, at, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, bracketleft, backslash, bracketright, asciicircum, underscore, grave, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, braceleft, bar, braceright, asciitilde, exclamdown, cent, sterling, currency, yen, brokenbar, section, dieresis, copyright, ordfeminine, guillemetleft, logicalnot, registered, macron, degree, plusminus, twosuperior, threesuperior, acute, mu, paragraph, periodcentered, cedilla, onesuperior, ordmasculine, guillemetright, onequarter, onehalf, threequarters, questiondown, Agrave, Aacute, Acircumflex, Atilde, Adieresis, Aring, AE, Ccedilla, Egrave, Eacute, Ecircumflex, Edieresis, Igrave, Iacute, Icircumflex, Idieresis, Eth, Ntilde, Ograve, Oacute, Ocircumflex, Otilde, Odieresis, multiply, Oslash, Ugrave, Uacute, Ucircumflex, Udieresis, Yacute, Thorn, germandbls, agrave, aacute, acircumflex, atilde, adieresis, aring, ae, ccedilla, egrave, eacute, ecircumflex, edieresis, igrave, iacute, icircumflex, idieresis, eth, ntilde, ograve, oacute, ocircumflex, otilde, odieresis, divide, oslash, ugrave, uacute, ucircumflex, udieresis, yacute, thorn, ydieresis, dotlessi, circumflex, caron, breve, dotaccent, ring, ogonek, tilde, hungarumlaut, quoteleft, quoteright, minus, g.ss01, a.ss01 ); }, { name = "Use Typo Metrics"; value = 1; }, { name = fsType; value = ( ); }, { name = "Variable Font Origin"; value = m002; } ); date = "2024-11-02 04:16:01 +0000"; familyName = "Inclusive Sans"; featurePrefixes = ( { automatic = 1; code = "languagesystem DFLT dflt; languagesystem latn dflt; languagesystem latn AZE; languagesystem latn CRT; languagesystem latn KAZ; languagesystem latn TAT; languagesystem latn TRK; languagesystem latn ROM; languagesystem latn MOL; languagesystem latn MAH; languagesystem latn CAT; languagesystem latn NLD; "; name = Languagesystems; } ); features = ( { automatic = 1; code = "feature locl; feature case; feature ss01; feature ordn; "; tag = aalt; }, { automatic = 1; code = "lookup ccmp_DFLT_1 { @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hookabovecomb hungarumlautcomb macroncomb ringcomb tildecomb]; lookupflag UseMarkFilteringSet @CombiningTopAccents; sub i' @CombiningTopAccents by idotless; sub j' @CombiningTopAccents by jdotless; } ccmp_DFLT_1; lookup ccmp_DFLT_2 { lookupflag 0; sub brevecomb acutecomb by brevecomb_acutecomb; sub brevecomb gravecomb by brevecomb_gravecomb; sub brevecomb hookabovecomb by brevecomb_hookabovecomb; sub brevecomb tildecomb by brevecomb_tildecomb; sub circumflexcomb acutecomb by circumflexcomb_acutecomb; sub circumflexcomb gravecomb by circumflexcomb_gravecomb; sub circumflexcomb hookabovecomb by circumflexcomb_hookabovecomb; sub circumflexcomb tildecomb by circumflexcomb_tildecomb; } ccmp_DFLT_2; "; tag = ccmp; }, { automatic = 1; code = "script latn; language AZE; lookup locl_latn_0 { sub i by idotaccent; } locl_latn_0; language CRT; lookup locl_latn_0; language KAZ; lookup locl_latn_0; language TAT; lookup locl_latn_0; language TRK; lookup locl_latn_0; script latn; language ROM; lookup locl_latn_1 { sub Scedilla by Scommaaccent; sub scedilla by scommaaccent; sub Tcedilla by Tcommaaccent; sub tcedilla by tcommaaccent; } locl_latn_1; language MOL; lookup locl_latn_1; script latn; language MAH; lookup locl_latn_2 { sub Lcommaaccent by Lcommaaccent.loclMAH; sub Ncommaaccent by Ncommaaccent.loclMAH; sub lcommaaccent by lcommaaccent.loclMAH; sub ncommaaccent by ncommaaccent.loclMAH; sub commaaccentcomb by commaaccentcomb.loclMAH; } locl_latn_2; script latn; language CAT; lookup locl_latn_3 { sub l periodcentered' l by periodcentered.loclCAT; sub L periodcentered' L by periodcentered.loclCAT.case; } locl_latn_3; script latn; language NLD; lookup locl_latn_4 { sub iacute j' by jacute; sub Iacute J' by Jacute; } locl_latn_4; "; tag = locl; }, { automatic = 1; code = "sub periodcentered.loclCAT by periodcentered.loclCAT.case; "; tag = case; }, { code = "sub a by a.ss01; sub aacute by aacute.ss01; sub abreve by abreve.ss01; sub abreveacute by abreveacute.ss01; sub abrevedotbelow by abrevedotbelow.ss01; sub abrevegrave by abrevegrave.ss01; sub abrevehookabove by abrevehookabove.ss01; sub abrevetilde by abrevetilde.ss01; sub acircumflex by acircumflex.ss01; sub acircumflexacute by acircumflexacute.ss01; sub acircumflexdotbelow by acircumflexdotbelow.ss01; sub acircumflexgrave by acircumflexgrave.ss01; sub acircumflexhookabove by acircumflexhookabove.ss01; sub acircumflextilde by acircumflextilde.ss01; sub adieresis by adieresis.ss01; sub adotbelow by adotbelow.ss01; sub agrave by agrave.ss01; sub ahookabove by ahookabove.ss01; sub amacron by amacron.ss01; sub aogonek by aogonek.ss01; sub aring by aring.ss01; sub atilde by atilde.ss01; sub g by g.ss01; sub gbreve by gbreve.ss01; sub gcommaaccent by gcommaaccent.ss01; sub gdotaccent by gdotaccent.ss01; sub gmacron by gmacron.ss01; "; labels = ( { language = dflt; value = ss01; } ); tag = ss01; }, { automatic = 1; code = "sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; sub N o period by numero; "; tag = ordn; } ); fontMaster = ( { axesValues = ( 300 ); customParameters = ( { name = typoAscender; value = 950; }, { name = typoDescender; value = -250; }, { name = typoLineGap; value = 0; }, { name = winAscent; value = 1150; }, { name = winDescent; value = 404; }, { name = hheaAscender; value = 950; }, { name = hheaDescender; value = -250; }, { name = hheaLineGap; value = 0; } ); iconName = Light; id = m01; metricValues = ( { pos = 720; }, { pos = 700; }, { pos = 500; }, { }, { pos = -230; }, { pos = 512; }, { pos = -12; }, { pos = 712; }, { } ); name = Light; visible = 1; }, { axesValues = ( 400 ); customParameters = ( { name = typoAscender; value = 950; }, { name = typoDescender; value = -250; }, { name = typoLineGap; value = 0; }, { name = winAscent; value = 1150; }, { name = winDescent; value = 404; }, { name = hheaAscender; value = 950; }, { name = hheaDescender; value = -250; }, { name = hheaLineGap; value = 0; } ); id = m002; metricValues = ( { pos = 720; }, { pos = 700; }, { pos = 500; }, { }, { pos = -230; }, { pos = 512; }, { pos = -12; }, { pos = 712; }, { } ); name = Regular; visible = 1; }, { axesValues = ( 700 ); customParameters = ( { name = typoAscender; value = 950; }, { name = typoDescender; value = -250; }, { name = typoLineGap; value = 0; }, { name = winAscent; value = 1150; }, { name = winDescent; value = 404; }, { name = hheaAscender; value = 950; }, { name = hheaDescender; value = -250; }, { name = hheaLineGap; value = 0; } ); iconName = Bold; id = m003; metricValues = ( { pos = 720; }, { pos = 700; }, { pos = 508; }, { }, { pos = -230; }, { pos = 520; }, { pos = -12; }, { pos = 712; }, { } ); name = Bold; } ); glyphs = ( { glyphname = A; kernLeft = A; kernRight = A; lastChange = "2025-01-01 08:35:06 +0000"; layers = ( { anchors = ( { name = ogonek; pos = (543,29); }, { name = top; pos = (291,712); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (81,0,l), (321,700,l), (259,700,l), (10,0,l) ); }, { closed = 1; nodes = ( (449,206,l), (449,262,l), (128,262,l), (128,206,l) ); }, { closed = 1; nodes = ( (570,0,l), (321,700,l), (263,700,l), (506,0,l) ); } ); width = 580; }, { anchors = ( { name = ogonek; pos = (552,34); }, { name = top; pos = (298,712); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (104,0,l), (339,700,l), (253,700,l), (8,0,l) ); }, { closed = 1; nodes = ( (455,195,l), (455,275,l), (134,275,l), (134,195,l) ); }, { closed = 1; nodes = ( (583,0,l), (339,700,l), (259,700,l), (495,0,l) ); } ); width = 591; }, { anchors = ( { name = ogonek; pos = (621,41); }, { name = top; pos = (336,712); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (163,0,l), (400,700,l), (250,700,l), (5,0,l) ); }, { closed = 1; nodes = ( (501,161,l), (501,287,l), (179,287,l), (179,161,l) ); }, { closed = 1; nodes = ( (664,0,l), (420,700,l), (282,700,l), (512,0,l) ); } ); width = 669; } ); unicode = 65; }, { glyphname = Aacute; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (241,200); ref = acutecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (264,200); ref = acutecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (275,204); ref = acutecomb; } ); width = 669; } ); unicode = 193; }, { glyphname = Abreve; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (145,200); ref = brevecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (154,200); ref = brevecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (162,204); ref = brevecomb; } ); width = 669; } ); unicode = 258; }, { glyphname = Abreveacute; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (94,200); ref = brevecomb_acutecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (98,212); ref = brevecomb_acutecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (161,204); ref = brevecomb_acutecomb; } ); width = 669; } ); unicode = 7854; }, { glyphname = Abrevedotbelow; kernLeft = A; kernRight = A; lastChange = "2024-11-25 04:29:45 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (220,0); ref = dotbelowcomb; }, { pos = (145,200); ref = brevecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (221,0); ref = dotbelowcomb; }, { pos = (154,200); ref = brevecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (241,0); ref = dotbelowcomb; }, { pos = (162,204); ref = brevecomb; } ); width = 669; } ); unicode = 7862; }, { glyphname = Abrevegrave; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (84,200); ref = brevecomb_gravecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (90,212); ref = brevecomb_gravecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (161,204); ref = brevecomb_gravecomb; } ); width = 669; } ); unicode = 7856; }, { glyphname = Abrevehookabove; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (103,200); ref = brevecomb_hookabovecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (98,212); ref = brevecomb_hookabovecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (161,204); ref = brevecomb_hookabovecomb; } ); width = 669; } ); unicode = 7858; }, { glyphname = Abrevetilde; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (61,200); ref = brevecomb_tildecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (71,200); ref = brevecomb_tildecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (161,204); ref = brevecomb_tildecomb; } ); width = 669; } ); unicode = 7860; }, { glyphname = Acircumflex; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (157,200); ref = circumflexcomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (148,200); ref = circumflexcomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (155,204); ref = circumflexcomb; } ); width = 669; } ); unicode = 194; }, { glyphname = Acircumflexacute; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (10,200); ref = circumflexcomb_acutecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (17,212); ref = circumflexcomb_acutecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (155,204); ref = circumflexcomb_acutecomb; } ); width = 669; } ); unicode = 7844; }, { glyphname = Acircumflexdotbelow; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { ref = dotbelowcomb; }, { pos = (157,200); ref = circumflexcomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { ref = dotbelowcomb; }, { pos = (148,200); ref = circumflexcomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { ref = dotbelowcomb; }, { pos = (155,204); ref = circumflexcomb; } ); width = 669; } ); unicode = 7852; }, { glyphname = Acircumflexgrave; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (157,200); ref = circumflexcomb_gravecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (149,212); ref = circumflexcomb_gravecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (155,204); ref = circumflexcomb_gravecomb; } ); width = 669; } ); unicode = 7846; }, { glyphname = Acircumflexhookabove; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (157,200); ref = circumflexcomb_hookabovecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (149,212); ref = circumflexcomb_hookabovecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (155,204); ref = circumflexcomb_hookabovecomb; } ); width = 669; } ); unicode = 7848; }, { glyphname = Acircumflextilde; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (155,200); ref = circumflexcomb_tildecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (142,212); ref = circumflexcomb_tildecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (128,204); ref = circumflexcomb_tildecomb; } ); width = 669; } ); unicode = 7850; }, { glyphname = Adieresis; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (137,200); ref = dieresiscomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (137,200); ref = dieresiscomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (132,204); ref = dieresiscomb; } ); width = 669; } ); unicode = 196; }, { glyphname = Adotbelow; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (220,0); ref = dotbelowcomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (221,0); ref = dotbelowcomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (241,0); ref = dotbelowcomb; } ); width = 669; } ); unicode = 7840; }, { glyphname = Agrave; kernLeft = A; kernRight = A; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (141,200); ref = gravecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (141,200); ref = gravecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (149,204); ref = gravecomb; } ); width = 669; } ); unicode = 192; }, { glyphname = Ahookabove; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (254,212); ref = hookabovecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (242,212); ref = hookabovecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (276,204); ref = hookabovecomb; } ); width = 669; } ); unicode = 7842; }, { glyphname = Amacron; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (149,200); ref = macroncomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (119,200); ref = macroncomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (160,204); ref = macroncomb; } ); width = 669; } ); unicode = 256; }, { glyphname = Aogonek; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (411,4); ref = ogonekcomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (420,0); ref = ogonekcomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (488,0); ref = ogonekcomb; } ); width = 669; } ); unicode = 260; }, { glyphname = Aring; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (172,200); ref = ringcomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (175,200); ref = ringcomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (200,204); ref = ringcomb; } ); width = 669; } ); unicode = 197; }, { glyphname = Atilde; kernLeft = A; kernRight = A; lastChange = "2024-11-01 03:05:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = A; }, { pos = (128,200); ref = tildecomb; } ); width = 580; }, { layerId = m002; shapes = ( { ref = A; }, { pos = (135,200); ref = tildecomb; } ); width = 591; }, { layerId = m003; shapes = ( { ref = A; }, { pos = (128,204); ref = tildecomb; } ); width = 669; } ); unicode = 195; }, { glyphname = AE; kernLeft = A; lastChange = "2024-11-22 03:56:55 +0000"; layers = ( { anchors = ( { name = top; pos = (594,701); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (66,0,l), (437,700,l), (375,700,l), (-5,0,l) ); }, { closed = 1; nodes = ( (415,190,l), (415,246,l), (161,246,l), (161,190,l) ); }, { closed = 1; nodes = ( (807,0,l), (807,56,l), (473,56,l), (473,332,l), (745,332,l), (745,388,l), (473,388,l), (473,644,l), (807,644,l), (807,700,l), (409,700,l), (409,0,l) ); } ); width = 867; }, { anchors = ( { name = top; pos = (614,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (104,0,l), (470,700,l), (384,700,l), (8,0,l) ); }, { closed = 1; nodes = ( (469,169,l), (469,249,l), (185,249,l), (185,169,l) ); }, { closed = 1; nodes = ( (838,0,l), (838,80,l), (515,80,l), (515,320,l), (777,320,l), (777,398,l), (515,398,l), (515,620,l), (838,620,l), (838,700,l), (427,700,l), (427,0,l) ); } ); width = 896; }, { anchors = ( { name = top; pos = (660,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (163,0,l), (534,700,l), (384,700,l), (5,0,l) ); }, { closed = 1; nodes = ( (474,142,l), (474,268,l), (183,268,l), (183,142,l) ); }, { closed = 1; nodes = ( (925,0,l), (925,126,l), (614,126,l), (614,297,l), (874,297,l), (874,423,l), (614,423,l), (614,574,l), (925,574,l), (925,700,l), (468,700,l), (468,0,l) ); } ); width = 967; } ); unicode = 198; }, { glyphname = AEacute; kernLeft = A; lastChange = "2024-11-01 03:05:43 +0000"; layers = ( { layerId = m01; shapes = ( { ref = AE; }, { pos = (544,189); ref = acutecomb; } ); width = 867; }, { layerId = m002; shapes = ( { ref = AE; }, { pos = (580,188); ref = acutecomb; } ); width = 896; }, { layerId = m003; shapes = ( { ref = AE; }, { pos = (599,192); ref = acutecomb; } ); width = 967; } ); unicode = 508; }, { glyphname = B; kernLeft = B; kernRight = B; lastChange = "2025-01-01 03:25:00 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (330,0,ls), (490,0,o), (567,72,o), (567,202,cs), (567,288,o), (519,343,o), (425,365,c), (484,385,o), (528,438,o), (528,526,cs), (528,642,o), (451,701,o), (319,701,cs), (100,701,l), (100,0,l) ); }, { closed = 1; nodes = ( (160,330,l), (160,330,o), (349,330,o), (349,330,cs), (447,330,o), (505,277,o), (505,202,cs), (505,122,o), (451,56,o), (340,56,cs), (160,56,l) ); }, { closed = 1; nodes = ( (160,645,l), (160,645,o), (314,645,o), (314,645,cs), (421,645,o), (466,595,o), (466,525,cs), (466,439,o), (412,386,o), (315,386,cs), (160,386,l) ); } ); width = 618; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (353,0,ls), (518,0,o), (597,73,o), (597,200,cs), (597,287,o), (549,344,o), (455,366,c), (514,384,o), (558,424,o), (558,521,cs), (558,637,o), (482,701,o), (345,701,cs), (109,701,l), (109,0,l) ); }, { closed = 1; nodes = ( (197,319,l), (197,319,o), (363,319,o), (363,319,cs), (455,319,o), (505,267,o), (505,200,cs), (505,120,o), (450,80,o), (353,80,cs), (197,80,l) ); }, { closed = 1; nodes = ( (197,621,l), (197,621,o), (340,621,o), (340,621,cs), (413,621,o), (467,587,o), (467,520,cs), (467,435,o), (414,399,o), (341,399,cs), (197,399,l) ); } ); width = 655; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (402,0,ls), (573,0,o), (657,77,o), (657,204,cs), (657,283,o), (610,341,o), (532,363,c), (577,386,o), (618,434,o), (618,518,cs), (618,620,o), (542,701,o), (394,701,cs), (109,701,l), (109,0,l) ); }, { closed = 1; nodes = ( (255,293,l), (255,293,o), (392,293,o), (392,293,c), (459,293,o), (503,264,o), (503,211,cs), (503,145,o), (459,126,o), (382,126,cs), (255,126,l) ); }, { closed = 1; nodes = ( (255,575,l), (255,575,o), (376,575,o), (376,575,cs), (432,575,o), (465,549,o), (465,504,cs), (465,441,o), (432,419,o), (377,419,cs), (255,419,l) ); } ); width = 701; } ); unicode = 66; }, { glyphname = C; kernLeft = O; lastChange = "2025-01-07 17:11:59 +0000"; layers = ( { anchors = ( { name = bottom; pos = (338,-6); }, { name = top; pos = (354,713); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (499,-13,o), (588,76,o), (616,199,c), (556,211,l), (531,117,o), (466,43,o), (354,43,cs), (207,43,o), (122,167,o), (122,357,cs), (122,542,o), (223,657,o), (354,657,cs), (452,657,o), (534,581,o), (552,488,c), (616,501,l), (588,624,o), (499,713,o), (354,713,cs), (151,713,o), (60,541,o), (60,355,cs), (60,163,o), (146,-13,o), (354,-13,cs) ); } ); width = 663; }, { anchors = ( { name = bottom; pos = (350,-13); }, { name = top; pos = (360,713); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (506,-13,o), (608,75,o), (636,198,c), (547,216,l), (524,130,o), (452,67,o), (360,67,cs), (229,67,o), (154,194,o), (154,357,cs), (154,512,o), (229,633,o), (360,633,cs), (452,633,o), (524,570,o), (547,484,c), (636,502,l), (608,625,o), (506,713,o), (360,713,cs), (154,713,o), (64,548,o), (64,355,cs), (64,171,o), (153,-13,o), (360,-13,cs) ); } ); width = 689; }, { anchors = ( { name = bottom; pos = (365,-12); }, { name = top; pos = (381,713); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (535,-12,o), (623,76,o), (651,199,c), (510,227,l), (496,161,o), (439,119,o), (383,119,cs), (262,119,o), (205,198,o), (205,357,cs), (205,499,o), (258,583,o), (379,583,cs), (439,583,o), (495,532,o), (510,474,c), (651,502,l), (623,625,o), (510,713,o), (381,713,cs), (157,713,o), (51,549,o), (51,355,cs), (51,171,o), (137,-12,o), (383,-12,cs) ); } ); width = 684; }, { associatedMasterId = m01; layerId = "09577142-2BA9-4939-A4E9-BA986ECE9950"; name = "27 Mar 24 at 12:02"; shapes = ( { closed = 1; nodes = ( (596,-12,o), (684,157,o), (684,349,cs), (684,543,o), (596,712,o), (372,712,cs), (148,712,o), (60,543,o), (60,349,cs), (60,157,o), (148,-12,o), (372,-12,cs) ); }, { closed = 1; nodes = ( (217,44,o), (122,154,o), (122,349,cs), (122,540,o), (217,656,o), (372,656,cs), (527,656,o), (622,540,o), (622,349,cs), (622,154,o), (527,44,o), (372,44,cs) ); } ); width = 693; } ); unicode = 67; }, { glyphname = Cacute; kernLeft = O; kernRight = O; lastChange = "2025-01-07 17:11:59 +0000"; layers = ( { layerId = m01; shapes = ( { ref = C; }, { pos = (304,201); ref = acutecomb; } ); width = 663; }, { layerId = m002; shapes = ( { ref = C; }, { pos = (326,201); ref = acutecomb; } ); width = 689; }, { layerId = m003; shapes = ( { ref = C; }, { pos = (320,205); ref = acutecomb; } ); width = 684; } ); unicode = 262; }, { glyphname = Ccaron; kernLeft = O; kernRight = O; lastChange = "2025-01-07 17:11:59 +0000"; layers = ( { layerId = m01; shapes = ( { ref = C; }, { pos = (220,201); ref = caroncomb; } ); width = 663; }, { layerId = m002; shapes = ( { ref = C; }, { pos = (208,201); ref = caroncomb; } ); width = 689; }, { layerId = m003; shapes = ( { ref = C; }, { pos = (200,205); ref = caroncomb; } ); width = 684; } ); unicode = 268; }, { glyphname = Ccedilla; kernLeft = O; kernRight = O; lastChange = "2024-11-01 03:06:01 +0000"; layers = ( { layerId = m01; shapes = ( { ref = C; }, { pos = (231,-8); ref = cedillacomb; } ); width = 663; }, { layerId = m002; shapes = ( { ref = C; }, { pos = (233,-15); ref = cedillacomb; } ); width = 689; }, { layerId = m003; shapes = ( { ref = C; }, { pos = (237,-11); ref = cedillacomb; } ); width = 684; } ); unicode = 199; }, { glyphname = Ccircumflex; kernLeft = O; kernRight = O; lastChange = "2025-01-07 17:11:59 +0000"; layers = ( { layerId = m01; shapes = ( { ref = C; }, { pos = (220,201); ref = circumflexcomb; } ); width = 663; }, { layerId = m002; shapes = ( { ref = C; }, { pos = (210,201); ref = circumflexcomb; } ); width = 689; }, { layerId = m003; shapes = ( { ref = C; }, { pos = (200,205); ref = circumflexcomb; } ); width = 684; } ); unicode = 264; }, { glyphname = Cdotaccent; kernLeft = O; kernRight = O; lastChange = "2025-01-07 17:11:59 +0000"; layers = ( { layerId = m01; shapes = ( { ref = C; }, { pos = (286,201); ref = dotaccentcomb; } ); width = 663; }, { layerId = m002; shapes = ( { ref = C; }, { pos = (286,201); ref = dotaccentcomb; } ); width = 689; }, { layerId = m003; shapes = ( { ref = C; }, { pos = (285,205); ref = dotaccentcomb; } ); width = 684; } ); unicode = 266; }, { glyphname = D; kernRight = O; lastChange = "2025-01-01 03:28:29 +0000"; layers = ( { anchors = ( { name = bottom; pos = (314,0); }, { name = top; pos = (314,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (291,0,ls), (517,0,o), (624,141,o), (624,349,cs), (624,560,o), (517,700,o), (291,700,cs), (104,700,l), (104,0,l) ); }, { closed = 1; nodes = ( (168,644,l), (294,644,ls), (488,644,o), (562,507,o), (562,350,cs), (562,192,o), (488,56,o), (294,56,cs), (168,56,l) ); } ); width = 681; }, { anchors = ( { name = bottom; pos = (320,0); }, { name = top; pos = (320,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (291,0,ls), (523,0,o), (630,141,o), (630,349,cs), (630,560,o), (523,700,o), (291,700,cs), (96,700,l), (96,0,l) ); }, { closed = 1; nodes = ( (184,620,l), (294,620,ls), (457,620,o), (538,507,o), (538,350,cs), (538,192,o), (457,80,o), (294,80,cs), (184,80,l) ); } ); width = 680; }, { anchors = ( { name = bottom; pos = (351,0); }, { name = top; pos = (351,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (338,0,ls), (568,0,o), (675,141,o), (675,349,cs), (675,560,o), (568,700,o), (338,700,cs), (90,700,l), (90,0,l) ); }, { closed = 1; nodes = ( (236,574,l), (341,574,ls), (459,574,o), (521,507,o), (521,350,cs), (521,192,o), (459,126,o), (341,126,cs), (236,126,l) ); } ); width = 723; } ); unicode = 68; }, { glyphname = Dcaron; lastChange = "2024-09-13 00:20:08 +0000"; layers = ( { layerId = m01; shapes = ( { ref = D; }, { pos = (180,188); ref = caroncomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = D; }, { pos = (168,188); ref = caroncomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = D; }, { pos = (170,192); ref = caroncomb; } ); width = 723; } ); unicode = 270; }, { glyphname = Dcroat; lastChange = "2024-09-05 10:12:56 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Eth; } ); width = 681; }, { layerId = m002; shapes = ( { ref = Eth; } ); width = 680; }, { layerId = m003; shapes = ( { ref = Eth; } ); width = 723; } ); unicode = 272; }, { glyphname = Ddotbelow; lastChange = "2024-09-09 02:08:17 +0000"; layers = ( { layerId = m003; shapes = ( { ref = D; }, { pos = (257,1); ref = dotbelowcomb; } ); width = 723; }, { layerId = m01; shapes = ( { ref = D; }, { pos = (244,0); ref = dotbelowcomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = D; }, { pos = (245,0); ref = dotbelowcomb; } ); width = 680; } ); unicode = 7692; }, { glyphname = Dmacronbelow; lastChange = "2024-09-09 02:08:17 +0000"; layers = ( { layerId = m003; shapes = ( { ref = D; }, { pos = (171,1); ref = macronbelowcomb; } ); width = 723; }, { layerId = m01; shapes = ( { ref = D; }, { pos = (172,12); ref = macronbelowcomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = D; }, { pos = (160,12); ref = macronbelowcomb; } ); width = 680; } ); unicode = 7694; }, { glyphname = Eth; lastChange = "2024-11-01 01:06:09 +0000"; layers = ( { layerId = m01; shapes = ( { ref = D; }, { closed = 1; nodes = ( (344,329,l), (344,385,l), (22,385,l), (22,329,l) ); } ); width = 681; }, { layerId = m002; shapes = ( { ref = D; }, { closed = 1; nodes = ( (364,315,l), (364,385,l), (27,385,l), (27,315,l) ); } ); width = 680; }, { layerId = m003; shapes = ( { ref = D; }, { closed = 1; nodes = ( (383,291,l), (383,401,l), (0,401,l), (0,291,l) ); } ); width = 723; } ); unicode = 208; }, { glyphname = E; kernLeft = E; kernRight = E; lastChange = "2025-01-01 08:34:52 +0000"; layers = ( { anchors = ( { name = bottom; pos = (299,0); }, { name = top; pos = (299,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (498,0,l), (498,56,l), (164,56,l), (164,332,l), (436,332,l), (436,388,l), (164,388,l), (164,644,l), (498,644,l), (498,700,l), (100,700,l), (100,0,l) ); } ); width = 558; }, { anchors = ( { name = bottom; pos = (302,0); }, { name = top; pos = (302,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (507,0,l), (507,80,l), (184,80,l), (184,320,l), (446,320,l), (446,398,l), (184,398,l), (184,620,l), (507,620,l), (507,700,l), (96,700,l), (96,0,l) ); } ); width = 564; }, { anchors = ( { name = bottom; pos = (319,0); }, { name = top; pos = (319,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (547,0,l), (547,126,l), (236,126,l), (236,297,l), (496,297,l), (496,423,l), (236,423,l), (236,574,l), (547,574,l), (547,700,l), (90,700,l), (90,0,l) ); } ); width = 589; } ); unicode = 69; }, { glyphname = Eacute; lastChange = "2024-09-03 02:07:31 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (249,188); ref = acutecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (268,188); ref = acutecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (258,192); ref = acutecomb; } ); width = 589; } ); unicode = 201; }, { glyphname = Ebreve; lastChange = "2024-09-08 00:59:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (153,188); ref = brevecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (158,188); ref = brevecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (145,192); ref = brevecomb; } ); width = 589; } ); unicode = 276; }, { glyphname = Ecaron; lastChange = "2024-09-02 07:38:44 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (165,188); ref = caroncomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (150,188); ref = caroncomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (138,192); ref = caroncomb; } ); width = 589; } ); unicode = 282; }, { glyphname = Ecircumflex; lastChange = "2024-09-02 07:38:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (165,188); ref = circumflexcomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (152,188); ref = circumflexcomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (138,192); ref = circumflexcomb; } ); width = 589; } ); unicode = 202; }, { glyphname = Ecircumflexacute; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (18,188); ref = circumflexcomb_acutecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (21,200); ref = circumflexcomb_acutecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (138,192); ref = circumflexcomb_acutecomb; } ); width = 589; } ); unicode = 7870; }, { glyphname = Ecircumflexdotbelow; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (229,0); ref = dotbelowcomb; }, { pos = (165,188); ref = circumflexcomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (227,0); ref = dotbelowcomb; }, { pos = (152,188); ref = circumflexcomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (225,1); ref = dotbelowcomb; }, { pos = (138,192); ref = circumflexcomb; } ); width = 589; } ); unicode = 7878; }, { glyphname = Ecircumflexgrave; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (165,188); ref = circumflexcomb_gravecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (153,200); ref = circumflexcomb_gravecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (138,192); ref = circumflexcomb_gravecomb; } ); width = 589; } ); unicode = 7872; }, { glyphname = Ecircumflexhookabove; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (165,188); ref = circumflexcomb_hookabovecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (153,200); ref = circumflexcomb_hookabovecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (138,192); ref = circumflexcomb_hookabovecomb; } ); width = 589; } ); unicode = 7874; }, { glyphname = Ecircumflextilde; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (163,188); ref = circumflexcomb_tildecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (146,200); ref = circumflexcomb_tildecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (111,192); ref = circumflexcomb_tildecomb; } ); width = 589; } ); unicode = 7876; }, { glyphname = Edieresis; lastChange = "2024-09-02 07:38:47 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (145,188); ref = dieresiscomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (141,188); ref = dieresiscomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (115,192); ref = dieresiscomb; } ); width = 589; } ); unicode = 203; }, { glyphname = Edotaccent; lastChange = "2024-09-02 07:38:47 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (231,188); ref = dotaccentcomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (228,188); ref = dotaccentcomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (223,192); ref = dotaccentcomb; } ); width = 589; } ); unicode = 278; }, { glyphname = Edotbelow; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (229,0); ref = dotbelowcomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (227,0); ref = dotbelowcomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (225,1); ref = dotbelowcomb; } ); width = 589; } ); unicode = 7864; }, { glyphname = Egrave; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (149,188); ref = gravecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (145,188); ref = gravecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (132,192); ref = gravecomb; } ); width = 589; } ); unicode = 200; }, { glyphname = Ehookabove; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (262,200); ref = hookabovecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (246,200); ref = hookabovecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (259,192); ref = hookabovecomb; } ); width = 589; } ); unicode = 7866; }, { glyphname = Emacron; lastChange = "2024-09-02 07:38:48 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (157,188); ref = macroncomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (123,188); ref = macroncomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (143,192); ref = macroncomb; } ); width = 589; } ); unicode = 274; }, { glyphname = Eogonek; lastChange = "2024-09-13 00:56:57 +0000"; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (339,4); ref = ogonekcomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (344,0); ref = ogonekcomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (372,0); ref = ogonekcomb; } ); width = 589; } ); unicode = 280; }, { glyphname = Eopen; lastChange = "2024-11-07 17:11:47 +0000"; layers = ( { anchors = ( { name = bottom; pos = (298,0); }, { name = top; pos = (298,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (439,-12,o), (536,61,o), (549,195,c), (487,199,l), (476,120,o), (428,44,o), (305,44,cs), (181,44,o), (122,123,o), (122,203,cs), (122,278,o), (178,350,o), (303,350,cs), (316,350,o), (329,349,o), (341,348,c), (341,404,l), (330,402,o), (317,401,o), (304,401,cs), (199,401,o), (156,465,o), (156,530,cs), (156,586,o), (196,656,o), (302,656,cs), (387,656,o), (432,611,o), (446,564,c), (506,584,l), (483,668,o), (404,712,o), (303,712,cs), (184,712,o), (94,649,o), (94,530,cs), (94,465,o), (136,415,o), (176,384,c), (114,348,o), (60,286,o), (60,203,cs), (60,64,o), (165,-12,o), (304,-12,cs) ); } ); width = 596; }, { anchors = ( { name = bottom; pos = (330,0); }, { name = top; pos = (330,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (502,-12,o), (597,63,o), (612,200,c), (520,207,l), (502,93,o), (434,68,o), (360,68,cs), (260,68,o), (199,123,o), (199,203,cs), (199,278,o), (255,340,o), (358,340,cs), (373,340,o), (387,340,o), (402,340,c), (402,418,l), (388,418,o), (373,418,o), (359,418,cs), (272,418,o), (229,465,o), (229,530,cs), (229,586,o), (269,636,o), (357,636,cs), (435,636,o), (478,597,o), (486,549,c), (571,576,l), (551,665,o), (469,712,o), (358,712,cs), (231,712,o), (141,649,o), (141,530,cs), (141,465,o), (171,415,o), (211,384,c), (149,348,o), (107,286,o), (107,203,cs), (107,64,o), (214,-12,o), (359,-12,cs) ); } ); width = 660; }, { anchors = ( { name = bottom; pos = (344,0); }, { name = top; pos = (344,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (554,-12,o), (639,81,o), (654,207,c), (507,216,l), (499,161,o), (468,116,o), (381,116,cs), (298,116,o), (263,157,o), (263,212,cs), (263,260,o), (298,306,o), (379,306,cs), (394,306,o), (410,307,o), (425,307,c), (426,434,l), (411,434,o), (395,433,o), (380,433,cs), (332,433,o), (293,458,o), (293,512,cs), (293,550,o), (329,584,o), (378,584,cs), (419,584,o), (455,559,o), (464,527,c), (612,569,l), (593,656,o), (509,712,o), (379,712,cs), (234,712,o), (143,639,o), (143,530,cs), (143,465,o), (173,415,o), (213,384,c), (151,348,o), (109,286,o), (109,203,cs), (109,74,o), (220,-12,o), (380,-12,cs) ); } ); width = 687; } ); unicode = 400; }, { glyphname = Etilde; layers = ( { layerId = m01; shapes = ( { ref = E; }, { pos = (136,188); ref = tildecomb; } ); width = 558; }, { layerId = m002; shapes = ( { ref = E; }, { pos = (139,188); ref = tildecomb; } ); width = 564; }, { layerId = m003; shapes = ( { ref = E; }, { pos = (111,192); ref = tildecomb; } ); width = 589; } ); unicode = 7868; }, { glyphname = Schwa; lastChange = "2024-11-07 17:11:50 +0000"; layers = ( { anchors = ( { name = bottom; pos = (352,0); }, { name = top; pos = (352,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (535,-12,o), (658,126,o), (658,352,cs), (658,575,o), (544,712,o), (353,712,cs), (188,712,o), (98,608,o), (65,496,c), (129,482,l), (153,559,o), (218,656,o), (347,656,cs), (502,656,o), (596,531,o), (596,356,cs), (596,186,o), (521,44,o), (352,44,cs), (204,44,o), (123,174,o), (123,310,c), (616,310,l), (616,365,l), (60,365,l), (60,326,l), (60,112,o), (191,-12,o), (357,-12,cs) ); } ); width = 704; }, { anchors = ( { name = bottom; pos = (363,0); }, { name = top; pos = (363,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (550,-12,o), (673,126,o), (673,353,cs), (673,574,o), (550,712,o), (356,712,cs), (183,712,o), (101,618,o), (67,506,c), (153,485,l), (171,569,o), (254,632,o), (347,632,c), (519,632,o), (581,487,o), (581,357,cs), (581,187,o), (505,68,o), (355,68,cs), (223,68,o), (156,163,o), (156,287,c), (602,287,l), (602,367,l), (64,367,l), (64,334,l), (64,96,o), (187,-12,o), (360,-12,cs) ); } ); width = 726; }, { anchors = ( { name = bottom; pos = (375,0); }, { name = top; pos = (375,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (540,-12,o), (716,103,o), (716,347,cs), (716,583,o), (543,712,o), (372,712,cs), (265,712,o), (135,663,o), (71,512,c), (215,469,l), (234,538,o), (302,582,o), (369,582,cs), (487,582,o), (562,504,o), (562,347,cs), (562,204,o), (487,118,o), (376,118,cs), (275,118,o), (210,205,o), (210,286,c), (593,286,l), (592,402,l), (51,402,l), (51,357,l), (51,126,o), (182,-12,o), (374,-12,cs) ); } ); width = 749; } ); unicode = 399; }, { glyphname = F; kernLeft = E; kernRight = F; lastChange = "2025-01-01 06:23:45 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (164,0,l), (164,335,l), (436,335,l), (436,391,l), (164,391,l), (164,644,l), (498,644,l), (498,700,l), (100,700,l), (100,0,l) ); } ); width = 558; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (184,0,l), (184,320,l), (446,320,l), (446,400,l), (184,400,l), (184,620,l), (507,620,l), (507,700,l), (96,700,l), (96,0,l) ); } ); width = 541; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (236,0,l), (236,297,l), (496,297,l), (496,423,l), (236,423,l), (236,574,l), (547,574,l), (547,700,l), (90,700,l), (90,0,l) ); } ); width = 577; } ); unicode = 70; }, { glyphname = G; kernLeft = O; kernRight = G; lastChange = "2025-01-07 17:12:12 +0000"; layers = ( { anchors = ( { name = bottom; pos = (348,-13); }, { name = top; pos = (358,713); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (470,-13,o), (554,49,o), (578,127,c), (578,127,o), (585,0,o), (585,0,c), (637,0,l), (637,368,l), (358,368,l), (358,312,l), (575,312,l), (575,159,o), (484,43,o), (359,43,cs), (205,43,o), (120,167,o), (120,357,cs), (120,542,o), (221,657,o), (359,657,cs), (465,657,o), (547,581,o), (565,488,c), (629,501,l), (601,624,o), (512,713,o), (359,713,cs), (149,713,o), (58,541,o), (58,355,cs), (58,163,o), (144,-13,o), (359,-13,cs) ); } ); width = 701; }, { anchors = ( { name = bottom; pos = (361,-12); }, { name = top; pos = (369,713); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (461,-12,o), (538,30,o), (578,107,c), (578,107,o), (591,0,o), (591,0,c), (660,0,l), (660,368,l), (380,368,l), (380,284,l), (571,284,l), (571,158,o), (469,67,o), (366,67,cs), (224,67,o), (152,194,o), (152,357,cs), (152,512,o), (227,633,o), (369,633,cs), (472,633,o), (544,570,o), (567,484,c), (656,502,l), (628,625,o), (526,713,o), (369,713,cs), (152,713,o), (62,548,o), (62,355,cs), (62,158,o), (154,-12,o), (379,-12,c) ); } ); width = 740; }, { anchors = ( { name = bottom; pos = (356,-12); }, { name = top; pos = (386,712); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (444,-12,o), (515,13,o), (554,80,c), (554,80,o), (566,0,o), (566,0,c), (664,0,l), (664,380,l), (379,380,l), (379,260,l), (529,260,l), (522,170,o), (449,119,o), (386,119,cs), (259,119,o), (202,198,o), (202,357,cs), (202,499,o), (259,583,o), (386,583,cs), (450,583,o), (505,532,o), (520,474,c), (661,502,l), (633,625,o), (522,712,o), (386,712,cs), (156,712,o), (48,549,o), (48,355,cs), (48,171,o), (134,-12,o), (386,-12,cs) ); } ); width = 726; }, { associatedMasterId = m01; layerId = "60D9B074-3643-47F8-BA45-851CCB9418B6"; name = "6 Jul 24 at 15:54"; shapes = ( { closed = 0; nodes = ( (514,106,l) ); }, { closed = 0; nodes = ( (531,106,l), (533,94,o), (544,0,o), (544,0,c), (596,0,l), (596,368,l), (349,368,l), (349,312,l), (516,312,l), (516,158,o), (420,43,o), (299,43,cs), (142,43,o), (57,167,o), (57,357,cs), (57,542,o), (158,657,o), (299,657,cs), (406,657,o), (488,581,o), (506,488,c), (570,501,l), (542,624,o), (453,713,o), (299,713,cs), (86,713,o), (-5,541,o), (-5,355,cs), (-5,163,o), (81,-13,o), (299,-13,cs), (453,-13,o), (542,76,o), (570,199,c) ); }, { closed = 1; nodes = ( (453,-13,o), (542,76,o), (570,199,c), (510,211,l), (485,117,o), (420,43,o), (299,43,cs), (142,43,o), (57,167,o), (57,357,cs), (57,542,o), (158,657,o), (299,657,cs), (406,657,o), (488,581,o), (506,488,c), (570,501,l), (542,624,o), (453,713,o), (299,713,cs), (86,713,o), (-5,541,o), (-5,355,cs), (-5,163,o), (81,-13,o), (299,-13,cs) ); } ); width = 600; } ); unicode = 71; }, { glyphname = Gbreve; lastChange = "2025-01-07 17:12:10 +0000"; layers = ( { layerId = m01; shapes = ( { ref = G; }, { pos = (212,201); ref = brevecomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = G; }, { pos = (225,201); ref = brevecomb; } ); width = 740; }, { layerId = m003; shapes = ( { ref = G; }, { pos = (212,204); ref = brevecomb; } ); width = 726; } ); unicode = 286; }, { glyphname = Gcircumflex; lastChange = "2025-01-07 17:12:10 +0000"; layers = ( { layerId = m01; shapes = ( { ref = G; }, { pos = (224,201); ref = circumflexcomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = G; }, { pos = (219,201); ref = circumflexcomb; } ); width = 740; }, { layerId = m003; shapes = ( { ref = G; }, { pos = (205,204); ref = circumflexcomb; } ); width = 726; } ); unicode = 284; }, { glyphname = Gcommaaccent; lastChange = "2024-09-02 07:39:53 +0000"; layers = ( { layerId = m01; shapes = ( { ref = G; }, { pos = (287,-1); ref = commaaccentcomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = G; }, { pos = (284,0); ref = commaaccentcomb; } ); width = 740; }, { layerId = m003; shapes = ( { ref = G; }, { pos = (261,-11); ref = commaaccentcomb; } ); width = 726; } ); unicode = 290; }, { glyphname = Gdotaccent; lastChange = "2025-01-07 17:12:10 +0000"; layers = ( { layerId = m01; shapes = ( { ref = G; }, { pos = (290,201); ref = dotaccentcomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = G; }, { pos = (295,201); ref = dotaccentcomb; } ); width = 740; }, { layerId = m003; shapes = ( { ref = G; }, { pos = (290,204); ref = dotaccentcomb; } ); width = 726; } ); unicode = 288; }, { glyphname = Gmacron; lastChange = "2025-01-07 17:12:10 +0000"; layers = ( { layerId = m01; shapes = ( { ref = G; }, { pos = (216,201); ref = macroncomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = G; }, { pos = (190,201); ref = macroncomb; } ); width = 740; }, { layerId = m003; shapes = ( { ref = G; }, { pos = (210,204); ref = macroncomb; } ); width = 726; } ); unicode = 7712; }, { glyphname = H; lastChange = "2025-01-01 03:29:45 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (164,0,l), (164,336,l), (526,336,l), (526,0,l), (590,0,l), (590,700,l), (526,700,l), (526,392,l), (164,392,l), (164,700,l), (100,700,l), (100,0,l) ); } ); width = 690; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (182,0,l), (182,324,l), (518,324,l), (518,0,l), (606,0,l), (606,700,l), (518,700,l), (518,404,l), (182,404,l), (182,700,l), (94,700,l), (94,0,l) ); } ); width = 700; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (236,0,l), (236,301,l), (518,301,l), (518,0,l), (664,0,l), (664,700,l), (518,700,l), (518,427,l), (236,427,l), (236,700,l), (90,700,l), (90,0,l) ); } ); width = 754; } ); unicode = 72; }, { glyphname = Hbar; lastChange = "2024-11-09 06:52:44 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (164,0,l), (164,336,l), (526,336,l), (526,0,l), (590,0,l), (590,700,l), (526,700,l), (526,392,l), (164,392,l), (164,700,l), (100,700,l), (100,0,l) ); }, { closed = 1; nodes = ( (669,494,l), (669,550,l), (25,550,l), (25,494,l) ); } ); width = 690; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (179,0,l), (179,318,l), (515,318,l), (515,0,l), (603,0,l), (603,700,l), (515,700,l), (515,398,l), (179,398,l), (179,700,l), (91,700,l), (91,0,l) ); }, { closed = 1; nodes = ( (669,498,l), (669,568,l), (25,568,l), (25,498,l) ); } ); width = 700; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (236,0,l), (236,290,l), (518,290,l), (518,0,l), (664,0,l), (664,700,l), (518,700,l), (518,416,l), (236,416,l), (236,700,l), (90,700,l), (90,0,l) ); }, { closed = 1; nodes = ( (750,497,l), (750,607,l), (8,607,l), (8,497,l) ); } ); width = 754; } ); unicode = 294; }, { glyphname = Hcircumflex; lastChange = "2024-10-20 23:47:17 +0000"; layers = ( { layerId = m01; shapes = ( { ref = H; }, { pos = (211,201); ref = circumflexcomb; } ); width = 690; }, { layerId = m002; shapes = ( { ref = H; }, { pos = (201,201); ref = circumflexcomb; } ); width = 700; }, { layerId = m003; shapes = ( { ref = H; }, { pos = (196,204); ref = circumflexcomb; } ); width = 754; } ); unicode = 292; }, { glyphname = I; lastChange = "2025-01-01 08:40:14 +0000"; layers = ( { anchors = ( { name = bottom; pos = (238,0); }, { name = top; pos = (238,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (401,0,l), (401,56,l), (270,56,l), (270,644,l), (401,644,l), (401,700,l), (75,700,l), (75,644,l), (206,644,l), (206,56,l), (75,56,l), (75,0,l) ); } ); width = 476; }, { anchors = ( { name = bottom; pos = (238,0); }, { name = top; pos = (238,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (400,0,l), (400,76,l), (282,76,l), (282,624,l), (400,624,l), (400,700,l), (76,700,l), (76,624,l), (194,624,l), (194,76,l), (76,76,l), (76,0,l) ); } ); width = 476; }, { anchors = ( { name = bottom; pos = (267,0); }, { name = top; pos = (267,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (453,0,l), (453,122,l), (340,122,l), (340,578,l), (453,578,l), (453,700,l), (80,700,l), (80,578,l), (194,578,l), (194,122,l), (80,122,l), (80,0,l) ); } ); width = 533; } ); unicode = 73; }, { glyphname = IJ; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (466,0); ref = J; } ); width = 982; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (476,0); ref = J; } ); width = 1003; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (533,0); ref = J; } ); width = 1108; } ); unicode = 306; }, { glyphname = Iacute; lastChange = "2024-09-02 07:40:20 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (188,188); ref = acutecomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (204,188); ref = acutecomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (206,192); ref = acutecomb; } ); width = 533; } ); unicode = 205; }, { glyphname = Ibreve; lastChange = "2024-09-08 01:05:42 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (92,188); ref = brevecomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (94,188); ref = brevecomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (93,192); ref = brevecomb; } ); width = 533; } ); unicode = 300; }, { glyphname = Icircumflex; lastChange = "2024-09-02 07:40:20 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (104,188); ref = circumflexcomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (88,188); ref = circumflexcomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (86,192); ref = circumflexcomb; } ); width = 533; } ); unicode = 206; }, { glyphname = Idieresis; lastChange = "2024-09-02 07:40:21 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (84,188); ref = dieresiscomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (77,188); ref = dieresiscomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (63,192); ref = dieresiscomb; } ); width = 533; } ); unicode = 207; }, { glyphname = Idotaccent; lastChange = "2024-09-02 07:40:21 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (170,188); ref = dotaccentcomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (164,188); ref = dotaccentcomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (171,192); ref = dotaccentcomb; } ); width = 533; } ); unicode = 304; }, { glyphname = Idotbelow; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (168,0); ref = dotbelowcomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (163,0); ref = dotbelowcomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (173,1); ref = dotbelowcomb; } ); width = 533; } ); unicode = 7882; }, { glyphname = Igrave; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (88,188); ref = gravecomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (81,188); ref = gravecomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (80,192); ref = gravecomb; } ); width = 533; } ); unicode = 204; }, { glyphname = Ihookabove; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (201,200); ref = hookabovecomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (182,200); ref = hookabovecomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (207,192); ref = hookabovecomb; } ); width = 533; } ); unicode = 7880; }, { glyphname = Imacron; lastChange = "2024-09-02 07:40:22 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (96,188); ref = macroncomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (59,188); ref = macroncomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (91,192); ref = macroncomb; } ); width = 533; } ); unicode = 298; }, { glyphname = Iogonek; lastChange = "2025-01-07 17:10:25 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (242,5); ref = ogonekcomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (237,0); ref = ogonekcomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (278,0); ref = ogonekcomb; } ); width = 533; } ); unicode = 302; }, { glyphname = Itilde; lastChange = "2024-09-02 07:40:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = I; }, { pos = (75,188); ref = tildecomb; } ); width = 476; }, { layerId = m002; shapes = ( { ref = I; }, { pos = (75,188); ref = tildecomb; } ); width = 476; }, { layerId = m003; shapes = ( { ref = I; }, { pos = (59,192); ref = tildecomb; } ); width = 533; } ); unicode = 296; }, { glyphname = J; lastChange = "2025-01-01 03:25:59 +0000"; layers = ( { anchors = ( { name = top; pos = (398,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (361,-12,o), (428,65,o), (428,253,cs), (428,700,l), (368,700,l), (368,252,ls), (368,111,o), (329,44,o), (219,44,cs), (133,44,o), (87,107,o), (73,192,c), (15,173,l), (33,56,o), (106,-12,o), (223,-12,cs) ); } ); width = 516; }, { anchors = ( { name = top; pos = (399,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (380,-12,o), (445,85,o), (445,256,cs), (445,700,l), (357,700,l), (357,255,ls), (357,148,o), (321,68,o), (230,68,cs), (157,68,o), (109,120,o), (95,200,c), (11,173,l), (29,56,o), (112,-12,o), (234,-12,cs) ); } ); width = 527; }, { anchors = ( { name = top; pos = (426,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (428,-12,o), (501,90,o), (501,261,cs), (501,700,l), (355,700,l), (355,260,ls), (355,185,o), (328,118,o), (255,118,cs), (179,118,o), (140,170,o), (129,227,c), (2,183,l), (20,66,o), (116,-12,o), (256,-12,cs) ); } ); width = 575; }, { associatedMasterId = m01; layerId = "F0224C38-C702-4CDE-838B-2E373CDF467B"; name = "5 Aug 24 at 10:34"; shapes = ( { closed = 1; nodes = ( (314,-12,o), (407,94,o), (407,275,cs), (407,701,l), (347,701,l), (347,275,l), (347,121,o), (270,44,o), (164,44,cs), (60,44,o), (-19,121,o), (-19,275,cs), (-19,701,l), (-79,701,l), (-79,275,ls), (-79,94,o), (15,-12,o), (168,-12,cs) ); } ); width = 496; }, { associatedMasterId = m002; layerId = "D039DF4E-49D3-4032-B6A6-5E0752F96B5B"; name = "5 Aug 24 at 10:37"; shapes = ( { closed = 1; nodes = ( (328,-12,o), (413,98,o), (413,275,cs), (413,701,l), (325,701,l), (325,275,ls), (325,139,o), (251,73,o), (162,73,cs), (69,73,o), (-1,139,o), (-1,275,cs), (-1,701,l), (-89,701,l), (-89,275,ls), (-89,98,o), (7,-12,o), (166,-12,cs) ); } ); width = 495; } ); unicode = 74; }, { glyphname = Jacute; lastChange = "2024-09-13 00:25:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = J; }, { pos = (348,188); ref = acutecomb; } ); width = 516; }, { layerId = m002; shapes = ( { ref = J; }, { pos = (365,188); ref = acutecomb; } ); width = 527; }, { layerId = m003; shapes = ( { ref = J; }, { pos = (365,192); ref = acutecomb; } ); width = 575; } ); }, { glyphname = Jcircumflex; layers = ( { layerId = m01; shapes = ( { ref = J; }, { pos = (264,188); ref = circumflexcomb; } ); width = 516; }, { layerId = m002; shapes = ( { ref = J; }, { pos = (249,188); ref = circumflexcomb; } ); width = 527; }, { layerId = m003; shapes = ( { ref = J; }, { pos = (245,192); ref = circumflexcomb; } ); width = 575; } ); unicode = 308; }, { glyphname = K; kernRight = K; lastChange = "2025-01-01 03:26:04 +0000"; layers = ( { anchors = ( { name = bottom; pos = (316,0); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (160,0,l), (160,244,l), (561,700,l), (484,700,l), (160,330,l), (160,700,l), (100,700,l), (100,0,l) ); }, { closed = 1; nodes = ( (576,0,l), (316,429,l), (274,382,l), (498,0,l) ); } ); width = 592; }, { anchors = ( { name = bottom; pos = (352,0); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (180,0,l), (180,242,l), (587,700,l), (480,700,l), (180,358,l), (180,700,l), (92,700,l), (92,0,l) ); }, { closed = 1; nodes = ( (605,0,l), (340,435,l), (279,373,l), (500,0,l) ); } ); width = 615; }, { anchors = ( { name = bottom; pos = (340,0); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (236,0,l), (236,224,l), (651,700,l), (491,700,l), (236,404,l), (236,700,l), (90,700,l), (90,0,l) ); }, { closed = 1; nodes = ( (661,0,l), (415,450,l), (313,340,l), (491,0,l) ); } ); width = 665; } ); unicode = 75; }, { glyphname = Kcommaaccent; layers = ( { layerId = m01; shapes = ( { ref = K; }, { pos = (255,12); ref = commaaccentcomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = K; }, { pos = (275,12); ref = commaaccentcomb; } ); width = 615; }, { layerId = m003; shapes = ( { ref = K; }, { pos = (245,1); ref = commaaccentcomb; } ); width = 665; } ); unicode = 310; }, { glyphname = L; lastChange = "2025-01-07 17:13:16 +0000"; layers = ( { anchors = ( { name = bottom; pos = (302,0); }, { name = center; pos = (133,350); }, { name = top; pos = (133,700); }, { name = topright; pos = (509,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (509,0,l), (509,56,l), (162,56,l), (162,700,l), (98,700,l), (98,0,l) ); } ); width = 529; }, { anchors = ( { name = bottom; pos = (297,0); }, { name = center; pos = (139,350); }, { name = top; pos = (139,700); }, { name = topright; pos = (504,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (506,0,l), (506,80,l), (182,80,l), (182,700,l), (94,700,l), (94,0,l) ); } ); width = 524; }, { anchors = ( { name = bottom; pos = (328,0); }, { name = center; pos = (290,350); }, { name = top; pos = (162,700); }, { name = topright; pos = (559,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (565,0,l), (565,126,l), (236,126,l), (236,700,l), (90,700,l), (90,0,l) ); } ); width = 579; } ); unicode = 76; }, { glyphname = Lacute; lastChange = "2025-01-07 17:13:16 +0000"; layers = ( { layerId = m01; shapes = ( { ref = L; }, { pos = (83,188); ref = acutecomb; } ); width = 529; }, { layerId = m002; shapes = ( { ref = L; }, { pos = (105,188); ref = acutecomb; } ); width = 524; }, { layerId = m003; shapes = ( { ref = L; }, { pos = (101,192); ref = acutecomb; } ); width = 579; } ); unicode = 313; }, { glyphname = Lcaron; lastChange = "2025-01-07 17:13:42 +0000"; layers = ( { layerId = m01; shapes = ( { ref = L; }, { alignment = -1; pos = (285,-7); ref = caroncomb.alt; } ); width = 529; }, { layerId = m002; shapes = ( { ref = L; }, { alignment = -1; pos = (310,-29); ref = caroncomb.alt; } ); width = 524; }, { layerId = m003; shapes = ( { alignment = -1; ref = L; }, { alignment = -1; pos = (307,-30); ref = caroncomb.alt; } ); width = 579; } ); unicode = 317; }, { glyphname = Lcommaaccent; lastChange = "2025-01-07 17:13:14 +0000"; layers = ( { layerId = m01; shapes = ( { ref = L; }, { pos = (241,12); ref = commaaccentcomb; } ); width = 529; }, { layerId = m002; shapes = ( { ref = L; }, { pos = (220,12); ref = commaaccentcomb; } ); width = 524; }, { layerId = m003; shapes = ( { ref = L; }, { pos = (233,1); ref = commaaccentcomb; } ); width = 579; } ); unicode = 315; }, { glyphname = Ldot; lastChange = "2025-01-01 08:48:37 +0000"; layers = ( { layerId = m01; shapes = ( { ref = L; }, { pos = (263,46); ref = periodcentered.loclCAT.case; } ); width = 529; }, { layerId = m002; shapes = ( { ref = L; }, { pos = (249,46); ref = periodcentered.loclCAT.case; } ); width = 524; }, { layerId = m003; shapes = ( { ref = L; }, { pos = (290,45); ref = periodcentered.loclCAT.case; } ); width = 579; } ); unicode = 319; }, { glyphname = Ldotbelow; lastChange = "2025-01-07 17:13:14 +0000"; layers = ( { layerId = m003; shapes = ( { ref = L; }, { pos = (234,1); ref = dotbelowcomb; } ); width = 579; }, { layerId = m01; shapes = ( { ref = L; }, { pos = (232,0); ref = dotbelowcomb; } ); width = 529; }, { layerId = m002; shapes = ( { ref = L; }, { pos = (222,0); ref = dotbelowcomb; } ); width = 524; } ); unicode = 7734; }, { glyphname = Lmacronbelow; lastChange = "2025-01-07 17:13:14 +0000"; layers = ( { layerId = m003; shapes = ( { ref = L; }, { pos = (148,1); ref = macronbelowcomb; } ); width = 579; }, { layerId = m01; shapes = ( { ref = L; }, { pos = (160,12); ref = macronbelowcomb; } ); width = 529; }, { layerId = m002; shapes = ( { ref = L; }, { pos = (137,12); ref = macronbelowcomb; } ); width = 524; } ); unicode = 7738; }, { glyphname = Lslash; lastChange = "2025-01-01 08:42:07 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (161,302,l), (180,310,l), (375,392,l), (354,444,l), (172,369,l), (147,358,l), (20,305,l), (40,252,l) ); }, { pos = (42,0); ref = L; } ); width = 571; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (175,293,l), (200,304,l), (414,395,l), (387,459,l), (203,381,l), (171,368,l), (30,308,l), (59,243,l) ); }, { pos = (56,0); ref = L; } ); width = 580; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (196,283,l), (296,315,l), (481,394,l), (442,494,l), (299,431,l), (191,395,l), (20,320,l), (58,223,l) ); }, { pos = (74,0); ref = L; } ); width = 653; } ); unicode = 321; }, { glyphname = M; lastChange = "2025-01-01 08:40:42 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (185,700,l), (98,700,l), (98,0,l), (158,0,l), (158,613,l), (385,80,l), (455,80,l), (682,613,l), (682,0,l), (742,0,l), (742,700,l), (655,700,l), (421,139,l) ); } ); width = 840; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (217,700,l), (95,700,l), (95,0,l), (183,0,l), (183,562,l), (389,62,l), (484,62,l), (685,562,l), (685,0,l), (773,0,l), (773,700,l), (651,700,l), (434,164,l) ); } ); width = 868; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (262,700,l), (90,700,l), (90,0,l), (236,0,l), (236,429,l), (388,62,l), (523,62,l), (669,430,l), (669,0,l), (815,0,l), (815,700,l), (644,700,l), (453,244,l) ); } ); width = 905; } ); unicode = 77; }, { glyphname = N; lastChange = "2025-01-01 08:40:46 +0000"; layers = ( { anchors = ( { name = bottom; pos = (340,0); }, { name = top; pos = (340,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (160,0,l), (160,656,l), (129,656,l), (506,0,l), (581,0,l), (581,700,l), (521,700,l), (521,44,l), (552,44,l), (176,700,l), (100,700,l), (100,0,l) ); } ); width = 681; }, { anchors = ( { name = bottom; pos = (352,0); }, { name = top; pos = (352,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (184,0,l), (184,623,l), (154,623,l), (494,0,l), (603,0,l), (603,700,l), (515,700,l), (515,77,l), (545,77,l), (218,700,l), (96,700,l), (96,0,l) ); } ); width = 699; }, { anchors = ( { name = bottom; pos = (373,0); }, { name = top; pos = (370,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (230,0,l), (230,504,l), (198,504,l), (505,0,l), (649,0,l), (649,700,l), (503,700,l), (503,204,l), (535,204,l), (240,700,l), (84,700,l), (84,0,l) ); } ); width = 732; } ); unicode = 78; }, { glyphname = Nacute; lastChange = "2024-09-02 07:41:37 +0000"; layers = ( { layerId = m01; shapes = ( { ref = N; }, { pos = (290,188); ref = acutecomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = N; }, { pos = (318,188); ref = acutecomb; } ); width = 699; }, { layerId = m003; shapes = ( { ref = N; }, { pos = (309,192); ref = acutecomb; } ); width = 732; } ); unicode = 323; }, { glyphname = Ncaron; lastChange = "2024-09-02 07:41:36 +0000"; layers = ( { layerId = m01; shapes = ( { ref = N; }, { pos = (206,188); ref = caroncomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = N; }, { pos = (200,188); ref = caroncomb; } ); width = 699; }, { layerId = m003; shapes = ( { ref = N; }, { pos = (189,192); ref = caroncomb; } ); width = 732; } ); unicode = 327; }, { glyphname = Ncommaaccent; lastChange = "2024-09-02 07:41:35 +0000"; layers = ( { layerId = m01; shapes = ( { ref = N; }, { pos = (279,12); ref = commaaccentcomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = N; }, { pos = (275,12); ref = commaaccentcomb; } ); width = 699; }, { layerId = m003; shapes = ( { ref = N; }, { pos = (278,1); ref = commaaccentcomb; } ); width = 732; } ); unicode = 325; }, { glyphname = Ndotbelow; lastChange = "2024-09-09 02:08:38 +0000"; layers = ( { layerId = m003; shapes = ( { ref = N; }, { pos = (279,1); ref = dotbelowcomb; } ); width = 732; }, { layerId = m01; shapes = ( { ref = N; }, { pos = (270,0); ref = dotbelowcomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = N; }, { pos = (277,0); ref = dotbelowcomb; } ); width = 699; } ); unicode = 7750; }, { glyphname = Nhookleft; lastChange = "2024-11-09 00:37:11 +0000"; layers = ( { guides = ( { pos = (257,-165); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (283,-230,o), (343,-169,o), (343,-76,c), (343,451,l), (618,0,l), (761,0,l), (761,700,l), (616,700,l), (616,258,l), (353,700,l), (197,700,l), (197,-28,l), (197,-66,o), (175,-90,o), (139,-90,cs), (126,-90,o), (101,-89,o), (85,-86,c), (84,-222,l), (101,-227,o), (139,-230,o), (155,-230,cs) ); } ); width = 845; }, { guides = ( { pos = (680,-133); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (240,-230,o), (278,-179,o), (278,-86,c), (278,604,l), (636,0,l), (691,0,l), (691,700,l), (632,700,l), (632,128,l), (294,700,l), (218,700,l), (217,-85,l), (216,-158,o), (194,-176,o), (146,-176,cs), (133,-176,o), (116,-175,o), (100,-172,c), (100,-222,l), (117,-227,o), (139,-230,o), (155,-230,cs) ); } ); width = 791; }, { guides = ( { pos = (429,-142); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (261,-230,o), (302,-179,o), (302,-86,c), (302,571,l), (619,0,l), (706,0,l), (706,700,l), (618,700,l), (618,176,l), (343,700,l), (214,700,l), (216,-85,l), (217,-139,o), (190,-158,o), (143,-158,cs), (130,-158,o), (112,-157,o), (96,-154,c), (96,-222,l), (113,-227,o), (136,-230,o), (152,-230,cs) ); } ); width = 802; } ); unicode = 413; }, { glyphname = Nmacronbelow; lastChange = "2024-09-09 02:08:38 +0000"; layers = ( { layerId = m003; shapes = ( { ref = N; }, { pos = (193,1); ref = macronbelowcomb; } ); width = 732; }, { layerId = m01; shapes = ( { ref = N; }, { pos = (198,12); ref = macronbelowcomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = N; }, { pos = (192,12); ref = macronbelowcomb; } ); width = 699; } ); unicode = 7752; }, { glyphname = Ntilde; lastChange = "2024-09-02 07:41:35 +0000"; layers = ( { layerId = m01; shapes = ( { ref = N; }, { pos = (177,188); ref = tildecomb; } ); width = 681; }, { layerId = m002; shapes = ( { ref = N; }, { pos = (189,188); ref = tildecomb; } ); width = 699; }, { layerId = m003; shapes = ( { ref = N; }, { pos = (162,192); ref = tildecomb; } ); width = 732; } ); unicode = 209; }, { glyphname = Eng; lastChange = "2024-11-07 17:12:44 +0000"; layers = ( { anchors = ( { name = bottom; pos = (373,0); }, { name = top; pos = (370,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (588,-230,o), (648,-169,o), (648,-76,cs), (648,700,l), (503,700,l), (503,258,l), (240,700,l), (84,700,l), (84,0,l), (230,0,l), (230,451,l), (505,0,l), (505,-28,ls), (505,-66,o), (483,-90,o), (447,-90,cs), (434,-90,o), (406,-89,o), (390,-86,c), (389,-222,l), (406,-227,o), (444,-230,o), (460,-230,cs) ); } ); width = 733; }, { anchors = ( { name = bottom; pos = (333,0); }, { name = top; pos = (333,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (535,-232,o), (573,-181,o), (573,-88,cs), (573,700,l), (514,700,l), (514,130,l), (176,700,l), (100,700,l), (100,0,l), (160,0,l), (160,604,l), (518,2,l), (517,-87,ls), (516,-160,o), (489,-178,o), (441,-178,cs), (428,-178,o), (411,-177,o), (395,-174,c), (395,-224,l), (412,-229,o), (434,-232,o), (450,-232,cs) ); } ); width = 674; }, { anchors = ( { name = bottom; pos = (337,0); }, { name = top; pos = (337,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (547,-230,o), (588,-179,o), (588,-86,cs), (588,700,l), (500,700,l), (500,176,l), (225,700,l), (96,700,l), (96,0,l), (184,0,l), (184,571,l), (501,0,l), (502,-85,ls), (503,-139,o), (476,-158,o), (429,-158,cs), (416,-158,o), (398,-157,o), (382,-154,c), (382,-222,l), (399,-227,o), (422,-230,o), (438,-230,cs) ); } ); width = 684; } ); unicode = 330; }, { glyphname = O; kernLeft = O; kernRight = O; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { anchors = ( { name = bottom; pos = (363,-11); }, { name = top; pos = (368,712); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (584,-12,o), (672,157,o), (672,349,cs), (672,543,o), (584,712,o), (368,712,cs), (152,712,o), (64,543,o), (64,349,cs), (64,157,o), (152,-12,o), (368,-12,cs) ); }, { closed = 1; nodes = ( (221,44,o), (126,154,o), (126,349,cs), (126,540,o), (221,656,o), (368,656,cs), (515,656,o), (610,540,o), (610,349,cs), (610,154,o), (515,44,o), (368,44,cs) ); } ); width = 736; }, { anchors = ( { name = bottom; pos = (368,-11); }, { name = top; pos = (372,713); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (592,-11,o), (685,158,o), (685,351,cs), (685,544,o), (592,713,o), (372,713,cs), (152,713,o), (59,544,o), (59,351,cs), (59,158,o), (152,-11,o), (372,-11,cs) ); }, { closed = 1; nodes = ( (229,69,o), (151,196,o), (151,351,cs), (151,506,o), (229,633,o), (372,633,cs), (525,633,o), (593,506,o), (593,351,cs), (593,196,o), (525,69,o), (372,69,cs) ); } ); width = 744; }, { anchors = ( { name = bottom; pos = (375,-11); }, { name = top; pos = (380,713); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (604,-11,o), (710,148,o), (710,351,cs), (710,554,o), (604,713,o), (380,713,cs), (156,713,o), (48,554,o), (48,351,cs), (48,148,o), (156,-11,o), (380,-11,cs) ); }, { closed = 1; nodes = ( (266,115,o), (202,196,o), (202,351,cs), (202,506,o), (266,587,o), (380,587,cs), (502,587,o), (556,506,o), (556,351,cs), (556,196,o), (502,115,o), (380,115,cs) ); } ); width = 758; } ); unicode = 79; }, { glyphname = Oacute; kernLeft = O; kernRight = O; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (318,200); ref = acutecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (338,201); ref = acutecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (319,205); ref = acutecomb; } ); width = 758; } ); unicode = 211; }, { glyphname = Obreve; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (222,200); ref = brevecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (228,201); ref = brevecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (206,205); ref = brevecomb; } ); width = 758; } ); unicode = 334; }, { glyphname = Ocircumflex; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (234,200); ref = circumflexcomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (222,201); ref = circumflexcomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (199,205); ref = circumflexcomb; } ); width = 758; } ); unicode = 212; }, { glyphname = Ocircumflexacute; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (87,200); ref = circumflexcomb_acutecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (91,213); ref = circumflexcomb_acutecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (199,205); ref = circumflexcomb_acutecomb; } ); width = 758; } ); unicode = 7888; }, { glyphname = Ocircumflexdotbelow; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (293,-11); ref = dotbelowcomb; }, { pos = (234,200); ref = circumflexcomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (293,-11); ref = dotbelowcomb; }, { pos = (222,201); ref = circumflexcomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (281,-10); ref = dotbelowcomb; }, { pos = (199,205); ref = circumflexcomb; } ); width = 758; } ); unicode = 7896; }, { glyphname = Ocircumflexgrave; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (234,200); ref = circumflexcomb_gravecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (223,213); ref = circumflexcomb_gravecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (199,205); ref = circumflexcomb_gravecomb; } ); width = 758; } ); unicode = 7890; }, { glyphname = Ocircumflexhookabove; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (234,200); ref = circumflexcomb_hookabovecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (223,213); ref = circumflexcomb_hookabovecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (199,205); ref = circumflexcomb_hookabovecomb; } ); width = 758; } ); unicode = 7892; }, { glyphname = Ocircumflextilde; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (232,200); ref = circumflexcomb_tildecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (216,213); ref = circumflexcomb_tildecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (172,205); ref = circumflexcomb_tildecomb; } ); width = 758; } ); unicode = 7894; }, { glyphname = Odieresis; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (214,200); ref = dieresiscomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (211,201); ref = dieresiscomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (176,205); ref = dieresiscomb; } ); width = 758; } ); unicode = 214; }, { glyphname = Odotbelow; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (293,-11); ref = dotbelowcomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (293,-11); ref = dotbelowcomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (281,-10); ref = dotbelowcomb; } ); width = 758; } ); unicode = 7884; }, { glyphname = Ograve; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (218,200); ref = gravecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (215,201); ref = gravecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (193,205); ref = gravecomb; } ); width = 758; } ); unicode = 210; }, { glyphname = Ohookabove; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (331,212); ref = hookabovecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (316,213); ref = hookabovecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (320,205); ref = hookabovecomb; } ); width = 758; } ); unicode = 7886; }, { glyphname = Ohorn; kernLeft = O; lastChange = "2024-11-21 10:10:34 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (644,627,o), (728,705,o), (679,827,c), (618,808,l), (649,738,o), (621,676,o), (557,676,cs), (527,676,o), (496,691,o), (466,698,c), (466,641,l), (557,627,l) ); }, { ref = O; } ); width = 757; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (675,612,o), (737,708,o), (688,830,c), (608,808,l), (637,749,o), (627,679,o), (559,679,cs), (523,679,o), (494,695,o), (471,699,c), (471,625,l), (541,612,l) ); }, { ref = O; } ); width = 764; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (713,601,o), (798,710,o), (744,845,c), (630,814,l), (659,755,o), (655,682,o), (574,682,cs), (538,682,o), (515,696,o), (461,704,c), (461,621,l), (580,601,l) ); }, { ref = O; } ); width = 775; } ); unicode = 416; }, { glyphname = Ohornacute; kernLeft = O; kernRight = Ohorn; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Ohorn; }, { pos = (318,200); ref = acutecomb; } ); width = 757; }, { layerId = m002; shapes = ( { ref = Ohorn; }, { pos = (338,201); ref = acutecomb; } ); width = 764; }, { layerId = m003; shapes = ( { ref = Ohorn; }, { pos = (319,205); ref = acutecomb; } ); width = 775; } ); unicode = 7898; }, { glyphname = Ohorndotbelow; kernLeft = O; kernRight = Ohorn; lastChange = "2024-11-01 03:04:57 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Ohorn; }, { pos = (293,-11); ref = dotbelowcomb; } ); width = 757; }, { layerId = m002; shapes = ( { ref = Ohorn; }, { pos = (293,-11); ref = dotbelowcomb; } ); width = 764; }, { layerId = m003; shapes = ( { ref = Ohorn; }, { pos = (281,-10); ref = dotbelowcomb; } ); width = 775; } ); unicode = 7906; }, { glyphname = Ohorngrave; kernLeft = O; kernRight = Ohorn; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Ohorn; }, { pos = (218,200); ref = gravecomb; } ); width = 757; }, { layerId = m002; shapes = ( { ref = Ohorn; }, { pos = (215,201); ref = gravecomb; } ); width = 764; }, { layerId = m003; shapes = ( { ref = Ohorn; }, { pos = (193,205); ref = gravecomb; } ); width = 775; } ); unicode = 7900; }, { glyphname = Ohornhookabove; kernLeft = O; kernRight = Ohorn; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Ohorn; }, { pos = (331,212); ref = hookabovecomb; } ); width = 757; }, { layerId = m002; shapes = ( { ref = Ohorn; }, { pos = (316,213); ref = hookabovecomb; } ); width = 764; }, { layerId = m003; shapes = ( { ref = Ohorn; }, { pos = (320,205); ref = hookabovecomb; } ); width = 775; } ); unicode = 7902; }, { glyphname = Ohorntilde; kernLeft = O; kernRight = Ohorn; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Ohorn; }, { pos = (205,200); ref = tildecomb; } ); width = 757; }, { layerId = m002; shapes = ( { ref = Ohorn; }, { pos = (209,201); ref = tildecomb; } ); width = 764; }, { layerId = m003; shapes = ( { ref = Ohorn; }, { pos = (172,205); ref = tildecomb; } ); width = 775; } ); unicode = 7904; }, { glyphname = Ohungarumlaut; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (249,200); ref = hungarumlautcomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (249,201); ref = hungarumlautcomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (214,205); ref = hungarumlautcomb; } ); width = 758; } ); unicode = 336; }, { glyphname = Omacron; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (226,200); ref = macroncomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (193,201); ref = macroncomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (204,205); ref = macroncomb; } ); width = 758; } ); unicode = 332; }, { glyphname = Oopen; lastChange = "2024-09-20 10:26:09 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (663,0); ref = C; scale = (-1,1); } ); width = 663; }, { layerId = m002; shapes = ( { pos = (689,0); ref = C; scale = (-1,1); } ); width = 689; }, { layerId = m003; shapes = ( { pos = (684,0); ref = C; scale = (-1,1); } ); width = 684; } ); unicode = 390; }, { glyphname = Oslash; lastChange = "2024-11-01 01:05:42 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (52,0); ref = O; }, { closed = 1; nodes = ( (109,-12,l), (763,682,l), (717,720,l), (66,31,l) ); } ); width = 827; }, { layerId = m002; shapes = ( { pos = (62,0); ref = O; }, { closed = 1; nodes = ( (115,-12,l), (796,656,l), (736,712,l), (59,47,l) ); } ); width = 855; }, { layerId = m003; shapes = ( { pos = (64,0); ref = O; }, { closed = 1; nodes = ( (137,-12,l), (826,619,l), (733,712,l), (48,85,l) ); } ); width = 874; } ); unicode = 216; }, { glyphname = Oslashacute; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Oslash; }, { pos = (370,200); ref = acutecomb; } ); width = 827; }, { layerId = m002; shapes = ( { ref = Oslash; }, { pos = (400,201); ref = acutecomb; } ); width = 855; }, { layerId = m003; shapes = ( { ref = Oslash; }, { pos = (383,205); ref = acutecomb; } ); width = 874; } ); unicode = 510; }, { glyphname = Otilde; lastChange = "2025-01-07 17:14:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = O; }, { pos = (205,200); ref = tildecomb; } ); width = 736; }, { layerId = m002; shapes = ( { ref = O; }, { pos = (209,201); ref = tildecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = O; }, { pos = (172,205); ref = tildecomb; } ); width = 758; } ); unicode = 213; }, { glyphname = OE; lastChange = "2024-11-07 17:13:03 +0000"; layers = ( { anchors = ( { name = bottom; pos = (490,0); }, { name = top; pos = (490,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (919,0,l), (919,56,l), (585,56,l), (585,332,l), (857,332,l), (857,388,l), (585,388,l), (585,644,l), (919,644,l), (919,700,l), (397,700,ls), (171,700,o), (64,560,o), (64,349,cs), (64,141,o), (171,0,o), (397,0,cs) ); }, { closed = 1; nodes = ( (200,56,o), (126,192,o), (126,350,cs), (126,507,o), (200,644,o), (394,644,cs), (520,644,l), (520,56,l), (394,56,ls) ); } ); width = 979; }, { anchors = ( { name = bottom; pos = (491,0); }, { name = top; pos = (491,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (924,0,l), (924,80,l), (601,80,l), (601,320,l), (863,320,l), (863,398,l), (601,398,l), (601,620,l), (924,620,l), (924,700,l), (398,700,ls), (166,700,o), (59,560,o), (59,349,cs), (59,141,o), (166,0,o), (398,0,cs) ); }, { closed = 1; nodes = ( (232,80,o), (151,192,o), (151,350,cs), (151,507,o), (232,620,o), (395,620,cs), (505,620,l), (505,80,l), (395,80,ls) ); } ); width = 981; }, { anchors = ( { name = bottom; pos = (487,0); }, { name = top; pos = (487,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (932,0,l), (932,126,l), (621,126,l), (621,297,l), (881,297,l), (881,423,l), (621,423,l), (621,574,l), (932,574,l), (932,700,l), (385,700,ls), (155,700,o), (48,554,o), (48,349,cs), (48,147,o), (155,0,o), (385,0,cs) ); }, { closed = 1; nodes = ( (273,126,o), (202,198,o), (202,350,cs), (202,501,o), (273,574,o), (382,574,cs), (487,574,l), (487,126,l), (382,126,ls) ); } ); width = 974; } ); unicode = 338; }, { glyphname = P; lastChange = "2025-01-01 08:35:31 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (164,0,l), (164,262,l), (332,262,ls), (470,262,o), (547,350,o), (547,472,cs), (547,615,o), (461,700,o), (334,700,cs), (98,700,l), (98,0,l) ); }, { closed = 1; nodes = ( (162,644,l), (332,644,ls), (426,644,o), (485,578,o), (485,472,cs), (485,375,o), (428,318,o), (331,318,cs), (162,318,l) ); } ); width = 585; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (183,0,l), (183,252,l), (344,252,l), (485,252,o), (567,342,o), (567,472,cs), (567,615,o), (476,700,o), (346,700,cs), (95,700,l), (95,0,l) ); }, { closed = 1; nodes = ( (183,621,l), (344,621,ls), (417,621,o), (477,573,o), (477,472,cs), (477,376,o), (417,332,o), (343,332,cs), (183,332,l) ); } ); width = 602; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (238,-1,l), (238,231,l), (388,231,ls), (532,231,o), (618,336,o), (618,465,cs), (618,609,o), (523,701,o), (390,701,cs), (90,701,l), (90,-1,l) ); }, { closed = 1; nodes = ( (236,575,l), (365,575,ls), (428,575,o), (464,527,o), (464,467,cs), (464,410,o), (429,357,o), (365,357,cs), (236,357,l) ); } ); width = 638; } ); unicode = 80; }, { glyphname = Thorn; lastChange = "2024-11-22 03:08:32 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (164,0,l), (164,138,l), (332,138,ls), (470,138,o), (547,226,o), (547,348,cs), (547,491,o), (461,576,o), (334,576,cs), (98,576,l), (98,0,l) ); }, { closed = 1; nodes = ( (162,520,l), (332,520,ls), (426,520,o), (485,454,o), (485,348,cs), (485,251,o), (428,194,o), (331,194,cs), (162,194,l) ); }, { closed = 1; nodes = ( (98,512,l), (163,512,l), (163,700,l), (98,700,l) ); } ); width = 585; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (183,0,l), (183,128,l), (344,128,l), (485,128,o), (567,218,o), (567,348,cs), (567,491,o), (476,576,o), (346,576,cs), (95,576,l), (95,0,l) ); }, { closed = 1; nodes = ( (183,497,l), (344,497,ls), (417,497,o), (477,449,o), (477,348,cs), (477,252,o), (417,208,o), (343,208,cs), (183,208,l) ); }, { closed = 1; nodes = ( (95,500,l), (181,500,l), (181,700,l), (95,700,l) ); } ); width = 602; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (238,-1,l), (238,122,l), (388,122,ls), (532,122,o), (618,227,o), (618,356,cs), (618,500,o), (523,592,o), (390,592,cs), (90,592,l), (90,-1,l) ); }, { closed = 1; nodes = ( (236,466,l), (365,466,ls), (428,466,o), (464,418,o), (464,358,cs), (464,301,o), (429,248,o), (365,248,cs), (236,248,l) ); }, { closed = 1; nodes = ( (90,462,l), (238,462,l), (238,700,l), (90,700,l) ); } ); width = 638; } ); unicode = 222; }, { glyphname = Q; kernLeft = O; kernRight = Q; lastChange = "2025-01-01 08:40:56 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (584,-12,o), (672,157,o), (672,349,cs), (672,543,o), (584,712,o), (368,712,cs), (152,712,o), (64,543,o), (64,349,cs), (64,157,o), (152,-12,o), (368,-12,cs) ); }, { closed = 1; nodes = ( (683,-33,l), (436,256,l), (393,220,l), (638,-71,l) ); }, { closed = 1; nodes = ( (221,44,o), (126,154,o), (126,349,cs), (126,540,o), (221,656,o), (368,656,cs), (515,656,o), (610,540,o), (610,349,cs), (610,154,o), (515,44,o), (368,44,cs) ); } ); width = 745; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (592,-11,o), (685,158,o), (685,351,cs), (685,544,o), (592,713,o), (372,713,cs), (152,713,o), (59,544,o), (59,351,cs), (59,158,o), (152,-11,o), (372,-11,cs) ); }, { closed = 1; nodes = ( (701,-34,l), (436,272,l), (382,227,l), (644,-82,l) ); }, { closed = 1; nodes = ( (219,69,o), (151,196,o), (151,351,cs), (151,506,o), (219,633,o), (372,633,cs), (525,633,o), (593,506,o), (593,351,cs), (593,196,o), (525,69,o), (372,69,cs) ); } ); width = 752; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (598,-11,o), (698,158,o), (698,351,cs), (698,544,o), (598,713,o), (374,713,cs), (150,713,o), (48,544,o), (48,351,cs), (48,158,o), (150,-11,o), (374,-11,cs) ); }, { closed = 1; nodes = ( (711,-30,l), (430,299,l), (341,226,l), (621,-105,l) ); }, { closed = 1; nodes = ( (231,111,o), (180,224,o), (180,351,cs), (180,463,o), (224,592,o), (374,592,cs), (524,592,o), (564,463,o), (564,351,cs), (564,224,o), (524,111,o), (374,111,cs) ); } ); width = 734; } ); unicode = 81; }, { glyphname = R; lastChange = "2025-01-01 07:00:59 +0000"; layers = ( { anchors = ( { name = bottom; pos = (305,0); }, { name = top; pos = (274,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (164,0,l), (164,292,l), (316,292,ls), (449,292,o), (526,395,o), (526,488,cs), (526,631,o), (440,700,o), (318,700,cs), (98,700,l), (98,0,l) ); }, { closed = 1; nodes = ( (563,0,l), (385,306,l), (326,292,l), (493,0,l) ); }, { closed = 1; nodes = ( (162,644,l), (316,644,ls), (405,644,o), (464,594,o), (464,488,cs), (464,420,o), (406,348,o), (314,348,cs), (162,348,l) ); } ); width = 608; }, { anchors = ( { name = bottom; pos = (328,0); }, { name = top; pos = (328,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (183,0,l), (183,290,l), (326,290,ls), (470,290,o), (564,376,o), (564,498,cs), (564,631,o), (474,700,o), (352,700,cs), (95,700,l), (95,0,l) ); }, { closed = 1; nodes = ( (602,0,l), (416,319,l), (333,292,l), (500,0,l) ); }, { closed = 1; nodes = ( (183,620,l), (346,620,ls), (416,620,o), (474,573,o), (474,498,cs), (474,422,o), (416,370,o), (346,370,cs), (183,370,l) ); } ); width = 644; }, { anchors = ( { name = bottom; pos = (317,0); }, { name = top; pos = (317,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (238,-1,l), (238,251,l), (388,251,ls), (532,251,o), (618,341,o), (618,478,cs), (618,622,o), (523,701,o), (390,701,cs), (90,701,l), (90,-1,l) ); }, { closed = 1; nodes = ( (667,0,l), (489,283,l), (330,269,l), (494,0,l) ); }, { closed = 1; nodes = ( (236,575,l), (365,575,ls), (428,575,o), (464,533,o), (464,480,cs), (464,410,o), (429,377,o), (365,377,cs), (236,377,l) ); } ); width = 699; } ); unicode = 82; }, { glyphname = Racute; lastChange = "2024-09-13 00:28:42 +0000"; layers = ( { layerId = m01; shapes = ( { ref = R; }, { pos = (224,188); ref = acutecomb; } ); width = 608; }, { layerId = m002; shapes = ( { ref = R; }, { pos = (294,188); ref = acutecomb; } ); width = 644; }, { layerId = m003; shapes = ( { ref = R; }, { pos = (256,192); ref = acutecomb; } ); width = 699; } ); unicode = 340; }, { glyphname = Rcaron; lastChange = "2024-09-02 07:42:30 +0000"; layers = ( { layerId = m01; shapes = ( { ref = R; }, { pos = (140,188); ref = caroncomb; } ); width = 608; }, { layerId = m002; shapes = ( { ref = R; }, { pos = (176,188); ref = caroncomb; } ); width = 644; }, { layerId = m003; shapes = ( { ref = R; }, { pos = (136,192); ref = caroncomb; } ); width = 699; } ); unicode = 344; }, { glyphname = Rcommaaccent; lastChange = "2024-09-02 07:42:30 +0000"; layers = ( { layerId = m01; shapes = ( { ref = R; }, { pos = (244,12); ref = commaaccentcomb; } ); width = 608; }, { layerId = m002; shapes = ( { ref = R; }, { pos = (251,12); ref = commaaccentcomb; } ); width = 644; }, { layerId = m003; shapes = ( { ref = R; }, { pos = (222,1); ref = commaaccentcomb; } ); width = 699; } ); unicode = 342; }, { glyphname = Rdotbelow; lastChange = "2024-09-09 02:08:44 +0000"; layers = ( { layerId = m003; shapes = ( { ref = R; }, { pos = (223,1); ref = dotbelowcomb; } ); width = 699; }, { layerId = m01; shapes = ( { ref = R; }, { pos = (235,0); ref = dotbelowcomb; } ); width = 608; }, { layerId = m002; shapes = ( { ref = R; }, { pos = (253,0); ref = dotbelowcomb; } ); width = 644; } ); unicode = 7770; }, { glyphname = Rmacronbelow; lastChange = "2024-09-09 02:08:44 +0000"; layers = ( { layerId = m003; shapes = ( { ref = R; }, { pos = (137,1); ref = macronbelowcomb; } ); width = 699; }, { layerId = m01; shapes = ( { ref = R; }, { pos = (163,12); ref = macronbelowcomb; } ); width = 608; }, { layerId = m002; shapes = ( { ref = R; }, { pos = (168,12); ref = macronbelowcomb; } ); width = 644; } ); unicode = 7774; }, { glyphname = S; lastChange = "2025-01-01 07:01:56 +0000"; layers = ( { anchors = ( { name = bottom; pos = (307,-12); }, { name = top; pos = (304,712); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (442,-12,o), (543,58,o), (543,195,cs), (543,437,o), (129,334,o), (129,521,cs), (129,591,o), (185,656,o), (292,656,cs), (410,656,o), (460,580,o), (469,513,c), (535,513,l), (530,603,o), (444,712,o), (299,712,cs), (142,712,o), (67,618,o), (67,516,cs), (67,259,o), (481,382,o), (481,186,cs), (481,114,o), (426,44,o), (305,44,cs), (182,44,o), (127,121,o), (111,214,c), (44,214,l), (57,99,o), (141,-12,o), (305,-12,cs) ); } ); width = 596; }, { anchors = ( { name = bottom; pos = (313,-12); }, { name = top; pos = (310,712); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (453,-12,o), (559,58,o), (559,195,cs), (559,457,o), (165,344,o), (165,521,cs), (165,591,o), (233,632,o), (303,632,cs), (398,632,o), (446,572,o), (456,513,c), (549,513,l), (544,603,o), (463,712,o), (310,712,cs), (150,712,o), (73,618,o), (73,516,cs), (73,246,o), (467,371,o), (467,186,cs), (467,114,o), (396,68,o), (313,68,cs), (218,68,o), (163,129,o), (149,214,c), (52,214,l), (65,99,o), (143,-12,o), (313,-12,cs) ); } ); width = 597; }, { anchors = ( { name = bottom; pos = (313,-5); }, { name = top; pos = (314,712); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (472,-12,o), (575,63,o), (575,200,cs), (575,459,o), (212,386,o), (212,509,cs), (212,568,o), (270,582,o), (314,582,cs), (370,582,o), (407,554,o), (416,505,c), (569,505,l), (564,595,o), (492,712,o), (314,712,cs), (137,712,o), (59,606,o), (59,504,cs), (59,234,o), (421,338,o), (421,186,cs), (421,142,o), (374,118,o), (313,118,cs), (257,118,o), (205,147,o), (191,222,c), (35,222,l), (48,107,o), (119,-12,o), (313,-12,cs) ); } ); width = 611; } ); unicode = 83; }, { glyphname = Sacute; lastChange = "2024-09-02 07:42:52 +0000"; layers = ( { layerId = m01; shapes = ( { ref = S; }, { pos = (254,200); ref = acutecomb; } ); width = 596; }, { layerId = m002; shapes = ( { ref = S; }, { pos = (276,200); ref = acutecomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = S; }, { pos = (253,204); ref = acutecomb; } ); width = 611; } ); unicode = 346; }, { glyphname = Scaron; lastChange = "2024-09-02 07:42:52 +0000"; layers = ( { layerId = m01; shapes = ( { ref = S; }, { pos = (170,200); ref = caroncomb; } ); width = 596; }, { layerId = m002; shapes = ( { ref = S; }, { pos = (158,200); ref = caroncomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = S; }, { pos = (133,204); ref = caroncomb; } ); width = 611; } ); unicode = 352; }, { glyphname = Scedilla; lastChange = "2024-11-01 00:35:54 +0000"; layers = ( { layerId = m01; shapes = ( { ref = S; }, { pos = (200,-14); ref = cedillacomb; } ); width = 596; }, { layerId = m002; shapes = ( { ref = S; }, { pos = (196,-14); ref = cedillacomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = S; }, { pos = (185,-4); ref = cedillacomb; } ); width = 611; } ); unicode = 350; }, { glyphname = Scircumflex; layers = ( { layerId = m01; shapes = ( { ref = S; }, { pos = (170,200); ref = circumflexcomb; } ); width = 596; }, { layerId = m002; shapes = ( { ref = S; }, { pos = (160,200); ref = circumflexcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = S; }, { pos = (133,204); ref = circumflexcomb; } ); width = 611; } ); unicode = 348; }, { glyphname = Scommaaccent; lastChange = "2024-09-02 07:42:51 +0000"; layers = ( { layerId = m01; shapes = ( { ref = S; }, { pos = (246,0); ref = commaaccentcomb; } ); width = 596; }, { layerId = m002; shapes = ( { ref = S; }, { pos = (236,0); ref = commaaccentcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = S; }, { pos = (218,-4); ref = commaaccentcomb; } ); width = 611; } ); unicode = 536; }, { glyphname = Germandbls; lastChange = "2024-11-01 00:57:37 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (160,0,l), (160,700,l), (100,700,l), (100,0,l) ); }, { closed = 1; nodes = ( (202,98,l), (242,29,o), (316,-12,o), (401,-12,cs), (523,-12,o), (617,69,o), (616,204,cs), (615,320,o), (534,423,o), (380,423,c), (580,639,l), (580,700,l), (122,700,l), (122,644,l), (507,644,l), (299,423,l), (299,370,l), (356,370,ls), (485,370,o), (555,305,o), (555,208,cs), (555,124,o), (503,44,o), (401,44,cs), (327,44,o), (280,76,o), (254,128,c) ); } ); width = 667; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (197,0,l), (197,700,l), (109,700,l), (109,0,l) ); }, { closed = 1; nodes = ( (236,91,l), (263,31,o), (331,-12,o), (426,-12,cs), (561,-12,o), (641,77,o), (641,210,cs), (641,312,o), (561,414,o), (426,414,c), (598,615,l), (598,700,l), (174,700,l), (174,620,l), (492,620,l), (315,414,l), (315,346,l), (374,346,ls), (482,346,o), (549,295,o), (549,200,cs), (549,114,o), (494,68,o), (426,68,cs), (366,68,o), (330,105,o), (316,139,c) ); } ); width = 699; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (255,0,l), (255,700,l), (109,700,l), (109,0,l) ); }, { closed = 1; nodes = ( (290,92,l), (327,21,o), (406,-13,o), (493,-13,cs), (656,-13,o), (722,92,o), (722,218,cs), (722,331,o), (634,423,o), (533,423,c), (680,574,l), (680,700,l), (184,700,l), (184,574,l), (517,574,l), (370,422,l), (370,317,l), (442,317,ls), (517,317,o), (577,288,o), (577,217,cs), (577,155,o), (537,117,o), (489,117,cs), (452,117,o), (422,133,o), (406,166,c) ); } ); width = 760; } ); unicode = 7838; }, { glyphname = T; kernLeft = T; kernRight = T; lastChange = "2025-01-01 08:41:32 +0000"; layers = ( { anchors = ( { name = bottom; pos = (250,0); }, { name = top; pos = (250,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (282,0,l), (282,644,l), (484,644,l), (484,700,l), (16,700,l), (16,644,l), (218,644,l), (218,0,l) ); } ); width = 500; }, { anchors = ( { name = bottom; pos = (283,0); }, { name = top; pos = (283,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (327,0,l), (327,620,l), (516,620,l), (516,700,l), (50,700,l), (50,620,l), (239,620,l), (239,0,l) ); } ); width = 562; }, { anchors = ( { name = bottom; pos = (300,0); }, { name = top; pos = (296,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (369,0,l), (369,574,l), (556,574,l), (556,700,l), (40,700,l), (40,574,l), (223,574,l), (223,0,l) ); } ); width = 596; } ); unicode = 84; }, { glyphname = Tcaron; kernLeft = T; kernRight = T; lastChange = "2024-11-01 03:06:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = T; }, { pos = (116,188); ref = caroncomb; } ); width = 500; }, { layerId = m002; shapes = ( { ref = T; }, { pos = (131,188); ref = caroncomb; } ); width = 562; }, { layerId = m003; shapes = ( { ref = T; }, { pos = (115,192); ref = caroncomb; } ); width = 596; } ); unicode = 356; }, { glyphname = Tcedilla; kernLeft = T; kernRight = T; lastChange = "2024-11-01 03:06:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = T; }, { pos = (143,-2); ref = cedillacomb; } ); width = 500; }, { layerId = m002; shapes = ( { ref = T; }, { pos = (166,-2); ref = cedillacomb; } ); width = 562; }, { layerId = m003; shapes = ( { ref = T; }, { pos = (172,1); ref = cedillacomb; } ); width = 596; } ); unicode = 354; }, { glyphname = Tcommaaccent; kernLeft = T; kernRight = T; lastChange = "2024-11-01 03:06:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = T; }, { pos = (189,12); ref = commaaccentcomb; } ); width = 500; }, { layerId = m002; shapes = ( { ref = T; }, { pos = (206,12); ref = commaaccentcomb; } ); width = 562; }, { layerId = m003; shapes = ( { ref = T; }, { pos = (205,1); ref = commaaccentcomb; } ); width = 596; } ); unicode = 538; }, { glyphname = Tdotbelow; kernLeft = T; kernRight = T; lastChange = "2024-11-01 03:06:39 +0000"; layers = ( { layerId = m003; shapes = ( { ref = T; }, { pos = (206,1); ref = dotbelowcomb; } ); width = 596; }, { layerId = m01; shapes = ( { ref = T; }, { pos = (180,0); ref = dotbelowcomb; } ); width = 500; }, { layerId = m002; shapes = ( { ref = T; }, { pos = (208,0); ref = dotbelowcomb; } ); width = 562; } ); unicode = 7788; }, { glyphname = Tmacronbelow; kernLeft = T; kernRight = T; lastChange = "2024-11-01 03:06:39 +0000"; layers = ( { layerId = m003; shapes = ( { ref = T; }, { pos = (120,1); ref = macronbelowcomb; } ); width = 596; }, { layerId = m01; shapes = ( { ref = T; }, { pos = (108,12); ref = macronbelowcomb; } ); width = 500; }, { layerId = m002; shapes = ( { ref = T; }, { pos = (123,12); ref = macronbelowcomb; } ); width = 562; } ); unicode = 7790; }, { glyphname = U; lastChange = "2025-01-01 06:29:39 +0000"; layers = ( { anchors = ( { name = bottom; pos = (336,-12); }, { name = top; pos = (336,713); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (483,-12,o), (576,94,o), (576,275,cs), (576,701,l), (516,701,l), (516,275,ls), (516,121,o), (439,44,o), (333,44,cs), (229,44,o), (150,121,o), (150,275,cs), (150,701,l), (90,701,l), (90,275,ls), (90,94,o), (184,-12,o), (337,-12,cs) ); } ); width = 666; }, { anchors = ( { name = bottom; pos = (342,-12); }, { name = top; pos = (342,713); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (509,-12,o), (594,98,o), (594,275,cs), (594,701,l), (506,701,l), (506,275,ls), (506,139,o), (432,73,o), (340,73,cs), (244,73,o), (174,139,o), (174,275,cs), (174,701,l), (86,701,l), (86,275,ls), (86,98,o), (182,-12,o), (344,-12,cs) ); } ); width = 680; }, { anchors = ( { name = bottom; pos = (351,-12); }, { name = top; pos = (351,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (527,-12,o), (626,98,o), (626,275,cs), (626,701,l), (480,701,l), (480,275,ls), (480,184,o), (434,118,o), (347,118,cs), (256,118,o), (214,184,o), (214,275,cs), (214,701,l), (68,701,l), (68,275,ls), (68,98,o), (178,-12,o), (351,-12,cs) ); } ); width = 694; } ); unicode = 85; }, { glyphname = Uacute; lastChange = "2024-09-02 07:43:34 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (286,201); ref = acutecomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (308,201); ref = acutecomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (290,192); ref = acutecomb; } ); width = 694; } ); unicode = 218; }, { glyphname = Ubreve; lastChange = "2024-09-08 01:05:42 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (190,201); ref = brevecomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (198,201); ref = brevecomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (177,192); ref = brevecomb; } ); width = 694; } ); unicode = 364; }, { glyphname = Ucircumflex; lastChange = "2024-09-02 07:43:35 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (202,201); ref = circumflexcomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (192,201); ref = circumflexcomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (170,192); ref = circumflexcomb; } ); width = 694; } ); unicode = 219; }, { glyphname = Udieresis; lastChange = "2024-09-02 07:43:35 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (182,201); ref = dieresiscomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (181,201); ref = dieresiscomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (147,192); ref = dieresiscomb; } ); width = 694; } ); unicode = 220; }, { glyphname = Udotbelow; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (266,-12); ref = dotbelowcomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (267,-12); ref = dotbelowcomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (257,-11); ref = dotbelowcomb; } ); width = 694; } ); unicode = 7908; }, { glyphname = Ugrave; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (186,201); ref = gravecomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (185,201); ref = gravecomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (164,192); ref = gravecomb; } ); width = 694; } ); unicode = 217; }, { glyphname = Uhookabove; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (299,213); ref = hookabovecomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (286,213); ref = hookabovecomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (291,192); ref = hookabovecomb; } ); width = 694; } ); unicode = 7910; }, { glyphname = Uhorn; kernLeft = U; kernRight = Uhorn; lastChange = "2024-11-21 10:11:11 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { closed = 1; nodes = ( (662,652,o), (746,730,o), (697,852,c), (636,833,l), (667,763,o), (639,701,o), (575,701,c), (575,652,l) ); } ); width = 701; }, { layerId = m002; shapes = ( { ref = U; }, { closed = 1; nodes = ( (714,647,o), (776,730,o), (727,852,c), (647,830,l), (676,771,o), (672,701,o), (591,701,c), (591,647,l) ); } ); width = 744; }, { layerId = m003; shapes = ( { ref = U; }, { closed = 1; nodes = ( (757,620,o), (845,729,o), (791,864,c), (677,833,l), (706,774,o), (705,701,o), (624,701,c), (624,620,l) ); } ); width = 777; } ); unicode = 431; }, { glyphname = Uhornacute; kernLeft = U; kernRight = Uhorn; lastChange = "2024-11-01 03:14:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Uhorn; }, { pos = (286,201); ref = acutecomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = Uhorn; }, { pos = (308,201); ref = acutecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = Uhorn; }, { pos = (290,192); ref = acutecomb; } ); width = 777; } ); unicode = 7912; }, { glyphname = Uhorndotbelow; kernLeft = U; kernRight = Uhorn; lastChange = "2024-11-01 03:14:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Uhorn; }, { pos = (266,-12); ref = dotbelowcomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = Uhorn; }, { pos = (267,-12); ref = dotbelowcomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = Uhorn; }, { pos = (257,-11); ref = dotbelowcomb; } ); width = 777; } ); unicode = 7920; }, { glyphname = Uhorngrave; kernLeft = U; kernRight = Uhorn; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Uhorn; }, { pos = (186,201); ref = gravecomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = Uhorn; }, { pos = (185,201); ref = gravecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = Uhorn; }, { pos = (164,192); ref = gravecomb; } ); width = 777; } ); unicode = 7914; }, { glyphname = Uhornhookabove; kernLeft = U; kernRight = Uhorn; lastChange = "2024-11-01 03:14:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Uhorn; }, { pos = (299,213); ref = hookabovecomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = Uhorn; }, { pos = (286,213); ref = hookabovecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = Uhorn; }, { pos = (291,192); ref = hookabovecomb; } ); width = 777; } ); unicode = 7916; }, { glyphname = Uhorntilde; kernLeft = U; kernRight = Uhorn; lastChange = "2024-11-01 03:14:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Uhorn; }, { pos = (173,201); ref = tildecomb; } ); width = 701; }, { layerId = m002; shapes = ( { ref = Uhorn; }, { pos = (179,201); ref = tildecomb; } ); width = 744; }, { layerId = m003; shapes = ( { ref = Uhorn; }, { pos = (143,192); ref = tildecomb; } ); width = 777; } ); unicode = 7918; }, { glyphname = Uhungarumlaut; lastChange = "2024-09-02 07:43:35 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (217,201); ref = hungarumlautcomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (219,201); ref = hungarumlautcomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (185,192); ref = hungarumlautcomb; } ); width = 694; } ); unicode = 368; }, { glyphname = Umacron; lastChange = "2024-09-02 07:43:36 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (194,201); ref = macroncomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (163,201); ref = macroncomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (175,192); ref = macroncomb; } ); width = 694; } ); unicode = 362; }, { glyphname = Uogonek; lastChange = "2024-09-13 00:56:51 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (251,3); ref = ogonekcomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (265,0); ref = ogonekcomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (271,2); ref = ogonekcomb; } ); width = 694; } ); unicode = 370; }, { glyphname = Uring; lastChange = "2024-09-02 07:43:37 +0000"; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (217,201); ref = ringcomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (219,201); ref = ringcomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (215,192); ref = ringcomb; } ); width = 694; } ); unicode = 366; }, { glyphname = Utilde; layers = ( { layerId = m01; shapes = ( { ref = U; }, { pos = (173,201); ref = tildecomb; } ); width = 666; }, { layerId = m002; shapes = ( { ref = U; }, { pos = (179,201); ref = tildecomb; } ); width = 680; }, { layerId = m003; shapes = ( { ref = U; }, { pos = (143,192); ref = tildecomb; } ); width = 694; } ); unicode = 360; }, { glyphname = V; kernLeft = V; kernRight = V; lastChange = "2025-01-01 06:26:08 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (257,0,l), (319,0,l), (79,700,l), (8,700,l) ); }, { closed = 1; nodes = ( (261,0,l), (319,0,l), (568,700,l), (504,700,l) ); } ); width = 579; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (253,0,l), (339,0,l), (106,700,l), (8,700,l) ); }, { closed = 1; nodes = ( (259,0,l), (339,0,l), (583,700,l), (497,700,l) ); } ); width = 590; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (247,0,l), (397,0,l), (160,700,l), (2,700,l) ); }, { closed = 1; nodes = ( (279,0,l), (417,0,l), (661,700,l), (509,700,l) ); } ); width = 663; } ); unicode = 86; }, { glyphname = W; kernLeft = V; kernRight = V; lastChange = "2025-01-01 07:00:56 +0000"; layers = ( { anchors = ( { name = bottom; pos = (474,0); }, { name = top; pos = (474,700); } ); guides = ( { angle = 270; pos = (268,658); }, { angle = 270; pos = (474,649); }, { angle = 270; pos = (695,658); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (305,0,l), (485,638,l), (468,638,l), (653,0,l), (732,0,l), (926,700,l), (863,700,l), (687,48,l), (703,48,l), (523,700,l), (440,700,l), (260,48,l), (276,48,l), (102,700,l), (32,700,l), (224,0,l) ); } ); width = 958; }, { anchors = ( { name = bottom; pos = (469,0); }, { name = top; pos = (478,700); } ); guides = ( { angle = 89.2931; pos = (265,413); }, { angle = 89.2931; pos = (474,411); }, { angle = 89.2931; pos = (696,411); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (318,0,l), (490,616,l), (464,616,l), (636,0,l), (751,0,l), (926,700,l), (833,700,l), (679,59,l), (708,59,l), (532,700,l), (422,700,l), (246,59,l), (275,59,l), (121,700,l), (28,700,l), (203,0,l) ); } ); width = 954; }, { anchors = ( { name = bottom; pos = (491,0); }, { name = top; pos = (491,700); } ); guides = ( { angle = 270; pos = (287,528); }, { angle = 270; pos = (491,528); }, { angle = 270; pos = (696,528); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (362,0,l), (509,567,l), (473,567,l), (622,0,l), (786,0,l), (967,700,l), (810,700,l), (677,129,l), (717,129,l), (573,700,l), (409,700,l), (267,129,l), (306,129,l), (173,700,l), (16,700,l), (198,0,l) ); } ); width = 983; }, { associatedMasterId = m002; layerId = "61F56607-383A-4625-9FCC-44CDCF2F703C"; name = "14 Jul 24 at 12:33"; shapes = ( { closed = 1; nodes = ( (293,0,l), (463,569,l), (633,0,l), (748,0,l), (898,700,l), (805,700,l), (688,116,l), (517,700,l), (409,700,l), (238,116,l), (121,700,l), (28,700,l), (178,0,l) ); } ); width = 926; }, { associatedMasterId = m003; layerId = "5ACD06B8-073E-40FC-B562-77ADC4AD2B58"; name = "14 Jul 24 at 12:35"; shapes = ( { closed = 1; nodes = ( (332,0,l), (168,0,l), (18,700,l), (175,700,l), (262,213,l), (408,700,l), (556,700,l), (702,213,l), (789,700,l), (946,700,l), (796,0,l), (632,0,l), (482,485,l) ); } ); width = 964; } ); unicode = 87; }, { glyphname = Wacute; kernLeft = V; kernRight = V; lastChange = "2024-11-01 03:05:19 +0000"; layers = ( { layerId = m01; shapes = ( { ref = W; }, { pos = (424,188); ref = acutecomb; } ); width = 958; }, { layerId = m002; shapes = ( { ref = W; }, { pos = (444,188); ref = acutecomb; } ); width = 954; }, { layerId = m003; shapes = ( { ref = W; }, { pos = (430,192); ref = acutecomb; } ); width = 983; } ); unicode = 7810; }, { glyphname = Wcircumflex; kernLeft = V; kernRight = V; lastChange = "2024-11-01 03:05:19 +0000"; layers = ( { layerId = m01; shapes = ( { ref = W; }, { pos = (340,188); ref = circumflexcomb; } ); width = 958; }, { layerId = m002; shapes = ( { ref = W; }, { pos = (328,188); ref = circumflexcomb; } ); width = 954; }, { layerId = m003; shapes = ( { ref = W; }, { pos = (310,192); ref = circumflexcomb; } ); width = 983; } ); unicode = 372; }, { glyphname = Wdieresis; kernLeft = V; kernRight = V; lastChange = "2024-11-01 03:05:19 +0000"; layers = ( { layerId = m01; shapes = ( { ref = W; }, { pos = (320,188); ref = dieresiscomb; } ); width = 958; }, { layerId = m002; shapes = ( { ref = W; }, { pos = (317,188); ref = dieresiscomb; } ); width = 954; }, { layerId = m003; shapes = ( { ref = W; }, { pos = (287,192); ref = dieresiscomb; } ); width = 983; } ); unicode = 7812; }, { glyphname = Wgrave; kernLeft = V; kernRight = V; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = W; }, { pos = (324,188); ref = gravecomb; } ); width = 958; }, { layerId = m002; shapes = ( { ref = W; }, { pos = (321,188); ref = gravecomb; } ); width = 954; }, { layerId = m003; shapes = ( { ref = W; }, { pos = (304,192); ref = gravecomb; } ); width = 983; } ); unicode = 7808; }, { glyphname = X; lastChange = "2025-01-01 08:41:50 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (573,-1,l), (112,699,l), (41,699,l), (503,-1,l) ); }, { closed = 1; nodes = ( (90,-1,l), (550,699,l), (479,699,l), (20,-1,l) ); } ); width = 593; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (580,0,l), (127,700,l), (26,700,l), (480,0,l) ); }, { closed = 1; nodes = ( (115,0,l), (569,700,l), (469,700,l), (16,0,l) ); } ); width = 596; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (636,0,l), (166,700,l), (7,700,l), (478,0,l) ); }, { closed = 1; nodes = ( (164,0,l), (634,700,l), (475,700,l), (6,0,l) ); } ); width = 642; } ); unicode = 88; }, { glyphname = Y; lastChange = "2025-01-01 07:01:17 +0000"; layers = ( { anchors = ( { name = bottom; pos = (286,0); }, { name = top; pos = (286,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (317,0,l), (314,294,l), (558,700,l), (491,700,l), (286,350,l), (80,700,l), (6,700,l), (257,294,l), (254,0,l) ); } ); width = 564; }, { anchors = ( { name = bottom; pos = (294,0); }, { name = top; pos = (294,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (339,0,l), (336,294,l), (577,700,l), (484,700,l), (293,375,l), (105,700,l), (5,700,l), (254,294,l), (251,0,l) ); } ); width = 582; }, { anchors = ( { name = bottom; pos = (324,0); }, { name = top; pos = (323,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (397,0,l), (394,289,l), (645,700,l), (487,700,l), (323,411,l), (161,700,l), (0,700,l), (253,289,l), (250,0,l) ); } ); width = 645; } ); unicode = 89; }, { glyphname = Yacute; kernLeft = Y; kernRight = Y; lastChange = "2024-11-01 03:04:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Y; }, { pos = (236,188); ref = acutecomb; } ); width = 564; }, { layerId = m002; shapes = ( { ref = Y; }, { pos = (260,188); ref = acutecomb; } ); width = 582; }, { layerId = m003; shapes = ( { ref = Y; }, { pos = (262,192); ref = acutecomb; } ); width = 645; } ); unicode = 221; }, { glyphname = Ycircumflex; kernLeft = Y; kernRight = Y; lastChange = "2024-11-01 03:04:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Y; }, { pos = (152,188); ref = circumflexcomb; } ); width = 564; }, { layerId = m002; shapes = ( { ref = Y; }, { pos = (144,188); ref = circumflexcomb; } ); width = 582; }, { layerId = m003; shapes = ( { ref = Y; }, { pos = (142,192); ref = circumflexcomb; } ); width = 645; } ); unicode = 374; }, { glyphname = Ydieresis; kernLeft = Y; kernRight = Y; lastChange = "2024-11-01 03:04:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Y; }, { pos = (132,188); ref = dieresiscomb; } ); width = 564; }, { layerId = m002; shapes = ( { ref = Y; }, { pos = (133,188); ref = dieresiscomb; } ); width = 582; }, { layerId = m003; shapes = ( { ref = Y; }, { pos = (119,192); ref = dieresiscomb; } ); width = 645; } ); unicode = 376; }, { glyphname = Ydotbelow; kernLeft = Y; kernRight = Y; lastChange = "2024-11-01 03:04:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Y; }, { pos = (216,0); ref = dotbelowcomb; } ); width = 564; }, { layerId = m002; shapes = ( { ref = Y; }, { pos = (219,0); ref = dotbelowcomb; } ); width = 582; }, { layerId = m003; shapes = ( { ref = Y; }, { pos = (230,1); ref = dotbelowcomb; } ); width = 645; } ); unicode = 7924; }, { glyphname = Ygrave; kernLeft = Y; kernRight = Y; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Y; }, { pos = (136,188); ref = gravecomb; } ); width = 564; }, { layerId = m002; shapes = ( { ref = Y; }, { pos = (137,188); ref = gravecomb; } ); width = 582; }, { layerId = m003; shapes = ( { ref = Y; }, { pos = (136,192); ref = gravecomb; } ); width = 645; } ); unicode = 7922; }, { glyphname = Yhookabove; kernLeft = Y; kernRight = Y; lastChange = "2024-11-01 03:04:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Y; }, { pos = (249,200); ref = hookabovecomb; } ); width = 564; }, { layerId = m002; shapes = ( { ref = Y; }, { pos = (238,200); ref = hookabovecomb; } ); width = 582; }, { layerId = m003; shapes = ( { ref = Y; }, { pos = (263,192); ref = hookabovecomb; } ); width = 645; } ); unicode = 7926; }, { glyphname = Ytilde; kernLeft = Y; kernRight = Y; lastChange = "2024-11-01 03:04:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = Y; }, { pos = (123,188); ref = tildecomb; } ); width = 564; }, { layerId = m002; shapes = ( { ref = Y; }, { pos = (131,188); ref = tildecomb; } ); width = 582; }, { layerId = m003; shapes = ( { ref = Y; }, { pos = (115,192); ref = tildecomb; } ); width = 645; } ); unicode = 7928; }, { glyphname = Z; lastChange = "2025-01-01 07:01:22 +0000"; layers = ( { anchors = ( { name = bottom; pos = (264,0); }, { name = top; pos = (264,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (483,1,l), (483,57,l), (114,57,l), (483,642,l), (483,700,l), (46,700,l), (46,644,l), (416,644,l), (46,59,l), (46,1,l) ); } ); width = 533; }, { anchors = ( { name = bottom; pos = (271,0); }, { name = top; pos = (271,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (495,1,l), (495,81,l), (150,81,l), (495,618,l), (495,700,l), (46,700,l), (46,620,l), (391,620,l), (46,83,l), (46,1,l) ); } ); width = 545; }, { anchors = ( { name = bottom; pos = (271,0); }, { name = top; pos = (271,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (517,1,l), (517,127,l), (199,127,l), (517,578,l), (517,700,l), (30,700,l), (30,574,l), (350,574,l), (30,123,l), (30,1,l) ); } ); width = 549; } ); unicode = 90; }, { glyphname = Zacute; layers = ( { layerId = m01; shapes = ( { ref = Z; }, { pos = (214,188); ref = acutecomb; } ); width = 533; }, { layerId = m002; shapes = ( { ref = Z; }, { pos = (237,188); ref = acutecomb; } ); width = 545; }, { layerId = m003; shapes = ( { ref = Z; }, { pos = (210,192); ref = acutecomb; } ); width = 549; } ); unicode = 377; }, { glyphname = Zcaron; layers = ( { layerId = m01; shapes = ( { ref = Z; }, { pos = (130,188); ref = caroncomb; } ); width = 533; }, { layerId = m002; shapes = ( { ref = Z; }, { pos = (119,188); ref = caroncomb; } ); width = 545; }, { layerId = m003; shapes = ( { ref = Z; }, { pos = (90,192); ref = caroncomb; } ); width = 549; } ); unicode = 381; }, { glyphname = Zdotaccent; layers = ( { layerId = m01; shapes = ( { ref = Z; }, { pos = (196,188); ref = dotaccentcomb; } ); width = 533; }, { layerId = m002; shapes = ( { ref = Z; }, { pos = (197,188); ref = dotaccentcomb; } ); width = 545; }, { layerId = m003; shapes = ( { ref = Z; }, { pos = (175,192); ref = dotaccentcomb; } ); width = 549; } ); unicode = 379; }, { glyphname = Lcommaaccent.loclMAH; lastChange = "2025-01-07 17:13:14 +0000"; layers = ( { layerId = m01; shapes = ( { ref = L; }, { pos = (193,-2); ref = commaaccentcomb.loclMAH; } ); width = 529; }, { layerId = m002; shapes = ( { ref = L; }, { pos = (172,-2); ref = commaaccentcomb.loclMAH; } ); width = 524; }, { layerId = m003; shapes = ( { ref = L; }, { pos = (193,1); ref = commaaccentcomb.loclMAH; } ); width = 579; } ); }, { glyphname = Ncommaaccent.loclMAH; lastChange = "2024-10-21 04:16:33 +0000"; layers = ( { layerId = m01; shapes = ( { ref = N; }, { pos = (231,-2); ref = commaaccentcomb.loclMAH; } ); width = 681; }, { layerId = m002; shapes = ( { ref = N; }, { pos = (227,-2); ref = commaaccentcomb.loclMAH; } ); width = 699; }, { layerId = m003; shapes = ( { ref = N; }, { pos = (238,1); ref = commaaccentcomb.loclMAH; } ); width = 732; } ); }, { glyphname = a; kernLeft = o; lastChange = "2025-01-01 06:44:11 +0000"; layers = ( { anchors = ( { name = bottom; pos = (282,-12); }, { name = top; pos = (281,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (334,-12,o), (419,23,o), (442,92,c), (442,0,l), (498,0,l), (498,500,l), (442,500,l), (442,406,l), (422,461,o), (353,512,o), (268,512,cs), (151,512,o), (56,419,o), (56,250,cs), (56,86,o), (151,-12,o), (268,-12,cs) ); }, { closed = 1; nodes = ( (181,38,o), (115,124,o), (115,252,cs), (115,377,o), (167,462,o), (280,462,cs), (359,462,o), (442,392,o), (443,250,cs), (442,112,o), (376,38,o), (280,38,cs) ); } ); width = 568; }, { anchors = ( { name = bottom; pos = (291,-12); }, { name = top; pos = (291,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (344,-12,o), (417,27,o), (439,96,c), (439,0,l), (523,0,l), (523,500,l), (439,500,l), (439,402,l), (420,457,o), (368,512,o), (280,512,cs), (141,512,o), (54,419,o), (54,250,cs), (54,86,o), (141,-12,o), (275,-12,cs) ); }, { closed = 1; nodes = ( (187,64,o), (139,148,o), (139,252,cs), (139,356,o), (187,437,o), (285,437,cs), (384,437,o), (438,360,o), (438,250,cs), (438,148,o), (384,64,o), (288,64,cs) ); } ); width = 609; }, { anchors = ( { name = bottom; pos = (285,-12); }, { name = top; pos = (285,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (341,-12,o), (390,29,o), (416,83,c), (416,0,l), (555,0,l), (556,508,l), (416,508,l), (416,415,l), (390,470,o), (341,520,o), (257,520,cs), (126,520,o), (38,421,o), (38,253,cs), (38,88,o), (116,-12,o), (252,-12,cs) ); }, { closed = 1; nodes = ( (230,95,o), (184,157,o), (184,253,cs), (184,340,o), (230,410,o), (302,410,cs), (370,410,o), (416,341,o), (416,253,cs), (416,158,o), (370,97,o), (302,96,cs) ); } ); width = 610; } ); unicode = 97; }, { glyphname = aacute; kernLeft = a; lastChange = "2024-09-27 10:45:09 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (231,0); ref = acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (257,0); ref = acutecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (224,12); ref = acutecomb; } ); width = 610; } ); unicode = 225; }, { glyphname = abreve; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (135,0); ref = brevecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (147,0); ref = brevecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (111,12); ref = brevecomb; } ); width = 610; } ); unicode = 259; }, { glyphname = abreveacute; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (84,0); ref = brevecomb_acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (91,12); ref = brevecomb_acutecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (110,12); ref = brevecomb_acutecomb; } ); width = 610; } ); unicode = 7855; }, { glyphname = abrevedotbelow; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (212,-12); ref = dotbelowcomb; }, { pos = (135,0); ref = brevecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (216,-12); ref = dotbelowcomb; }, { pos = (147,0); ref = brevecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (191,-11); ref = dotbelowcomb; }, { pos = (111,12); ref = brevecomb; } ); width = 610; } ); unicode = 7863; }, { glyphname = abrevegrave; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (74,0); ref = brevecomb_gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (83,12); ref = brevecomb_gravecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (110,12); ref = brevecomb_gravecomb; } ); width = 610; } ); unicode = 7857; }, { glyphname = abrevehookabove; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (93,0); ref = brevecomb_hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (91,12); ref = brevecomb_hookabovecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (110,12); ref = brevecomb_hookabovecomb; } ); width = 610; } ); unicode = 7859; }, { glyphname = abrevetilde; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (51,0); ref = brevecomb_tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (64,0); ref = brevecomb_tildecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (110,12); ref = brevecomb_tildecomb; } ); width = 610; } ); unicode = 7861; }, { glyphname = acircumflex; kernLeft = a; lastChange = "2024-09-27 10:45:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (147,0); ref = circumflexcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (141,0); ref = circumflexcomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (104,12); ref = circumflexcomb; } ); width = 610; } ); unicode = 226; }, { glyphname = acircumflexacute; layers = ( { layerId = m01; shapes = ( { ref = a; }, { ref = circumflexcomb_acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (10,12); ref = circumflexcomb_acutecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (104,12); ref = circumflexcomb_acutecomb; } ); width = 610; } ); unicode = 7845; }, { glyphname = acircumflexdotbelow; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (212,-12); ref = dotbelowcomb; }, { pos = (147,0); ref = circumflexcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (216,-12); ref = dotbelowcomb; }, { pos = (141,0); ref = circumflexcomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (191,-11); ref = dotbelowcomb; }, { pos = (104,12); ref = circumflexcomb; } ); width = 610; } ); unicode = 7853; }, { glyphname = acircumflexgrave; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (147,0); ref = circumflexcomb_gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (142,12); ref = circumflexcomb_gravecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (104,12); ref = circumflexcomb_gravecomb; } ); width = 610; } ); unicode = 7847; }, { glyphname = acircumflexhookabove; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (147,0); ref = circumflexcomb_hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (142,12); ref = circumflexcomb_hookabovecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (104,12); ref = circumflexcomb_hookabovecomb; } ); width = 610; } ); unicode = 7849; }, { glyphname = acircumflextilde; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (145,0); ref = circumflexcomb_tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (135,12); ref = circumflexcomb_tildecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (77,12); ref = circumflexcomb_tildecomb; } ); width = 610; } ); unicode = 7851; }, { glyphname = adieresis; kernLeft = a; lastChange = "2025-01-01 06:42:02 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (127,0); ref = dieresiscomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (130,0); ref = dieresiscomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (81,12); ref = dieresiscomb; } ); width = 610; } ); unicode = 228; }, { glyphname = adotbelow; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (212,-12); ref = dotbelowcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (216,-12); ref = dotbelowcomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (191,-11); ref = dotbelowcomb; } ); width = 610; } ); unicode = 7841; }, { glyphname = agrave; kernLeft = a; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (131,0); ref = gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (134,0); ref = gravecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (98,12); ref = gravecomb; } ); width = 610; } ); unicode = 224; }, { glyphname = ahookabove; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (244,12); ref = hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (235,12); ref = hookabovecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (225,12); ref = hookabovecomb; } ); width = 610; } ); unicode = 7843; }, { glyphname = amacron; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (139,0); ref = macroncomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (112,0); ref = macroncomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (109,12); ref = macroncomb; } ); width = 610; } ); unicode = 257; }, { glyphname = aogonek; lastChange = "2025-01-01 06:45:25 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (339,5); ref = ogonekcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (360,0); ref = ogonekcomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (380,0); ref = ogonekcomb; } ); width = 610; } ); unicode = 261; }, { glyphname = aring; kernLeft = a; lastChange = "2024-09-27 10:45:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (162,0); ref = ringcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (168,0); ref = ringcomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (149,12); ref = ringcomb; } ); width = 610; } ); unicode = 229; }, { glyphname = atilde; kernLeft = a; lastChange = "2024-09-27 10:45:14 +0000"; layers = ( { layerId = m01; shapes = ( { ref = a; }, { pos = (118,0); ref = tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = a; }, { pos = (128,0); ref = tildecomb; } ); width = 609; }, { layerId = m003; shapes = ( { ref = a; }, { pos = (77,12); ref = tildecomb; } ); width = 610; } ); unicode = 227; }, { glyphname = ae; kernLeft = o; kernRight = e; lastChange = "2025-01-01 06:42:54 +0000"; layers = ( { anchors = ( { name = top; pos = (452,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (778,-13,o), (845,62,o), (870,144,c), (817,154,l), (798,100,o), (749,37,o), (653,37,cs), (534,37,o), (472,118,o), (472,245,cs), (472,368,o), (520,462,o), (650,462,cs), (757,462,o), (812,381,o), (812,302,c), (461,302,l), (461,252,l), (872,252,l), (872,267,l), (872,422,o), (774,512,o), (646,512,cs), (509,512,o), (423,412,o), (423,248,cs), (423,87,o), (503,-13,o), (649,-13,cs) ); }, { closed = 1; nodes = ( (341,-12,o), (440,65,o), (440,163,c), (464,145,l), (464,338,ls), (464,450,o), (408,512,o), (272,512,cs), (193,512,o), (121,476,o), (82,400,c), (134,373,l), (155,420,o), (203,460,o), (272,460,cs), (374,460,o), (423,409,o), (416,333,cs), (413,301,l), (173,301,o), (56,271,o), (56,132,cs), (56,40,o), (137,-12,o), (221,-12,cs) ); }, { closed = 1; nodes = ( (160,38,o), (117,81,o), (117,131,cs), (117,228,o), (176,251,o), (413,251,c), (413,230,ls), (413,129,o), (339,38,o), (223,38,cs) ); } ); width = 924; }, { anchors = ( { name = top; pos = (471,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (793,-13,o), (861,55,o), (886,137,c), (804,151,l), (785,97,o), (729,63,o), (672,63,cs), (547,63,o), (514,152,o), (514,247,cs), (514,369,o), (560,436,o), (669,436,cs), (763,436,o), (802,360,o), (802,311,c), (509,311,l), (509,241,l), (888,241,l), (888,261,l), (888,434,o), (789,512,o), (665,512,cs), (528,512,o), (441,414,o), (441,250,cs), (441,89,o), (528,-13,o), (668,-13,cs) ); }, { closed = 1; nodes = ( (353,-12,o), (458,73,o), (458,147,c), (484,148,l), (484,332,ls), (484,447,o), (422,512,o), (290,512,cs), (179,512,o), (117,462,o), (87,392,c), (156,356,l), (173,413,o), (231,442,o), (286,442,cs), (356,442,o), (417,414,o), (417,339,cs), (417,313,l), (161,313,o), (68,261,o), (68,141,cs), (68,49,o), (148,-12,o), (231,-12,cs) ); }, { closed = 1; nodes = ( (195,62,o), (150,96,o), (150,141,cs), (150,210,o), (193,247,o), (417,247,c), (417,215,ls), (417,110,o), (304,62,o), (242,62,cs) ); } ); width = 941; }, { anchors = ( { name = top; pos = (461,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (732,-13,o), (828,23,o), (875,134,c), (743,173,l), (724,130,o), (677,107,o), (647,107,cs), (558,107,o), (519,164,o), (519,256,cs), (519,337,o), (558,400,o), (642,400,cs), (709,400,o), (747,346,o), (747,311,c), (486,311,l), (487,225,l), (890,225,l), (890,248,l), (890,418,o), (793,520,o), (643,520,cs), (512,520,o), (400,436,o), (400,256,cs), (400,82,o), (510,-13,o), (645,-13,cs) ); }, { closed = 1; nodes = ( (457,-12,o), (460,173,o), (460,173,c), (488,174,l), (488,340,ls), (488,451,o), (435,520,o), (285,520,cs), (164,520,o), (89,459,o), (65,387,c), (170,342,l), (184,385,o), (222,412,o), (277,412,cs), (345,412,o), (380,374,o), (380,322,cs), (380,318,l), (156,318,o), (40,273,o), (40,144,cs), (40,51,o), (113,-12,o), (227,-12,cs) ); }, { closed = 1; nodes = ( (227,93,o), (180,109,o), (180,151,cs), (180,199,o), (208,226,o), (380,226,c), (380,206,ls), (380,124,o), (318,93,o), (248,93,cs) ); } ); width = 935; } ); unicode = 230; }, { glyphname = aeacute; lastChange = "2024-09-08 01:06:52 +0000"; layers = ( { layerId = m01; shapes = ( { ref = ae; }, { pos = (402,0); ref = acutecomb; } ); width = 924; }, { layerId = m002; shapes = ( { ref = ae; }, { pos = (437,0); ref = acutecomb; } ); width = 941; }, { layerId = m003; shapes = ( { ref = ae; }, { pos = (400,12); ref = acutecomb; } ); width = 935; } ); unicode = 509; }, { glyphname = b; kernRight = o; lastChange = "2025-01-01 10:06:44 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (152,700,l), (96,700,l), (96,0,l), (152,0,l), (152,98,l), (172,43,o), (241,-12,o), (326,-12,cs), (451,-12,o), (538,81,o), (538,250,cs), (538,414,o), (443,512,o), (326,512,cs), (235,512,o), (172,457,o), (152,402,c) ); }, { closed = 1; nodes = ( (413,462,o), (479,376,o), (479,248,cs), (479,123,o), (427,38,o), (314,38,cs), (235,38,o), (152,108,o), (151,250,c), (152,392,o), (235,462,o), (314,462,cs) ); } ); width = 600; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (176,700,l), (92,700,l), (92,0,l), (176,0,l), (176,98,l), (195,43,o), (247,-12,o), (335,-12,cs), (474,-12,o), (561,81,o), (561,250,cs), (561,414,o), (474,512,o), (340,512,cs), (271,512,o), (198,476,o), (176,407,c) ); }, { closed = 1; nodes = ( (428,436,o), (476,352,o), (476,248,cs), (476,144,o), (428,63,o), (330,63,cs), (231,63,o), (177,140,o), (177,250,cs), (177,352,o), (231,436,o), (327,436,cs) ); } ); width = 615; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (221,700,l), (81,700,l), (80,0,l), (221,0,l), (221,93,l), (247,38,o), (302,-12,o), (380,-12,cs), (511,-12,o), (599,87,o), (599,255,cs), (599,420,o), (516,520,o), (385,520,cs), (302,520,o), (247,479,o), (221,425,c) ); }, { closed = 1; nodes = ( (407,413,o), (453,351,o), (453,255,cs), (453,168,o), (407,98,o), (335,98,cs), (267,98,o), (221,167,o), (221,255,cs), (221,350,o), (267,411,o), (335,412,cs) ); } ); width = 633; } ); unicode = 98; }, { glyphname = c; kernLeft = o; lastChange = "2025-01-08 14:12:06 +0000"; layers = ( { anchors = ( { name = bottom; pos = (284,-12); }, { name = top; pos = (280,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (435,468,o), (363,512,o), (280,512,cs), (160,512,o), (56,422,o), (56,250,cs), (56,78,o), (160,-12,o), (280,-12,cs), (380,-12,o), (432,35,o), (471,121,c), (419,142,l), (398,86,o), (351,38,o), (280,38,cs), (173,38,o), (114,121,o), (114,250,cs), (114,379,o), (173,462,o), (280,462,cs), (350,462,o), (401,413,o), (422,363,c), (474,383,l) ); } ); width = 518; }, { anchors = ( { name = bottom; pos = (275,-12); }, { name = top; pos = (292,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (455,464,o), (380,512,o), (292,512,c), (166,512,o), (54,424,o), (54,248,cs), (54,74,o), (166,-13,o), (292,-13,cs), (393,-13,o), (455,37,o), (490,120,c), (414,150,l), (393,99,o), (350,63,o), (290,63,cs), (186,63,o), (138,140,o), (138,251,cs), (138,359,o), (185,436,o), (290,436,cs), (350,436,o), (393,402,o), (414,351,c), (490,381,l) ); } ); width = 536; }, { anchors = ( { name = bottom; pos = (291,-12); }, { name = top; pos = (309,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (479,473,o), (401,520,o), (313,520,cs), (150,520,o), (44,420,o), (44,254,cs), (44,88,o), (150,-12,o), (313,-12,cs), (401,-12,o), (479,35,o), (518,127,c), (402,173,l), (390,141,o), (354,108,o), (308,108,cs), (236,108,o), (190,163,o), (190,255,cs), (190,347,o), (236,400,o), (308,400,cs), (354,400,o), (390,367,o), (402,335,c), (518,381,l) ); } ); width = 550; }, { associatedMasterId = m01; layerId = "D6DBBF6B-18E3-4F95-B026-A0427CA97C42"; name = "26 Mar 24 at 21:35"; visible = 1; width = 529; } ); unicode = 99; }, { glyphname = cacute; lastChange = "2025-01-08 14:12:06 +0000"; layers = ( { layerId = m01; shapes = ( { ref = c; }, { pos = (230,0); ref = acutecomb; } ); width = 518; }, { layerId = m002; shapes = ( { ref = c; }, { pos = (258,0); ref = acutecomb; } ); width = 536; }, { layerId = m003; shapes = ( { ref = c; }, { pos = (248,12); ref = acutecomb; } ); width = 550; } ); unicode = 263; }, { glyphname = ccaron; lastChange = "2025-01-08 14:12:06 +0000"; layers = ( { layerId = m01; shapes = ( { ref = c; }, { pos = (146,0); ref = caroncomb; } ); width = 518; }, { layerId = m002; shapes = ( { ref = c; }, { pos = (140,0); ref = caroncomb; } ); width = 536; }, { layerId = m003; shapes = ( { ref = c; }, { pos = (128,12); ref = caroncomb; } ); width = 550; } ); unicode = 269; }, { glyphname = ccedilla; lastChange = "2024-09-24 09:24:31 +0000"; layers = ( { layerId = m01; shapes = ( { ref = c; }, { pos = (177,-14); ref = cedillacomb; } ); width = 518; }, { layerId = m002; shapes = ( { ref = c; }, { pos = (158,-14); ref = cedillacomb; } ); width = 536; }, { layerId = m003; shapes = ( { ref = c; }, { pos = (163,-11); ref = cedillacomb; } ); width = 550; } ); unicode = 231; }, { glyphname = ccircumflex; lastChange = "2025-01-08 14:12:06 +0000"; layers = ( { layerId = m01; shapes = ( { ref = c; }, { pos = (146,0); ref = circumflexcomb; } ); width = 518; }, { layerId = m002; shapes = ( { ref = c; }, { pos = (142,0); ref = circumflexcomb; } ); width = 536; }, { layerId = m003; shapes = ( { ref = c; }, { pos = (128,12); ref = circumflexcomb; } ); width = 550; } ); unicode = 265; }, { glyphname = cdotaccent; lastChange = "2025-01-08 14:12:06 +0000"; layers = ( { layerId = m01; shapes = ( { ref = c; }, { pos = (212,0); ref = dotaccentcomb; } ); width = 518; }, { layerId = m002; shapes = ( { ref = c; }, { pos = (218,0); ref = dotaccentcomb; } ); width = 536; }, { layerId = m003; shapes = ( { ref = c; }, { pos = (213,12); ref = dotaccentcomb; } ); width = 550; } ); unicode = 267; }, { glyphname = d; kernLeft = o; lastChange = "2025-01-01 06:24:23 +0000"; layers = ( { anchors = ( { name = bottom; pos = (304,-12); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (442,17,o), (482,0,o), (521,-1,cs), (546,-2,o), (556,3,o), (570,11,c), (570,58,l), (527,39,o), (498,53,o), (498,103,cs), (498,700,l), (442,700,l), (442,404,l), (419,473,o), (334,512,o), (268,512,cs), (151,512,o), (56,414,o), (56,250,cs), (56,81,o), (145,-12,o), (268,-12,cs), (334,-12,o), (419,19,o), (442,88,c) ); }, { closed = 1; nodes = ( (167,38,o), (115,123,o), (115,248,cs), (115,376,o), (181,462,o), (280,462,cs), (376,462,o), (442,388,o), (443,250,cs), (442,112,o), (376,38,o), (280,38,cs) ); } ); width = 610; }, { anchors = ( { name = bottom; pos = (327,-12); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (442,44,o), (481,-1,o), (533,-1,cs), (558,-1,o), (571,3,o), (585,11,c), (585,79,l), (536,68,o), (522,86,o), (522,126,cs), (522,700,l), (438,700,l), (438,406,l), (419,461,o), (367,512,o), (279,512,cs), (140,512,o), (53,419,o), (53,250,cs), (53,86,o), (136,-12,o), (274,-12,cs), (343,-12,o), (420,25,o), (442,94,c) ); }, { closed = 1; nodes = ( (186,64,o), (138,148,o), (138,252,cs), (138,356,o), (186,437,o), (284,437,cs), (383,437,o), (437,360,o), (437,250,cs), (437,148,o), (383,64,o), (287,64,cs) ); } ); width = 627; }, { anchors = ( { name = bottom; pos = (325,-12); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (424,30,o), (500,-1,o), (547,-1,cs), (574,-1,o), (608,6,o), (622,14,c), (622,124,l), (573,113,o), (559,128,o), (559,168,cs), (560,700,l), (420,700,l), (420,415,l), (394,470,o), (344,520,o), (261,520,cs), (130,520,o), (42,421,o), (42,253,cs), (42,88,o), (125,-12,o), (256,-12,cs), (344,-12,o), (396,32,o), (424,101,c) ); }, { closed = 1; nodes = ( (235,95,o), (189,157,o), (189,253,cs), (189,340,o), (235,410,o), (307,410,cs), (375,410,o), (421,341,o), (421,253,cs), (421,158,o), (375,97,o), (307,96,cs) ); } ); width = 660; }, { associatedMasterId = m01; layerId = "F3AABDD4-5D52-40E7-9352-25D68A3D59C9"; name = "5 Apr 24 at 08:05"; shapes = ( { closed = 1; nodes = ( (378,462,o), (444,388,o), (445,250,cs), (444,108,o), (361,38,o), (282,38,cs), (169,38,o), (117,123,o), (117,248,cs), (117,376,o), (183,462,o), (282,462,cs) ); }, { closed = 1; nodes = ( (500,700,l), (444,700,l), (444,404,l), (421,473,o), (336,512,o), (270,512,cs), (153,512,o), (58,414,o), (58,250,cs), (58,81,o), (153,-12,o), (270,-12,cs), (355,-12,o), (424,41,o), (444,96,c), (444,25,o), (484,0,o), (523,-1,cs), (548,-2,o), (558,3,o), (572,11,c), (572,64,l), (529,48,o), (500,69,o), (500,119,cs) ); } ); width = 652; } ); unicode = 100; }, { glyphname = dcaron; lastChange = "2024-11-01 00:50:46 +0000"; layers = ( { layerId = m01; shapes = ( { ref = d; }, { closed = 1; nodes = ( (667,700,l), (574,700,l), (561,582,l), (611,582,l) ); } ); width = 667; }, { layerId = m002; shapes = ( { ref = d; }, { closed = 1; nodes = ( (708,701,l), (598,701,l), (587,564,l), (659,564,l) ); } ); width = 708; }, { layerId = m003; shapes = ( { ref = d; }, { closed = 1; nodes = ( (760,701,l), (630,701,l), (611,531,l), (706,531,l) ); } ); width = 760; } ); unicode = 271; }, { glyphname = dcroat; lastChange = "2024-09-20 10:31:53 +0000"; layers = ( { layerId = m01; shapes = ( { ref = d; }, { closed = 1; nodes = ( (311,562,l), (577,562,l), (577,609,l), (311,609,l) ); } ); width = 617; }, { layerId = m002; shapes = ( { ref = d; }, { closed = 1; nodes = ( (302,564,l), (611,564,l), (611,632,l), (302,632,l) ); } ); width = 653; }, { layerId = m003; shapes = ( { ref = d; }, { closed = 1; nodes = ( (298,540,l), (641,540,l), (641,640,l), (298,640,l) ); } ); width = 679; } ); unicode = 273; }, { glyphname = ddotbelow; lastChange = "2024-09-09 02:09:45 +0000"; layers = ( { layerId = m003; shapes = ( { ref = d; }, { pos = (231,-11); ref = dotbelowcomb; } ); width = 660; }, { layerId = m01; shapes = ( { ref = d; }, { pos = (234,-12); ref = dotbelowcomb; } ); width = 610; }, { layerId = m002; shapes = ( { ref = d; }, { pos = (252,-12); ref = dotbelowcomb; } ); width = 627; } ); unicode = 7693; }, { glyphname = dmacronbelow; lastChange = "2024-09-09 02:09:45 +0000"; layers = ( { layerId = m003; shapes = ( { ref = d; }, { pos = (145,-11); ref = macronbelowcomb; } ); width = 660; }, { layerId = m01; shapes = ( { ref = d; }, { pos = (162,0); ref = macronbelowcomb; } ); width = 610; }, { layerId = m002; shapes = ( { ref = d; }, { pos = (167,0); ref = macronbelowcomb; } ); width = 627; } ); unicode = 7695; }, { glyphname = eth; kernLeft = o; kernRight = o; lastChange = "2025-01-01 06:43:10 +0000"; layers = ( { anchors = ( { name = bottom; pos = (281,0); }, { name = top; pos = (281,720); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (431,-12,o), (505,105,o), (505,289,cs), (505,472,o), (438,622,o), (228,713,c), (202,664,l), (259,647,o), (428,542,o), (438,389,c), (409,453,o), (346,489,o), (274,489,cs), (160,489,o), (56,405,o), (56,239,cs), (56,72,o), (160,-12,o), (274,-12,cs) ); }, { closed = 1; nodes = ( (173,38,o), (115,113,o), (115,239,cs), (115,365,o), (173,439,o), (274,439,cs), (367,439,o), (434,365,o), (434,239,cs), (434,113,o), (375,38,o), (274,38,cs) ); }, { closed = 1; nodes = ( (464,635,l), (443,678,l), (206,562,l), (228,519,l) ); } ); width = 561; }, { anchors = ( { name = bottom; pos = (288,0); }, { name = top; pos = (288,720); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (442,-12,o), (519,120,o), (519,284,cs), (519,529,o), (408,654,o), (242,725,c), (207,660,l), (260,640,o), (403,558,o), (419,429,c), (383,471,o), (325,488,o), (281,488,cs), (167,488,o), (56,402,o), (56,238,cs), (56,74,o), (160,-12,o), (284,-12,cs) ); }, { closed = 1; nodes = ( (192,60,o), (140,128,o), (140,238,cs), (140,348,o), (194,416,o), (284,416,cs), (377,416,o), (429,348,o), (429,238,cs), (429,128,o), (377,60,o), (284,60,cs) ); }, { closed = 1; nodes = ( (489,644,l), (460,702,l), (207,571,l), (236,512,l) ); } ); width = 575; }, { anchors = ( { name = bottom; pos = (292,0); }, { name = top; pos = (292,720); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (452,-12,o), (548,129,o), (548,307,cs), (548,533,o), (416,677,o), (225,744,c), (175,651,l), (214,642,o), (375,578,o), (416,432,c), (394,466,o), (333,498,o), (274,498,cs), (153,498,o), (36,419,o), (36,243,cs), (36,76,o), (161,-12,o), (290,-12,cs) ); }, { closed = 1; nodes = ( (218,108,o), (178,161,o), (178,243,cs), (178,323,o), (219,378,o), (287,378,cs), (365,378,o), (400,323,o), (400,243,cs), (400,161,o), (364,108,o), (287,108,cs) ); }, { closed = 1; nodes = ( (500,650,l), (460,722,l), (182,583,l), (221,511,l) ); } ); width = 584; } ); unicode = 240; }, { glyphname = e; kernLeft = o; kernRight = o; lastChange = "2025-01-01 00:32:49 +0000"; layers = ( { anchors = ( { name = bottom; pos = (285,-13); }, { name = top; pos = (285,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (422,-13,o), (489,62,o), (514,144,c), (461,154,l), (442,100,o), (393,37,o), (297,37,cs), (178,37,o), (116,118,o), (116,245,cs), (116,368,o), (164,462,o), (294,462,cs), (401,462,o), (456,368,o), (456,289,c), (105,289,l), (105,239,l), (516,239,l), (516,267,l), (516,422,o), (418,512,o), (290,512,cs), (153,512,o), (58,412,o), (58,248,cs), (58,87,o), (147,-13,o), (293,-13,cs) ); } ); width = 568; }, { anchors = ( { name = bottom; pos = (287,-13); }, { name = top; pos = (287,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (421,-13,o), (489,55,o), (514,137,c), (432,151,l), (413,97,o), (357,63,o), (300,63,cs), (175,63,o), (142,150,o), (142,245,cs), (142,367,o), (188,436,o), (297,436,cs), (391,436,o), (430,345,o), (430,304,c), (137,304,l), (137,234,l), (516,234,l), (516,261,l), (516,434,o), (417,512,o), (293,512,cs), (156,512,o), (57,412,o), (57,248,cs), (57,87,o), (156,-13,o), (296,-13,cs) ); } ); width = 569; }, { anchors = ( { name = bottom; pos = (291,-13); }, { name = top; pos = (291,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (388,-13,o), (484,23,o), (531,134,c), (399,173,l), (380,130,o), (333,107,o), (303,107,cs), (214,107,o), (175,164,o), (175,256,cs), (175,337,o), (214,400,o), (298,400,cs), (365,400,o), (403,336,o), (403,301,c), (142,301,l), (143,215,l), (546,215,l), (546,248,l), (546,418,o), (449,520,o), (299,520,cs), (168,520,o), (38,436,o), (38,256,cs), (38,82,o), (166,-13,o), (301,-13,cs) ); } ); width = 591; }, { associatedMasterId = m003; layerId = "35791070-3456-4186-8F4C-DCAEEFC69CEB"; name = "28 Feb 24 at 11:45"; shapes = ( { closed = 1; nodes = ( (395,-13,o), (490,19,o), (537,122,c), (402,149,l), (385,115,o), (339,107,o), (309,107,cs), (216,107,o), (179,161,o), (179,253,cs), (179,334,o), (216,400,o), (304,400,cs), (375,400,o), (410,335,o), (410,300,c), (141,300,l), (142,210,l), (553,210,l), (553,245,l), (553,415,o), (456,520,o), (302,520,cs), (167,520,o), (37,436,o), (37,256,cs), (37,82,o), (165,-13,o), (304,-13,cs) ); } ); visible = 1; width = 582; }, { associatedMasterId = m01; layerId = "DC9D73E7-764C-4C88-8E22-C9A4CAB6D2B5"; name = "26 Mar 24 at 21:50"; shapes = ( { closed = 1; nodes = ( (416,-12,o), (550,70,o), (550,254,cs), (550,440,o), (422,520,o), (293,520,cs), (168,520,o), (34,440,o), (34,254,cs), (34,70,o), (160,-12,o), (293,-12,cs) ); }, { closed = 1; nodes = ( (219,108,o), (180,164,o), (180,254,cs), (180,342,o), (220,400,o), (293,400,cs), (367,400,o), (404,342,o), (404,254,cs), (404,164,o), (366,108,o), (293,108,cs) ); }, { closed = 0; nodes = ( (293,520,l) ); } ); visible = 1; width = 572; } ); unicode = 101; }, { glyphname = eacute; kernLeft = o; lastChange = "2024-09-27 10:45:43 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (235,0); ref = acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (253,0); ref = acutecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (230,12); ref = acutecomb; } ); width = 591; } ); unicode = 233; }, { glyphname = ebreve; lastChange = "2024-09-08 00:59:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (139,0); ref = brevecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (143,0); ref = brevecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (117,12); ref = brevecomb; } ); width = 591; } ); unicode = 277; }, { glyphname = ecaron; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (151,0); ref = caroncomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (135,0); ref = caroncomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (110,12); ref = caroncomb; } ); width = 591; } ); unicode = 283; }, { glyphname = ecircumflex; kernLeft = o; lastChange = "2024-09-27 10:45:45 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (151,0); ref = circumflexcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (137,0); ref = circumflexcomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (110,12); ref = circumflexcomb; } ); width = 591; } ); unicode = 234; }, { glyphname = ecircumflexacute; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (4,0); ref = circumflexcomb_acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (6,12); ref = circumflexcomb_acutecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (110,12); ref = circumflexcomb_acutecomb; } ); width = 591; } ); unicode = 7871; }, { glyphname = ecircumflexdotbelow; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (215,-13); ref = dotbelowcomb; }, { pos = (151,0); ref = circumflexcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (212,-13); ref = dotbelowcomb; }, { pos = (137,0); ref = circumflexcomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (197,-12); ref = dotbelowcomb; }, { pos = (110,12); ref = circumflexcomb; } ); width = 591; } ); unicode = 7879; }, { glyphname = ecircumflexgrave; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (151,0); ref = circumflexcomb_gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (138,12); ref = circumflexcomb_gravecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (110,12); ref = circumflexcomb_gravecomb; } ); width = 591; } ); unicode = 7873; }, { glyphname = ecircumflexhookabove; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (151,0); ref = circumflexcomb_hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (138,12); ref = circumflexcomb_hookabovecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (110,12); ref = circumflexcomb_hookabovecomb; } ); width = 591; } ); unicode = 7875; }, { glyphname = ecircumflextilde; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (149,0); ref = circumflexcomb_tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (131,12); ref = circumflexcomb_tildecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (83,12); ref = circumflexcomb_tildecomb; } ); width = 591; } ); unicode = 7877; }, { glyphname = edieresis; kernLeft = o; lastChange = "2024-09-27 10:45:49 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (131,0); ref = dieresiscomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (126,0); ref = dieresiscomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (87,12); ref = dieresiscomb; } ); width = 591; } ); unicode = 235; }, { glyphname = edotaccent; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (217,0); ref = dotaccentcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (213,0); ref = dotaccentcomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (195,12); ref = dotaccentcomb; } ); width = 591; } ); unicode = 279; }, { glyphname = edotbelow; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (215,-13); ref = dotbelowcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (212,-13); ref = dotbelowcomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (197,-12); ref = dotbelowcomb; } ); width = 591; } ); unicode = 7865; }, { glyphname = egrave; kernLeft = o; kernRight = e; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (135,0); ref = gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (130,0); ref = gravecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (104,12); ref = gravecomb; } ); width = 591; } ); unicode = 232; }, { glyphname = ehookabove; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (248,12); ref = hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (231,12); ref = hookabovecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (231,12); ref = hookabovecomb; } ); width = 591; } ); unicode = 7867; }, { glyphname = emacron; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (143,0); ref = macroncomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (108,0); ref = macroncomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (115,12); ref = macroncomb; } ); width = 591; } ); unicode = 275; }, { glyphname = eogonek; lastChange = "2024-11-01 00:25:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = e; }, { closed = 1; nodes = ( (467,-143,o), (492,-134,o), (506,-121,c), (482,-70,l), (453,-92,o), (406,-78,o), (406,-40,cs), (406,-12,o), (417,3,o), (474,67,c), (447,86,l), (373,49,o), (343,0,o), (343,-55,cs), (343,-110,o), (387,-143,o), (441,-143,cs) ); } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { closed = 1; nodes = ( (465,-152,o), (496,-140,o), (510,-127,c), (487,-64,l), (445,-91,o), (403,-79,o), (403,-39,cs), (403,-10,o), (431,16,o), (464,51,c), (429,83,l), (361,52,o), (330,-4,o), (330,-59,cs), (330,-116,o), (376,-152,o), (429,-152,cs) ); } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { closed = 1; nodes = ( (489,-183,o), (526,-165,o), (547,-145,c), (509,-70,l), (472,-101,o), (428,-78,o), (428,-35,cs), (428,-15,o), (437,13,o), (483,60,c), (458,96,l), (361,50,o), (326,3,o), (325,-74,cs), (324,-139,o), (381,-183,o), (441,-183,cs) ); } ); width = 592; } ); unicode = 281; }, { glyphname = eopen; lastChange = "2024-10-21 03:33:22 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (445,143,l), (427,76,o), (363,38,o), (277,38,cs), (167,38,o), (116,79,o), (116,136,cs), (116,184,o), (160,240,o), (290,240,cs), (290,240,o), (348,240,o), (348,240,c), (349,294,l), (291,294,l), (168,294,o), (139,339,o), (139,375,cs), (139,423,o), (172,462,o), (273,462,cs), (341,462,o), (391,442,o), (411,403,c), (455,425,l), (422,488,o), (348,512,o), (273,512,cs), (152,512,o), (81,456,o), (81,374,cs), (81,320,o), (112,278,o), (154,265,c), (85,239,o), (58,184,o), (58,134,cs), (58,31,o), (145,-12,o), (276,-12,cs), (381,-12,o), (471,38,o), (491,128,c) ); } ); width = 543; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (421,159,l), (402,87,o), (344,64,o), (279,64,cs), (180,64,o), (141,98,o), (141,147,cs), (141,194,o), (177,239,o), (287,239,cs), (287,239,o), (340,239,o), (340,239,c), (341,312,l), (288,312,l), (192,312,o), (163,335,o), (163,371,cs), (163,398,o), (186,436,o), (278,436,cs), (321,436,o), (361,426,o), (383,387,c), (449,421,l), (430,479,o), (341,512,o), (274,512,cs), (143,512,o), (79,457,o), (79,375,cs), (79,321,o), (113,288,o), (155,275,c), (98,252,o), (57,203,o), (57,142,cs), (57,38,o), (140,-12,o), (278,-12,cs), (381,-12,o), (467,39,o), (492,139,c) ); } ); width = 545; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (404,177,l), (391,140,o), (359,108,o), (289,108,cs), (212,108,o), (184,131,o), (184,164,cs), (184,201,o), (211,221,o), (287,221,cs), (287,221,o), (338,221,o), (338,221,c), (339,309,l), (288,309,l), (238,309,o), (209,325,o), (209,354,cs), (209,381,o), (230,400,o), (283,400,cs), (330,400,o), (354,382,o), (363,358,c), (482,415,l), (463,479,o), (375,520,o), (279,520,cs), (143,520,o), (66,461,o), (66,379,cs), (66,325,o), (100,282,o), (142,269,c), (68,243,o), (38,209,o), (38,148,cs), (38,44,o), (137,-12,o), (288,-12,cs), (424,-12,o), (499,56,o), (524,149,c) ); } ); width = 569; } ); unicode = 603; }, { glyphname = etilde; layers = ( { layerId = m01; shapes = ( { ref = e; }, { pos = (122,0); ref = tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = e; }, { pos = (124,0); ref = tildecomb; } ); width = 569; }, { layerId = m003; shapes = ( { ref = e; }, { pos = (83,12); ref = tildecomb; } ); width = 591; } ); unicode = 7869; }, { glyphname = schwa; lastChange = "2024-09-05 12:30:51 +0000"; layers = ( { layerId = m01; shapes = ( { angle = 180; pos = (568,500); ref = e; } ); width = 568; }, { layerId = m002; shapes = ( { angle = 180; pos = (569,500); ref = e; } ); width = 569; }, { layerId = m003; shapes = ( { angle = 180; pos = (591,508); ref = e; } ); width = 591; } ); unicode = 601; }, { glyphname = f; lastChange = "2025-01-01 06:24:31 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (200,0,l), (200,450,l), (327,450,l), (327,500,l), (200,500,l), (200,575,ls), (200,648,o), (228,666,o), (276,666,cs), (289,666,o), (306,665,o), (322,662,c), (322,712,l), (305,717,o), (283,720,o), (267,720,cs), (182,720,o), (144,669,o), (144,576,cs), (144,500,l), (52,500,l), (52,450,l), (144,450,l), (144,0,l) ); } ); width = 346; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (227,0,l), (227,424,l), (355,424,l), (355,500,l), (227,500,l), (227,575,ls), (227,629,o), (254,648,o), (303,648,cs), (316,648,o), (334,647,o), (350,644,c), (350,712,l), (333,717,o), (310,720,o), (294,720,cs), (185,720,o), (143,669,o), (143,576,cs), (143,500,l), (47,500,l), (47,424,l), (143,424,l), (143,0,l) ); } ); width = 375; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (272,0,l), (272,388,l), (388,388,l), (388,508,l), (272,508,l), (272,539,ls), (272,576,o), (287,604,o), (336,604,cs), (349,604,o), (366,603,o), (382,600,c), (383,712,l), (366,717,o), (331,720,o), (296,720,cs), (213,720,o), (135,686,o), (133,576,cs), (132,508,l), (32,508,l), (32,388,l), (132,388,l), (132,0,l) ); } ); width = 400; } ); unicode = 102; }, { glyphname = g; kernLeft = g; lastChange = "2025-01-08 14:11:44 +0000"; layers = ( { anchors = ( { name = top; pos = (287,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (443,-103,o), (387,-176,o), (273,-176,cs), (172,-176,o), (126,-109,o), (111,-81,c), (61,-115,l), (89,-171,o), (149,-230,o), (273,-230,cs), (398,-230,o), (499,-175,o), (499,13,c), (499,500,l), (442,500,l), (442,402,l), (422,457,o), (353,512,o), (268,512,cs), (151,512,o), (56,419,o), (56,250,cs), (56,86,o), (149,-12,o), (268,-12,cs), (334,-12,o), (420,27,o), (443,96,c), (443,13,ls) ); }, { closed = 1; nodes = ( (181,38,o), (114,124,o), (114,252,cs), (114,377,o), (167,462,o), (280,462,cs), (359,462,o), (442,392,o), (443,250,cs), (442,112,o), (376,38,o), (280,38,cs) ); } ); width = 569; }, { anchors = ( { name = top; pos = (292,512); } ); guides = ( { angle = 270; pos = (52,419); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (437,-96,o), (394,-156,o), (284,-156,cs), (217,-156,o), (161,-117,o), (136,-60,c), (64,-107,l), (100,-195,o), (194,-229,o), (281,-230,cs), (413,-232,o), (521,-171,o), (521,17,cs), (521,500,l), (437,500,l), (437,402,l), (418,457,o), (366,512,o), (278,512,cs), (139,512,o), (52,419,o), (52,250,cs), (52,86,o), (139,-12,o), (273,-12,cs), (342,-12,o), (415,27,o), (437,96,c), (437,17,ls) ); }, { closed = 1; nodes = ( (185,64,o), (137,148,o), (137,252,cs), (137,356,o), (185,437,o), (283,437,cs), (382,437,o), (436,360,o), (436,250,cs), (436,148,o), (382,64,o), (286,64,cs) ); } ); width = 607; }, { anchors = ( { name = top; pos = (309,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (425,-80,o), (373,-123,o), (288,-123,cs), (221,-123,o), (168,-76,o), (146,-29,c), (38,-102,l), (71,-180,o), (164,-237,o), (285,-237,cs), (466,-237,o), (561,-142,o), (561,0,cs), (562,508,l), (428,508,l), (428,419,l), (401,474,o), (354,520,o), (270,520,cs), (139,520,o), (48,421,o), (48,253,cs), (48,88,o), (134,-12,o), (265,-12,cs), (348,-12,o), (401,25,o), (425,79,c), (425,0,ls) ); }, { closed = 1; nodes = ( (240,95,o), (194,157,o), (194,253,cs), (194,340,o), (240,410,o), (312,410,cs), (380,410,o), (426,341,o), (426,253,cs), (426,158,o), (380,97,o), (312,96,cs) ); } ); width = 632; } ); unicode = 103; }, { glyphname = gbreve; lastChange = "2025-01-08 14:11:44 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g; }, { pos = (141,0); ref = brevecomb; } ); width = 569; }, { layerId = m002; shapes = ( { ref = g; }, { pos = (148,0); ref = brevecomb; } ); width = 607; }, { layerId = m003; shapes = ( { ref = g; }, { pos = (135,12); ref = brevecomb; } ); width = 632; } ); unicode = 287; }, { glyphname = gcircumflex; lastChange = "2025-01-08 14:11:44 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g; }, { pos = (153,0); ref = circumflexcomb; } ); width = 569; }, { layerId = m002; shapes = ( { ref = g; }, { pos = (142,0); ref = circumflexcomb; } ); width = 607; }, { layerId = m003; shapes = ( { ref = g; }, { pos = (128,12); ref = circumflexcomb; } ); width = 632; } ); unicode = 285; }, { glyphname = gcommaaccent; lastChange = "2025-01-08 14:11:44 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g; }, { pos = (226,0); ref = commaturnedabovecomb; } ); width = 569; }, { layerId = m002; shapes = ( { ref = g; }, { pos = (206,0); ref = commaturnedabovecomb; } ); width = 607; }, { layerId = m003; shapes = ( { ref = g; }, { pos = (219,12); ref = commaturnedabovecomb; } ); width = 632; } ); unicode = 291; }, { glyphname = gdotaccent; lastChange = "2025-01-08 14:11:44 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g; }, { pos = (219,0); ref = dotaccentcomb; } ); width = 569; }, { layerId = m002; shapes = ( { ref = g; }, { pos = (218,0); ref = dotaccentcomb; } ); width = 607; }, { layerId = m003; shapes = ( { ref = g; }, { pos = (213,12); ref = dotaccentcomb; } ); width = 632; } ); unicode = 289; }, { glyphname = gmacron; lastChange = "2025-01-08 14:11:44 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g; }, { pos = (145,0); ref = macroncomb; } ); width = 569; }, { layerId = m002; shapes = ( { ref = g; }, { pos = (113,0); ref = macroncomb; } ); width = 607; }, { layerId = m003; shapes = ( { ref = g; }, { pos = (133,12); ref = macroncomb; } ); width = 632; } ); unicode = 7713; }, { glyphname = h; lastChange = "2025-01-08 15:04:12 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (152,0,l), (152,270,ls), (152,366,o), (207,462,o), (306,462,cs), (387,462,o), (448,411,o), (448,310,cs), (448,0,l), (504,0,l), (504,322,ls), (504,442,o), (419,512,o), (322,512,cs), (203,512,o), (161,431,o), (152,396,c), (152,700,l), (96,700,l), (96,0,l) ); } ); width = 592; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (164,0,l), (164,270,ls), (164,366,o), (211,436,o), (303,436,cs), (370,436,o), (415,403,o), (415,316,cs), (415,0,l), (499,0,l), (499,328,ls), (499,448,o), (428,512,o), (331,512,cs), (219,512,o), (173,441,o), (164,406,c), (164,700,l), (80,700,l), (80,0,l) ); } ); width = 579; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (220,0,l), (220,239,ls), (220,347,o), (248,408,o), (331,408,cs), (388,408,o), (416,370,o), (416,296,cs), (416,0,l), (556,0,l), (556,315,ls), (556,435,o), (498,520,o), (364,520,cs), (296,520,o), (241,479,o), (220,430,c), (220,700,l), (80,700,l), (80,0,l) ); } ); width = 624; } ); unicode = 104; }, { glyphname = hbar; lastChange = "2024-09-20 10:41:52 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (77,0); ref = h; }, { closed = 1; nodes = ( (96,562,l), (362,562,l), (362,609,l), (96,609,l) ); } ); width = 669; }, { layerId = m002; shapes = ( { pos = (89,0); ref = h; }, { closed = 1; nodes = ( (92,564,l), (401,564,l), (401,632,l), (92,632,l) ); } ); width = 686; }, { layerId = m003; shapes = ( { pos = (84,0); ref = h; }, { closed = 1; nodes = ( (80,540,l), (423,540,l), (423,640,l), (80,640,l) ); } ); width = 712; } ); unicode = 295; }, { glyphname = hcircumflex; lastChange = "2024-10-20 23:50:18 +0000"; layers = ( { layerId = m01; shapes = ( { ref = h; }, { pos = (198,0); ref = circumflexcomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = h; }, { pos = (207,0); ref = circumflexcomb; } ); width = 579; }, { layerId = m003; shapes = ( { ref = h; }, { pos = (264,22); ref = circumflexcomb; } ); width = 624; } ); unicode = 293; }, { glyphname = i; kernLeft = i; kernRight = i; lastChange = "2025-01-01 06:27:21 +0000"; layers = ( { guides = ( { pos = (-47,680); }, { pos = (-42,585); }, { pos = (-47,632); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (163,585,o), (184,607,o), (184,632,cs), (184,658,o), (163,680,o), (138,680,cs), (112,680,o), (90,658,o), (90,632,cs), (90,607,o), (112,585,o), (138,585,cs) ); }, { closed = 1; nodes = ( (165,0,l), (165,500,l), (109,500,l), (109,0,l) ); } ); width = 274; }, { guides = ( { pos = (-27,700); }, { pos = (-26,590); }, { pos = (-27,645); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (157,590,o), (181,615,o), (181,645,cs), (181,675,o), (157,700,o), (127,700,cs), (97,700,o), (72,675,o), (72,645,cs), (72,615,o), (97,590,o), (127,590,cs) ); }, { closed = 1; nodes = ( (169,0,l), (169,500,l), (85,500,l), (85,0,l) ); } ); width = 253; }, { guides = ( { pos = (15,559); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (182,559,o), (218,598,o), (218,644,cs), (218,690,o), (182,729,o), (134,729,cs), (89,729,o), (50,690,o), (50,644,cs), (50,598,o), (89,559,o), (134,559,cs) ); }, { closed = 1; nodes = ( (204,0,l), (204,508,l), (64,508,l), (64,0,l) ); } ); width = 268; } ); unicode = 105; }, { glyphname = idotless; lastChange = "2024-09-03 03:36:43 +0000"; layers = ( { anchors = ( { name = bottom; pos = (117,0); }, { name = top; pos = (118,500); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (146,0,l), (146,500,l), (90,500,l), (90,0,l) ); } ); width = 236; }, { anchors = ( { name = bottom; pos = (114,0); }, { name = top; pos = (113,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (156,0,l), (156,500,l), (72,500,l), (72,0,l) ); } ); width = 228; }, { anchors = ( { name = bottom; pos = (120,0); }, { name = top; pos = (119,508); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (190,0,l), (190,508,l), (50,508,l), (50,0,l) ); } ); width = 240; } ); unicode = 305; }, { glyphname = iacute; lastChange = "2025-01-01 06:47:48 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (68,-12); ref = acutecomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (79,-12); ref = acutecomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (58,0); ref = acutecomb; } ); width = 240; } ); unicode = 237; }, { glyphname = ibreve; lastChange = "2024-09-08 01:05:42 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (-28,-12); ref = brevecomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (-31,-12); ref = brevecomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (-55,0); ref = brevecomb; } ); width = 240; } ); unicode = 301; }, { glyphname = icircumflex; lastChange = "2024-11-22 04:44:59 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (-16,-12); ref = circumflexcomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (-37,-12); ref = circumflexcomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (-62,0); ref = circumflexcomb; } ); width = 240; } ); unicode = 238; }, { glyphname = idieresis; lastChange = "2024-11-22 04:45:10 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (-36,-12); ref = dieresiscomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (-48,-12); ref = dieresiscomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (-85,0); ref = dieresiscomb; } ); width = 240; } ); unicode = 239; }, { glyphname = idotaccent; lastChange = "2024-09-03 03:38:57 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (50,-12); ref = dotaccentcomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (39,-12); ref = dotaccentcomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (23,0); ref = dotaccentcomb; } ); width = 240; } ); }, { glyphname = idotbelow; lastChange = "2024-10-31 00:46:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = i; }, { pos = (67,0); ref = dotbelowcomb; } ); width = 274; }, { layerId = m002; shapes = ( { ref = i; }, { pos = (53,0); ref = dotbelowcomb; } ); width = 253; }, { layerId = m003; shapes = ( { ref = i; }, { pos = (36,0); ref = dotbelowcomb; } ); width = 268; } ); unicode = 7883; }, { glyphname = igrave; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (-32,-12); ref = gravecomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (-44,-12); ref = gravecomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (-68,0); ref = gravecomb; } ); width = 240; } ); unicode = 236; }, { glyphname = ihookabove; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (81,0); ref = hookabovecomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (57,0); ref = hookabovecomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (59,0); ref = hookabovecomb; } ); width = 240; } ); unicode = 7881; }, { glyphname = imacron; lastChange = "2024-09-03 03:38:57 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (-24,-12); ref = macroncomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (-66,-12); ref = macroncomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (-57,0); ref = macroncomb; } ); width = 240; } ); unicode = 299; }, { glyphname = iogonek; lastChange = "2024-09-13 00:56:47 +0000"; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (50,-12); ref = dotaccentcomb; }, { pos = (-13,5); ref = ogonekcomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (39,-12); ref = dotaccentcomb; }, { pos = (-7,0); ref = ogonekcomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (23,0); ref = dotaccentcomb; }, { pos = (15,-1); ref = ogonekcomb; } ); width = 240; } ); unicode = 303; }, { glyphname = itilde; layers = ( { layerId = m01; shapes = ( { ref = idotless; }, { pos = (-45,-12); ref = tildecomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = idotless; }, { pos = (-50,-12); ref = tildecomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = idotless; }, { pos = (-89,0); ref = tildecomb; } ); width = 240; } ); unicode = 297; }, { glyphname = ij; layers = ( { layerId = m01; shapes = ( { ref = i; }, { pos = (254,0); ref = j; } ); width = 532; }, { layerId = m002; shapes = ( { ref = i; }, { pos = (223,0); ref = j; } ); width = 512; }, { layerId = m003; shapes = ( { ref = i; }, { pos = (268,0); ref = j; } ); width = 552; } ); unicode = 307; }, { glyphname = j; lastChange = "2025-01-01 06:45:42 +0000"; layers = ( { guides = ( { pos = (-37,680); }, { pos = (-32,585); }, { pos = (-37,632); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (140,-232,o), (178,-181,o), (178,-88,cs), (179,500,l), (123,500,l), (122,-87,ls), (120,-160,o), (94,-178,o), (46,-178,cs), (33,-178,o), (16,-177,o), (0,-174,c), (0,-224,l), (17,-229,o), (39,-232,o), (55,-232,cs) ); }, { closed = 1; nodes = ( (173,585,o), (194,607,o), (194,632,cs), (194,658,o), (173,680,o), (148,680,cs), (122,680,o), (100,658,o), (100,632,cs), (100,607,o), (122,585,o), (148,585,cs) ); } ); width = 278; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (167,-230,o), (208,-179,o), (208,-86,cs), (209,500,l), (125,500,l), (125,-85,ls), (125,-139,o), (98,-158,o), (49,-158,cs), (36,-158,o), (18,-157,o), (2,-154,c), (2,-222,l), (19,-227,o), (42,-230,o), (58,-230,cs) ); }, { closed = 1; nodes = ( (195,590,o), (219,615,o), (219,645,cs), (219,675,o), (195,700,o), (165,700,cs), (135,700,o), (110,675,o), (110,645,cs), (110,615,o), (135,590,o), (165,590,cs) ); } ); width = 289; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (159,-230,o), (219,-169,o), (219,-76,cs), (220,508,l), (80,508,l), (80,-28,ls), (80,-66,o), (58,-90,o), (22,-90,cs), (9,-90,o), (-23,-89,o), (-39,-86,c), (-40,-222,l), (-23,-227,o), (15,-230,o), (31,-230,cs) ); }, { closed = 1; nodes = ( (198,559,o), (234,598,o), (234,644,cs), (234,690,o), (198,729,o), (150,729,cs), (105,729,o), (66,690,o), (66,644,cs), (66,598,o), (105,559,o), (150,559,cs) ); } ); width = 284; } ); unicode = 106; }, { glyphname = jdotless; lastChange = "2024-09-03 07:18:16 +0000"; layers = ( { anchors = ( { name = top; pos = (150,500); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (140,-232,o), (178,-181,o), (178,-88,cs), (179,500,l), (123,500,l), (122,-87,ls), (120,-160,o), (94,-178,o), (46,-178,cs), (33,-178,o), (16,-177,o), (0,-174,c), (0,-224,l), (17,-229,o), (39,-232,o), (55,-232,cs) ); } ); width = 265; }, { anchors = ( { name = top; pos = (166,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (167,-230,o), (208,-179,o), (208,-86,cs), (209,500,l), (125,500,l), (125,-85,ls), (125,-139,o), (98,-158,o), (49,-158,cs), (36,-158,o), (18,-157,o), (2,-154,c), (2,-222,l), (19,-227,o), (42,-230,o), (58,-230,cs) ); } ); width = 279; }, { anchors = ( { name = top; pos = (150,508); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (159,-230,o), (219,-169,o), (219,-76,cs), (220,508,l), (80,508,l), (80,-28,ls), (80,-66,o), (58,-90,o), (22,-90,cs), (9,-90,o), (-23,-89,o), (-39,-86,c), (-40,-222,l), (-23,-227,o), (15,-230,o), (31,-230,cs) ); } ); width = 270; } ); unicode = 567; }, { glyphname = jacute; lastChange = "2024-09-03 07:18:27 +0000"; layers = ( { layerId = m01; shapes = ( { ref = jdotless; }, { pos = (100,-12); ref = acutecomb; } ); width = 265; }, { layerId = m002; shapes = ( { ref = jdotless; }, { pos = (132,-12); ref = acutecomb; } ); width = 279; }, { layerId = m003; shapes = ( { ref = jdotless; }, { pos = (89,0); ref = acutecomb; } ); width = 270; } ); }, { glyphname = jcircumflex; layers = ( { layerId = m01; shapes = ( { ref = jdotless; }, { pos = (16,-12); ref = circumflexcomb; } ); width = 265; }, { layerId = m002; shapes = ( { ref = jdotless; }, { pos = (16,-12); ref = circumflexcomb; } ); width = 279; }, { layerId = m003; shapes = ( { ref = jdotless; }, { pos = (-31,0); ref = circumflexcomb; } ); width = 270; } ); unicode = 309; }, { glyphname = k; lastChange = "2025-01-01 10:05:42 +0000"; layers = ( { anchors = ( { name = bottom; pos = (261,0); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (243,291,l), (261,301,l), (452,500,l), (382,500,l), (107,219,l), (107,145,l) ); }, { closed = 1; nodes = ( (152,0,l), (152,700,l), (96,700,l), (96,0,l) ); }, { closed = 1; nodes = ( (468,0,l), (267,331,l), (229,294,l), (403,0,l) ); } ); width = 483; }, { anchors = ( { name = bottom; pos = (283,0); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (267,272,l), (291,288,l), (499,500,l), (395,500,l), (115,219,l), (115,120,l) ); }, { closed = 1; nodes = ( (176,0,l), (176,700,l), (92,700,l), (92,0,l) ); }, { closed = 1; nodes = ( (515,0,l), (311,322,l), (249,269,l), (413,0,l) ); } ); width = 525; }, { anchors = ( { name = bottom; pos = (315,0); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (311,241,l), (335,251,l), (570,508,l), (392,508,l), (102,210,l), (177,116,l) ); }, { closed = 1; nodes = ( (220,0,l), (220,712,l), (80,711,l), (80,-1,l) ); }, { closed = 1; nodes = ( (588,0,l), (367,351,l), (245,280,l), (420,0,l) ); } ); width = 588; } ); unicode = 107; }, { glyphname = kcommaaccent; layers = ( { layerId = m01; shapes = ( { ref = k; }, { pos = (200,12); ref = commaaccentcomb; } ); width = 483; }, { layerId = m002; shapes = ( { ref = k; }, { pos = (206,12); ref = commaaccentcomb; } ); width = 525; }, { layerId = m003; shapes = ( { ref = k; }, { pos = (220,1); ref = commaaccentcomb; } ); width = 588; } ); unicode = 311; }, { glyphname = l; lastChange = "2025-01-01 06:27:30 +0000"; layers = ( { anchors = ( { name = bottom; pos = (118,0); }, { name = top; pos = (119,700); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (146,0,l), (146,700,l), (90,700,l), (90,0,l) ); } ); width = 236; }, { anchors = ( { name = bottom; pos = (113,0); }, { name = top; pos = (113,700); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (156,0,l), (156,700,l), (72,700,l), (72,0,l) ); } ); width = 228; }, { anchors = ( { name = bottom; pos = (148,0); }, { name = top; pos = (149,700); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (218,0,l), (218,700,l), (78,700,l), (78,0,l) ); } ); width = 296; } ); unicode = 108; }, { glyphname = lacute; lastChange = "2024-09-05 12:03:37 +0000"; layers = ( { layerId = m01; shapes = ( { ref = l; }, { pos = (69,188); ref = acutecomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = l; }, { pos = (79,188); ref = acutecomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = l; }, { pos = (88,192); ref = acutecomb; } ); width = 296; } ); unicode = 314; }, { glyphname = lcaron; lastChange = "2025-01-01 06:47:35 +0000"; layers = ( { layerId = m01; shapes = ( { ref = l; }, { closed = 1; nodes = ( (319,700,l), (226,700,l), (213,582,l), (263,582,l) ); } ); width = 319; }, { layerId = m002; shapes = ( { ref = l; }, { closed = 1; nodes = ( (343,700,l), (233,700,l), (222,563,l), (294,563,l) ); } ); width = 343; }, { layerId = m003; shapes = ( { ref = l; }, { closed = 1; nodes = ( (418,700,l), (288,700,l), (269,530,l), (364,530,l) ); } ); width = 418; } ); unicode = 318; }, { glyphname = lcommaaccent; lastChange = "2024-09-09 01:17:11 +0000"; layers = ( { layerId = m01; shapes = ( { ref = l; }, { pos = (57,12); ref = commaaccentcomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = l; }, { pos = (36,12); ref = commaaccentcomb; } ); width = 228; }, { layerId = m003; shapes = ( { ref = l; }, { pos = (53,1); ref = commaaccentcomb; } ); width = 296; } ); unicode = 316; }, { glyphname = ldot; lastChange = "2025-01-01 08:53:17 +0000"; layers = ( { layerId = m01; shapes = ( { ref = l; }, { closed = 1; nodes = ( (322,303,o), (343,325,o), (343,349,cs), (343,375,o), (322,397,o), (298,397,cs), (272,397,o), (250,375,o), (250,349,cs), (250,325,o), (272,303,o), (298,303,cs) ); } ); width = 369; }, { layerId = m002; shapes = ( { ref = l; }, { closed = 1; nodes = ( (333,285,o), (362,315,o), (362,350,cs), (362,386,o), (333,416,o), (298,416,cs), (262,416,o), (232,386,o), (232,350,cs), (232,315,o), (262,285,o), (298,285,cs) ); } ); width = 382; }, { layerId = m003; shapes = ( { ref = l; }, { closed = 1; nodes = ( (422,262,o), (463,302,o), (463,352,cs), (463,400,o), (422,439,o), (374,439,cs), (325,439,o), (284,400,o), (284,352,cs), (284,302,o), (325,262,o), (374,262,cs) ); } ); width = 467; } ); unicode = 320; }, { glyphname = ldotbelow; lastChange = "2024-09-09 02:09:53 +0000"; layers = ( { layerId = m003; shapes = ( { ref = l; }, { pos = (54,1); ref = dotbelowcomb; } ); width = 296; }, { layerId = m01; shapes = ( { ref = l; }, { pos = (48,0); ref = dotbelowcomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = l; }, { pos = (38,0); ref = dotbelowcomb; } ); width = 228; } ); unicode = 7735; }, { glyphname = lmacronbelow; lastChange = "2024-09-09 02:09:53 +0000"; layers = ( { layerId = m003; shapes = ( { ref = l; }, { pos = (-32,1); ref = macronbelowcomb; } ); width = 296; }, { layerId = m01; shapes = ( { ref = l; }, { pos = (-24,12); ref = macronbelowcomb; } ); width = 236; }, { layerId = m002; shapes = ( { ref = l; }, { pos = (-47,12); ref = macronbelowcomb; } ); width = 228; } ); unicode = 7739; }, { glyphname = lslash; lastChange = "2025-01-01 06:46:51 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (13,0); ref = l; }, { closed = 1; nodes = ( (284,423,l), (253,468,l), (-10,284,l), (20,238,l) ); } ); width = 294; }, { layerId = m002; shapes = ( { pos = (43,0); ref = l; }, { closed = 1; nodes = ( (321,420,l), (278,480,l), (0,286,l), (42,226,l) ); } ); width = 331; }, { layerId = m003; shapes = ( { pos = (49,0); ref = l; }, { closed = 1; nodes = ( (407,432,l), (339,518,l), (-12,278,l), (55,190,l) ); } ); width = 399; } ); unicode = 322; }, { glyphname = m; kernLeft = n; kernRight = n; lastChange = "2025-01-01 06:27:35 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (152,0,l), (152,270,ls), (152,366,o), (207,462,o), (306,462,cs), (387,462,o), (448,411,o), (448,310,cs), (448,0,l), (504,0,l), (504,322,ls), (504,442,o), (419,512,o), (322,512,cs), (203,512,o), (161,431,o), (152,396,c), (152,500,l), (96,500,l), (96,0,l) ); }, { closed = 1; nodes = ( (856,0,l), (856,322,ls), (856,442,o), (771,512,o), (674,512,cs), (555,512,o), (502,414,o), (493,379,c), (504,270,l), (504,373,o), (559,462,o), (658,462,cs), (739,462,o), (800,411,o), (800,310,cs), (800,0,l) ); } ); width = 944; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (176,0,l), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (427,403,o), (427,316,cs), (427,0,l), (511,0,l), (511,328,ls), (511,448,o), (440,512,o), (343,512,cs), (231,512,o), (185,441,o), (176,406,c), (176,500,l), (92,500,l), (92,0,l) ); }, { closed = 1; nodes = ( (846,0,l), (846,328,ls), (846,448,o), (775,512,o), (678,512,cs), (566,512,o), (510,432,o), (501,397,c), (511,270,l), (511,366,o), (558,436,o), (650,436,cs), (717,436,o), (762,403,o), (762,316,cs), (762,0,l) ); } ); width = 934; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (220,0,l), (220,239,ls), (220,347,o), (252,408,o), (335,408,cs), (392,408,o), (421,373,o), (421,296,cs), (421,0,l), (561,0,l), (561,315,ls), (561,435,o), (498,520,o), (369,520,cs), (301,520,o), (241,479,o), (220,430,c), (220,508,l), (80,508,l), (80,0,l) ); }, { closed = 1; nodes = ( (902,0,l), (902,315,ls), (902,435,o), (839,520,o), (710,520,cs), (646,520,o), (573,496,o), (545,410,c), (561,239,l), (561,347,o), (593,408,o), (676,408,cs), (733,408,o), (762,373,o), (762,296,cs), (762,0,l) ); } ); width = 974; }, { associatedMasterId = m01; layerId = "9734DA5E-3835-4262-844E-572FF4DD55DE"; name = "5 Apr 24 at 07:53"; shapes = ( { closed = 1; nodes = ( (152,0,l), (152,270,ls), (152,366,o), (200,458,o), (299,458,cs), (380,458,o), (448,411,o), (448,310,cs), (448,0,l), (504,0,l), (504,322,ls), (504,442,o), (424,512,o), (327,512,cs), (208,512,o), (161,431,o), (152,396,c), (152,500,l), (96,500,l), (96,0,l) ); }, { closed = 1; nodes = ( (504,270,l), (504,366,o), (552,458,o), (651,458,cs), (732,458,o), (800,411,o), (800,310,cs), (800,0,l), (856,0,l), (856,322,ls), (856,442,o), (776,512,o), (679,512,cs), (560,512,o), (513,431,o), (504,396,c) ); } ); width = 926; } ); unicode = 109; }, { glyphname = n; kernLeft = n; kernRight = n; lastChange = "2024-12-31 22:40:41 +0000"; layers = ( { anchors = ( { name = bottom; pos = (307,0); }, { name = top; pos = (307,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (152,0,l), (152,270,ls), (152,366,o), (207,462,o), (306,462,cs), (387,462,o), (448,411,o), (448,310,cs), (448,0,l), (504,0,l), (504,322,ls), (504,442,o), (419,512,o), (322,512,cs), (203,512,o), (161,431,o), (152,396,c), (152,500,l), (96,500,l), (96,0,l) ); } ); width = 592; }, { anchors = ( { name = bottom; pos = (307,0); }, { name = top; pos = (307,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (176,0,l), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (427,403,o), (427,316,cs), (427,0,l), (511,0,l), (511,328,ls), (511,448,o), (440,512,o), (343,512,cs), (231,512,o), (185,441,o), (176,406,c), (176,500,l), (92,500,l), (92,0,l) ); } ); width = 587; }, { anchors = ( { name = bottom; pos = (326,0); }, { name = top; pos = (331,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (220,0,l), (220,239,ls), (220,347,o), (248,408,o), (331,408,cs), (388,408,o), (416,370,o), (416,296,cs), (416,0,l), (556,0,l), (556,315,ls), (556,435,o), (498,520,o), (364,520,cs), (296,520,o), (241,479,o), (220,430,c), (220,508,l), (80,508,l), (80,0,l) ); } ); width = 624; } ); unicode = 110; }, { glyphname = nacute; lastChange = "2024-09-03 02:02:20 +0000"; layers = ( { layerId = m01; shapes = ( { ref = n; }, { pos = (257,0); ref = acutecomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = n; }, { pos = (273,0); ref = acutecomb; } ); width = 587; }, { layerId = m003; shapes = ( { ref = n; }, { pos = (270,12); ref = acutecomb; } ); width = 624; } ); unicode = 324; }, { glyphname = ncaron; layers = ( { layerId = m01; shapes = ( { ref = n; }, { pos = (173,0); ref = caroncomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = n; }, { pos = (155,0); ref = caroncomb; } ); width = 587; }, { layerId = m003; shapes = ( { ref = n; }, { pos = (150,12); ref = caroncomb; } ); width = 624; } ); unicode = 328; }, { glyphname = ncommaaccent; layers = ( { layerId = m01; shapes = ( { ref = n; }, { pos = (246,12); ref = commaaccentcomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = n; }, { pos = (230,12); ref = commaaccentcomb; } ); width = 587; }, { layerId = m003; shapes = ( { ref = n; }, { pos = (231,1); ref = commaaccentcomb; } ); width = 624; } ); unicode = 326; }, { glyphname = ndotbelow; lastChange = "2024-09-09 02:09:53 +0000"; layers = ( { layerId = m003; shapes = ( { ref = n; }, { pos = (232,1); ref = dotbelowcomb; } ); width = 624; }, { layerId = m01; shapes = ( { ref = n; }, { pos = (237,0); ref = dotbelowcomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = n; }, { pos = (232,0); ref = dotbelowcomb; } ); width = 587; } ); unicode = 7751; }, { glyphname = nhookleft; kernLeft = j; kernRight = n; lastChange = "2025-01-01 10:05:03 +0000"; layers = ( { guides = ( { pos = (184,-165); } ); layerId = m003; shapes = ( { pos = (30,0); ref = n; }, { closed = 1; nodes = ( (189,-165,o), (250,-104,o), (250,-11,cs), (250,70,l), (110,70,l), (110,37,ls), (110,-1,o), (88,-25,o), (52,-25,cs), (39,-25,o), (7,-24,o), (-9,-21,c), (-10,-157,l), (7,-162,o), (45,-165,o), (61,-165,cs) ); } ); width = 654; }, { guides = ( { pos = (552,-133); } ); layerId = m01; shapes = ( { pos = (7,0); ref = n; }, { closed = 1; nodes = ( (120,-133,o), (159,-88,o), (159,5,cs), (159,11,l), (103,11,l), (103,6,ls), (103,-67,o), (74,-79,o), (26,-79,cs), (13,-79,o), (-4,-78,o), (-20,-75,c), (-20,-125,l), (-3,-130,o), (19,-133,o), (35,-133,cs) ); } ); width = 599; }, { guides = ( { pos = (311,-142); } ); layerId = m002; shapes = ( { pos = (21,0); ref = n; }, { closed = 1; nodes = ( (155,-142,o), (197,-91,o), (197,2,cs), (197,90,l), (113,90,l), (113,3,ls), (113,-51,o), (86,-70,o), (37,-70,cs), (24,-70,o), (6,-69,o), (-10,-66,c), (-10,-134,l), (7,-139,o), (30,-142,o), (46,-142,cs) ); } ); width = 608; } ); unicode = 626; }, { glyphname = nhookretroflex; lastChange = "2025-01-01 10:08:14 +0000"; layers = ( { guides = ( { pos = (162,-165); } ); layerId = m003; shapes = ( { pos = (8,0); ref = n; }, { closed = 1; nodes = ( (629,-165,o), (667,-162,o), (684,-157,c), (683,-21,l), (667,-24,o), (635,-25,o), (622,-25,cs), (586,-25,o), (564,-1,o), (564,37,cs), (564,57,l), (424,57,l), (424,-5,ls), (424,-98,o), (485,-165,o), (613,-165,cs) ); } ); width = 674; }, { guides = ( { pos = (545,-133); } ); layerId = m01; shapes = ( { ref = n; }, { closed = 1; nodes = ( (588,-133,o), (610,-130,o), (627,-125,c), (627,-75,l), (611,-78,o), (594,-79,o), (581,-79,cs), (533,-79,o), (504,-61,o), (504,12,cs), (504,31,l), (448,31,l), (448,11,ls), (448,-82,o), (487,-133,o), (572,-133,cs) ); } ); width = 583; }, { guides = ( { pos = (290,-142); } ); layerId = m002; shapes = ( { ref = n; }, { closed = 1; nodes = ( (594,-142,o), (617,-139,o), (634,-134,c), (634,-66,l), (618,-69,o), (600,-70,o), (587,-70,cs), (538,-70,o), (511,-51,o), (511,3,cs), (511,90,l), (427,90,l), (427,2,ls), (427,-91,o), (469,-142,o), (578,-142,cs) ); } ); width = 589; } ); unicode = 627; }, { glyphname = nmacronbelow; lastChange = "2024-09-09 02:09:53 +0000"; layers = ( { layerId = m003; shapes = ( { ref = n; }, { pos = (146,1); ref = macronbelowcomb; } ); width = 624; }, { layerId = m01; shapes = ( { ref = n; }, { pos = (165,12); ref = macronbelowcomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = n; }, { pos = (147,12); ref = macronbelowcomb; } ); width = 587; } ); unicode = 7753; }, { glyphname = ntilde; layers = ( { layerId = m01; shapes = ( { ref = n; }, { pos = (144,0); ref = tildecomb; } ); width = 592; }, { layerId = m002; shapes = ( { ref = n; }, { pos = (144,0); ref = tildecomb; } ); width = 587; }, { layerId = m003; shapes = ( { ref = n; }, { pos = (123,12); ref = tildecomb; } ); width = 624; } ); unicode = 241; }, { glyphname = eng; kernRight = n; lastChange = "2025-01-01 10:08:25 +0000"; layers = ( { guides = ( { pos = (154,-165); } ); layerId = m003; shapes = ( { ref = n; }, { closed = 1; nodes = ( (495,-165,o), (554,-104,o), (555,-11,cs), (556,70,l), (416,70,l), (416,37,ls), (416,-1,o), (394,-25,o), (358,-25,cs), (345,-25,o), (313,-24,o), (297,-21,c), (296,-157,l), (313,-162,o), (351,-165,o), (367,-165,cs) ); } ); width = 624; }, { guides = ( { pos = (545,-133); } ); layerId = m01; shapes = ( { ref = n; }, { closed = 1; nodes = ( (466,-133,o), (504,-89,o), (504,4,cs), (504,56,l), (448,56,l), (448,10,ls), (448,-63,o), (420,-79,o), (372,-79,cs), (359,-79,o), (342,-78,o), (326,-75,c), (326,-125,l), (343,-130,o), (365,-133,o), (381,-133,cs) ); } ); width = 582; }, { guides = ( { pos = (290,-142); } ); layerId = m002; shapes = ( { ref = n; }, { closed = 1; nodes = ( (469,-142,o), (511,-91,o), (511,2,cs), (511,90,l), (427,90,l), (427,3,ls), (427,-51,o), (400,-70,o), (351,-70,cs), (338,-70,o), (320,-69,o), (304,-66,c), (304,-134,l), (321,-139,o), (344,-142,o), (360,-142,cs) ); } ); width = 587; } ); unicode = 331; }, { glyphname = o; kernLeft = o; kernRight = o; lastChange = "2025-01-01 03:19:00 +0000"; layers = ( { anchors = ( { name = bottom; pos = (284,-12); }, { name = top; pos = (284,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (408,-12,o), (512,78,o), (512,250,cs), (512,422,o), (408,512,o), (284,512,cs), (160,512,o), (56,422,o), (56,250,cs), (56,78,o), (160,-12,o), (284,-12,cs) ); }, { closed = 1; nodes = ( (173,38,o), (114,121,o), (114,250,cs), (114,379,o), (173,462,o), (284,462,cs), (395,462,o), (454,379,o), (454,250,cs), (454,121,o), (395,38,o), (284,38,cs) ); } ); width = 568; }, { anchors = ( { name = bottom; pos = (290,-12); }, { name = top; pos = (290,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (414,-12,o), (524,78,o), (524,250,cs), (524,422,o), (420,512,o), (290,512,cs), (166,512,o), (56,422,o), (56,250,cs), (56,78,o), (160,-12,o), (290,-12,cs) ); }, { closed = 1; nodes = ( (192,64,o), (140,135,o), (140,250,cs), (140,365,o), (194,436,o), (290,436,cs), (388,436,o), (440,365,o), (440,250,cs), (440,135,o), (388,64,o), (290,64,cs) ); } ); width = 580; }, { anchors = ( { name = bottom; pos = (303,-12); }, { name = top; pos = (303,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (434,-12,o), (568,70,o), (568,254,cs), (568,440,o), (440,520,o), (303,520,cs), (174,520,o), (36,440,o), (36,254,cs), (36,70,o), (166,-12,o), (303,-12,cs) ); }, { closed = 1; nodes = ( (225,108,o), (182,164,o), (182,254,cs), (182,342,o), (226,400,o), (303,400,cs), (385,400,o), (422,342,o), (422,254,cs), (422,164,o), (384,108,o), (303,108,cs) ); } ); width = 604; } ); unicode = 111; }, { glyphname = oacute; kernLeft = o; kernRight = o; lastChange = "2024-11-22 04:44:26 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (234,0); ref = acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (256,0); ref = acutecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (242,12); ref = acutecomb; } ); width = 604; } ); unicode = 243; }, { glyphname = obreve; kernLeft = o; kernRight = o; lastChange = "2024-11-01 03:04:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (138,0); ref = brevecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (146,0); ref = brevecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (129,12); ref = brevecomb; } ); width = 604; } ); unicode = 335; }, { glyphname = ocircumflex; kernLeft = o; kernRight = o; lastChange = "2024-11-01 03:04:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (150,0); ref = circumflexcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (140,0); ref = circumflexcomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (122,12); ref = circumflexcomb; } ); width = 604; } ); unicode = 244; }, { glyphname = ocircumflexacute; kernLeft = o; kernRight = o; lastChange = "2024-11-01 03:04:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (3,0); ref = circumflexcomb_acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (9,12); ref = circumflexcomb_acutecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (122,12); ref = circumflexcomb_acutecomb; } ); width = 604; } ); unicode = 7889; }, { glyphname = ocircumflexdotbelow; kernLeft = o; kernRight = o; lastChange = "2024-11-01 03:04:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (214,-12); ref = dotbelowcomb; }, { pos = (150,0); ref = circumflexcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (215,-12); ref = dotbelowcomb; }, { pos = (140,0); ref = circumflexcomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (209,-11); ref = dotbelowcomb; }, { pos = (122,12); ref = circumflexcomb; } ); width = 604; } ); unicode = 7897; }, { glyphname = ocircumflexgrave; kernLeft = o; kernRight = o; lastChange = "2024-11-01 03:04:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (150,0); ref = circumflexcomb_gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (141,12); ref = circumflexcomb_gravecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (122,12); ref = circumflexcomb_gravecomb; } ); width = 604; } ); unicode = 7891; }, { glyphname = ocircumflexhookabove; kernLeft = o; kernRight = o; lastChange = "2024-11-01 03:04:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (150,0); ref = circumflexcomb_hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (141,12); ref = circumflexcomb_hookabovecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (122,12); ref = circumflexcomb_hookabovecomb; } ); width = 604; } ); unicode = 7893; }, { glyphname = ocircumflextilde; kernLeft = o; kernRight = o; lastChange = "2024-11-01 03:04:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (148,0); ref = circumflexcomb_tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (134,12); ref = circumflexcomb_tildecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (95,12); ref = circumflexcomb_tildecomb; } ); width = 604; } ); unicode = 7895; }, { glyphname = odieresis; kernLeft = o; kernRight = o; lastChange = "2024-11-01 03:04:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (130,0); ref = dieresiscomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (129,0); ref = dieresiscomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (99,12); ref = dieresiscomb; } ); width = 604; } ); unicode = 246; }, { glyphname = odotbelow; kernLeft = o; kernRight = o; lastChange = "2024-11-01 03:04:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (214,-12); ref = dotbelowcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (215,-12); ref = dotbelowcomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (209,-11); ref = dotbelowcomb; } ); width = 604; } ); unicode = 7885; }, { glyphname = ograve; kernLeft = o; kernRight = o; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (134,0); ref = gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (133,0); ref = gravecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (116,12); ref = gravecomb; } ); width = 604; } ); unicode = 242; }, { glyphname = ohookabove; kernLeft = o; kernRight = o; lastChange = "2024-11-01 03:04:13 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (247,12); ref = hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (234,12); ref = hookabovecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (243,12); ref = hookabovecomb; } ); width = 604; } ); unicode = 7887; }, { glyphname = ohorn; kernLeft = o; kernRight = ohorn; lastChange = "2024-11-01 03:03:31 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (518,434,o), (602,512,o), (553,634,c), (492,615,l), (523,545,o), (495,483,o), (431,483,cs), (401,483,o), (370,498,o), (340,505,c), (340,462,l), (431,434,l) ); }, { ref = o; } ); width = 568; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (556,430,o), (618,513,o), (569,635,c), (489,613,l), (518,554,o), (508,484,o), (440,484,cs), (417,484,o), (375,500,o), (352,504,c), (352,447,l), (422,430,l) ); }, { ref = o; } ); width = 580; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (602,413,o), (687,522,o), (633,657,c), (519,626,l), (548,567,o), (544,494,o), (463,494,cs), (427,494,o), (404,508,o), (350,516,c), (350,433,l), (469,413,l) ); }, { ref = o; } ); width = 685; } ); unicode = 417; }, { glyphname = ohornacute; kernLeft = o; kernRight = ohorn; lastChange = "2024-11-01 03:03:44 +0000"; layers = ( { layerId = m01; shapes = ( { ref = ohorn; }, { pos = (234,0); ref = acutecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = ohorn; }, { pos = (256,0); ref = acutecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = ohorn; }, { pos = (242,12); ref = acutecomb; } ); width = 685; } ); unicode = 7899; }, { glyphname = ohorndotbelow; kernLeft = o; kernRight = ohorn; lastChange = "2024-11-01 03:03:44 +0000"; layers = ( { layerId = m01; shapes = ( { ref = ohorn; }, { pos = (214,-12); ref = dotbelowcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = ohorn; }, { pos = (215,-12); ref = dotbelowcomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = ohorn; }, { pos = (209,-11); ref = dotbelowcomb; } ); width = 685; } ); unicode = 7907; }, { glyphname = ohorngrave; kernLeft = o; kernRight = ohorn; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = ohorn; }, { pos = (134,0); ref = gravecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = ohorn; }, { pos = (133,0); ref = gravecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = ohorn; }, { pos = (116,12); ref = gravecomb; } ); width = 685; } ); unicode = 7901; }, { glyphname = ohornhookabove; kernLeft = o; kernRight = ohorn; lastChange = "2024-11-01 03:03:44 +0000"; layers = ( { layerId = m01; shapes = ( { ref = ohorn; }, { pos = (247,12); ref = hookabovecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = ohorn; }, { pos = (234,12); ref = hookabovecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = ohorn; }, { pos = (243,12); ref = hookabovecomb; } ); width = 685; } ); unicode = 7903; }, { glyphname = ohorntilde; kernLeft = o; kernRight = ohorn; lastChange = "2024-11-01 03:03:44 +0000"; layers = ( { layerId = m01; shapes = ( { ref = ohorn; }, { pos = (121,0); ref = tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = ohorn; }, { pos = (127,0); ref = tildecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = ohorn; }, { pos = (95,12); ref = tildecomb; } ); width = 685; } ); unicode = 7905; }, { glyphname = ohungarumlaut; kernLeft = o; kernRight = o; lastChange = "2024-11-01 03:04:01 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (165,0); ref = hungarumlautcomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (167,0); ref = hungarumlautcomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (137,12); ref = hungarumlautcomb; } ); width = 604; } ); unicode = 337; }, { glyphname = omacron; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (142,0); ref = macroncomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (111,0); ref = macroncomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (127,12); ref = macroncomb; } ); width = 604; } ); unicode = 333; }, { glyphname = oopen; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (518,0); ref = c; scale = (-1,1); } ); width = 518; }, { layerId = m002; shapes = ( { pos = (536,0); ref = c; scale = (-1,1); } ); width = 536; }, { layerId = m003; shapes = ( { pos = (550,0); ref = c; scale = (-1,1); } ); width = 550; } ); unicode = 596; }, { glyphname = oslash; kernLeft = o; kernRight = o; lastChange = "2024-11-02 02:04:03 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (7,0); ref = o; }, { closed = 1; nodes = ( (84,-27,l), (528,493,l), (491,523,l), (49,6,l) ); } ); width = 576; }, { layerId = m002; shapes = ( { pos = (13,0); ref = o; }, { closed = 1; nodes = ( (97,-34,l), (549,488,l), (495,532,l), (45,13,l) ); } ); width = 595; }, { layerId = m003; shapes = ( { pos = (6,0); ref = o; }, { closed = 1; nodes = ( (102,-51,l), (587,495,l), (508,556,l), (25,13,l) ); } ); width = 613; } ); unicode = 248; }, { glyphname = oslashacute; kernLeft = o; kernRight = o; lastChange = "2024-11-02 02:04:19 +0000"; layers = ( { layerId = m01; shapes = ( { ref = oslash; }, { pos = (241,0); ref = acutecomb; } ); width = 576; }, { layerId = m002; shapes = ( { ref = oslash; }, { pos = (269,0); ref = acutecomb; } ); width = 595; }, { layerId = m003; shapes = ( { ref = oslash; }, { pos = (248,12); ref = acutecomb; } ); width = 613; } ); unicode = 511; }, { glyphname = otilde; kernLeft = o; kernRight = o; lastChange = "2024-11-02 02:04:14 +0000"; layers = ( { layerId = m01; shapes = ( { ref = o; }, { pos = (121,0); ref = tildecomb; } ); width = 568; }, { layerId = m002; shapes = ( { ref = o; }, { pos = (127,0); ref = tildecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = o; }, { pos = (95,12); ref = tildecomb; } ); width = 604; } ); unicode = 245; }, { glyphname = oe; kernLeft = o; kernRight = e; lastChange = "2024-11-02 02:03:38 +0000"; layers = ( { anchors = ( { name = bottom; pos = (862,-13); }, { name = top; pos = (858,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (408,-12,o), (503,78,o), (503,250,cs), (503,422,o), (408,512,o), (284,512,cs), (160,512,o), (56,422,o), (56,250,cs), (56,78,o), (160,-12,o), (284,-12,cs) ); }, { closed = 1; nodes = ( (173,38,o), (114,121,o), (114,250,cs), (114,379,o), (173,462,o), (284,462,cs), (395,462,o), (454,379,o), (454,250,cs), (454,121,o), (395,38,o), (284,38,cs) ); }, { closed = 1; nodes = ( (823,-13,o), (890,62,o), (915,144,c), (862,154,l), (843,100,o), (794,37,o), (698,37,cs), (579,37,o), (517,118,o), (517,245,cs), (517,368,o), (565,462,o), (695,462,cs), (802,462,o), (857,368,o), (857,289,c), (506,289,l), (506,239,l), (917,239,l), (917,267,l), (917,422,o), (819,512,o), (691,512,cs), (554,512,o), (465,412,o), (465,248,cs), (465,87,o), (548,-13,o), (694,-13,cs) ); } ); width = 973; }, { anchors = ( { name = bottom; pos = (876,-13); }, { name = top; pos = (872,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (414,-12,o), (514,78,o), (514,250,cs), (514,422,o), (420,512,o), (290,512,cs), (166,512,o), (56,422,o), (56,250,cs), (56,78,o), (160,-12,o), (290,-12,cs) ); }, { closed = 1; nodes = ( (192,64,o), (140,135,o), (140,250,cs), (140,365,o), (194,436,o), (290,436,cs), (388,436,o), (440,365,o), (440,250,cs), (440,135,o), (388,64,o), (290,64,cs) ); }, { closed = 1; nodes = ( (807,-13,o), (875,55,o), (900,137,c), (818,151,l), (799,97,o), (743,63,o), (686,63,cs), (561,63,o), (528,150,o), (528,245,cs), (528,367,o), (574,436,o), (683,436,cs), (777,436,o), (816,345,o), (816,304,c), (523,304,l), (523,234,l), (902,234,l), (902,261,l), (902,434,o), (803,512,o), (679,512,cs), (542,512,o), (452,412,o), (452,248,cs), (452,87,o), (542,-13,o), (682,-13,cs) ); } ); width = 958; }, { anchors = ( { name = bottom; pos = (334,-13); }, { name = top; pos = (332,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (434,-12,o), (552,70,o), (552,254,cs), (552,440,o), (440,520,o), (303,520,cs), (174,520,o), (36,440,o), (36,254,cs), (36,70,o), (166,-12,o), (303,-12,cs) ); }, { closed = 1; nodes = ( (225,108,o), (182,164,o), (182,254,cs), (182,342,o), (226,400,o), (303,400,cs), (385,400,o), (422,342,o), (422,254,cs), (422,164,o), (384,108,o), (303,108,cs) ); }, { closed = 1; nodes = ( (778,-13,o), (874,23,o), (921,134,c), (789,173,l), (770,130,o), (723,107,o), (693,107,cs), (604,107,o), (565,164,o), (565,256,cs), (565,337,o), (604,400,o), (688,400,cs), (755,400,o), (793,336,o), (793,301,c), (532,301,l), (533,215,l), (936,215,l), (936,248,l), (936,418,o), (839,520,o), (689,520,cs), (558,520,o), (442,436,o), (442,256,cs), (442,82,o), (556,-13,o), (691,-13,cs) ); } ); width = 972; } ); unicode = 339; }, { glyphname = p; kernRight = o; lastChange = "2025-01-01 06:27:43 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (172,43,o), (235,-12,o), (326,-12,cs), (443,-12,o), (538,86,o), (538,250,cs), (538,419,o), (457,512,o), (326,512,cs), (241,512,o), (172,457,o), (152,402,c), (152,500,l), (96,500,l), (96,-230,l), (152,-230,l), (152,98,l) ); }, { closed = 1; nodes = ( (235,38,o), (152,108,o), (151,250,c), (152,392,o), (235,462,o), (314,462,cs), (427,462,o), (479,377,o), (479,252,cs), (479,124,o), (413,38,o), (314,38,cs) ); } ); width = 594; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (198,24,o), (271,-12,o), (340,-12,cs), (474,-12,o), (561,86,o), (561,250,cs), (561,419,o), (474,512,o), (335,512,cs), (247,512,o), (195,457,o), (176,402,c), (176,500,l), (92,500,l), (92,-230,l), (176,-230,l), (176,93,l) ); }, { closed = 1; nodes = ( (231,64,o), (177,148,o), (177,250,cs), (177,360,o), (231,437,o), (330,437,cs), (428,437,o), (476,356,o), (476,252,cs), (476,148,o), (428,64,o), (327,64,cs) ); } ); width = 615; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (217,29,o), (267,-12,o), (350,-12,cs), (481,-12,o), (569,88,o), (569,253,cs), (569,421,o), (476,520,o), (345,520,cs), (267,520,o), (217,470,o), (191,415,c), (191,508,l), (50,508,l), (51,-230,l), (191,-230,l), (191,83,l) ); }, { closed = 1; nodes = ( (237,97,o), (191,158,o), (191,253,cs), (191,341,o), (237,410,o), (305,410,cs), (377,410,o), (423,340,o), (423,253,cs), (423,157,o), (377,95,o), (305,96,cs) ); } ); width = 613; } ); unicode = 112; }, { glyphname = thorn; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (172,43,o), (235,-12,o), (326,-12,cs), (443,-12,o), (538,86,o), (538,250,cs), (538,419,o), (457,512,o), (326,512,cs), (241,512,o), (172,457,o), (152,402,c), (152,700,l), (96,700,l), (96,-230,l), (152,-230,l), (152,98,l) ); }, { closed = 1; nodes = ( (235,38,o), (152,108,o), (151,250,c), (152,392,o), (235,462,o), (314,462,cs), (427,462,o), (479,377,o), (479,252,cs), (479,124,o), (413,38,o), (314,38,cs) ); } ); width = 594; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (198,24,o), (271,-12,o), (340,-12,cs), (474,-12,o), (561,86,o), (561,250,cs), (561,419,o), (474,512,o), (335,512,cs), (247,512,o), (195,457,o), (176,402,c), (176,700,l), (92,700,l), (92,-230,l), (176,-230,l), (176,93,l) ); }, { closed = 1; nodes = ( (231,64,o), (177,148,o), (177,250,cs), (177,360,o), (231,437,o), (330,437,cs), (428,437,o), (476,356,o), (476,252,cs), (476,148,o), (428,64,o), (327,64,cs) ); } ); width = 615; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (219,29,o), (269,-12,o), (352,-12,cs), (483,-12,o), (571,88,o), (571,253,cs), (571,421,o), (478,520,o), (347,520,cs), (269,520,o), (219,470,o), (193,415,c), (193,700,l), (52,700,l), (53,-230,l), (193,-230,l), (193,83,l) ); }, { closed = 1; nodes = ( (239,97,o), (193,158,o), (193,253,cs), (193,341,o), (239,410,o), (307,410,cs), (379,410,o), (425,340,o), (425,253,cs), (425,157,o), (379,95,o), (307,96,cs) ); } ); width = 600; } ); unicode = 254; }, { glyphname = q; kernLeft = o; lastChange = "2025-01-01 10:07:36 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (547,-231,o), (557,-226,o), (571,-218,c), (571,-171,l), (530,-190,o), (499,-176,o), (499,-126,c), (498,500,l), (442,500,l), (442,402,l), (422,457,o), (353,512,o), (268,512,cs), (137,512,o), (56,419,o), (56,250,cs), (56,86,o), (151,-12,o), (268,-12,cs), (359,-12,o), (422,43,o), (442,98,c), (443,-141,ls), (443,-212,o), (483,-229,o), (522,-230,cs) ); }, { closed = 1; nodes = ( (181,38,o), (115,124,o), (115,252,cs), (115,377,o), (167,462,o), (280,462,cs), (359,462,o), (442,392,o), (443,250,c), (442,108,o), (359,38,o), (280,38,cs) ); } ); width = 600; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (557,-230,o), (570,-226,o), (584,-218,c), (584,-150,l), (535,-161,o), (522,-143,o), (524,-103,cs), (524,500,l), (441,500,l), (441,402,l), (420,457,o), (368,512,o), (280,512,cs), (149,512,o), (54,419,o), (54,250,cs), (54,86,o), (144,-12,o), (275,-12,cs), (344,-12,o), (419,27,o), (440,96,c), (440,-124,ls), (440,-204,o), (480,-230,o), (532,-230,cs) ); }, { closed = 1; nodes = ( (186,64,o), (138,148,o), (138,252,cs), (138,356,o), (186,437,o), (284,437,cs), (383,437,o), (437,360,o), (437,250,cs), (437,148,o), (383,64,o), (287,64,cs) ); } ); width = 604; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (571,-229,o), (611,-222,o), (625,-214,c), (625,-104,l), (576,-115,o), (562,-100,o), (562,-60,cs), (563,508,l), (422,508,l), (422,415,l), (396,470,o), (346,520,o), (268,520,cs), (137,520,o), (44,421,o), (44,253,cs), (44,88,o), (132,-12,o), (263,-12,cs), (346,-12,o), (396,29,o), (422,83,c), (421,-100,ls), (421,-191,o), (469,-229,o), (544,-229,cs) ); }, { closed = 1; nodes = ( (236,95,o), (190,157,o), (190,253,cs), (190,340,o), (236,410,o), (308,410,cs), (376,410,o), (422,341,o), (422,253,cs), (422,158,o), (376,97,o), (308,96,cs) ); } ); width = 655; } ); unicode = 113; }, { glyphname = r; lastChange = "2025-02-21 05:17:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (125,0); }, { name = top; pos = (203,500); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (152,0,l), (152,270,ls), (152,366,o), (207,456,o), (306,456,cs), (324,456,o), (342,454,o), (358,449,c), (358,509,l), (346,511,o), (334,512,o), (322,512,cs), (203,512,o), (161,431,o), (152,396,c), (152,500,l), (96,500,l), (96,0,l) ); } ); width = 375; }, { anchors = ( { name = bottom; pos = (136,0); }, { name = top; pos = (214,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (176,0,l), (176,270,ls), (176,366,o), (221,420,o), (302,436,cs), (327,441,o), (362,436,o), (382,430,c), (382,508,l), (373,510,o), (349,512,o), (339,512,cs), (236,512,o), (196,454,o), (176,401,c), (176,500,l), (92,500,l), (92,0,l) ); } ); width = 402; }, { anchors = ( { name = bottom; pos = (149,0); }, { name = top; pos = (237,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (220,0,l), (220,221,ls), (220,317,o), (242,375,o), (321,391,cs), (346,396,o), (381,391,o), (401,385,c), (401,516,l), (392,519,o), (368,520,o), (358,520,cs), (290,520,o), (240,477,o), (220,424,c), (220,508,l), (80,508,l), (80,0,l) ); } ); width = 419; } ); unicode = 114; }, { glyphname = racute; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = r; }, { pos = (153,-12); ref = acutecomb; } ); width = 375; }, { layerId = m002; shapes = ( { ref = r; }, { pos = (180,-12); ref = acutecomb; } ); width = 402; }, { layerId = m003; shapes = ( { ref = r; }, { pos = (176,12); ref = acutecomb; } ); width = 419; } ); unicode = 341; }, { glyphname = rcaron; lastChange = "2025-02-21 05:17:28 +0000"; layers = ( { layerId = m01; shapes = ( { ref = r; }, { pos = (69,-12); ref = caroncomb; } ); width = 375; }, { layerId = m002; shapes = ( { ref = r; }, { pos = (62,-12); ref = caroncomb; } ); width = 402; }, { layerId = m003; shapes = ( { ref = r; }, { pos = (60,12); ref = caroncomb; } ); width = 419; } ); unicode = 345; }, { glyphname = rcommaaccent; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = r; }, { pos = (64,12); ref = commaaccentcomb; } ); width = 375; }, { layerId = m002; shapes = ( { ref = r; }, { pos = (59,12); ref = commaaccentcomb; } ); width = 402; }, { layerId = m003; shapes = ( { ref = r; }, { pos = (54,1); ref = commaaccentcomb; } ); width = 419; } ); unicode = 343; }, { glyphname = rdotbelow; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m003; shapes = ( { ref = r; }, { pos = (55,1); ref = dotbelowcomb; } ); width = 419; }, { layerId = m01; shapes = ( { ref = r; }, { pos = (55,0); ref = dotbelowcomb; } ); width = 375; }, { layerId = m002; shapes = ( { ref = r; }, { pos = (61,0); ref = dotbelowcomb; } ); width = 402; } ); unicode = 7771; }, { glyphname = rmacronbelow; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m003; shapes = ( { ref = r; }, { pos = (-31,1); ref = macronbelowcomb; } ); width = 419; }, { layerId = m01; shapes = ( { ref = r; }, { pos = (-17,12); ref = macronbelowcomb; } ); width = 375; }, { layerId = m002; shapes = ( { ref = r; }, { pos = (-24,12); ref = macronbelowcomb; } ); width = 402; } ); unicode = 7775; }, { glyphname = s; lastChange = "2025-01-01 06:46:20 +0000"; layers = ( { anchors = ( { name = bottom; pos = (252,-12); }, { name = top; pos = (253,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (396,-12,o), (451,53,o), (451,134,cs), (451,331,o), (128,228,o), (128,371,cs), (128,432,o), (186,462,o), (252,462,cs), (328,462,o), (376,418,o), (376,367,c), (436,367,l), (436,429,o), (402,512,o), (253,512,cs), (130,512,o), (70,441,o), (70,368,cs), (70,168,o), (393,269,o), (393,134,cs), (393,70,o), (339,38,o), (254,38,cs), (189,38,o), (110,80,o), (110,156,c), (50,156,l), (50,57,o), (149,-12,o), (252,-12,cs) ); } ); width = 505; }, { anchors = ( { name = bottom; pos = (251,-12); }, { name = top; pos = (243,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (398,-12,o), (456,60,o), (456,141,cs), (456,338,o), (137,253,o), (137,365,cs), (137,407,o), (169,436,o), (242,436,cs), (322,436,o), (360,400,o), (360,367,c), (446,367,l), (446,429,o), (396,512,o), (243,512,cs), (113,512,o), (53,433,o), (53,360,cs), (53,161,o), (372,258,o), (372,137,cs), (372,87,o), (327,64,o), (253,64,cs), (195,64,o), (132,93,o), (132,156,c), (42,156,l), (42,57,o), (142,-12,o), (251,-12,c) ); } ); width = 503; }, { anchors = ( { name = bottom; pos = (275,-12); }, { name = top; pos = (272,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (429,-12,o), (514,53,o), (514,162,cs), (514,347,o), (195,287,o), (195,361,cs), (195,389,o), (216,406,o), (271,406,cs), (328,406,o), (364,380,o), (364,351,c), (500,351,l), (500,424,o), (444,520,o), (272,520,cs), (117,520,o), (56,447,o), (56,355,cs), (56,157,o), (375,224,o), (375,155,cs), (375,116,o), (339,102,o), (282,102,cs), (216,102,o), (172,126,o), (172,175,c), (36,176,l), (36,77,o), (117,-12,o), (275,-12,c) ); } ); width = 554; }, { associatedMasterId = m003; layerId = "F69D4450-EE1F-4301-BB03-F9CA77403C17"; name = "10 Aug 24 at 16:46"; shapes = ( { closed = 1; nodes = ( (434,-12,o), (514,66,o), (514,145,cs), (514,351,o), (195,285,o), (195,361,cs), (195,389,o), (216,406,o), (271,406,cs), (328,406,o), (364,380,o), (364,351,c), (500,351,l), (500,424,o), (444,520,o), (272,520,cs), (117,520,o), (56,448,o), (56,364,cs), (56,156,o), (375,226,o), (375,155,cs), (375,116,o), (339,102,o), (282,102,cs), (216,102,o), (172,126,o), (172,175,c), (36,176,l), (36,77,o), (117,-12,o), (275,-12,c) ); } ); visible = 1; width = 554; } ); unicode = 115; }, { glyphname = sacute; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = s; }, { pos = (203,0); ref = acutecomb; } ); width = 505; }, { layerId = m002; shapes = ( { ref = s; }, { pos = (209,0); ref = acutecomb; } ); width = 503; }, { layerId = m003; shapes = ( { ref = s; }, { pos = (211,12); ref = acutecomb; } ); width = 554; } ); unicode = 347; }, { glyphname = scaron; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = s; }, { pos = (119,0); ref = caroncomb; } ); width = 505; }, { layerId = m002; shapes = ( { ref = s; }, { pos = (91,0); ref = caroncomb; } ); width = 503; }, { layerId = m003; shapes = ( { ref = s; }, { pos = (91,12); ref = caroncomb; } ); width = 554; } ); unicode = 353; }, { glyphname = scedilla; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = s; }, { pos = (145,-14); ref = cedillacomb; } ); width = 505; }, { layerId = m002; shapes = ( { ref = s; }, { pos = (134,-14); ref = cedillacomb; } ); width = 503; }, { layerId = m003; shapes = ( { ref = s; }, { pos = (147,-11); ref = cedillacomb; } ); width = 554; } ); unicode = 351; }, { glyphname = scircumflex; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = s; }, { pos = (119,0); ref = circumflexcomb; } ); width = 505; }, { layerId = m002; shapes = ( { ref = s; }, { pos = (93,0); ref = circumflexcomb; } ); width = 503; }, { layerId = m003; shapes = ( { ref = s; }, { pos = (91,12); ref = circumflexcomb; } ); width = 554; } ); unicode = 349; }, { glyphname = scommaaccent; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = s; }, { pos = (191,0); ref = commaaccentcomb; } ); width = 505; }, { layerId = m002; shapes = ( { ref = s; }, { pos = (174,0); ref = commaaccentcomb; } ); width = 503; }, { layerId = m003; shapes = ( { ref = s; }, { pos = (180,-11); ref = commaaccentcomb; } ); width = 554; } ); unicode = 537; }, { glyphname = germandbls; lastChange = "2024-11-01 00:37:25 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (207,122,l), (207,46,o), (270,-12,o), (367,-12,cs), (457,-12,o), (530,41,o), (530,140,cs), (530,303,o), (361,302,o), (361,379,cs), (361,431,o), (421,461,o), (421,557,cs), (421,646,o), (352,712,o), (256,712,cs), (147,712,o), (84,642,o), (84,506,cs), (84,0,l), (140,0,l), (140,506,ls), (140,598,o), (169,662,o), (259,662,cs), (321,662,o), (363,608,o), (363,557,cs), (363,473,o), (303,458,o), (303,379,cs), (303,260,o), (472,286,o), (472,138,cs), (472,74,o), (430,38,o), (368,38,cs), (300,38,o), (259,82,o), (259,122,c) ); } ); width = 570; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (215,140,l), (215,58,o), (268,-12,o), (390,-12,cs), (492,-12,o), (561,54,o), (561,157,cs), (561,316,o), (396,327,o), (396,393,cs), (396,445,o), (449,460,o), (449,552,cs), (449,642,o), (370,712,o), (272,712,cs), (149,712,o), (86,631,o), (86,506,cs), (86,0,l), (174,0,l), (174,506,ls), (174,583,o), (194,636,o), (275,636,cs), (327,636,o), (365,595,o), (365,552,cs), (365,480,o), (312,472,o), (312,393,cs), (312,268,o), (477,284,o), (477,155,cs), (477,97,o), (442,64,o), (390,64,cs), (328,64,o), (298,95,o), (298,140,c) ); } ); width = 596; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (247,163,l), (247,43,o), (330,-12,o), (445,-12,cs), (580,-12,o), (643,68,o), (643,170,cs), (643,334,o), (476,332,o), (476,392,cs), (476,443,o), (512,462,o), (512,537,cs), (512,626,o), (429,712,o), (302,712,cs), (129,712,o), (80,602,o), (80,463,cs), (80,0,l), (220,0,l), (220,457,ls), (220,554,o), (245,598,o), (303,598,cs), (342,598,o), (373,570,o), (373,537,cs), (373,465,o), (336,459,o), (336,392,cs), (336,256,o), (506,271,o), (506,171,cs), (506,126,o), (486,102,o), (446,102,cs), (404,102,o), (378,122,o), (378,163,c) ); } ); width = 673; } ); unicode = 223; }, { glyphname = t; lastChange = "2025-01-01 06:25:36 +0000"; layers = ( { anchors = ( { name = bottom; pos = (196,-3); }, { name = top; pos = (159,629); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (269,-11,o), (291,-8,o), (308,-3,c), (308,47,l), (292,44,o), (275,43,o), (262,43,cs), (214,43,o), (186,61,o), (186,134,cs), (186,449,l), (315,449,l), (315,499,l), (186,499,l), (186,627,l), (134,627,l), (134,570,ls), (134,506,o), (124,500,o), (63,500,cs), (40,500,l), (40,449,l), (130,449,l), (130,133,ls), (130,40,o), (168,-11,o), (253,-11,cs) ); } ); width = 355; }, { anchors = ( { name = bottom; pos = (214,-8); }, { name = top; pos = (157,627); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (282,-12,o), (304,-9,o), (321,-4,c), (321,64,l), (305,61,o), (288,60,o), (275,60,cs), (226,60,o), (200,78,o), (200,132,cs), (200,423,l), (329,423,l), (329,499,l), (200,499,l), (200,627,l), (116,627,l), (116,570,ls), (116,512,o), (103,500,o), (49,500,cs), (26,500,l), (26,423,l), (116,423,l), (116,132,ls), (116,39,o), (157,-12,o), (266,-12,cs) ); } ); width = 366; }, { anchors = ( { name = bottom; pos = (230,-4); }, { name = top; pos = (187,628); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (317,-12,o), (346,-9,o), (363,-4,c), (362,126,l), (346,123,o), (323,122,o), (310,122,cs), (283,122,o), (254,137,o), (254,184,cs), (254,387,l), (370,387,l), (370,507,l), (254,507,l), (254,627,l), (120,627,l), (120,582,ls), (120,527,o), (100,508,o), (37,508,cs), (18,508,l), (18,387,l), (114,387,l), (114,149,ls), (114,42,o), (170,-12,o), (301,-12,cs) ); } ); width = 400; } ); unicode = 116; }, { glyphname = tcaron; lastChange = "2024-11-07 17:13:11 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (303,582,l), (359,700,l), (266,700,l), (253,582,l) ); }, { ref = t; } ); width = 359; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (333,562,l), (382,699,l), (272,699,l), (261,562,l) ); }, { ref = t; } ); width = 382; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (400,562,l), (455,702,l), (325,702,l), (305,562,l) ); }, { ref = t; } ); width = 455; } ); unicode = 357; }, { glyphname = tcedilla; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = t; }, { pos = (89,-5); ref = cedillacomb; } ); width = 355; }, { layerId = m002; shapes = ( { ref = t; }, { pos = (97,-10); ref = cedillacomb; } ); width = 366; }, { layerId = m003; shapes = ( { ref = t; }, { pos = (102,-3); ref = cedillacomb; } ); width = 400; } ); unicode = 355; }, { glyphname = tcommaaccent; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = t; }, { pos = (135,9); ref = commaaccentcomb; } ); width = 355; }, { layerId = m002; shapes = ( { ref = t; }, { pos = (137,4); ref = commaaccentcomb; } ); width = 366; }, { layerId = m003; shapes = ( { ref = t; }, { pos = (135,-3); ref = commaaccentcomb; } ); width = 400; } ); unicode = 539; }, { glyphname = tdotbelow; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m003; shapes = ( { ref = t; }, { pos = (136,-3); ref = dotbelowcomb; } ); width = 400; }, { layerId = m01; shapes = ( { ref = t; }, { pos = (126,-3); ref = dotbelowcomb; } ); width = 355; }, { layerId = m002; shapes = ( { ref = t; }, { pos = (139,-8); ref = dotbelowcomb; } ); width = 366; } ); unicode = 7789; }, { glyphname = tmacronbelow; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m003; shapes = ( { ref = t; }, { pos = (50,-3); ref = macronbelowcomb; } ); width = 400; }, { layerId = m01; shapes = ( { ref = t; }, { pos = (54,9); ref = macronbelowcomb; } ); width = 355; }, { layerId = m002; shapes = ( { ref = t; }, { pos = (54,4); ref = macronbelowcomb; } ); width = 366; } ); unicode = 7791; }, { glyphname = u; lastChange = "2025-01-01 06:28:10 +0000"; layers = ( { anchors = ( { name = bottom; pos = (285,-12); }, { name = top; pos = (285,500); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (438,500,l), (438,230,ls), (438,134,o), (383,38,o), (284,38,cs), (203,38,o), (142,89,o), (142,190,cs), (142,500,l), (86,500,l), (86,178,ls), (86,58,o), (171,-12,o), (268,-12,cs), (387,-12,o), (429,69,o), (438,104,c), (438,0,l), (494,0,l), (494,500,l) ); } ); width = 584; }, { anchors = ( { name = bottom; pos = (290,-12); }, { name = top; pos = (290,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (421,500,l), (421,230,ls), (421,134,o), (374,64,o), (282,64,cs), (215,64,o), (170,97,o), (170,184,cs), (170,500,l), (86,500,l), (86,172,ls), (86,52,o), (157,-12,o), (254,-12,cs), (366,-12,o), (412,59,o), (421,94,c), (421,0,l), (505,0,l), (505,500,l) ); } ); width = 597; }, { anchors = ( { name = bottom; pos = (287,-12); }, { name = top; pos = (292,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (396,508,l), (396,269,ls), (396,161,o), (368,100,o), (285,100,cs), (228,100,o), (200,138,o), (200,212,cs), (200,508,l), (60,508,l), (60,193,ls), (60,73,o), (118,-12,o), (252,-12,cs), (320,-12,o), (375,29,o), (396,78,c), (396,0,l), (536,0,l), (536,508,l) ); } ); width = 616; } ); unicode = 117; }, { glyphname = uacute; kernLeft = u; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (235,-12); ref = acutecomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (256,-12); ref = acutecomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (231,12); ref = acutecomb; } ); width = 616; } ); unicode = 250; }, { glyphname = ubreve; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (139,-12); ref = brevecomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (146,-12); ref = brevecomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (118,12); ref = brevecomb; } ); width = 616; } ); unicode = 365; }, { glyphname = ucircumflex; kernLeft = u; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (151,-12); ref = circumflexcomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (140,-12); ref = circumflexcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (111,12); ref = circumflexcomb; } ); width = 616; } ); unicode = 251; }, { glyphname = udieresis; kernLeft = u; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (131,-12); ref = dieresiscomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (129,-12); ref = dieresiscomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (88,12); ref = dieresiscomb; } ); width = 616; } ); unicode = 252; }, { glyphname = udotbelow; lastChange = "2024-10-21 04:16:12 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (215,-12); ref = dotbelowcomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (215,-12); ref = dotbelowcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (193,-11); ref = dotbelowcomb; } ); width = 616; } ); unicode = 7909; }, { glyphname = ugrave; kernLeft = uhorn; kernRight = u; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (135,-12); ref = gravecomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (133,-12); ref = gravecomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (105,12); ref = gravecomb; } ); width = 616; } ); unicode = 249; }, { glyphname = uhookabove; kernLeft = uhorn; kernRight = u; lastChange = "2024-11-01 03:03:27 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (248,0); ref = hookabovecomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (234,0); ref = hookabovecomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (232,12); ref = hookabovecomb; } ); width = 616; } ); unicode = 7911; }, { glyphname = uhorn; kernLeft = u; kernRight = uhorn; lastChange = "2024-11-01 03:09:39 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { closed = 1; nodes = ( (581,451,o), (665,529,o), (616,651,c), (555,632,l), (586,562,o), (558,500,o), (494,500,c), (494,451,l) ); } ); width = 640; }, { layerId = m002; shapes = ( { ref = u; }, { closed = 1; nodes = ( (625,446,o), (687,529,o), (638,651,c), (558,629,l), (587,570,o), (583,500,o), (502,500,c), (502,446,l) ); } ); width = 675; }, { layerId = m003; shapes = ( { ref = u; }, { closed = 1; nodes = ( (666,427,o), (754,536,o), (700,671,c), (586,640,l), (615,581,o), (614,508,o), (533,508,c), (533,427,l) ); } ); width = 736; } ); unicode = 432; }, { glyphname = uhornacute; kernLeft = u; kernRight = uhorn; lastChange = "2024-11-01 03:08:32 +0000"; layers = ( { layerId = m01; shapes = ( { ref = uhorn; }, { pos = (235,-12); ref = acutecomb; } ); width = 640; }, { layerId = m002; shapes = ( { ref = uhorn; }, { pos = (256,-12); ref = acutecomb; } ); width = 675; }, { layerId = m003; shapes = ( { ref = uhorn; }, { pos = (231,12); ref = acutecomb; } ); width = 736; } ); unicode = 7913; }, { glyphname = uhorndotbelow; kernLeft = u; kernRight = uhorn; lastChange = "2024-11-01 03:08:32 +0000"; layers = ( { layerId = m01; shapes = ( { ref = uhorn; }, { pos = (215,-12); ref = dotbelowcomb; } ); width = 640; }, { layerId = m002; shapes = ( { ref = uhorn; }, { pos = (215,-12); ref = dotbelowcomb; } ); width = 675; }, { layerId = m003; shapes = ( { ref = uhorn; }, { pos = (193,-11); ref = dotbelowcomb; } ); width = 736; } ); unicode = 7921; }, { glyphname = uhorngrave; kernLeft = u; kernRight = uhorn; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = uhorn; }, { pos = (135,-12); ref = gravecomb; } ); width = 640; }, { layerId = m002; shapes = ( { ref = uhorn; }, { pos = (133,-12); ref = gravecomb; } ); width = 675; }, { layerId = m003; shapes = ( { ref = uhorn; }, { pos = (105,12); ref = gravecomb; } ); width = 736; } ); unicode = 7915; }, { glyphname = uhornhookabove; kernLeft = u; kernRight = uhorn; lastChange = "2024-11-01 03:08:32 +0000"; layers = ( { layerId = m01; shapes = ( { ref = uhorn; }, { pos = (248,0); ref = hookabovecomb; } ); width = 640; }, { layerId = m002; shapes = ( { ref = uhorn; }, { pos = (234,0); ref = hookabovecomb; } ); width = 675; }, { layerId = m003; shapes = ( { ref = uhorn; }, { pos = (232,12); ref = hookabovecomb; } ); width = 736; } ); unicode = 7917; }, { glyphname = uhorntilde; kernLeft = u; kernRight = uhorn; lastChange = "2024-11-01 03:08:32 +0000"; layers = ( { layerId = m01; shapes = ( { ref = uhorn; }, { pos = (122,-12); ref = tildecomb; } ); width = 640; }, { layerId = m002; shapes = ( { ref = uhorn; }, { pos = (127,-12); ref = tildecomb; } ); width = 675; }, { layerId = m003; shapes = ( { ref = uhorn; }, { pos = (84,12); ref = tildecomb; } ); width = 736; } ); unicode = 7919; }, { glyphname = uhungarumlaut; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (166,-12); ref = hungarumlautcomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (167,-12); ref = hungarumlautcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (126,12); ref = hungarumlautcomb; } ); width = 616; } ); unicode = 369; }, { glyphname = umacron; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (143,-12); ref = macroncomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (111,-12); ref = macroncomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (116,12); ref = macroncomb; } ); width = 616; } ); unicode = 363; }, { glyphname = uogonek; lastChange = "2024-09-13 00:43:16 +0000"; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (334,5); ref = ogonekcomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (342,0); ref = ogonekcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (360,0); ref = ogonekcomb; } ); width = 616; } ); unicode = 371; }, { glyphname = uring; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (166,-12); ref = ringcomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (167,-12); ref = ringcomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (156,12); ref = ringcomb; } ); width = 616; } ); unicode = 367; }, { glyphname = utilde; layers = ( { layerId = m01; shapes = ( { ref = u; }, { pos = (122,-12); ref = tildecomb; } ); width = 584; }, { layerId = m002; shapes = ( { ref = u; }, { pos = (127,-12); ref = tildecomb; } ); width = 597; }, { layerId = m003; shapes = ( { ref = u; }, { pos = (84,12); ref = tildecomb; } ); width = 616; } ); unicode = 361; }, { glyphname = v; kernLeft = v; kernRight = v; lastChange = "2025-01-01 10:03:03 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (214,0,l), (274,0,l), (87,500,l), (15,500,l) ); }, { closed = 1; nodes = ( (399,500,l), (214,0,l), (274,0,l), (464,500,l) ); } ); width = 480; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (204,0,l), (287,0,l), (113,500,l), (14,500,l) ); }, { closed = 1; nodes = ( (391,500,l), (214,0,l), (295,0,l), (482,500,l) ); } ); width = 496; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (204,0,l), (329,0,l), (147,508,l), (3,508,l) ); }, { closed = 1; nodes = ( (407,508,l), (219,0,l), (338,0,l), (541,508,l) ); } ); width = 544; } ); unicode = 118; }, { glyphname = w; kernLeft = w; kernRight = w; lastChange = "2025-01-01 10:08:00 +0000"; layers = ( { anchors = ( { name = bottom; pos = (414,0); }, { name = top; pos = (414,500); } ); guides = ( { angle = 270; pos = (414,596); }, { angle = 270; pos = (232,568); }, { angle = 270; pos = (601,594); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (268,0,l), (427,473,l), (403,473,l), (563,0,l), (623,0,l), (790,500,l), (727,500,l), (589,61,l), (602,61,l), (455,500,l), (377,500,l), (233,61,l), (247,61,l), (108,500,l), (40,500,l), (207,0,l) ); } ); width = 830; }, { anchors = ( { name = bottom; pos = (427,0); }, { name = top; pos = (427,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (295,0,l), (445,420,l), (409,420,l), (558,0,l), (648,0,l), (812,500,l), (725,500,l), (595,62,l), (616,62,l), (470,500,l), (387,500,l), (244,62,l), (263,62,l), (131,500,l), (36,500,l), (205,0,l) ); } ); width = 848; }, { anchors = ( { name = bottom; pos = (460,-12); }, { name = top; pos = (460,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (344,0,l), (474,408,l), (445,408,l), (572,0,l), (709,0,l), (886,508,l), (750,508,l), (626,95,l), (650,95,l), (537,508,l), (391,508,l), (271,95,l), (295,95,l), (178,508,l), (32,508,l), (207,0,l) ); } ); width = 918; }, { associatedMasterId = m002; layerId = "30F2B960-0829-4076-A92C-CF2E7BC166CC"; name = m; shapes = ( { closed = 1; nodes = ( (68,0,l), (68,270,ls), (68,366,o), (115,436,o), (207,436,cs), (274,436,o), (319,403,o), (319,316,cs), (319,0,l), (403,0,l), (403,328,ls), (403,448,o), (332,512,o), (235,512,cs), (123,512,o), (77,441,o), (68,406,c), (68,500,l), (-16,500,l), (-16,0,l) ); }, { closed = 1; nodes = ( (738,0,l), (738,328,ls), (738,448,o), (667,512,o), (570,512,cs), (458,512,o), (402,432,o), (393,397,c), (403,270,l), (403,366,o), (450,436,o), (542,436,cs), (609,436,o), (654,403,o), (654,316,cs), (654,0,l) ); } ); width = 730; }, { associatedMasterId = m002; layerId = "54EF5A92-DF5C-4F27-901D-AD1120EB6B99"; name = v; shapes = ( { closed = 1; nodes = ( (130,0,l), (213,0,l), (39,500,l), (-60,500,l) ); }, { closed = 1; nodes = ( (317,500,l), (140,0,l), (221,0,l), (408,500,l) ); } ); width = 730; }, { associatedMasterId = m003; layerId = "6140675B-CD52-4F0B-8FAC-842A7E23690F"; name = "29 Jul 24 at 14:44"; shapes = ( { closed = 1; nodes = ( (332,0,l), (442,394,l), (395,394,l), (500,0,l), (673,0,l), (812,508,l), (671,508,l), (566,60,l), (609,60,l), (490,508,l), (345,508,l), (225,60,l), (270,60,l), (165,508,l), (25,508,l), (164,0,l) ); } ); width = 837; }, { associatedMasterId = m003; layerId = "C266404C-C364-4E5A-B81C-638BAB07B38C"; name = "29 Jul 24 at 14:44"; shapes = ( { closed = 1; nodes = ( (142,0,l), (142,239,ls), (142,347,o), (174,408,o), (257,408,cs), (314,408,o), (343,373,o), (343,296,cs), (343,0,l), (483,0,l), (483,315,ls), (483,435,o), (420,520,o), (291,520,cs), (223,520,o), (163,479,o), (142,430,c), (142,508,l), (2,508,l), (2,0,l) ); }, { closed = 1; nodes = ( (483,239,l), (483,347,o), (515,408,o), (598,408,cs), (655,408,o), (684,373,o), (684,296,cs), (684,0,l), (824,0,l), (824,315,ls), (824,435,o), (761,520,o), (632,520,cs), (568,520,o), (490,490,o), (468,404,c) ); } ); width = 837; }, { associatedMasterId = m01; guides = ( { angle = 270; pos = (415,596); }, { angle = 270; pos = (233,568); }, { angle = 270; pos = (602,594); } ); layerId = "CC5DFB62-56C2-4ABB-B478-555D61F8676C"; name = "29 Jul 24 at 16:40"; shapes = ( { closed = 1; nodes = ( (80,0,l), (80,270,ls), (80,366,o), (135,458,o), (234,458,cs), (315,458,o), (376,411,o), (376,310,cs), (376,0,l), (432,0,l), (432,322,ls), (432,442,o), (347,512,o), (250,512,cs), (131,512,o), (89,431,o), (80,396,c), (80,500,l), (24,500,l), (24,0,l) ); }, { closed = 1; nodes = ( (432,270,l), (432,373,o), (487,458,o), (586,458,cs), (667,458,o), (728,411,o), (728,310,cs), (728,0,l), (784,0,l), (784,322,ls), (784,442,o), (699,512,o), (602,512,cs), (483,512,o), (430,414,o), (421,379,c) ); } ); width = 830; } ); unicode = 119; }, { glyphname = wacute; layers = ( { layerId = m01; shapes = ( { ref = w; }, { pos = (364,-12); ref = acutecomb; } ); width = 830; }, { layerId = m002; shapes = ( { ref = w; }, { pos = (393,-12); ref = acutecomb; } ); width = 848; }, { layerId = m003; shapes = ( { ref = w; }, { pos = (399,12); ref = acutecomb; } ); width = 918; } ); unicode = 7811; }, { glyphname = wcircumflex; layers = ( { layerId = m01; shapes = ( { ref = w; }, { pos = (280,-12); ref = circumflexcomb; } ); width = 830; }, { layerId = m002; shapes = ( { ref = w; }, { pos = (277,-12); ref = circumflexcomb; } ); width = 848; }, { layerId = m003; shapes = ( { ref = w; }, { pos = (279,12); ref = circumflexcomb; } ); width = 918; } ); unicode = 373; }, { glyphname = wdieresis; layers = ( { layerId = m01; shapes = ( { ref = w; }, { pos = (260,-12); ref = dieresiscomb; } ); width = 830; }, { layerId = m002; shapes = ( { ref = w; }, { pos = (266,-12); ref = dieresiscomb; } ); width = 848; }, { layerId = m003; shapes = ( { ref = w; }, { pos = (256,12); ref = dieresiscomb; } ); width = 918; } ); unicode = 7813; }, { glyphname = wgrave; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = w; }, { pos = (264,-12); ref = gravecomb; } ); width = 830; }, { layerId = m002; shapes = ( { ref = w; }, { pos = (270,-12); ref = gravecomb; } ); width = 848; }, { layerId = m003; shapes = ( { ref = w; }, { pos = (273,12); ref = gravecomb; } ); width = 918; } ); unicode = 7809; }, { glyphname = x; lastChange = "2025-01-01 10:06:08 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (465,0,l), (259,287,l), (253,296,l), (107,500,l), (36,500,l), (217,248,l), (226,235,l), (394,0,l) ); }, { closed = 1; nodes = ( (89,0,l), (251,227,l), (260,239,l), (447,500,l), (378,500,l), (228,290,l), (216,274,l), (20,0,l) ); } ); width = 491; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (470,0,l), (268,283,l), (261,292,l), (112,500,l), (12,500,l), (203,233,l), (210,224,l), (370,0,l) ); }, { closed = 1; nodes = ( (102,0,l), (256,215,l), (266,229,l), (460,500,l), (365,500,l), (216,292,l), (204,275,l), (7,0,l) ); } ); width = 477; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (549,0,l), (320,306,l), (310,313,l), (166,508,l), (12,508,l), (228,218,l), (237,212,l), (395,0,l) ); }, { closed = 1; nodes = ( (155,0,l), (314,213,l), (323,220,l), (538,508,l), (389,508,l), (242,310,l), (233,304,l), (6,0,l) ); } ); width = 555; } ); unicode = 120; }, { glyphname = y; kernLeft = v; kernRight = v; lastChange = "2025-01-01 10:08:09 +0000"; layers = ( { anchors = ( { name = top; pos = (266,500); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (207,-230,o), (234,-164,o), (285,-34,cs), (494,500,l), (430,500,l), (266,71,l), (86,500,l), (17,500,l), (237,0,l), (192,-126,o), (163,-170,o), (116,-170,c), (98,-170,o), (79,-169,o), (67,-166,c), (67,-222,l), (80,-226,o), (92,-230,o), (113,-230,cs) ); } ); width = 510; }, { anchors = ( { name = top; pos = (265,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (216,-230,o), (245,-164,o), (294,-34,cs), (495,500,l), (400,500,l), (265,110,l), (105,500,l), (9,500,l), (221,3,l), (187,-126,o), (155,-152,o), (104,-152,c), (86,-152,o), (71,-151,o), (59,-148,c), (59,-222,l), (72,-226,o), (101,-230,o), (122,-230,cs) ); } ); width = 507; }, { anchors = ( { name = top; pos = (274,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (222,-230,o), (287,-177,o), (340,-34,cs), (541,508,l), (400,508,l), (285,141,l), (144,508,l), (4,508,l), (212,3,l), (193,-78,o), (142,-104,o), (96,-104,c), (86,-104,o), (59,-103,o), (47,-100,c), (46,-220,l), (59,-224,o), (92,-230,o), (132,-230,cs) ); } ); width = 543; }, { associatedMasterId = m002; layerId = "D87BC176-5E8B-42A9-9E7C-690C4401C1BD"; name = "14 Jul 24 at 12:20"; shapes = ( { closed = 1; nodes = ( (209,0,l), (292,0,l), (118,500,l), (22,500,l) ); }, { closed = 1; nodes = ( (396,500,l), (219,0,l), (300,0,l), (484,500,l) ); } ); visible = 1; width = 498; } ); unicode = 121; }, { glyphname = yacute; kernLeft = y; kernRight = y; lastChange = "2024-11-01 03:04:30 +0000"; layers = ( { layerId = m01; shapes = ( { ref = y; }, { pos = (216,-12); ref = acutecomb; } ); width = 510; }, { layerId = m002; shapes = ( { ref = y; }, { pos = (231,-12); ref = acutecomb; } ); width = 507; }, { layerId = m003; shapes = ( { ref = y; }, { pos = (213,12); ref = acutecomb; } ); width = 543; } ); unicode = 253; }, { glyphname = ycircumflex; kernLeft = y; kernRight = y; lastChange = "2024-11-01 03:04:30 +0000"; layers = ( { layerId = m01; shapes = ( { ref = y; }, { pos = (132,-12); ref = circumflexcomb; } ); width = 510; }, { layerId = m002; shapes = ( { ref = y; }, { pos = (115,-12); ref = circumflexcomb; } ); width = 507; }, { layerId = m003; shapes = ( { ref = y; }, { pos = (93,12); ref = circumflexcomb; } ); width = 543; } ); unicode = 375; }, { glyphname = ydieresis; kernLeft = y; kernRight = y; lastChange = "2024-11-01 03:04:30 +0000"; layers = ( { layerId = m01; shapes = ( { ref = y; }, { pos = (112,-12); ref = dieresiscomb; } ); width = 510; }, { layerId = m002; shapes = ( { ref = y; }, { pos = (104,-12); ref = dieresiscomb; } ); width = 507; }, { layerId = m003; shapes = ( { ref = y; }, { pos = (70,12); ref = dieresiscomb; } ); width = 543; } ); unicode = 255; }, { glyphname = ydotbelow; kernLeft = y; kernRight = y; lastChange = "2024-11-01 03:04:30 +0000"; layers = ( { layerId = m01; shapes = ( { ref = y; }, { pos = (174,-158); ref = dotbelowcomb; } ); width = 510; }, { layerId = m002; shapes = ( { ref = y; }, { pos = (169,-164); ref = dotbelowcomb; } ); width = 507; }, { layerId = m003; shapes = ( { ref = y; }, { pos = (170,-177); ref = dotbelowcomb; } ); width = 543; } ); unicode = 7925; }, { glyphname = ygrave; kernLeft = y; kernRight = y; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { layerId = m01; shapes = ( { ref = y; }, { pos = (116,-12); ref = gravecomb; } ); width = 510; }, { layerId = m002; shapes = ( { ref = y; }, { pos = (108,-12); ref = gravecomb; } ); width = 507; }, { layerId = m003; shapes = ( { ref = y; }, { pos = (87,12); ref = gravecomb; } ); width = 543; } ); unicode = 7923; }, { glyphname = yhookabove; kernLeft = y; kernRight = y; lastChange = "2024-11-01 03:04:30 +0000"; layers = ( { layerId = m01; shapes = ( { ref = y; }, { pos = (229,0); ref = hookabovecomb; } ); width = 510; }, { layerId = m002; shapes = ( { ref = y; }, { pos = (209,0); ref = hookabovecomb; } ); width = 507; }, { layerId = m003; shapes = ( { ref = y; }, { pos = (214,12); ref = hookabovecomb; } ); width = 543; } ); unicode = 7927; }, { glyphname = ytilde; kernLeft = y; kernRight = y; lastChange = "2024-11-01 03:04:30 +0000"; layers = ( { layerId = m01; shapes = ( { ref = y; }, { pos = (103,-12); ref = tildecomb; } ); width = 510; }, { layerId = m002; shapes = ( { ref = y; }, { pos = (102,-12); ref = tildecomb; } ); width = 507; }, { layerId = m003; shapes = ( { ref = y; }, { pos = (66,12); ref = tildecomb; } ); width = 543; } ); unicode = 7929; }, { glyphname = z; lastChange = "2025-01-01 00:21:39 +0000"; layers = ( { anchors = ( { name = bottom; pos = (239,0); }, { name = top; pos = (239,500); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (419,1,l), (419,51,l), (116,51,l), (417,454,l), (417,501,l), (50,501,l), (50,451,l), (348,451,l), (50,51,l), (50,1,l) ); } ); width = 475; }, { anchors = ( { name = bottom; pos = (246,0); }, { name = top; pos = (246,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (429,1,l), (429,77,l), (154,77,l), (427,428,l), (427,501,l), (54,501,l), (54,425,l), (327,425,l), (54,75,l), (54,1,l) ); } ); width = 483; }, { anchors = ( { name = bottom; pos = (252,0); }, { name = top; pos = (257,508); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (472,1,l), (472,121,l), (225,121,l), (471,396,l), (470,508,l), (40,508,l), (41,388,l), (287,388,l), (41,114,l), (40,1,l) ); } ); width = 516; } ); unicode = 122; }, { glyphname = zacute; layers = ( { layerId = m01; shapes = ( { ref = z; }, { pos = (189,-12); ref = acutecomb; } ); width = 475; }, { layerId = m002; shapes = ( { ref = z; }, { pos = (212,-12); ref = acutecomb; } ); width = 483; }, { layerId = m003; shapes = ( { ref = z; }, { pos = (196,0); ref = acutecomb; } ); width = 516; } ); unicode = 378; }, { glyphname = zcaron; lastChange = "2024-09-03 02:04:03 +0000"; layers = ( { layerId = m01; shapes = ( { ref = z; }, { pos = (105,-12); ref = caroncomb; } ); width = 475; }, { layerId = m002; shapes = ( { ref = z; }, { pos = (94,-12); ref = caroncomb; } ); width = 483; }, { layerId = m003; shapes = ( { ref = z; }, { pos = (76,0); ref = caroncomb; } ); width = 516; } ); unicode = 382; }, { glyphname = zdotaccent; lastChange = "2024-09-03 02:04:04 +0000"; layers = ( { layerId = m01; shapes = ( { ref = z; }, { pos = (171,-12); ref = dotaccentcomb; } ); width = 475; }, { layerId = m002; shapes = ( { ref = z; }, { pos = (172,-12); ref = dotaccentcomb; } ); width = 483; }, { layerId = m003; shapes = ( { ref = z; }, { pos = (161,0); ref = dotaccentcomb; } ); width = 516; } ); unicode = 380; }, { glyphname = lcommaaccent.loclMAH; lastChange = "2024-10-21 04:16:23 +0000"; layers = ( { layerId = m01; shapes = ( { ref = l; }, { pos = (9,-2); ref = commaaccentcomb.loclMAH; } ); width = 236; }, { layerId = m002; shapes = ( { ref = l; }, { pos = (-12,-2); ref = commaaccentcomb.loclMAH; } ); width = 228; }, { layerId = m003; shapes = ( { ref = l; }, { pos = (13,1); ref = commaaccentcomb.loclMAH; } ); width = 296; } ); }, { glyphname = ncommaaccent.loclMAH; lastChange = "2024-10-21 04:16:23 +0000"; layers = ( { layerId = m01; shapes = ( { ref = n; }, { pos = (198,-2); ref = commaaccentcomb.loclMAH; } ); width = 592; }, { layerId = m002; shapes = ( { ref = n; }, { pos = (182,-2); ref = commaaccentcomb.loclMAH; } ); width = 587; }, { layerId = m003; shapes = ( { ref = n; }, { pos = (191,1); ref = commaaccentcomb.loclMAH; } ); width = 624; } ); }, { glyphname = a.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-09 01:29:15 +0000"; layers = ( { anchors = ( { name = bottom; pos = (279,-10); }, { name = top; pos = (279,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (368,-12,o), (413,97,o), (413,97,c), (413,30,o), (449,-1,o), (492,-1,cs), (517,-1,o), (527,3,o), (541,11,c), (541,59,l), (498,43,o), (469,63,o), (469,113,cs), (469,338,ls), (469,450,o), (405,512,o), (269,512,cs), (190,512,o), (118,476,o), (79,400,c), (131,373,l), (152,420,o), (200,460,o), (269,460,cs), (371,460,o), (413,409,o), (413,333,cs), (413,318,l), (185,318,o), (56,278,o), (56,135,cs), (56,43,o), (128,-12,o), (212,-12,cs) ); }, { closed = 1; nodes = ( (157,38,o), (114,81,o), (114,131,cs), (114,228,o), (188,268,o), (413,268,c), (413,233,ls), (413,132,o), (336,38,o), (220,38,cs) ); } ); width = 581; }, { anchors = ( { name = bottom; pos = (317,-10); }, { name = top; pos = (318,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (363,-12,o), (380,97,o), (380,97,c), (380,37,o), (420,0,o), (495,0,cs), (522,0,o), (562,6,o), (576,14,c), (576,124,l), (527,113,o), (513,128,o), (513,168,cs), (513,340,ls), (513,451,o), (435,520,o), (285,520,cs), (164,520,o), (89,459,o), (65,387,c), (170,342,l), (184,385,o), (222,412,o), (277,412,cs), (345,412,o), (380,383,o), (380,331,cs), (380,327,l), (163,327,o), (40,273,o), (40,144,cs), (40,51,o), (113,-12,o), (227,-12,cs) ); }, { closed = 1; nodes = ( (227,93,o), (180,109,o), (180,151,cs), (180,199,o), (208,239,o), (380,239,c), (380,206,ls), (380,124,o), (318,93,o), (248,93,cs) ); } ); width = 631; }, { anchors = ( { name = bottom; pos = (297,-10); }, { name = top; pos = (297,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (376,-12,o), (417,96,o), (417,96,c), (420,25,o), (459,0,o), (511,0,cs), (536,0,o), (549,4,o), (563,12,c), (564,80,l), (515,69,o), (501,87,o), (501,127,cs), (501,330,ls), (501,445,o), (427,512,o), (290,512,cs), (179,512,o), (117,462,o), (87,392,c), (156,356,l), (173,413,o), (231,442,o), (286,442,cs), (356,442,o), (417,414,o), (417,339,cs), (417,326,l), (161,326,o), (68,261,o), (68,141,cs), (68,49,o), (143,-12,o), (226,-12,cs) ); }, { closed = 1; nodes = ( (195,62,o), (150,96,o), (150,141,cs), (150,210,o), (193,260,o), (417,260,c), (417,225,ls), (417,120,o), (304,62,o), (242,62,cs) ); } ); width = 620; }, { associatedMasterId = m003; layerId = "75EC2996-E87C-4405-B059-48FBE7BE3912"; name = "6 May 24 at 07:51"; shapes = ( { closed = 1; nodes = ( (198,190,o), (236,239,o), (423,239,c), (423,208,ls), (423,126,o), (351,93,o), (281,93,cs), (245,93,o), (198,109,o), (198,142,cs) ); }, { closed = 1; nodes = ( (58,51,o), (131,-12,o), (245,-12,cs), (391,-12,o), (430,97,o), (430,97,c), (430,37,o), (469,0,o), (544,0,cs), (569,0,o), (613,4,o), (627,12,c), (627,107,l), (577,96,o), (563,114,o), (563,154,cs), (563,340,ls), (563,459,o), (444,520,o), (315,520,cs), (135,520,o), (71,393,o), (71,393,c), (175,339,l), (192,368,o), (237,405,o), (307,405,cs), (373,405,o), (423,366,o), (423,331,cs), (423,329,l), (187,329,o), (58,273,o), (58,144,cs) ); } ); width = 629; } ); }, { glyphname = aacute.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (207,0); ref = acutecomb; }, { ref = a.ss01; } ); width = 581; }, { layerId = m002; shapes = ( { pos = (232,0); ref = acutecomb; }, { ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (196,12); ref = acutecomb; }, { ref = a.ss01; } ); width = 610; } ); }, { glyphname = abreve.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (116,0); ref = brevecomb; }, { ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (143,0); ref = brevecomb; }, { ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (119,12); ref = brevecomb; }, { ref = a.ss01; } ); width = 610; } ); }, { glyphname = abreveacute.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (143,12); ref = brevecomb_acutecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (82,0); ref = brevecomb_acutecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (97,12); ref = brevecomb_acutecomb; } ); width = 620; } ); }, { glyphname = abrevedotbelow.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (223,-9); ref = dotbelowcomb; }, { pos = (144,12); ref = brevecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (209,-10); ref = dotbelowcomb; }, { pos = (133,0); ref = brevecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (222,-10); ref = dotbelowcomb; }, { pos = (153,0); ref = brevecomb; } ); width = 620; } ); }, { glyphname = abrevegrave.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (143,12); ref = brevecomb_gravecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (72,0); ref = brevecomb_gravecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (89,12); ref = brevecomb_gravecomb; } ); width = 620; } ); }, { glyphname = abrevehookabove.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (143,12); ref = brevecomb_hookabovecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (91,0); ref = brevecomb_hookabovecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (97,12); ref = brevecomb_hookabovecomb; } ); width = 620; } ); }, { glyphname = abrevetilde.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (143,12); ref = brevecomb_tildecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (49,0); ref = brevecomb_tildecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (70,0); ref = brevecomb_tildecomb; } ); width = 620; } ); }, { glyphname = acircumflex.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (136,0); ref = circumflexcomb; }, { ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (140,0); ref = circumflexcomb; }, { ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (114,12); ref = circumflexcomb; }, { ref = a.ss01; } ); width = 610; } ); }, { glyphname = acircumflexacute.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (137,12); ref = circumflexcomb_acutecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (-2,0); ref = circumflexcomb_acutecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (16,12); ref = circumflexcomb_acutecomb; } ); width = 620; } ); }, { glyphname = acircumflexdotbelow.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (223,-9); ref = dotbelowcomb; }, { pos = (137,12); ref = circumflexcomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (209,-10); ref = dotbelowcomb; }, { pos = (145,0); ref = circumflexcomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (222,-10); ref = dotbelowcomb; }, { pos = (147,0); ref = circumflexcomb; } ); width = 620; } ); }, { glyphname = acircumflexgrave.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (137,12); ref = circumflexcomb_gravecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (145,0); ref = circumflexcomb_gravecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (148,12); ref = circumflexcomb_gravecomb; } ); width = 620; } ); }, { glyphname = acircumflexhookabove.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (137,12); ref = circumflexcomb_hookabovecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (145,0); ref = circumflexcomb_hookabovecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (148,12); ref = circumflexcomb_hookabovecomb; } ); width = 620; } ); }, { glyphname = acircumflextilde.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (110,12); ref = circumflexcomb_tildecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (143,0); ref = circumflexcomb_tildecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (141,12); ref = circumflexcomb_tildecomb; } ); width = 620; } ); }, { glyphname = adieresis.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (112,0); ref = dieresiscomb; }, { ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (102,0); ref = dieresiscomb; }, { ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (90,12); ref = dieresiscomb; }, { ref = a.ss01; } ); width = 610; } ); }, { glyphname = adotbelow.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (223,-9); ref = dotbelowcomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (209,-10); ref = dotbelowcomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (222,-10); ref = dotbelowcomb; } ); width = 620; } ); }, { glyphname = agrave.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (128,0); ref = gravecomb; }, { ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (141,0); ref = gravecomb; }, { ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (107,12); ref = gravecomb; }, { ref = a.ss01; } ); width = 610; } ); }, { glyphname = ahookabove.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m003; shapes = ( { ref = a.ss01; }, { pos = (258,12); ref = hookabovecomb; } ); width = 631; }, { layerId = m01; shapes = ( { ref = a.ss01; }, { pos = (242,12); ref = hookabovecomb; } ); width = 581; }, { layerId = m002; shapes = ( { ref = a.ss01; }, { pos = (241,12); ref = hookabovecomb; } ); width = 620; } ); }, { glyphname = amacron.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (130,0); ref = macroncomb; }, { ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (113,0); ref = macroncomb; }, { ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (119,12); ref = macroncomb; }, { ref = a.ss01; } ); width = 610; } ); }, { glyphname = aogonek.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (378,14); ref = ogonekcomb; }, { ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (400,12); ref = ogonekcomb; }, { ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (400,14); ref = ogonekcomb; }, { ref = a.ss01; } ); width = 610; } ); }, { glyphname = aring.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (185,0); ref = ringcomb; }, { ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (175,0); ref = ringcomb; }, { ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (181,12); ref = ringcomb; }, { ref = a.ss01; } ); width = 610; } ); }, { glyphname = atilde.ss01; kernLeft = a2; kernRight = a2; lastChange = "2024-11-02 04:39:32 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (96,0); ref = tildecomb; }, { ref = a.ss01; } ); width = 568; }, { layerId = m002; shapes = ( { pos = (120,0); ref = tildecomb; }, { ref = a.ss01; } ); width = 609; }, { layerId = m003; shapes = ( { pos = (83,12); ref = tildecomb; }, { ref = a.ss01; } ); width = 610; } ); }, { glyphname = g.ss01; kernLeft = g2; kernRight = g2; lastChange = "2024-11-22 05:01:58 +0000"; layers = ( { anchors = ( { name = bottom; pos = (281,-230); }, { name = top; pos = (269,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (448,-230,o), (527,-156,o), (527,-54,cs), (527,17,o), (461,77,o), (349,77,cs), (170,77,ls), (128,77,o), (114,109,o), (114,129,cs), (114,159,o), (142,182,o), (180,192,c), (134,218,l), (74,192,o), (57,157,o), (57,115,cs), (57,78,o), (84,44,o), (112,35,c), (48,16,o), (32,-51,o), (32,-74,cs), (32,-173,o), (117,-230,o), (278,-230,cs) ); }, { closed = 1; nodes = ( (150,-180,o), (90,-140,o), (90,-69,cs), (90,-24,o), (130,27,o), (203,27,c), (342,27,l), (419,28,o), (469,-6,o), (469,-59,cs), (469,-110,o), (437,-180,o), (273,-180,cs) ); }, { closed = 1; nodes = ( (386,176,o), (463,243,o), (463,345,cs), (463,445,o), (386,512,o), (269,512,cs), (155,512,o), (76,445,o), (76,345,cs), (76,243,o), (155,176,o), (269,176,cs) ); }, { closed = 1; nodes = ( (180,226,o), (132,279,o), (132,345,cs), (132,409,o), (180,462,o), (269,462,cs), (359,462,o), (407,409,o), (407,345,cs), (407,279,o), (359,226,o), (269,226,cs) ); }, { closed = 1; nodes = ( (434,484,o), (488,508,o), (537,495,c), (537,553,l), (444,569,o), (402,516,o), (392,475,c), (421,455,l) ); } ); width = 562; }, { anchors = ( { name = bottom; pos = (301,-230); }, { name = top; pos = (290,520); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (508,-230,o), (581,-137,o), (581,-35,cs), (581,41,o), (512,104,o), (391,104,cs), (223,104,ls), (189,104,o), (168,112,o), (168,137,cs), (168,154,o), (182,160,o), (196,166,c), (129,226,l), (66,198,o), (45,161,o), (45,110,cs), (45,61,o), (69,28,o), (114,7,c), (61,-10,o), (38,-50,o), (38,-92,cs), (38,-167,o), (110,-230,o), (294,-230,cs) ); }, { closed = 1; nodes = ( (200,-117,o), (171,-90,o), (171,-55,cs), (171,-33,o), (195,-6,o), (232,-6,c), (372,-6,l), (413,-6,o), (439,-21,o), (439,-56,cs), (439,-91,o), (385,-117,o), (289,-117,cs) ); }, { closed = 1; nodes = ( (430,145,o), (518,226,o), (518,333,cs), (518,440,o), (430,520,o), (290,520,cs), (154,520,o), (64,440,o), (64,333,cs), (64,226,o), (154,145,o), (290,145,cs) ); }, { closed = 1; nodes = ( (229,257,o), (201,293,o), (201,333,cs), (201,372,o), (232,410,o), (290,410,c), (352,410,o), (381,372,o), (381,333,cs), (381,293,o), (352,257,o), (290,257,cs) ); }, { closed = 1; nodes = ( (484,471,o), (551,469,o), (580,456,c), (580,568,l), (487,584,o), (423,525,o), (419,480,c), (471,442,l) ); } ); width = 601; }, { anchors = ( { name = bottom; pos = (290,-230); }, { name = top; pos = (268,512); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (455,-230,o), (534,-156,o), (534,-54,cs), (534,22,o), (484,82,o), (354,82,cs), (178,82,ls), (136,82,o), (119,104,o), (119,129,cs), (119,159,o), (150,182,o), (188,192,c), (117,218,l), (57,192,o), (31,156,o), (31,114,cs), (31,77,o), (52,37,o), (96,16,c), (32,-3,o), (15,-67,o), (15,-93,cs), (15,-167,o), (95,-230,o), (276,-230,cs) ); }, { closed = 1; nodes = ( (150,-154,o), (99,-114,o), (99,-69,cs), (99,-23,o), (141,6,o), (199,6,c), (349,6,l), (415,6,o), (450,-21,o), (450,-69,cs), (450,-114,o), (411,-154,o), (271,-154,cs) ); }, { closed = 1; nodes = ( (389,162,o), (471,236,o), (471,338,cs), (471,438,o), (389,512,o), (268,512,cs), (150,512,o), (66,438,o), (66,338,cs), (66,236,o), (150,162,o), (268,162,cs) ); }, { closed = 1; nodes = ( (185,238,o), (144,281,o), (144,338,cs), (144,393,o), (185,436,o), (268,436,cs), (353,436,o), (393,393,o), (393,338,cs), (393,281,o), (353,238,o), (268,238,cs) ); }, { closed = 1; nodes = ( (447,471,o), (507,473,o), (545,467,c), (545,555,l), (452,571,o), (402,520,o), (398,475,c), (434,442,l) ); } ); width = 580; }, { associatedMasterId = m01; layerId = "3EA75350-8DAD-4CD2-A32D-BF5A6E43F144"; name = "10 Aug 24 at 16:59"; shapes = ( { closed = 1; nodes = ( (443,-229,o), (522,-148,o), (522,-46,cs), (522,20,o), (479,87,o), (352,87,cs), (174,87,ls), (105,87,o), (113,176,o), (173,176,cs), (184,176,o), (255,176,o), (267,176,cs), (399,176,o), (469,247,o), (469,340,cs), (469,375,o), (457,419,o), (424,452,c), (437,481,o), (481,505,o), (530,492,c), (530,555,l), (437,571,o), (399,522,o), (395,477,c), (369,495,o), (335,512,o), (260,512,cs), (119,512,o), (56,420,o), (56,340,cs), (56,280,o), (86,222,o), (133,197,c), (97,193,o), (60,163,o), (60,126,cs), (60,85,o), (89,58,o), (122,49,c), (58,30,o), (37,-31,o), (37,-73,cs), (37,-172,o), (122,-229,o), (278,-229,cs) ); }, { closed = 1; nodes = ( (155,-179,o), (94,-137,o), (94,-66,cs), (94,-25,o), (116,22,o), (173,37,c), (345,37,l), (426,38,o), (464,-2,o), (464,-49,cs), (464,-100,o), (432,-179,o), (273,-179,cs) ); }, { closed = 1; nodes = ( (154,225,o), (114,275,o), (114,344,cs), (114,408,o), (154,463,o), (259,463,cs), (368,463,o), (411,408,o), (411,345,cs), (411,275,o), (368,225,o), (259,225,cs) ); } ); width = 562; }, { associatedMasterId = m002; layerId = "C08E6C22-B8C2-4688-8674-8526B1088BC5"; name = "10 Aug 24 at 17:56"; shapes = ( { closed = 0; nodes = ( (408,480,l), (390,494,o), (346,512,o), (262,512,cs), (116,512,o), (49,424,o), (49,337,cs), (49,280,o), (83,223,o), (130,198,c), (94,194,o), (55,160,o), (55,123,cs), (55,87,o), (79,60,o), (113,48,c), (54,27,o), (30,-31,o), (30,-73,cs), (30,-172,o), (117,-229,o), (275,-229,cs), (453,-229,o), (532,-148,o), (532,-46,cs), (532,20,o), (496,98,o), (367,98,cs), (192,98,ls), (130,98,o), (124,177,o), (200,177,cs), (211,177,o), (257,177,o), (269,177,cs), (404,177,o), (478,246,o), (479,340,cs), (479,375,o), (467,417,o), (444,447,c) ); }, { closed = 1; nodes = ( (155,-154,o), (108,-122,o), (108,-59,cs), (108,-22,o), (134,16,o), (177,26,c), (359,26,l), (431,26,o), (453,-2,o), (454,-49,cs), (455,-100,o), (416,-154,o), (275,-154,cs) ); }, { closed = 1; nodes = ( (163,247,o), (127,289,o), (127,344,cs), (127,397,o), (163,442,o), (261,442,cs), (365,442,o), (401,398,o), (401,345,cs), (401,287,o), (365,247,o), (261,247,cs) ); } ); width = 580; }, { associatedMasterId = m003; layerId = "F79AD273-4246-4744-B8B8-59AC46FF7D92"; name = "10 Aug 24 at 19:33"; shapes = ( { closed = 1; nodes = ( (475,-229,o), (587,-151,o), (587,-46,cs), (587,20,o), (551,111,o), (394,111,cs), (218,111,ls), (174,111,o), (175,166,o), (218,166,cs), (229,166,o), (286,166,o), (298,166,cs), (435,166,o), (534,242,o), (534,340,cs), (534,375,o), (529,414,o), (506,444,c), (519,473,o), (574,469,o), (603,456,c), (603,568,l), (510,584,o), (458,533,o), (454,488,c), (436,502,o), (373,520,o), (291,520,cs), (129,520,o), (51,432,o), (51,337,cs), (51,266,o), (89,220,o), (136,195,c), (100,191,o), (55,164,o), (55,116,cs), (55,75,o), (83,46,o), (116,37,c), (57,16,o), (32,-30,o), (32,-72,cs), (32,-171,o), (152,-229,o), (304,-229,cs) ); }, { closed = 1; nodes = ( (211,-119,o), (172,-96,o), (172,-59,cs), (172,-21,o), (200,1,o), (234,1,cs), (323,1,ls), (402,1,o), (446,-4,o), (446,-51,cs), (446,-94,o), (394,-119,o), (304,-119,cs) ); }, { closed = 1; nodes = ( (230,275,o), (191,298,o), (191,343,cs), (191,387,o), (230,411,o), (290,411,cs), (357,411,o), (394,386,o), (394,343,cs), (394,297,o), (357,275,o), (290,275,cs) ); } ); width = 633; } ); }, { glyphname = gbreve.ss01; kernLeft = g2; kernRight = g2; lastChange = "2024-11-22 05:02:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g.ss01; }, { pos = (123,0); ref = brevecomb; } ); width = 562; }, { layerId = m002; shapes = ( { ref = g.ss01; }, { pos = (124,0); ref = brevecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = g.ss01; }, { pos = (116,12); ref = brevecomb; } ); width = 601; } ); }, { glyphname = gcommaaccent.ss01; kernLeft = g2; kernRight = g2; lastChange = "2024-11-22 05:02:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g.ss01; }, { pos = (208,0); ref = commaturnedabovecomb; } ); width = 562; }, { layerId = m002; shapes = ( { ref = g.ss01; }, { pos = (182,0); ref = commaturnedabovecomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = g.ss01; }, { pos = (200,12); ref = commaturnedabovecomb; } ); width = 601; } ); }, { glyphname = gdotaccent.ss01; kernLeft = g2; kernRight = g2; lastChange = "2024-11-22 05:02:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g.ss01; }, { pos = (201,0); ref = dotaccentcomb; } ); width = 562; }, { layerId = m002; shapes = ( { ref = g.ss01; }, { pos = (194,0); ref = dotaccentcomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = g.ss01; }, { pos = (194,12); ref = dotaccentcomb; } ); width = 601; } ); }, { glyphname = gmacron.ss01; kernLeft = g2; kernRight = g2; lastChange = "2024-11-22 05:02:05 +0000"; layers = ( { layerId = m01; shapes = ( { ref = g.ss01; }, { pos = (127,0); ref = macroncomb; } ); width = 562; }, { layerId = m002; shapes = ( { ref = g.ss01; }, { pos = (89,0); ref = macroncomb; } ); width = 580; }, { layerId = m003; shapes = ( { ref = g.ss01; }, { pos = (114,12); ref = macroncomb; } ); width = 601; } ); }, { glyphname = ordfeminine; lastChange = "2024-11-09 02:46:36 +0000"; layers = ( { guides = ( { pos = (185,370); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (220,370,o), (245,441,o), (245,441,c), (247,395,o), (275,378,o), (308,378,cs), (324,378,o), (333,381,o), (342,386,c), (342,441,l), (311,433,o), (301,445,o), (301,471,cs), (301,594,ls), (301,668,o), (253,712,o), (164,712,cs), (91,712,o), (54,681,o), (28,637,c), (71,604,l), (87,634,o), (115,657,o), (162,657,cs), (205,657,o), (245,634,o), (245,599,cs), (245,591,l), (79,591,o), (20,549,o), (20,471,cs), (20,410,o), (68,370,o), (122,370,cs) ); }, { closed = 1; nodes = ( (342,307,l), (22,308,l), (22,249,l), (342,248,l) ); }, { closed = 1; nodes = ( (101,426,o), (78,444,o), (78,471,cs), (78,514,o), (103,541,o), (245,541,c), (245,526,ls), (245,466,o), (176,426,o), (135,426,cs) ); } ); width = 362; }, { guides = ( { pos = (182,354); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (231,353,o), (246,427,o), (246,427,c), (248,379,o), (278,361,o), (323,361,cs), (340,361,o), (350,364,o), (359,370,c), (359,435,l), (327,427,o), (316,440,o), (316,467,cs), (316,588,ls), (316,666,o), (266,712,o), (172,712,cs), (101,712,o), (57,684,o), (30,637,c), (78,595,l), (88,615,o), (122,644,o), (170,644,cs), (215,644,o), (246,620,o), (246,593,cs), (246,585,l), (72,585,o), (20,533,o), (20,459,cs), (20,395,o), (67,353,o), (128,353,cs) ); }, { closed = 1; nodes = ( (359,307,l), (20,308,l), (20,232,l), (359,231,l) ); }, { closed = 1; nodes = ( (112,421,o), (91,434,o), (91,462,cs), (91,491,o), (110,523,o), (246,523,c), (246,508,ls), (246,454,o), (185,421,o), (142,421,cs) ); } ); width = 379; }, { guides = ( { pos = (201,349); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (232,349,o), (257,420,o), (257,420,c), (257,380,o), (290,357,o), (342,357,cs), (362,357,o), (389,361,o), (399,367,c), (399,442,l), (365,434,o), (355,445,o), (355,472,cs), (355,589,ls), (355,665,o), (295,712,o), (196,712,cs), (133,712,o), (76,692,o), (39,637,c), (103,580,l), (115,600,o), (149,621,o), (191,621,cs), (231,621,o), (257,602,o), (257,581,cs), (257,578,l), (103,580,o), (32,537,o), (32,456,cs), (32,393,o), (69,349,o), (148,349,cs) ); }, { closed = 1; nodes = ( (399,308,l), (30,308,l), (30,198,l), (399,198,l) ); }, { closed = 1; nodes = ( (160,439,o), (142,448,o), (142,467,cs), (142,487,o), (167,501,o), (256,501,c), (256,497,ls), (256,466,o), (229,439,o), (195,439,cs) ); } ); width = 429; } ); unicode = 170; }, { glyphname = ordmasculine; lastChange = "2024-11-09 02:46:36 +0000"; layers = ( { guides = ( { pos = (169,370); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (21,249,l), (317,248,l), (317,307,l), (21,308,l) ); }, { closed = 1; nodes = ( (252,370,o), (320,429,o), (320,541,cs), (320,653,o), (252,712,o), (169,712,cs), (86,712,o), (18,653,o), (18,541,cs), (18,429,o), (86,370,o), (169,370,cs) ); }, { closed = 1; nodes = ( (111,427,o), (77,470,o), (77,540,cs), (77,610,o), (111,656,o), (169,656,cs), (227,656,o), (261,611,o), (261,541,cs), (261,471,o), (227,427,o), (169,427,cs) ); } ); width = 338; }, { guides = ( { pos = (181,354); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (20,232,l), (342,231,l), (342,307,l), (20,308,l) ); }, { closed = 1; nodes = ( (271,354,o), (342,416,o), (342,533,cs), (342,650,o), (271,712,o), (181,712,cs), (91,712,o), (20,650,o), (20,533,cs), (20,416,o), (91,354,o), (181,354,c) ); }, { closed = 1; nodes = ( (125,428,o), (93,468,o), (93,532,cs), (93,596,o), (125,639,o), (181,639,cs), (237,639,o), (269,597,o), (269,533,cs), (269,469,o), (237,428,o), (181,428,c) ); } ); width = 362; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (25,198,l), (378,198,l), (378,308,l), (25,308,l) ); }, { closed = 1; nodes = ( (292,349,o), (383,405,o), (383,530,cs), (383,657,o), (296,712,o), (202,712,cs), (114,712,o), (20,657,o), (20,530,cs), (20,405,o), (109,349,o), (202,349,cs) ); }, { closed = 1; nodes = ( (162,456,o), (141,485,o), (141,530,cs), (141,575,o), (163,605,o), (202,605,cs), (244,605,o), (262,575,o), (262,530,cs), (262,485,o), (244,456,o), (202,456,c) ); } ); width = 403; } ); unicode = 186; }, { glyphname = zero; lastChange = "2025-01-01 06:36:27 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (507,-13,o), (570,171,o), (570,354,cs), (570,547,o), (505,712,o), (313,712,cs), (120,712,o), (54,547,o), (54,354,cs), (54,171,o), (118,-13,o), (313,-13,cs) ); }, { closed = 1; nodes = ( (175,42,o), (116,177,o), (116,355,cs), (116,536,o), (175,657,o), (314,657,cs), (447,657,o), (508,536,o), (508,355,cs), (508,177,o), (447,42,o), (313,42,cs) ); }, { closed = 1; nodes = ( (211,68,l), (481,635,l), (416,635,l), (146,68,l) ); } ); width = 624; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (507,-13,o), (576,171,o), (576,354,cs), (576,547,o), (505,712,o), (313,712,cs), (119,712,o), (48,547,o), (48,354,cs), (48,171,o), (117,-13,o), (313,-13,cs) ); }, { closed = 1; nodes = ( (189,67,o), (140,197,o), (140,355,cs), (140,516,o), (189,632,o), (314,632,cs), (433,632,o), (484,516,o), (484,355,cs), (484,197,o), (433,67,o), (313,67,cs) ); }, { closed = 1; nodes = ( (230,75,l), (488,625,l), (398,625,l), (140,75,l) ); } ); width = 624; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (538,-13,o), (625,161,o), (625,354,cs), (625,557,o), (536,712,o), (340,712,cs), (141,712,o), (52,557,o), (52,354,cs), (52,161,o), (139,-13,o), (340,-13,c) ); }, { closed = 1; nodes = ( (236,117,o), (192,213,o), (192,355,cs), (192,500,o), (236,582,o), (341,582,cs), (440,582,o), (485,500,o), (485,355,cs), (485,213,o), (440,117,o), (340,117,cs) ); }, { closed = 1; nodes = ( (282,86,l), (527,610,l), (397,610,l), (152,86,l) ); } ); width = 677; } ); unicode = 48; }, { glyphname = one; lastChange = "2025-01-01 06:37:07 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (369,0,l), (369,57,l), (242,57,l), (242,699,l), (195,699,l), (195,586,o), (178,563,o), (60,563,c), (60,512,l), (182,512,l), (182,57,l), (55,57,l), (55,0,l) ); } ); width = 424; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (403,0,l), (403,80,l), (270,80,l), (270,699,l), (195,699,l), (195,606,o), (170,592,o), (60,592,c), (60,512,l), (182,512,l), (182,80,l), (55,80,l), (55,0,l) ); } ); width = 458; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (459,0,l), (459,126,l), (330,126,l), (330,699,l), (197,699,l), (197,606,o), (174,592,o), (57,592,c), (57,467,l), (184,467,l), (184,126,l), (53,126,l), (53,0,l) ); } ); width = 512; } ); unicode = 49; }, { glyphname = two; lastChange = "2025-01-01 06:36:49 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (468,1,l), (468,57,l), (128,57,l), (128,290,o), (455,283,o), (455,528,cs), (455,647,o), (365,712,o), (250,712,cs), (190,712,o), (118,677,o), (82,615,cs), (67,589,o), (58,555,o), (58,519,c), (118,519,l), (118,576,o), (159,656,o), (252,656,cs), (368,656,o), (395,584,o), (395,528,cs), (395,337,o), (62,306,o), (62,73,cs), (62,1,l) ); } ); width = 533; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (486,1,l), (486,81,l), (153,81,l), (153,277,o), (475,284,o), (475,528,cs), (475,647,o), (384,712,o), (269,712,c), (189,712,o), (117,677,o), (81,615,c), (66,589,o), (57,555,o), (57,519,c), (145,519,l), (145,576,o), (190,632,o), (268,632,c), (346,632,o), (389,584,o), (389,528,cs), (389,335,o), (60,332,o), (60,81,cs), (60,1,l) ); } ); width = 546; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (519,1,l), (519,127,l), (215,127,l), (215,253,o), (508,276,o), (508,518,cs), (508,642,o), (400,712,o), (279,712,c), (172,712,o), (109,677,o), (73,615,c), (52,579,o), (49,523,o), (49,487,c), (195,487,l), (195,538,o), (216,582,o), (278,582,cs), (330,582,o), (354,542,o), (354,509,cs), (354,341,o), (56,332,o), (56,107,cs), (56,1,l) ); } ); width = 574; } ); unicode = 50; }, { glyphname = three; lastChange = "2025-01-01 06:37:45 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (417,-12,o), (509,69,o), (509,208,cs), (509,324,o), (440,423,o), (293,423,c), (486,639,l), (486,700,l), (75,700,l), (75,644,l), (413,644,l), (212,423,l), (212,370,l), (262,370,ls), (384,370,o), (448,309,o), (448,212,cs), (448,128,o), (397,44,o), (272,44,cs), (179,44,o), (132,88,o), (113,167,cs), (110,179,o), (107,198,o), (107,210,c), (48,203,l), (48,182,o), (51,162,o), (56,144,cs), (83,44,o), (167,-12,o), (272,-12,cs) ); } ); width = 568; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (410,-12,o), (522,71,o), (522,210,cs), (522,337,o), (444,423,o), (321,423,c), (496,615,l), (496,700,l), (69,700,l), (69,620,l), (390,620,l), (203,423,l), (203,355,l), (282,355,ls), (382,355,o), (430,299,o), (430,212,cs), (430,128,o), (371,68,o), (282,68,cs), (209,68,o), (150,94,o), (130,173,c), (127,185,o), (125,198,o), (125,210,c), (35,203,l), (35,182,o), (38,162,o), (42,144,c), (69,43,o), (166,-12,o), (275,-12,cs) ); } ); width = 575; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (455,-12,o), (551,79,o), (551,218,cs), (551,347,o), (468,414,o), (376,423,c), (519,574,l), (519,700,l), (73,700,l), (73,574,l), (362,574,l), (215,423,l), (215,318,l), (291,318,ls), (362,318,o), (406,288,o), (406,215,cs), (406,153,o), (353,118,o), (293,118,cs), (229,118,o), (194,144,o), (178,197,c), (175,209,o), (173,222,o), (173,234,c), (41,203,l), (41,182,o), (44,162,o), (48,144,c), (75,43,o), (174,-12,o), (297,-12,cs) ); } ); width = 598; } ); unicode = 51; }, { glyphname = four; lastChange = "2025-01-01 06:37:37 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (437,1,l), (437,140,l), (554,140,l), (554,200,l), (437,200,l), (437,701,l), (372,701,l), (45,205,l), (45,140,l), (377,140,l), (377,1,l) ); }, { closed = 1; nodes = ( (377,602,l), (377,200,l), (115,200,l) ); } ); width = 599; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (452,1,l), (452,131,l), (572,131,l), (572,212,l), (452,212,l), (452,701,l), (361,701,l), (45,212,l), (45,132,l), (364,132,l), (364,1,l) ); }, { closed = 1; nodes = ( (364,559,l), (364,212,l), (140,212,l) ); } ); width = 612; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (515,1,l), (515,121,l), (622,121,l), (622,248,l), (515,248,l), (515,701,l), (351,701,l), (45,238,l), (45,121,l), (369,121,l), (369,1,l) ); }, { closed = 1; nodes = ( (369,504,l), (369,248,l), (202,248,l) ); } ); width = 661; } ); unicode = 52; }, { glyphname = five; lastChange = "2025-01-01 06:35:58 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (424,-12,o), (524,77,o), (524,234,cs), (524,387,o), (429,469,o), (301,469,cs), (244,469,o), (179,445,o), (159,409,c), (191,640,l), (469,640,l), (469,700,l), (142,700,l), (97,366,l), (172,347,l), (194,386,o), (237,413,o), (289,413,cs), (404,413,o), (462,330,o), (462,234,cs), (462,126,o), (403,44,o), (290,44,cs), (202,44,o), (137,106,o), (124,187,c), (57,163,l), (84,49,o), (180,-12,o), (289,-12,cs) ); } ); width = 569; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (430,-12,o), (542,77,o), (542,234,cs), (542,387,o), (435,469,o), (307,469,cs), (250,469,o), (196,448,o), (173,417,c), (198,620,l), (490,620,l), (490,700,l), (131,700,l), (86,343,l), (173,322,l), (195,361,o), (238,388,o), (290,388,cs), (381,388,o), (450,330,o), (450,234,cs), (450,126,o), (385,68,o), (296,68,cs), (222,68,o), (167,123,o), (153,195,c), (63,163,l), (90,49,o), (186,-12,o), (295,-12,cs) ); } ); width = 597; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (462,-12,o), (573,86,o), (573,243,cs), (573,396,o), (466,487,o), (328,487,cs), (277,487,o), (230,472,o), (218,461,c), (239,574,l), (518,574,l), (518,700,l), (129,700,l), (73,333,l), (202,302,l), (216,338,o), (252,367,o), (304,367,cs), (368,367,o), (423,325,o), (423,243,cs), (423,178,o), (376,118,o), (314,118,cs), (247,118,o), (207,155,o), (195,216,c), (57,172,l), (80,74,o), (167,-12,o), (317,-12,cs) ); } ); width = 616; } ); unicode = 53; }, { glyphname = six; lastChange = "2025-01-01 06:37:31 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (431,-12,o), (522,90,o), (522,229,cs), (522,367,o), (431,462,o), (305,462,cs), (246,462,o), (212,444,o), (200,429,c), (328,700,l), (258,700,l), (121,420,ls), (96,370,o), (63,308,o), (63,226,cs), (63,87,o), (154,-12,o), (297,-12,cs) ); }, { closed = 1; nodes = ( (183,44,o), (125,116,o), (125,226,cs), (125,330,o), (183,406,o), (294,406,cs), (399,406,o), (460,324,o), (460,226,cs), (460,110,o), (399,44,o), (298,44,cs) ); } ); width = 567; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (436,-12,o), (522,97,o), (522,233,cs), (522,368,o), (430,474,o), (294,474,cs), (260,474,o), (216,464,o), (204,449,c), (323,700,l), (223,700,l), (98,426,ls), (75,376,o), (40,288,o), (40,231,cs), (40,92,o), (126,-12,o), (280,-12,cs) ); }, { closed = 1; nodes = ( (183,68,o), (132,147,o), (132,234,cs), (132,309,o), (183,393,o), (277,393,cs), (393,393,o), (430,310,o), (430,234,cs), (430,147,o), (386,68,o), (281,68,cs) ); } ); width = 561; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (459,-12,o), (563,94,o), (563,233,cs), (563,371,o), (479,477,o), (338,477,cs), (292,477,o), (265,460,o), (265,460,c), (376,700,l), (224,700,l), (99,434,ls), (68,367,o), (51,298,o), (51,233,cs), (51,94,o), (146,-12,o), (308,-12,cs) ); }, { closed = 1; nodes = ( (229,109,o), (196,170,o), (196,237,cs), (196,291,o), (229,356,o), (305,356,cs), (389,356,o), (418,291,o), (418,237,cs), (418,170,o), (389,109,o), (309,109,cs) ); } ); width = 600; } ); unicode = 54; }, { glyphname = seven; lastChange = "2025-01-01 06:35:49 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (219,1,l), (458,646,l), (458,700,l), (45,700,l), (45,644,l), (393,644,l), (154,1,l) ); } ); width = 493; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (228,1,l), (473,622,l), (473,700,l), (35,700,l), (35,620,l), (374,620,l), (129,1,l) ); } ); width = 486; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (262,1,l), (492,574,l), (492,700,l), (35,700,l), (35,574,l), (354,574,l), (119,1,l) ); } ); width = 502; } ); unicode = 55; }, { glyphname = eight; lastChange = "2025-01-01 06:37:19 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (440,-12,o), (547,64,o), (547,203,cs), (547,286,o), (492,348,o), (429,384,c), (471,416,o), (511,465,o), (511,530,cs), (511,649,o), (422,712,o), (301,712,cs), (182,712,o), (92,649,o), (92,530,cs), (92,465,o), (134,415,o), (174,384,c), (112,348,o), (58,286,o), (58,203,cs), (58,64,o), (163,-12,o), (302,-12,cs) ); }, { closed = 1; nodes = ( (179,44,o), (120,123,o), (120,203,cs), (120,278,o), (176,350,o), (301,350,cs), (426,350,o), (485,278,o), (485,203,cs), (485,123,o), (428,44,o), (303,44,cs) ); }, { closed = 1; nodes = ( (197,401,o), (154,465,o), (154,530,cs), (154,586,o), (194,656,o), (300,656,cs), (406,656,o), (449,586,o), (449,530,cs), (449,465,o), (406,401,o), (302,401,cs) ); } ); width = 605; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (443,-12,o), (552,64,o), (552,203,cs), (552,286,o), (509,348,o), (446,384,c), (488,416,o), (516,465,o), (516,530,cs), (516,649,o), (427,712,o), (298,712,cs), (171,712,o), (81,649,o), (81,530,cs), (81,465,o), (111,415,o), (151,384,c), (89,348,o), (47,286,o), (47,203,cs), (47,64,o), (154,-12,o), (299,-12,cs) ); }, { closed = 1; nodes = ( (200,68,o), (139,123,o), (139,203,cs), (139,278,o), (195,340,o), (298,340,cs), (401,340,o), (460,278,o), (460,203,cs), (460,123,o), (401,68,o), (300,68,cs) ); }, { closed = 1; nodes = ( (212,418,o), (169,465,o), (169,530,cs), (169,586,o), (209,636,o), (297,636,cs), (385,636,o), (428,586,o), (428,530,cs), (428,465,o), (385,418,o), (299,418,cs) ); } ); width = 600; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (478,-12,o), (598,74,o), (598,203,cs), (598,286,o), (555,348,o), (492,384,c), (534,416,o), (562,465,o), (562,530,cs), (562,639,o), (473,712,o), (325,712,cs), (180,712,o), (89,639,o), (89,530,cs), (89,465,o), (119,415,o), (159,384,c), (97,348,o), (55,286,o), (55,203,cs), (55,74,o), (166,-12,o), (326,-12,cs) ); }, { closed = 1; nodes = ( (244,116,o), (209,157,o), (209,212,cs), (209,260,o), (244,306,o), (325,306,cs), (414,306,o), (444,260,o), (444,212,cs), (444,157,o), (414,116,o), (327,116,cs) ); }, { closed = 1; nodes = ( (278,433,o), (239,458,o), (239,512,cs), (239,550,o), (275,584,o), (324,584,cs), (372,584,o), (412,550,o), (412,512,cs), (412,458,o), (372,433,o), (326,433,cs) ); } ); width = 653; } ); unicode = 56; }, { glyphname = nine; lastChange = "2025-01-01 00:13:20 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (156,712,o), (65,610,o), (65,471,cs), (65,333,o), (156,238,o), (282,238,cs), (341,238,o), (375,256,o), (387,271,c), (259,0,l), (329,0,l), (466,280,ls), (491,330,o), (524,392,o), (524,474,cs), (524,613,o), (433,712,o), (290,712,cs) ); }, { closed = 1; nodes = ( (404,656,o), (462,584,o), (462,474,cs), (462,370,o), (404,294,o), (293,294,cs), (188,294,o), (127,376,o), (127,474,cs), (127,590,o), (188,656,o), (289,656,cs) ); } ); width = 587; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (125,712,o), (39,603,o), (39,467,cs), (39,328,o), (131,222,o), (267,222,cs), (301,222,o), (345,232,o), (357,247,c), (238,0,l), (338,0,l), (463,270,ls), (486,320,o), (521,408,o), (521,469,cs), (521,608,o), (435,712,o), (281,712,cs) ); }, { closed = 1; nodes = ( (378,632,o), (429,553,o), (429,466,cs), (429,386,o), (378,303,o), (284,303,cs), (168,303,o), (131,386,o), (131,466,cs), (131,553,o), (175,632,o), (280,632,cs) ); } ); width = 561; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (159,712,o), (55,606,o), (55,467,cs), (55,324,o), (139,223,o), (280,223,cs), (326,223,o), (353,240,o), (353,240,c), (242,0,l), (394,0,l), (519,271,ls), (550,338,o), (567,407,o), (567,467,cs), (567,606,o), (472,712,o), (310,712,cs) ); }, { closed = 1; nodes = ( (389,591,o), (422,535,o), (422,468,cs), (422,414,o), (389,344,o), (313,344,cs), (229,344,o), (200,414,o), (200,468,cs), (200,535,o), (229,591,o), (309,591,cs) ); } ); width = 597; } ); unicode = 57; }, { glyphname = space; lastChange = "2025-01-08 15:03:30 +0000"; layers = ( { layerId = m01; width = 300; }, { layerId = m002; width = 300; }, { layerId = m003; width = 300; } ); unicode = 32; }, { glyphname = nbspace; lastChange = "2025-01-08 15:07:34 +0000"; layers = ( { layerId = m01; width = 300; }, { layerId = m002; width = 300; }, { layerId = m003; width = 300; } ); metricWidth = space; unicode = 160; }, { glyphname = .notdef; lastChange = "2025-01-08 15:05:16 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (548,-150,l), (548,730,l), (90,730,l), (90,-150,l) ); }, { closed = 1; nodes = ( (146,678,l), (492,678,l), (492,-98,l), (146,-98,l) ); } ); width = 638; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (538,-150,l), (538,730,l), (80,730,l), (80,-150,l) ); }, { closed = 1; nodes = ( (165,652,l), (453,652,l), (453,-72,l), (165,-72,l) ); } ); width = 618; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (548,-150,l), (548,730,l), (60,730,l), (60,-150,l) ); }, { closed = 1; nodes = ( (195,602,l), (413,602,l), (413,-22,l), (195,-22,l) ); } ); width = 608; } ); }, { glyphname = period; kernLeft = "."; kernRight = "."; lastChange = "2025-01-01 03:18:33 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (164,-12,o), (186,10,o), (186,37,cs), (186,66,o), (164,88,o), (136,88,cs), (108,88,o), (85,66,o), (85,37,cs), (85,10,o), (108,-12,o), (136,-12,cs) ); } ); width = 271; }, { associatedMasterId = m01; layerId = "2626C257-C8D1-4BEC-A76B-04061BD798F2"; name = foreground; width = 309; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (181,-12,o), (210,18,o), (210,53,cs), (210,89,o), (181,119,o), (146,119,cs), (110,119,o), (80,89,o), (80,53,cs), (80,18,o), (110,-12,o), (146,-12,cs) ); } ); width = 290; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (218,-16,o), (259,24,o), (259,74,cs), (259,122,o), (218,161,o), (170,161,cs), (121,161,o), (80,122,o), (80,74,cs), (80,24,o), (121,-16,o), (170,-16,cs) ); } ); width = 328; } ); unicode = 46; }, { glyphname = comma; kernLeft = "."; kernRight = "."; lastChange = "2024-12-31 20:56:16 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (137,-92,o), (173,-35,o), (173,27,cs), (173,62,o), (156,88,o), (119,88,cs), (90,88,o), (71,63,o), (71,38,cs), (71,14,o), (92,-7,o), (117,-7,cs), (118,-7,o), (122,-7,o), (123,-7,c), (123,-58,o), (71,-69,o), (71,-69,c), (71,-69,o), (70,-92,o), (71,-92,cs) ); } ); width = 244; }, { associatedMasterId = m01; layerId = "7090993E-1050-418C-BDF4-9BE23E3E6164"; name = foreground; shapes = ( { closed = 1; nodes = ( (132,0,o), (136,0,o), (139,1,c), (139,-76,o), (60,-92,o), (60,-92,c), (60,-92,o), (59,-131,o), (60,-131,cs), (171,-131,o), (214,-21,o), (214,50,c), (214,94,o), (190,142,o), (131,142,cs), (91,142,o), (60,105,o), (60,67,cs), (60,32,o), (92,0,o), (129,0,cs) ); } ); width = 274; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (148,-119,o), (184,-26,o), (185,38,c), (185,76,o), (166,119,o), (112,119,cs), (75,119,o), (50,86,o), (50,53,cs), (50,21,o), (79,-7,o), (110,-7,cs), (112,-7,o), (116,-7,o), (119,-6,c), (119,-74,o), (50,-89,o), (50,-89,c), (50,-89,o), (49,-119,o), (50,-119,cs) ); } ); width = 235; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (182,-144,o), (229,-21,o), (229,58,cs), (229,106,o), (203,160,o), (138,160,cs), (89,160,o), (58,118,o), (58,76,cs), (58,37,o), (91,2,o), (135,2,cs), (139,2,o), (144,2,o), (147,3,c), (147,-83,o), (58,-101,o), (58,-101,c), (58,-101,o), (57,-144,o), (58,-144,cs) ); } ); width = 293; } ); unicode = 44; }, { glyphname = colon; kernLeft = colon; kernRight = colon; lastChange = "2024-12-31 20:57:29 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (183,-12,o), (205,10,o), (205,37,cs), (205,66,o), (183,88,o), (155,88,cs), (127,88,o), (104,66,o), (104,37,cs), (104,10,o), (127,-12,o), (155,-12,cs) ); }, { closed = 1; nodes = ( (183,354,o), (205,376,o), (205,403,cs), (205,432,o), (183,454,o), (155,454,cs), (127,454,o), (104,432,o), (104,403,cs), (104,376,o), (127,354,o), (155,354,cs) ); } ); width = 309; }, { associatedMasterId = m01; layerId = "1129757A-F034-4623-96F5-2C126444C93D"; name = foreground; shapes = ( { closed = 1; nodes = ( (196,-12,o), (229,23,o), (229,62,cs), (229,104,o), (196,139,o), (156,139,cs), (115,139,o), (80,104,o), (80,62,cs), (80,23,o), (115,-12,o), (156,-12,cs) ); }, { closed = 1; nodes = ( (196,289,o), (229,324,o), (229,363,cs), (229,405,o), (196,440,o), (156,440,cs), (115,440,o), (80,405,o), (80,363,cs), (80,324,o), (115,289,o), (156,289,cs) ); } ); width = 309; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (191,-12,o), (220,18,o), (220,53,cs), (220,89,o), (191,119,o), (156,119,cs), (120,119,o), (90,89,o), (90,53,cs), (90,18,o), (120,-12,o), (156,-12,cs) ); }, { closed = 1; nodes = ( (191,349,o), (220,379,o), (220,414,cs), (220,450,o), (191,480,o), (156,480,cs), (120,480,o), (90,450,o), (90,414,cs), (90,379,o), (120,349,o), (156,349,cs) ); } ); width = 310; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (214,-12,o), (253,27,o), (253,75,cs), (253,122,o), (214,160,o), (167,160,cs), (119,160,o), (80,122,o), (80,75,cs), (80,27,o), (119,-12,o), (167,-12,cs) ); }, { closed = 1; nodes = ( (214,329,o), (253,368,o), (253,416,cs), (253,463,o), (214,501,o), (167,501,cs), (119,501,o), (80,463,o), (80,416,cs), (80,368,o), (119,329,o), (167,329,cs) ); } ); width = 333; } ); unicode = 58; }, { glyphname = semicolon; kernLeft = colon; kernRight = colon; lastChange = "2024-12-31 20:57:20 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (150,-92,o), (186,-35,o), (186,27,cs), (186,62,o), (169,88,o), (132,88,cs), (103,88,o), (84,63,o), (84,38,cs), (84,14,o), (105,-7,o), (130,-7,cs), (131,-7,o), (135,-7,o), (136,-7,c), (136,-58,o), (84,-69,o), (84,-69,c), (84,-69,o), (83,-92,o), (84,-92,cs) ); }, { closed = 1; nodes = ( (164,354,o), (186,376,o), (186,403,cs), (186,432,o), (164,454,o), (136,454,cs), (108,454,o), (85,432,o), (85,403,cs), (85,376,o), (108,354,o), (136,354,cs) ); } ); width = 270; }, { associatedMasterId = m01; layerId = "7C7B3130-D28B-462C-85A7-59917ACED75E"; name = foreground; shapes = ( { closed = 1; nodes = ( (180,289,o), (213,324,o), (213,363,cs), (213,405,o), (180,440,o), (140,440,cs), (99,440,o), (64,405,o), (64,363,cs), (64,324,o), (99,289,o), (140,289,cs) ); }, { closed = 1; nodes = ( (132,0,o), (136,0,o), (139,1,c), (139,-76,o), (60,-92,o), (60,-92,c), (60,-92,o), (59,-131,o), (60,-131,cs), (171,-131,o), (214,-21,o), (214,50,c), (214,94,o), (190,142,o), (131,142,cs), (91,142,o), (60,105,o), (60,67,cs), (60,32,o), (92,0,o), (129,0,cs) ); } ); width = 274; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (171,-119,o), (207,-26,o), (208,38,c), (208,76,o), (189,119,o), (135,119,cs), (98,119,o), (73,86,o), (73,53,cs), (73,21,o), (102,-7,o), (133,-7,cs), (135,-7,o), (139,-7,o), (142,-6,c), (142,-74,o), (73,-89,o), (73,-89,c), (73,-89,o), (72,-119,o), (73,-119,cs) ); }, { closed = 1; nodes = ( (177,349,o), (206,379,o), (206,414,cs), (206,450,o), (177,480,o), (142,480,cs), (106,480,o), (76,450,o), (76,414,cs), (76,379,o), (106,349,o), (142,349,cs) ); } ); width = 265; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (205,-144,o), (252,-21,o), (252,58,cs), (252,106,o), (226,160,o), (161,160,cs), (112,160,o), (81,118,o), (81,76,cs), (81,37,o), (114,2,o), (158,2,cs), (162,2,o), (167,2,o), (170,3,c), (170,-83,o), (81,-101,o), (81,-101,c), (81,-101,o), (80,-144,o), (81,-144,cs) ); }, { closed = 1; nodes = ( (214,329,o), (253,368,o), (253,416,cs), (253,463,o), (214,501,o), (167,501,cs), (119,501,o), (80,463,o), (80,416,cs), (80,368,o), (119,329,o), (167,329,cs) ); } ); width = 333; } ); unicode = 59; }, { glyphname = ellipsis; lastChange = "2024-11-09 02:49:45 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (230,0); ref = period; }, { pos = (460,0); ref = period; }, { ref = period; } ); width = 770; }, { layerId = m002; shapes = ( { pos = (230,0); ref = period; }, { pos = (460,0); ref = period; }, { ref = period; } ); width = 764; }, { layerId = m003; shapes = ( { pos = (262,0); ref = period; }, { pos = (537,0); ref = period; }, { pos = (-15,0); ref = period; } ); width = 876; } ); unicode = 8230; }, { glyphname = exclam; lastChange = "2024-09-02 03:26:09 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (178,162,l), (192,700,l), (117,700,l), (134,162,l) ); }, { closed = 1; nodes = ( (181,-12,o), (203,10,o), (203,36,cs), (203,64,o), (181,85,o), (154,85,cs), (127,85,o), (105,64,o), (105,36,cs), (105,10,o), (127,-12,o), (154,-12,cs) ); } ); width = 308; }, { associatedMasterId = m01; layerId = "A93029F6-5A44-47E5-8EBB-60AEDDECB850"; name = foreground; shapes = ( { closed = 1; nodes = ( (205,215,l), (218,720,l), (89,720,l), (105,215,l) ); }, { closed = 1; nodes = ( (196,-12,o), (229,23,o), (229,62,cs), (229,104,o), (196,139,o), (156,139,cs), (115,139,o), (80,104,o), (80,62,cs), (80,23,o), (115,-12,o), (156,-12,cs) ); } ); width = 309; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (191,215,l), (204,700,l), (97,700,l), (113,215,l) ); }, { closed = 1; nodes = ( (185,-12,o), (213,17,o), (213,51,cs), (213,86,o), (185,115,o), (151,115,cs), (116,115,o), (87,86,o), (87,51,cs), (87,17,o), (116,-12,o), (151,-12,cs) ); } ); width = 300; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (242,231,l), (256,700,l), (105,700,l), (120,231,l) ); }, { closed = 1; nodes = ( (228,-12,o), (267,27,o), (267,75,cs), (267,122,o), (228,160,o), (181,160,cs), (133,160,o), (94,122,o), (94,75,cs), (94,27,o), (133,-12,o), (181,-12,cs) ); } ); width = 361; } ); unicode = 33; }, { glyphname = exclamdown; lastChange = "2024-09-02 03:26:09 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (117,-200,l), (192,-200,l), (178,338,l), (134,338,l) ); }, { closed = 1; nodes = ( (127,512,o), (105,490,o), (105,464,cs), (105,436,o), (127,415,o), (154,415,cs), (181,415,o), (203,436,o), (203,464,cs), (203,490,o), (181,512,o), (154,512,cs) ); } ); width = 308; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (100,-200,l), (207,-200,l), (194,285,l), (116,285,l) ); }, { closed = 1; nodes = ( (119,512,o), (90,483,o), (90,449,cs), (90,414,o), (119,385,o), (154,385,cs), (188,385,o), (216,414,o), (216,449,cs), (216,483,o), (188,512,o), (154,512,cs) ); } ); width = 306; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (105,-192,l), (256,-192,l), (242,277,l), (120,277,l) ); }, { closed = 1; nodes = ( (133,520,o), (94,481,o), (94,433,cs), (94,386,o), (133,348,o), (181,348,cs), (228,348,o), (267,386,o), (267,433,cs), (267,481,o), (228,520,o), (181,520,cs) ); } ); width = 361; } ); unicode = 161; }, { glyphname = question; lastChange = "2024-11-02 02:07:58 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,16); target = (0,6); type = Stem; }, { horizontal = 1; place = (-12,200); target = (0,22); type = Stem; }, { origin = (0,12); target = (0,13); type = Stem; }, { origin = (0,22); target = (0,1); type = Stem; }, { origin = (0,19); target = (0,3); type = Stem; }, { origin = (0,22); target = (0,1); type = Stem; } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (260,188,l), (260,392,o), (452,332,o), (452,537,cs), (452,649,o), (366,719,o), (253,719,cs), (180,719,o), (117,685,o), (81,623,c), (66,597,o), (57,566,o), (57,530,c), (119,530,l), (119,611,o), (181,663,o), (252,663,cs), (328,663,o), (390,616,o), (390,536,cs), (390,372,o), (198,426,o), (198,188,c) ); }, { closed = 1; nodes = ( (256,-12,o), (278,10,o), (278,36,cs), (278,64,o), (256,85,o), (229,85,cs), (202,85,o), (180,64,o), (180,36,cs), (180,10,o), (202,-12,o), (229,-12,cs) ); } ); width = 502; }, { associatedMasterId = m01; layerId = "CB6FE323-AA22-456B-834C-E280C3EC3E3D"; name = foreground; shapes = ( { closed = 1; nodes = ( (312,380,o), (500,311,o), (500,530,cs), (500,649,o), (404,719,o), (289,719,c), (209,719,o), (137,685,o), (101,623,c), (86,597,o), (77,566,o), (77,530,c), (174,530,l), (174,587,o), (210,636,o), (288,636,c), (366,636,o), (405,592,o), (405,536,cs), (405,372,o), (208,437,o), (208,216,cs), (208,216,o), (312,216,o), (312,216,c) ); }, { closed = 1; nodes = ( (308,-12,o), (341,23,o), (341,62,cs), (341,104,o), (308,139,o), (268,139,cs), (227,139,o), (192,104,o), (192,62,cs), (192,23,o), (227,-12,o), (268,-12,cs) ); } ); width = 587; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (280,200,l), (280,371,o), (463,322,o), (463,536,cs), (463,645,o), (371,719,o), (256,719,cs), (180,719,o), (108,685,o), (72,623,c), (57,597,o), (48,566,o), (48,530,c), (130,530,l), (130,587,o), (181,639,o), (255,639,cs), (333,639,o), (373,592,o), (373,536,cs), (373,372,o), (188,421,o), (188,200,c) ); }, { closed = 1; nodes = ( (265,-12,o), (293,17,o), (293,51,cs), (293,86,o), (265,115,o), (231,115,cs), (196,115,o), (167,86,o), (167,51,cs), (167,17,o), (196,-12,o), (231,-12,cs) ); } ); width = 511; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (317,209,l), (317,356,o), (488,325,o), (488,531,cs), (488,650,o), (398,720,o), (266,720,cs), (169,720,o), (102,686,o), (66,624,cs), (51,598,o), (42,544,o), (42,508,c), (194,508,l), (194,555,o), (211,590,o), (265,590,cs), (312,590,o), (334,560,o), (334,527,cs), (334,383,o), (165,427,o), (165,209,c) ); }, { closed = 1; nodes = ( (290,-16,o), (329,23,o), (329,71,cs), (329,118,o), (290,156,o), (243,156,cs), (195,156,o), (156,118,o), (156,71,cs), (156,23,o), (195,-16,o), (243,-16,cs) ); } ); width = 528; } ); unicode = 63; }, { glyphname = questiondown; lastChange = "2024-11-22 04:52:13 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (329,-219,o), (392,-185,o), (428,-123,c), (443,-97,o), (452,-66,o), (452,-30,c), (390,-30,l), (390,-111,o), (328,-163,o), (257,-163,cs), (181,-163,o), (119,-116,o), (119,-36,cs), (119,128,o), (311,74,o), (311,312,c), (249,312,l), (249,108,o), (57,168,o), (57,-37,cs), (57,-149,o), (143,-219,o), (256,-219,cs) ); }, { closed = 1; nodes = ( (307,415,o), (329,436,o), (329,464,cs), (329,490,o), (307,512,o), (280,512,cs), (253,512,o), (231,490,o), (231,464,cs), (231,436,o), (253,415,o), (280,415,cs) ); } ); width = 495; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (331,-219,o), (403,-185,o), (439,-123,c), (454,-97,o), (463,-66,o), (463,-30,c), (381,-30,l), (381,-87,o), (330,-139,o), (256,-139,cs), (178,-139,o), (138,-92,o), (138,-36,cs), (138,128,o), (323,79,o), (323,300,c), (231,300,l), (231,129,o), (48,178,o), (48,-36,cs), (48,-145,o), (140,-219,o), (255,-219,cs) ); }, { closed = 1; nodes = ( (315,385,o), (344,414,o), (344,449,cs), (344,483,o), (315,512,o), (280,512,cs), (246,512,o), (218,483,o), (218,449,cs), (218,414,o), (246,385,o), (280,385,cs) ); } ); width = 511; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (361,-216,o), (428,-182,o), (464,-120,cs), (479,-94,o), (488,-40,o), (488,-4,c), (336,-4,l), (336,-51,o), (319,-86,o), (265,-86,cs), (218,-86,o), (196,-56,o), (196,-23,cs), (196,121,o), (365,77,o), (365,295,c), (213,295,l), (213,148,o), (42,179,o), (42,-27,cs), (42,-146,o), (132,-216,o), (264,-216,cs) ); }, { closed = 1; nodes = ( (335,348,o), (374,386,o), (374,433,cs), (374,481,o), (335,520,o), (287,520,cs), (240,520,o), (201,481,o), (201,433,cs), (201,386,o), (240,348,o), (287,348,cs) ); } ); width = 528; } ); unicode = 191; }, { glyphname = periodcentered; lastChange = "2024-09-10 05:31:18 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (163,255,o), (185,277,o), (185,304,cs), (185,333,o), (163,355,o), (135,355,cs), (107,355,o), (84,333,o), (84,304,cs), (84,277,o), (107,255,o), (135,255,cs) ); } ); width = 269; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (189,239,o), (218,268,o), (218,304,cs), (218,340,o), (189,369,o), (153,369,cs), (117,369,o), (88,340,o), (88,304,cs), (88,268,o), (117,239,o), (153,239,cs) ); } ); width = 306; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (215,217,o), (256,257,o), (256,307,cs), (256,355,o), (215,394,o), (167,394,cs), (118,394,o), (77,355,o), (77,307,cs), (77,257,o), (118,217,o), (167,217,cs) ); } ); width = 333; } ); unicode = 183; }, { glyphname = bullet; lastChange = "2024-09-02 03:26:09 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (172,247,o), (199,275,o), (199,306,cs), (199,339,o), (172,367,o), (141,367,cs), (108,367,o), (80,339,o), (80,306,cs), (80,275,o), (108,247,o), (141,247,cs) ); } ); width = 279; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (216,223,o), (254,262,o), (254,307,cs), (254,354,o), (216,393,o), (171,393,cs), (124,393,o), (85,354,o), (85,307,cs), (85,262,o), (124,223,o), (171,223,cs) ); } ); width = 339; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (240,197,o), (290,247,o), (290,309,cs), (290,370,o), (240,419,o), (179,419,cs), (117,419,o), (67,370,o), (67,309,cs), (67,247,o), (117,197,o), (179,197,cs) ); } ); width = 357; } ); unicode = 8226; }, { glyphname = asterisk; lastChange = "2024-08-14 07:25:26 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (260,489,l), (218,489,l), (345,339,l), (389,374,l), (255,533,l), (251,488,l), (419,567,l), (397,616,l), (233,540,l), (268,522,l), (268,712,l), (212,712,l), (212,519,l), (247,536,l), (81,613,l), (60,567,l), (228,488,l), (223,533,l), (89,374,l), (132,339,l) ); } ); width = 479; }, { associatedMasterId = m01; layerId = "52A87255-65B2-4E80-95F9-0AF50A018D84"; name = foreground; shapes = ( { closed = 1; nodes = ( (146,321,l), (246,438,l), (344,320,l), (407,374,l), (310,489,l), (436,553,l), (400,624,l), (287,568,l), (287,714,l), (204,714,l), (204,568,l), (92,624,l), (55,553,l), (180,490,l), (83,374,l) ); } ); width = 491; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (273,489,l), (215,489,l), (350,330,l), (402,374,l), (268,533,l), (256,480,l), (431,562,l), (403,624,l), (238,548,l), (279,522,l), (279,712,l), (211,712,l), (211,519,l), (252,545,l), (86,622,l), (58,561,l), (232,480,l), (220,533,l), (86,374,l), (138,330,l) ); } ); width = 489; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (307,489,l), (207,489,l), (361,310,l), (437,374,l), (303,533,l), (270,459,l), (462,551,l), (418,646,l), (252,570,l), (315,522,l), (315,712,l), (205,712,l), (205,519,l), (266,568,l), (95,646,l), (50,548,l), (246,456,l), (214,533,l), (80,374,l), (159,311,l) ); } ); width = 512; } ); unicode = 42; }, { glyphname = numbersign; lastChange = "2024-10-21 04:20:59 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (1,3); target = (1,2); type = Stem; }, { horizontal = 1; origin = (3,3); target = (3,2); type = Stem; }, { origin = (1,3); target = (3,0); type = Stem; } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (462,0,l), (635,720,l), (573,720,l), (400,0,l) ); }, { closed = 1; nodes = ( (649,183,l), (648,239,l), (74,239,l), (75,183,l) ); }, { closed = 1; nodes = ( (225,0,l), (398,720,l), (336,720,l), (163,0,l) ); }, { closed = 1; nodes = ( (713,482,l), (713,538,l), (139,538,l), (139,482,l) ); } ); width = 787; }, { associatedMasterId = m01; layerId = "21C28542-C2BA-4EFE-9B17-DE8F14164D30"; name = foreground; shapes = ( { closed = 1; nodes = ( (227,0,l), (400,720,l), (306,720,l), (133,0,l) ); }, { closed = 1; nodes = ( (462,0,l), (635,720,l), (541,720,l), (368,0,l) ); }, { closed = 1; nodes = ( (707,425,l), (707,523,l), (133,523,l), (133,425,l) ); }, { closed = 1; nodes = ( (644,199,l), (644,297,l), (70,297,l), (70,199,l) ); } ); width = 777; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (460,0,l), (633,720,l), (560,720,l), (387,0,l) ); }, { closed = 1; nodes = ( (646,187,l), (646,267,l), (72,267,l), (72,187,l) ); }, { closed = 1; nodes = ( (232,0,l), (405,720,l), (332,720,l), (159,0,l) ); }, { closed = 1; nodes = ( (710,457,l), (710,537,l), (136,537,l), (136,457,l) ); } ); width = 782; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (509,0,l), (682,720,l), (548,720,l), (375,0,l) ); }, { closed = 1; nodes = ( (688,152,l), (688,278,l), (65,278,l), (65,152,l) ); }, { closed = 1; nodes = ( (257,0,l), (430,720,l), (296,720,l), (123,0,l) ); }, { closed = 1; nodes = ( (735,416,l), (735,542,l), (118,542,l), (118,416,l) ); } ); width = 800; } ); unicode = 35; }, { glyphname = slash; lastChange = "2025-01-01 03:23:16 +0000"; layers = ( { guides = ( { pos = (208,-160); }, { pos = (177,775); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (82,-160,l), (430,775,l), (365,775,l), (17,-160,l) ); } ); width = 438; }, { associatedMasterId = m01; layerId = "B6C497E8-57DB-4813-80B4-1FC1C004D65A"; name = foreground; shapes = ( { closed = 1; nodes = ( (97,0,l), (390,720,l), (303,720,l), (10,0,l) ); } ); width = 385; }, { guides = ( { pos = (-230,-160); }, { pos = (-230,776); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (106,-160,l), (459,776,l), (369,776,l), (16,-160,l) ); } ); width = 460; }, { guides = ( { pos = (-242,-159); }, { pos = (6,775); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (148,-161,l), (502,775,l), (362,775,l), (8,-161,l) ); } ); width = 482; } ); unicode = 47; }, { glyphname = backslash; lastChange = "2025-01-01 03:27:34 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (421,-160,l), (73,775,l), (8,775,l), (356,-160,l) ); } ); width = 438; }, { associatedMasterId = m01; layerId = "343D6EAE-1DF2-4E0E-B6B5-032545DCA862"; name = foreground; shapes = ( { closed = 1; nodes = ( (82,720,l), (-5,720,l), (288,0,l), (375,0,l) ); } ); width = 385; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (444,-160,l), (91,776,l), (1,776,l), (354,-160,l) ); } ); width = 460; }, { guides = ( { pos = (-270,-159); }, { pos = (-22,775); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (474,-161,l), (120,775,l), (-20,775,l), (334,-161,l) ); } ); width = 482; } ); unicode = 92; }, { glyphname = periodcentered.loclCAT; lastChange = "2024-09-05 20:47:01 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (157,257,o), (178,279,o), (178,303,cs), (178,329,o), (157,351,o), (133,351,cs), (107,351,o), (85,329,o), (85,303,cs), (85,279,o), (107,257,o), (133,257,cs) ); } ); width = 263; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (179,239,o), (208,269,o), (208,304,cs), (208,340,o), (179,370,o), (144,370,cs), (108,370,o), (78,340,o), (78,304,cs), (78,269,o), (108,239,o), (144,239,cs) ); } ); width = 286; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (215,217,o), (256,257,o), (256,307,cs), (256,355,o), (215,394,o), (167,394,cs), (118,394,o), (77,355,o), (77,307,cs), (77,257,o), (118,217,o), (167,217,cs) ); } ); width = 333; } ); }, { glyphname = periodcentered.loclCAT.case; lastChange = "2024-09-02 03:26:04 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (157,257,o), (178,279,o), (178,303,cs), (178,329,o), (157,351,o), (133,351,cs), (107,351,o), (85,329,o), (85,303,cs), (85,279,o), (107,257,o), (133,257,cs) ); } ); width = 263; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (186,239,o), (215,269,o), (215,304,cs), (215,340,o), (186,370,o), (151,370,cs), (115,370,o), (85,340,o), (85,304,cs), (85,269,o), (115,239,o), (151,239,cs) ); } ); width = 300; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (215,217,o), (256,257,o), (256,307,cs), (256,355,o), (215,394,o), (167,394,cs), (118,394,o), (77,355,o), (77,307,cs), (77,257,o), (118,217,o), (167,217,cs) ); } ); width = 333; } ); }, { glyphname = hyphen; lastChange = "2024-12-31 20:49:40 +0000"; layers = ( { guides = ( { pos = (259,296); } ); hints = ( { horizontal = 1; origin = (0,3); target = (0,2); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (418,268,l), (418,324,l), (70,324,l), (70,268,l) ); } ); width = 488; }, { associatedMasterId = m01; layerId = "A4E3A6E5-E339-49A3-BA7C-5350A83F40F5"; name = foreground; shapes = ( { closed = 1; nodes = ( (428,247,l), (428,345,l), (80,345,l), (80,247,l) ); } ); width = 508; }, { guides = ( { pos = (251,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (418,253,l), (418,337,l), (70,337,l), (70,253,l) ); } ); width = 488; }, { guides = ( { pos = (251,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (461,230,l), (461,358,l), (65,358,l), (65,230,l) ); } ); width = 526; } ); unicode = 45; }, { glyphname = endash; lastChange = "2024-12-31 20:49:55 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (484,270,l), (484,322,l), (70,322,l), (70,270,l) ); } ); width = 554; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (483,256,l), (483,334,l), (70,334,l), (70,256,l) ); } ); width = 553; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (517,236,l), (517,352,l), (65,352,l), (65,236,l) ); } ); width = 582; } ); unicode = 8211; }, { glyphname = emdash; lastChange = "2024-12-31 20:50:46 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (814,270,l), (814,322,l), (70,322,l), (70,270,l) ); } ); width = 884; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (816,254,l), (816,332,l), (71,332,l), (71,254,l) ); } ); width = 886; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (853,236,l), (853,352,l), (65,352,l), (65,236,l) ); } ); width = 918; } ); unicode = 8212; }, { glyphname = underscore; lastChange = "2024-08-26 01:53:25 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,3); target = (0,2); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (456,0,l), (456,52,l), (-3,52,l), (-3,0,l) ); } ); width = 453; }, { associatedMasterId = m01; layerId = "1AB4D43C-2735-4A3F-815D-32BCD16357D5"; name = foreground; shapes = ( { closed = 1; nodes = ( (546,0,l), (546,98,l), (60,98,l), (60,0,l) ); } ); width = 606; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (483,0,l), (483,78,l), (-3,78,l), (-3,0,l) ); } ); width = 480; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (532,0,l), (532,116,l), (-3,116,l), (-3,0,l) ); } ); width = 529; } ); unicode = 95; }, { glyphname = parenleft; lastChange = "2025-01-01 06:23:55 +0000"; layers = ( { guides = ( { pos = (183,-160); }, { pos = (152,775); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (264,-160,l), (267,-158,o), (134,4,o), (134,308,c), (134,610,o), (267,773,o), (264,775,c), (202,775,l), (203,775,o), (70,579,o), (70,308,c), (70,35,o), (203,-160,o), (203,-160,c) ); } ); width = 299; }, { associatedMasterId = m01; layerId = "A003329C-BEC9-4397-9AAD-9155A5EADE70"; name = foreground; shapes = ( { closed = 1; nodes = ( (62,109,o), (172,-60,o), (172,-60,c), (280,-60,l), (283,-58,o), (163,82,o), (163,345,c), (163,607,o), (283,748,o), (280,750,c), (172,750,l), (172,750,o), (62,580,o), (62,345,c) ); } ); width = 313; }, { guides = ( { pos = (-216,-160); }, { pos = (-216,776); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (278,-160,l), (281,-158,o), (158,5,o), (158,308,cs), (158,610,o), (281,774,o), (278,776,c), (194,776,l), (194,776,o), (70,580,o), (70,308,cs), (70,35,o), (193,-160,o), (193,-160,c) ); } ); width = 308; }, { guides = ( { pos = (-314,-159); }, { pos = (-66,775); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (326,-159,l), (329,-157,o), (198,4,o), (198,309,c), (198,611,o), (328,773,o), (325,775,c), (186,775,l), (186,775,o), (48,579,o), (48,309,c), (48,36,o), (187,-159,o), (187,-159,c) ); } ); width = 394; } ); unicode = 40; }, { glyphname = parenright; lastChange = "2024-11-22 04:51:58 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (96,-160,o), (229,35,o), (229,308,c), (229,579,o), (96,775,o), (97,775,c), (35,775,l), (32,773,o), (165,610,o), (165,308,c), (165,4,o), (32,-158,o), (35,-160,c), (96,-160,l) ); } ); width = 299; }, { associatedMasterId = m01; layerId = "FEA7CF8C-5847-4A35-8A6B-C76339FB953A"; name = foreground; shapes = ( { closed = 1; nodes = ( (243,580,o), (133,750,o), (133,750,c), (25,750,l), (22,748,o), (142,607,o), (142,345,c), (142,82,o), (22,-58,o), (25,-60,c), (133,-60,l), (133,-60,o), (243,109,o), (243,345,c) ); } ); width = 303; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (115,-160,o), (238,35,o), (238,308,cs), (238,580,o), (114,776,o), (114,776,c), (30,776,l), (27,774,o), (150,610,o), (150,308,cs), (150,5,o), (27,-158,o), (30,-160,c), (115,-160,l) ); } ); width = 308; }, { guides = ( { pos = (-297,-159); }, { pos = (-49,775); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (207,-159,o), (346,36,o), (346,309,c), (346,579,o), (208,775,o), (208,775,c), (69,775,l), (66,773,o), (196,611,o), (196,309,c), (196,4,o), (65,-157,o), (68,-159,c), (207,-159,l) ); } ); width = 394; } ); unicode = 41; }, { glyphname = braceleft; lastChange = "2025-01-01 06:26:25 +0000"; layers = ( { guides = ( { pos = (238,-160); }, { pos = (207,775); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (337,-159,l), (337,-105,l), (278,-105,ls), (230,-105,o), (201,-77,o), (201,-18,cs), (201,205,ls), (201,270,o), (178,294,o), (143,303,c), (143,311,l), (178,321,o), (201,340,o), (201,416,cs), (201,634,ls), (201,693,o), (230,721,o), (278,721,cs), (337,721,l), (337,775,l), (271,775,ls), (171,775,o), (141,712,o), (141,632,cs), (141,416,ls), (141,378,o), (110,340,o), (65,340,c), (65,278,l), (111,278,o), (141,251,o), (141,205,cs), (141,-16,ls), (141,-96,o), (171,-159,o), (271,-159,cs) ); } ); width = 370; }, { guides = ( { pos = (-216,-160); }, { pos = (-216,776); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (367,-159,l), (367,-79,l), (289,-79,ls), (246,-79,o), (219,-46,o), (219,0,cs), (219,209,ls), (219,267,o), (193,296,o), (147,305,c), (147,313,l), (193,323,o), (219,354,o), (219,414,cs), (219,616,ls), (219,673,o), (246,695,o), (289,695,cs), (367,695,l), (367,775,l), (272,775,ls), (191,775,o), (131,705,o), (131,624,cs), (131,444,ls), (131,389,o), (107,357,o), (55,357,c), (55,266,l), (107,266,o), (131,235,o), (131,180,cs), (131,-9,ls), (131,-90,o), (191,-159,o), (272,-159,cs) ); } ); width = 400; }, { guides = ( { pos = (-253,-159); }, { pos = (-5,775); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (420,-159,l), (420,-33,l), (326,-33,ls), (291,-33,o), (272,0,o), (272,40,cs), (272,209,ls), (272,267,o), (241,296,o), (195,305,c), (195,313,l), (241,323,o), (272,354,o), (272,414,cs), (272,576,ls), (272,626,o), (291,649,o), (326,649,cs), (420,649,l), (420,775,l), (280,775,ls), (197,775,o), (132,703,o), (132,622,cs), (132,455,ls), (132,400,o), (108,376,o), (56,376,c), (56,246,l), (108,246,o), (132,223,o), (132,168,cs), (132,-6,ls), (132,-87,o), (197,-159,o), (280,-159,cs) ); } ); width = 442; } ); unicode = 123; }, { glyphname = braceright; lastChange = "2024-10-11 09:32:47 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (199,-159,o), (229,-96,o), (229,-16,cs), (229,205,ls), (229,251,o), (259,277,o), (305,277,c), (305,342,l), (260,342,o), (229,378,o), (229,416,cs), (229,632,ls), (229,712,o), (199,775,o), (99,775,cs), (33,775,l), (33,721,l), (92,721,ls), (140,721,o), (169,693,o), (169,634,cs), (169,416,ls), (169,340,o), (192,321,o), (227,311,c), (227,303,l), (192,294,o), (169,270,o), (169,205,cs), (169,-18,ls), (169,-77,o), (140,-105,o), (92,-105,cs), (33,-105,l), (33,-159,l), (99,-159,ls) ); } ); width = 370; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (209,-159,o), (269,-90,o), (269,-9,cs), (269,180,ls), (269,235,o), (293,266,o), (345,266,c), (345,357,l), (293,357,o), (269,389,o), (269,444,cs), (269,624,ls), (269,705,o), (209,775,o), (128,775,cs), (33,775,l), (33,695,l), (111,695,ls), (154,695,o), (181,673,o), (181,616,cs), (181,414,ls), (181,354,o), (204,323,o), (250,313,c), (250,305,l), (204,296,o), (181,267,o), (181,209,cs), (181,0,ls), (181,-46,o), (154,-79,o), (111,-79,cs), (33,-79,l), (33,-159,l), (128,-159,ls) ); } ); width = 400; }, { guides = ( { pos = (-373,-159); }, { pos = (-125,775); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (245,-159,o), (310,-87,o), (310,-6,cs), (310,168,ls), (310,223,o), (334,246,o), (386,246,c), (386,376,l), (334,376,o), (310,400,o), (310,455,cs), (310,622,ls), (310,703,o), (245,775,o), (162,775,cs), (22,775,l), (22,649,l), (116,649,ls), (151,649,o), (170,626,o), (170,576,cs), (170,414,ls), (170,354,o), (201,323,o), (247,313,c), (247,305,l), (201,296,o), (170,267,o), (170,209,cs), (170,40,ls), (170,0,o), (151,-33,o), (116,-33,cs), (22,-33,l), (22,-159,l), (162,-159,ls) ); } ); width = 442; } ); unicode = 125; }, { glyphname = bracketleft; lastChange = "2025-01-01 06:30:26 +0000"; layers = ( { guides = ( { pos = (181,-160); }, { pos = (150,775); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (315,-160,l), (315,-104,l), (160,-104,l), (160,718,l), (316,718,l), (316,774,l), (100,774,l), (100,-160,l) ); } ); width = 356; }, { guides = ( { pos = (-259,-160); }, { pos = (-259,776); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (344,-160,l), (344,-84,l), (175,-84,l), (175,700,l), (345,700,l), (345,775,l), (95,775,l), (95,-160,l) ); } ); width = 383; }, { guides = ( { pos = (-305,-159); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (406,-158,l), (406,-32,l), (230,-32,l), (230,649,l), (407,649,l), (407,775,l), (90,775,l), (90,-158,l) ); } ); width = 439; } ); unicode = 91; }, { glyphname = bracketright; lastChange = "2024-09-09 06:30:31 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (256,774,l), (40,774,l), (40,718,l), (196,718,l), (196,-104,l), (41,-104,l), (41,-160,l), (256,-160,l) ); } ); width = 356; }, { guides = ( { pos = (-259,-160); }, { pos = (-259,776); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (345,775,l), (95,775,l), (95,700,l), (265,700,l), (265,-84,l), (96,-84,l), (96,-160,l), (345,-160,l) ); } ); width = 383; }, { guides = ( { pos = (-305,-159); }, { pos = (-57,750); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (408,775,l), (91,775,l), (91,649,l), (268,649,l), (268,-32,l), (92,-32,l), (92,-158,l), (408,-158,l) ); } ); width = 439; } ); unicode = 93; }, { glyphname = quotesinglbase; lastChange = "2024-11-09 02:51:31 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (-41,0); ref = comma; } ); width = 162; }, { layerId = m002; shapes = ( { pos = (-20,0); ref = comma; } ); width = 195; }, { layerId = m003; shapes = ( { pos = (-8,-15); ref = comma; } ); width = 271; } ); unicode = 8218; }, { glyphname = quotedblbase; lastChange = "2024-11-09 02:51:31 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (97,0); ref = comma; }, { pos = (-41,0); ref = comma; } ); width = 300; }, { layerId = m002; shapes = ( { pos = (163,0); ref = comma; }, { pos = (-20,0); ref = comma; } ); width = 378; }, { layerId = m003; shapes = ( { pos = (200,-15); ref = comma; }, { pos = (-8,-15); ref = comma; } ); width = 479; } ); unicode = 8222; }, { glyphname = quotedblleft; kernLeft = quoteleft; kernRight = quoteleft; lastChange = "2025-01-01 03:29:03 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (96,712,o), (60,655,o), (60,593,cs), (60,558,o), (82,532,o), (116,532,cs), (141,532,o), (162,557,o), (162,582,c), (162,606,o), (141,627,o), (116,627,cs), (115,627,o), (111,627,o), (110,627,c), (110,678,o), (162,689,o), (162,689,c), (162,689,o), (163,712,o), (162,712,cs) ); }, { closed = 1; nodes = ( (234,712,o), (198,655,o), (198,593,cs), (198,558,o), (220,532,o), (254,532,cs), (279,532,o), (300,557,o), (300,582,cs), (300,606,o), (279,627,o), (254,627,cs), (253,627,o), (249,627,o), (248,627,c), (248,678,o), (300,689,o), (300,689,c), (300,689,o), (301,712,o), (300,712,cs) ); } ); width = 361; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (90,720,o), (54,627,o), (53,563,c), (53,525,o), (74,482,o), (126,482,cs), (160,482,o), (188,515,o), (188,548,cs), (188,580,o), (159,608,o), (128,608,cs), (126,608,o), (122,608,o), (119,607,c), (119,675,o), (188,690,o), (188,690,c), (188,690,o), (189,720,o), (188,720,cs) ); }, { closed = 1; nodes = ( (278,720,o), (242,627,o), (241,563,c), (241,525,o), (262,482,o), (314,482,cs), (348,482,o), (376,515,o), (376,548,cs), (376,580,o), (347,608,o), (316,608,cs), (314,608,o), (310,608,o), (307,607,c), (307,675,o), (376,690,o), (376,690,c), (376,690,o), (377,720,o), (376,720,cs) ); } ); width = 432; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (97,721,o), (50,598,o), (50,519,cs), (50,471,o), (76,417,o), (141,417,cs), (187,417,o), (221,459,o), (221,501,cs), (221,540,o), (185,575,o), (144,575,cs), (140,575,o), (135,575,o), (132,574,c), (132,660,o), (221,678,o), (221,678,c), (221,678,o), (222,721,o), (221,721,cs) ); }, { closed = 1; nodes = ( (300,721,o), (253,598,o), (253,519,cs), (253,471,o), (279,417,o), (344,417,cs), (390,417,o), (424,459,o), (424,501,cs), (424,540,o), (388,575,o), (347,575,cs), (343,575,o), (338,575,o), (335,574,c), (335,660,o), (424,678,o), (424,678,c), (424,678,o), (425,721,o), (424,721,cs) ); } ); width = 467; } ); unicode = 8220; }, { glyphname = quotedblright; kernLeft = quoteright; kernRight = quoteright; lastChange = "2024-12-31 22:56:55 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (265,532,o), (301,589,o), (301,651,cs), (301,686,o), (279,712,o), (245,712,cs), (220,712,o), (199,687,o), (199,662,c), (199,638,o), (220,617,o), (245,617,cs), (246,617,o), (250,617,o), (251,617,c), (251,566,o), (199,555,o), (199,555,c), (199,555,o), (199,532,o), (199,532,cs) ); }, { closed = 1; nodes = ( (131,532,o), (167,589,o), (167,651,cs), (167,686,o), (145,712,o), (111,712,cs), (86,712,o), (65,687,o), (65,662,cs), (65,638,o), (86,617,o), (111,617,cs), (112,617,o), (116,617,o), (117,617,c), (117,566,o), (65,555,o), (65,555,c), (65,555,o), (64,532,o), (65,532,cs) ); } ); width = 361; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (340,482,o), (376,575,o), (377,639,c), (377,677,o), (356,720,o), (304,720,cs), (270,720,o), (242,687,o), (242,654,cs), (242,622,o), (271,594,o), (302,594,cs), (304,594,o), (308,594,o), (311,595,c), (311,527,o), (242,512,o), (242,512,c), (242,512,o), (241,482,o), (242,482,cs) ); }, { closed = 1; nodes = ( (152,482,o), (188,575,o), (189,639,c), (189,677,o), (168,720,o), (116,720,cs), (82,720,o), (54,687,o), (54,654,cs), (54,622,o), (83,594,o), (114,594,cs), (116,594,o), (120,594,o), (123,595,c), (123,527,o), (54,512,o), (54,512,c), (54,512,o), (53,482,o), (54,482,cs) ); } ); width = 432; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (372,417,o), (419,540,o), (419,619,cs), (419,667,o), (393,721,o), (328,721,cs), (282,721,o), (248,679,o), (248,637,cs), (248,598,o), (284,563,o), (325,563,cs), (329,563,o), (334,563,o), (337,564,c), (337,478,o), (248,460,o), (248,460,c), (248,460,o), (247,417,o), (248,417,cs) ); }, { closed = 1; nodes = ( (169,417,o), (216,540,o), (216,619,cs), (216,667,o), (190,721,o), (125,721,cs), (79,721,o), (45,679,o), (45,637,cs), (45,598,o), (81,563,o), (122,563,cs), (126,563,o), (131,563,o), (134,564,c), (134,478,o), (45,460,o), (45,460,c), (45,460,o), (44,417,o), (45,417,cs) ); } ); width = 469; } ); unicode = 8221; }, { glyphname = quoteleft; kernLeft = quoteleft; kernRight = quoteleft; lastChange = "2025-01-01 06:09:33 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (141,540,o), (162,565,o), (162,590,c), (162,614,o), (141,635,o), (116,635,cs), (115,635,o), (111,635,o), (110,635,c), (110,686,o), (162,697,o), (162,697,c), (162,697,o), (163,720,o), (162,720,cs), (96,720,o), (60,663,o), (60,601,cs), (60,566,o), (82,540,o), (116,540,cs) ); } ); width = 212; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (152,482,o), (180,515,o), (180,548,cs), (180,580,o), (151,608,o), (120,608,cs), (118,608,o), (114,608,o), (111,607,c), (111,675,o), (180,690,o), (180,690,c), (180,690,o), (181,720,o), (180,720,cs), (82,720,o), (46,627,o), (45,563,c), (45,525,o), (66,482,o), (118,482,cs) ); } ); width = 244; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (180,416,o), (214,458,o), (214,500,cs), (214,539,o), (178,574,o), (137,574,cs), (133,574,o), (128,574,o), (125,573,c), (125,659,o), (214,677,o), (214,677,c), (214,677,o), (215,720,o), (214,720,cs), (90,720,o), (43,597,o), (43,518,cs), (43,470,o), (69,416,o), (134,416,cs) ); } ); width = 264; } ); unicode = 8216; }, { glyphname = quoteright; kernLeft = quoteright; kernRight = quoteright; lastChange = "2025-01-01 06:20:34 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (116,532,o), (152,589,o), (152,651,cs), (152,686,o), (130,712,o), (96,712,cs), (71,712,o), (50,687,o), (50,662,c), (50,638,o), (71,617,o), (96,617,cs), (97,617,o), (101,617,o), (102,617,c), (102,566,o), (50,555,o), (50,555,c), (50,555,o), (49,532,o), (50,532,cs) ); } ); width = 212; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (156,482,o), (192,575,o), (193,639,c), (193,677,o), (172,720,o), (120,720,cs), (86,720,o), (58,687,o), (58,654,cs), (58,622,o), (87,594,o), (118,594,cs), (120,594,o), (124,594,o), (127,595,c), (127,527,o), (58,512,o), (58,512,c), (58,512,o), (57,482,o), (58,482,cs) ); } ); width = 244; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (174,417,o), (221,540,o), (221,619,cs), (221,667,o), (195,721,o), (130,721,cs), (84,721,o), (50,679,o), (50,637,cs), (50,598,o), (86,563,o), (127,563,cs), (131,563,o), (136,563,o), (139,564,c), (139,478,o), (50,460,o), (50,460,c), (50,460,o), (49,417,o), (50,417,cs) ); } ); width = 264; } ); unicode = 8217; }, { glyphname = guillemetleft; lastChange = "2024-11-09 02:52:13 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (633,99,l), (347,291,l), (347,283,l), (633,475,l), (633,545,l), (306,326,l), (306,250,l), (633,31,l) ); }, { closed = 1; nodes = ( (377,99,l), (91,291,l), (91,283,l), (377,475,l), (377,545,l), (50,326,l), (50,250,l), (377,31,l) ); } ); width = 693; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (631,120,l), (345,312,l), (345,262,l), (631,454,l), (631,544,l), (304,325,l), (304,249,l), (631,30,l) ); }, { closed = 1; nodes = ( (375,121,l), (89,313,l), (89,263,l), (375,455,l), (375,545,l), (48,326,l), (48,250,l), (375,31,l) ); } ); width = 687; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (674,145,l), (388,337,l), (388,240,l), (674,432,l), (674,571,l), (347,352,l), (347,222,l), (674,3,l) ); }, { closed = 1; nodes = ( (372,145,l), (86,337,l), (86,240,l), (372,432,l), (372,571,l), (45,352,l), (45,222,l), (372,3,l) ); } ); width = 715; } ); unicode = 171; }, { glyphname = guillemetright; lastChange = "2024-11-22 04:53:25 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (643,250,l), (643,326,l), (316,545,l), (316,475,l), (602,283,l), (602,291,l), (316,99,l), (316,31,l) ); }, { closed = 1; nodes = ( (387,250,l), (387,326,l), (60,545,l), (60,475,l), (346,283,l), (346,291,l), (60,99,l), (60,31,l) ); } ); width = 693; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (639,250,l), (639,326,l), (312,545,l), (312,455,l), (598,263,l), (598,313,l), (312,121,l), (312,31,l) ); }, { closed = 1; nodes = ( (383,249,l), (383,325,l), (56,544,l), (56,454,l), (342,262,l), (342,312,l), (56,120,l), (56,30,l) ); } ); width = 687; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (674,222,l), (674,352,l), (347,571,l), (347,432,l), (633,240,l), (633,337,l), (347,145,l), (347,3,l) ); }, { closed = 1; nodes = ( (372,222,l), (372,352,l), (45,571,l), (45,432,l), (331,240,l), (331,337,l), (45,145,l), (45,3,l) ); } ); width = 715; } ); unicode = 187; }, { glyphname = guilsinglleft; lastChange = "2024-10-21 04:23:00 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (347,100,l), (88,294,l), (88,281,l), (347,475,l), (347,545,l), (50,326,l), (50,250,l), (347,31,l) ); } ); width = 407; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (345,121,l), (86,315,l), (86,261,l), (345,455,l), (345,545,l), (48,326,l), (48,250,l), (345,31,l) ); } ); width = 401; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (371,145,l), (85,337,l), (85,240,l), (371,432,l), (371,571,l), (44,352,l), (44,222,l), (371,3,l) ); } ); width = 421; } ); unicode = 8249; }, { glyphname = guilsinglright; lastChange = "2024-10-21 04:23:00 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (357,250,l), (357,326,l), (60,545,l), (60,475,l), (319,281,l), (319,294,l), (60,100,l), (60,31,l) ); } ); width = 407; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (353,250,l), (353,326,l), (56,545,l), (56,455,l), (315,261,l), (315,315,l), (56,121,l), (56,31,l) ); } ); width = 401; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (371,222,l), (371,352,l), (44,571,l), (44,432,l), (330,240,l), (330,337,l), (44,145,l), (44,3,l) ); } ); width = 421; } ); unicode = 8250; }, { glyphname = quotedbl; lastChange = "2024-11-21 10:01:53 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (298,490,l), (305,519,o), (336,635,o), (336,667,c), (336,699,o), (313,720,o), (286,720,cs), (257,720,o), (234,699,o), (234,667,c), (234,635,o), (266,519,o), (273,490,c) ); }, { closed = 1; nodes = ( (149,490,l), (156,519,o), (187,635,o), (187,667,c), (187,699,o), (164,720,o), (137,720,cs), (108,720,o), (85,699,o), (85,667,c), (85,635,o), (117,519,o), (124,490,c) ); } ); width = 421; }, { associatedMasterId = m01; layerId = "24C34471-2878-49D9-AC64-055C689381E7"; name = foreground; shapes = ( { closed = 1; nodes = ( (354,459,l), (387,579,o), (401,624,o), (401,651,cs), (401,689,o), (371,721,o), (335,721,cs), (298,721,o), (266,689,o), (266,651,cs), (266,625,o), (280,579,o), (314,459,c) ); }, { closed = 1; nodes = ( (153,459,l), (186,579,o), (200,624,o), (200,651,cs), (200,689,o), (170,721,o), (134,721,cs), (97,721,o), (65,689,o), (65,651,cs), (65,625,o), (79,579,o), (113,459,c) ); } ); width = 473; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (320,465,l), (328,499,o), (364,621,o), (364,658,c), (364,696,o), (337,720,o), (306,720,cs), (273,720,o), (246,696,o), (246,658,c), (246,621,o), (283,499,o), (291,465,c) ); }, { closed = 1; nodes = ( (154,465,l), (162,499,o), (198,621,o), (198,658,c), (198,696,o), (171,720,o), (140,720,cs), (107,720,o), (80,696,o), (80,658,c), (80,621,o), (117,499,o), (125,465,c) ); } ); width = 444; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (422,401,l), (434,449,o), (486,579,o), (486,632,c), (486,687,o), (447,721,o), (402,721,cs), (356,721,o), (317,687,o), (317,632,c), (317,579,o), (371,449,o), (381,401,c) ); }, { closed = 1; nodes = ( (186,401,l), (197,449,o), (249,579,o), (249,632,c), (249,687,o), (210,721,o), (167,721,cs), (119,721,o), (80,687,o), (80,632,c), (80,579,o), (134,449,o), (145,401,c) ); } ); width = 566; } ); unicode = 34; }, { glyphname = quotesingle; lastChange = "2024-10-21 04:23:48 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (149,490,l), (156,519,o), (187,635,o), (187,667,c), (187,699,o), (164,720,o), (137,720,cs), (108,720,o), (85,699,o), (85,667,c), (85,635,o), (117,519,o), (124,490,c) ); } ); width = 272; }, { associatedMasterId = m01; layerId = "9EC1078A-27A8-4ABD-A85E-C1F27DFD7ADE"; name = foreground; shapes = ( { closed = 1; nodes = ( (158,459,l), (191,579,o), (205,624,o), (205,651,cs), (205,689,o), (175,721,o), (139,721,cs), (102,721,o), (70,689,o), (70,651,cs), (70,625,o), (84,579,o), (118,459,c) ); } ); width = 282; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (154,465,l), (162,499,o), (198,621,o), (198,658,c), (198,696,o), (171,720,o), (140,720,cs), (107,720,o), (80,696,o), (80,658,c), (80,621,o), (117,499,o), (125,465,c) ); } ); width = 278; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (186,401,l), (197,449,o), (249,579,o), (249,632,c), (249,687,o), (210,721,o), (167,721,cs), (119,721,o), (80,687,o), (80,632,c), (80,579,o), (134,449,o), (145,401,c) ); } ); width = 329; } ); unicode = 39; }, { glyphname = baht; lastChange = "2024-11-07 17:16:35 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (330,0,ls), (482,0,o), (567,70,o), (567,197,cs), (567,283,o), (519,343,o), (425,365,c), (484,383,o), (528,437,o), (528,524,cs), (528,637,o), (455,701,o), (319,701,cs), (100,701,l), (100,0,l) ); }, { closed = 1; nodes = ( (337,-91,l), (337,791,l), (277,791,l), (277,-91,l) ); }, { closed = 1; nodes = ( (160,330,l), (160,330,o), (349,330,o), (349,330,cs), (438,330,o), (505,275,o), (505,197,cs), (505,108,o), (442,56,o), (340,56,cs), (160,56,l) ); }, { closed = 1; nodes = ( (160,645,l), (160,645,o), (314,645,o), (314,645,cs), (425,645,o), (466,596,o), (466,523,cs), (466,437,o), (412,386,o), (315,386,cs), (160,386,l) ); } ); width = 627; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (343,0,ls), (508,0,o), (587,73,o), (587,200,cs), (587,287,o), (539,344,o), (445,366,c), (504,384,o), (548,424,o), (548,521,cs), (548,637,o), (472,701,o), (335,701,cs), (110,701,l), (110,0,l) ); }, { closed = 1; nodes = ( (365,-91,l), (365,791,l), (285,791,l), (285,-91,l) ); }, { closed = 1; nodes = ( (198,319,l), (198,319,o), (353,319,o), (353,319,cs), (445,319,o), (495,267,o), (495,200,cs), (495,120,o), (440,80,o), (343,80,cs), (198,80,l) ); }, { closed = 1; nodes = ( (198,621,l), (198,621,o), (330,621,o), (330,621,cs), (403,621,o), (457,587,o), (457,520,cs), (457,435,o), (404,399,o), (331,399,cs), (198,399,l) ); } ); width = 645; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (402,0,ls), (573,0,o), (657,77,o), (657,204,cs), (657,283,o), (610,341,o), (532,363,c), (577,386,o), (618,434,o), (618,518,cs), (618,620,o), (542,701,o), (394,701,cs), (109,701,l), (109,0,l) ); }, { closed = 1; nodes = ( (413,-112,l), (413,812,l), (273,812,l), (273,-112,l) ); }, { closed = 1; nodes = ( (255,293,l), (255,293,o), (392,293,o), (392,293,c), (459,293,o), (503,264,o), (503,211,cs), (503,145,o), (459,126,o), (382,126,cs), (255,126,l) ); }, { closed = 1; nodes = ( (255,575,l), (255,575,o), (376,575,o), (376,575,cs), (432,575,o), (465,549,o), (465,504,cs), (465,441,o), (432,419,o), (377,419,cs), (255,419,l) ); } ); width = 679; }, { associatedMasterId = m003; attr = { axisRules = ( { min = 600; } ); }; layerId = "146F865F-F0A7-457A-8702-6F6D77ADE7D3"; name = "7 Nov 24 at 18:15"; shapes = ( { closed = 1; nodes = ( (402,0,ls), (573,0,o), (657,77,o), (657,204,cs), (657,283,o), (610,341,o), (532,363,c), (577,386,o), (618,434,o), (618,518,cs), (618,620,o), (542,701,o), (394,701,cs), (109,701,l), (109,0,l) ); }, { closed = 1; nodes = ( (413,653,l), (413,812,l), (273,812,l), (273,653,l) ); }, { closed = 1; nodes = ( (255,293,l), (255,293,o), (392,293,o), (392,293,c), (459,293,o), (503,264,o), (503,211,cs), (503,145,o), (459,126,o), (382,126,cs), (255,126,l) ); }, { closed = 1; nodes = ( (255,575,l), (255,575,o), (376,575,o), (376,575,cs), (432,575,o), (465,549,o), (465,504,cs), (465,441,o), (432,419,o), (377,419,cs), (255,419,l) ); }, { closed = 1; nodes = ( (273,25,l), (273,-112,l), (413,-112,l), (413,25,l) ); } ); width = 679; }, { associatedMasterId = m002; attr = { axisRules = ( { min = 600; } ); }; layerId = "58BBDCE9-3238-4861-830D-775DCFB9C0AA"; name = "7 Nov 24 at 18:15"; shapes = ( { closed = 1; nodes = ( (343,0,ls), (508,0,o), (587,73,o), (587,200,cs), (587,287,o), (539,344,o), (445,366,c), (504,384,o), (548,424,o), (548,521,cs), (548,637,o), (472,701,o), (335,701,cs), (110,701,l), (110,0,l) ); }, { closed = 1; nodes = ( (365,649,l), (365,791,l), (285,791,l), (285,649,l) ); }, { closed = 1; nodes = ( (198,319,l), (198,319,o), (353,319,o), (353,319,cs), (445,319,o), (495,267,o), (495,200,cs), (495,120,o), (440,80,o), (343,80,cs), (198,80,l) ); }, { closed = 1; nodes = ( (198,621,l), (198,621,o), (330,621,o), (330,621,cs), (403,621,o), (457,587,o), (457,520,cs), (457,435,o), (404,399,o), (331,399,cs), (198,399,l) ); }, { closed = 1; nodes = ( (285,49,l), (285,-91,l), (365,-91,l), (365,49,l) ); } ); width = 645; }, { associatedMasterId = m01; attr = { axisRules = ( { min = 600; } ); }; layerId = "D6CB5547-73D4-4B35-8ABC-68B8B3C69349"; name = "7 Nov 24 at 18:15"; shapes = ( { closed = 1; nodes = ( (330,0,ls), (482,0,o), (567,70,o), (567,197,cs), (567,283,o), (519,343,o), (425,365,c), (484,383,o), (528,437,o), (528,524,cs), (528,637,o), (455,701,o), (319,701,cs), (100,701,l), (100,0,l) ); }, { closed = 1; nodes = ( (337,671,l), (337,791,l), (277,791,l), (277,671,l) ); }, { closed = 1; nodes = ( (160,330,l), (160,330,o), (349,330,o), (349,330,cs), (438,330,o), (505,275,o), (505,197,cs), (505,108,o), (442,56,o), (340,56,cs), (160,56,l) ); }, { closed = 1; nodes = ( (160,645,l), (160,645,o), (314,645,o), (314,645,cs), (425,645,o), (466,596,o), (466,523,cs), (466,437,o), (412,386,o), (315,386,cs), (160,386,l) ); }, { closed = 1; nodes = ( (277,31,l), (277,-91,l), (337,-91,l), (337,31,l) ); } ); width = 627; } ); unicode = 3647; }, { glyphname = at; lastChange = "2024-11-02 00:31:58 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (344,129,o), (300,180,o), (310,287,cs), (317,373,o), (373,442,o), (446,442,cs), (493,442,o), (559,396,o), (547,285,cs), (536,176,o), (464,129,o), (402,129,cs) ); }, { closed = 1; nodes = ( (786,80,o), (839,213,o), (839,348,cs), (839,529,o), (714,712,o), (456,712,cs), (193,712,o), (50,512,o), (50,279,cs), (50,57,o), (196,-141,o), (460,-141,cs), (601,-141,o), (696,-94,o), (773,-35,c), (743,17,l), (663,-45,o), (572,-85,o), (460,-85,cs), (259,-85,o), (112,67,o), (112,281,cs), (112,502,o), (259,656,o), (456,656,cs), (648,656,o), (777,530,o), (777,348,cs), (777,210,o), (727,134,o), (662,134,cs), (628,134,o), (591,155,o), (596,207,c), (635,481,l), (568,481,l), (560,406,l), (548,450,o), (502,492,o), (441,492,cs), (346,492,o), (264,418,o), (251,285,cs), (237,155,o), (310,79,o), (397,79,cs), (455,79,o), (522,114,o), (541,161,c), (552,116,o), (590,80,o), (654,80,cs) ); } ); width = 889; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (366,148,o), (338,214,o), (346,284,cs), (355,354,o), (396,416,o), (466,416,cs), (542,416,o), (571,350,o), (563,280,cs), (555,211,o), (512,148,o), (434,148,cs) ); }, { closed = 1; nodes = ( (837,72,o), (884,249,o), (884,348,cs), (884,539,o), (735,712,o), (481,712,cs), (219,712,o), (60,512,o), (60,279,cs), (60,57,o), (201,-151,o), (481,-151,cs), (618,-151,o), (700,-118,o), (787,-56,c), (745,14,l), (670,-45,o), (587,-70,o), (481,-70,cs), (268,-70,o), (147,84,o), (147,281,cs), (147,478,o), (285,632,o), (481,632,cs), (665,632,o), (800,512,o), (800,348,cs), (800,264,o), (766,149,o), (682,149,cs), (658,149,o), (632,170,o), (634,204,c), (667,483,l), (593,483,l), (584,404,l), (568,461,o), (513,492,o), (463,492,cs), (343,492,o), (274,388,o), (260,293,cs), (243,175,o), (307,72,o), (412,72,cs), (467,72,o), (536,102,o), (560,144,c), (573,106,o), (608,72,o), (672,72,cs) ); } ); width = 944; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (424,162,o), (399,217,o), (407,280,cs), (415,335,o), (448,372,o), (497,372,cs), (559,372,o), (577,322,o), (570,270,cs), (562,201,o), (530,162,o), (479,162,cs) ); }, { closed = 1; nodes = ( (818,55,o), (944,171,o), (944,340,cs), (944,550,o), (782,712,o), (504,712,cs), (229,712,o), (52,519,o), (52,264,cs), (52,23,o), (222,-183,o), (507,-183,cs), (649,-183,o), (751,-149,o), (839,-88,c), (781,14,l), (693,-39,o), (617,-61,o), (507,-61,cs), (320,-61,o), (190,70,o), (190,267,cs), (190,435,o), (323,590,o), (504,590,cs), (674,590,o), (806,519,o), (806,340,cs), (806,248,o), (768,176,o), (723,176,cs), (690,176,o), (687,207,o), (691,245,cs), (712,469,l), (593,469,l), (587,403,l), (571,445,o), (535,478,o), (476,478,cs), (384,478,o), (289,407,o), (275,276,cs), (262,150,o), (339,54,o), (443,54,cs), (541,54,o), (574,126,o), (590,167,c), (582,106,o), (651,55,o), (700,55,cs) ); } ); width = 996; } ); unicode = 64; }, { glyphname = ampersand; lastChange = "2024-11-02 04:44:51 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (510,-13,o), (588,171,o), (588,336,c), (530,336,l), (530,187,o), (460,43,o), (310,43,cs), (204,43,o), (144,109,o), (144,173,cs), (144,255,o), (206,299,o), (302,364,cs), (408,435,o), (463,504,o), (463,570,cs), (463,653,o), (404,712,o), (308,712,cs), (207,712,o), (149,638,o), (149,556,cs), (149,465,o), (198,416,o), (232,376,c), (582,0,l), (626,40,l), (279,413,l), (242,453,o), (211,492,o), (211,556,cs), (211,602,o), (237,656,o), (307,656,cs), (365,656,o), (401,622,o), (401,570,cs), (401,525,o), (365,480,o), (265,411,cs), (134,321,o), (82,271,o), (82,173,cs), (82,62,o), (172,-13,o), (314,-13,cs) ); } ); width = 693; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (524,-12,o), (616,180,o), (618,347,c), (536,347,l), (534,214,o), (464,70,o), (316,70,cs), (220,70,o), (172,124,o), (172,188,cs), (172,270,o), (227,306,o), (316,343,cs), (422,387,o), (487,485,o), (487,556,cs), (487,650,o), (411,713,o), (314,713,cs), (198,713,o), (140,638,o), (140,544,cs), (140,460,o), (180,420,o), (214,380,c), (595,0,l), (654,56,l), (288,424,l), (255,463,o), (232,491,o), (232,540,cs), (232,585,o), (261,633,o), (313,633,cs), (353,633,o), (395,603,o), (395,556,cs), (395,510,o), (369,449,o), (278,412,cs), (139,355,o), (80,290,o), (80,184,cs), (80,73,o), (170,-12,o), (316,-12,cs) ); } ); width = 706; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (556,-12,o), (656,210,o), (656,375,c), (524,375,l), (524,238,o), (447,113,o), (332,113,cs), (251,113,o), (216,150,o), (216,194,cs), (216,243,o), (243,263,o), (336,317,cs), (458,388,o), (533,467,o), (533,542,cs), (533,656,o), (441,713,o), (328,713,cs), (205,713,o), (123,635,o), (123,542,cs), (123,457,o), (152,420,o), (186,380,c), (607,-12,l), (696,80,l), (332,426,l), (298,466,o), (272,488,o), (272,535,cs), (272,568,o), (296,592,o), (327,592,cs), (358,592,o), (383,568,o), (383,535,cs), (383,506,o), (344,462,o), (273,418,cs), (145,339,o), (66,290,o), (66,188,cs), (66,70,o), (154,-12,o), (332,-12,cs) ); } ); width = 732; } ); unicode = 38; }, { glyphname = paragraph; lastChange = "2024-10-21 04:24:42 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (544,0,l), (544,56,l), (457,56,l), (457,644,l), (544,644,l), (544,700,l), (212,700,ls), (142,700,o), (60,637,o), (60,535,cs), (60,429,o), (142,371,o), (212,371,c), (212,0,l) ); }, { closed = 1; nodes = ( (272,644,l), (397,644,l), (397,54,l), (272,54,l) ); } ); width = 612; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (603,0,l), (603,80,l), (484,80,l), (484,620,l), (603,620,l), (603,700,l), (224,700,ls), (142,700,o), (60,637,o), (60,535,cs), (60,429,o), (142,371,o), (224,371,c), (224,0,l) ); }, { closed = 1; nodes = ( (312,620,l), (396,620,l), (396,78,l), (312,78,l) ); } ); width = 669; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (747,0,l), (747,126,l), (628,126,l), (628,574,l), (747,574,l), (747,700,l), (219,700,ls), (137,700,o), (54,628,o), (54,526,cs), (54,420,o), (137,352,o), (219,352,c), (219,0,l) ); }, { closed = 1; nodes = ( (365,574,l), (482,574,l), (482,124,l), (365,124,l) ); } ); width = 807; } ); unicode = 182; }, { glyphname = section; lastChange = "2024-11-02 04:46:33 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (378,85,o), (445,170,o), (445,241,cs), (445,443,o), (122,445,o), (122,562,cs), (122,605,o), (153,657,o), (244,657,cs), (316,657,o), (368,614,o), (368,565,c), (427,565,l), (427,628,o), (372,712,o), (245,712,cs), (123,712,o), (60,649,o), (60,559,cs), (60,395,o), (383,400,o), (383,241,cs), (383,188,o), (311,131,o), (270,124,c), (288,76,l) ); }, { closed = 1; nodes = ( (360,-184,o), (420,-121,o), (420,-31,cs), (420,131,o), (106,129,o), (106,288,cs), (106,344,o), (172,400,o), (213,407,c), (201,452,l), (111,443,o), (44,360,o), (44,288,cs), (44,86,o), (358,83,o), (358,-34,cs), (358,-77,o), (330,-129,o), (239,-129,cs), (164,-129,o), (112,-86,o), (112,-37,c), (53,-37,l), (53,-100,o), (108,-184,o), (238,-184,cs) ); } ); width = 489; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (404,82,o), (473,156,o), (473,240,cs), (473,417,o), (161,439,o), (161,552,cs), (161,595,o), (193,635,o), (258,635,cs), (330,635,o), (368,599,o), (368,565,c), (454,565,l), (454,628,o), (404,712,o), (259,712,cs), (137,712,o), (77,623,o), (77,549,cs), (77,358,o), (388,363,o), (388,240,cs), (388,187,o), (335,146,o), (294,139,c), (314,73,l) ); }, { closed = 1; nodes = ( (388,-205,o), (448,-116,o), (448,-42,cs), (448,150,o), (137,150,o), (137,271,cs), (137,320,o), (174,356,o), (226,373,c), (211,434,l), (121,425,o), (52,351,o), (52,271,cs), (52,95,o), (364,69,o), (364,-45,cs), (364,-87,o), (332,-128,o), (267,-128,cs), (195,-128,o), (157,-92,o), (157,-58,c), (71,-58,l), (71,-121,o), (121,-205,o), (266,-205,cs) ); } ); width = 525; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (530,90,o), (594,146,o), (594,221,cs), (594,472,o), (205,428,o), (205,519,cs), (205,564,o), (252,583,o), (313,583,cs), (369,583,o), (421,554,o), (435,479,c), (591,479,l), (578,594,o), (507,713,o), (313,713,cs), (154,713,o), (51,651,o), (51,514,cs), (51,322,o), (450,340,o), (450,212,cs), (450,143,o), (357,124,o), (357,124,c), (485,72,l) ); }, { closed = 1; nodes = ( (474,-230,o), (577,-166,o), (577,-29,cs), (577,156,o), (180,150,o), (180,270,cs), (180,342,o), (271,359,o), (271,359,c), (143,411,l), (98,393,o), (36,336,o), (36,261,cs), (36,18,o), (423,43,o), (423,-41,cs), (423,-90,o), (376,-100,o), (315,-100,cs), (259,-100,o), (207,-71,o), (193,4,c), (37,4,l), (50,-111,o), (121,-230,o), (315,-230,cs) ); } ); width = 630; } ); unicode = 167; }, { glyphname = copyright; lastChange = "2024-11-07 17:16:42 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (602,-12,o), (730,164,o), (730,353,cs), (730,544,o), (602,720,o), (380,720,cs), (158,720,o), (30,544,o), (30,353,cs), (30,164,o), (158,-12,o), (380,-12,cs) ); }, { closed = 1; nodes = ( (214,44,o), (92,170,o), (92,354,cs), (92,532,o), (213,664,o), (380,664,cs), (547,664,o), (668,532,o), (668,354,cs), (668,170,o), (546,44,o), (380,44,cs) ); }, { closed = 1; nodes = ( (463,153,o), (509,191,o), (536,253,c), (482,274,l), (466,231,o), (431,206,o), (385,206,cs), (307,206,o), (264,269,o), (264,353,cs), (264,435,o), (306,498,o), (385,498,cs), (431,498,o), (466,474,o), (482,431,c), (536,451,l), (509,515,o), (454,551,o), (387,551,cs), (291,551,o), (206,484,o), (206,351,cs), (206,219,o), (291,153,o), (387,153,cs) ); } ); width = 760; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (650,-12,o), (778,164,o), (778,353,cs), (778,544,o), (650,720,o), (424,720,cs), (198,720,o), (70,544,o), (70,353,cs), (70,164,o), (198,-12,o), (424,-12,cs) ); }, { closed = 1; nodes = ( (268,69,o), (157,184,o), (157,353,cs), (157,518,o), (267,640,o), (424,640,cs), (581,640,o), (692,518,o), (692,353,cs), (692,184,o), (580,69,o), (424,69,cs) ); }, { closed = 1; nodes = ( (496,151,o), (555,188,o), (581,252,c), (514,279,l), (500,242,o), (472,227,o), (429,227,cs), (368,227,o), (332,279,o), (332,353,cs), (332,423,o), (363,478,o), (429,478,cs), (468,478,o), (500,463,o), (514,425,c), (581,448,l), (555,512,o), (497,554,o), (429,554,cs), (333,554,o), (248,477,o), (248,351,cs), (248,228,o), (333,151,o), (429,151,cs) ); } ); width = 848; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (671,-13,o), (799,164,o), (799,353,cs), (799,544,o), (671,719,o), (430,720,cs), (188,721,o), (60,545,o), (60,354,cs), (60,165,o), (188,-11,o), (430,-12,cs) ); }, { closed = 1; nodes = ( (293,109,o), (183,211,o), (183,354,cs), (183,493,o), (282,601,o), (430,600,cs), (577,599,o), (676,492,o), (676,353,cs), (676,210,o), (576,107,o), (430,108,cs) ); }, { closed = 1; nodes = ( (504,175,o), (564,214,o), (587,274,c), (499,314,l), (488,289,o), (464,279,o), (439,279,cs), (396,279,o), (374,312,o), (374,355,cs), (374,394,o), (396,428,o), (439,428,cs), (463,428,o), (485,420,o), (499,392,c), (586,433,l), (563,493,o), (505,532,o), (440,532,cs), (338,532,o), (264,466,o), (264,352,cs), (264,241,o), (336,175,o), (440,175,cs) ); } ); width = 859; } ); unicode = 169; }, { glyphname = registered; lastChange = "2024-11-02 00:32:34 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (371,276,o), (450,382,o), (450,494,cs), (450,607,o), (371,712,o), (236,712,cs), (101,712,o), (22,607,o), (22,494,cs), (22,382,o), (101,276,o), (236,276,cs) ); }, { closed = 1; nodes = ( (139,318,o), (66,387,o), (66,494,cs), (66,596,o), (139,670,o), (236,670,cs), (333,670,o), (405,596,o), (405,494,cs), (405,387,o), (333,318,o), (236,318,cs) ); }, { closed = 1; nodes = ( (288,381,l), (332,381,l), (273,475,l), (234,471,l) ); }, { closed = 1; nodes = ( (195,381,l), (195,465,l), (243,465,ls), (291,465,o), (322,493,o), (322,537,cs), (322,585,o), (288,613,o), (244,613,cs), (156,613,l), (156,381,l) ); }, { closed = 1; nodes = ( (195,573,l), (247,573,ls), (267,573,o), (282,559,o), (282,538,cs), (282,515,o), (267,505,o), (247,505,cs), (195,505,l) ); } ); width = 472; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (371,276,o), (450,382,o), (450,494,cs), (450,607,o), (371,712,o), (236,712,cs), (101,712,o), (22,607,o), (22,494,cs), (22,382,o), (101,276,o), (236,276,cs) ); }, { closed = 1; nodes = ( (143,326,o), (76,391,o), (76,494,cs), (76,592,o), (143,662,o), (236,662,cs), (329,662,o), (396,592,o), (396,494,cs), (396,391,o), (329,326,o), (236,326,cs) ); }, { closed = 1; nodes = ( (285,381,l), (337,381,l), (278,475,l), (231,471,l) ); }, { closed = 1; nodes = ( (200,381,l), (200,464,l), (245,464,ls), (293,464,o), (324,494,o), (324,538,cs), (324,586,o), (288,613,o), (244,613,cs), (155,613,l), (155,381,l) ); }, { closed = 1; nodes = ( (200,568,l), (244,568,ls), (264,568,o), (277,555,o), (277,539,cs), (277,519,o), (264,508,o), (244,508,cs), (200,508,l) ); } ); width = 472; }, { guides = ( { pos = (-293,319); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (376,262,o), (457,371,o), (457,490,cs), (457,604,o), (376,712,o), (236,712,cs), (96,712,o), (15,612,o), (15,490,cs), (15,379,o), (96,262,o), (236,262,cs) ); }, { closed = 1; nodes = ( (147,325,o), (81,389,o), (81,490,cs), (81,582,o), (147,650,o), (236,650,cs), (325,650,o), (391,582,o), (391,490,cs), (391,389,o), (325,325,o), (236,325,cs) ); }, { closed = 1; nodes = ( (278,374,l), (337,374,l), (278,466,l), (224,462,l) ); }, { closed = 1; nodes = ( (208,374,l), (208,452,l), (248,452,ls), (296,452,o), (323,485,o), (323,531,cs), (323,581,o), (289,606,o), (246,606,cs), (154,606,l), (154,374,l) ); }, { closed = 1; nodes = ( (207,555,l), (240,555,ls), (259,555,o), (269,543,o), (270,530,cs), (271,513,o), (260,503,o), (240,503,cs), (208,503,l) ); } ); width = 472; } ); unicode = 174; }, { glyphname = trademark; lastChange = "2024-11-02 00:33:15 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (406,319,l), (406,609,l), (501,367,l), (537,367,l), (646,609,l), (646,319,l), (704,319,l), (704,700,l), (632,700,l), (521,453,l), (419,700,l), (348,700,l), (348,319,l) ); }, { closed = 1; nodes = ( (184,319,l), (184,648,l), (290,648,l), (290,700,l), (20,700,l), (20,648,l), (124,648,l), (124,319,l) ); } ); width = 724; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (446,319,l), (446,570,l), (541,351,l), (582,351,l), (677,570,l), (677,319,l), (753,319,l), (753,700,l), (663,700,l), (562,475,l), (461,700,l), (370,700,l), (370,319,l) ); }, { closed = 1; nodes = ( (212,319,l), (212,636,l), (319,636,l), (319,700,l), (30,700,l), (30,636,l), (134,636,l), (134,319,l) ); } ); width = 783; }, { guides = ( { pos = (-112,319); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (508,319,l), (508,522,l), (588,349,l), (633,349,l), (713,522,l), (713,319,l), (819,319,l), (819,700,l), (710,700,l), (611,492,l), (511,700,l), (402,700,l), (402,319,l) ); }, { closed = 1; nodes = ( (240,319,l), (240,604,l), (345,604,l), (345,700,l), (30,700,l), (30,604,l), (132,604,l), (132,319,l) ); } ); width = 849; } ); unicode = 8482; }, { glyphname = degree; lastChange = "2024-11-22 04:55:03 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (273,444,o), (322,511,o), (322,582,cs), (322,655,o), (273,720,o), (188,720,cs), (104,720,o), (55,655,o), (55,582,cs), (55,511,o), (104,444,o), (188,444,cs) ); }, { closed = 1; nodes = ( (139,495,o), (104,531,o), (104,582,cs), (104,632,o), (139,670,o), (188,670,cs), (238,670,o), (273,632,o), (273,582,cs), (273,531,o), (238,495,o), (188,495,cs) ); } ); width = 377; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (274,434,o), (325,503,o), (325,576,cs), (325,652,o), (274,720,o), (186,720,cs), (99,720,o), (48,652,o), (48,576,cs), (48,503,o), (99,434,o), (186,434,cs) ); }, { closed = 1; nodes = ( (141,496,o), (109,529,o), (109,576,cs), (109,624,o), (141,658,o), (186,658,cs), (232,658,o), (264,624,o), (264,576,cs), (264,529,o), (232,496,o), (186,496,cs) ); } ); width = 373; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (279,419,o), (332,492,o), (332,569,cs), (332,649,o), (279,720,o), (186,720,cs), (94,720,o), (41,649,o), (41,569,cs), (41,492,o), (94,419,o), (186,419,cs) ); }, { closed = 1; nodes = ( (150,504,o), (123,532,o), (123,569,cs), (123,606,o), (150,634,o), (186,634,c), (223,634,o), (250,606,o), (250,569,c), (250,532,o), (223,504,o), (186,504,cs) ); } ); width = 373; } ); unicode = 176; }, { glyphname = bar; lastChange = "2024-09-09 06:20:25 +0000"; layers = ( { guides = ( { pos = (175,-160); }, { pos = (144,775); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (155,-160,l), (155,775,l), (100,775,l), (100,-160,l) ); } ); width = 255; }, { guides = ( { pos = (-259,-160); }, { pos = (-259,776); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (177,-160,l), (177,776,l), (97,776,l), (97,-160,l) ); } ); width = 274; }, { guides = ( { pos = (-305,-159); }, { pos = (-57,775); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (230,-159,l), (230,775,l), (100,775,l), (100,-159,l) ); } ); width = 330; } ); unicode = 124; }, { glyphname = numero; lastChange = "2024-11-09 02:52:27 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (160,0,l), (160,656,l), (129,656,l), (506,0,l), (581,0,l), (581,700,l), (521,700,l), (521,44,l), (552,44,l), (176,700,l), (100,700,l), (100,0,l) ); }, { closed = 1; nodes = ( (683,249,l), (977,248,l), (977,307,l), (683,308,l) ); }, { closed = 1; nodes = ( (909,370,o), (977,429,o), (977,541,cs), (977,653,o), (909,712,o), (828,712,cs), (747,712,o), (679,653,o), (679,541,cs), (679,429,o), (747,370,o), (828,370,cs) ); }, { closed = 1; nodes = ( (772,427,o), (738,470,o), (738,540,cs), (738,610,o), (772,656,o), (828,656,cs), (884,656,o), (918,611,o), (918,541,cs), (918,471,o), (884,427,o), (828,427,cs) ); } ); width = 1094; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (184,0,l), (184,623,l), (154,623,l), (494,0,l), (603,0,l), (603,700,l), (515,700,l), (515,77,l), (545,77,l), (218,700,l), (96,700,l), (96,0,l) ); }, { closed = 1; nodes = ( (700,232,l), (1022,231,l), (1022,307,l), (700,308,l) ); }, { closed = 1; nodes = ( (951,354,o), (1022,416,o), (1022,533,cs), (1022,650,o), (951,712,o), (861,712,cs), (771,712,o), (700,650,o), (700,533,cs), (700,416,o), (771,354,o), (861,354,c) ); }, { closed = 1; nodes = ( (805,428,o), (773,468,o), (773,532,cs), (773,596,o), (805,639,o), (861,639,cs), (917,639,o), (949,597,o), (949,533,cs), (949,469,o), (917,428,o), (861,428,c) ); } ); width = 1124; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (230,0,l), (230,504,l), (198,504,l), (505,0,l), (649,0,l), (649,700,l), (503,700,l), (503,204,l), (535,204,l), (240,700,l), (84,700,l), (84,0,l) ); }, { closed = 1; nodes = ( (743,198,l), (1096,198,l), (1096,308,l), (743,308,l) ); }, { closed = 1; nodes = ( (1010,349,o), (1101,405,o), (1101,530,cs), (1101,657,o), (1014,712,o), (920,712,cs), (832,712,o), (738,657,o), (738,530,cs), (738,405,o), (827,349,o), (920,349,cs) ); }, { closed = 1; nodes = ( (880,456,o), (859,485,o), (859,530,cs), (859,575,o), (881,605,o), (920,605,cs), (962,605,o), (980,575,o), (980,530,cs), (980,485,o), (962,456,o), (920,456,c) ); } ); width = 1208; } ); unicode = 8470; }, { glyphname = cent; lastChange = "2024-11-07 17:19:31 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (390,91,o), (442,138,o), (481,224,c), (429,245,l), (408,189,o), (361,141,o), (284,141,cs), (172,141,o), (113,224,o), (113,353,cs), (113,482,o), (172,565,o), (284,565,cs), (360,565,o), (411,516,o), (432,466,c), (484,486,l), (445,571,o), (373,615,o), (284,615,cs), (159,615,o), (55,525,o), (55,353,cs), (55,181,o), (159,91,o), (284,91,cs) ); }, { closed = 1; nodes = ( (302,0,l), (302,700,l), (246,700,l), (246,0,l) ); } ); width = 538; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (384,95,o), (461,143,o), (496,226,c), (420,256,l), (399,205,o), (356,171,o), (296,171,cs), (195,171,o), (144,255,o), (144,359,cs), (144,463,o), (195,544,o), (296,544,cs), (356,544,o), (399,510,o), (420,459,c), (496,489,l), (461,572,o), (386,620,o), (298,620,cs), (172,620,o), (60,520,o), (60,356,cs), (60,195,o), (172,95,o), (298,95,cs) ); }, { closed = 1; nodes = ( (328,0,l), (328,700,l), (248,700,l), (248,0,l) ); } ); width = 556; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (411,87,o), (489,134,o), (528,226,c), (412,272,l), (400,240,o), (364,207,o), (318,207,cs), (246,207,o), (200,262,o), (200,354,cs), (200,446,o), (246,499,o), (318,499,cs), (364,499,o), (400,466,o), (412,434,c), (528,480,l), (489,572,o), (411,619,o), (323,619,cs), (160,619,o), (54,519,o), (54,353,cs), (54,187,o), (160,87,o), (323,87,cs) ); }, { closed = 1; nodes = ( (374,1,l), (374,700,l), (234,700,l), (234,1,l) ); } ); width = 582; }, { associatedMasterId = m003; attr = { axisRules = ( { min = 600; } ); }; layerId = "280F69CE-47B6-4046-8CCF-B9C082780243"; name = "7 Nov 24 at 18:17"; shapes = ( { closed = 1; nodes = ( (411,87,o), (489,134,o), (528,226,c), (412,272,l), (400,240,o), (364,207,o), (318,207,cs), (246,207,o), (200,262,o), (200,354,cs), (200,446,o), (246,499,o), (318,499,cs), (364,499,o), (400,466,o), (412,434,c), (528,480,l), (489,572,o), (411,619,o), (323,619,cs), (160,619,o), (54,519,o), (54,353,cs), (54,187,o), (160,87,o), (323,87,cs) ); }, { closed = 1; nodes = ( (374,601,l), (374,700,l), (234,700,l), (234,601,l) ); }, { closed = 1; nodes = ( (234,100,l), (234,1,l), (374,1,l), (374,100,l) ); } ); width = 582; }, { associatedMasterId = m002; attr = { axisRules = ( { min = 600; } ); }; layerId = "3A6FAC1D-FADA-40F9-92A1-43A177BC82EB"; name = "7 Nov 24 at 18:18"; shapes = ( { closed = 1; nodes = ( (384,95,o), (461,143,o), (496,226,c), (420,256,l), (399,205,o), (356,171,o), (296,171,cs), (195,171,o), (144,255,o), (144,359,cs), (144,463,o), (195,544,o), (296,544,cs), (356,544,o), (399,510,o), (420,459,c), (496,489,l), (461,572,o), (386,620,o), (298,620,cs), (172,620,o), (60,520,o), (60,356,cs), (60,195,o), (172,95,o), (298,95,cs) ); }, { closed = 1; nodes = ( (328,572,l), (328,700,l), (248,700,l), (248,572,l) ); }, { closed = 1; nodes = ( (248,152,l), (248,0,l), (328,0,l), (328,152,l) ); } ); width = 556; }, { associatedMasterId = m01; attr = { axisRules = ( { min = 600; } ); }; layerId = "A3A43FF9-CB49-45E8-8740-D4BD55CCC712"; name = "7 Nov 24 at 18:18"; shapes = ( { closed = 1; nodes = ( (390,91,o), (442,138,o), (481,224,c), (429,245,l), (408,189,o), (361,141,o), (284,141,cs), (172,141,o), (113,224,o), (113,353,cs), (113,482,o), (172,565,o), (284,565,cs), (360,565,o), (411,516,o), (432,466,c), (484,486,l), (445,571,o), (373,615,o), (284,615,cs), (159,615,o), (55,525,o), (55,353,cs), (55,181,o), (159,91,o), (284,91,cs) ); }, { closed = 1; nodes = ( (302,593,l), (302,700,l), (246,700,l), (246,593,l) ); }, { closed = 1; nodes = ( (246,123,l), (246,0,l), (302,0,l), (302,123,l) ); } ); width = 538; } ); unicode = 162; }, { glyphname = dollar; lastChange = "2024-11-07 17:21:10 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (437,-12,o), (541,58,o), (541,195,cs), (541,437,o), (125,337,o), (125,521,cs), (125,591,o), (183,656,o), (290,656,cs), (408,656,o), (458,580,o), (467,513,c), (533,513,l), (528,603,o), (442,712,o), (297,712,cs), (140,712,o), (65,618,o), (65,516,cs), (65,259,o), (481,379,o), (481,186,cs), (481,114,o), (421,44,o), (300,44,cs), (174,44,o), (125,121,o), (109,214,c), (42,214,l), (55,99,o), (133,-12,o), (300,-12,cs) ); }, { closed = 1; nodes = ( (324,-91,l), (324,791,l), (264,791,l), (264,-91,l) ); } ); width = 594; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (453,-12,o), (559,58,o), (559,195,cs), (559,457,o), (165,344,o), (165,521,cs), (165,591,o), (233,632,o), (303,632,cs), (398,632,o), (446,572,o), (456,513,c), (549,513,l), (544,603,o), (463,712,o), (310,712,cs), (150,712,o), (73,618,o), (73,516,cs), (73,246,o), (467,371,o), (467,186,cs), (467,114,o), (396,68,o), (313,68,cs), (218,68,o), (163,129,o), (149,214,c), (52,214,l), (65,99,o), (143,-12,o), (313,-12,cs) ); }, { closed = 1; nodes = ( (348,-91,l), (348,791,l), (268,791,l), (268,-91,l) ); } ); width = 597; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (472,-12,o), (575,58,o), (575,195,c), (575,460,o), (212,385,o), (212,508,cs), (212,567,o), (270,582,o), (314,582,cs), (370,582,o), (407,554,o), (416,505,c), (569,505,l), (564,595,o), (492,712,o), (314,712,cs), (137,712,o), (59,618,o), (59,516,c), (59,226,o), (421,338,o), (421,186,c), (421,142,o), (374,118,o), (313,118,c), (257,118,o), (205,147,o), (191,222,c), (35,222,l), (48,107,o), (119,-12,o), (313,-12,cs) ); }, { closed = 1; nodes = ( (388,-112,l), (388,812,l), (248,812,l), (248,-112,l) ); } ); width = 639; }, { associatedMasterId = m003; attr = { axisRules = ( { min = 600; } ); }; layerId = "A228A55F-5D4A-4BFE-9EA2-05026646E7A9"; name = "7 Nov 24 at 18:19"; shapes = ( { closed = 1; nodes = ( (472,-12,o), (575,58,o), (575,195,c), (575,460,o), (212,385,o), (212,508,cs), (212,567,o), (270,582,o), (314,582,cs), (370,582,o), (407,554,o), (416,505,c), (569,505,l), (564,595,o), (492,712,o), (314,712,cs), (137,712,o), (59,618,o), (59,516,c), (59,226,o), (421,338,o), (421,186,c), (421,142,o), (374,118,o), (313,118,c), (257,118,o), (205,147,o), (191,222,c), (35,222,l), (48,107,o), (119,-12,o), (313,-12,cs) ); }, { closed = 1; nodes = ( (388,653,l), (388,812,l), (248,812,l), (248,653,l) ); }, { closed = 1; nodes = ( (248,25,l), (248,-112,l), (388,-112,l), (388,25,l) ); } ); width = 639; }, { associatedMasterId = m002; attr = { axisRules = ( { min = 600; } ); }; layerId = "977ED246-DC2B-4AB2-93BE-62ADE115E105"; name = "7 Nov 24 at 18:19"; shapes = ( { closed = 1; nodes = ( (453,-12,o), (559,58,o), (559,195,cs), (559,457,o), (165,344,o), (165,521,cs), (165,591,o), (233,632,o), (303,632,cs), (398,632,o), (446,572,o), (456,513,c), (549,513,l), (544,603,o), (463,712,o), (310,712,cs), (150,712,o), (73,618,o), (73,516,cs), (73,246,o), (467,371,o), (467,186,cs), (467,114,o), (396,68,o), (313,68,cs), (218,68,o), (163,129,o), (149,214,c), (52,214,l), (65,99,o), (143,-12,o), (313,-12,cs) ); }, { closed = 1; nodes = ( (348,660,l), (348,791,l), (268,791,l), (268,660,l) ); }, { closed = 1; nodes = ( (268,30,l), (268,-91,l), (348,-91,l), (348,30,l) ); } ); width = 597; }, { associatedMasterId = m01; attr = { axisRules = ( { min = 600; } ); }; layerId = "1E7D3510-5BD8-4C64-BDAD-4DBB14FDB730"; name = "7 Nov 24 at 18:20"; shapes = ( { closed = 1; nodes = ( (437,-12,o), (541,58,o), (541,195,cs), (541,437,o), (125,337,o), (125,521,cs), (125,591,o), (183,656,o), (290,656,cs), (408,656,o), (458,580,o), (467,513,c), (533,513,l), (528,603,o), (442,712,o), (297,712,cs), (140,712,o), (65,618,o), (65,516,cs), (65,259,o), (481,379,o), (481,186,cs), (481,114,o), (421,44,o), (300,44,cs), (174,44,o), (125,121,o), (109,214,c), (42,214,l), (55,99,o), (133,-12,o), (300,-12,cs) ); }, { closed = 1; nodes = ( (324,679,l), (324,791,l), (264,791,l), (264,679,l) ); }, { closed = 1; nodes = ( (264,19,l), (264,-91,l), (324,-91,l), (324,19,l) ); } ); width = 594; } ); unicode = 36; }, { glyphname = euro; lastChange = "2024-08-26 00:31:22 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (406,396,l), (406,452,l), (34,452,l), (34,396,l) ); }, { closed = 1; nodes = ( (507,-13,o), (596,76,o), (624,199,c), (564,211,l), (539,117,o), (474,43,o), (385,43,cs), (258,43,o), (173,167,o), (173,357,cs), (173,542,o), (270,657,o), (381,657,cs), (464,657,o), (542,581,o), (560,488,c), (624,501,l), (596,624,o), (511,713,o), (381,713,cs), (198,713,o), (111,541,o), (111,355,cs), (111,163,o), (197,-13,o), (385,-13,cs) ); }, { closed = 1; nodes = ( (406,260,l), (406,316,l), (34,316,l), (34,260,l) ); } ); width = 668; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (416,385,l), (416,465,l), (20,465,l), (20,385,l) ); }, { closed = 1; nodes = ( (503,-13,o), (607,75,o), (635,198,c), (546,216,l), (523,130,o), (456,67,o), (386,67,cs), (269,67,o), (196,194,o), (196,357,cs), (196,512,o), (269,633,o), (386,633,cs), (456,633,o), (523,570,o), (546,484,c), (635,502,l), (607,625,o), (503,713,o), (386,713,cs), (194,713,o), (106,548,o), (106,355,cs), (106,171,o), (193,-13,o), (386,-13,cs) ); }, { closed = 1; nodes = ( (416,241,l), (416,321,l), (20,321,l), (20,241,l) ); } ); width = 660; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (429,376,l), (429,486,l), (26,486,l), (26,376,l) ); }, { closed = 1; nodes = ( (525,-12,o), (623,76,o), (651,199,c), (510,227,l), (496,161,o), (446,119,o), (396,119,cs), (297,119,o), (250,198,o), (250,357,cs), (250,499,o), (291,583,o), (390,583,cs), (446,583,o), (495,532,o), (510,474,c), (651,502,l), (623,625,o), (496,713,o), (390,713,cs), (188,713,o), (96,549,o), (96,355,cs), (96,171,o), (172,-12,o), (396,-12,cs) ); }, { closed = 1; nodes = ( (429,211,l), (429,321,l), (26,321,l), (26,211,l) ); } ); width = 677; }, { associatedMasterId = m002; layerId = "7BD3C881-F3A6-4A11-830F-50E4BCAEA752"; name = "5 Aug 24 at 14:37"; shapes = ( { closed = 1; nodes = ( (506,-13,o), (575,171,o), (575,354,cs), (575,547,o), (504,712,o), (296,712,cs), (86,712,o), (15,547,o), (15,354,cs), (15,171,o), (84,-13,o), (296,-13,cs) ); }, { closed = 1; nodes = ( (156,67,o), (107,197,o), (107,355,cs), (107,516,o), (156,632,o), (297,632,cs), (432,632,o), (483,516,o), (483,355,cs), (483,197,o), (432,67,o), (296,67,cs) ); } ); width = 600; }, { associatedMasterId = m003; layerId = "EA768BBE-DB56-4D11-87BD-F07499E3EA9D"; name = "5 Aug 24 at 14:41"; shapes = ( { closed = 1; nodes = ( (50,-13,o), (-37,161,o), (-37,354,cs), (-37,557,o), (52,712,o), (267,712,cs), (479,712,o), (568,557,o), (568,354,cs), (568,161,o), (481,-13,o), (267,-13,c) ); }, { closed = 1; nodes = ( (147,582,o), (103,500,o), (103,355,cs), (103,213,o), (147,117,o), (267,117,cs), (383,117,o), (428,213,o), (428,355,cs), (428,500,o), (383,582,o), (268,582,cs) ); } ); width = 600; }, { associatedMasterId = m01; layerId = "8C681B85-91CA-4D47-BC45-2B848EF584BC"; name = "5 Aug 24 at 14:47"; shapes = ( { closed = 1; nodes = ( (512,-13,o), (575,171,o), (575,354,cs), (575,547,o), (510,712,o), (296,712,cs), (81,712,o), (15,547,o), (15,354,cs), (15,171,o), (79,-13,o), (296,-13,cs) ); }, { closed = 1; nodes = ( (136,42,o), (77,177,o), (77,355,cs), (77,536,o), (136,657,o), (297,657,cs), (452,657,o), (513,536,o), (513,355,cs), (513,177,o), (452,42,o), (296,42,cs) ); } ); width = 600; } ); unicode = 8364; }, { glyphname = rupeeIndian; lastChange = "2025-01-01 00:12:51 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (480,0,l), (174,298,l), (241,298,ls), (382,297,o), (470,388,o), (470,500,cs), (470,643,o), (360,682,o), (241,682,cs), (90,682,l), (90,644,l), (237,644,ls), (341,644,o), (408,602,o), (408,500,cs), (408,413,o), (339,353,o), (241,353,cs), (90,353,l), (90,301,l), (399,0,l) ); }, { closed = 1; nodes = ( (537,468,l), (537,524,l), (90,524,l), (90,468,l) ); }, { closed = 1; nodes = ( (537,644,l), (537,700,l), (90,700,l), (90,644,l) ); } ); width = 591; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (494,0,l), (191,267,l), (259,267,ls), (394,266,o), (476,362,o), (476,485,cs), (476,585,o), (394,685,o), (218,685,cs), (82,685,l), (82,620,l), (242,620,ls), (331,620,o), (386,558,o), (386,485,cs), (386,389,o), (331,346,o), (241,346,cs), (76,346,l), (76,270,l), (380,0,l) ); }, { closed = 1; nodes = ( (545,443,l), (545,523,l), (77,523,l), (77,443,l) ); }, { closed = 1; nodes = ( (545,620,l), (545,700,l), (78,700,l), (78,620,l) ); } ); width = 578; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (531,0,l), (255,225,l), (261,225,l), (398,237,o), (482,322,o), (482,464,cs), (482,606,o), (356,679,o), (213,679,cs), (80,679,l), (80,578,l), (230,578,ls), (293,578,o), (334,531,o), (334,464,cs), (334,390,o), (294,350,o), (230,350,cs), (80,350,l), (80,225,l), (350,0,l) ); }, { closed = 1; nodes = ( (568,409,l), (568,519,l), (80,519,l), (80,409,l) ); }, { closed = 1; nodes = ( (568,591,l), (568,701,l), (80,701,l), (80,591,l) ); } ); width = 588; } ); unicode = 8377; }, { glyphname = sterling; lastChange = "2024-08-26 00:11:05 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (488,0,l), (488,56,l), (129,56,l), (153,73,o), (228,161,o), (228,285,cs), (228,406,o), (129,440,o), (129,528,cs), (129,608,o), (187,656,o), (265,656,cs), (349,656,o), (416,600,o), (416,519,c), (476,519,l), (476,555,o), (467,589,o), (452,615,cs), (416,677,o), (344,712,o), (264,712,cs), (149,712,o), (69,647,o), (69,528,cs), (69,413,o), (166,377,o), (166,285,cs), (166,163,o), (101,95,o), (48,56,c), (48,0,l) ); }, { closed = 1; nodes = ( (370,276,l), (370,332,l), (36,332,l), (36,276,l) ); } ); width = 513; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (492,0,l), (492,80,l), (156,80,l), (180,97,o), (245,175,o), (245,274,cs), (245,395,o), (146,440,o), (146,528,cs), (146,584,o), (195,632,o), (273,632,c), (351,632,o), (396,576,o), (396,519,c), (484,519,l), (484,555,o), (475,589,o), (460,615,c), (424,677,o), (352,712,o), (272,712,c), (157,712,o), (60,647,o), (60,528,cs), (60,413,o), (157,377,o), (157,285,cs), (157,188,o), (98,119,o), (45,80,c), (45,0,l) ); }, { closed = 1; nodes = ( (392,266,l), (392,346,l), (37,346,l), (37,266,l) ); } ); width = 516; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (515,0,l), (515,126,l), (216,126,l), (240,143,o), (292,197,o), (292,296,cs), (292,417,o), (206,437,o), (206,513,cs), (206,519,o), (210,582,o), (288,582,cs), (350,582,o), (372,545,o), (372,494,c), (502,494,l), (502,530,o), (493,589,o), (478,615,cs), (442,677,o), (361,712,o), (287,712,cs), (149,712,o), (52,649,o), (52,528,cs), (52,413,o), (138,399,o), (138,307,cs), (138,210,o), (90,165,o), (37,126,c), (37,0,l) ); }, { closed = 1; nodes = ( (424,254,l), (424,364,l), (34,364,l), (34,254,l) ); } ); width = 533; } ); unicode = 163; }, { glyphname = yen; lastChange = "2024-11-21 09:59:10 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (307,0,l), (304,294,l), (538,700,l), (471,700,l), (276,350,l), (80,700,l), (6,700,l), (247,294,l), (244,0,l) ); }, { closed = 1; nodes = ( (461,130,l), (461,186,l), (84,186,l), (84,130,l) ); }, { closed = 1; nodes = ( (461,266,l), (461,322,l), (84,322,l), (84,266,l) ); } ); width = 544; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (327,0,l), (324,309,l), (553,700,l), (460,700,l), (281,390,l), (105,700,l), (5,700,l), (242,309,l), (239,0,l) ); }, { closed = 1; nodes = ( (482,134,l), (482,214,l), (77,214,l), (77,134,l) ); }, { closed = 1; nodes = ( (482,278,l), (482,358,l), (77,358,l), (77,278,l) ); } ); width = 558; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (387,0,l), (384,289,l), (625,700,l), (467,700,l), (313,411,l), (161,700,l), (0,700,l), (243,289,l), (240,0,l) ); }, { closed = 1; nodes = ( (553,109,l), (553,219,l), (73,219,l), (73,109,l) ); }, { closed = 1; nodes = ( (553,274,l), (553,384,l), (73,384,l), (73,274,l) ); } ); width = 625; } ); unicode = 165; }, { glyphname = dotmath; lastChange = "2024-10-11 09:39:13 +0000"; layers = ( { layerId = m002; shapes = ( { closed = 1; nodes = ( (189,239,o), (218,268,o), (218,304,cs), (218,340,o), (189,369,o), (153,369,cs), (117,369,o), (88,340,o), (88,304,cs), (88,268,o), (117,239,o), (153,239,cs) ); } ); width = 306; }, { layerId = m01; shapes = ( { closed = 1; nodes = ( (159,255,o), (181,277,o), (181,304,cs), (181,333,o), (159,355,o), (131,355,cs), (103,355,o), (80,333,o), (80,304,cs), (80,277,o), (103,255,o), (131,255,cs) ); } ); width = 261; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (215,217,o), (256,257,o), (256,307,cs), (256,355,o), (215,394,o), (167,394,cs), (118,394,o), (77,355,o), (77,307,cs), (77,257,o), (118,217,o), (167,217,cs) ); } ); width = 333; } ); unicode = 8901; }, { glyphname = plus; lastChange = "2024-11-09 02:53:14 +0000"; layers = ( { guides = ( { pos = (266,296); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (325,47,l), (325,547,l), (269,547,l), (269,47,l) ); }, { closed = 1; nodes = ( (533,272,l), (533,322,l), (60,322,l), (60,272,l) ); } ); width = 593; }, { guides = ( { pos = (308,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (351,45,l), (351,545,l), (263,545,l), (263,45,l) ); }, { closed = 1; nodes = ( (550,255,l), (550,335,l), (64,335,l), (64,255,l) ); } ); width = 614; }, { guides = ( { pos = (273,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (382,41,l), (382,549,l), (247,549,l), (247,41,l) ); }, { closed = 1; nodes = ( (561,232,l), (561,358,l), (68,358,l), (68,232,l) ); } ); width = 629; } ); unicode = 43; }, { glyphname = minus; lastChange = "2024-11-09 02:53:14 +0000"; layers = ( { guides = ( { pos = (249,296); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (503,270,l), (503,320,l), (60,320,l), (60,270,l) ); } ); width = 563; }, { guides = ( { pos = (249,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (509,255,l), (509,335,l), (64,335,l), (64,255,l) ); } ); width = 573; }, { guides = ( { pos = (259,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (547,231,l), (547,357,l), (68,357,l), (68,231,l) ); } ); width = 615; } ); unicode = 8722; }, { glyphname = multiply; lastChange = "2024-11-21 09:59:22 +0000"; layers = ( { guides = ( { pos = (249,296); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (434,93,l), (470,130,l), (97,497,l), (60,461,l) ); }, { closed = 1; nodes = ( (433,497,l), (60,130,l), (96,93,l), (470,461,l) ); } ); width = 530; }, { guides = ( { pos = (251,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (439,85,l), (491,139,l), (118,506,l), (65,453,l) ); }, { closed = 1; nodes = ( (438,506,l), (65,139,l), (117,85,l), (491,453,l) ); } ); width = 556; }, { guides = ( { pos = (259,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (439,71,l), (514,146,l), (143,517,l), (68,442,l) ); }, { closed = 1; nodes = ( (439,517,l), (68,146,l), (143,71,l), (514,442,l) ); } ); width = 582; } ); unicode = 215; }, { glyphname = divide; lastChange = "2024-11-21 09:59:28 +0000"; layers = ( { guides = ( { pos = (238,296); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (289,41,o), (311,63,o), (311,90,cs), (311,124,o), (290,141,o), (261,141,cs), (233,141,o), (210,119,o), (210,90,cs), (210,63,o), (233,41,o), (261,41,cs) ); }, { closed = 1; nodes = ( (289,453,o), (311,475,o), (311,502,cs), (311,531,o), (289,553,o), (261,553,cs), (233,553,o), (210,531,o), (210,502,cs), (210,475,o), (233,453,o), (261,453,cs) ); }, { closed = 1; nodes = ( (460,272,l), (460,322,l), (60,322,l), (60,272,l) ); } ); width = 520; }, { guides = ( { pos = (262,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (322,26,o), (350,55,o), (350,89,cs), (350,124,o), (322,153,o), (288,153,cs), (253,153,o), (224,124,o), (224,89,cs), (224,55,o), (253,26,o), (288,26,cs) ); }, { closed = 1; nodes = ( (322,436,o), (350,465,o), (350,499,cs), (350,534,o), (322,563,o), (288,563,cs), (253,563,o), (224,534,o), (224,499,cs), (224,465,o), (253,436,o), (288,436,cs) ); }, { closed = 1; nodes = ( (509,256,l), (509,336,l), (64,336,l), (64,256,l) ); } ); width = 573; }, { guides = ( { pos = (277,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (360,3,o), (399,42,o), (399,90,cs), (399,137,o), (360,175,o), (313,175,cs), (265,175,o), (226,137,o), (226,90,cs), (226,42,o), (265,3,o), (313,3,cs) ); }, { closed = 1; nodes = ( (360,414,o), (399,453,o), (399,501,cs), (399,548,o), (360,586,o), (313,586,cs), (265,586,o), (226,548,o), (226,501,cs), (226,453,o), (265,414,o), (313,414,cs) ); }, { closed = 1; nodes = ( (556,235,l), (556,361,l), (68,361,l), (68,235,l) ); } ); width = 624; } ); unicode = 247; }, { glyphname = equal; lastChange = "2024-11-22 03:06:09 +0000"; layers = ( { guides = ( { pos = (246,296); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (524,349,l), (524,399,l), (60,399,l), (60,349,l) ); }, { closed = 1; nodes = ( (524,193,l), (524,243,l), (60,243,l), (60,193,l) ); } ); width = 584; }, { guides = ( { pos = (271,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (550,336,l), (550,416,l), (65,416,l), (65,336,l) ); }, { closed = 1; nodes = ( (549,173,l), (549,253,l), (64,253,l), (64,173,l) ); } ); width = 614; }, { guides = ( { pos = (245,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (558,347,l), (558,473,l), (68,473,l), (68,347,l) ); }, { closed = 1; nodes = ( (558,117,l), (558,243,l), (68,243,l), (68,117,l) ); } ); width = 626; } ); unicode = 61; }, { glyphname = greater; lastChange = "2024-11-22 03:04:22 +0000"; layers = ( { guides = ( { pos = (237,296); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (475,271,l), (475,316,l), (40,538,l), (40,468,l), (437,271,l), (437,315,l), (40,124,l), (40,55,l) ); } ); width = 535; }, { guides = ( { pos = (245,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (488,267,l), (488,325,l), (44,544,l), (44,454,l), (432,262,l), (432,330,l), (44,138,l), (44,48,l) ); } ); width = 552; }, { guides = ( { pos = (249,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (515,247,l), (515,344,l), (48,563,l), (48,432,l), (456,252,l), (456,342,l), (48,162,l), (48,28,l) ); } ); width = 583; } ); unicode = 62; }, { glyphname = less; lastChange = "2024-11-09 02:53:14 +0000"; layers = ( { guides = ( { pos = (263,296); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (495,123,l), (98,314,l), (98,270,l), (495,467,l), (495,537,l), (60,315,l), (60,270,l), (495,54,l) ); } ); width = 535; }, { guides = ( { pos = (260,295); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (508,136,l), (120,328,l), (120,260,l), (508,452,l), (508,542,l), (64,323,l), (64,265,l), (508,46,l) ); } ); width = 552; }, { guides = ( { pos = (274,295); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (535,162,l), (127,342,l), (127,252,l), (535,432,l), (535,563,l), (68,344,l), (68,247,l), (535,28,l) ); } ); width = 583; } ); unicode = 60; }, { glyphname = plusminus; lastChange = "2024-11-09 02:53:14 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (310,171,l), (310,586,l), (254,586,l), (254,171,l) ); }, { closed = 1; nodes = ( (503,354,l), (503,404,l), (60,404,l), (60,354,l) ); }, { closed = 1; nodes = ( (503,0,l), (503,50,l), (60,50,l), (60,0,l) ); } ); width = 563; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (331,183,l), (331,594,l), (243,594,l), (243,183,l) ); }, { closed = 1; nodes = ( (509,349,l), (509,429,l), (64,429,l), (64,349,l) ); }, { closed = 1; nodes = ( (509,0,l), (509,80,l), (64,80,l), (64,0,l) ); } ); width = 573; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (375,194,l), (375,625,l), (240,625,l), (240,194,l) ); }, { closed = 1; nodes = ( (547,347,l), (547,473,l), (68,473,l), (68,347,l) ); }, { closed = 1; nodes = ( (547,0,l), (547,126,l), (68,126,l), (68,0,l) ); } ); width = 615; } ); unicode = 177; }, { glyphname = asciitilde; lastChange = "2024-11-09 02:53:14 +0000"; layers = ( { guides = ( { pos = (202,296); }, { pos = (202,239); }, { pos = (202,354); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (399,239,o), (434,281,o), (451,313,c), (413,345,l), (401,329,o), (383,291,o), (337,291,cs), (291,291,o), (242,354,o), (180,354,cs), (122,354,o), (76,308,o), (60,278,c), (95,247,l), (109,264,o), (131,302,o), (175,302,cs), (223,302,o), (264,239,o), (340,239,cs) ); } ); width = 511; }, { guides = ( { pos = (251,366); }, { pos = (162,223); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (410,223,o), (464,274,o), (481,306,c), (424,357,l), (410,341,o), (390,303,o), (344,303,cs), (300,303,o), (262,366,o), (185,366,cs), (122,366,o), (70,310,o), (54,280,c), (108,231,l), (122,248,o), (146,286,o), (190,286,cs), (232,286,o), (273,223,o), (351,223,cs) ); } ); width = 506; }, { guides = ( { pos = (239,391); }, { pos = (239,198); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (518,195,o), (581,271,o), (599,303,c), (514,385,l), (503,369,o), (483,325,o), (423,325,cs), (378,325,o), (314,394,o), (243,394,cs), (137,394,o), (86,315,o), (68,283,c), (150,206,l), (161,221,o), (182,264,o), (242,264,cs), (286,264,o), (348,195,o), (430,195,cs) ); } ); width = 667; } ); unicode = 126; }, { glyphname = asciicircum; lastChange = "2024-11-09 02:53:14 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (265,700,l), (227,700,l), (52,407,l), (132,408,l), (263,646,l), (229,645,l), (361,406,l), (439,406,l) ); } ); width = 547; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (317,700,l), (255,700,l), (80,407,l), (170,407,l), (299,645,l), (275,645,l), (407,406,l), (491,406,l) ); } ); width = 571; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (319,700,l), (236,700,l), (50,407,l), (187,407,l), (302,624,l), (252,624,l), (369,406,l), (505,406,l) ); } ); width = 555; } ); unicode = 94; }, { glyphname = percent; lastChange = "2024-11-09 02:53:14 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (248,0,l), (626,700,l), (561,700,l), (183,0,l) ); }, { closed = 1; nodes = ( (284,383,o), (358,439,o), (358,548,cs), (358,655,o), (288,712,o), (204,712,cs), (123,712,o), (50,655,o), (50,547,cs), (50,439,o), (120,383,o), (204,383,cs) ); }, { closed = 1; nodes = ( (141,433,o), (107,487,o), (107,547,cs), (107,604,o), (141,662,o), (204,662,cs), (267,662,o), (301,606,o), (301,548,cs), (301,489,o), (264,433,o), (204,433,cs) ); }, { closed = 1; nodes = ( (706,-12,o), (780,44,o), (780,153,cs), (780,260,o), (710,317,o), (626,317,cs), (545,317,o), (472,260,o), (472,152,cs), (472,44,o), (542,-12,o), (626,-12,cs) ); }, { closed = 1; nodes = ( (563,38,o), (529,92,o), (529,152,cs), (529,209,o), (563,267,o), (626,267,cs), (689,267,o), (723,211,o), (723,153,cs), (723,94,o), (686,38,o), (626,38,cs) ); } ); width = 830; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (275,0,l), (661,700,l), (570,700,l), (184,0,l) ); }, { closed = 1; nodes = ( (302,383,o), (376,442,o), (376,548,cs), (376,651,o), (306,712,o), (222,712,cs), (141,712,o), (68,650,o), (68,547,cs), (68,441,o), (138,383,o), (222,383,cs) ); }, { closed = 1; nodes = ( (172,454,o), (145,498,o), (145,547,cs), (145,594,o), (172,641,o), (222,641,cs), (272,641,o), (299,595,o), (299,548,cs), (299,500,o), (269,454,o), (222,454,cs) ); }, { closed = 1; nodes = ( (704,-13,o), (778,46,o), (778,152,cs), (778,255,o), (708,316,o), (624,316,cs), (543,316,o), (470,254,o), (470,151,cs), (470,45,o), (540,-13,o), (624,-13,cs) ); }, { closed = 1; nodes = ( (574,58,o), (547,102,o), (547,151,cs), (547,198,o), (574,245,o), (624,245,cs), (674,245,o), (701,199,o), (701,152,cs), (701,104,o), (671,58,o), (624,58,cs) ); } ); width = 846; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (352,0,l), (736,700,l), (599,700,l), (215,0,l) ); }, { closed = 1; nodes = ( (320,353,o), (402,417,o), (402,533,cs), (402,645,o), (325,712,o), (233,712,cs), (145,712,o), (64,644,o), (64,533,cs), (64,416,o), (141,353,o), (233,353,cs) ); }, { closed = 1; nodes = ( (190,455,o), (167,492,o), (167,533,cs), (167,573,o), (190,610,o), (233,610,cs), (276,610,o), (299,574,o), (299,533,cs), (299,494,o), (274,455,o), (233,455,cs) ); }, { closed = 1; nodes = ( (804,-12,o), (886,52,o), (886,168,cs), (886,280,o), (809,347,o), (717,347,cs), (629,347,o), (548,279,o), (548,168,cs), (548,51,o), (625,-12,o), (717,-12,cs) ); }, { closed = 1; nodes = ( (674,89,o), (651,127,o), (651,168,cs), (651,208,o), (674,246,o), (717,246,cs), (760,246,o), (783,209,o), (783,168,cs), (783,129,o), (758,89,o), (717,89,cs) ); } ); width = 950; } ); unicode = 37; }, { glyphname = upArrow; lastChange = "2024-11-09 03:05:07 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (651,337,l), (693,379,l), (372,700,l), (330,658,l) ); }, { closed = 1; nodes = ( (372,700,l), (50,378,l), (93,336,l), (414,658,l) ); }, { closed = 1; nodes = ( (402,0,l), (402,653,l), (342,653,l), (342,0,l) ); } ); width = 743; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (633,321,l), (692,380,l), (371,700,l), (313,641,l) ); }, { closed = 1; nodes = ( (371,700,l), (50,378,l), (108,320,l), (429,642,l) ); }, { closed = 1; nodes = ( (411,0,l), (411,592,l), (328,591,l), (328,0,l) ); } ); width = 742; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (605,288,l), (694,377,l), (373,698,l), (284,609,l) ); }, { closed = 1; nodes = ( (371,700,l), (50,379,l), (139,290,l), (460,611,l) ); }, { closed = 1; nodes = ( (439,0,l), (439,611,l), (299,610,l), (299,0,l) ); } ); width = 744; } ); unicode = 8593; }, { glyphname = northEastArrow; lastChange = "2024-11-09 03:05:07 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (493,47,l), (553,47,l), (553,500,l), (493,500,l) ); }, { closed = 1; nodes = ( (98,500,l), (98,440,l), (553,441,l), (553,500,l) ); }, { closed = 1; nodes = ( (92,0,l), (541,446,l), (498,488,l), (50,42,l) ); } ); width = 603; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (477,47,l), (560,47,l), (559,500,l), (477,500,l) ); }, { closed = 1; nodes = ( (105,500,l), (105,418,l), (559,418,l), (559,500,l) ); }, { closed = 1; nodes = ( (109,0,l), (511,396,l), (452,454,l), (50,59,l) ); } ); width = 610; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (427,54,l), (553,54,l), (553,508,l), (427,508,l) ); }, { closed = 1; nodes = ( (96,508,l), (96,382,l), (550,382,l), (550,508,l) ); }, { closed = 1; nodes = ( (133,0,l), (540,394,l), (442,493,l), (34,99,l) ); } ); width = 600; } ); unicode = 8599; }, { glyphname = rightArrow; lastChange = "2024-11-21 09:59:46 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (750,359,l), (428,681,l), (386,638,l), (708,317,l) ); }, { closed = 1; nodes = ( (703,329,l), (703,389,l), (50,389,l), (50,329,l) ); }, { closed = 1; nodes = ( (750,359,l), (708,401,l), (387,80,l), (429,38,l) ); } ); width = 800; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (750,357,l), (428,678,l), (370,620,l), (692,299,l) ); }, { closed = 1; nodes = ( (642,317,l), (641,400,l), (50,400,l), (50,317,l) ); }, { closed = 1; nodes = ( (750,357,l), (691,415,l), (371,95,l), (430,36,l) ); } ); width = 800; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (750,361,l), (429,682,l), (340,593,l), (661,272,l) ); }, { closed = 1; nodes = ( (661,293,l), (660,433,l), (50,433,l), (50,293,l) ); }, { closed = 1; nodes = ( (748,359,l), (659,448,l), (338,127,l), (427,38,l) ); } ); width = 800; } ); unicode = 8594; }, { glyphname = southEastArrow; lastChange = "2024-11-09 03:05:07 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (50,458,l), (496,12,l), (538,55,l), (92,500,l) ); }, { closed = 1; nodes = ( (550,0,l), (550,455,l), (490,455,l), (491,0,l) ); }, { closed = 1; nodes = ( (97,60,l), (97,0,l), (550,0,l), (550,60,l) ); } ); width = 600; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (50,441,l), (452,46,l), (511,104,l), (109,500,l) ); }, { closed = 1; nodes = ( (559,0,l), (560,453,l), (477,453,l), (477,0,l) ); }, { closed = 1; nodes = ( (105,82,l), (105,0,l), (559,0,l), (559,82,l) ); } ); width = 610; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (50,410,l), (438,13,l), (537,111,l), (149,509,l) ); }, { closed = 1; nodes = ( (552,3,l), (552,457,l), (426,457,l), (426,3,l) ); }, { closed = 1; nodes = ( (98,126,l), (98,0,l), (552,0,l), (552,126,l) ); } ); width = 602; } ); unicode = 8600; }, { glyphname = downArrow; lastChange = "2024-11-09 03:05:07 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (341,700,l), (341,47,l), (401,47,l), (401,700,l) ); }, { closed = 1; nodes = ( (371,0,l), (693,322,l), (650,364,l), (329,42,l) ); }, { closed = 1; nodes = ( (92,363,l), (50,321,l), (371,0,l), (413,42,l) ); } ); width = 743; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (328,700,l), (328,109,l), (411,108,l), (411,700,l) ); }, { closed = 1; nodes = ( (371,0,l), (692,320,l), (633,379,l), (313,59,l) ); }, { closed = 1; nodes = ( (108,380,l), (50,322,l), (371,0,l), (429,58,l) ); } ); width = 742; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (299,700,l), (299,90,l), (439,89,l), (439,700,l) ); }, { closed = 1; nodes = ( (373,2,l), (694,323,l), (605,412,l), (284,91,l) ); }, { closed = 1; nodes = ( (139,410,l), (50,321,l), (371,0,l), (460,89,l) ); } ); width = 744; } ); unicode = 8595; }, { glyphname = southWestArrow; lastChange = "2024-11-09 03:05:07 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (62,55,l), (104,12,l), (550,458,l), (508,500,l) ); }, { closed = 1; nodes = ( (110,455,l), (50,455,l), (50,0,l), (109,0,l) ); }, { closed = 1; nodes = ( (50,0,l), (503,0,l), (503,60,l), (50,60,l) ); } ); width = 600; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (99,104,l), (158,46,l), (560,441,l), (501,500,l) ); }, { closed = 1; nodes = ( (133,453,l), (50,453,l), (51,0,l), (133,0,l) ); }, { closed = 1; nodes = ( (51,0,l), (505,0,l), (505,82,l), (51,82,l) ); } ); width = 610; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (65,111,l), (164,13,l), (552,410,l), (453,509,l) ); }, { closed = 1; nodes = ( (176,457,l), (50,457,l), (50,3,l), (176,3,l) ); }, { closed = 1; nodes = ( (50,0,l), (504,0,l), (504,126,l), (50,126,l) ); } ); width = 602; } ); unicode = 8601; }, { glyphname = leftArrow; lastChange = "2024-11-09 03:05:07 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (97,389,l), (97,329,l), (750,329,l), (750,389,l) ); }, { closed = 1; nodes = ( (50,359,l), (371,38,l), (413,80,l), (92,401,l) ); }, { closed = 1; nodes = ( (414,638,l), (372,681,l), (50,359,l), (92,317,l) ); } ); width = 800; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (159,400,l), (158,317,l), (750,317,l), (750,400,l) ); }, { closed = 1; nodes = ( (50,357,l), (370,36,l), (429,95,l), (109,415,l) ); }, { closed = 1; nodes = ( (430,620,l), (372,678,l), (50,357,l), (108,299,l) ); } ); width = 800; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (140,433,l), (139,293,l), (750,293,l), (750,433,l) ); }, { closed = 1; nodes = ( (52,359,l), (373,38,l), (462,127,l), (141,448,l) ); }, { closed = 1; nodes = ( (460,593,l), (371,682,l), (50,361,l), (139,272,l) ); } ); width = 800; } ); unicode = 8592; }, { glyphname = northWestArrow; lastChange = "2024-11-09 03:05:07 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (550,42,l), (104,488,l), (62,445,l), (508,0,l) ); }, { closed = 1; nodes = ( (503,500,l), (50,500,l), (50,440,l), (503,440,l) ); }, { closed = 1; nodes = ( (109,500,l), (50,500,l), (50,45,l), (110,45,l) ); } ); width = 600; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (560,59,l), (158,454,l), (99,396,l), (501,0,l) ); }, { closed = 1; nodes = ( (505,500,l), (51,500,l), (51,418,l), (505,418,l) ); }, { closed = 1; nodes = ( (133,500,l), (51,500,l), (50,47,l), (133,47,l) ); } ); width = 610; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (569,99,l), (161,493,l), (63,394,l), (470,0,l) ); }, { closed = 1; nodes = ( (507,508,l), (53,508,l), (53,382,l), (507,382,l) ); }, { closed = 1; nodes = ( (176,508,l), (50,508,l), (50,54,l), (176,54,l) ); } ); width = 619; } ); unicode = 8598; }, { glyphname = leftRightArrow; lastChange = "2024-11-09 03:05:07 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (88,388,l), (88,328,l), (928,328,l), (928,388,l) ); }, { closed = 1; nodes = ( (668,591,l), (943,316,l), (986,358,l), (711,633,l) ); }, { closed = 1; nodes = ( (667,124,l), (710,82,l), (986,358,l), (943,399,l) ); }, { closed = 1; nodes = ( (325,633,l), (50,358,l), (93,316,l), (368,591,l) ); }, { closed = 1; nodes = ( (326,82,l), (369,124,l), (93,399,l), (50,358,l) ); } ); width = 1036; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (158,400,l), (158,317,l), (878,317,l), (877,400,l) ); }, { closed = 1; nodes = ( (647,575,l), (928,299,l), (986,357,l), (705,633,l) ); }, { closed = 1; nodes = ( (647,133,l), (706,74,l), (986,357,l), (927,415,l) ); }, { closed = 1; nodes = ( (331,633,l), (50,357,l), (108,299,l), (389,575,l) ); }, { closed = 1; nodes = ( (330,74,l), (389,133,l), (109,415,l), (50,357,l) ); } ); width = 1036; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (210,428,l), (210,288,l), (929,288,l), (929,428,l) ); }, { closed = 1; nodes = ( (637,564,l), (927,270,l), (1016,359,l), (726,653,l) ); }, { closed = 1; nodes = ( (637,154,l), (726,65,l), (1016,359,l), (927,448,l) ); }, { closed = 1; nodes = ( (340,653,l), (50,359,l), (139,270,l), (429,564,l) ); }, { closed = 1; nodes = ( (340,65,l), (429,154,l), (139,448,l), (50,359,l) ); } ); width = 1066; } ); unicode = 8596; }, { glyphname = upDownArrow; lastChange = "2024-11-09 03:05:07 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (295,654,l), (295,-186,l), (355,-186,l), (355,654,l) ); }, { closed = 1; nodes = ( (367,669,l), (325,712,l), (50,437,l), (92,394,l) ); }, { closed = 1; nodes = ( (325,712,l), (284,669,l), (559,393,l), (601,436,l) ); }, { closed = 1; nodes = ( (50,51,l), (325,-224,l), (367,-181,l), (92,94,l) ); }, { closed = 1; nodes = ( (601,52,l), (559,95,l), (284,-181,l), (325,-224,l) ); } ); width = 651; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (293,604,l), (293,-116,l), (376,-115,l), (376,604,l) ); }, { closed = 1; nodes = ( (391,653,l), (333,712,l), (50,432,l), (109,373,l) ); }, { closed = 1; nodes = ( (333,712,l), (275,654,l), (551,373,l), (609,431,l) ); }, { closed = 1; nodes = ( (50,56,l), (333,-224,l), (391,-165,l), (109,115,l) ); }, { closed = 1; nodes = ( (609,57,l), (551,115,l), (275,-166,l), (333,-224,l) ); } ); width = 659; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (232,613,l), (232,-57,l), (372,-57,l), (372,613,l) ); }, { closed = 1; nodes = ( (390,611,l), (301,700,l), (7,410,l), (96,321,l) ); }, { closed = 1; nodes = ( (301,700,l), (212,611,l), (506,321,l), (595,410,l) ); }, { closed = 1; nodes = ( (7,60,l), (301,-230,l), (390,-141,l), (96,149,l) ); }, { closed = 1; nodes = ( (595,60,l), (506,149,l), (212,-141,l), (301,-230,l) ); } ); width = 600; } ); unicode = 8597; }, { glyphname = dieresiscomb; lastChange = "2024-11-21 09:59:56 +0000"; layers = ( { anchors = ( { name = _top; pos = (154,512); } ); guides = ( { pos = (-33,679); }, { pos = (-28,584); }, { pos = (-33,631); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (256,584,o), (277,606,o), (277,631,cs), (277,657,o), (256,679,o), (231,679,cs), (205,679,o), (183,657,o), (183,631,cs), (183,606,o), (205,584,o), (231,584,cs) ); }, { closed = 1; nodes = ( (107,584,o), (128,606,o), (128,631,cs), (128,657,o), (107,679,o), (82,679,cs), (56,679,o), (34,657,o), (34,631,cs), (34,606,o), (56,584,o), (82,584,cs) ); } ); width = 312; }, { anchors = ( { name = _top; pos = (161,512); } ); guides = ( { pos = (-27,700); }, { pos = (-26,590); }, { pos = (-27,645); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (280,590,o), (304,615,o), (304,645,cs), (304,675,o), (280,700,o), (250,700,cs), (220,700,o), (195,675,o), (195,645,cs), (195,615,o), (220,590,o), (250,590,cs) ); }, { closed = 1; nodes = ( (105,590,o), (129,615,o), (129,645,cs), (129,675,o), (105,700,o), (75,700,cs), (45,700,o), (20,675,o), (20,645,cs), (20,615,o), (45,590,o), (75,590,cs) ); } ); width = 324; }, { anchors = ( { name = _top; pos = (204,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (371,559,o), (407,598,o), (407,644,cs), (407,690,o), (371,729,o), (323,729,cs), (278,729,o), (239,690,o), (239,644,cs), (239,598,o), (278,559,o), (323,559,cs) ); }, { closed = 1; nodes = ( (144,559,o), (180,598,o), (180,644,cs), (180,690,o), (144,729,o), (96,729,cs), (51,729,o), (12,690,o), (12,644,cs), (12,598,o), (51,559,o), (96,559,cs) ); } ); width = 419; } ); unicode = 776; }, { glyphname = dotaccentcomb; lastChange = "2024-11-21 09:43:56 +0000"; layers = ( { anchors = ( { name = _top; pos = (68,512); } ); guides = ( { pos = (-47,680); }, { pos = (-42,585); }, { pos = (-47,632); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (93,595,o), (114,617,o), (114,642,cs), (114,668,o), (93,690,o), (68,690,cs), (42,690,o), (20,668,o), (20,642,cs), (20,617,o), (42,595,o), (68,595,cs) ); } ); width = 137; }, { anchors = ( { name = _top; pos = (74,512); } ); guides = ( { pos = (-27,700); }, { pos = (-26,590); }, { pos = (-27,645); }, { pos = (-27,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (105,590,o), (129,615,o), (129,645,cs), (129,675,o), (105,700,o), (75,700,cs), (45,700,o), (20,675,o), (20,645,cs), (20,615,o), (45,590,o), (75,590,cs) ); } ); width = 147; }, { anchors = ( { name = _top; pos = (96,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (144,559,o), (180,598,o), (180,644,cs), (180,690,o), (144,729,o), (96,729,cs), (51,729,o), (12,690,o), (12,644,cs), (12,598,o), (51,559,o), (96,559,cs) ); } ); width = 192; } ); unicode = 775; }, { glyphname = gravecomb; lastChange = "2025-01-07 17:10:40 +0000"; layers = ( { anchors = ( { name = _top; pos = (150,512); } ); guides = ( { pos = (-42,586); }, { pos = (-47,633); }, { pos = (-47,681); }, { pos = (-47,704); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (174,586,l), (123,704,l), (30,704,l), (124,586,l) ); } ); width = 208; }, { anchors = ( { name = _top; pos = (157,512); } ); guides = ( { pos = (-49,700); }, { pos = (-48,590); }, { pos = (-49,645); }, { pos = (-49,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (181,590,l), (120,727,l), (10,727,l), (109,590,l) ); } ); width = 191; }, { anchors = ( { name = _top; pos = (187,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (237,559,l), (167,729,l), (13,729,l), (134,559,l) ); } ); width = 244; } ); unicode = 768; }, { glyphname = acutecomb; lastChange = "2024-11-09 06:45:33 +0000"; layers = ( { anchors = ( { name = _top; pos = (50,512); } ); guides = ( { pos = (-42,586); }, { pos = (-47,633); }, { pos = (-47,681); }, { pos = (-47,704); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (174,704,l), (81,704,l), (30,586,l), (80,586,l) ); } ); width = 208; }, { anchors = ( { name = _top; pos = (34,512); } ); guides = ( { pos = (-49,700); }, { pos = (-48,590); }, { pos = (-49,645); }, { pos = (-49,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (181,727,l), (71,727,l), (10,590,l), (82,590,l) ); } ); width = 191; }, { anchors = ( { name = _top; pos = (61,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (237,729,l), (83,729,l), (13,559,l), (116,559,l) ); } ); width = 244; } ); unicode = 769; }, { glyphname = hungarumlautcomb; lastChange = "2024-11-01 01:01:54 +0000"; layers = ( { anchors = ( { name = _top; pos = (119,512); } ); guides = ( { pos = (-42,586); }, { pos = (-47,633); }, { pos = (-47,704); }, { pos = (-47,681); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (174,704,l), (81,704,l), (30,586,l), (80,586,l) ); }, { closed = 1; nodes = ( (307,704,l), (214,704,l), (163,586,l), (213,586,l) ); } ); width = 374; }, { anchors = ( { name = _top; pos = (123,512); } ); guides = ( { pos = (-68,700); }, { pos = (-67,590); }, { pos = (-68,645); }, { pos = (-68,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (181,727,l), (71,727,l), (10,590,l), (82,590,l) ); }, { closed = 1; nodes = ( (337,727,l), (227,727,l), (166,590,l), (238,590,l) ); } ); width = 347; }, { anchors = ( { name = _top; pos = (166,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (242,729,l), (88,729,l), (18,559,l), (121,559,l) ); }, { closed = 1; nodes = ( (441,729,l), (287,729,l), (217,559,l), (320,559,l) ); } ); width = 440; } ); unicode = 779; }, { glyphname = caroncomb.alt; lastChange = "2024-11-07 17:17:11 +0000"; layers = ( { anchors = ( { name = _top; pos = (52,508); } ); guides = ( { pos = (-46,586); }, { pos = (-47,633); }, { pos = (-47,681); }, { pos = (-47,704); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (91,586,l), (147,704,l), (54,704,l), (41,586,l) ); } ); width = 155; }, { anchors = ( { name = _top; pos = (52,508); } ); guides = ( { pos = (-60,700); }, { pos = (-59,590); }, { pos = (-60,645); }, { pos = (-60,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (82,590,l), (131,727,l), (21,727,l), (10,590,l) ); } ); width = 141; }, { anchors = ( { name = _top; pos = (52,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (127,559,l), (181,729,l), (51,729,l), (32,559,l) ); } ); width = 196; } ); }, { glyphname = circumflexcomb; lastChange = "2024-11-09 06:52:28 +0000"; layers = ( { anchors = ( { name = _top; pos = (134,512); } ); guides = ( { pos = (-86,591); }, { pos = (-87,638); }, { pos = (-87,686); }, { pos = (-87,709); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (82,591,l), (161,694,l), (106,694,l), (187,591,l), (258,591,l), (161,709,l), (107,709,l), (10,591,l) ); } ); width = 268; }, { associatedMasterId = m01; layerId = "20458CA3-7F03-4177-ABD8-708FA8DF63BB"; name = "3 Aug 21, 16:24"; shapes = ( { closed = 1; nodes = ( (104,557,l), (190,557,l), (353,745,l), (267,745,l) ); }, { closed = 1; nodes = ( (216,745,l), (379,557,l), (465,557,l), (302,745,l) ); }, { closed = 1; nodes = ( (104,557,l), (190,557,l), (353,745,l), (267,745,l) ); }, { closed = 1; nodes = ( (216,745,l), (379,557,l), (465,557,l), (302,745,l) ); } ); width = 600; }, { anchors = ( { name = _top; pos = (150,512); } ); guides = ( { pos = (-88,700); }, { pos = (-87,590); }, { pos = (-88,645); }, { pos = (-88,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (93,590,l), (177,695,l), (121,695,l), (205,590,l), (288,590,l), (173,727,l), (126,727,l), (10,590,l) ); } ); width = 298; }, { anchors = ( { name = _top; pos = (181,508); } ); guides = ( { pos = (-9,729); }, { pos = (-4,559); }, { pos = (-7,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (130,559,l), (216,690,l), (147,690,l), (231,559,l), (352,559,l), (229,729,l), (132,729,l), (10,559,l) ); } ); width = 362; } ); unicode = 770; }, { glyphname = caroncomb; lastChange = "2024-11-22 05:01:03 +0000"; layers = ( { anchors = ( { name = _top; pos = (134,512); } ); guides = ( { pos = (-86,591); }, { pos = (-87,638); }, { pos = (-87,686); }, { pos = (-87,709); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (161,591,l), (258,709,l), (187,709,l), (106,606,l), (161,605,l), (82,709,l), (10,709,l), (107,591,l) ); } ); width = 268; }, { anchors = ( { name = _top; pos = (152,512); } ); guides = ( { pos = (-88,700); }, { pos = (-87,590); }, { pos = (-88,645); }, { pos = (-88,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (173,590,l), (288,727,l), (205,727,l), (121,622,l), (177,622,l), (93,727,l), (10,727,l), (126,590,l) ); } ); width = 298; }, { anchors = ( { name = _top; pos = (181,508); } ); guides = ( { pos = (-5,729); }, { pos = (0,559); }, { pos = (-3,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (229,559,l), (352,729,l), (231,729,l), (147,598,l), (216,598,l), (130,729,l), (10,729,l), (132,559,l) ); } ); width = 362; } ); unicode = 780; }, { glyphname = brevecomb; lastChange = "2024-11-01 01:02:29 +0000"; layers = ( { anchors = ( { name = _top; pos = (146,512); } ); guides = ( { pos = (-2,592); }, { pos = (-3,639); }, { pos = (-3,687); }, { pos = (-3,710); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (219,590,o), (258,645,o), (258,709,c), (201,709,l), (201,663,o), (176,641,o), (146,641,cs), (117,641,o), (91,663,o), (91,709,c), (34,709,l), (34,645,o), (73,590,o), (146,590,cs) ); } ); width = 298; }, { anchors = ( { name = _top; pos = (144,512); } ); guides = ( { pos = (-251,700); }, { pos = (-250,590); }, { pos = (-251,645); }, { pos = (-251,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (228,588,o), (277,655,o), (277,727,c), (204,727,l), (204,688,o), (185,651,o), (143,651,cs), (103,651,o), (83,688,o), (83,727,c), (10,727,l), (10,655,o), (59,588,o), (143,588,cs) ); } ); width = 287; }, { anchors = ( { name = _top; pos = (174,508); } ); guides = ( { pos = (20,729); }, { pos = (25,559); }, { pos = (22,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (278,556,o), (337,639,o), (337,729,c), (238,729,l), (238,683,o), (223,643,o), (175,643,cs), (129,643,o), (111,683,o), (111,729,c), (12,729,l), (12,639,o), (73,556,o), (175,556,cs) ); } ); width = 349; } ); unicode = 774; }, { glyphname = ringcomb; lastChange = "2024-11-01 01:02:42 +0000"; layers = ( { anchors = ( { name = _top; pos = (119,512); } ); guides = ( { pos = (2,592); }, { pos = (1,639); }, { pos = (1,687); }, { pos = (1,710); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (189,588,o), (235,645,o), (235,705,cs), (235,768,o), (189,822,o), (118,822,cs), (48,822,o), (2,768,o), (2,705,cs), (2,645,o), (48,588,o), (118,588,cs) ); }, { closed = 1; nodes = ( (84,641,o), (55,667,o), (55,705,cs), (55,741,o), (84,770,o), (118,770,cs), (153,770,o), (182,741,o), (182,705,cs), (182,667,o), (153,641,o), (118,641,cs) ); } ); width = 237; }, { anchors = ( { name = _top; pos = (123,512); } ); guides = ( { pos = (-246,700); }, { pos = (-245,590); }, { pos = (-246,645); }, { pos = (-246,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (200,589,o), (247,649,o), (247,712,cs), (247,776,o), (200,834,o), (125,834,cs), (51,834,o), (4,776,o), (4,712,cs), (4,649,o), (51,589,o), (125,589,cs) ); }, { closed = 1; nodes = ( (93,651,o), (65,675,o), (65,712,cs), (65,746,o), (93,772,o), (125,772,cs), (158,772,o), (186,746,o), (186,712,cs), (186,675,o), (158,651,o), (125,651,cs) ); } ); width = 251; }, { anchors = ( { name = _top; pos = (136,508); } ); guides = ( { pos = (27,729); }, { pos = (32,559); }, { pos = (29,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (221,556,o), (270,619,o), (270,686,cs), (270,753,o), (221,814,o), (142,814,cs), (64,814,o), (15,753,o), (15,686,cs), (15,619,o), (64,556,o), (142,556,cs) ); }, { closed = 1; nodes = ( (119,640,o), (98,658,o), (98,686,cs), (98,710,o), (119,730,o), (142,730,cs), (166,730,o), (187,710,o), (187,686,cs), (187,658,o), (166,640,o), (142,640,cs) ); } ); width = 285; } ); unicode = 778; }, { glyphname = tildecomb; lastChange = "2025-01-08 14:10:21 +0000"; layers = ( { anchors = ( { name = _top; pos = (163,512); } ); guides = ( { pos = (-17,591); }, { pos = (-18,638); }, { pos = (-18,686); }, { pos = (-18,709); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (142,628,o), (172,591,o), (210,591,cs), (260,591,o), (288,623,o), (288,682,c), (231,682,l), (232,660,o), (228,646,o), (202,646,cs), (182,646,o), (152,682,o), (115,682,cs), (65,682,o), (37,652,o), (37,591,c), (94,591,l), (94,614,o), (100,628,o), (123,628,cs) ); } ); width = 351; }, { anchors = ( { name = _top; pos = (163,512); } ); guides = ( { pos = (-387,700); }, { pos = (-386,590); }, { pos = (-387,645); }, { pos = (-387,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (142,633,o), (185,587,o), (230,587,cs), (275,587,o), (308,632,o), (308,700,c), (242,700,l), (242,672,o), (235,658,o), (214,658,cs), (182,658,o), (140,703,o), (94,703,cs), (50,703,o), (17,663,o), (17,590,c), (82,590,l), (82,619,o), (91,633,o), (111,633,cs) ); } ); width = 325; }, { anchors = ( { name = _top; pos = (208,508); } ); guides = ( { pos = (22,729); }, { pos = (27,559); }, { pos = (24,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (180,620,o), (213,556,o), (283,556,cs), (369,556,o), (405,619,o), (405,714,c), (306,714,l), (306,676,o), (292,662,o), (268,662,cs), (237,662,o), (200,717,o), (132,717,cs), (47,717,o), (10,660,o), (10,559,c), (109,559,l), (109,596,o), (118,620,o), (147,620,cs) ); } ); width = 415; }, { anchors = ( { name = _top; pos = (209,508); } ); associatedMasterId = m003; guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = "BBFD4248-F8E1-451A-B1D3-0F4A06B581F3"; name = "12 Sep 24 at 16:05"; shapes = ( { closed = 1; nodes = ( (212,579,o), (271,579,cs), (365,579,o), (384,675,o), (384,708,c), (290,708,l), (290,687,o), (277,671,o), (254,671,cs), (206,671,o), (198,708,o), (122,708,cs), (29,708,o), (8,612,o), (8,579,c), (103,579,l), (103,602,o), (121,619,o), (143,619,cs), (180,619,o) ); }, { closed = 1; nodes = ( (605,1725,l), (605,1757,o), (621,1778,o), (645,1778,cs), (663,1778,o), (677,1768,o), (692,1756,cs), (712,1742,o), (734,1725,o), (773,1726,cs), (835,1726,o), (884,1775,o), (885,1862,c), (804,1865,l), (804,1833,o), (790,1812,o), (763,1811,cs), (746,1811,o), (731,1821,o), (715,1833,cs), (695,1847,o), (671,1863,o), (635,1863,cs), (573,1863,o), (523,1814,o), (523,1726,c) ); } ); width = 389; }, { anchors = ( { name = _top; pos = (194,508); } ); associatedMasterId = m003; guides = ( { pos = (8,729); }, { pos = (13,559); }, { pos = (10,644); } ); layerId = "45818B1E-5F7D-4BC1-B8BA-26BE04D49AE9"; name = "23 Sep 24 at 16:04"; shapes = ( { closed = 1; nodes = ( (168,619,o), (215,559,o), (273,559,cs), (353,559,o), (386,625,o), (386,720,c), (292,720,l), (292,685,o), (284,660,o), (250,660,cs), (219,660,o), (171,720,o), (115,720,cs), (36,720,o), (2,660,o), (2,559,c), (96,559,l), (96,594,o), (106,619,o), (138,619,cs) ); } ); width = 387; } ); unicode = 771; }, { glyphname = macroncomb; lastChange = "2024-11-21 09:43:48 +0000"; layers = ( { anchors = ( { name = _top; pos = (142,512); } ); guides = ( { pos = (-27,592); }, { pos = (-28,639); }, { pos = (-28,687); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (274,612,l), (274,666,l), (10,666,l), (10,612,l) ); } ); width = 284; }, { anchors = ( { name = _top; pos = (179,512); } ); guides = ( { pos = (-251,700); }, { pos = (-250,590); }, { pos = (-251,645); }, { pos = (-251,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (329,612,l), (329,680,l), (30,680,l), (30,612,l) ); } ); width = 359; }, { anchors = ( { name = _top; pos = (176,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (337,579,l), (337,671,l), (11,671,l), (11,579,l) ); } ); width = 346; } ); unicode = 772; }, { glyphname = hookabovecomb; lastChange = "2025-01-07 17:10:03 +0000"; layers = ( { anchors = ( { name = _top; pos = (37,500); } ); guides = ( { pos = (-17,591); }, { pos = (-18,638); }, { pos = (-18,686); }, { pos = (-18,709); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (64,571,l), (64,597,l), (108,603,o), (133,629,o), (133,668,cs), (133,727,o), (83,748,o), (10,743,c), (10,697,l), (62,702,o), (86,686,o), (86,668,cs), (86,651,o), (67,637,o), (16,637,c), (16,571,l) ); } ); width = 143; }, { anchors = ( { name = _top; pos = (56,500); } ); guides = ( { pos = (-251,700); }, { pos = (-250,590); }, { pos = (-251,645); }, { pos = (-251,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (94,590,l), (94,618,l), (136,623,o), (177,654,o), (177,698,cs), (177,769,o), (107,790,o), (30,785,c), (30,726,l), (73,730,o), (110,718,o), (110,698,cs), (110,676,o), (73,665,o), (30,665,c), (30,590,l) ); } ); width = 194; }, { anchors = ( { name = _top; pos = (60,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (100,559,l), (100,593,l), (144,597,o), (183,630,o), (183,677,cs), (183,762,o), (97,780,o), (16,775,c), (16,702,l), (68,706,o), (101,698,o), (101,677,cs), (101,656,o), (69,646,o), (16,646,c), (16,559,l) ); } ); width = 193; } ); unicode = 777; }, { glyphname = commaturnedabovecomb; lastChange = "2024-11-09 06:46:14 +0000"; layers = ( { anchors = ( { name = _top; pos = (61,512); } ); guides = ( { pos = (-102,592); }, { pos = (-103,639); }, { pos = (-103,687); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (43,772,o), (7,715,o), (7,653,cs), (7,618,o), (29,592,o), (63,592,cs), (88,592,o), (109,617,o), (109,642,c), (109,666,o), (88,687,o), (63,687,cs), (62,687,o), (58,687,o), (57,687,c), (57,738,o), (109,749,o), (109,749,c), (109,749,o), (110,772,o), (109,772,cs) ); } ); width = 122; }, { anchors = ( { name = _top; pos = (86,512); } ); guides = ( { pos = (-251,700); }, { pos = (-250,590); }, { pos = (-251,645); }, { pos = (-251,727); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (80,788,o), (22,742,o), (22,662,cs), (22,624,o), (47,590,o), (87,590,cs), (124,590,o), (141,619,o), (141,647,cs), (141,673,o), (115,699,o), (88,699,cs), (87,699,o), (82,699,o), (80,698,c), (80,756,o), (140,761,o), (140,761,c), (140,761,o), (141,788,o), (140,788,cs) ); } ); width = 162; }, { anchors = ( { name = _top; pos = (90,508); } ); guides = ( { pos = (10,729); }, { pos = (15,559); }, { pos = (12,644); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (49,802,o), (10,709,o), (10,644,cs), (10,604,o), (34,559,o), (90,559,cs), (130,559,o), (159,587,o), (159,628,cs), (159,661,o), (128,690,o), (92,690,cs), (88,690,o), (84,690,o), (81,689,c), (81,752,o), (157,766,o), (157,766,c), (157,766,o), (158,802,o), (157,802,cs) ); } ); width = 169; } ); unicode = 786; }, { glyphname = horncomb; lastChange = "2024-11-09 06:46:14 +0000"; layers = ( { layerId = m01; shapes = ( { closed = 1; nodes = ( (97,451,o), (181,529,o), (132,651,c), (71,632,l), (102,562,o), (74,500,o), (10,500,c), (10,451,l) ); } ); width = 156; }, { layerId = m002; shapes = ( { closed = 1; nodes = ( (133,446,o), (195,529,o), (146,651,c), (66,629,l), (95,570,o), (91,500,o), (10,500,c), (10,446,l) ); } ); width = 173; }, { layerId = m003; shapes = ( { closed = 1; nodes = ( (148,434,o), (236,543,o), (182,678,c), (68,647,l), (97,588,o), (96,515,o), (15,515,c), (15,434,l) ); } ); width = 208; } ); unicode = 795; }, { glyphname = dotbelowcomb; lastChange = "2024-11-09 06:46:14 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (70,0); } ); guides = ( { pos = (-58,-119); }, { pos = (-58,-71); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (96,-166,o), (117,-144,o), (117,-119,cs), (117,-93,o), (96,-71,o), (71,-71,cs), (45,-71,o), (23,-93,o), (23,-119,cs), (23,-144,o), (45,-166,o), (71,-166,cs) ); } ); width = 141; }, { anchors = ( { name = _bottom; pos = (75,0); } ); guides = ( { pos = (75,-119); }, { pos = (75,-64); }, { pos = (75,-174); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (105,-174,o), (129,-149,o), (129,-119,cs), (129,-89,o), (105,-64,o), (75,-64,cs), (45,-64,o), (20,-89,o), (20,-119,cs), (20,-149,o), (45,-174,o), (75,-174,cs) ); } ); width = 149; }, { anchors = ( { name = _bottom; pos = (94,-1); } ); guides = ( { pos = (-261,-137); }, { pos = (-261,-52); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (142,-222,o), (178,-183,o), (178,-137,cs), (178,-91,o), (142,-52,o), (94,-52,cs), (49,-52,o), (10,-91,o), (10,-137,cs), (10,-183,o), (49,-222,o), (94,-222,cs) ); } ); width = 188; } ); unicode = 803; }, { glyphname = commaaccentcomb; lastChange = "2024-11-09 08:09:46 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (61,-12); } ); guides = ( { pos = (-121,-120); }, { pos = (-119,-120); }, { pos = (-119,-71); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (76,-248,o), (112,-191,o), (112,-129,cs), (112,-94,o), (95,-68,o), (58,-68,cs), (29,-68,o), (10,-93,o), (10,-118,cs), (10,-142,o), (31,-163,o), (56,-163,cs), (57,-163,o), (61,-163,o), (62,-163,c), (62,-214,o), (10,-225,o), (10,-225,c), (10,-225,o), (9,-248,o), (10,-248,cs) ); } ); width = 122; }, { anchors = ( { name = _bottom; pos = (77,-12); } ); guides = ( { pos = (75,-119); }, { pos = (75,-64); }, { pos = (75,-174); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (90,-269,o), (139,-214,o), (139,-134,cs), (139,-96,o), (111,-64,o), (74,-64,cs), (45,-64,o), (21,-93,o), (21,-121,cs), (21,-147,o), (46,-173,o), (73,-173,cs), (74,-173,o), (79,-173,o), (81,-172,c), (81,-230,o), (21,-242,o), (21,-242,c), (21,-242,o), (20,-269,o), (21,-269,cs) ); } ); width = 158; }, { anchors = ( { name = _bottom; pos = (95,-1); } ); guides = ( { pos = (-309,-137); }, { pos = (-309,-52); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (134,-354,o), (181,-231,o), (181,-152,cs), (181,-104,o), (155,-50,o), (90,-50,cs), (41,-50,o), (10,-92,o), (10,-134,cs), (10,-173,o), (43,-208,o), (87,-208,cs), (91,-208,o), (96,-208,o), (99,-207,c), (99,-293,o), (10,-311,o), (10,-311,c), (10,-311,o), (9,-354,o), (10,-354,cs) ); } ); width = 191; } ); unicode = 806; }, { glyphname = commaaccentcomb.loclMAH; lastChange = "2024-11-21 10:00:16 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (109,2); } ); guides = ( { pos = (-73,-204); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (161,-204,o), (207,-169,o), (207,-122,cs), (207,-65,o), (157,-40,o), (110,-40,cs), (96,-40,o), (84,-42,o), (73,-45,c), (83,-91,l), (83,-91,o), (96,-87,o), (111,-87,c), (135,-87,o), (154,-100,o), (154,-121,cs), (154,-139,o), (140,-157,o), (108,-157,cs), (78,-157,o), (53,-135,o), (43,-122,c), (12,-158,l), (33,-186,o), (67,-204,o), (111,-204,cs) ); } ); width = 215; }, { anchors = ( { name = _bottom; pos = (125,2); } ); guides = ( { pos = (63,-119); }, { pos = (63,-207); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (168,-207,o), (213,-172,o), (213,-119,cs), (213,-66,o), (169,-41,o), (123,-41,cs), (104,-41,o), (92,-43,o), (81,-46,c), (94,-95,l), (100,-93,o), (108,-91,o), (116,-91,cs), (144,-91,o), (157,-101,o), (157,-118,cs), (157,-136,o), (140,-146,o), (115,-146,cs), (79,-146,o), (57,-124,o), (47,-111,c), (10,-157,l), (31,-185,o), (71,-207,o), (116,-207,cs) ); } ); width = 223; }, { anchors = ( { name = _bottom; pos = (135,-1); } ); guides = ( { pos = (-309,-137); }, { pos = (-309,-52); }, { pos = (-309,-227); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (198,-227,o), (250,-188,o), (250,-127,cs), (250,-67,o), (199,-39,o), (144,-39,cs), (123,-39,o), (102,-44,o), (90,-48,c), (107,-112,l), (112,-109,o), (123,-105,o), (137,-105,cs), (168,-105,o), (178,-119,o), (178,-129,cs), (178,-151,o), (159,-159,o), (135,-159,cs), (95,-159,o), (71,-134,o), (60,-120,c), (19,-172,l), (42,-203,o), (86,-227,o), (137,-227,cs) ); } ); width = 263; } ); }, { glyphname = cedillacomb; lastChange = "2025-01-08 14:08:50 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (107,2); } ); guides = ( { pos = (-69,-120); }, { pos = (-73,-204); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (165,-208,o), (210,-174,o), (210,-123,cs), (210,-66,o), (158,-31,o), (111,-45,c), (136,9,l), (89,9,l), (49,-77,l), (79,-102,l), (83,-97,o), (94,-88,o), (114,-88,cs), (135,-88,o), (156,-100,o), (156,-125,cs), (156,-153,o), (136,-165,o), (111,-165,cs), (78,-165,o), (53,-144,o), (43,-131,c), (12,-162,l), (33,-190,o), (67,-208,o), (111,-208,cs) ); } ); width = 215; }, { anchors = ( { name = _bottom; pos = (117,2); } ); guides = ( { pos = (75,-119); }, { pos = (75,-207); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (192,-214,o), (234,-180,o), (234,-124,cs), (234,-61,o), (180,-33,o), (127,-46,c), (154,8,l), (88,8,l), (47,-73,l), (91,-104,l), (95,-99,o), (110,-90,o), (128,-90,cs), (146,-90,o), (164,-102,o), (164,-121,cs), (164,-145,o), (146,-153,o), (125,-153,cs), (94,-153,o), (69,-131,o), (59,-118,c), (22,-164,l), (43,-192,o), (83,-214,o), (128,-214,cs) ); } ); width = 247; }, { anchors = ( { name = _bottom; pos = (128,-1); } ); guides = ( { pos = (-305,-237); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (224,-239,o), (272,-197,o), (272,-135,cs), (272,-69,o), (214,-25,o), (151,-37,c), (177,13,l), (91,13,l), (45,-74,l), (100,-118,l), (106,-114,o), (118,-104,o), (139,-104,cs), (159,-104,o), (174,-116,o), (174,-132,cs), (174,-150,o), (158,-160,o), (139,-160,cs), (104,-160,o), (74,-134,o), (63,-123,c), (16,-184,l), (39,-216,o), (94,-239,o), (145,-239,cs) ); } ); width = 288; }, { associatedMasterId = m003; layerId = "D7FDC5D9-E24B-404A-97F7-033D7CD42960"; name = "2 Sep 24 at 17:10"; shapes = ( { closed = 1; nodes = ( (359,-216,o), (409,-177,o), (409,-118,cs), (409,-60,o), (360,-32,o), (305,-32,cs), (284,-32,o), (263,-37,o), (251,-41,c), (268,-103,l), (273,-100,o), (284,-96,o), (298,-96,cs), (329,-96,o), (339,-110,o), (339,-120,cs), (339,-142,o), (320,-150,o), (296,-150,cs), (256,-150,o), (232,-125,o), (221,-111,c), (180,-161,l), (203,-192,o), (247,-216,o), (298,-216,cs) ); } ); width = 600; } ); unicode = 807; }, { glyphname = ogonekcomb; lastChange = "2024-11-01 00:25:07 +0000"; layers = ( { anchors = ( { name = _ogonek; pos = (132,25); } ); guides = ( { pos = (-73,-204); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (152,-204,o), (177,-195,o), (191,-182,c), (167,-131,l), (138,-153,o), (91,-139,o), (91,-101,cs), (91,-65,o), (113,-36,o), (159,-5,c), (132,25,l), (58,-12,o), (28,-61,o), (28,-116,cs), (28,-171,o), (72,-204,o), (126,-204,cs) ); } ); width = 185; }, { anchors = ( { name = _ogonek; pos = (132,34); } ); guides = ( { pos = (77,-119); }, { pos = (77,-207); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (149,-206,o), (180,-194,o), (194,-181,c), (171,-118,l), (129,-145,o), (87,-133,o), (87,-93,cs), (87,-63,o), (109,-29,o), (163,-1,c), (132,34,l), (46,-1,o), (14,-58,o), (14,-113,cs), (14,-170,o), (60,-206,o), (113,-206,cs) ); } ); width = 192; }, { anchors = ( { name = _ogonek; pos = (133,41); } ); guides = ( { pos = (-309,-237); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (171,-237,o), (201,-219,o), (222,-199,c), (184,-124,l), (147,-155,o), (103,-132,o), (103,-89,cs), (103,-56,o), (123,-26,o), (175,0,c), (133,42,l), (36,-4,o), (1,-51,o), (0,-128,cs), (-1,-193,o), (56,-237,o), (123,-237,cs) ); } ); width = 214; } ); unicode = 808; }, { glyphname = macronbelowcomb; lastChange = "2024-10-21 04:17:01 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (142,-12); } ); guides = ( { pos = (-102,-120); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (274,-147,l), (274,-93,l), (10,-93,l), (10,-147,l) ); } ); width = 284; }, { anchors = ( { name = _bottom; pos = (160,-12); } ); guides = ( { pos = (41,-119); }, { pos = (41,-207); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (309,-153,l), (309,-85,l), (10,-85,l), (10,-153,l) ); } ); width = 319; }, { anchors = ( { name = _bottom; pos = (180,-1); } ); guides = ( { pos = (-261,-137); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (343,-182,l), (343,-90,l), (17,-90,l), (17,-182,l) ); } ); width = 359; } ); unicode = 817; }, { glyphname = brevecomb_acutecomb; lastChange = "2024-10-21 04:17:01 +0000"; layers = ( { anchors = ( { name = _top; pos = (197,512); } ); layerId = m01; shapes = ( { pos = (51,0); ref = brevecomb; }, { pos = (141,138); ref = acutecomb; } ); width = 408; }, { anchors = ( { name = _top; pos = (200,500); } ); layerId = m002; shapes = ( { pos = (55,0); ref = brevecomb; }, { pos = (145,160); ref = acutecomb; } ); width = 410; }, { anchors = ( { name = _top; pos = (175,508); } ); layerId = m003; shapes = ( { ref = brevecomb; }, { pos = (104,201); ref = acutecomb; } ); width = 329; } ); }, { glyphname = brevecomb_gravecomb; lastChange = "2024-10-21 04:17:01 +0000"; layers = ( { anchors = ( { name = _top; pos = (207,512); } ); layerId = m01; shapes = ( { pos = (61,0); ref = brevecomb; }, { pos = (64,134); ref = gravecomb; } ); width = 410; }, { anchors = ( { name = _top; pos = (208,500); } ); layerId = m002; shapes = ( { pos = (64,0); ref = brevecomb; }, { pos = (63,161); ref = gravecomb; } ); width = 410; }, { anchors = ( { name = _top; pos = (175,508); } ); layerId = m003; shapes = ( { ref = brevecomb; }, { pos = (-8,201); ref = gravecomb; } ); width = 329; } ); }, { glyphname = brevecomb_hookabovecomb; lastChange = "2024-11-07 17:17:16 +0000"; layers = ( { anchors = ( { name = _top; pos = (188,512); } ); layerId = m01; shapes = ( { closed = 1; nodes = ( (261,590,o), (300,645,o), (300,709,c), (243,709,l), (243,663,o), (218,641,o), (188,641,cs), (159,641,o), (133,663,o), (133,709,c), (76,709,l), (76,645,o), (115,590,o), (188,590,cs) ); }, { closed = 1; nodes = ( (220,739,l), (220,767,l), (262,772,o), (298,802,o), (298,847,cs), (298,918,o), (229,939,o), (152,934,c), (152,881,l), (195,885,o), (238,874,o), (238,847,cs), (238,816,o), (201,805,o), (158,805,c), (158,739,l) ); } ); width = 376; }, { anchors = ( { name = _top; pos = (200,500); } ); layerId = m002; shapes = ( { closed = 1; nodes = ( (284,588,o), (333,655,o), (333,727,c), (260,727,l), (260,688,o), (241,651,o), (199,651,cs), (159,651,o), (139,688,o), (139,727,c), (66,727,l), (66,655,o), (115,588,o), (199,588,cs) ); }, { closed = 1; nodes = ( (229,739,l), (229,767,l), (271,772,o), (307,802,o), (307,847,cs), (307,918,o), (238,939,o), (161,934,c), (161,881,l), (204,885,o), (247,874,o), (247,847,cs), (247,816,o), (210,805,o), (167,805,c), (167,739,l) ); } ); width = 401; }, { anchors = ( { name = _top; pos = (175,508); } ); layerId = m003; shapes = ( { closed = 1; nodes = ( (278,556,o), (337,639,o), (337,729,c), (238,729,l), (238,683,o), (223,643,o), (175,643,cs), (129,643,o), (111,683,o), (111,729,c), (12,729,l), (12,639,o), (73,556,o), (175,556,cs) ); }, { closed = 1; nodes = ( (216,736,l), (216,770,l), (260,774,o), (299,807,o), (299,854,cs), (299,939,o), (213,957,o), (132,952,c), (132,879,l), (184,883,o), (217,875,o), (217,854,cs), (217,833,o), (185,823,o), (132,823,c), (132,736,l) ); } ); width = 329; } ); }, { glyphname = brevecomb_tildecomb; lastChange = "2024-10-21 04:17:01 +0000"; layers = ( { anchors = ( { name = _top; pos = (230,512); } ); layerId = m01; shapes = ( { pos = (84,0); ref = brevecomb; }, { pos = (68,161); ref = tildecomb; } ); width = 441; }, { anchors = ( { name = _top; pos = (227,512); } ); layerId = m002; shapes = ( { pos = (84,12); ref = brevecomb; }, { pos = (65,173); ref = tildecomb; } ); width = 441; }, { anchors = ( { name = _top; pos = (175,508); } ); layerId = m003; shapes = ( { ref = brevecomb; }, { pos = (-33,208); ref = tildecomb; } ); width = 329; } ); }, { glyphname = circumflexcomb_acutecomb; lastChange = "2024-11-09 06:47:52 +0000"; layers = ( { anchors = ( { name = _top; pos = (281,512); } ); layerId = m01; shapes = ( { pos = (147,0); ref = circumflexcomb; }, { pos = (332,98); ref = acutecomb; } ); width = 585; }, { anchors = ( { name = _top; pos = (281,500); } ); layerId = m002; shapes = ( { pos = (132,0); ref = circumflexcomb; }, { pos = (348,98); ref = acutecomb; } ); width = 585; }, { anchors = ( { name = _top; pos = (181,508); } ); layerId = m003; shapes = ( { ref = circumflexcomb; }, { pos = (267,134); ref = acutecomb; } ); width = 396; } ); }, { glyphname = circumflexcomb_gravecomb; lastChange = "2024-11-09 06:47:52 +0000"; layers = ( { anchors = ( { name = _top; pos = (134,512); } ); layerId = m01; shapes = ( { ref = circumflexcomb; }, { pos = (99,99); ref = gravecomb; } ); width = 283; }, { anchors = ( { name = _top; pos = (149,500); } ); layerId = m002; shapes = ( { ref = circumflexcomb; }, { pos = (148,99); ref = gravecomb; } ); width = 339; }, { anchors = ( { name = _top; pos = (181,508); } ); layerId = m003; shapes = ( { ref = circumflexcomb; }, { pos = (178,136); ref = gravecomb; } ); width = 425; } ); }, { glyphname = circumflexcomb_hookabovecomb; lastChange = "2025-01-07 17:14:14 +0000"; layers = ( { anchors = ( { name = _top; pos = (134,512); } ); guides = ( { angle = 90; pos = (134,512); } ); layerId = m01; shapes = ( { ref = circumflexcomb; }, { pos = (209,101); ref = hookabovecomb; } ); width = 342; }, { anchors = ( { name = _top; pos = (149,500); } ); layerId = m002; shapes = ( { ref = circumflexcomb; }, { pos = (214,92); ref = hookabovecomb; } ); width = 401; }, { anchors = ( { name = _top; pos = (181,508); } ); layerId = m003; shapes = ( { ref = circumflexcomb; }, { pos = (281,119); ref = hookabovecomb; } ); width = 474; } ); }, { glyphname = circumflexcomb_tildecomb; lastChange = "2024-11-09 06:47:52 +0000"; layers = ( { anchors = ( { name = _top; pos = (136,512); } ); layerId = m01; shapes = ( { pos = (2,0); ref = circumflexcomb; }, { pos = (-27,153); ref = tildecomb; } ); width = 271; }, { anchors = ( { name = _top; pos = (156,500); } ); layerId = m002; shapes = ( { pos = (7,0); ref = circumflexcomb; }, { pos = (-7,168); ref = tildecomb; } ); width = 311; }, { anchors = ( { name = _top; pos = (208,508); } ); layerId = m003; shapes = ( { pos = (27,0); ref = circumflexcomb; }, { pos = (0,200); ref = tildecomb; } ); width = 415; } ); }, { glyphname = dieresis; lastChange = "2024-11-21 10:00:45 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (16,0); ref = dieresiscomb; } ); width = 343; }, { layerId = m002; shapes = ( { ref = dieresiscomb; } ); width = 324; }, { layerId = m003; shapes = ( { pos = (-43,0); ref = dieresiscomb; } ); width = 332; } ); unicode = 168; }, { glyphname = dotaccent; lastChange = "2024-11-21 10:00:45 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (30,0); ref = dotaccentcomb; } ); width = 194; }, { layerId = m002; shapes = ( { pos = (-1,0); ref = dotaccentcomb; } ); width = 147; }, { layerId = m003; shapes = ( { pos = (-16,0); ref = dotaccentcomb; } ); width = 159; } ); unicode = 729; }, { glyphname = grave; lastChange = "2024-11-21 10:00:45 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (20,0); ref = gravecomb; } ); width = 244; }, { layerId = m002; shapes = ( { pos = (24,0); ref = gravecomb; } ); width = 238; }, { layerId = m003; shapes = ( { pos = (-3,0); ref = gravecomb; } ); width = 244; } ); unicode = 96; }, { glyphname = acute; lastChange = "2024-11-21 10:00:45 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (20,0); ref = acutecomb; } ); width = 244; }, { layerId = m002; shapes = ( { pos = (26,0); ref = acutecomb; } ); width = 242; }, { layerId = m003; shapes = ( { pos = (-3,0); ref = acutecomb; } ); width = 244; } ); unicode = 180; }, { glyphname = hungarumlaut; lastChange = "2024-11-21 10:00:45 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (20,0); ref = hungarumlautcomb; } ); width = 377; }, { layerId = m002; shapes = ( { pos = (47,0); ref = hungarumlautcomb; } ); width = 440; }, { layerId = m003; shapes = ( { pos = (-9,0); ref = hungarumlautcomb; } ); width = 440; } ); unicode = 733; }, { glyphname = circumflex; lastChange = "2024-11-21 10:00:45 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (40,0); ref = circumflexcomb; } ); width = 348; }, { layerId = m002; shapes = ( { pos = (62,0); ref = circumflexcomb; } ); width = 421; }, { layerId = m003; shapes = ( { pos = (17,0); ref = circumflexcomb; } ); width = 396; } ); unicode = 710; }, { glyphname = caron; lastChange = "2024-11-21 10:00:45 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (40,0); ref = caroncomb; } ); width = 348; }, { layerId = m002; shapes = ( { pos = (62,0); ref = caroncomb; } ); width = 421; }, { layerId = m003; shapes = ( { pos = (17,0); ref = caroncomb; } ); width = 396; } ); unicode = 711; }, { glyphname = breve; lastChange = "2024-11-21 10:00:45 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (16,0); ref = brevecomb; } ); width = 324; }, { layerId = m002; shapes = ( { pos = (157,0); ref = brevecomb; } ); width = 600; }, { layerId = m003; shapes = ( { pos = (-10,0); ref = brevecomb; } ); width = 329; } ); unicode = 728; }, { glyphname = ring; lastChange = "2024-11-21 10:00:45 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (48,0); ref = ringcomb; } ); width = 333; }, { layerId = m002; shapes = ( { pos = (-7,0); ref = ringcomb; } ); width = 237; }, { layerId = m003; shapes = ( { pos = (-24,0); ref = ringcomb; } ); width = 237; } ); unicode = 730; }, { glyphname = tilde; lastChange = "2024-11-21 10:00:45 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (13,0); ref = tildecomb; } ); width = 351; }, { layerId = m002; shapes = ( { pos = (138,0); ref = tildecomb; } ); width = 601; }, { layerId = m003; shapes = ( { pos = (-13,0); ref = tildecomb; } ); width = 389; } ); unicode = 732; }, { glyphname = macron; lastChange = "2024-11-21 10:00:45 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (40,0); ref = macroncomb; } ); width = 364; }, { layerId = m002; shapes = ( { ref = macroncomb; } ); width = 359; }, { layerId = m003; shapes = ( { pos = (-1,0); ref = macroncomb; } ); width = 346; } ); unicode = 175; }, { glyphname = cedilla; lastChange = "2024-11-21 10:00:45 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (38,0); ref = cedillacomb; } ); width = 298; }, { layerId = m002; shapes = ( { pos = (-4,0); ref = cedillacomb; } ); width = 247; }, { layerId = m003; shapes = ( { pos = (-13,0); ref = cedillacomb; } ); width = 262; } ); unicode = 184; }, { glyphname = ogonek; lastChange = "2024-11-21 10:00:45 +0000"; layers = ( { layerId = m01; shapes = ( { pos = (22,0); ref = ogonekcomb; } ); width = 263; }, { layerId = m002; shapes = ( { pos = (4,0); ref = ogonekcomb; } ); width = 215; }, { layerId = m003; shapes = ( { pos = (-15,0); ref = ogonekcomb; } ); width = 191; } ); unicode = 731; } ); instances = ( { axesValues = ( 300 ); instanceInterpolations = { m01 = 1; }; name = Light; weightClass = 300; }, { axesValues = ( 400 ); instanceInterpolations = { m002 = 1; }; name = Regular; }, { axesValues = ( 500 ); instanceInterpolations = { m002 = 0.66667; m003 = 0.33333; }; name = Medium; weightClass = 500; }, { axesValues = ( 600 ); instanceInterpolations = { m002 = 0.33333; m003 = 0.66667; }; name = SemiBold; weightClass = 600; }, { axesValues = ( 700 ); instanceInterpolations = { m003 = 1; }; isBold = 1; name = Bold; weightClass = 700; } ); kerningLTR = { m01 = { "@MMK_L_A" = { "@MMK_R_A" = 50; "@MMK_R_O" = -10; "@MMK_R_V" = -20; "@MMK_R_o" = -10; J = 20; T = -30; X = 30; Y = -30; Z = 40; question = -10; quotedblright = -80; quoteright = -80; v = -23; w = -29; x = 10; y = -17; }; "@MMK_L_B" = { "@MMK_R_O" = 10; "@MMK_R_a" = -20; "@MMK_R_o" = -10; N = 10; b = -10; h = -10; i = -10; j = -10; k = -10; l = -10; p = -10; period = -20; quotedblright = -10; r = -6; u = -13; w = -10; x = -10; }; "@MMK_L_E" = { "@MMK_R_A" = 0; "@MMK_R_O" = -30; "@MMK_R_T" = 20; "@MMK_R_a" = -20; "@MMK_R_o" = -57; J = 10; Z = 10; aacute = -47; acircumflex = -56; adieresis = -72; agrave = -34; aring = -49; atilde = -58; braceright = 20; bracketright = 20; eacute = -58; ecircumflex = -58; edieresis = -58; egrave = -58; f = -20; iacute = -50; icircumflex = -50; igrave = -50; oacute = -58; ocircumflex = -58; odieresis = -61; ograve = -58; otilde = -58; parenright = 10; period = 0; r = -48; u = -40; uacute = -58; ucircumflex = -58; udieresis = -58; ugrave = -58; v = -20; w = -20; y = -34; ydieresis = -58; }; "@MMK_L_F" = { "@MMK_R_A" = -90; "@MMK_R_O" = -40; "@MMK_R_a" = -70; "@MMK_R_o" = -80; D = -10; H = -20; J = -80; L = -20; S = -30; b = -20; backslash = 20; braceright = 20; comma = -100; f = -20; h = -10; i = -30; j = -30; k = -10; m = -40; n = -40; p = -50; parenright = 10; period = -120; r = -50; s = -50; t = -20; u = -50; w = -20; x = -30; y = -30; z = -30; }; "@MMK_L_G" = { "@MMK_R_A" = 40; Lslash = 10; X = 10; braceright = 20; bracketright = 20; parenright = 30; }; "@MMK_L_O" = { "@MMK_R_A" = 20; "@MMK_R_B" = 10; "@MMK_R_E" = 10; "@MMK_R_T" = -20; "@MMK_R_V" = -10; "@MMK_R_a" = -10; I = -30; J = 10; M = 0; S = 10; X = -10; Y = -20; braceright = 20; comma = -50; i = -10; j = -20; k = -10; m = -10; n = -10; p = -20; period = -40; quotedblright = -10; quoteright = -30; u = -10; x = -10; }; "@MMK_L_Q" = { parenright = 20; period = -30; quotedblright = -30; quoteright = -30; }; "@MMK_L_T" = { "@MMK_R_O" = -20; "@MMK_R_T" = 20; "@MMK_R_V" = 30; "@MMK_R_a2" = -80; I = 10; J = -40; L = 10; Y = 20; Z = 20; backslash = 50; braceright = 30; bracketright = 30; colon = -20; comma = -100; hyphen = -50; icircumflex = 20; igrave = 50; imacron = 50; itilde = 30; m = -40; n = -30; p = -20; parenright = 20; period = -80; quoteright = 40; semicolon = -20; ubreve = -30; v = -30; x = -20; }; "@MMK_L_Uhorn" = { "@MMK_R_O" = 0; }; "@MMK_L_V" = { "@MMK_R_A" = -30; "@MMK_R_O" = -20; "@MMK_R_T" = 30; "@MMK_R_V" = 30; "@MMK_R_a" = -59; "@MMK_R_a2" = -30; "@MMK_R_o" = -65; J = -40; aacute = -20; abreve = -40; acircumflex = -30; adieresis = -20; agrave = -30; aring = -20; atilde = -30; backslash = 50; braceright = 30; bracketright = 30; colon = -60; comma = -60; eacute = -30; ecircumflex = -30; edieresis = -20; egrave = -20; hyphen = -20; i = -20; icircumflex = 48; idieresis = 48; igrave = 48; m = -30; n = -30; oacute = -30; ocircumflex = -30; odieresis = -30; ograve = -30; ohornacute = -50; otilde = -30; p = -30; parenright = 30; period = -60; quoteright = 50; r = -45; s = -40; u = -40; v = -16; y = -17; }; "@MMK_L_o" = { "@MMK_R_T" = -60; "@MMK_R_V" = -20; Y = -40; bracketright = -20; comma = -30; emdash = 20; endash = 20; f = -10; i = -10; j = -20; l = -10; lslash = 30; parenright = 10; period = -30; question = -10; quotedblright = -80; quoteright = -30; s = 10; slash = 10; w = -10; x = -10; }; C = { J = 10; braceright = 20; parenright = 10; quotedblright = 20; quoteright = 20; }; H = { "@MMK_R_O" = -10; "@MMK_R_a" = -20; "@MMK_R_o" = -20; D = -10; i = -10; j = -10; m = -10; n = -10; p = -20; period = -50; }; I = { "@MMK_R_O" = -30; "@MMK_R_T" = 10; "@MMK_R_a" = -30; "@MMK_R_o" = -40; J = -10; backslash = 50; f = -30; quoteright = 10; u = -20; v = -20; w = -20; y = -30; z = 10; }; J = { "@MMK_R_V" = 20; L = 0; X = 10; Y = 20; Z = 10; backslash = 50; braceright = 30; period = -30; quotedblright = 20; quoteright = 20; }; K = { "@MMK_R_A" = 10; "@MMK_R_O" = -10; "@MMK_R_V" = 20; "@MMK_R_a" = -10; "@MMK_R_o" = -10; P = 10; Z = 20; backslash = 50; braceright = 20; idieresis = 23; igrave = 25; semicolon = 20; v = -23; w = -19; y = -21; }; L = { "@MMK_R_A" = 20; "@MMK_R_O" = -30; "@MMK_R_T" = -50; "@MMK_R_V" = -30; U = -20; X = 10; Y = -80; Z = 20; braceright = 20; bracketright = 20; colon = 20; emdash = -40; endash = -30; hyphen = -40; parenright = 20; quotedblright = -60; quoteright = -100; semicolon = 20; v = -20; w = -30; x = 20; y = -40; }; Lslash = { "@MMK_R_A" = 50; "@MMK_R_O" = -40; U = -20; Y = -80; }; M = { "@MMK_R_a" = -20; "@MMK_R_o" = -20; D = -10; }; N = { "@MMK_R_a" = -20; "@MMK_R_o" = -20; p = -10; }; P = { "@MMK_R_A" = -45; "@MMK_R_a" = -27; "@MMK_R_a2" = -20; "@MMK_R_o" = -24; J = -50; braceright = 10; comma = -150; period = -120; quotedblright = 20; }; R = { "@MMK_R_O" = -20; "@MMK_R_a" = -20; "@MMK_R_o" = -20; D = -10; f = -10; quotedblright = -10; u = -20; w = -20; y = -10; }; S = { L = 10; quoteright = 30; w = -10; }; T = { "@MMK_R_A" = -40; "@MMK_R_a" = -80; "@MMK_R_o" = -80; aacute = -60; acircumflex = -60; adieresis = -60; agrave = -60; aring = -60; atilde = -60; eacute = -60; ecircumflex = -60; edieresis = -60; egrave = -60; i = -12; idieresis = 30; idotless = -14; oacute = -60; ocircumflex = -60; odieresis = -60; ograve = -60; otilde = -60; r = -60; s = -68; u = -60; uacute = -60; ucircumflex = -60; udieresis = -60; ugrave = -60; uhorn = -60; w = -60; y = -60; }; U = { "@MMK_R_A" = -14; "@MMK_R_B" = -10; "@MMK_R_a" = -10; "@MMK_R_o" = -10; D = -10; X = -10; backslash = 40; colon = -20; comma = -50; period = -30; }; X = { "@MMK_R_A" = 30; "@MMK_R_O" = -20; "@MMK_R_a" = -20; "@MMK_R_o" = -20; period = 20; quoteright = 20; semicolon = 20; u = -20; v = -20; w = -20; }; Y = { "@MMK_R_A" = -30; "@MMK_R_O" = -30; "@MMK_R_T" = 40; "@MMK_R_a" = -70; "@MMK_R_o" = -70; J = -80; aacute = -60; acircumflex = -30; adieresis = -30; agrave = -30; aring = -30; atilde = -30; backslash = 50; braceright = 30; bracketright = 30; colon = -30; comma = -120; eacute = -30; ecircumflex = -30; edieresis = -30; egrave = -30; hyphen = -50; icircumflex = 50; idieresis = 50; idotless = -6; igrave = 50; m = -30; n = -30; oacute = -60; ocircumflex = -60; odieresis = -60; ograve = -60; otilde = -60; p = -60; parenright = 30; period = -150; quotedblbase = -70; quoteright = 60; r = -40; s = -40; semicolon = -20; u = -40; uacute = -60; w = -50; x = -30; z = -20; }; Z = { "@MMK_R_A" = 20; "@MMK_R_E" = -20; "@MMK_R_T" = 20; "@MMK_R_a" = -20; "@MMK_R_o" = -20; Y = 20; backslash = 50; braceright = 20; bracketright = 20; parenright = 20; quoteright = 30; }; a = { braceright = 20; bracketright = 20; j = -10; l = 10; parenright = 30; s = 20; slash = 20; z = 20; }; adieresis = { germandbls = 20; }; b = { f = -20; j = -10; period = -20; w = -20; y = -10; }; backslash = { "@MMK_R_A" = 30; "@MMK_R_a" = 40; j = 50; p = 40; y = 50; z = 20; }; braceleft = { "@MMK_R_T" = 30; "@MMK_R_V" = 30; "@MMK_R_o" = -30; Y = 30; Z = 20; f = -20; j = 20; m = -10; n = -10; w = -20; }; bracketleft = { "@MMK_R_O" = -20; "@MMK_R_T" = 30; "@MMK_R_V" = 30; "@MMK_R_a" = -10; "@MMK_R_o" = -30; Y = 30; Z = 20; j = 30; u = -20; }; c = { parenright = 20; quoteright = -20; y = 10; }; caroncomb = { "@MMK_R_a" = -60; "@MMK_R_a2" = -100; u = -60; }; comma = { X = 20; x = 20; }; d = { "@MMK_R_A" = 10; "@MMK_R_a" = -20; braceright = 30; bracketright = 20; hyphen = -20; parenright = 30; slash = 20; w = -10; x = 20; z = 20; }; dcaron = { "@MMK_R_a" = -50; "@MMK_R_o" = -50; a.ss01 = -40; n = -50; s = -40; u = -40; }; degree = { "@MMK_R_O" = -40; "@MMK_R_o" = -60; }; eight = { degree = -30; eight = -20; five = -30; four = -20; nine = -40; one = -20; percent = -20; seven = -70; six = -50; three = -30; two = -20; zero = -20; }; endash = { space = -150; }; f = { "@MMK_R_T" = 30; "@MMK_R_V" = 40; "@MMK_R_a" = -10; "@MMK_R_o" = -10; I = 20; Y = 30; b = 30; backslash = 60; braceright = 50; bracketright = 60; exclam = 20; h = 20; k = 10; l = 10; m = 10; parenright = 50; period = -30; quotedblright = 50; quoteright = 70; t = 20; v = 20; x = 20; y = 20; z = 20; }; five = { degree = -10; nine = -30; }; four = { degree = -50; nine = -30; ordfeminine = -30; percent = -40; seven = -20; zero = -20; }; g = { "@MMK_R_o" = 10; nhookleft = 20; parenright = 10; quoteright = -10; }; g.ss01 = { j = 40; }; h = { "@MMK_R_a" = -10; "@MMK_R_o" = -20; h = -10; j = -20; k = -10; quotedblright = -80; quoteright = -50; u = -20; w = -10; }; hyphen = { f = -20; }; i = { "@MMK_R_a" = -20; "@MMK_R_o" = -30; D = -20; j = -20; p = -10; quoteright = 20; space = 0; }; iacute = { l = 20; }; icircumflex = { l = 20; }; idieresis = { l = 20; }; j = { "@MMK_R_a" = -30; "@MMK_R_o" = -20; D = -20; b = 10; braceright = 20; i = -20; quoteright = 20; y = 10; }; k = { b = 10; k = 10; l = 10; parenright = 10; r = 10; }; l = { "@MMK_R_a" = -20; "@MMK_R_o" = -10; i = -10; icircumflex = 20; idieresis = 20; quoteright = 10; v = 10; }; lcaron = { "@MMK_R_a" = -70; "@MMK_R_o" = -60; a.ss01 = -50; n = -60; s = -60; u = -60; }; lslash = { w = 20; y = 20; }; m = { "@MMK_R_o" = -10; f = -20; quotedblright = -80; quoteright = -70; w = -20; y = -20; }; n = { "@MMK_R_a" = -10; f = -20; period = -20; quotedblright = -80; quoteright = -40; w = -10; }; nhookleft = { "@MMK_R_o" = -20; "@MMK_R_w" = -30; p = -10; }; nhookretroflex = { "@MMK_R_g" = 40; j = 40; p = 30; }; nine = { comma = -100; eight = -20; five = -50; four = -50; nine = -20; one = -20; period = -90; seven = -50; six = -50; three = -30; two = -30; zero = -10; }; ohorn = { i = 20; }; ohornacute = { i = 20; }; one = { degree = -90; eight = -50; five = -30; four = -50; nine = -50; ordfeminine = -80; ordmasculine = -50; percent = -60; seven = -50; six = -30; three = -30; zero = -50; }; parenleft = { "@MMK_R_T" = 20; "@MMK_R_V" = 30; "@MMK_R_o" = -20; Y = 30; Z = 20; eight = -10; j = 30; }; period = { X = 50; x = 20; }; q = { "@MMK_R_a" = -20; "@MMK_R_o" = -10; braceright = 30; j = 10; k = -10; m = -10; n = -10; nhookleft = 20; period = -20; quotedblright = -20; slash = 20; u = -10; w = -10; }; questiondown = { "@MMK_R_o" = -30; }; quotedblleft = { "@MMK_R_A" = -90; "@MMK_R_O" = -10; "@MMK_R_a" = -40; "@MMK_R_o" = -40; J = -70; m = -20; }; quoteleft = { "@MMK_R_A" = -80; "@MMK_R_O" = -10; "@MMK_R_V" = 40; "@MMK_R_a" = -30; "@MMK_R_o" = -40; J = -50; Y = 40; Z = 30; s = -10; }; quoteright = { "@MMK_R_O" = -50; "@MMK_R_T" = 20; "@MMK_R_V" = 30; "@MMK_R_a" = -60; "@MMK_R_o" = -60; J = -80; Y = 20; j = 20; k = 20; n = -30; p = -20; s = -80; u = -30; w = -30; z = -30; }; r = { b = 10; braceright = 20; comma = -80; f = 20; l = 10; period = -80; quoteright = 40; t = 20; }; s = { braceright = 10; slash = 10; }; seven = { comma = -120; eight = -30; five = -40; four = -60; nine = -30; one = -10; ordfeminine = 10; parenright = 20; period = -120; six = -60; two = -20; }; six = { degree = -40; five = -30; four = -20; nine = -50; one = -20; percent = -30; seven = -80; six = -30; two = -30; zero = 10; }; slash = { "@MMK_R_T" = 40; "@MMK_R_V" = 50; "@MMK_R_a" = -10; "@MMK_R_o" = -20; U = 30; Y = 50; Z = 50; b = 20; }; space = { "@MMK_R_A" = -2; "@MMK_R_V" = -30; }; t = { "@MMK_R_a" = 10; slash = 20; }; tcaron = { "@MMK_R_o" = -20; n = -20; }; three = { degree = -10; ordfeminine = -10; }; two = { eight = -50; five = -30; four = -50; nine = -30; ordfeminine = -20; percent = -10; seven = -50; six = -50; three = -20; zero = -20; }; u = { "@MMK_R_a" = -20; braceright = 10; bracketright = -20; f = -20; period = -20; quoteright = -30; }; uhorn = { ohorn = -30; ohorndotbelow = -20; }; v = { "@MMK_R_o" = -10; comma = -60; period = -60; quoteright = 20; }; w = { "@MMK_R_a" = -20; "@MMK_R_o" = -20; comma = -70; f = -10; hyphen = -20; j = -10; lslash = 20; p = -10; period = -70; quotedblright = -10; s = -10; space = -11; u = -10; }; x = { "@MMK_R_a" = -10; "@MMK_R_o" = -10; exclam = 20; slash = 20; }; y = { "@MMK_R_T" = -50; "@MMK_R_a" = -20; "@MMK_R_o" = -20; comma = -100; lslash = 20; period = -100; quoteright = 30; }; z = { "@MMK_R_a" = -20; "@MMK_R_o" = -10; period = -20; }; }; m002 = { "@MMK_L_A" = { "@MMK_R_A" = 50; "@MMK_R_E" = 10; "@MMK_R_O" = -20; "@MMK_R_T" = -80; "@MMK_R_V" = -20; J = 10; X = 20; Y = -50; Z = 10; bracketright = -30; comma = 20; question = -10; quotedblright = -50; quoteright = -70; s = 10; slash = 50; v = -10; w = -20; x = 30; z = 10; }; "@MMK_L_B" = { "@MMK_R_T" = -60; "@MMK_R_a" = -10; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -20; Y = -20; Z = 10; backslash = 20; braceright = -10; bracketright = -40; comma = -20; h = -10; icircumflex = 10; igrave = 10; j = -10; n = -10; p = -10; period = -30; question = -10; quotedblright = -10; w = -20; }; "@MMK_L_E" = { "@MMK_R_A" = 0; "@MMK_R_O" = -10; "@MMK_R_a" = -30; "@MMK_R_o" = -30; P = 10; X = 20; b = -10; backslash = 40; icircumflex = 50; idieresis = 50; igrave = 50; m = -10; period = -20; quotedblright = 10; slash = 40; u = -30; udieresis = -20; v = -20; w = -30; x = 10; y = -20; }; "@MMK_L_F" = { "@MMK_R_A" = -70; "@MMK_R_O" = -20; "@MMK_R_V" = 10; "@MMK_R_a" = -60; "@MMK_R_o" = -60; J = -80; backslash = 50; comma = -100; i = -20; j = -30; k = -10; m = -30; n = -40; p = -40; period = -100; r = -40; s = -50; u = -40; v = -30; w = -30; x = -20; y = 0; z = -20; }; "@MMK_L_G" = { "@MMK_R_A" = 20; "@MMK_R_T" = -70; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -20; K = 10; Y = -20; bracketright = -60; l = 20; x = 10; }; "@MMK_L_K" = { "@MMK_R_quoteright" = -20; backslash = 30; slash = 30; }; "@MMK_L_O" = { "@MMK_R_A" = -10; "@MMK_R_T" = -70; "@MMK_R_a" = -20; "@MMK_R_o" = -20; "@MMK_R_quoteright" = -30; I = -20; Y = -40; backslash = 10; braceright = -20; bracketright = -60; comma = -30; emdash = 20; icircumflex = 30; idieresis = 30; igrave = 30; j = -20; k = -20; n = -10; p = -10; period = -60; quotedblright = -10; u = -20; }; "@MMK_L_Q" = { "@MMK_R_T" = -80; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -30; Y = -20; question = -10; quotedblright = -20; }; "@MMK_L_T" = { "@MMK_R_A" = -50; "@MMK_R_O" = -40; "@MMK_R_a2" = -80; "@MMK_R_colon" = -40; "@MMK_R_n" = -30; "@MMK_R_u" = -70; "@MMK_R_v" = -40; J = -80; S = -10; comma = -100; emdash = -20; four = -50; h = -10; hyphen = -70; i = -30; iacute = -10; imacron = 40; itilde = 40; j = -40; n = -50; p = -60; period = -100; slash = -40; ubreve = -70; x = -30; z = -30; }; "@MMK_L_Uhorn" = { "@MMK_R_O" = -40; }; "@MMK_L_V" = { "@MMK_R_." = -100; "@MMK_R_A" = -30; "@MMK_R_O" = -10; "@MMK_R_T" = -20; "@MMK_R_V" = 40; "@MMK_R_a" = -30; "@MMK_R_a2" = -60; "@MMK_R_colon" = -20; "@MMK_R_n" = -20; "@MMK_R_o" = -40; "@MMK_R_w" = -20; D = 10; J = -50; Lslash = -10; X = 30; Y = 10; abreve = -50; backslash = 100; bracketright = -20; colon = -30; hyphen = -30; icircumflex = 50; idieresis = 50; igrave = 50; p = -20; period = -100; r = -20; s = -20; slash = -40; u = -20; }; "@MMK_L_i" = { "@MMK_R_quoteright" = 10; bracketright = -50; }; "@MMK_L_n" = { "@MMK_R_quoteright" = -40; "@MMK_R_v" = -10; "@MMK_R_w" = -20; bracketright = -80; question = -20; quotedblright = -50; slash = 20; }; "@MMK_L_o" = { "@MMK_R_T" = -100; "@MMK_R_V" = -30; "@MMK_R_j" = -20; "@MMK_R_quoteright" = -60; Y = -50; b = -10; braceright = -20; bracketright = -60; comma = -30; f = -10; h = -10; j = -30; lslash = 20; m = -10; period = -40; question = -20; quotedblright = -40; r = -10; w = -30; }; "@MMK_L_quoteleft" = { "@MMK_R_O" = -20; "@MMK_R_o" = -60; D = -10; J = -100; p = -20; r = -20; s = -20; u = -30; }; "@MMK_L_quoteright" = { "@MMK_R_A" = -70; "@MMK_R_V" = 30; "@MMK_R_n" = -50; "@MMK_R_o" = -80; "@MMK_R_v" = -10; "@MMK_R_w" = -20; s = -80; u = -50; z = -10; }; "@MMK_L_u" = { "@MMK_R_o" = -50; }; "@MMK_L_uhorn" = { "@MMK_R_o" = -50; }; "@MMK_L_v" = { "@MMK_R_A" = 20; "@MMK_R_O" = -20; "@MMK_R_T" = -20; "@MMK_R_j" = -10; "@MMK_R_o" = -10; "@MMK_R_quoteright" = 10; "@MMK_R_v" = -30; X = 20; Y = 20; Z = 20; braceright = -30; bracketright = -40; period = -20; slash = 0; }; "@MMK_L_w" = { "@MMK_R_j" = -20; "@MMK_R_quoteright" = 0; braceright = -60; bracketright = -80; comma = -70; endash = -10; period = -60; slash = -20; }; AE = { "@MMK_R_A" = 10; }; C = { "@MMK_R_T" = -40; "@MMK_R_o" = -10; backslash = 30; braceright = -20; bracketright = -30; comma = -30; j = -20; period = -40; quotedblright = 10; x = 10; y = 20; }; H = { "@MMK_R_T" = -30; "@MMK_R_o" = -20; "@MMK_R_quoteright" = -20; backslash = 30; bracketright = -50; j = -20; period = -30; u = -20; }; I = { "@MMK_R_O" = -20; "@MMK_R_a" = -30; "@MMK_R_o" = -40; backslash = 50; bracketright = -20; p = -20; period = -20; r = -20; slash = 20; u = -30; v = -20; w = -30; y = -30; }; J = { "@MMK_R_T" = -30; "@MMK_R_o" = -10; Y = 20; backslash = 30; icircumflex = 30; idieresis = 30; igrave = 30; m = -10; p = -10; period = -50; slash = 20; u = -10; v = 10; y = 10; }; K = { "@MMK_R_a" = -25; "@MMK_R_o" = -30; "@MMK_R_w" = -20; icircumflex = 40; idieresis = 40; igrave = 40; j = -10; u = -15; v = -30; w = -30; x = 20; }; L = { "@MMK_R_A" = 20; "@MMK_R_O" = -30; "@MMK_R_T" = -80; "@MMK_R_V" = -30; "@MMK_R_quoteright" = -100; "@MMK_R_v" = -10; Y = -60; Z = 30; endash = -50; hyphen = -50; question = -20; quotedblright = -100; slash = 40; w = -30; x = 30; y = -10; z = 10; }; Lslash = { "@MMK_R_A" = 40; "@MMK_R_O" = -30; Oacute = -20; U = -20; Y = -70; }; M = { "@MMK_R_T" = -40; "@MMK_R_o" = -20; "@MMK_R_quoteright" = -20; braceright = -10; bracketright = -40; icircumflex = 30; idieresis = 30; igrave = 30; period = -30; slash = 10; }; N = { "@MMK_R_O" = -10; "@MMK_R_T" = -40; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -20; "@MMK_R_w" = -10; b = -10; bracketright = -30; icircumflex = 30; idieresis = 30; igrave = 30; j = -10; period = -40; }; P = { "@MMK_R_A" = -40; "@MMK_R_T" = -20; "@MMK_R_a" = -40; "@MMK_R_o" = -40; "@MMK_R_v" = 20; J = -50; bracketright = -40; comma = -120; four = -20; icircumflex = 40; idieresis = 40; igrave = 40; j = -20; period = -150; slash = -40; t = 10; x = 10; }; R = { "@MMK_R_O" = -10; "@MMK_R_T" = -70; "@MMK_R_o" = -20; "@MMK_R_quoteright" = -30; Lslash = -20; braceright = -20; icircumflex = 30; idieresis = 30; igrave = 30; question = -20; quotedblright = -10; u = -10; x = 10; }; S = { "@MMK_R_O" = 10; "@MMK_R_T" = -30; J = 30; N = 20; P = 10; icircumflex = 40; idieresis = 40; igrave = 40; parenright = 20; period = -10; quotedblright = -10; }; T = { "@MMK_R_a" = -80; "@MMK_R_o" = -100; icircumflex = 40; idieresis = 60; igrave = 40; r = -70; s = -80; u = -70; uhorn = -100; w = -70; y = -40; }; Thorn = { Y = -20; }; U = { "@MMK_R_A" = -20; "@MMK_R_T" = -40; "@MMK_R_n" = -10; "@MMK_R_quoteright" = -20; bracketright = -40; icircumflex = 40; idieresis = 40; igrave = 40; k = -10; p = -10; period = -50; v = 20; }; X = { "@MMK_R_A" = 20; "@MMK_R_O" = -20; "@MMK_R_T" = -30; "@MMK_R_o" = -20; "@MMK_R_v" = -10; "@MMK_R_w" = -10; J = 20; Z = 30; backslash = 50; bracketright = -50; icircumflex = 40; idieresis = 40; igrave = 40; x = 10; }; Y = { "@MMK_R_A" = -50; "@MMK_R_O" = -40; "@MMK_R_T" = -10; "@MMK_R_V" = 10; "@MMK_R_a" = -60; "@MMK_R_colon" = -30; "@MMK_R_n" = -40; "@MMK_R_o" = -80; J = -80; backslash = 80; bracketright = -30; comma = -100; f = -10; hyphen = -70; i = -10; icircumflex = 60; idieresis = 60; igrave = 70; j = -20; n = -40; p = -50; period = -130; quotedblbase = -100; r = -50; s = -60; slash = -50; u = -60; w = -50; }; Z = { "@MMK_R_A" = 10; "@MMK_R_O" = -20; "@MMK_R_o" = -20; backslash = 60; icircumflex = 60; idieresis = 60; igrave = 60; }; a = { "@MMK_R_colon" = -10; "@MMK_R_quoteright" = -10; bracketright = -40; j = -10; p = -10; period = -20; question = -10; w = -10; x = 10; z = 10; }; aogonek = { lslash = 10; }; backslash = { "@MMK_R_A" = 20; "@MMK_R_O" = -20; "@MMK_R_V" = -20; "@MMK_R_v" = -20; "@MMK_R_w" = -40; Y = -40; Z = 20; j = 50; }; braceleft = { "@MMK_R_B" = -10; "@MMK_R_O" = -40; "@MMK_R_T" = -10; "@MMK_R_o" = -40; "@MMK_R_v" = -10; "@MMK_R_w" = -60; D = -10; L = -10; M = -10; R = -20; S = -20; f = -50; j = 20; u = -50; }; bracketleft = { "@MMK_R_O" = -20; "@MMK_R_V" = 10; "@MMK_R_n" = -50; "@MMK_R_o" = -50; "@MMK_R_v" = -20; "@MMK_R_w" = -40; j = 20; k = -20; s = -30; u = -40; }; c = { "@MMK_R_j" = -20; bracketright = -50; w = -10; }; caroncomb = { "@MMK_R_a" = -70; "@MMK_R_a2" = -120; u = -70; }; comma = { x = 40; }; d = { caroncomb = -10; hyphen = -20; slash = 20; w = -20; z = 10; }; dcaron = { "@MMK_R_a" = -60; "@MMK_R_o" = -60; a.ss01 = -60; n = -50; s = -50; u = -50; }; eight = { "@MMK_R_." = -60; five = -30; four = -30; percent = -30; seven = -40; three = -10; two = -20; }; emdash = { "@MMK_R_E" = 20; "@MMK_R_T" = -100; }; endash = { "@MMK_R_T" = -70; space = -100; }; equal = { seven = -20; }; f = { "@MMK_R_E" = 30; "@MMK_R_V" = 50; I = 10; Y = 40; backslash = 70; braceright = 50; bracketright = 50; comma = -30; l = 20; p = 10; parenright = 50; period = -40; quotedblright = 50; quoteright = 40; t = 30; v = 40; x = 30; y = 30; z = 20; }; five = { "@MMK_R_." = -80; degree = -20; five = -20; four = -30; greater = 10; nine = -30; one = -20; percent = -40; seven = -20; three = -20; two = -20; }; four = { "@MMK_R_." = -50; "@MMK_R_T" = -50; cent = -30; degree = -30; equal = 20; percent = -50; }; g = { "@MMK_R_o" = -10; "@MMK_R_quoteright" = -50; bracketright = -90; comma = -10; p = -10; period = -40; w = -10; }; h = { "@MMK_R_A" = 10; "@MMK_R_colon" = -10; "@MMK_R_j" = -20; "@MMK_R_o" = -30; "@MMK_R_quoteright" = -80; bracketright = -60; period = -20; quotedblright = -50; w = -25; }; hyphen = { "@MMK_R_T" = -100; }; i = { j = -30; }; iacute = { l = 50; }; icircumflex = { l = 40; }; idieresis = { l = 60; }; igrave = { space = 0; }; j = { "@MMK_R_B" = -10; "@MMK_R_o" = -10; bracketright = -30; slash = 20; x = 20; y = 20; }; k = { bracketright = -60; n = 10; slash = 20; v = 10; x = 20; y = 20; z = 10; }; l = { "@MMK_R_O" = 10; "@MMK_R_V" = 30; backslash = 40; bracketright = -40; icircumflex = 50; idieresis = 40; quotedblright = 10; t = 10; }; lcaron = { "@MMK_R_a" = -70; "@MMK_R_o" = -70; a.ss01 = -70; n = -60; s = -60; u = -60; }; lslash = { "@MMK_R_o" = 10; w = 20; y = 20; }; m = { "@MMK_R_o" = -10; h = -10; t = -10; v = -10; w = -20; }; n = { "@MMK_R_o" = -10; period = -20; w = -10; }; nhookretroflex = { "@MMK_R_g" = 30; "@MMK_R_w" = -20; j = 30; p = 30; x = 10; }; nine = { cent = -20; comma = -70; five = -30; four = -40; nine = -10; period = -100; seven = -40; six = -20; three = -20; }; one = { "@MMK_R_." = -30; cent = -50; degree = -80; eight = -50; five = -50; four = -50; nine = -50; ordfeminine = -90; ordmasculine = -50; percent = -80; seven = -50; six = -30; three = -30; zero = -20; }; parenleft = { "@MMK_R_a" = -20; eight = -10; j = 20; }; q = { "@MMK_R_A" = 10; "@MMK_R_j" = 30; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -30; j = 30; slash = 40; x = 10; y = 20; }; questiondown = { "@MMK_R_o" = -50; }; quotedblleft = { "@MMK_R_A" = -80; "@MMK_R_O" = -10; "@MMK_R_n" = -30; "@MMK_R_o" = -60; J = -80; S = -20; p = -10; s = -30; t = 10; u = -10; }; quoteleft = { "@MMK_R_A" = -80; }; r = { "@MMK_R_a" = -10; "@MMK_R_o" = -20; "@MMK_R_quoteright" = 20; backslash = 30; comma = -80; f = 20; period = -100; quotedblright = 20; t = 30; v = 20; w = 20; x = 20; y = 40; z = 10; }; rupeeIndian = { nine = 20; seven = 20; }; s = { "@MMK_R_o" = -10; "@MMK_R_quoteright" = -40; J = 20; bracketright = -60; j = -30; lslash = 10; question = -10; }; seven = { cent = -30; comma = -80; degree = 30; four = -50; ordfeminine = 20; parenright = 20; period = -120; six = -30; three = 20; }; six = { "@MMK_R_." = -30; degree = -40; five = -30; four = -30; nine = -30; one = -20; percent = -60; seven = -50; two = -20; }; slash = { "@MMK_R_E" = 10; "@MMK_R_T" = 40; "@MMK_R_V" = 50; "@MMK_R_n" = -20; "@MMK_R_o" = -50; "@MMK_R_w" = -20; I = 20; J = -50; K = 20; M = 20; P = 20; X = 70; Y = 70; Z = 40; }; t = { "@MMK_R_o" = -10; f = 0; l = 10; quotedblright = 10; v = 10; x = 20; y = 10; }; tcaron = { "@MMK_R_a" = -20; a.ss01 = -20; h = 20; }; three = { "@MMK_R_." = -50; cent = -30; degree = -10; percent = -10; }; two = { "@MMK_R_." = -30; cent = -30; degree = -10; eight = -20; five = -30; four = -50; nine = -10; percent = -20; seven = -50; six = -30; three = -30; x = 20; zero = -10; }; u = { "@MMK_R_o" = -10; "@MMK_R_quoteright" = -50; D = -20; braceright = -20; bracketright = -60; j = -20; period = -20; quotedblright = -20; }; uhorn = { n = -30; ohorn = -50; }; uhorntilde = { n = -30; }; v = { f = 20; j = -20; t = 20; v = 30; w = 10; x = 20; y = 30; }; w = { "@MMK_R_a" = -20; "@MMK_R_o" = -30; j = -10; lslash = 10; p = -10; r = -10; t = 10; x = 10; }; x = { "@MMK_R_A" = 40; "@MMK_R_o" = -10; J = 20; bracketright = -30; l = 20; p = 10; t = 20; v = 20; y = 10; }; y = { "@MMK_R_T" = -60; "@MMK_R_o" = -10; comma = -80; k = -10; lslash = 20; period = -100; r = -10; t = 20; v = 30; }; z = { "@MMK_R_o" = -10; }; zero = { "@MMK_R_." = -80; degree = -10; percent = -20; }; }; m003 = { "@MMK_L_." = { "@MMK_R_T" = -80; "@MMK_R_V" = -60; X = 30; Y = -80; Z = 50; }; "@MMK_L_0" = { icircumflex = 50; idieresis = 50; igrave = 30; }; "@MMK_L_A" = { "@MMK_R_A" = 80; "@MMK_R_O" = -20; "@MMK_R_T" = -80; "@MMK_R_V" = -40; "@MMK_R_o" = -10; J = 40; Lslash = -10; X = 20; Y = -50; Z = 20; backslash = -20; icircumflex = 40; idieresis = 40; igrave = 40; question = -10; questiondown = 20; quotedblright = -50; quoteright = -60; slash = 30; t = -10; w = -30; x = 10; }; "@MMK_L_B" = { "@MMK_R_B" = -10; "@MMK_R_T" = -10; "@MMK_R_V" = -10; "@MMK_R_w" = -10; J = 30; Y = -20; Z = 10; backslash = 20; icircumflex = 30; idieresis = 30; igrave = 40; }; "@MMK_L_E" = { "@MMK_R_A" = 30; "@MMK_R_V" = 30; "@MMK_R_a" = -40; "@MMK_R_o" = -30; "@MMK_R_quoteright" = 20; "@MMK_R_v" = -10; "@MMK_R_w" = -20; J = 30; X = 20; Z = 20; Zdotaccent = 20; backslash = 50; icircumflex = 70; idieresis = 100; igrave = 70; parenright = 20; period = 0; r = -30; slash = 20; u = -30; }; "@MMK_L_F" = { "@MMK_R_." = -100; "@MMK_R_A" = -70; "@MMK_R_B" = -10; "@MMK_R_T" = 10; "@MMK_R_V" = 20; "@MMK_R_a" = -20; "@MMK_R_n" = -30; "@MMK_R_o" = -40; "@MMK_R_quoteright" = 20; "@MMK_R_w" = -20; J = -70; Y = 20; Z = 30; backslash = 60; parenright = 10; r = -20; s = -20; u = -20; }; "@MMK_L_G" = { "@MMK_R_A" = 10; "@MMK_R_T" = -20; "@MMK_R_o" = -10; "@MMK_R_w" = -20; Y = -20; backslash = 20; }; "@MMK_L_K" = { "@MMK_R_A" = 20; "@MMK_R_O" = -20; "@MMK_R_V" = 10; "@MMK_R_v" = -20; backslash = 60; x = 20; z = 10; }; "@MMK_L_O" = { "@MMK_R_." = -40; "@MMK_R_A" = -10; "@MMK_R_B" = -10; "@MMK_R_V" = -10; "@MMK_R_w" = -20; I = -10; J = 10; X = -10; Y = -40; backslash = 30; icircumflex = 40; idieresis = 40; igrave = 20; question = -10; questiondown = -20; slash = -20; }; "@MMK_L_Q" = { "@MMK_R_A" = 10; "@MMK_R_O" = 10; J = 20; Lslash = 10; M = 10; Y = -10; Z = 30; slash = 30; }; "@MMK_L_T" = { "@MMK_R_." = -80; "@MMK_R_A" = -50; "@MMK_R_E" = -20; "@MMK_R_O" = -40; "@MMK_R_V" = 20; "@MMK_R_a2" = -70; "@MMK_R_n" = -50; "@MMK_R_quoteright" = 20; "@MMK_R_v" = -40; J = -80; Lslash = -30; backslash = 60; braceright = 30; bracketright = -20; comma = -100; four = -40; hyphen = -40; imacron = 80; itilde = 80; n = -50; p = -50; slash = -40; ubreve = -30; x = -20; y = -20; z = -20; }; "@MMK_L_Uhorn" = { "@MMK_R_O" = -50; }; "@MMK_L_V" = { "@MMK_R_." = -50; "@MMK_R_A" = -40; "@MMK_R_E" = -10; "@MMK_R_O" = -10; "@MMK_R_T" = 20; "@MMK_R_V" = 50; "@MMK_R_a" = -40; "@MMK_R_a2" = -50; "@MMK_R_n" = -30; "@MMK_R_o" = -60; "@MMK_R_quoteright" = 30; "@MMK_R_w" = -30; J = -40; Lslash = -20; U = 20; X = 50; Y = 40; Z = 20; abreve = -30; backslash = 100; braceright = 40; bracketright = -20; colon = -20; icircumflex = 70; idieresis = 100; igrave = 70; p = -10; questiondown = -70; r = -30; s = -50; slash = -20; u = -30; x = -10; z = -20; }; "@MMK_L_i" = { "@MMK_R_o" = -5; "@MMK_R_quoteright" = 20; backslash = 40; bracketright = -10; slash = 10; }; "@MMK_L_n" = { "@MMK_R_." = -30; "@MMK_R_colon" = -10; "@MMK_R_o" = -20; "@MMK_R_quoteright" = -40; "@MMK_R_w" = -40; bracketright = -30; f = -20; k = -10; parenright = -10; question = -30; }; "@MMK_L_o" = { "@MMK_R_." = -30; "@MMK_R_V" = -30; "@MMK_R_colon" = -10; "@MMK_R_i" = -10; "@MMK_R_n" = -20; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -20; "@MMK_R_v" = -20; "@MMK_R_w" = -40; H = -20; J = 20; Y = -80; b = -20; bracketright = -30; f = -20; h = -10; k = -20; l = -10; lslash = 40; nhookretroflex = -20; parenright = -20; question = -30; r = -20; s = -10; x = -20; }; "@MMK_L_quoteleft" = { "@MMK_R_O" = -10; "@MMK_R_o" = -20; }; "@MMK_L_quoteright" = { "@MMK_R_A" = -70; "@MMK_R_O" = -20; "@MMK_R_T" = 20; "@MMK_R_V" = 30; "@MMK_R_o" = -60; "@MMK_R_w" = -20; J = -80; r = -30; s = -80; u = -20; }; "@MMK_L_uhorn" = { "@MMK_R_o" = -60; }; "@MMK_L_v" = { "@MMK_R_." = -80; "@MMK_R_a" = -10; "@MMK_R_o" = -20; "@MMK_R_v" = 20; I = -30; backslash = 20; bracketright = -50; f = 20; k = -20; nhookretroflex = -10; parenright = -10; r = -10; s = -20; slash = -10; x = 20; }; "@MMK_L_w" = { "@MMK_R_." = -80; "@MMK_R_colon" = -30; "@MMK_R_j" = -40; "@MMK_R_n" = -30; I = -30; J = -20; b = -20; bracketright = -70; h = -20; k = -40; l = -20; nhookretroflex = -10; parenright = -10; r = -20; s = -30; u = -10; }; AE = { "@MMK_R_A" = 30; }; C = { J = 20; Z = 10; backslash = 20; icircumflex = 50; idieresis = 50; igrave = 30; slash = 10; }; H = { "@MMK_R_o" = -30; "@MMK_R_quoteright" = -10; "@MMK_R_w" = -20; backslash = 20; icircumflex = 30; idieresis = 50; igrave = 30; period = -20; s = -10; u = -20; }; I = { "@MMK_R_B" = -10; "@MMK_R_O" = -10; "@MMK_R_a" = -20; "@MMK_R_n" = -20; "@MMK_R_o" = -30; "@MMK_R_v" = -30; "@MMK_R_w" = -30; Lslash = -30; b = -10; backslash = 40; braceright = 10; f = -20; icircumflex = 40; idieresis = 50; igrave = 40; r = -20; s = -30; t = -10; u = -30; y = -20; }; J = { "@MMK_R_." = -40; "@MMK_R_B" = -10; "@MMK_R_O" = -10; "@MMK_R_V" = 30; "@MMK_R_n" = -10; "@MMK_R_o" = -20; "@MMK_R_w" = -10; X = 20; Z = 20; backslash = 50; icircumflex = 30; idieresis = 50; igrave = 30; }; K = { "@MMK_R_a" = -10; "@MMK_R_o" = -20; icircumflex = 30; idieresis = 70; igrave = 50; v = -30; w = -40; }; L = { "@MMK_R_A" = 20; "@MMK_R_O" = -30; "@MMK_R_T" = -90; "@MMK_R_V" = -50; "@MMK_R_quoteright" = -40; "@MMK_R_v" = -30; I = 20; J = 40; X = 30; Y = -60; Z = 40; w = -40; x = 30; }; Lslash = { "@MMK_R_A" = 40; "@MMK_R_O" = -20; "@MMK_R_T" = -50; "@MMK_R_V" = -30; J = 40; X = 40; Y = -70; Z = 30; }; M = { "@MMK_R_." = -20; "@MMK_R_n" = -10; "@MMK_R_o" = -20; "@MMK_R_v" = -10; "@MMK_R_w" = -20; Lslash = -10; b = -10; backslash = 20; h = -10; icircumflex = 30; idieresis = 60; igrave = 30; s = -20; u = -10; }; N = { "@MMK_R_." = -20; "@MMK_R_o" = -10; "@MMK_R_w" = -20; Lslash = -10; backslash = 30; icircumflex = 20; idieresis = 50; igrave = 20; s = -20; }; P = { "@MMK_R_." = -120; "@MMK_R_A" = -40; "@MMK_R_o" = -10; "@MMK_R_quoteright" = 20; "@MMK_R_v" = 10; J = -40; Lslash = -10; backslash = 30; comma = -120; four = -10; icircumflex = 50; idieresis = 60; igrave = 20; s = -10; slash = -30; y = 20; }; R = { "@MMK_R_O" = -20; "@MMK_R_T" = -30; "@MMK_R_V" = -10; "@MMK_R_a" = -20; "@MMK_R_o" = -30; "@MMK_R_v" = -20; Lslash = -20; U = -20; Y = -30; Z = 20; bracketright = -50; icircumflex = 20; idieresis = 20; u = -20; }; S = { J = 10; Lslash = 10; backslash = 30; bracketright = -40; icircumflex = 30; idieresis = 50; igrave = 20; }; T = { "@MMK_R_a" = -80; "@MMK_R_o" = -100; "@MMK_R_u" = -50; icircumflex = 60; idieresis = 100; igrave = 80; r = -50; s = -70; u = -50; uhorn = -50; w = -60; }; U = { "@MMK_R_." = -10; "@MMK_R_A" = -10; "@MMK_R_B" = -10; J = 10; backslash = 40; bracketright = -30; icircumflex = 50; idieresis = 60; igrave = 40; slash = -30; }; X = { "@MMK_R_A" = 20; "@MMK_R_O" = -20; "@MMK_R_V" = 40; "@MMK_R_o" = -20; "@MMK_R_w" = -50; J = 20; Lslash = -10; X = 40; Y = 40; Z = 50; backslash = 50; braceright = 40; bracketright = -30; idieresis = 90; igrave = 50; }; Y = { "@MMK_R_A" = -60; "@MMK_R_O" = -40; "@MMK_R_V" = 40; "@MMK_R_a" = -80; "@MMK_R_o" = -100; J = -80; X = 40; backslash = 100; braceright = 40; bracketright = -20; comma = -130; hyphen = -100; icircumflex = 50; idieresis = 100; igrave = 60; n = -30; p = -20; period = -100; questiondown = -70; quotedblbase = -100; r = -50; s = -80; slash = -60; u = -40; w = -50; }; Z = { "@MMK_R_A" = 20; "@MMK_R_V" = 30; J = 20; Y = 20; backslash = 80; braceright = 40; bracketright = -20; icircumflex = 60; idieresis = 90; igrave = 60; }; a = { "@MMK_R_i" = 10; "@MMK_R_quoteright" = 20; J = 20; bracketright = -10; slash = 40; x = 20; y = 20; }; backslash = { "@MMK_R_B" = -10; "@MMK_R_O" = -10; "@MMK_R_T" = -20; "@MMK_R_V" = -20; "@MMK_R_v" = 40; "@MMK_R_w" = -30; U = -20; X = 10; Y = -40; Z = 20; f = -20; j = 100; p = 20; }; braceleft = { "@MMK_R_T" = 20; "@MMK_R_V" = 40; "@MMK_R_n" = -10; "@MMK_R_o" = -20; X = 40; Y = 40; Z = 40; f = -20; j = 80; p = 20; s = -10; }; bracketleft = { "@MMK_R_T" = 20; "@MMK_R_V" = 20; "@MMK_R_i" = 20; "@MMK_R_o" = -10; "@MMK_R_w" = -20; X = 20; Y = 20; Z = 10; j = 80; p = 30; x = 10; }; c = { "@MMK_R_." = -30; "@MMK_R_j" = -30; "@MMK_R_n" = -10; "@MMK_R_o" = -10; "@MMK_R_quoteright" = 10; "@MMK_R_w" = -30; H = -30; b = -10; bracketright = -20; k = -20; question = -20; }; caroncomb = { "@MMK_R_a" = -80; "@MMK_R_a2" = -100; u = -70; }; ccaron = { r = -10; }; d = { "@MMK_R_o" = -10; "@MMK_R_v" = -20; "@MMK_R_w" = -40; backslash = 30; braceright = 20; slash = 20; x = 10; }; dcaron = { "@MMK_R_a" = -70; "@MMK_R_o" = -60; a.ss01 = -70; n = -50; s = -50; u = -20; }; eight = { degree = -20; eight = -30; five = -20; four = -20; nine = -50; one = -10; ordfeminine = -10; percent = -30; period = -40; seven = -50; six = -30; three = -20; two = -10; zero = -10; }; endash = { space = -150; }; f = { "@MMK_R_." = -50; "@MMK_R_v" = 30; "@MMK_R_w" = 10; N = 10; backslash = 60; braceright = 70; bracketright = 60; i = 10; j = 10; l = 10; p = 30; parenright = 60; quotedblright = 40; quoteright = 50; t = 30; u = 20; x = 10; }; five = { "@MMK_R_." = -40; five = -10; nine = -30; percent = -30; seven = -10; }; four = { "@MMK_R_." = -20; "@MMK_R_T" = -40; equal = 20; percent = -40; }; g = { "@MMK_R_." = -30; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -20; "@MMK_R_w" = -20; H = -10; j = 40; nhookretroflex = -10; r = -20; s = -20; slash = 20; }; greater = { two = -20; }; guillemetright = { four = 30; }; h = { "@MMK_R_." = -30; "@MMK_R_o" = -20; "@MMK_R_quoteright" = -40; "@MMK_R_v" = -20; "@MMK_R_w" = -20; b = -10; bracketright = -20; nhookretroflex = -10; r = -10; }; hyphen = { "@MMK_R_O" = 20; }; iacute = { b = 10; l = 40; }; icircumflex = { l = 60; }; idieresis = { l = 90; }; j = { "@MMK_R_." = -20; "@MMK_R_o" = -20; "@MMK_R_quoteright" = 20; bracketright = -20; l = -20; lslash = 20; slash = 30; }; k = { "@MMK_R_j" = 20; "@MMK_R_o" = -20; "@MMK_R_v" = 10; endash = -40; hyphen = -30; v = 20; x = 20; z = 10; }; l = { "@MMK_R_." = -10; "@MMK_R_o" = -20; "@MMK_R_w" = -20; backslash = 30; bracketright = -20; h = -20; icircumflex = 60; idieresis = 70; s = -20; }; lcaron = { "@MMK_R_a" = -80; "@MMK_R_o" = -80; a.ss01 = -80; n = -50; s = -60; u = -30; }; lslash = { "@MMK_R_o" = -10; p = 10; w = 20; y = 40; }; n = { period = -20; }; nhookretroflex = { "@MMK_R_g" = 20; "@MMK_R_n" = -10; "@MMK_R_o" = -30; "@MMK_R_v" = 0; "@MMK_R_w" = -60; f = -30; h = -20; j = 100; x = 20; }; nine = { comma = -80; eight = -10; five = -20; four = -30; period = -80; seven = -10; six = -20; three = -20; }; ohorn = { n = -50; }; one = { degree = -80; eight = -50; five = -30; four = -30; nine = -80; ordfeminine = -80; ordmasculine = -70; percent = -80; seven = -50; three = -30; zero = -30; }; parenleft = { "@MMK_R_E" = -20; "@MMK_R_O" = -30; "@MMK_R_a" = -30; "@MMK_R_n" = -20; "@MMK_R_o" = -40; "@MMK_R_v" = -20; "@MMK_R_w" = -30; M = -10; eight = -40; f = -20; j = 30; u = -20; x = -10; }; period = { zero = -20; }; q = { "@MMK_R_." = -30; "@MMK_R_i" = -10; "@MMK_R_j" = 30; "@MMK_R_o" = -30; "@MMK_R_quoteright" = -30; "@MMK_R_v" = -10; "@MMK_R_w" = -40; H = -10; b = -20; f = -20; h = -20; j = 50; k = -20; l = -20; nhookretroflex = -20; r = -20; s = -20; slash = 20; u = -10; }; question = { "@MMK_R_A" = -40; }; questiondown = { "@MMK_R_o" = -30; }; quotedblleft = { "@MMK_R_A" = -70; J = -80; }; quoteleft = { "@MMK_R_A" = -50; }; r = { "@MMK_R_o" = -20; "@MMK_R_quoteright" = 30; "@MMK_R_v" = 30; "@MMK_R_w" = 20; backslash = 30; braceright = 20; comma = -80; f = 20; p = 10; period = -90; t = 30; x = 20; z = 20; }; s = { "@MMK_R_." = -20; "@MMK_R_o" = -10; "@MMK_R_quoteright" = -20; "@MMK_R_v" = -20; "@MMK_R_w" = -30; bracketright = -60; f = -10; lslash = 20; r = -10; x = -10; }; seven = { comma = -80; degree = 30; four = -40; ordfeminine = 20; percent = 20; period = -90; seven = 30; six = -20; }; six = { "@MMK_R_." = -40; degree = -40; five = -20; nine = -50; percent = -50; seven = -30; six = -10; }; slash = { "@MMK_R_A" = -20; "@MMK_R_E" = 10; "@MMK_R_O" = -10; "@MMK_R_T" = 20; "@MMK_R_V" = 60; "@MMK_R_i" = 20; "@MMK_R_n" = -30; "@MMK_R_o" = -30; X = 40; Y = 50; Z = 40; b = 20; h = 20; j = 20; s = -20; u = -20; x = -20; }; t = { "@MMK_R_quoteright" = 20; I = 20; backslash = 20; braceright = 20; }; tcaron = { "@MMK_R_a" = -40; "@MMK_R_o" = -10; a.ss01 = -30; s = -20; }; three = { "@MMK_R_." = -40; percent = -30; }; two = { degree = -10; eight = -20; five = -20; four = -30; nine = -40; ordfeminine = -10; percent = -40; seven = -20; six = -20; three = -20; x = 30; zero = -20; }; u = { "@MMK_R_." = -20; "@MMK_R_o" = -20; "@MMK_R_quoteright" = -20; "@MMK_R_w" = -10; b = -10; bracketright = -20; f = -20; h = -10; parenright = -10; s = -20; }; uhorn = { n = -50; ohorn = -100; }; uhorntilde = { n = -50; }; v = { "@MMK_R_o" = -30; n = 10; questiondown = -50; w = 20; }; w = { "@MMK_R_a" = -30; "@MMK_R_o" = -40; at = -10; x = 10; }; x = { "@MMK_R_j" = 20; "@MMK_R_o" = -20; "@MMK_R_v" = 20; bracketright = -40; k = -20; minus = -30; s = -10; x = 20; y = 20; }; y = { "@MMK_R_T" = -70; comma = -100; lslash = 20; period = -110; questiondown = -50; z = 20; }; z = { "@MMK_R_o" = -20; k = -20; }; zero = { "@MMK_R_." = -50; percent = -40; zero = -10; }; }; }; metrics = ( { type = ascender; }, { type = "cap height"; }, { type = "x-height"; }, { type = baseline; }, { type = descender; }, { name = "Overshoot X"; }, { name = "Overshoot Base"; }, { name = "Overshoot Cap"; }, { } ); properties = ( { key = copyrights; values = ( { language = ENG; value = "Copyright 2024 The Inclusive Sans Project Authors (https://github.com/LivKing/Inclusive-Sans)"; } ); }, { key = designers; values = ( { language = ENG; value = "Olivia King"; } ); }, { key = designerURL; value = "https://www.oliviaking.com"; }, { key = licenses; values = ( { language = ENG; value = "This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://openfontlicense.org"; } ); }, { key = licenseURL; value = "https://openfontlicense.org"; }, { key = manufacturers; values = ( { language = dflt; value = "Olivia King"; } ); }, { key = manufacturerURL; value = "https://www.oliviaking.com"; } ); unitsPerEm = 1000; userData = { GSDimensionPlugin.Dimensions = { m002 = { HH = "80"; HV = "88"; OH = "80"; OV = "92"; nV = "84"; nd = "63"; oH = "76"; oV = "84"; tH = "76"; }; m003 = { HH = "126"; HV = "146"; OH = "130"; OV = "154"; nV = "140"; nd = "100"; oH = "120"; oV = "146"; tH = "120"; }; m01 = { HH = "56"; HV = "60"; OH = "56"; OV = "62"; nV = "56"; nd = "48"; oH = "50"; oV = "58"; tH = "50"; }; }; }; versionMajor = 2; versionMinor = 5; } ================================================ FILE: sources/V1.0/InclusiveSans.glyphs ================================================ { .appVersion = "3208"; .formatVersion = 3; customParameters = ( { disabled = 1; name = glyphOrder; value = ( space, exclam, quotesingle, quotedbl, numbersign, dollar, percent, ampersand, parenleft, parenright, asterisk, plus, comma, hyphen, period, slash, zero, one, two, three, four, five, six, seven, eight, nine, colon, semicolon, less, equal, greater, question, at, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, bracketleft, backslash, bracketright, asciicircum, underscore, grave, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, braceleft, bar, braceright, asciitilde, exclamdown, cent, sterling, currency, yen, brokenbar, section, dieresis, copyright, ordfeminine, guillemetleft, logicalnot, registered, macron, degree, plusminus, twosuperior, threesuperior, acute, mu, paragraph, periodcentered, cedilla, onesuperior, ordmasculine, guillemetright, onequarter, onehalf, threequarters, questiondown, Agrave, Aacute, Acircumflex, Atilde, Adieresis, Aring, AE, Ccedilla, Egrave, Eacute, Ecircumflex, Edieresis, Igrave, Iacute, Icircumflex, Idieresis, Eth, Ntilde, Ograve, Oacute, Ocircumflex, Otilde, Odieresis, multiply, Oslash, Ugrave, Uacute, Ucircumflex, Udieresis, Yacute, Thorn, germandbls, agrave, aacute, acircumflex, atilde, adieresis, aring, ae, ccedilla, egrave, eacute, ecircumflex, edieresis, igrave, iacute, icircumflex, idieresis, eth, ntilde, ograve, oacute, ocircumflex, otilde, odieresis, divide, oslash, ugrave, uacute, ucircumflex, udieresis, yacute, thorn, ydieresis, dotlessi, circumflex, caron, breve, dotaccent, ring, ogonek, tilde, hungarumlaut, quoteleft, quoteright, minus, g.ss01, a.ss01 ); }, { name = "Use Typo Metrics"; value = 1; }, { name = fsType; value = ( ); } ); date = "2023-06-07 06:02:52 +0000"; familyName = "Inclusive Sans"; featurePrefixes = ( { automatic = 1; code = "languagesystem DFLT dflt; languagesystem DFLT MAH; languagesystem latn dflt; languagesystem latn AZE; languagesystem latn CRT; languagesystem latn KAZ; languagesystem latn TAT; languagesystem latn TRK; languagesystem latn ROM; languagesystem latn MOL; languagesystem latn MAH; languagesystem latn CAT; languagesystem latn NLD; "; name = Languagesystems; } ); features = ( { automatic = 1; code = "feature locl; feature ordn; feature case; feature ss01; "; tag = aalt; }, { code = "lookup ccmp_DFLT_1 { lookupflag 0; sub brevecomb acutecomb by brevecomb_acutecomb; sub brevecomb gravecomb by brevecomb_gravecomb; sub brevecomb hookabovecomb by brevecomb_hookabovecomb; sub brevecomb tildecomb by brevecomb_tildecomb; sub circumflexcomb acutecomb by circumflexcomb_acutecomb; sub circumflexcomb gravecomb by circumflexcomb_gravecomb; sub circumflexcomb hookabovecomb by circumflexcomb_hookabovecomb; sub circumflexcomb tildecomb by circumflexcomb_tildecomb; } ccmp_DFLT_1; lookup ccmp_Other_1 { @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hookabovecomb hungarumlautcomb macroncomb ringcomb tildecomb]; @CombiningNonTopAccents = [cedillacomb dotbelowcomb macronbelowcomb ogonekcomb]; lookupflag UseMarkFilteringSet @CombiningTopAccents; sub i' @CombiningTopAccents by idotless; sub j' @CombiningTopAccents by jdotless; sub idotbelow' @CombiningTopAccents by idotless dotbelowcomb; sub iogonek' @CombiningTopAccents by idotless ogonekcomb; sub idotbelow' @CombiningNonTopAccents @CombiningTopAccents by idotless dotbelowcomb; sub iogonek' @CombiningNonTopAccents @CombiningTopAccents by idotless ogonekcomb; } ccmp_Other_1; "; tag = ccmp; }, { automatic = 1; code = "language MAH; lookup locl_noScript_0 { sub commaaccentcomb by commaaccentcomb.loclMAH; } locl_noScript_0; script latn; language AZE; lookup locl_latn_0 { sub i by idotaccent; } locl_latn_0; language CRT; lookup locl_latn_0; language KAZ; lookup locl_latn_0; language TAT; lookup locl_latn_0; language TRK; lookup locl_latn_0; script latn; language ROM; lookup locl_latn_1 { sub Scedilla by Scommaaccent; sub scedilla by scommaaccent; sub Tcedilla by Tcommaaccent; sub tcedilla by tcommaaccent; } locl_latn_1; language MOL; lookup locl_latn_1; script latn; language MAH; lookup locl_latn_2 { sub Lcommaaccent by Lcommaaccent.loclMAH; sub Ncommaaccent by Ncommaaccent.loclMAH; sub lcommaaccent by lcommaaccent.loclMAH; sub ncommaaccent by ncommaaccent.loclMAH; } locl_latn_2; script latn; language CAT; lookup locl_latn_3 { sub l periodcentered' l by periodcentered.loclCAT; sub L periodcentered' L by periodcentered.loclCAT.case; } locl_latn_3; script latn; language NLD; lookup locl_latn_4 { sub iacute j' by jacute; sub Iacute J' by Jacute; } locl_latn_4; "; tag = locl; }, { automatic = 1; code = "sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; "; tag = ordn; }, { automatic = 1; code = "sub periodcentered.loclCAT by periodcentered.loclCAT.case; "; tag = case; }, { automatic = 1; code = "sub a by a.ss01; sub aacute by aacute.ss01; sub abreve by abreve.ss01; sub abreveacute by abreveacute.ss01; sub abrevedotbelow by abrevedotbelow.ss01; sub abrevegrave by abrevegrave.ss01; sub abrevehookabove by abrevehookabove.ss01; sub abrevetilde by abrevetilde.ss01; sub acircumflex by acircumflex.ss01; sub acircumflexacute by acircumflexacute.ss01; sub acircumflexdotbelow by acircumflexdotbelow.ss01; sub acircumflexgrave by acircumflexgrave.ss01; sub acircumflexhookabove by acircumflexhookabove.ss01; sub acircumflextilde by acircumflextilde.ss01; sub adieresis by adieresis.ss01; sub adotbelow by adotbelow.ss01; sub agrave by agrave.ss01; sub ahookabove by ahookabove.ss01; sub amacron by amacron.ss01; sub aogonek by aogonek.ss01; sub aring by aring.ss01; sub atilde by atilde.ss01; sub g by g.ss01; sub gbreve by gbreve.ss01; sub gcommaaccent by gcommaaccent.ss01; sub gdotaccent by gdotaccent.ss01; sub gmacron by gmacron.ss01; "; labels = ( { language = dflt; value = ss01; } ); tag = ss01; } ); fontMaster = ( { customParameters = ( { name = typoAscender; value = 950; }, { name = typoDescender; value = -250; }, { name = typoLineGap; value = 0; }, { name = winAscent; value = 1137; }, { name = winDescent; value = 404; }, { name = hheaAscender; value = 950; }, { name = hheaDescender; value = -250; }, { name = hheaLineGap; value = 0; } ); id = master01; metricValues = ( { pos = 720; }, { pos = 700; }, { pos = 500; }, { }, { pos = -230; }, { pos = 512; }, { pos = -12; }, { pos = 712; } ); name = Regular; visible = 1; } ); glyphs = ( { glyphname = A; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:33:25 +0000"; layers = ( { anchors = ( { name = bottom; pos = (303,0); }, { name = ogonek; pos = (549,0); }, { name = top; pos = (303,712); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (595,0,l), (346,700,l), (262,700,l), (511,0,l) ); }, { closed = 1; nodes = ( (96,0,l), (345,700,l), (261,700,l), (12,0,l) ); }, { closed = 1; nodes = ( (455,195,l), (455,275,l), (134,275,l), (134,195,l) ); } ); width = 607; } ); unicode = 65; }, { glyphname = Aacute; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (247,200); ref = acutecomb; } ); width = 607; } ); unicode = 193; }, { glyphname = Abreve; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (-4,200); ref = brevecomb; } ); width = 607; } ); unicode = 258; }, { glyphname = Abreveacute; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (-4,200); ref = brevecomb_acutecomb; } ); width = 607; } ); unicode = 7854; }, { glyphname = Abrevedotbelow; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (228,0); ref = dotbelowcomb; }, { pos = (-4,200); ref = brevecomb; } ); width = 607; } ); unicode = 7862; }, { glyphname = Abrevegrave; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (-4,200); ref = brevecomb_gravecomb; } ); width = 607; } ); unicode = 7856; }, { glyphname = Abrevehookabove; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (-4,200); ref = brevecomb_hookabovecomb; } ); width = 607; } ); unicode = 7858; }, { glyphname = Abrevetilde; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (-4,200); ref = brevecomb_tildecomb; } ); width = 607; } ); unicode = 7860; }, { glyphname = Acircumflex; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (92,200); ref = circumflexcomb; } ); width = 607; } ); unicode = 194; }, { glyphname = Acircumflexacute; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (91,200); ref = circumflexcomb_acutecomb; } ); width = 607; } ); unicode = 7844; }, { glyphname = Acircumflexdotbelow; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (228,0); ref = dotbelowcomb; }, { pos = (92,200); ref = circumflexcomb; } ); width = 607; } ); unicode = 7852; }, { glyphname = Acircumflexgrave; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (92,200); ref = circumflexcomb_gravecomb; } ); width = 607; } ); unicode = 7846; }, { glyphname = Acircumflexhookabove; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (92,200); ref = circumflexcomb_hookabovecomb; } ); width = 607; } ); unicode = 7848; }, { glyphname = Acircumflextilde; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (92,200); ref = circumflexcomb_tildecomb; } ); width = 607; } ); unicode = 7850; }, { glyphname = Adieresis; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (142,200); ref = dieresiscomb; } ); width = 607; } ); unicode = 196; }, { glyphname = Adotbelow; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (228,0); ref = dotbelowcomb; } ); width = 607; } ); unicode = 7840; }, { glyphname = Agrave; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (125,200); ref = gravecomb; } ); width = 607; } ); unicode = 192; }, { glyphname = Ahookabove; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (11,212); ref = hookabovecomb; } ); width = 607; } ); unicode = 7842; }, { glyphname = Amacron; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (2,200); ref = macroncomb; } ); width = 607; } ); unicode = 256; }, { glyphname = Aogonek; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (193,0); ref = ogonekcomb; } ); width = 607; } ); unicode = 260; }, { glyphname = Aring; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (185,200); ref = ringcomb; } ); width = 607; } ); unicode = 197; }, { glyphname = Atilde; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (4,200); ref = tildecomb; } ); width = 607; } ); unicode = 195; }, { glyphname = AE; kernLeft = A; kernRight = E; lastChange = "2023-07-09 23:16:39 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (98,0,l), (413,700,l), (325,700,l), (10,0,l) ); }, { closed = 1; nodes = ( (401,195,l), (401,275,l), (155,275,l), (155,195,l) ); }, { closed = 1; nodes = ( (774,0,l), (774,80,l), (474,80,l), (474,320,l), (713,320,l), (713,400,l), (474,400,l), (474,620,l), (774,620,l), (774,700,l), (386,700,l), (386,0,l) ); } ); width = 832; } ); unicode = 198; }, { glyphname = B; kernLeft = B; kernRight = B; lastChange = "2023-07-09 23:16:45 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,14); target = (1,10); type = Stem; }, { horizontal = 1; origin = (1,0); target = (2,10); type = Stem; }, { horizontal = 1; origin = (2,0); target = (0,13); type = Stem; }, { origin = (0,14); target = (1,10); type = Stem; }, { origin = (1,6); target = (0,3); type = Stem; }, { origin = (2,6); target = (0,9); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (354,0,ls), (514,0,o), (598,79,o), (598,206,cs), (598,309,o), (550,360,o), (456,382,c), (515,400,o), (559,444,o), (559,525,cs), (559,641,o), (483,701,o), (346,701,cs), (97,701,l), (97,0,l) ); }, { closed = 1; nodes = ( (185,335,l), (185,335,o), (364,335,o), (364,335,c), (456,335,o), (506,289,o), (506,206,cs), (506,126,o), (446,80,o), (354,80,cs), (185,80,l) ); }, { closed = 1; nodes = ( (185,621,l), (185,621,o), (341,621,o), (341,621,cs), (414,621,o), (468,591,o), (468,524,cs), (468,455,o), (415,415,o), (342,415,cs), (185,415,l) ); } ); width = 652; }, { associatedMasterId = master01; layerId = "B2778AA9-272F-47DA-B672-36E0A49462E6"; name = foreground; shapes = ( { closed = 1; nodes = ( (201,608,o), (362,608,o), (362,608,c), (428,608,o), (473,575,o), (473,515,cs), (473,461,o), (427,419,o), (362,419,cs), (201,419,l), (201,608,l) ); }, { closed = 1; nodes = ( (95,0,l), (394,0,ls), (546,0,o), (621,101,o), (621,194,cs), (621,315,o), (554,363,o), (486,382,c), (529,387,o), (582,456,o), (582,536,cs), (582,620,o), (516,701,o), (379,701,cs), (95,701,l) ); }, { closed = 1; nodes = ( (201,326,o), (374,326,o), (374,326,c), (461,326,o), (506,283,o), (506,209,cs), (506,146,o), (459,93,o), (374,93,cs), (201,93,l), (201,326,l) ); } ); width = 671; } ); unicode = 66; }, { glyphname = C; kernLeft = C; kernRight = C; lastChange = "2023-07-09 23:16:52 +0000"; layers = ( { anchors = ( { name = bottom; pos = (366,0); }, { name = top; pos = (364,713); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (523,-13,o), (625,75,o), (653,198,c), (564,216,l), (541,130,o), (469,67,o), (364,67,cs), (220,67,o), (145,194,o), (145,357,cs), (145,512,o), (220,633,o), (364,633,c), (469,633,o), (541,570,o), (564,484,c), (653,502,l), (625,625,o), (523,713,o), (364,713,c), (145,713,o), (55,548,o), (55,355,cs), (55,171,o), (144,-13,o), (364,-13,cs) ); } ); width = 697; }, { associatedMasterId = master01; layerId = "B03B6E58-C7A4-4549-B5DA-7F61DFFF8AA1"; name = foreground; shapes = ( { closed = 1; nodes = ( (50,540,o), (156,713,o), (386,713,c), (551,713,o), (653,623,o), (683,503,c), (574,481,l), (548,565,o), (477,616,o), (386,616,c), (252,616,o), (164,504,o), (164,349,c), (164,194,o), (252,86,o), (386,86,c), (477,86,o), (549,147,o), (576,223,c), (683,198,l), (648,82,o), (551,-12,o), (386,-12,c), (156,-12,o), (50,158,o), (50,347,c) ); } ); width = 718; } ); unicode = 67; }, { glyphname = Cacute; kernLeft = C; kernRight = C; lastChange = "2023-07-09 23:16:52 +0000"; layers = ( { layerId = master01; shapes = ( { ref = C; }, { pos = (308,201); ref = acutecomb; } ); width = 697; } ); unicode = 262; }, { glyphname = Ccaron; kernLeft = C; kernRight = C; lastChange = "2023-07-09 23:16:52 +0000"; layers = ( { layerId = master01; shapes = ( { ref = C; }, { pos = (151,201); ref = caroncomb; } ); width = 697; } ); unicode = 268; }, { glyphname = Ccedilla; kernLeft = C; kernRight = C; lastChange = "2023-07-09 23:16:52 +0000"; layers = ( { layerId = master01; shapes = ( { ref = C; }, { pos = (76,-2); ref = cedillacomb; } ); width = 697; } ); unicode = 199; }, { glyphname = Cdotaccent; kernLeft = C; kernRight = C; lastChange = "2023-07-09 23:16:52 +0000"; layers = ( { layerId = master01; shapes = ( { ref = C; }, { pos = (290,201); ref = dotaccentcomb; } ); width = 697; } ); unicode = 266; }, { glyphname = D; kernLeft = D; kernRight = D; lastChange = "2023-07-09 23:16:59 +0000"; layers = ( { anchors = ( { name = top; pos = (323,712); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (289,0,ls), (519,0,o), (626,141,o), (626,349,cs), (626,560,o), (519,700,o), (289,700,cs), (97,700,l), (97,0,l) ); }, { closed = 1; nodes = ( (183,620,l), (292,620,ls), (453,620,o), (534,507,o), (534,350,cs), (534,192,o), (453,80,o), (292,80,cs), (183,80,l) ); } ); width = 676; }, { associatedMasterId = master01; layerId = "06695B29-B584-4CFA-B58E-873EFBF25244"; name = foreground; shapes = ( { closed = 1; nodes = ( (535,700,o), (646,542,o), (646,356,cs), (646,178,o), (539,0,o), (308,0,cs), (95,0,l), (95,700,l), (305,700,ls) ); }, { closed = 1; nodes = ( (445,91,o), (532,200,o), (532,356,cs), (532,504,o), (441,609,o), (308,609,cs), (205,609,l), (205,91,l), (308,91,ls) ); } ); width = 696; } ); unicode = 68; }, { glyphname = Eth; kernLeft = D; kernRight = D; lastChange = "2023-07-09 23:16:59 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (289,0,ls), (519,0,o), (626,141,o), (626,349,cs), (626,560,o), (519,700,o), (289,700,cs), (97,700,l), (97,0,l) ); }, { closed = 1; nodes = ( (268,302,l), (268,386,l), (14,386,l), (14,302,l) ); }, { closed = 1; nodes = ( (183,620,l), (292,620,ls), (453,620,o), (534,507,o), (534,350,cs), (534,192,o), (453,80,o), (292,80,cs), (183,80,l) ); } ); width = 676; } ); unicode = 208; }, { glyphname = Dcaron; kernLeft = D; kernRight = D; lastChange = "2023-07-09 23:16:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = D; }, { pos = (110,200); ref = caroncomb; } ); width = 676; } ); unicode = 270; }, { glyphname = Dcroat; kernLeft = D; kernRight = D; lastChange = "2023-07-09 23:16:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Eth; } ); width = 676; } ); unicode = 272; }, { glyphname = Ddotbelow; kernLeft = D; kernRight = D; lastChange = "2023-07-09 23:16:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = D; }, { pos = (235,0); ref = dotbelowcomb; } ); width = 676; } ); unicode = 7692; }, { glyphname = Dmacronbelow; kernLeft = D; kernRight = D; lastChange = "2023-07-09 23:16:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = D; }, { ref = macronbelowcomb; } ); width = 676; } ); unicode = 7694; }, { glyphname = E; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { anchors = ( { name = bottom; pos = (302,0); }, { name = ogonek; pos = (462,0); }, { name = top; pos = (302,720); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (507,0,l), (507,80,l), (185,80,l), (185,320,l), (446,320,l), (446,398,l), (185,398,l), (185,620,l), (507,620,l), (507,700,l), (97,700,l), (97,0,l) ); } ); width = 564; }, { associatedMasterId = master01; layerId = "A977A26C-359E-4C6D-9AFD-AF1AE6B4AD04"; name = foreground; shapes = ( { closed = 1; nodes = ( (90,700,l), (546,700,l), (546,608,l), (196,608,l), (196,405,l), (485,405,l), (485,313,l), (196,313,l), (196,92,l), (546,92,l), (546,0,l), (90,0,l) ); } ); width = 596; } ); unicode = 69; }, { glyphname = Eacute; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (246,208); ref = acutecomb; } ); width = 564; } ); unicode = 201; }, { glyphname = Ecaron; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (89,208); ref = caroncomb; } ); width = 564; } ); unicode = 282; }, { glyphname = Ecircumflex; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (91,208); ref = circumflexcomb; } ); width = 564; } ); unicode = 202; }, { glyphname = Ecircumflexacute; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (90,208); ref = circumflexcomb_acutecomb; } ); width = 564; } ); unicode = 7870; }, { glyphname = Ecircumflexdotbelow; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (227,0); ref = dotbelowcomb; }, { pos = (91,208); ref = circumflexcomb; } ); width = 564; } ); unicode = 7878; }, { glyphname = Ecircumflexgrave; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (91,208); ref = circumflexcomb_gravecomb; } ); width = 564; } ); unicode = 7872; }, { glyphname = Ecircumflexhookabove; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (91,208); ref = circumflexcomb_hookabovecomb; } ); width = 564; } ); unicode = 7874; }, { glyphname = Ecircumflextilde; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (91,208); ref = circumflexcomb_tildecomb; } ); width = 564; } ); unicode = 7876; }, { glyphname = Edieresis; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (141,208); ref = dieresiscomb; } ); width = 564; } ); unicode = 203; }, { glyphname = Edotaccent; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (228,208); ref = dotaccentcomb; } ); width = 564; } ); unicode = 278; }, { glyphname = Edotbelow; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (227,0); ref = dotbelowcomb; } ); width = 564; } ); unicode = 7864; }, { glyphname = Egrave; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (124,208); ref = gravecomb; } ); width = 564; } ); unicode = 200; }, { glyphname = Ehookabove; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (10,220); ref = hookabovecomb; } ); width = 564; } ); unicode = 7866; }, { glyphname = Emacron; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (1,208); ref = macroncomb; } ); width = 564; } ); unicode = 274; }, { glyphname = Eogonek; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (106,0); ref = ogonekcomb; } ); width = 564; } ); unicode = 280; }, { glyphname = Etilde; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (3,208); ref = tildecomb; } ); width = 564; } ); unicode = 7868; }, { glyphname = F; kernLeft = F; kernRight = F; lastChange = "2023-08-03 09:26:02 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (185,0,l), (185,320,l), (446,320,l), (446,400,l), (185,400,l), (185,620,l), (507,620,l), (507,700,l), (97,700,l), (97,0,l) ); } ); width = 541; }, { associatedMasterId = master01; layerId = "A8DBB783-FE60-44AC-AE41-AD44FD5FD283"; name = foreground; shapes = ( { closed = 1; nodes = ( (95,0,l), (95,700,l), (551,700,l), (551,608,l), (201,608,l), (201,404,l), (490,404,l), (490,312,l), (201,312,l), (201,0,l) ); } ); width = 581; } ); unicode = 70; }, { glyphname = G; kernLeft = G; kernRight = G; lastChange = "2023-07-09 23:17:17 +0000"; layers = ( { anchors = ( { name = top; pos = (363,724); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (458,-12,o), (535,30,o), (575,107,c), (575,107,o), (588,0,o), (588,0,c), (657,0,l), (657,368,l), (410,368,l), (410,284,l), (568,284,l), (568,158,o), (466,67,o), (361,67,cs), (217,67,o), (145,194,o), (145,357,cs), (145,512,o), (220,633,o), (364,633,c), (469,633,o), (541,570,o), (564,484,c), (653,502,l), (625,625,o), (523,713,o), (364,713,c), (145,713,o), (55,548,o), (55,355,cs), (55,158,o), (147,-12,o), (374,-12,c) ); } ); width = 723; }, { associatedMasterId = master01; layerId = "CB3D37D9-D998-4BEF-81F7-6BF9414937DB"; name = foreground; shapes = ( { closed = 1; nodes = ( (156,-12,o), (50,158,o), (50,347,c), (50,540,o), (156,713,o), (386,713,c), (551,713,o), (652,623,o), (683,503,c), (570,481,l), (548,553,o), (477,618,o), (386,618,c), (252,618,o), (165,504,o), (165,349,c), (165,194,o), (250,94,o), (391,94,c), (487,94,o), (577,179,o), (577,274,c), (419,274,l), (419,368,l), (704,368,l), (704,0,l), (608,0,l), (608,0,o), (608,143,o), (608,143,c), (583,27,o), (467,-12,o), (383,-12,c) ); } ); width = 768; } ); unicode = 71; }, { glyphname = Gbreve; kernLeft = G; kernRight = G; lastChange = "2023-07-09 23:17:17 +0000"; layers = ( { layerId = master01; shapes = ( { ref = G; }, { pos = (56,212); ref = brevecomb; } ); width = 723; } ); unicode = 286; }, { glyphname = Gcommaaccent; kernLeft = G; kernRight = G; lastChange = "2023-07-09 23:17:17 +0000"; layers = ( { layerId = master01; shapes = ( { ref = G; }, { pos = (48,0); ref = commaaccentcomb; } ); width = 723; } ); unicode = 290; }, { glyphname = Gdotaccent; kernLeft = G; kernRight = G; lastChange = "2023-07-09 23:17:17 +0000"; layers = ( { layerId = master01; shapes = ( { ref = G; }, { pos = (289,212); ref = dotaccentcomb; } ); width = 723; } ); unicode = 288; }, { glyphname = Gmacron; kernLeft = G; kernRight = G; lastChange = "2023-07-09 23:17:17 +0000"; layers = ( { layerId = master01; shapes = ( { ref = G; }, { pos = (62,212); ref = macroncomb; } ); width = 723; } ); unicode = 7712; }, { glyphname = H; kernLeft = H; kernRight = H; lastChange = "2023-08-02 08:48:15 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,1); target = (0,8); type = Stem; }, { origin = (0,11); target = (0,0); type = Stem; }, { origin = (0,3); target = (0,4); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (183,0,l), (183,324,l), (517,324,l), (517,0,l), (605,0,l), (605,700,l), (517,700,l), (517,404,l), (183,404,l), (183,700,l), (95,700,l), (95,0,l) ); } ); width = 700; }, { associatedMasterId = master01; layerId = "767EE966-09EE-4F15-A2D2-031D2049D6EC"; name = foreground; shapes = ( { closed = 1; nodes = ( (534,0,l), (640,0,l), (640,700,l), (534,700,l), (534,404,l), (196,404,l), (196,700,l), (90,700,l), (90,0,l), (196,0,l), (196,312,l), (534,312,l) ); } ); width = 730; } ); unicode = 72; }, { glyphname = Hbar; kernLeft = H; kernRight = H; lastChange = "2023-07-09 23:17:24 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (659,492,l), (659,562,l), (44,562,l), (44,492,l) ); }, { pos = (2,0); ref = H; } ); width = 700; } ); unicode = 294; }, { glyphname = I; kernLeft = I; kernRight = I; lastChange = "2023-07-09 23:17:29 +0000"; layers = ( { anchors = ( { name = top; pos = (238,712); } ); hints = ( { horizontal = 1; origin = (0,11); target = (0,10); type = Stem; }, { horizontal = 1; origin = (0,6); target = (0,7); type = Stem; }, { horizontal = 1; origin = (0,11); target = (0,2); type = Stem; }, { origin = (0,9); target = (0,0); type = Stem; }, { origin = (0,9); target = (0,2); type = Stem; }, { origin = (0,11); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (401,0,l), (401,76,l), (282,76,l), (282,624,l), (401,624,l), (401,700,l), (75,700,l), (75,624,l), (194,624,l), (194,74,l), (75,74,l), (75,0,l) ); } ); width = 476; }, { associatedMasterId = master01; layerId = "7531A638-AF93-42CE-98F8-0983E097DA89"; name = foreground; shapes = ( { closed = 1; nodes = ( (416,94,l), (306,94,l), (306,608,l), (416,608,l), (416,700,l), (90,700,l), (90,608,l), (200,608,l), (200,92,l), (90,92,l), (90,0,l), (416,0,l) ); } ); width = 506; } ); unicode = 73; }, { glyphname = IJ; kernLeft = I; kernRight = J; lastChange = "2023-07-09 23:17:35 +0000"; layers = ( { anchors = ( { name = _top; pos = (844,720); } ); layerId = master01; shapes = ( { ref = I; }, { pos = (476,0); ref = J; } ); width = 971; } ); unicode = 306; }, { glyphname = Iacute; kernLeft = I; kernRight = I; lastChange = "2023-07-09 23:17:42 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (182,200); ref = acutecomb; } ); width = 476; } ); unicode = 205; }, { glyphname = Icircumflex; kernLeft = I; kernRight = I; lastChange = "2023-07-09 23:17:42 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (27,200); ref = circumflexcomb; } ); width = 476; } ); unicode = 206; }, { glyphname = Idieresis; kernLeft = I; kernRight = I; lastChange = "2023-07-09 23:17:42 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (77,200); ref = dieresiscomb; } ); width = 476; } ); unicode = 207; }, { glyphname = Idotaccent; kernLeft = I; kernRight = I; lastChange = "2023-07-09 23:17:42 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (164,200); ref = dotaccentcomb; } ); width = 476; } ); unicode = 304; }, { glyphname = Idotbelow; kernLeft = I; kernRight = I; lastChange = "2023-07-09 23:17:42 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (163,0); ref = dotbelowcomb; } ); width = 476; } ); unicode = 7882; }, { glyphname = Igrave; kernLeft = I; kernRight = I; lastChange = "2023-07-09 23:17:42 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (60,200); ref = gravecomb; } ); width = 476; } ); unicode = 204; }, { glyphname = Ihookabove; kernLeft = I; kernRight = I; lastChange = "2023-07-09 23:17:42 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (-54,212); ref = hookabovecomb; } ); width = 476; } ); unicode = 7880; }, { glyphname = Imacron; kernLeft = I; kernRight = I; lastChange = "2023-07-09 23:17:42 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (-63,200); ref = macroncomb; } ); width = 476; } ); unicode = 298; }, { glyphname = Iogonek; kernLeft = I; kernRight = I; lastChange = "2023-07-09 23:17:42 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (-116,0); ref = ogonekcomb; } ); width = 476; } ); unicode = 302; }, { glyphname = Itilde; kernLeft = I; kernRight = I; lastChange = "2023-07-09 23:17:42 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (-61,200); ref = tildecomb; } ); width = 476; } ); unicode = 296; }, { glyphname = J; kernLeft = J; kernRight = J; lastChange = "2023-07-09 23:17:46 +0000"; layers = ( { anchors = ( { name = top; pos = (368,720); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (357,-12,o), (413,70,o), (413,241,cs), (413,700,l), (325,700,l), (325,240,ls), (325,133,o), (298,72,o), (207,72,c), (142,72,o), (108,120,o), (94,200,c), (10,173,l), (28,56,o), (97,-12,o), (211,-12,c) ); } ); width = 495; }, { associatedMasterId = master01; layerId = "7D5A962D-9C0D-4DF1-88D2-B6BD600C45BA"; name = foreground; shapes = ( { closed = 1; nodes = ( (126,118,o), (160,85,o), (214,86,c), (307,86,o), (327,162,o), (327,229,cs), (327,700,l), (433,700,l), (433,230,ls), (433,134,o), (410,-12,o), (218,-12,c), (113,-12,o), (29,48,o), (10,164,c), (109,197,l) ); } ); width = 513; } ); unicode = 74; }, { glyphname = Jacute; kernLeft = J; kernRight = J; lastChange = "2023-07-09 23:17:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = J; }, { pos = (312,208); ref = acutecomb; } ); width = 495; } ); }, { glyphname = K; kernLeft = K; kernRight = K; lastChange = "2023-07-09 23:17:51 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,11); target = (0,10); type = Stem; }, { origin = (0,11); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (183,0,l), (183,242,l), (271,343,l), (488,0,l), (600,0,l), (332,404,l), (582,700,l), (475,700,l), (183,361,l), (183,700,l), (95,700,l), (95,0,l) ); } ); width = 615; }, { associatedMasterId = master01; layerId = "08AA5D7D-8610-445E-8CED-4DCF5FBF5B32"; name = foreground; shapes = ( { closed = 1; nodes = ( (94,0,l), (200,0,l), (200,248,l), (278,333,l), (515,0,l), (645,0,l), (349,408,l), (621,700,l), (491,700,l), (200,381,l), (200,700,l), (94,700,l) ); } ); width = 655; } ); unicode = 75; }, { glyphname = Kcommaaccent; kernLeft = K; kernRight = K; lastChange = "2023-07-09 23:17:51 +0000"; layers = ( { layerId = master01; shapes = ( { ref = K; }, { ref = commaaccentcomb; } ); width = 615; } ); unicode = 310; }, { glyphname = L; kernLeft = L; kernRight = L; lastChange = "2023-07-22 07:18:11 +0000"; layers = ( { anchors = ( { name = top; pos = (139,712); } ); hints = ( { horizontal = 1; origin = (0,5); target = (0,4); type = Stem; }, { origin = (0,5); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (506,0,l), (506,80,l), (183,80,l), (183,700,l), (95,700,l), (95,0,l) ); } ); width = 524; }, { associatedMasterId = master01; layerId = "709592C3-DB4C-47AA-8876-5A583F256C89"; name = foreground; shapes = ( { closed = 1; nodes = ( (513,96,l), (513,0,l), (90,0,l), (90,700,l), (196,700,l), (196,96,l) ); } ); width = 528; } ); unicode = 76; }, { glyphname = Lacute; kernLeft = L; kernRight = L; lastChange = "2023-07-09 23:17:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = L; }, { pos = (83,200); ref = acutecomb; } ); width = 524; } ); unicode = 313; }, { glyphname = Lcaron; kernLeft = L; kernRight = L; lastChange = "2023-07-09 23:17:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = L; }, { pos = (-46,0); ref = caroncomb.alt; } ); width = 524; } ); unicode = 317; }, { glyphname = Lcommaaccent; kernLeft = L; kernRight = L; lastChange = "2023-07-09 23:17:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = L; }, { ref = commaaccentcomb; } ); width = 524; } ); unicode = 315; }, { glyphname = Ldotbelow; kernLeft = L; kernRight = L; lastChange = "2023-07-09 23:17:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = L; }, { pos = (220,0); ref = dotbelowcomb; } ); width = 524; } ); unicode = 7734; }, { glyphname = Lmacronbelow; kernLeft = L; kernRight = L; lastChange = "2023-07-09 23:17:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = L; }, { pos = (-19,0); ref = macronbelowcomb; } ); width = 524; } ); unicode = 7738; }, { glyphname = Lslash; kernLeft = L; kernRight = L; lastChange = "2023-07-09 23:17:59 +0000"; layers = ( { anchors = ( { name = top; pos = (139,712); } ); hints = ( { horizontal = 1; origin = (0,5); target = (0,4); type = Stem; }, { origin = (0,5); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (506,0,l), (506,80,l), (183,80,l), (183,700,l), (95,700,l), (95,0,l) ); }, { closed = 1; nodes = ( (336,398,l), (301,462,l), (-15,294,l), (19,229,l) ); } ); width = 524; } ); unicode = 321; }, { glyphname = M; kernLeft = M; kernRight = M; lastChange = "2023-07-09 23:18:04 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,12); target = (0,11); type = Stem; }, { origin = (0,12); target = (0,0); type = Stem; }, { place = (672,88); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (183,0,l), (183,562,l), (389,62,l), (484,62,l), (685,562,l), (685,0,l), (773,0,l), (773,700,l), (651,700,l), (434,164,l), (217,700,l), (95,700,l), (95,0,l) ); } ); width = 868; }, { associatedMasterId = master01; layerId = "CA1B1FD6-294F-47BB-99AD-78D1808B8BBA"; name = foreground; shapes = ( { closed = 1; nodes = ( (200,0,l), (200,538,l), (368,137,l), (481,137,l), (649,535,l), (649,0,l), (755,0,l), (755,700,l), (607,700,l), (426,268,l), (243,700,l), (94,700,l), (94,0,l) ); } ); width = 849; } ); unicode = 77; }, { glyphname = N; kernLeft = N; kernRight = N; lastChange = "2023-07-09 23:18:10 +0000"; layers = ( { anchors = ( { name = bottom; pos = (367,0); }, { name = top; pos = (363,712); } ); hints = ( { horizontal = 1; origin = (0,9); target = (0,8); type = Stem; }, { origin = (0,9); target = (0,0); type = Stem; }, { origin = (0,6); target = (0,3); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (183,0,l), (183,578,l), (503,0,l), (618,0,l), (618,700,l), (530,700,l), (530,126,l), (223,700,l), (95,700,l), (95,0,l) ); } ); width = 713; }, { associatedMasterId = master01; layerId = "0588BE4C-E1DC-4D10-B2ED-A5B0C3E90302"; name = foreground; shapes = ( { closed = 1; nodes = ( (200,0,l), (200,542,l), (502,0,l), (635,0,l), (635,700,l), (529,700,l), (529,158,l), (240,700,l), (94,700,l), (94,0,l) ); } ); width = 729; } ); unicode = 78; }, { glyphname = Nacute; kernLeft = N; kernRight = N; lastChange = "2023-07-09 23:18:10 +0000"; layers = ( { layerId = master01; shapes = ( { ref = N; }, { pos = (307,200); ref = acutecomb; } ); width = 713; } ); unicode = 323; }, { glyphname = Ncaron; kernLeft = N; kernRight = N; lastChange = "2023-07-09 23:18:10 +0000"; layers = ( { layerId = master01; shapes = ( { ref = N; }, { pos = (150,200); ref = caroncomb; } ); width = 713; } ); unicode = 327; }, { glyphname = Ncommaaccent; kernLeft = N; kernRight = N; lastChange = "2023-07-09 23:18:10 +0000"; layers = ( { layerId = master01; shapes = ( { ref = N; }, { pos = (61,12); ref = commaaccentcomb; } ); width = 713; } ); unicode = 325; }, { glyphname = Ndotbelow; kernLeft = N; kernRight = N; lastChange = "2023-07-09 23:18:10 +0000"; layers = ( { layerId = master01; shapes = ( { ref = N; }, { pos = (292,0); ref = dotbelowcomb; } ); width = 713; } ); unicode = 7750; }, { glyphname = Nmacronbelow; kernLeft = N; kernRight = N; lastChange = "2023-07-09 23:18:10 +0000"; layers = ( { layerId = master01; shapes = ( { ref = N; }, { pos = (52,12); ref = macronbelowcomb; } ); width = 713; } ); unicode = 7752; }, { glyphname = Ntilde; kernLeft = N; kernRight = N; lastChange = "2023-07-09 23:18:10 +0000"; layers = ( { layerId = master01; shapes = ( { ref = N; }, { pos = (64,200); ref = tildecomb; } ); width = 713; } ); unicode = 209; }, { glyphname = Eng; kernLeft = N; kernRight = N; lastChange = "2023-07-09 23:18:10 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,8); target = (0,7); type = Stem; }, { origin = (0,8); target = (0,9); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (571,-188,o), (618,-137,o), (618,-44,cs), (618,700,l), (530,700,l), (530,193,l), (223,700,l), (95,700,l), (95,0,l), (183,0,l), (183,578,l), (530,26,l), (530,-43,ls), (530,-97,o), (502,-116,o), (453,-116,cs), (440,-116,o), (422,-115,o), (406,-112,c), (406,-180,l), (423,-185,o), (446,-188,o), (462,-188,cs) ); } ); width = 713; } ); unicode = 330; }, { glyphname = O; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { anchors = ( { name = top; pos = (372,721); } ); hints = ( { horizontal = 1; origin = (0,11); target = (1,11); type = Stem; }, { horizontal = 1; origin = (1,5); target = (0,5); type = Stem; }, { origin = (0,8); target = (1,2); type = Stem; }, { origin = (1,8); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (596,-11,o), (689,158,o), (689,351,cs), (689,544,o), (596,713,o), (372,713,cs), (148,713,o), (55,544,o), (55,351,cs), (55,158,o), (148,-11,o), (372,-11,cs) ); }, { closed = 1; nodes = ( (225,69,o), (147,196,o), (147,351,cs), (147,506,o), (225,633,o), (372,633,cs), (529,633,o), (597,506,o), (597,351,cs), (597,196,o), (529,69,o), (372,69,cs) ); } ); width = 744; }, { associatedMasterId = master01; layerId = "1E35F290-6AA7-4BE9-AB09-67F845E701DA"; name = foreground; shapes = ( { closed = 1; nodes = ( (155,-13,o), (50,171,o), (50,355,cs), (50,548,o), (156,713,o), (386,713,c), (616,713,o), (722,548,o), (722,355,cs), (722,171,o), (617,-13,o), (386,-13,c) ); }, { closed = 1; nodes = ( (252,617,o), (162,512,o), (162,357,cs), (162,194,o), (248,83,o), (386,83,c), (524,83,o), (610,194,o), (610,357,cs), (610,512,o), (520,617,o), (386,617,c) ); } ); width = 772; } ); unicode = 79; }, { glyphname = Oacute; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (316,209); ref = acutecomb; } ); width = 744; } ); unicode = 211; }, { glyphname = Ocircumflex; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (161,209); ref = circumflexcomb; } ); width = 744; } ); unicode = 212; }, { glyphname = Ocircumflexacute; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (160,209); ref = circumflexcomb_acutecomb; } ); width = 744; } ); unicode = 7888; }, { glyphname = Ocircumflexdotbelow; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (298,0); ref = dotbelowcomb; }, { pos = (161,209); ref = circumflexcomb; } ); width = 744; } ); unicode = 7896; }, { glyphname = Ocircumflexgrave; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (161,209); ref = circumflexcomb_gravecomb; } ); width = 744; } ); unicode = 7890; }, { glyphname = Ocircumflexhookabove; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (161,209); ref = circumflexcomb_hookabovecomb; } ); width = 744; } ); unicode = 7892; }, { glyphname = Ocircumflextilde; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (161,209); ref = circumflexcomb_tildecomb; } ); width = 744; } ); unicode = 7894; }, { glyphname = Odieresis; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (211,209); ref = dieresiscomb; } ); width = 744; } ); unicode = 214; }, { glyphname = Odotbelow; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (298,0); ref = dotbelowcomb; } ); width = 744; } ); unicode = 7884; }, { glyphname = Ograve; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (194,209); ref = gravecomb; } ); width = 744; } ); unicode = 210; }, { glyphname = Ohookabove; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (80,221); ref = hookabovecomb; } ); width = 744; } ); unicode = 7886; }, { glyphname = Ohorn; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (633,641,o), (640,762,o), (620,824,c), (533,818,l), (545,774,o), (548,709,o), (471,707,cs), (399,704,o), (383,713,o), (307,713,c), (336,674,l), (367,674,o), (372,641,o), (498,641,cs) ); }, { pos = (-71,0); ref = O; } ); width = 600; } ); unicode = 416; }, { glyphname = Ohornacute; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Ohorn; }, { pos = (245,209); ref = acutecomb; } ); width = 600; } ); unicode = 7898; }, { glyphname = Ohorndotbelow; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Ohorn; }, { pos = (228,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7906; }, { glyphname = Ohorngrave; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Ohorn; }, { pos = (123,209); ref = gravecomb; } ); width = 600; } ); unicode = 7900; }, { glyphname = Ohornhookabove; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Ohorn; }, { pos = (9,221); ref = hookabovecomb; } ); width = 600; } ); unicode = 7902; }, { glyphname = Ohorntilde; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Ohorn; }, { pos = (2,209); ref = tildecomb; } ); width = 600; } ); unicode = 7904; }, { glyphname = Ohungarumlaut; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (119,209); ref = hungarumlautcomb; } ); width = 744; } ); unicode = 336; }, { glyphname = Omacron; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (71,209); ref = macroncomb; } ); width = 744; } ); unicode = 332; }, { glyphname = Oslash; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (683,688,l), (626,734,l), (53,12,l), (107,-36,l) ); }, { ref = O; } ); width = 744; } ); unicode = 216; }, { glyphname = Otilde; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (73,209); ref = tildecomb; } ); width = 744; } ); unicode = 213; }, { glyphname = OE; kernLeft = O; kernRight = E; lastChange = "2023-07-09 23:18:24 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (591,-11,o), (679,158,o), (679,351,cs), (679,544,o), (591,713,o), (367,713,cs), (148,713,o), (55,544,o), (55,351,cs), (55,158,o), (143,-11,o), (367,-11,cs) ); }, { closed = 1; nodes = ( (220,69,o), (147,196,o), (147,351,cs), (147,506,o), (220,633,o), (367,633,cs), (524,633,o), (587,506,o), (587,351,cs), (587,196,o), (524,69,o), (367,69,cs) ); }, { closed = 1; nodes = ( (1011,0,l), (1011,80,l), (677,80,l), (677,320,l), (950,320,l), (950,400,l), (677,400,l), (677,620,l), (1011,620,l), (1011,700,l), (589,700,l), (589,0,l) ); } ); width = 1069; } ); unicode = 338; }, { glyphname = P; kernLeft = P; kernRight = P; lastChange = "2023-07-09 23:18:30 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,1); target = (1,8); type = Stem; }, { horizontal = 1; origin = (1,0); target = (0,9); type = Stem; }, { origin = (0,10); target = (1,8); type = Stem; }, { origin = (1,4); target = (0,5); type = Stem; }, { origin = (0,10); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (185,-1,l), (185,252,l), (344,252,l), (485,252,o), (567,342,o), (567,471,cs), (567,615,o), (476,701,o), (346,701,cs), (95,701,l), (95,-1,l) ); }, { closed = 1; nodes = ( (183,621,l), (344,621,ls), (417,621,o), (477,573,o), (477,473,cs), (477,376,o), (417,332,o), (343,332,cs), (183,332,l) ); } ); width = 602; }, { associatedMasterId = master01; layerId = "7FCCACBF-61D8-41EB-96D9-CCFCE935C285"; name = foreground; shapes = ( { closed = 1; nodes = ( (335,614,ls), (408,614,o), (463,573,o), (463,473,cs), (463,376,o), (408,343,o), (334,343,cs), (200,343,l), (200,614,l) ); }, { closed = 1; nodes = ( (491,252,o), (573,342,o), (573,471,cs), (573,615,o), (482,701,o), (352,701,cs), (94,701,l), (94,-1,l), (202,-1,l), (202,252,l), (350,252,l) ); } ); width = 603; } ); unicode = 80; }, { glyphname = Thorn; kernLeft = P; kernRight = P; lastChange = "2023-07-09 23:18:30 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,1); target = (1,8); type = Stem; }, { horizontal = 1; origin = (1,0); target = (0,9); type = Stem; }, { origin = (0,10); target = (1,8); type = Stem; }, { origin = (1,4); target = (0,5); type = Stem; }, { origin = (0,10); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (185,-1,l), (185,164,l), (307,164,l), (459,164,o), (530,234,o), (530,358,cs), (530,487,o), (459,553,o), (309,553,cs), (95,553,l), (95,-1,l) ); }, { closed = 1; nodes = ( (183,473,l), (307,473,ls), (392,473,o), (440,445,o), (440,360,cs), (440,263,o), (392,244,o), (306,244,cs), (183,244,l) ); }, { closed = 1; nodes = ( (183,464,l), (183,700,l), (95,700,l), (95,464,l) ); } ); width = 565; } ); unicode = 222; }, { glyphname = Q; kernLeft = Q; kernRight = Q; lastChange = "2023-07-09 23:18:35 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (596,-11,o), (689,158,o), (689,351,cs), (689,544,o), (596,713,o), (372,713,cs), (148,713,o), (55,544,o), (55,351,cs), (55,158,o), (148,-11,o), (372,-11,cs) ); }, { closed = 1; nodes = ( (702,37,l), (492,264,l), (438,217,l), (437,216,o), (646,-8,o), (646,-12,c) ); }, { closed = 1; nodes = ( (215,69,o), (147,196,o), (147,351,cs), (147,506,o), (215,633,o), (372,633,cs), (529,633,o), (597,506,o), (597,351,cs), (597,196,o), (529,69,o), (372,69,cs) ); } ); width = 752; }, { associatedMasterId = master01; layerId = "EFBC5A6F-D367-4A7A-A5FC-DD2D16B712CA"; name = foreground; shapes = ( { closed = 1; nodes = ( (410,270,l), (486,340,l), (758,54,l), (681,-12,l) ); }, { closed = 1; nodes = ( (155,-13,o), (50,171,o), (50,355,cs), (50,548,o), (156,713,o), (386,713,c), (616,713,o), (722,548,o), (722,355,cs), (722,171,o), (617,-13,o), (386,-13,c) ); }, { closed = 1; nodes = ( (252,617,o), (162,512,o), (162,357,cs), (162,194,o), (248,83,o), (386,83,c), (524,83,o), (610,194,o), (610,357,cs), (610,512,o), (520,617,o), (386,617,c) ); } ); width = 817; } ); unicode = 81; }, { glyphname = R; kernLeft = R; kernRight = R; lastChange = "2023-07-09 23:18:41 +0000"; layers = ( { anchors = ( { name = top; pos = (309,720); } ); hints = ( { horizontal = 1; origin = (0,1); target = (1,8); type = Stem; }, { horizontal = 1; origin = (0,12); target = (1,0); type = Stem; }, { origin = (0,13); target = (1,8); type = Stem; }, { origin = (1,4); target = (0,8); type = Stem; }, { origin = (0,13); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (185,0,l), (185,292,l), (336,292,l), (500,0,l), (604,0,l), (426,306,l), (520,340,o), (565,421,o), (565,498,cs), (565,588,o), (515,700,o), (348,700,cs), (95,700,l), (95,0,l) ); }, { closed = 1; nodes = ( (183,620,l), (349,620,ls), (423,620,o), (475,561,o), (475,498,c), (475,427,o), (421,372,o), (348,372,cs), (183,372,l) ); } ); width = 646; }, { associatedMasterId = master01; layerId = "AC853CD9-4D5C-4A9A-82EA-746798F3E6E3"; name = foreground; shapes = ( { closed = 1; nodes = ( (346,606,ls), (420,606,o), (463,561,o), (463,498,c), (463,427,o), (418,386,o), (345,386,cs), (200,386,l), (200,606,l) ); }, { closed = 1; nodes = ( (487,0,l), (612,0,l), (434,306,l), (528,340,o), (573,421,o), (573,498,cs), (573,588,o), (523,700,o), (356,700,cs), (94,700,l), (94,0,l), (202,0,l), (202,292,l), (323,292,l) ); } ); width = 652; } ); unicode = 82; }, { glyphname = Racute; kernLeft = R; kernRight = R; lastChange = "2023-07-09 23:18:48 +0000"; layers = ( { layerId = master01; shapes = ( { ref = R; }, { pos = (253,208); ref = acutecomb; } ); width = 646; } ); unicode = 340; }, { glyphname = Rcaron; kernLeft = R; kernRight = R; lastChange = "2023-07-09 23:18:48 +0000"; layers = ( { layerId = master01; shapes = ( { ref = R; }, { pos = (96,208); ref = caroncomb; } ); width = 646; } ); unicode = 344; }, { glyphname = Rcommaaccent; kernLeft = R; kernRight = R; lastChange = "2023-07-09 23:18:48 +0000"; layers = ( { layerId = master01; shapes = ( { ref = R; }, { ref = commaaccentcomb; } ); width = 646; } ); unicode = 342; }, { glyphname = Rmacronbelow; kernLeft = R; kernRight = R; lastChange = "2023-07-09 23:18:41 +0000"; layers = ( { layerId = master01; shapes = ( { ref = R; }, { pos = (27,0); ref = macronbelowcomb; } ); width = 646; } ); unicode = 7774; }, { glyphname = S; kernLeft = S; kernRight = S; lastChange = "2023-07-09 23:18:57 +0000"; layers = ( { anchors = ( { name = bottom; pos = (316,-12); }, { name = top; pos = (314,720); } ); hints = ( { horizontal = 1; origin = (0,31); target = (0,24); type = Stem; }, { horizontal = 1; origin = (0,15); target = (0,8); type = Stem; }, { origin = (0,18); target = (0,5); type = Stem; }, { origin = (0,21); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (461,-12,o), (564,58,o), (564,195,c), (564,462,o), (162,336,o), (162,521,cs), (162,591,o), (231,632,o), (306,632,cs), (406,632,o), (454,572,o), (464,513,c), (557,513,l), (552,603,o), (466,712,o), (313,712,c), (148,712,o), (74,618,o), (74,516,c), (74,240,o), (476,375,o), (476,186,c), (477,114,o), (404,68,o), (316,68,c), (222,70,o), (161,129,o), (147,214,c), (50,214,l), (63,99,o), (141,-12,o), (316,-12,c) ); } ); width = 621; }, { associatedMasterId = master01; layerId = "917E4443-A1CA-4121-BF2B-9D5AF53FD226"; name = foreground; shapes = ( { closed = 1; nodes = ( (271,419,o), (184,433,o), (184,521,cs), (184,591,o), (247,623,o), (322,623,cs), (422,623,o), (473,572,o), (483,513,c), (585,513,l), (580,603,o), (502,712,o), (329,712,c), (164,712,o), (82,618,o), (82,516,c), (82,368,o), (176,334,o), (286,313,c), (397,296,o), (492,287,o), (492,186,c), (493,114,o), (422,79,o), (334,79,c), (240,81,o), (175,129,o), (161,214,c), (58,214,l), (71,99,o), (159,-12,o), (334,-12,c), (479,-12,o), (592,58,o), (592,195,c), (592,340,o), (493,376,o), (364,401,c) ); } ); width = 643; }, { associatedMasterId = master01; layerId = "C07C9857-C18C-48E6-9123-EFA8357277D3"; name = "8 Jul 21, 13:25"; shapes = ( { closed = 1; nodes = ( (271,419,o), (184,433,o), (184,521,cs), (184,591,o), (247,623,o), (322,623,cs), (422,623,o), (473,572,o), (483,513,c), (585,513,l), (580,603,o), (502,712,o), (329,712,c), (164,712,o), (82,618,o), (82,516,c), (82,368,o), (176,334,o), (286,313,c), (397,296,o), (492,287,o), (492,186,c), (493,114,o), (422,79,o), (334,79,c), (240,81,o), (175,129,o), (161,214,c), (58,214,l), (71,99,o), (159,-12,o), (334,-12,c), (479,-12,o), (592,58,o), (592,195,c), (592,340,o), (493,376,o), (364,401,c) ); }, { closed = 1; nodes = ( (271,419,o), (184,433,o), (184,521,cs), (184,591,o), (247,623,o), (322,623,cs), (422,623,o), (473,572,o), (483,513,c), (585,513,l), (580,603,o), (502,712,o), (329,712,c), (164,712,o), (82,618,o), (82,516,c), (82,368,o), (176,334,o), (286,313,c), (397,296,o), (492,287,o), (492,186,c), (493,114,o), (422,79,o), (334,79,c), (240,81,o), (175,129,o), (161,214,c), (58,214,l), (71,99,o), (159,-12,o), (334,-12,c), (479,-12,o), (592,58,o), (592,195,c), (592,340,o), (493,376,o), (364,401,c) ); } ); width = 643; }, { anchors = ( { name = top; pos = (311,720); } ); associatedMasterId = master01; hints = ( { horizontal = 1; origin = (0,31); target = (0,24); type = Stem; }, { horizontal = 1; origin = (0,12); target = (0,5); type = Stem; }, { origin = (0,15); target = (0,2); type = Stem; }, { origin = (0,21); target = (0,34); type = Stem; } ); layerId = "AA6848CB-AEE8-43E1-A86C-A0496DF06434"; name = "1 Oct 21, 07:21"; shapes = ( { closed = 1; nodes = ( (253,413,o), (162,433,o), (162,521,cs), (162,591,o), (231,632,o), (306,632,cs), (406,632,o), (451,572,o), (461,513,c), (557,513,l), (552,603,o), (486,712,o), (313,712,c), (148,712,o), (74,618,o), (74,516,c), (74,380,o), (168,338,o), (268,317,c), (379,291,o), (476,287,o), (476,186,c), (477,114,o), (404,68,o), (316,68,c), (222,70,o), (161,129,o), (147,214,c), (50,214,l), (63,99,o), (141,-12,o), (316,-12,c), (461,-12,o), (564,58,o), (564,195,c), (564,340,o), (465,370,o), (346,395,c) ); }, { closed = 1; nodes = ( (253,413,o), (162,433,o), (162,521,cs), (162,591,o), (231,632,o), (306,632,cs), (406,632,o), (451,572,o), (461,513,c), (557,513,l), (552,603,o), (486,712,o), (313,712,c), (148,712,o), (74,618,o), (74,516,c), (74,380,o), (168,338,o), (268,317,c), (379,291,o), (476,287,o), (476,186,c), (477,114,o), (404,68,o), (316,68,c), (222,70,o), (161,129,o), (147,214,c), (50,214,l), (63,99,o), (141,-12,o), (316,-12,c), (461,-12,o), (564,58,o), (564,195,c), (564,340,o), (465,370,o), (346,395,c) ); } ); visible = 1; width = 621; } ); unicode = 83; }, { glyphname = Sacute; kernLeft = S; kernRight = S; lastChange = "2023-07-09 23:18:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = S; }, { pos = (258,208); ref = acutecomb; } ); width = 621; } ); unicode = 346; }, { glyphname = Scaron; kernLeft = S; kernRight = S; lastChange = "2023-07-09 23:18:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = S; }, { pos = (101,208); ref = caroncomb; } ); width = 621; } ); unicode = 352; }, { glyphname = Scedilla; kernLeft = S; kernRight = S; lastChange = "2023-07-09 23:18:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = S; }, { pos = (26,-14); ref = cedillacomb; } ); width = 621; } ); unicode = 350; }, { glyphname = Scommaaccent; kernLeft = S; kernRight = S; lastChange = "2023-07-09 23:18:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = S; }, { pos = (10,0); ref = commaaccentcomb; } ); width = 621; } ); unicode = 536; }, { glyphname = Germandbls; kernLeft = B; kernRight = B; lastChange = "2023-08-03 09:20:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (519,-12,o), (628,69,o), (628,199,cs), (628,300,o), (538,382,o), (413,382,c), (573,600,l), (548,662,o), (453,712,o), (345,712,cs), (181,712,o), (97,605,o), (97,416,c), (97,0,l), (185,0,l), (185,407,ls), (185,563,o), (255,631,o), (344,631,cs), (407,631,o), (450,612,o), (459,592,c), (308,382,l), (308,313,l), (402,313,ls), (462,313,o), (542,275,o), (542,203,cs), (542,128,o), (485,68,o), (406,68,cs), (366,68,o), (330,78,o), (302,98,c), (255,30,l), (297,2,o), (349,-12,o), (405,-12,cs) ); } ); width = 682; }, { associatedMasterId = master01; layerId = "F21A90D2-DE7B-4C42-8F88-BC0E7842DBD9"; name = "7 Jun 23, 15:00"; shapes = ( { closed = 1; nodes = ( (185,0,l), (97,0,l), (97,416,l), (97,601,o), (174,700,o), (329,700,cs), (437,700,o), (530,630,o), (555,568,c), (404,407,l), (559,407,o), (636,315,o), (636,199,cs), (636,60,o), (524,-12,o), (395,-12,cs), (339,-12,o), (287,2,o), (245,30,c), (292,96,l), (320,76,o), (356,68,o), (396,68,cs), (485,68,o), (550,119,o), (550,203,cs), (550,300,o), (480,338,o), (381,338,cs), (290,338,l), (290,407,l), (441,560,l), (432,580,o), (393,615,o), (330,615,cs), (218,615,o), (185,521,o), (185,407,cs) ); } ); width = 690; } ); unicode = 7838; }, { glyphname = T; kernLeft = T; kernRight = T; lastChange = "2023-08-03 12:23:18 +0000"; layers = ( { anchors = ( { name = bottom; pos = (247,0); }, { name = top; pos = (248,712); } ); hints = ( { horizontal = 1; origin = (0,4); target = (0,5); type = Stem; }, { origin = (0,7); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (293,0,l), (293,620,l), (483,620,l), (483,700,l), (15,700,l), (15,620,l), (205,620,l), (205,0,l) ); } ); width = 499; }, { associatedMasterId = master01; layerId = "B6AB5140-E37C-42F2-A30F-777986DD981C"; name = foreground; shapes = ( { closed = 1; nodes = ( (318,608,l), (517,608,l), (517,700,l), (5,700,l), (5,608,l), (212,608,l), (212,0,l), (318,0,l) ); } ); width = 522; } ); unicode = 84; }, { glyphname = Tcaron; kernLeft = T; kernRight = T; lastChange = "2023-07-09 23:28:14 +0000"; layers = ( { layerId = master01; shapes = ( { ref = T; }, { pos = (35,200); ref = caroncomb; } ); width = 499; } ); unicode = 356; }, { glyphname = Tcedilla; kernLeft = T; kernRight = T; lastChange = "2023-07-09 23:28:14 +0000"; layers = ( { layerId = master01; shapes = ( { ref = T; }, { pos = (-43,-2); ref = cedillacomb; } ); width = 499; } ); unicode = 354; }, { glyphname = Tcommaaccent; kernLeft = T; kernRight = T; lastChange = "2023-07-09 23:28:14 +0000"; layers = ( { layerId = master01; shapes = ( { ref = T; }, { pos = (-59,12); ref = commaaccentcomb; } ); width = 499; } ); unicode = 538; }, { glyphname = Tdotbelow; kernLeft = T; kernRight = T; lastChange = "2023-07-09 23:28:14 +0000"; layers = ( { layerId = master01; shapes = ( { ref = T; }, { pos = (172,0); ref = dotbelowcomb; } ); width = 499; } ); unicode = 7788; }, { glyphname = Tmacronbelow; kernLeft = T; kernRight = T; lastChange = "2023-07-09 23:28:14 +0000"; layers = ( { layerId = master01; shapes = ( { ref = T; }, { pos = (-68,12); ref = macronbelowcomb; } ); width = 499; } ); unicode = 7790; }, { glyphname = U; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { anchors = ( { name = top; pos = (341,712); } ); hints = ( { horizontal = 1; origin = (0,17); target = (0,9); type = Stem; }, { origin = (0,14); target = (0,11); type = Stem; }, { place = (507,113); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (507,-12,o), (592,98,o), (592,275,cs), (592,701,l), (504,701,l), (504,275,ls), (504,139,o), (430,73,o), (337,73,cs), (240,73,o), (170,139,o), (170,275,cs), (170,701,l), (82,701,l), (82,275,ls), (82,98,o), (178,-12,o), (341,-12,cs) ); } ); width = 674; }, { associatedMasterId = master01; layerId = "5FB1FA1A-EB05-444A-B8AE-D1ED2DC196B0"; name = foreground; shapes = ( { closed = 1; nodes = ( (258,91,o), (181,142,o), (181,278,cs), (181,701,l), (70,701,l), (70,278,ls), (70,101,o), (156,-12,o), (356,-12,c), (523,-12,o), (620,102,o), (620,280,cs), (620,700,l), (507,700,l), (507,279,ls), (507,142,o), (447,91,o), (352,91,c) ); } ); width = 690; } ); unicode = 85; }, { glyphname = Uacute; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (285,200); ref = acutecomb; } ); width = 674; } ); unicode = 218; }, { glyphname = Ubreve; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (34,200); ref = brevecomb; } ); width = 674; } ); unicode = 364; }, { glyphname = Ucircumflex; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (130,200); ref = circumflexcomb; } ); width = 674; } ); unicode = 219; }, { glyphname = Udieresis; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (180,200); ref = dieresiscomb; } ); width = 674; } ); unicode = 220; }, { glyphname = Udotbelow; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (265,0); ref = dotbelowcomb; } ); width = 674; } ); unicode = 7908; }, { glyphname = Ugrave; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (163,200); ref = gravecomb; } ); width = 674; } ); unicode = 217; }, { glyphname = Uhookabove; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (49,212); ref = hookabovecomb; } ); width = 674; } ); unicode = 7910; }, { glyphname = Uhorn; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (726,634,o), (733,755,o), (713,817,c), (626,811,l), (638,767,o), (641,702,o), (564,700,c), (586,634,l) ); }, { pos = (0,-1); ref = U; } ); width = 674; } ); unicode = 431; }, { glyphname = Uhornacute; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Uhorn; }, { pos = (285,199); ref = acutecomb; } ); width = 674; } ); unicode = 7912; }, { glyphname = Uhorndotbelow; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Uhorn; }, { pos = (265,0); ref = dotbelowcomb; } ); width = 674; } ); unicode = 7920; }, { glyphname = Uhorngrave; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Uhorn; }, { pos = (163,199); ref = gravecomb; } ); width = 674; } ); unicode = 7914; }, { glyphname = Uhornhookabove; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Uhorn; }, { pos = (49,211); ref = hookabovecomb; } ); width = 674; } ); unicode = 7916; }, { glyphname = Uhorntilde; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Uhorn; }, { pos = (42,199); ref = tildecomb; } ); width = 674; } ); unicode = 7918; }, { glyphname = Uhungarumlaut; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (88,200); ref = hungarumlautcomb; } ); width = 674; } ); unicode = 368; }, { glyphname = Umacron; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (40,200); ref = macroncomb; } ); width = 674; } ); unicode = 362; }, { glyphname = Uogonek; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { ref = ogonekcomb; } ); width = 674; } ); unicode = 370; }, { glyphname = Uring; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (223,200); ref = ringcomb; } ); width = 674; } ); unicode = 366; }, { glyphname = Utilde; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (42,200); ref = tildecomb; } ); width = 674; } ); unicode = 360; }, { glyphname = V; kernLeft = V; kernRight = V; lastChange = "2023-08-03 09:35:42 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (337,0,l), (92,700,l), (8,700,l), (253,0,l) ); }, { closed = 1; nodes = ( (338,0,l), (582,700,l), (498,700,l), (254,0,l) ); } ); width = 590; }, { associatedMasterId = master01; layerId = "0FF30111-47E3-4533-B04A-7E0F4FCC8B75"; name = foreground; shapes = ( { closed = 1; nodes = ( (246,0,l), (356,0,l), (120,701,l), (10,701,l) ); }, { closed = 1; nodes = ( (515,701,l), (279,0,l), (385,0,l), (621,701,l) ); } ); width = 631; } ); unicode = 86; }, { glyphname = W; kernLeft = W; kernRight = W; lastChange = "2023-08-03 09:35:49 +0000"; layers = ( { anchors = ( { name = top; pos = (463,712); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (293,0,l), (463,569,l), (633,0,l), (748,0,l), (898,700,l), (805,700,l), (688,116,l), (517,700,l), (409,700,l), (238,116,l), (121,700,l), (28,700,l), (178,0,l) ); } ); width = 926; }, { associatedMasterId = master01; layerId = "D6814062-5E09-4D1C-9A77-973156DD01C6"; name = foreground; shapes = ( { closed = 1; nodes = ( (347,563,l), (209,162,l), (127,700,l), (24,700,l), (137,0,l), (260,0,l), (398,432,l), (536,0,l), (659,0,l), (772,700,l), (671,700,l), (591,162,l), (451,563,l) ); } ); width = 796; } ); unicode = 87; }, { glyphname = Wacute; kernLeft = W; kernRight = W; lastChange = "2023-07-09 23:19:27 +0000"; layers = ( { layerId = master01; shapes = ( { ref = W; }, { pos = (407,200); ref = acutecomb; } ); width = 926; } ); unicode = 7810; }, { glyphname = Wcircumflex; kernLeft = W; kernRight = W; lastChange = "2023-07-09 23:19:27 +0000"; layers = ( { layerId = master01; shapes = ( { ref = W; }, { pos = (252,200); ref = circumflexcomb; } ); width = 926; } ); unicode = 372; }, { glyphname = Wdieresis; kernLeft = W; kernRight = W; lastChange = "2023-07-09 23:19:27 +0000"; layers = ( { layerId = master01; shapes = ( { ref = W; }, { pos = (302,200); ref = dieresiscomb; } ); width = 926; } ); unicode = 7812; }, { glyphname = Wgrave; kernLeft = W; kernRight = W; lastChange = "2023-07-09 23:19:27 +0000"; layers = ( { layerId = master01; shapes = ( { ref = W; }, { pos = (285,200); ref = gravecomb; } ); width = 926; } ); unicode = 7808; }, { glyphname = X; kernLeft = X; kernRight = X; lastChange = "2023-07-09 23:19:34 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (557,0,l), (128,700,l), (27,700,l), (457,0,l) ); }, { closed = 1; nodes = ( (116,0,l), (546,700,l), (446,700,l), (17,0,l) ); } ); width = 574; }, { associatedMasterId = master01; layerId = "246BAF68-6253-4F28-9414-8F7B7433EFF2"; name = foreground; shapes = ( { closed = 1; nodes = ( (620,0,l), (149,700,l), (22,700,l), (494,0,l) ); }, { closed = 1; nodes = ( (620,700,l), (497,700,l), (26,0,l), (148,0,l) ); } ); width = 649; } ); unicode = 88; }, { glyphname = Y; kernLeft = Y; kernRight = Y; lastChange = "2023-08-03 12:32:08 +0000"; layers = ( { anchors = ( { name = top; pos = (299,712); } ); hints = ( { horizontal = 1; origin = (0,8); target = (0,6); type = Stem; }, { origin = (0,8); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (339,0,l), (336,309,l), (577,700,l), (484,700,l), (293,390,l), (105,700,l), (5,700,l), (254,309,l), (251,0,l) ); } ); width = 582; }, { associatedMasterId = master01; layerId = "8B946DEB-BFC8-4419-BD29-DE4D27CA2D95"; name = foreground; shapes = ( { closed = 1; nodes = ( (345,0,l), (345,309,l), (580,700,l), (462,700,l), (296,404,l), (127,700,l), (2,700,l), (239,309,l), (239,0,l) ); } ); width = 582; } ); unicode = 89; }, { glyphname = Yacute; kernLeft = Y; kernRight = Y; lastChange = "2023-07-09 23:19:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Y; }, { pos = (243,200); ref = acutecomb; } ); width = 582; } ); unicode = 221; }, { glyphname = Ycircumflex; kernLeft = Y; kernRight = Y; lastChange = "2023-07-09 23:19:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Y; }, { pos = (88,200); ref = circumflexcomb; } ); width = 582; } ); unicode = 374; }, { glyphname = Ydieresis; kernLeft = Y; kernRight = Y; lastChange = "2023-07-09 23:19:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Y; }, { pos = (138,200); ref = dieresiscomb; } ); width = 582; } ); unicode = 376; }, { glyphname = Ydotbelow; kernLeft = Y; kernRight = Y; lastChange = "2023-07-09 23:19:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Y; }, { pos = (218,0); ref = dotbelowcomb; } ); width = 582; } ); unicode = 7924; }, { glyphname = Ygrave; kernLeft = Y; kernRight = Y; lastChange = "2023-07-09 23:19:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Y; }, { pos = (121,200); ref = gravecomb; } ); width = 582; } ); unicode = 7922; }, { glyphname = Yhookabove; kernLeft = Y; kernRight = Y; lastChange = "2023-07-09 23:19:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Y; }, { pos = (7,212); ref = hookabovecomb; } ); width = 582; } ); unicode = 7926; }, { glyphname = Ytilde; kernLeft = Y; kernRight = Y; lastChange = "2023-07-09 23:19:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Y; }, { pos = (0,200); ref = tildecomb; } ); width = 582; } ); unicode = 7928; }, { glyphname = Z; kernLeft = Z; kernRight = Z; lastChange = "2023-07-09 23:19:52 +0000"; layers = ( { anchors = ( { name = top; pos = (280,712); } ); hints = ( { horizontal = 1; origin = (0,9); target = (0,2); type = Stem; }, { horizontal = 1; origin = (0,5); target = (0,6); type = Stem; }, { origin = (0,9); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (504,1,l), (504,81,l), (149,81,l), (504,618,l), (504,700,l), (45,700,l), (45,620,l), (400,620,l), (45,83,l), (45,1,l) ); } ); width = 554; }, { associatedMasterId = master01; layerId = "2E06CB95-C68F-4397-AF31-B6A751E83E1E"; name = foreground; shapes = ( { closed = 1; nodes = ( (529,1,l), (529,93,l), (162,93,l), (529,606,l), (529,700,l), (40,700,l), (40,608,l), (407,608,l), (40,95,l), (40,1,l) ); } ); width = 569; } ); unicode = 90; }, { glyphname = Zacute; kernLeft = Z; kernRight = Z; lastChange = "2023-07-09 23:19:52 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Z; }, { pos = (224,200); ref = acutecomb; } ); width = 554; } ); unicode = 377; }, { glyphname = Zcaron; kernLeft = Z; kernRight = Z; lastChange = "2023-07-09 23:19:52 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Z; }, { pos = (67,200); ref = caroncomb; } ); width = 554; } ); unicode = 381; }, { glyphname = Zdotaccent; kernLeft = Z; kernRight = Z; lastChange = "2023-07-09 23:19:52 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Z; }, { pos = (206,200); ref = dotaccentcomb; } ); width = 554; } ); unicode = 379; }, { glyphname = Lcommaaccent.loclMAH; kernLeft = L; kernRight = L; lastChange = "2023-07-09 23:19:56 +0000"; layers = ( { layerId = master01; shapes = ( { ref = L; }, { ref = cedillacomb; } ); width = 524; } ); }, { glyphname = Ncommaaccent.loclMAH; kernLeft = N; kernRight = N; lastChange = "2023-07-09 23:19:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = N; }, { pos = (57,-2); ref = commaaccentcomb.loclMAH; } ); width = 713; } ); }, { glyphname = a; kernLeft = a; kernRight = a; lastChange = "2023-08-03 09:38:36 +0000"; layers = ( { anchors = ( { name = bottom; pos = (275,-12); }, { name = ogonek; pos = (476,0); }, { name = top; pos = (299,516); } ); hints = ( { horizontal = 1; place = (-12,76); type = Stem; }, { horizontal = 1; place = (239,76); type = Stem; }, { horizontal = 1; place = (512,76); type = Stem; }, { horizontal = 1; place = (0,95); type = Stem; }, { place = (56,84); type = Stem; }, { place = (365,84); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (344,-12,o), (417,27,o), (438,96,c), (438,0,l), (521,0,l), (521,500,l), (441,500,l), (441,402,l), (420,457,o), (368,512,o), (280,512,cs), (149,512,o), (54,419,o), (54,250,cs), (54,86,o), (144,-12,o), (275,-12,cs) ); }, { closed = 1; nodes = ( (521,0,l), (438,0,l) ); }, { closed = 1; nodes = ( (186,64,o), (138,148,o), (138,252,cs), (138,356,o), (186,437,o), (284,437,cs), (383,437,o), (437,360,o), (437,250,cs), (437,148,o), (383,64,o), (287,64,cs) ); } ); width = 607; }, { associatedMasterId = master01; layerId = "3B5242A6-E9B9-4106-A318-25CEEEEB8629"; name = foreground; shapes = ( { closed = 1; nodes = ( (131,199,o), (196,247,o), (349,247,c), (349,226,ls), (349,127,o), (247,78,o), (195,78,cs), (152,78,o), (131,114,o), (131,148,cs) ); }, { closed = 1; nodes = ( (355,67,o), (377,0,o), (448,0,cs), (473,0,o), (496,6,o), (510,16,c), (510,95,l), (470,91,o), (447,107,o), (447,147,c), (447,340,ls), (447,414,o), (408,512,o), (257,512,cs), (115,512,o), (56,404,o), (56,404,cs), (132,355,l), (132,355,o), (167,425,o), (250,426,cs), (315,427,o), (347,388,o), (349,344,c), (349,328,l), (165,328,o), (40,262,o), (40,135,cs), (40,43,o), (103,-12,o), (192,-12,cs), (318,-12,o), (356,106,o), (356,106,c) ); } ); width = 550; } ); unicode = 97; }, { glyphname = aacute; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (243,4); ref = acutecomb; } ); width = 607; } ); unicode = 225; }, { glyphname = abreve; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (-8,4); ref = brevecomb; } ); width = 607; } ); unicode = 259; }, { glyphname = abreveacute; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (-8,4); ref = brevecomb_acutecomb; } ); width = 607; } ); unicode = 7855; }, { glyphname = abrevedotbelow; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (200,-12); ref = dotbelowcomb; }, { pos = (-8,4); ref = brevecomb; } ); width = 607; } ); unicode = 7863; }, { glyphname = abrevegrave; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (-8,4); ref = brevecomb_gravecomb; } ); width = 607; } ); unicode = 7857; }, { glyphname = abrevehookabove; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (-8,4); ref = brevecomb_hookabovecomb; } ); width = 607; } ); unicode = 7859; }, { glyphname = abrevetilde; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (-8,4); ref = brevecomb_tildecomb; } ); width = 607; } ); unicode = 7861; }, { glyphname = acircumflex; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (88,4); ref = circumflexcomb; } ); width = 607; } ); unicode = 226; }, { glyphname = acircumflexacute; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (87,4); ref = circumflexcomb_acutecomb; } ); width = 607; } ); unicode = 7845; }, { glyphname = acircumflexdotbelow; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (200,-12); ref = dotbelowcomb; }, { pos = (88,4); ref = circumflexcomb; } ); width = 607; } ); unicode = 7853; }, { glyphname = acircumflexgrave; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (88,4); ref = circumflexcomb_gravecomb; } ); width = 607; } ); unicode = 7847; }, { glyphname = acircumflexhookabove; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (88,4); ref = circumflexcomb_hookabovecomb; } ); width = 607; } ); unicode = 7849; }, { glyphname = acircumflextilde; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (88,4); ref = circumflexcomb_tildecomb; } ); width = 607; } ); unicode = 7851; }, { glyphname = adieresis; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (138,4); ref = dieresiscomb; } ); width = 607; } ); unicode = 228; }, { glyphname = adotbelow; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (200,-12); ref = dotbelowcomb; } ); width = 607; } ); unicode = 7841; }, { glyphname = agrave; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (121,4); ref = gravecomb; } ); width = 607; } ); unicode = 224; }, { glyphname = ahookabove; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (7,16); ref = hookabovecomb; } ); width = 607; } ); unicode = 7843; }, { glyphname = amacron; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (-2,4); ref = macroncomb; } ); width = 607; } ); unicode = 257; }, { glyphname = aogonek; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (120,0); ref = ogonekcomb; } ); width = 607; } ); unicode = 261; }, { glyphname = aring; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (181,4); ref = ringcomb; } ); width = 607; } ); unicode = 229; }, { glyphname = atilde; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (0,4); ref = tildecomb; } ); width = 607; } ); unicode = 227; }, { glyphname = ae; kernLeft = a; kernRight = e; lastChange = "2023-07-09 23:20:13 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (719,-13,o), (789,30,o), (830,113,c), (756,143,l), (728,92,o), (682,63,o), (622,63,c), (521,63,o), (476,141,o), (476,245,cs), (476,349,o), (521,436,o), (622,436,c), (713,436,o), (762,360,o), (762,304,c), (473,304,l), (473,233,l), (846,233,l), (846,261,l), (846,434,o), (745,512,o), (624,512,c), (498,512,o), (393,412,o), (393,248,cs), (393,87,o), (498,-13,o), (624,-13,c) ); }, { closed = 1; nodes = ( (170,64,o), (140,91,o), (140,142,cs), (140,223,o), (221,239,o), (393,239,c), (393,219,ls), (393,120,o), (283,64,o), (221,64,cs) ); }, { closed = 1; nodes = ( (345,-12,o), (422,113,o), (422,113,c), (441,155,o), (475,173,o), (477,340,cs), (478,429,o), (397,512,o), (279,512,cs), (113,512,o), (71,393,o), (71,393,c), (139,356,l), (139,356,o), (170,436,o), (272,436,cs), (340,436,o), (393,390,o), (393,336,cs), (393,305,l), (160,305,o), (56,262,o), (56,135,cs), (56,43,o), (119,-12,o), (200,-12,cs) ); } ); width = 896; } ); unicode = 230; }, { glyphname = b; kernLeft = l; kernRight = b; lastChange = "2023-08-03 11:59:44 +0000"; layers = ( { anchors = ( { name = bottom; pos = (334,-11); } ); hints = ( { horizontal = 1; origin = (0,16); target = (1,11); type = Stem; }, { horizontal = 1; origin = (0,5); target = (1,5); type = Stem; }, { horizontal = 1; origin = (0,11); target = (1,11); type = Stem; }, { origin = (0,11); target = (1,2); type = Stem; }, { origin = (1,8); target = (0,2); type = Stem; }, { origin = (0,11); target = (0,8); type = Stem; }, { origin = (0,11); target = (0,12); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (465,-12,o), (560,81,o), (560,250,cs), (560,414,o), (470,512,o), (339,512,cs), (270,512,o), (197,473,o), (176,404,c), (176,720,l), (92,720,l), (92,0,l), (173,0,l), (173,98,l), (194,43,o), (246,-12,o), (334,-12,cs) ); }, { closed = 1; nodes = ( (231,63,o), (177,140,o), (177,250,cs), (177,352,o), (231,435,o), (327,436,cs), (428,437,o), (476,352,o), (476,248,cs), (476,144,o), (428,63,o), (330,63,cs) ); } ); width = 614; }, { associatedMasterId = master01; hints = ( { horizontal = 1; origin = (1,11); target = (0,5); type = Stem; }, { horizontal = 1; origin = (1,5); target = (0,11); type = Stem; }, { horizontal = 1; origin = (1,11); target = (0,5); type = Stem; }, { origin = (1,8); target = (0,8); type = Stem; }, { origin = (0,2); target = (1,2); type = Stem; }, { origin = (1,8); target = (0,8); type = Stem; } ); layerId = "67A6802E-0ADA-4E35-B6DE-2FB806E7B19C"; name = "21 Jul 21, 11:33"; shapes = ( { closed = 1; nodes = ( (419,436,o), (473,339,o), (473,252,cs), (473,165,o), (421,64,o), (327,64,c), (231,64,o), (173,165,o), (173,252,cs), (173,339,o), (223,436,o), (321,436,c) ); }, { closed = 1; nodes = ( (460,-13,o), (576,81,o), (576,250,cs), (576,414,o), (465,512,o), (336,512,c), (207,512,o), (92,412,o), (92,248,cs), (92,79,o), (202,-13,o), (331,-13,c) ); } ); width = 613; } ); unicode = 98; }, { glyphname = c; kernLeft = c; kernRight = c; lastChange = "2023-07-09 23:20:23 +0000"; layers = ( { anchors = ( { name = bottom; pos = (292,-13); }, { name = top; pos = (292,521); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (378,-13,o), (455,35,o), (490,118,c), (414,148,l), (393,97,o), (350,63,o), (290,63,c), (189,63,o), (138,147,o), (138,251,cs), (138,355,o), (189,436,o), (290,436,c), (350,436,o), (393,402,o), (414,351,c), (490,381,l), (455,464,o), (380,512,o), (292,512,c), (166,512,o), (54,412,o), (54,248,cs), (54,87,o), (166,-13,o), (292,-13,c) ); } ); width = 536; }, { associatedMasterId = master01; layerId = "D5044F65-6BC5-444E-BECC-015FB8AF7D9F"; name = foreground; shapes = ( { closed = 1; nodes = ( (150,338,o), (200,429,o), (294,429,c), (356,429,o), (397,384,o), (413,331,c), (502,360,l), (479,465,o), (389,512,o), (293,512,c), (162,512,o), (50,421,o), (50,251,c), (50,81,o), (162,-12,o), (293,-12,c), (389,-12,o), (481,38,o), (506,147,c), (417,176,l), (401,123,o), (356,72,o), (294,72,c), (200,72,o), (150,164,o), (150,250,c) ); } ); width = 550; }, { associatedMasterId = master01; layerId = "5E179671-36B7-481B-ACDA-F3411599AAD9"; name = "22 Jul 21, 10:29"; shapes = ( { closed = 1; nodes = ( (54,87,o), (166,-13,o), (292,-13,c), (380,-13,o), (457,35,o), (492,118,c), (416,148,l), (395,97,o), (350,63,o), (290,63,c), (189,63,o), (137,147,o), (137,251,cs), (137,355,o), (189,436,o), (290,436,c), (350,436,o), (395,402,o), (416,351,c), (492,381,l), (457,464,o), (380,512,o), (292,512,c), (166,512,o), (54,412,o), (54,248,cs) ); } ); width = 536; } ); unicode = 99; }, { glyphname = cacute; kernLeft = c; kernRight = c; lastChange = "2023-07-09 23:20:23 +0000"; layers = ( { layerId = master01; shapes = ( { ref = c; }, { pos = (236,9); ref = acutecomb; } ); width = 536; } ); unicode = 263; }, { glyphname = ccaron; kernLeft = c; kernRight = c; lastChange = "2023-07-09 23:20:23 +0000"; layers = ( { layerId = master01; shapes = ( { ref = c; }, { pos = (79,9); ref = caroncomb; } ); width = 536; } ); unicode = 269; }, { glyphname = ccedilla; kernLeft = c; kernRight = c; lastChange = "2023-07-09 23:20:23 +0000"; layers = ( { layerId = master01; shapes = ( { ref = c; }, { pos = (2,-15); ref = cedillacomb; } ); width = 536; } ); unicode = 231; }, { glyphname = cdotaccent; kernLeft = c; kernRight = c; lastChange = "2023-07-09 23:20:23 +0000"; layers = ( { layerId = master01; shapes = ( { ref = c; }, { pos = (218,9); ref = dotaccentcomb; } ); width = 536; } ); unicode = 267; }, { glyphname = d; kernLeft = d; kernRight = d; lastChange = "2023-07-09 23:20:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (280,-12); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (368,-12,o), (420,43,o), (442,98,c), (442,27,o), (481,-1,o), (533,-1,cs), (558,-1,o), (571,3,o), (585,11,c), (585,79,l), (536,68,o), (522,86,o), (522,126,cs), (522,712,l), (438,712,l), (438,404,l), (417,473,o), (344,512,o), (275,512,cs), (144,512,o), (54,414,o), (54,250,cs), (54,81,o), (149,-12,o), (280,-12,cs) ); }, { closed = 1; nodes = ( (186,63,o), (138,144,o), (138,248,cs), (138,352,o), (186,436,o), (287,436,cs), (383,436,o), (437,352,o), (437,250,cs), (437,140,o), (383,63,o), (284,63,cs) ); } ); width = 627; }, { associatedMasterId = master01; layerId = "7399E59F-C8CF-444F-A145-6D2B7F7CF480"; name = foreground; shapes = ( { closed = 1; nodes = ( (397,426,o), (440,339,o), (440,252,cs), (440,165,o), (391,75,o), (299,75,c), (205,75,o), (156,165,o), (156,252,cs), (156,339,o), (203,426,o), (299,426,c) ); }, { closed = 1; nodes = ( (443,62,o), (477,2,o), (536,1,cs), (578,0,o), (614,18,o), (614,18,c), (614,18,o), (614,101,o), (614,101,cs), (564,90,o), (537,105,o), (537,150,c), (537,720,l), (437,720,l), (437,422,l), (414,475,o), (343,512,o), (274,512,c), (141,512,o), (54,397,o), (54,250,cs), (54,123,o), (122,-12,o), (274,-11,c), (349,-11,o), (419,25,o), (444,101,c) ); } ); width = 664; } ); unicode = 100; }, { glyphname = eth; kernLeft = d; kernRight = d; lastChange = "2023-07-09 23:20:28 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (402,-12,o), (511,78,o), (515,250,cs), (518,388,o), (488,617,o), (182,738,c), (142,677,l), (269,636,o), (376,526,o), (390,470,c), (364,507,o), (292,512,o), (282,512,cs), (162,512,o), (54,422,o), (54,250,cs), (54,78,o), (162,-12,o), (282,-12,cs) ); }, { closed = 1; nodes = ( (186,64,o), (135,133,o), (135,250,cs), (135,367,o), (186,436,o), (282,436,cs), (379,436,o), (433,367,o), (433,250,cs), (433,133,o), (379,64,o), (282,64,cs) ); }, { closed = 1; nodes = ( (452,644,l), (431,701,l), (132,597,l), (154,540,l) ); } ); width = 569; } ); unicode = 240; }, { glyphname = dcaron; kernLeft = d; kernRight = lcaron; lastChange = "2023-08-03 12:00:20 +0000"; layers = ( { layerId = master01; shapes = ( { ref = d; }, { pos = (290,0); ref = caroncomb.alt; } ); width = 627; } ); unicode = 271; }, { glyphname = dcroat; kernLeft = d; kernRight = d; lastChange = "2023-07-09 23:20:28 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (587,582,l), (587,650,l), (294,650,l), (294,582,l) ); }, { ref = d; } ); width = 627; } ); unicode = 273; }, { glyphname = ddotbelow; kernLeft = d; kernRight = d; lastChange = "2023-07-09 23:20:28 +0000"; layers = ( { layerId = master01; shapes = ( { ref = d; }, { pos = (205,-12); ref = dotbelowcomb; } ); width = 627; } ); unicode = 7693; }, { glyphname = dmacronbelow; kernLeft = d; kernRight = d; lastChange = "2023-07-09 23:20:28 +0000"; layers = ( { layerId = master01; shapes = ( { ref = d; }, { pos = (-35,0); ref = macronbelowcomb; } ); width = 627; } ); unicode = 7695; }, { glyphname = e; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { anchors = ( { name = bottom; pos = (291,-13); }, { name = top; pos = (291,515); } ); hints = ( { horizontal = 1; origin = (0,28); target = (0,6); type = Stem; }, { horizontal = 1; origin = (0,17); target = (0,15); type = Stem; }, { horizontal = 1; origin = (0,22); target = (0,12); type = Stem; }, { origin = (0,25); target = (0,9); type = Stem; }, { origin = (0,15); target = (0,18); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (392,-13,o), (462,30,o), (503,113,c), (429,143,l), (401,92,o), (349,63,o), (289,63,c), (188,63,o), (137,141,o), (137,245,cs), (137,349,o), (188,436,o), (289,436,c), (386,436,o), (435,360,o), (435,304,c), (134,304,l), (134,230,l), (519,230,l), (519,261,l), (519,434,o), (418,512,o), (291,512,c), (165,512,o), (54,412,o), (54,248,cs), (54,87,o), (165,-13,o), (291,-13,c) ); } ); width = 569; }, { associatedMasterId = master01; layerId = "169FF446-F214-45AF-87EB-12250BF5A1D5"; name = foreground; visible = 1; width = 543; }, { associatedMasterId = master01; layerId = "E0E72D27-D989-452C-96DA-744C8CBAEC4B"; name = "10 Jul 21, 15:30"; shapes = ( { closed = 1; nodes = ( (41,87,o), (153,-13,o), (279,-13,c), (367,-13,o), (444,35,o), (479,118,c), (403,148,l), (382,97,o), (337,63,o), (277,63,c), (176,63,o), (124,147,o), (124,251,cs), (124,355,o), (176,436,o), (277,436,c), (337,436,o), (382,402,o), (403,351,c), (479,381,l), (444,464,o), (367,512,o), (279,512,c), (153,512,o), (41,412,o), (41,248,cs) ); }, { closed = 1; nodes = ( (406,-13,o), (521,81,o), (521,250,cs), (521,414,o), (411,512,o), (283,512,c), (156,512,o), (42,412,o), (42,248,cs), (42,79,o), (151,-13,o), (278,-13,c) ); }, { closed = 1; nodes = ( (377,435,o), (437,352,o), (437,250,cs), (437,140,o), (377,63,o), (278,63,c), (179,63,o), (126,144,o), (126,248,cs), (126,352,o), (179,436,o), (281,436,c) ); } ); visible = 1; width = 543; } ); unicode = 101; }, { glyphname = eacute; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (235,3); ref = acutecomb; } ); width = 569; } ); unicode = 233; }, { glyphname = ecaron; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (78,3); ref = caroncomb; } ); width = 569; } ); unicode = 283; }, { glyphname = ecircumflex; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (80,3); ref = circumflexcomb; } ); width = 569; } ); unicode = 234; }, { glyphname = ecircumflexacute; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (79,3); ref = circumflexcomb_acutecomb; } ); width = 569; } ); unicode = 7871; }, { glyphname = ecircumflexdotbelow; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (216,-13); ref = dotbelowcomb; }, { pos = (80,3); ref = circumflexcomb; } ); width = 569; } ); unicode = 7879; }, { glyphname = ecircumflexgrave; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (80,3); ref = circumflexcomb_gravecomb; } ); width = 569; } ); unicode = 7873; }, { glyphname = ecircumflexhookabove; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (80,3); ref = circumflexcomb_hookabovecomb; } ); width = 569; } ); unicode = 7875; }, { glyphname = ecircumflextilde; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (80,3); ref = circumflexcomb_tildecomb; } ); width = 569; } ); unicode = 7877; }, { glyphname = edieresis; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (130,3); ref = dieresiscomb; } ); width = 569; } ); unicode = 235; }, { glyphname = edotaccent; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (217,3); ref = dotaccentcomb; } ); width = 569; } ); unicode = 279; }, { glyphname = edotbelow; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (216,-13); ref = dotbelowcomb; } ); width = 569; } ); unicode = 7865; }, { glyphname = egrave; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (113,3); ref = gravecomb; } ); width = 569; } ); unicode = 232; }, { glyphname = ehookabove; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (-1,15); ref = hookabovecomb; } ); width = 569; } ); unicode = 7867; }, { glyphname = emacron; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (-10,3); ref = macroncomb; } ); width = 569; } ); unicode = 275; }, { glyphname = eogonek; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (465,-197,o), (497,-193,o), (514,-182,c), (514,-112,l), (473,-133,o), (419,-124,o), (419,-68,cs), (419,-18,o), (471,58,o), (503,113,c), (401,33,l), (381,21,o), (343,-33,o), (343,-83,cs), (343,-140,o), (381,-197,o), (452,-197,cs) ); }, { ref = e; } ); width = 569; } ); unicode = 281; }, { glyphname = etilde; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (-8,3); ref = tildecomb; } ); width = 569; } ); unicode = 7869; }, { glyphname = f; kernLeft = f; kernRight = f; lastChange = "2023-08-03 09:33:54 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,20); target = (0,21); type = Stem; }, { horizontal = 1; origin = (0,11); target = (0,15); type = Stem; }, { origin = (0,23); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (227,0,l), (227,424,l), (355,424,l), (355,500,l), (227,500,l), (227,575,ls), (227,629,o), (254,648,o), (303,648,cs), (316,648,o), (334,647,o), (350,644,c), (350,712,l), (333,717,o), (310,720,o), (294,720,cs), (185,720,o), (143,669,o), (143,576,cs), (143,500,l), (47,500,l), (47,424,l), (143,424,l), (143,0,l) ); } ); width = 375; }, { associatedMasterId = master01; layerId = "05947023-CF81-4962-BA32-552EF9D46824"; name = foreground; shapes = ( { closed = 1; nodes = ( (134,409,l), (134,0,l), (233,0,l), (233,409,l), (365,409,l), (365,500,l), (233,500,l), (232,602,o), (245,630,o), (294,635,cs), (332,639,o), (364,630,o), (364,630,c), (364,720,l), (349,725,o), (321,728,o), (305,728,cs), (164,728,o), (134,664,o), (134,500,c), (40,500,l), (40,409,l) ); } ); width = 375; } ); unicode = 102; }, { glyphname = g; kernLeft = g; kernRight = g; lastChange = "2023-08-03 09:36:51 +0000"; layers = ( { anchors = ( { name = top; pos = (280,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (412,-232,o), (521,-171,o), (521,17,cs), (521,500,l), (441,500,l), (441,402,l), (420,457,o), (368,512,o), (280,512,cs), (149,512,o), (54,419,o), (54,250,cs), (54,86,o), (144,-12,o), (275,-12,cs), (344,-12,o), (417,27,o), (438,96,c), (438,17,ls), (438,-96,o), (391,-156,o), (281,-156,cs), (214,-156,o), (163,-125,o), (138,-66,c), (72,-107,l), (111,-195,o), (193,-229,o), (280,-230,cs) ); }, { closed = 1; nodes = ( (186,64,o), (138,148,o), (138,252,cs), (138,356,o), (186,437,o), (284,437,cs), (383,437,o), (437,360,o), (437,250,cs), (437,148,o), (383,64,o), (287,64,cs) ); } ); width = 607; }, { associatedMasterId = master01; layerId = "79240F66-912C-4E1A-A3E4-4F79DFA0CFDD"; name = foreground; shapes = ( { closed = 1; nodes = ( (394,426,o), (437,339,o), (437,252,cs), (437,165,o), (392,75,o), (296,75,c), (202,75,o), (160,165,o), (160,252,cs), (160,339,o), (200,426,o), (296,426,c) ); }, { closed = 1; nodes = ( (534,499,l), (434,499,l), (434,422,l), (411,475,o), (340,512,o), (271,512,c), (138,512,o), (51,397,o), (51,250,cs), (51,123,o), (119,-13,o), (271,-12,c), (346,-12,o), (406,27,o), (434,98,c), (434,5,ls), (434,-112,o), (388,-165,o), (275,-166,cs), (201,-167,o), (153,-122,o), (128,-63,c), (50,-106,l), (95,-207,o), (187,-249,o), (274,-250,cs), (390,-252,o), (534,-200,o), (534,-12,cs) ); } ); width = 614; } ); unicode = 103; }, { glyphname = gbreve; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:20:44 +0000"; layers = ( { layerId = master01; shapes = ( { ref = g; }, { pos = (-27,0); ref = brevecomb; } ); width = 607; } ); unicode = 287; }, { glyphname = gcommaaccent; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:20:44 +0000"; layers = ( { layerId = master01; shapes = ( { ref = g; }, { pos = (-40,0); ref = commaturnedabovecomb; } ); width = 607; } ); unicode = 291; }, { glyphname = gdotaccent; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:20:44 +0000"; layers = ( { layerId = master01; shapes = ( { ref = g; }, { pos = (206,0); ref = dotaccentcomb; } ); width = 607; } ); unicode = 289; }, { glyphname = gmacron; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:20:44 +0000"; layers = ( { layerId = master01; shapes = ( { ref = g; }, { pos = (-21,0); ref = macroncomb; } ); width = 607; } ); unicode = 7713; }, { glyphname = h; kernLeft = l; kernRight = h; lastChange = "2023-08-03 11:59:50 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,13); target = (0,4); type = Stem; }, { place = (92,84); type = Stem; }, { place = (421,84); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (176,0,l), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (427,403,o), (427,316,cs), (427,0,l), (511,0,l), (511,328,ls), (511,448,o), (440,512,o), (343,512,cs), (231,512,o), (185,441,o), (176,406,c), (176,712,l), (92,712,l), (92,0,l) ); } ); width = 597; }, { associatedMasterId = master01; layerId = "CD505587-AC72-48CE-8408-6BA3826A3B3C"; name = foreground; shapes = ( { closed = 1; nodes = ( (185,0,l), (185,259,ls), (185,355,o), (232,425,o), (314,425,cs), (371,425,o), (423,392,o), (423,306,c), (423,0,l), (523,0,l), (523,328,ls), (523,448,o), (439,512,o), (352,512,cs), (249,512,o), (205,455,o), (185,402,c), (185,720,l), (85,720,l), (85,0,l) ); } ); width = 603; } ); unicode = 104; }, { glyphname = hbar; kernLeft = h; kernRight = h; lastChange = "2023-07-09 23:20:48 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (357,582,l), (357,650,l), (64,650,l), (64,582,l) ); }, { pos = (37,0); ref = h; } ); width = 634; } ); unicode = 295; }, { glyphname = i; kernLeft = i; kernRight = I; lastChange = "2023-07-09 23:21:00 +0000"; layers = ( { anchors = ( { name = bottom; pos = (131,0); }, { name = top; pos = (126,500); } ); hints = ( { horizontal = 1; origin = (0,11); target = (0,5); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; }, { origin = (0,8); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (162,595,o), (188,622,o), (188,653,cs), (188,685,o), (162,712,o), (131,712,cs), (99,712,o), (72,685,o), (72,653,cs), (72,622,o), (99,595,o), (131,595,cs) ); }, { ref = idotless; } ); width = 260; }, { associatedMasterId = master01; layerId = "6625A516-8D1C-4BE4-BEF2-383D9616A379"; name = foreground; shapes = ( { closed = 1; nodes = ( (193,0,l), (193,500,l), (93,500,l), (93,0,l) ); }, { closed = 1; nodes = ( (178,571,o), (206,600,o), (206,634,cs), (206,669,o), (178,698,o), (144,698,cs), (109,698,o), (80,669,o), (80,634,cs), (80,600,o), (109,571,o), (144,571,cs) ); } ); width = 286; } ); unicode = 105; }, { glyphname = idotless; kernLeft = i; kernRight = I; lastChange = "2023-07-09 23:21:00 +0000"; layers = ( { anchors = ( { name = top; pos = (129,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (172,0,l), (172,500,l), (88,500,l), (88,0,l) ); } ); width = 260; } ); unicode = 305; }, { glyphname = iacute; lastChange = "2023-08-03 12:24:56 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (73,0); ref = acutecomb; } ); width = 260; } ); unicode = 237; }, { glyphname = icircumflex; kernLeft = i; kernRight = I; lastChange = "2023-08-03 12:24:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (-82,0); ref = circumflexcomb; } ); width = 260; } ); unicode = 238; }, { glyphname = idieresis; kernLeft = id; lastChange = "2023-08-03 12:24:28 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (-32,0); ref = dieresiscomb; } ); width = 260; } ); unicode = 239; }, { glyphname = idotaccent; kernLeft = i; kernRight = I; lastChange = "2023-07-09 23:21:00 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (160,593,o), (188,622,o), (188,656,cs), (188,691,o), (160,720,o), (126,720,cs), (91,720,o), (62,691,o), (62,656,cs), (62,622,o), (91,593,o), (126,593,cs) ); }, { pos = (-5,0); ref = idotless; } ); width = 260; } ); }, { glyphname = idotbelow; kernLeft = i; kernRight = I; lastChange = "2023-07-09 23:21:00 +0000"; layers = ( { layerId = master01; shapes = ( { ref = i; }, { pos = (56,0); ref = dotbelowcomb; } ); width = 260; } ); unicode = 7883; }, { glyphname = igrave; kernLeft = id; lastChange = "2023-08-03 12:24:43 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (-49,0); ref = gravecomb; } ); width = 260; } ); unicode = 236; }, { glyphname = ihookabove; kernLeft = i; kernRight = I; lastChange = "2023-07-09 23:21:00 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (-163,12); ref = hookabovecomb; } ); width = 260; } ); unicode = 7881; }, { glyphname = ij; kernLeft = i; kernRight = j; lastChange = "2023-07-09 23:21:07 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (460,593,o), (488,622,o), (488,656,c), (489,691,o), (461,720,o), (426,720,cs), (391,720,o), (362,691,o), (362,656,cs), (362,622,o), (391,593,o), (426,593,cs) ); }, { ref = idotaccent; }, { pos = (260,0); ref = jdotless; } ); width = 561; } ); unicode = 307; }, { glyphname = imacron; kernLeft = id; lastChange = "2023-08-03 12:24:13 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (-172,0); ref = macroncomb; } ); width = 260; } ); unicode = 299; }, { glyphname = iogonek; kernLeft = i; kernRight = I; lastChange = "2023-07-09 23:21:12 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (55,0); ref = dotaccentcomb; }, { pos = (-230,0); ref = ogonekcomb; } ); width = 260; } ); unicode = 303; }, { glyphname = itilde; kernLeft = id; lastChange = "2023-08-03 12:24:20 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (-170,0); ref = tildecomb; } ); width = 260; } ); unicode = 297; }, { glyphname = j; kernLeft = j; kernRight = j; lastChange = "2023-07-09 23:21:21 +0000"; layers = ( { hints = ( { horizontal = 1; place = (-249,94); type = Stem; }, { horizontal = 1; origin = (1,5); target = (1,11); type = Stem; }, { origin = (1,8); target = (1,2); type = Stem; }, { origin = (1,8); target = (1,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (169,-230,o), (210,-179,o), (210,-86,cs), (210,-86,o), (211,0,o), (211,500,c), (127,500,l), (127,-85,l), (127,-139,o), (100,-158,o), (51,-158,cs), (38,-158,o), (20,-157,o), (4,-154,c), (4,-222,l), (21,-227,o), (44,-230,o), (60,-230,cs) ); }, { closed = 1; nodes = ( (201,593,o), (229,622,o), (229,656,cs), (229,691,o), (201,720,o), (167,720,cs), (132,720,o), (103,691,o), (103,656,cs), (103,622,o), (132,593,o), (167,593,cs) ); } ); width = 301; }, { associatedMasterId = master01; layerId = "D21705D2-9FF0-49F0-B103-525AAF3570C8"; name = foreground; shapes = ( { closed = 1; nodes = ( (187,593,o), (215,622,o), (215,656,cs), (215,691,o), (187,720,o), (153,720,cs), (118,720,o), (89,691,o), (89,656,cs), (89,622,o), (118,593,o), (153,593,cs) ); }, { closed = 1; nodes = ( (106,499,l), (106,-6,ls), (106,-108,o), (94,-152,o), (41,-156,cs), (3,-159,o), (-25,-151,o), (-25,-151,c), (-25,-243,l), (-10,-248,o), (18,-251,o), (34,-251,cs), (175,-251,o), (205,-176,o), (205,-12,cs), (205,499,l) ); } ); width = 275; } ); unicode = 106; }, { glyphname = jdotless; kernLeft = j; kernRight = j; lastChange = "2023-07-09 23:21:21 +0000"; layers = ( { anchors = ( { name = top; pos = (169,512); } ); hints = ( { horizontal = 1; place = (-249,94); type = Stem; }, { horizontal = 1; place = (720,-220); target = (0,6); type = Stem; }, { origin = (0,6); target = (0,5); type = Stem; }, { origin = (0,6); target = (0,5); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (169,-230,o), (210,-179,o), (210,-86,cs), (210,-86,o), (211,0,o), (211,500,c), (127,500,l), (127,-85,l), (127,-139,o), (100,-158,o), (51,-158,cs), (38,-158,o), (20,-157,o), (4,-154,c), (4,-222,l), (21,-227,o), (44,-230,o), (60,-230,cs) ); } ); width = 301; } ); unicode = 567; }, { glyphname = jacute; kernLeft = j; kernRight = j; lastChange = "2023-07-09 23:21:21 +0000"; layers = ( { layerId = master01; shapes = ( { ref = jdotless; }, { pos = (113,0); ref = acutecomb; } ); width = 301; } ); }, { glyphname = k; kernLeft = l; kernRight = k; lastChange = "2023-08-03 12:32:16 +0000"; layers = ( { anchors = ( { name = bottom; pos = (279,-12); } ); hints = ( { place = (93,84); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (241,256,l), (265,266,l), (494,500,l), (390,500,l), (115,225,l), (115,131,l) ); }, { closed = 1; nodes = ( (176,0,l), (176,712,l), (92,712,l), (92,0,l) ); }, { closed = 1; nodes = ( (510,0,l), (281,302,l), (215,249,l), (404,0,l) ); } ); width = 525; }, { associatedMasterId = master01; layerId = "45831B20-6849-4EF6-BE83-8DDAD9BE09E7"; name = foreground; shapes = ( { closed = 1; nodes = ( (804,256,l), (828,266,l), (1049,500,l), (941,500,l), (681,225,l), (686,131,l) ); }, { closed = 1; nodes = ( (747,0,l), (747,712,l), (663,712,l), (663,0,l) ); }, { closed = 1; nodes = ( (1069,0,l), (840,302,l), (778,249,l), (967,0,l) ); } ); width = 537; }, { associatedMasterId = master01; hints = ( { horizontal = 1; origin = (0,8); target = (0,1); type = Stem; }, { origin = (0,9); target = (0,10); type = Stem; } ); layerId = "F5153F53-BD19-4DEE-BBF1-244D87F5AFFD"; name = "22 Jul 21, 10:33"; shapes = ( { closed = 1; nodes = ( (210,252,l), (395,-1,l), (498,-1,l), (267,308,l), (479,500,l), (371,500,l), (177,325,l), (176,712,l), (92,712,l), (93,0,l), (177,0,l), (177,223,l) ); }, { closed = 1; nodes = ( (219,252,l), (409,-1,l), (528,-1,l), (291,315,l), (503,500,l), (365,500,l), (186,344,l), (186,720,l), (86,720,l), (86,0,l), (186,0,l), (186,223,l) ); } ); width = 513; } ); unicode = 107; }, { glyphname = kcommaaccent; kernLeft = l; kernRight = k; lastChange = "2023-08-03 11:59:44 +0000"; layers = ( { layerId = master01; shapes = ( { ref = k; }, { pos = (-27,0); ref = commaaccentcomb; } ); width = 525; } ); unicode = 311; }, { glyphname = l; kernLeft = l; kernRight = l; lastChange = "2023-08-03 12:00:17 +0000"; layers = ( { anchors = ( { name = bottom; pos = (133,0); }, { name = top; pos = (129,725); } ); hints = ( { horizontal = 1; origin = (0,3); target = (0,2); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (174,0,l), (174,712,l), (90,712,l), (90,0,l) ); } ); width = 258; }, { associatedMasterId = master01; layerId = "9184F1DE-F07E-494E-9C47-EEC1A903CA2E"; name = foreground; shapes = ( { closed = 1; nodes = ( (180,0,l), (180,720,l), (80,720,l), (80,0,l) ); } ); width = 260; } ); unicode = 108; }, { glyphname = lacute; kernLeft = l; kernRight = l; lastChange = "2023-07-09 23:21:36 +0000"; layers = ( { layerId = master01; shapes = ( { ref = l; }, { pos = (73,213); ref = acutecomb; } ); width = 258; } ); unicode = 314; }, { glyphname = lcaron; kernLeft = l; kernRight = lcaron; lastChange = "2023-08-03 11:59:12 +0000"; layers = ( { layerId = master01; shapes = ( { ref = l; }, { pos = (-75,0); ref = caroncomb.alt; } ); width = 258; } ); unicode = 318; }, { glyphname = lcommaaccent; kernLeft = l; kernRight = l; lastChange = "2023-07-09 23:21:36 +0000"; layers = ( { layerId = master01; shapes = ( { ref = l; }, { pos = (-173,12); ref = commaaccentcomb; } ); width = 258; } ); unicode = 316; }, { glyphname = ldotbelow; kernLeft = l; kernRight = l; lastChange = "2023-07-09 23:21:36 +0000"; layers = ( { layerId = master01; shapes = ( { ref = l; }, { pos = (58,0); ref = dotbelowcomb; } ); width = 258; } ); unicode = 7735; }, { glyphname = lmacronbelow; kernLeft = l; kernRight = l; lastChange = "2023-07-09 23:21:36 +0000"; layers = ( { layerId = master01; shapes = ( { ref = l; }, { pos = (-182,12); ref = macronbelowcomb; } ); width = 258; } ); unicode = 7739; }, { glyphname = lslash; kernLeft = l; kernRight = l; lastChange = "2023-08-03 12:33:02 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (336,373,l), (301,437,l), (30,294,l), (64,229,l) ); }, { pos = (45,0); ref = l; } ); width = 366; } ); unicode = 322; }, { glyphname = m; kernLeft = m; kernRight = m; lastChange = "2023-07-09 23:21:41 +0000"; layers = ( { anchors = ( { name = bottom; pos = (469,1); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (176,0,l), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (427,403,o), (427,316,cs), (427,0,l), (511,0,l), (511,328,ls), (511,448,o), (440,512,o), (343,512,cs), (231,512,o), (185,441,o), (176,406,c), (176,500,l), (92,500,l), (92,0,l) ); }, { closed = 1; nodes = ( (511,0,l), (511,270,ls), (511,366,o), (558,436,o), (650,436,cs), (717,436,o), (762,403,o), (762,316,cs), (762,0,l), (846,0,l), (846,328,ls), (846,448,o), (775,512,o), (678,512,cs), (566,512,o), (511,433,o), (502,398,c), (494,0,l) ); } ); width = 934; }, { associatedMasterId = master01; layerId = "2AB4FA2C-6E87-475E-BC95-C87BA88E814C"; name = foreground; shapes = ( { closed = 1; nodes = ( (524,355,o), (571,425,o), (653,425,cs), (710,425,o), (762,392,o), (762,306,c), (762,0,l), (862,0,l), (862,328,ls), (862,448,o), (778,512,o), (691,512,cs), (589,512,o), (535,445,o), (514,392,c), (490,471,o), (422,512,o), (352,512,cs), (249,512,o), (205,455,o), (185,402,c), (185,501,l), (85,501,l), (85,0,l), (185,0,l), (185,259,ls), (185,355,o), (232,425,o), (314,425,cs), (371,425,o), (423,392,o), (423,306,c), (423,0,l), (524,0,l), (524,259,ls) ); } ); width = 942; } ); unicode = 109; }, { glyphname = n; kernLeft = n; kernRight = n; lastChange = "2023-08-02 08:43:36 +0000"; layers = ( { anchors = ( { name = bottom; pos = (309,0); }, { name = top; pos = (315,525); } ); hints = ( { origin = (0,19); target = (0,0); type = Stem; }, { origin = (0,8); target = (0,9); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (176,0,l), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (427,403,o), (427,316,cs), (427,0,l), (511,0,l), (511,328,ls), (511,448,o), (440,512,o), (343,512,cs), (231,512,o), (185,441,o), (176,406,c), (176,500,l), (92,500,l), (92,0,l) ); } ); width = 597; }, { associatedMasterId = master01; layerId = "9DAFEF19-BC7E-4592-BC8A-958FBEEA9065"; name = foreground; shapes = ( { closed = 1; nodes = ( (176,500,l), (92,500,l), (92,0,l), (176,0,l), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (421,403,o), (421,316,cs), (421,0,l), (505,0,l), (505,328,ls), (505,448,o), (440,512,o), (343,512,cs), (231,512,o), (163,445,o), (163,320,c), (176,320,l) ); } ); width = 603; }, { associatedMasterId = master01; layerId = "4E993862-6A8B-4F58-BA63-F4C2183B2AD6"; name = "22 Jul 21, 09:48"; shapes = ( { closed = 1; nodes = ( (176,500,l), (92,500,l), (92,0,l), (176,0,l), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (421,403,o), (421,316,cs), (421,0,l), (505,0,l), (505,328,ls), (505,448,o), (440,512,o), (343,512,cs), (231,512,o), (163,445,o), (163,320,c), (176,320,l) ); }, { closed = 1; nodes = ( (176,0,l), (176,259,ls), (176,355,o), (228,425,o), (310,425,cs), (379,425,o), (426,392,o), (426,306,c), (426,0,l), (510,0,l), (510,324,ls), (510,432,o), (443,512,o), (348,512,cs), (245,512,o), (196,455,o), (176,402,c), (176,500,l), (92,500,l), (92,0,l) ); } ); width = 603; }, { associatedMasterId = master01; layerId = "093DBDD9-08D0-4671-954B-3775BA1B0BE1"; name = "22 Jul 21, 09:45"; shapes = ( { closed = 1; nodes = ( (170,500,l), (86,500,l), (86,0,l), (170,0,l), (170,270,ls), (170,366,o), (217,436,o), (309,436,cs), (376,436,o), (415,403,o), (415,316,cs), (415,0,l), (499,0,l), (499,328,ls), (499,448,o), (434,512,o), (337,512,cs), (225,512,o), (179,441,o), (170,406,c) ); } ); width = 591; }, { associatedMasterId = master01; layerId = "47444D12-A43B-4A04-A14E-0473975F487A"; name = "22 Jul 21, 09:45"; shapes = ( { closed = 1; nodes = ( (176,500,l), (92,500,l), (92,0,l), (176,0,l), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (421,403,o), (421,316,cs), (421,0,l), (505,0,l), (505,328,ls), (505,448,o), (440,512,o), (343,512,cs), (231,512,o), (163,445,o), (163,320,c), (176,320,l) ); } ); width = 603; } ); unicode = 110; }, { glyphname = nacute; kernLeft = n; kernRight = n; lastChange = "2023-07-09 23:21:50 +0000"; layers = ( { layerId = master01; shapes = ( { ref = n; }, { pos = (259,13); ref = acutecomb; } ); width = 597; } ); unicode = 324; }, { glyphname = ncaron; kernLeft = n; kernRight = n; lastChange = "2023-07-09 23:21:50 +0000"; layers = ( { layerId = master01; shapes = ( { ref = n; }, { pos = (102,13); ref = caroncomb; } ); width = 597; } ); unicode = 328; }, { glyphname = ncommaaccent; kernLeft = n; kernRight = n; lastChange = "2023-07-09 23:21:50 +0000"; layers = ( { layerId = master01; shapes = ( { ref = n; }, { pos = (3,12); ref = commaaccentcomb; } ); width = 597; } ); unicode = 326; }, { glyphname = ndotbelow; kernLeft = n; kernRight = n; lastChange = "2023-07-09 23:21:50 +0000"; layers = ( { layerId = master01; shapes = ( { ref = n; }, { pos = (234,0); ref = dotbelowcomb; } ); width = 597; } ); unicode = 7751; }, { glyphname = nhookleft; kernLeft = n; kernRight = n; lastChange = "2023-07-09 23:21:50 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (133,-188,o), (176,-137,o), (176,-44,cs), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (427,403,o), (427,316,cs), (427,1,l), (511,1,l), (511,328,ls), (511,448,o), (440,512,o), (343,512,cs), (231,512,o), (185,441,o), (176,406,c), (176,500,l), (92,500,l), (92,-43,ls), (92,-97,o), (64,-116,o), (15,-116,cs), (2,-116,o), (-15,-115,o), (-31,-112,c), (-31,-180,l), (-14,-185,o), (8,-188,o), (24,-188,cs) ); } ); width = 600; } ); unicode = 626; }, { glyphname = nhookretroflex; kernLeft = n; kernRight = n; lastChange = "2023-07-09 23:21:50 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (593,-188,o), (615,-185,o), (632,-180,c), (632,-112,l), (616,-115,o), (599,-116,o), (586,-116,cs), (537,-116,o), (511,-97,o), (511,-43,cs), (511,328,ls), (511,448,o), (440,512,o), (343,512,cs), (231,512,o), (185,441,o), (176,406,c), (176,500,l), (92,500,l), (92,0,l), (176,0,l), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (427,403,o), (427,316,cs), (427,-44,ls), (427,-137,o), (468,-188,o), (577,-188,cs) ); } ); width = 600; } ); unicode = 627; }, { glyphname = nmacronbelow; kernLeft = n; kernRight = n; lastChange = "2023-07-09 23:21:50 +0000"; layers = ( { anchors = ( { name = bottom; pos = (315,0); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (176,0,l), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (427,403,o), (427,316,cs), (427,0,l), (511,0,l), (511,328,ls), (511,448,o), (440,512,o), (343,512,cs), (231,512,o), (185,441,o), (176,406,c), (176,500,l), (92,500,l), (92,0,l) ); }, { ref = macronbelowcomb; } ); width = 600; } ); unicode = 7753; }, { glyphname = ntilde; kernLeft = n; kernRight = n; lastChange = "2023-07-09 23:21:50 +0000"; layers = ( { layerId = master01; shapes = ( { ref = n; }, { pos = (16,13); ref = tildecomb; } ); width = 597; } ); unicode = 241; }, { glyphname = eng; kernLeft = n; kernRight = n; lastChange = "2023-07-09 23:21:50 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (468,-188,o), (511,-137,o), (511,-44,cs), (511,328,ls), (511,448,o), (440,512,o), (343,512,cs), (231,512,o), (185,441,o), (176,406,c), (176,500,l), (92,500,l), (92,0,l), (176,0,l), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (427,403,o), (427,316,cs), (427,-43,ls), (427,-97,o), (399,-116,o), (350,-116,cs), (337,-116,o), (319,-115,o), (303,-112,c), (303,-180,l), (320,-185,o), (343,-188,o), (359,-188,cs) ); } ); width = 600; } ); unicode = 331; }, { glyphname = o; kernLeft = o; kernRight = o; lastChange = "2023-08-03 09:26:18 +0000"; layers = ( { anchors = ( { name = bottom; pos = (290,-12); }, { name = top; pos = (290,516); } ); hints = ( { horizontal = 1; origin = (0,11); target = (1,11); type = Stem; }, { horizontal = 1; origin = (0,5); target = (1,5); type = Stem; }, { origin = (0,8); target = (1,2); type = Stem; }, { origin = (1,8); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (414,-12,o), (526,78,o), (526,250,cs), (526,422,o), (414,512,o), (290,512,cs), (166,512,o), (54,422,o), (54,250,cs), (54,78,o), (166,-12,o), (290,-12,cs) ); }, { closed = 1; nodes = ( (190,64,o), (138,133,o), (138,250,cs), (138,367,o), (190,436,o), (290,436,cs), (390,436,o), (442,367,o), (442,250,cs), (442,133,o), (390,64,o), (290,64,cs) ); } ); width = 580; }, { associatedMasterId = master01; layerId = "75CEC0A4-E86C-4BAB-AB20-41EC8FFB0C18"; name = foreground; shapes = ( { closed = 1; nodes = ( (422,-13,o), (540,81,o), (540,250,cs), (540,414,o), (427,512,o), (296,512,c), (165,512,o), (48,412,o), (48,248,cs), (48,79,o), (160,-13,o), (291,-13,c) ); }, { closed = 1; nodes = ( (389,426,o), (436,338,o), (436,250,cs), (436,164,o), (384,72,o), (291,72,c), (197,72,o), (149,162,o), (149,248,cs), (149,336,o), (198,426,o), (294,426,c) ); } ); width = 587; } ); unicode = 111; }, { glyphname = oacute; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (234,4); ref = acutecomb; } ); width = 580; } ); unicode = 243; }, { glyphname = ocircumflex; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (79,4); ref = circumflexcomb; } ); width = 580; } ); unicode = 244; }, { glyphname = ocircumflexacute; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (78,4); ref = circumflexcomb_acutecomb; } ); width = 580; } ); unicode = 7889; }, { glyphname = ocircumflexdotbelow; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (215,-12); ref = dotbelowcomb; }, { pos = (79,4); ref = circumflexcomb; } ); width = 580; } ); unicode = 7897; }, { glyphname = ocircumflexgrave; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (79,4); ref = circumflexcomb_gravecomb; } ); width = 580; } ); unicode = 7891; }, { glyphname = ocircumflexhookabove; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (79,4); ref = circumflexcomb_hookabovecomb; } ); width = 580; } ); unicode = 7893; }, { glyphname = ocircumflextilde; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (79,4); ref = circumflexcomb_tildecomb; } ); width = 580; } ); unicode = 7895; }, { glyphname = odieresis; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (129,4); ref = dieresiscomb; } ); width = 580; } ); unicode = 246; }, { glyphname = odotbelow; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (215,-12); ref = dotbelowcomb; } ); width = 580; } ); unicode = 7885; }, { glyphname = ograve; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (112,4); ref = gravecomb; } ); width = 580; } ); unicode = 242; }, { glyphname = ohookabove; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (-2,16); ref = hookabovecomb; } ); width = 580; } ); unicode = 7887; }, { glyphname = ohorn; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { anchors = ( { name = top; pos = (290,516); } ); hints = ( { horizontal = 1; origin = (0,11); target = (1,11); type = Stem; }, { horizontal = 1; origin = (2,9); target = (1,5); type = Stem; }, { origin = (0,8); target = (1,2); type = Stem; }, { origin = (1,8); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (414,-12,o), (526,78,o), (526,250,cs), (526,422,o), (414,512,o), (290,512,cs), (166,512,o), (54,422,o), (54,250,cs), (54,78,o), (166,-12,o), (290,-12,cs) ); }, { closed = 1; nodes = ( (190,64,o), (138,133,o), (138,250,cs), (138,367,o), (190,436,o), (290,436,cs), (390,436,o), (442,367,o), (442,250,cs), (442,133,o), (390,64,o), (290,64,cs) ); }, { closed = 1; nodes = ( (554,453,o), (559,553,o), (543,604,c), (471,599,l), (481,563,o), (483,509,o), (420,507,cs), (360,505,o), (346,515,o), (284,512,c), (308,480,l), (334,480,o), (338,453,o), (442,453,cs) ); } ); width = 580; } ); unicode = 417; }, { glyphname = ohornacute; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (414,-12,o), (526,78,o), (526,250,cs), (526,422,o), (414,512,o), (290,512,cs), (166,512,o), (54,422,o), (54,250,cs), (54,78,o), (166,-12,o), (290,-12,cs) ); }, { closed = 1; nodes = ( (190,64,o), (138,133,o), (138,250,cs), (138,367,o), (190,436,o), (290,436,cs), (390,436,o), (442,367,o), (442,250,cs), (442,133,o), (390,64,o), (290,64,cs) ); }, { closed = 1; nodes = ( (554,453,o), (559,553,o), (543,604,c), (471,599,l), (481,563,o), (483,509,o), (420,507,cs), (360,505,o), (346,515,o), (284,512,c), (308,480,l), (334,480,o), (338,453,o), (442,453,cs) ); }, { pos = (223,0); ref = acutecomb; } ); width = 600; } ); unicode = 7899; }, { glyphname = ohorndotbelow; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = ohorn; }, { pos = (222,0); ref = dotbelowcomb; } ); width = 580; } ); unicode = 7907; }, { glyphname = ohorngrave; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = ohorn; }, { pos = (112,4); ref = gravecomb; } ); width = 580; } ); unicode = 7901; }, { glyphname = ohornhookabove; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = ohorn; }, { pos = (-2,16); ref = hookabovecomb; } ); width = 580; } ); unicode = 7903; }, { glyphname = ohorntilde; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = ohorn; }, { pos = (-9,4); ref = tildecomb; } ); width = 580; } ); unicode = 7905; }, { glyphname = ohungarumlaut; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (37,4); ref = hungarumlautcomb; } ); width = 580; } ); unicode = 337; }, { glyphname = omacron; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (-11,4); ref = macroncomb; } ); width = 580; } ); unicode = 333; }, { glyphname = oslash; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (533,500,l), (476,546,l), (46,0,l), (100,-48,l) ); }, { ref = o; } ); width = 580; } ); unicode = 248; }, { glyphname = otilde; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (-9,4); ref = tildecomb; } ); width = 580; } ); unicode = 245; }, { glyphname = oe; kernLeft = o; kernRight = e; lastChange = "2023-07-09 23:22:04 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (789,-13,o), (859,30,o), (900,113,c), (826,143,l), (798,92,o), (746,63,o), (686,63,c), (585,63,o), (526,141,o), (526,245,cs), (526,349,o), (585,436,o), (686,436,c), (783,436,o), (832,360,o), (832,304,c), (523,304,l), (523,230,l), (916,230,l), (916,261,l), (916,434,o), (815,512,o), (688,512,c), (562,512,o), (443,412,o), (443,248,cs), (443,87,o), (562,-13,o), (688,-13,c) ); }, { closed = 1; nodes = ( (414,-12,o), (526,78,o), (526,250,cs), (526,422,o), (414,512,o), (290,512,cs), (166,512,o), (54,422,o), (54,250,cs), (54,78,o), (166,-12,o), (290,-12,cs) ); }, { closed = 1; nodes = ( (190,64,o), (138,133,o), (138,250,cs), (138,367,o), (190,436,o), (290,436,cs), (390,436,o), (442,367,o), (442,250,cs), (442,133,o), (390,64,o), (290,64,cs) ); } ); width = 958; } ); unicode = 339; }, { glyphname = p; kernLeft = p; kernRight = p; lastChange = "2023-08-03 09:37:48 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (176,-230,l), (176,96,l), (197,27,o), (270,-12,o), (339,-12,cs), (470,-12,o), (560,86,o), (560,250,cs), (560,419,o), (465,512,o), (334,512,cs), (246,512,o), (194,457,o), (173,402,c), (173,500,l), (92,500,l), (92,-230,l) ); }, { closed = 1; nodes = ( (231,65,o), (177,148,o), (177,250,cs), (177,360,o), (231,437,o), (330,437,cs), (428,437,o), (476,356,o), (476,252,cs), (476,148,o), (428,63,o), (327,64,cs) ); } ); width = 614; }, { associatedMasterId = master01; layerId = "111F6626-3440-438D-AC91-776452057215"; name = foreground; shapes = ( { closed = 1; nodes = ( (226,74,o), (183,161,o), (183,248,cs), (183,335,o), (228,425,o), (324,425,c), (418,425,o), (467,335,o), (467,248,cs), (467,161,o), (420,74,o), (324,74,c) ); }, { closed = 1; nodes = ( (482,-11,o), (569,103,o), (569,250,cs), (569,377,o), (501,513,o), (349,512,c), (274,512,o), (214,473,o), (186,402,c), (186,500,l), (86,500,l), (86,-249,l), (186,-249,l), (186,78,l), (209,25,o), (280,-11,o), (349,-11,c) ); } ); width = 624; } ); unicode = 112; }, { glyphname = thorn; kernLeft = p; kernRight = p; lastChange = "2023-07-09 23:22:08 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (176,-230,l), (176,96,l), (197,27,o), (270,-12,o), (339,-12,cs), (470,-12,o), (560,86,o), (560,250,cs), (560,419,o), (465,512,o), (334,512,cs), (246,512,o), (194,457,o), (173,402,c), (173,712,l), (92,712,l), (92,-230,l) ); }, { closed = 1; nodes = ( (231,65,o), (177,148,o), (177,250,cs), (177,360,o), (231,437,o), (330,437,cs), (428,437,o), (476,356,o), (476,252,cs), (476,148,o), (428,63,o), (327,64,cs) ); } ); width = 614; } ); unicode = 254; }, { glyphname = q; kernLeft = q; kernRight = q; lastChange = "2023-07-09 23:22:13 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (557,-230,o), (570,-226,o), (584,-218,c), (584,-150,l), (535,-161,o), (521,-143,o), (521,-103,cs), (521,500,l), (441,500,l), (441,402,l), (420,457,o), (368,512,o), (280,512,cs), (149,512,o), (54,419,o), (54,250,cs), (54,86,o), (144,-12,o), (275,-12,cs), (344,-12,o), (417,27,o), (438,96,c), (438,-124,ls), (438,-204,o), (480,-230,o), (532,-230,cs) ); }, { closed = 1; nodes = ( (186,64,o), (138,148,o), (138,252,cs), (138,356,o), (186,437,o), (284,437,cs), (383,437,o), (437,360,o), (437,250,cs), (437,148,o), (383,64,o), (287,64,cs) ); } ); width = 624; }, { associatedMasterId = master01; layerId = "5B836CBD-5A05-4F3B-A39F-8D74CF5805A4"; name = foreground; shapes = ( { closed = 1; nodes = ( (443,-207,o), (486,-247,o), (536,-248,cs), (578,-249,o), (620,-231,o), (620,-231,c), (620,-231,o), (620,-148,o), (620,-148,cs), (570,-159,o), (543,-144,o), (543,-99,c), (543,500,l), (443,500,l), (443,402,l), (415,473,o), (353,512,o), (278,512,c), (126,513,o), (60,377,o), (60,250,cs), (60,103,o), (147,-11,o), (280,-11,c), (349,-11,o), (420,25,o), (443,78,c), (443,-140,l) ); }, { closed = 1; nodes = ( (209,74,o), (162,161,o), (162,248,cs), (162,335,o), (211,425,o), (305,425,c), (401,425,o), (446,335,o), (446,248,cs), (446,161,o), (403,74,o), (305,74,c) ); } ); width = 630; } ); unicode = 113; }, { glyphname = r; kernLeft = r; kernRight = r; lastChange = "2023-08-02 08:44:28 +0000"; layers = ( { anchors = ( { name = bottom; pos = (134,0); }, { name = top; pos = (207,527); } ); hints = ( { horizontal = 1; origin = (0,11); target = (0,4); type = Stem; }, { horizontal = 1; origin = (0,16); target = (0,4); type = Stem; }, { origin = (0,17); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (176,0,l), (176,270,ls), (176,366,o), (221,420,o), (302,436,cs), (327,441,o), (362,436,o), (382,430,c), (382,508,l), (373,509,o), (349,512,o), (339,512,cs), (236,512,o), (196,454,o), (176,401,c), (176,500,l), (92,500,l), (92,0,l) ); } ); width = 402; }, { associatedMasterId = master01; layerId = "4E6D224B-E0A5-4955-882F-1582C38B5E9B"; name = foreground; shapes = ( { closed = 1; nodes = ( (185,0,l), (185,258,ls), (185,354,o), (230,408,o), (311,424,cs), (336,429,o), (371,424,o), (391,414,c), (391,508,l), (382,509,o), (358,512,o), (348,512,cs), (245,512,o), (205,454,o), (185,401,c), (185,500,l), (85,500,l), (85,0,l) ); }, { closed = 0; nodes = ( (378,509,l) ); } ); width = 406; } ); unicode = 114; }, { glyphname = racute; kernLeft = r; kernRight = r; lastChange = "2023-07-09 23:22:17 +0000"; layers = ( { layerId = master01; shapes = ( { ref = r; }, { pos = (151,15); ref = acutecomb; } ); width = 402; } ); unicode = 341; }, { glyphname = rcaron; kernLeft = r; kernRight = r; lastChange = "2023-07-09 23:22:17 +0000"; layers = ( { layerId = master01; shapes = ( { ref = r; }, { pos = (-6,15); ref = caroncomb; } ); width = 402; } ); unicode = 345; }, { glyphname = rcommaaccent; kernLeft = r; kernRight = r; lastChange = "2023-07-09 23:22:17 +0000"; layers = ( { layerId = master01; shapes = ( { ref = r; }, { pos = (-172,12); ref = commaaccentcomb; } ); width = 402; } ); unicode = 343; }, { glyphname = rdotbelow; kernLeft = r; kernRight = r; lastChange = "2023-07-09 23:22:17 +0000"; layers = ( { layerId = master01; shapes = ( { ref = r; }, { pos = (59,0); ref = dotbelowcomb; } ); width = 402; } ); unicode = 7771; }, { glyphname = rmacronbelow; kernLeft = r; kernRight = r; lastChange = "2023-07-09 23:22:17 +0000"; layers = ( { anchors = ( { name = bottom; pos = (199,0); } ); layerId = master01; shapes = ( { ref = r; }, { pos = (-181,12); ref = macronbelowcomb; } ); width = 402; } ); unicode = 7775; }, { glyphname = s; kernLeft = s; kernRight = s; lastChange = "2023-07-09 23:22:21 +0000"; layers = ( { anchors = ( { name = bottom; pos = (246,-12); }, { name = top; pos = (243,520); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (385,-12,o), (448,56,o), (448,137,cs), (448,330,o), (145,253,o), (145,365,cs), (145,407,o), (177,436,o), (242,436,cs), (314,436,o), (352,400,o), (352,367,c), (438,367,l), (438,429,o), (388,512,o), (243,512,cs), (121,512,o), (61,435,o), (61,362,cs), (61,168,o), (363,270,o), (363,137,cs), (363,87,o), (319,64,o), (253,64,cs), (203,64,o), (140,93,o), (140,156,c), (50,156,l), (50,57,o), (145,-12,o), (246,-12,c) ); } ); width = 503; }, { associatedMasterId = master01; layerId = "387FA4A7-73FF-4D97-8FCB-952702749138"; name = foreground; shapes = ( { closed = 1; nodes = ( (88,39,o), (165,-12,o), (259,-12,cs), (387,-12,o), (459,56,o), (457,137,cs), (458,190,o), (442,253,o), (303,292,cs), (203,320,o), (164,339,o), (163,380,cs), (163,416,o), (202,436,o), (263,436,cs), (314,436,o), (352,413,o), (365,373,c), (440,408,l), (416,470,o), (360,512,o), (266,512,cs), (140,512,o), (78,445,o), (78,372,cs), (78,310,o), (99,266,o), (205,233,cs), (288,207,o), (371,191,o), (371,132,cs), (371,82,o), (317,65,o), (266,65,cs), (207,65,o), (155,92,o), (139,155,c), (134,155,l), (59,118,l) ); } ); width = 494; }, { associatedMasterId = master01; layerId = "7E27A0BC-C66B-4AEC-96DE-E66ACE9A3214"; name = "21 Jul 21, 11:57"; shapes = ( { closed = 1; nodes = ( (65,56,o), (151,-12,o), (249,-12,c), (387,-12,o), (459,56,o), (457,137,c), (458,190,o), (442,253,o), (303,292,cs), (203,320,o), (154,339,o), (153,372,c), (153,416,o), (192,436,o), (251,436,cs), (311,436,o), (343,403,o), (352,370,c), (437,370,l), (426,423,o), (393,512,o), (252,512,cs), (130,512,o), (68,445,o), (68,372,cs), (68,310,o), (99,266,o), (205,233,cs), (288,207,o), (371,191,o), (371,140,c), (371,82,o), (317,65,o), (256,65,c), (207,65,o), (155,92,o), (139,155,c), (50,155,l) ); }, { closed = 1; nodes = ( (65,56,o), (151,-12,o), (249,-12,c), (387,-12,o), (459,56,o), (457,137,c), (458,190,o), (442,253,o), (303,292,cs), (203,320,o), (154,339,o), (153,372,c), (153,416,o), (192,436,o), (251,436,cs), (311,436,o), (343,403,o), (352,370,c), (437,370,l), (426,423,o), (393,512,o), (252,512,cs), (130,512,o), (68,445,o), (68,372,cs), (68,310,o), (99,266,o), (205,233,cs), (288,207,o), (371,191,o), (371,140,c), (371,82,o), (317,65,o), (256,65,c), (207,65,o), (155,92,o), (139,155,c), (50,155,l) ); } ); width = 512; }, { associatedMasterId = master01; layerId = "16A2ED11-E800-4B00-98DC-B709ECAC59BA"; name = "1 Oct 21, 07:26"; shapes = ( { closed = 1; nodes = ( (50,57,o), (145,-12,o), (246,-12,c), (385,-12,o), (448,56,o), (448,137,cs), (448,218,o), (417,254,o), (291,292,cs), (174,327,o), (146,342,o), (145,375,cs), (144,408,o), (177,436,o), (242,436,cs), (314,436,o), (352,400,o), (352,367,c), (438,367,l), (438,429,o), (388,512,o), (243,512,cs), (121,512,o), (61,445,o), (61,372,cs), (61,303,o), (102,255,o), (199,229,cs), (284,206,o), (363,195,o), (363,137,cs), (363,87,o), (319,64,o), (253,64,cs), (203,64,o), (140,94,o), (140,157,c), (50,156,l) ); }, { closed = 1; nodes = ( (50,57,o), (145,-12,o), (246,-12,c), (385,-12,o), (448,56,o), (448,137,cs), (448,218,o), (417,254,o), (291,292,cs), (174,327,o), (146,342,o), (145,375,cs), (144,408,o), (177,436,o), (242,436,cs), (314,436,o), (352,400,o), (352,367,c), (438,367,l), (438,429,o), (388,512,o), (243,512,cs), (121,512,o), (61,445,o), (61,372,cs), (61,303,o), (102,255,o), (199,229,cs), (284,206,o), (363,195,o), (363,137,cs), (363,87,o), (319,64,o), (253,64,cs), (203,64,o), (140,94,o), (140,157,c), (50,156,l) ); } ); width = 503; } ); unicode = 115; }, { glyphname = sacute; kernLeft = s; kernRight = s; lastChange = "2023-07-09 23:22:21 +0000"; layers = ( { layerId = master01; shapes = ( { ref = s; }, { pos = (187,8); ref = acutecomb; } ); width = 503; } ); unicode = 347; }, { glyphname = scaron; kernLeft = s; kernRight = s; lastChange = "2023-07-09 23:22:21 +0000"; layers = ( { layerId = master01; shapes = ( { ref = s; }, { pos = (30,8); ref = caroncomb; } ); width = 503; } ); unicode = 353; }, { glyphname = scedilla; kernLeft = s; kernRight = s; lastChange = "2023-07-09 23:22:21 +0000"; layers = ( { layerId = master01; shapes = ( { ref = s; }, { pos = (-44,-14); ref = cedillacomb; } ); width = 503; } ); unicode = 351; }, { glyphname = scommaaccent; kernLeft = s; kernRight = s; lastChange = "2023-07-09 23:22:21 +0000"; layers = ( { layerId = master01; shapes = ( { ref = s; }, { pos = (-60,0); ref = commaaccentcomb; } ); width = 503; } ); unicode = 537; }, { glyphname = germandbls; kernLeft = s; kernRight = s; lastChange = "2023-08-03 09:20:59 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (415,-12,o), (513,64,o), (513,203,cs), (513,286,o), (470,348,o), (407,384,c), (449,416,o), (477,465,o), (477,530,cs), (477,649,o), (388,712,o), (286,712,cs), (175,712,o), (92,649,o), (92,530,cs), (92,0,l), (176,0,l), (176,530,ls), (176,586,o), (209,636,o), (285,636,cs), (361,636,o), (393,586,o), (393,530,cs), (393,465,o), (361,418,o), (287,418,cs), (283,418,l), (283,340,l), (286,340,ls), (366,340,o), (425,278,o), (425,203,cs), (425,123,o), (377,68,o), (288,68,cs), (273,68,o), (260,68,o), (249,70,c), (249,-9,l), (261,-11,o), (273,-12,o), (287,-12,cs) ); } ); width = 567; } ); unicode = 223; }, { glyphname = t; kernLeft = t; kernRight = t; lastChange = "2023-07-09 23:22:29 +0000"; layers = ( { anchors = ( { name = bottom; pos = (210,-4); } ); hints = ( { horizontal = 1; place = (0,423); target = (0,10); type = Stem; }, { horizontal = 1; origin = (0,20); target = (0,21); type = Stem; }, { horizontal = 1; origin = (0,21); target = (0,13); type = Stem; }, { origin = (0,10); target = (0,10); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (282,-12,o), (304,-9,o), (321,-4,c), (321,64,l), (305,61,o), (288,60,o), (275,60,cs), (226,60,o), (200,78,o), (200,132,cs), (200,423,l), (329,423,l), (329,499,l), (200,499,l), (200,627,l), (116,627,l), (116,570,ls), (116,512,o), (103,500,o), (49,500,cs), (26,500,l), (26,423,l), (116,423,l), (116,132,ls), (116,39,o), (157,-12,o), (266,-12,cs) ); } ); width = 366; }, { associatedMasterId = master01; layerId = "4BC6D785-7F25-40CD-8B35-2CDB36DE77EE"; name = foreground; shapes = ( { closed = 1; nodes = ( (97,500,o), (43,500,cs), (20,500,l), (20,408,l), (110,408,l), (110,137,ls), (110,56,o), (145,0,o), (260,0,c), (282,0,o), (321,2,o), (336,4,c), (336,98,l), (322,97,o), (287,96,o), (271,96,cs), (225,97,o), (210,127,o), (210,166,cs), (210,408,l), (339,408,l), (339,499,l), (210,499,l), (210,629,l), (110,629,l), (110,572,ls), (110,512,o) ); } ); width = 379; } ); unicode = 116; }, { glyphname = tcaron; kernLeft = t; kernRight = t; lastChange = "2023-07-09 23:22:29 +0000"; layers = ( { layerId = master01; shapes = ( { ref = t; }, { pos = (-44,61); ref = caroncomb.alt; } ); width = 366; } ); unicode = 357; }, { glyphname = tcedilla; kernLeft = t; kernRight = t; lastChange = "2023-07-09 23:22:29 +0000"; layers = ( { layerId = master01; shapes = ( { ref = t; }, { pos = (-80,-6); ref = cedillacomb; } ); width = 366; } ); unicode = 355; }, { glyphname = tcommaaccent; kernLeft = t; kernRight = t; lastChange = "2023-07-09 23:22:29 +0000"; layers = ( { layerId = master01; shapes = ( { ref = t; }, { pos = (-96,8); ref = commaaccentcomb; } ); width = 366; } ); unicode = 539; }, { glyphname = tdotbelow; kernLeft = t; kernRight = t; lastChange = "2023-07-09 23:22:29 +0000"; layers = ( { layerId = master01; shapes = ( { ref = t; }, { pos = (135,-4); ref = dotbelowcomb; } ); width = 366; } ); unicode = 7789; }, { glyphname = tmacronbelow; kernLeft = t; kernRight = t; lastChange = "2023-07-09 23:22:29 +0000"; layers = ( { layerId = master01; shapes = ( { ref = t; }, { pos = (-105,8); ref = macronbelowcomb; } ); width = 366; } ); unicode = 7791; }, { glyphname = u; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { anchors = ( { name = bottom; pos = (282,-12); }, { name = ogonek; pos = (460,0); }, { name = top; pos = (288,515); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (366,-12,o), (412,59,o), (421,94,c), (421,0,l), (505,0,l), (505,500,l), (421,500,l), (421,230,ls), (421,134,o), (374,64,o), (282,64,cs), (215,64,o), (170,97,o), (170,184,cs), (170,500,l), (86,500,l), (86,172,ls), (86,52,o), (157,-12,o), (254,-12,cs) ); } ); width = 597; }, { associatedMasterId = master01; layerId = "58AB66D5-CBBE-4AAE-8E7A-6B076E516B66"; name = foreground; shapes = ( { closed = 1; nodes = ( (418,500,l), (418,241,ls), (418,145,o), (371,75,o), (289,75,cs), (232,75,o), (180,108,o), (180,194,c), (180,500,l), (80,500,l), (80,172,ls), (80,52,o), (164,-12,o), (251,-12,cs), (354,-12,o), (398,45,o), (418,98,c), (418,-1,l), (518,-1,l), (518,500,l) ); } ); width = 603; } ); unicode = 117; }, { glyphname = uacute; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (232,3); ref = acutecomb; } ); width = 597; } ); unicode = 250; }, { glyphname = ubreve; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (-19,3); ref = brevecomb; } ); width = 597; } ); unicode = 365; }, { glyphname = ucircumflex; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (77,3); ref = circumflexcomb; } ); width = 597; } ); unicode = 251; }, { glyphname = udieresis; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (127,3); ref = dieresiscomb; } ); width = 597; } ); unicode = 252; }, { glyphname = udotbelow; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (207,-12); ref = dotbelowcomb; } ); width = 597; } ); unicode = 7909; }, { glyphname = ugrave; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (110,3); ref = gravecomb; } ); width = 597; } ); unicode = 249; }, { glyphname = uhookabove; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (-4,15); ref = hookabovecomb; } ); width = 597; } ); unicode = 7911; }, { glyphname = uhorn; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (625,446,o), (626,546,o), (610,597,c), (538,592,l), (548,556,o), (550,502,o), (487,500,cs), (427,498,o), (425,446,o), (488,446,c) ); }, { ref = u; } ); width = 600; } ); unicode = 432; }, { glyphname = uhornacute; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = uhorn; }, { pos = (232,3); ref = acutecomb; } ); width = 600; } ); unicode = 7913; }, { glyphname = uhorndotbelow; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = uhorn; }, { pos = (207,-12); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7921; }, { glyphname = uhorngrave; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = uhorn; }, { pos = (110,3); ref = gravecomb; } ); width = 600; } ); unicode = 7915; }, { glyphname = uhornhookabove; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = uhorn; }, { pos = (-4,15); ref = hookabovecomb; } ); width = 600; } ); unicode = 7917; }, { glyphname = uhorntilde; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = uhorn; }, { pos = (-11,3); ref = tildecomb; } ); width = 600; } ); unicode = 7919; }, { glyphname = uhungarumlaut; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (35,3); ref = hungarumlautcomb; } ); width = 597; } ); unicode = 369; }, { glyphname = umacron; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (-13,3); ref = macroncomb; } ); width = 597; } ); unicode = 363; }, { glyphname = uogonek; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (104,0); ref = ogonekcomb; } ); width = 597; } ); unicode = 371; }, { glyphname = uring; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (170,3); ref = ringcomb; } ); width = 597; } ); unicode = 367; }, { glyphname = utilde; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (-11,3); ref = tildecomb; } ); width = 597; } ); unicode = 361; }, { glyphname = v; kernLeft = v; kernRight = v; lastChange = "2023-07-09 23:22:40 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (302,0,l), (483,500,l), (403,500,l), (252,84,l), (101,500,l), (17,500,l), (198,0,l) ); } ); width = 500; }, { associatedMasterId = master01; layerId = "6A8EB27F-0274-4B16-855B-6672B7F2D5F0"; name = foreground; shapes = ( { closed = 1; nodes = ( (506,500,l), (324,0,l), (193,0,l), (12,500,l), (124,500,l), (258,101,l), (392,500,l) ); } ); width = 518; } ); unicode = 118; }, { glyphname = w; kernLeft = w; kernRight = w; lastChange = "2023-08-03 12:32:38 +0000"; layers = ( { anchors = ( { name = top; pos = (387,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (283,0,l), (393,394,l), (378,394,l), (483,0,l), (596,0,l), (735,499,l), (644,499,l), (539,60,l), (550,60,l), (431,499,l), (339,499,l), (219,60,l), (231,60,l), (126,499,l), (35,499,l), (174,0,l) ); } ); width = 770; }, { associatedMasterId = master01; layerId = "A8781FE5-F585-44A1-B1ED-7854B8098763"; name = foreground; shapes = ( { closed = 1; nodes = ( (456,0,l), (573,0,l), (704,499,l), (606,499,l), (511,66,l), (530,66,l), (424,499,l), (320,499,l), (214,66,l), (233,66,l), (138,499,l), (30,499,l), (161,0,l), (278,0,l), (375,374,l), (359,374,l) ); } ); width = 734; } ); unicode = 119; }, { glyphname = wacute; kernLeft = w; kernRight = w; lastChange = "2023-07-09 23:22:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = w; }, { pos = (331,0); ref = acutecomb; } ); width = 770; } ); unicode = 7811; }, { glyphname = wcircumflex; kernLeft = w; kernRight = w; lastChange = "2023-07-09 23:22:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = w; }, { pos = (176,0); ref = circumflexcomb; } ); width = 770; } ); unicode = 373; }, { glyphname = wdieresis; kernLeft = w; kernRight = w; lastChange = "2023-07-09 23:22:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = w; }, { pos = (226,0); ref = dieresiscomb; } ); width = 770; } ); unicode = 7813; }, { glyphname = wgrave; kernLeft = w; kernRight = w; lastChange = "2023-07-09 23:22:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = w; }, { pos = (209,0); ref = gravecomb; } ); width = 770; } ); unicode = 7809; }, { glyphname = x; kernLeft = x; kernRight = x; lastChange = "2023-07-09 23:22:50 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (429,0,l), (271,257,l), (420,500,l), (326,500,l), (224,334,l), (121,500,l), (27,500,l), (177,257,l), (18,0,l), (112,0,l), (224,181,l), (335,0,l) ); } ); width = 447; }, { associatedMasterId = master01; layerId = "B47364CB-B425-460E-96EC-C79310290C0B"; name = foreground; shapes = ( { closed = 1; nodes = ( (247,166,l), (363,0,l), (485,0,l), (308,251,l), (480,500,l), (363,500,l), (250,335,l), (135,500,l), (13,500,l), (188,250,l), (13,0,l), (130,0,l) ); } ); width = 493; } ); unicode = 120; }, { glyphname = y; kernLeft = y; kernRight = y; lastChange = "2023-08-03 12:32:58 +0000"; layers = ( { anchors = ( { name = bottom; pos = (261,-230); }, { name = top; pos = (261,516); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (207,-230,o), (236,-164,o), (285,-34,cs), (486,500,l), (397,500,l), (262,119,l), (101,500,l), (15,500,l), (223,3,l), (187,-126,o), (153,-150,o), (107,-150,c), (89,-150,o), (71,-149,o), (59,-146,c), (59,-222,l), (72,-226,o), (92,-230,o), (113,-230,cs) ); } ); width = 498; }, { associatedMasterId = master01; layerId = "C02C67DD-6A80-4F27-B5CB-F7E47F86019A"; name = foreground; shapes = ( { closed = 1; nodes = ( (185,-251,o), (89,-251,cs), (78,-251,o), (45,-248,o), (30,-243,c), (30,-151,l), (30,-151,o), (58,-159,o), (96,-156,c), (141,-156,o), (181,-118,o), (202,-24,cs), (208,3,l), (10,500,l), (127,500,l), (266,119,l), (391,500,l), (497,500,l), (306,-34,ls), (248,-196,o) ); } ); width = 502; } ); unicode = 121; }, { glyphname = yacute; kernLeft = y; kernRight = y; lastChange = "2023-07-09 23:22:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = y; }, { pos = (205,4); ref = acutecomb; } ); width = 498; } ); unicode = 253; }, { glyphname = ycircumflex; kernLeft = y; kernRight = y; lastChange = "2023-07-09 23:22:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = y; }, { pos = (50,4); ref = circumflexcomb; } ); width = 498; } ); unicode = 375; }, { glyphname = ydieresis; kernLeft = y; kernRight = y; lastChange = "2023-07-09 23:22:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = y; }, { pos = (100,4); ref = dieresiscomb; } ); width = 498; } ); unicode = 255; }, { glyphname = ydotbelow; kernLeft = y; kernRight = y; lastChange = "2023-07-09 23:22:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = y; }, { pos = (186,-230); ref = dotbelowcomb; } ); width = 498; } ); unicode = 7925; }, { glyphname = ygrave; kernLeft = y; kernRight = y; lastChange = "2023-07-09 23:22:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = y; }, { pos = (83,4); ref = gravecomb; } ); width = 498; } ); unicode = 7923; }, { glyphname = yhookabove; kernLeft = y; kernRight = y; lastChange = "2023-07-09 23:22:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = y; }, { pos = (-31,16); ref = hookabovecomb; } ); width = 498; } ); unicode = 7927; }, { glyphname = ytilde; kernLeft = y; kernRight = y; lastChange = "2023-07-09 23:22:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = y; }, { pos = (-38,4); ref = tildecomb; } ); width = 498; } ); unicode = 7929; }, { glyphname = z; kernLeft = z; kernRight = z; lastChange = "2023-07-09 23:23:02 +0000"; layers = ( { anchors = ( { name = top; pos = (219,521); } ); hints = ( { horizontal = 1; origin = (0,9); target = (0,2); type = Stem; }, { horizontal = 1; origin = (0,6); target = (0,5); type = Stem; }, { origin = (0,9); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (381,1,l), (381,77,l), (137,77,l), (379,425,l), (379,501,l), (50,501,l), (50,425,l), (292,425,l), (50,78,l), (50,1,l) ); } ); width = 427; }, { associatedMasterId = master01; layerId = "9FF03EA6-08B8-46BD-92BE-77D8C33F9469"; name = foreground; shapes = ( { closed = 1; nodes = ( (390,1,l), (390,86,l), (148,86,l), (390,419,l), (390,501,l), (40,501,l), (40,419,l), (282,419,l), (40,87,l), (40,1,l) ); } ); width = 430; } ); unicode = 122; }, { glyphname = zacute; kernLeft = z; kernRight = z; lastChange = "2023-07-09 23:23:02 +0000"; layers = ( { layerId = master01; shapes = ( { ref = z; }, { pos = (163,9); ref = acutecomb; } ); width = 427; } ); unicode = 378; }, { glyphname = zcaron; kernLeft = z; kernRight = z; lastChange = "2023-07-09 23:23:02 +0000"; layers = ( { layerId = master01; shapes = ( { ref = z; }, { pos = (6,9); ref = caroncomb; } ); width = 427; } ); unicode = 382; }, { glyphname = zdotaccent; kernLeft = z; kernRight = z; lastChange = "2023-07-09 23:23:02 +0000"; layers = ( { layerId = master01; shapes = ( { ref = z; }, { pos = (145,9); ref = dotaccentcomb; } ); width = 427; } ); unicode = 380; }, { glyphname = lcommaaccent.loclMAH; kernLeft = l; kernRight = l; lastChange = "2023-07-09 23:23:06 +0000"; layers = ( { layerId = master01; shapes = ( { ref = l; }, { pos = (-157,-2); ref = cedillacomb; } ); width = 258; } ); }, { glyphname = ncommaaccent.loclMAH; kernLeft = n; kernRight = n; lastChange = "2023-07-09 23:23:10 +0000"; layers = ( { layerId = master01; shapes = ( { ref = n; }, { pos = (-1,-2); ref = commaaccentcomb.loclMAH; } ); width = 597; } ); }, { glyphname = a.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { anchors = ( { name = bottom; pos = (265,0); }, { name = ogonek; pos = (477,12); }, { name = top; pos = (272,512); } ); hints = ( { horizontal = 1; place = (-12,76); type = Stem; }, { horizontal = 1; place = (436,76); type = Stem; }, { place = (457,83); type = Stem; }, { place = (73,84); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (336,-12,o), (382,106,o), (382,106,c), (382,35,o), (418,0,o), (470,0,cs), (495,0,o), (508,4,o), (522,12,c), (522,80,l), (473,69,o), (459,87,o), (459,127,cs), (459,340,ls), (459,429,o), (390,512,o), (272,512,cs), (115,512,o), (73,393,o), (73,393,c), (141,356,l), (141,356,o), (172,436,o), (265,436,cs), (333,436,o), (375,390,o), (375,336,cs), (375,310,l), (172,310,o), (58,262,o), (58,135,cs), (58,43,o), (121,-12,o), (202,-12,cs) ); }, { closed = 1; nodes = ( (172,64,o), (142,91,o), (142,142,cs), (142,223,o), (223,244,o), (375,244,c), (375,219,ls), (375,120,o), (285,64,o), (223,64,cs) ); } ); width = 590; }, { associatedMasterId = master01; layerId = "9D365B9B-32C5-456F-91EC-EA0BDBFBA64C"; name = foreground; shapes = ( { closed = 1; nodes = ( (383,426,o), (426,339,o), (426,252,cs), (426,165,o), (381,75,o), (285,75,c), (191,75,o), (149,165,o), (149,252,cs), (149,339,o), (189,426,o), (285,426,c) ); }, { closed = 1; nodes = ( (127,512,o), (40,397,o), (40,250,cs), (40,123,o), (108,-13,o), (260,-12,c), (335,-12,o), (395,27,o), (423,98,c), (423,0,l), (523,0,l), (523,499,l), (423,499,l), (423,422,l), (400,475,o), (329,512,o), (260,512,c) ); } ); width = 583; }, { associatedMasterId = master01; layerId = "B723C8F9-18DA-486D-A68C-0EA6D66026F1"; name = "1 Aug 21, 12:43"; shapes = ( { closed = 1; nodes = ( (383,426,o), (426,339,o), (426,252,cs), (426,165,o), (381,75,o), (285,75,c), (191,75,o), (149,165,o), (149,252,cs), (149,339,o), (189,426,o), (285,426,c) ); }, { closed = 1; nodes = ( (196,63,o), (148,148,o), (148,252,cs), (148,356,o), (196,437,o), (294,437,cs), (393,437,o), (447,360,o), (447,250,cs), (447,148,o), (393,65,o), (297,64,cs) ); }, { closed = 0; nodes = ( (531,-103,l), (532,500,l), (451,500,l), (451,402,l), (430,457,o), (378,512,o), (290,512,cs), (159,512,o), (64,419,o), (64,250,cs), (64,86,o), (154,-12,o), (285,-12,cs), (354,-12,o), (427,27,o), (448,96,c) ); } ); width = 583; } ); }, { glyphname = aacute.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (216,0); ref = acutecomb; } ); width = 590; } ); }, { glyphname = abreve.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-35,0); ref = brevecomb; } ); width = 590; } ); }, { glyphname = abreveacute.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-35,0); ref = brevecomb_acutecomb; } ); width = 590; } ); }, { glyphname = abrevedotbelow.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (190,0); ref = dotbelowcomb; }, { pos = (-35,0); ref = brevecomb; } ); width = 590; } ); }, { glyphname = abrevegrave.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-35,0); ref = brevecomb_gravecomb; } ); width = 590; } ); }, { glyphname = abrevehookabove.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-35,0); ref = brevecomb_hookabovecomb; } ); width = 590; } ); }, { glyphname = abrevetilde.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-35,0); ref = brevecomb_tildecomb; } ); width = 590; } ); }, { glyphname = acircumflex.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (61,0); ref = circumflexcomb; } ); width = 590; } ); }, { glyphname = acircumflexacute.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (60,0); ref = circumflexcomb_acutecomb; } ); width = 590; } ); }, { glyphname = acircumflexdotbelow.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (190,0); ref = dotbelowcomb; }, { pos = (61,0); ref = circumflexcomb; } ); width = 590; } ); }, { glyphname = acircumflexgrave.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (61,0); ref = circumflexcomb_gravecomb; } ); width = 590; } ); }, { glyphname = acircumflexhookabove.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (61,0); ref = circumflexcomb_hookabovecomb; } ); width = 590; } ); }, { glyphname = acircumflextilde.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (61,0); ref = circumflexcomb_tildecomb; } ); width = 590; } ); }, { glyphname = adieresis.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (111,0); ref = dieresiscomb; } ); width = 590; } ); }, { glyphname = adotbelow.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (190,0); ref = dotbelowcomb; } ); width = 590; } ); }, { glyphname = agrave.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (94,0); ref = gravecomb; } ); width = 590; } ); }, { glyphname = ahookabove.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-20,12); ref = hookabovecomb; } ); width = 590; } ); }, { glyphname = amacron.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-29,0); ref = macroncomb; } ); width = 590; } ); }, { glyphname = aogonek.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (121,12); ref = ogonekcomb; } ); width = 590; } ); }, { glyphname = aring.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (154,0); ref = ringcomb; } ); width = 590; } ); }, { glyphname = atilde.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-27,0); ref = tildecomb; } ); width = 590; } ); }, { glyphname = g.ss01; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:23:29 +0000"; layers = ( { anchors = ( { name = top; pos = (262,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (420,-229,o), (509,-148,o), (509,-46,cs), (509,20,o), (473,94,o), (344,94,cs), (207,94,ls), (138,94,o), (146,174,o), (206,174,cs), (217,174,o), (257,174,o), (269,174,cs), (385,174,o), (456,242,o), (456,340,cs), (456,375,o), (444,417,o), (421,447,c), (434,476,o), (487,478,o), (525,472,c), (525,560,l), (432,576,o), (389,525,o), (385,480,c), (367,494,o), (323,512,o), (262,512,cs), (135,512,o), (72,427,o), (72,340,cs), (72,286,o), (99,222,o), (146,197,c), (110,193,o), (76,164,o), (76,127,cs), (76,86,o), (102,61,o), (135,52,c), (76,31,o), (53,-31,o), (53,-73,cs), (53,-172,o), (150,-229,o), (275,-229,cs) ); }, { closed = 1; nodes = ( (178,-154,o), (131,-122,o), (131,-59,cs), (131,-22,o), (157,12,o), (200,22,c), (336,22,l), (408,22,o), (430,-2,o), (431,-49,cs), (432,-100,o), (393,-154,o), (275,-154,cs) ); }, { closed = 1; nodes = ( (184,243,o), (152,287,o), (152,342,cs), (152,395,o), (184,441,o), (261,441,cs), (345,441,o), (376,396,o), (376,343,cs), (376,285,o), (345,243,o), (261,243,cs) ); } ); width = 547; }, { associatedMasterId = master01; layerId = "077287D2-C640-42BE-89DC-9237D68A85C4"; name = foreground; shapes = ( { closed = 1; nodes = ( (183,240,o), (147,288,o), (147,343,cs), (147,398,o), (180,440,o), (245,440,cs), (312,440,o), (344,398,o), (344,343,cs), (344,288,o), (312,240,o), (245,240,cs) ); }, { closed = 1; nodes = ( (129,-46,o), (148,-8,o), (188,12,c), (298,12,l), (361,12,o), (405,-12,o), (403,-81,cs), (401,-150,o), (334,-171,o), (248,-169,c), (174,-167,o), (129,-127,o), (129,-82,c) ); }, { closed = 1; nodes = ( (509,560,l), (416,576,o), (373,525,o), (370,480,c), (340,500,o), (299,512,o), (248,512,cs), (119,512,o), (57,434,o), (57,337,cs), (57,280,o), (84,216,o), (139,191,c), (118,183,o), (57,164,o), (57,103,cs), (57,61,o), (101,37,o), (142,28,c), (79,12,o), (42,-33,o), (42,-89,cs), (42,-161,o), (108,-250,o), (249,-250,c), (419,-251,o), (495,-174,o), (494,-67,cs), (493,13,o), (425,99,o), (306,99,cs), (206,99,ls), (137,99,o), (147,168,o), (207,168,cs), (218,168,o), (241,168,o), (248,168,cs), (380,168,o), (441,242,o), (440,337,cs), (440,379,o), (428,417,o), (405,447,c), (418,476,o), (471,478,o), (509,472,c) ); } ); width = 523; }, { associatedMasterId = master01; layerId = "7A42339F-1245-461A-AC41-BAF96E1C6F90"; name = "22 Jul 21, 14:28"; shapes = ( { closed = 1; nodes = ( (195,246,o), (151,292,o), (151,344,cs), (151,396,o), (192,440,o), (257,440,cs), (324,440,o), (370,396,o), (370,344,cs), (370,292,o), (324,246,o), (257,246,cs) ); }, { closed = 1; nodes = ( (138,-22,o), (163,10,o), (209,30,c), (307,30,l), (365,30,o), (410,-1,o), (408,-70,cs), (406,-139,o), (345,-155,o), (266,-155,c), (192,-155,o), (138,-120,o), (138,-70,cs) ); }, { closed = 1; nodes = ( (521,560,l), (428,576,o), (385,525,o), (382,480,c), (352,500,o), (311,512,o), (260,512,cs), (148,512,o), (69,427,o), (69,340,cs), (69,286,o), (96,222,o), (151,197,c), (126,194,o), (77,181,o), (77,117,cs), (77,75,o), (113,50,o), (154,41,c), (91,25,o), (54,-22,o), (54,-78,cs), (54,-150,o), (120,-229,o), (261,-229,c), (418,-230,o), (494,-163,o), (493,-56,cs), (492,24,o), (440,102,o), (315,102,cs), (210,102,ls), (141,102,o), (151,174,o), (211,174,cs), (222,174,o), (253,174,o), (260,174,cs), (392,174,o), (452,269,o), (452,340,cs), (452,375,o), (440,417,o), (417,447,c), (430,476,o), (483,478,o), (521,472,c) ); }, { closed = 1; nodes = ( (423,-97,o), (378,-146,o), (254,-146,cs), (180,-146,o), (132,-102,o), (107,-43,c), (29,-86,l), (74,-187,o), (166,-229,o), (253,-230,cs), (369,-232,o), (506,-180,o), (506,-12,cs), (507,500,l), (426,500,l), (426,402,l), (405,457,o), (348,512,o), (260,512,cs), (129,512,o), (31,419,o), (31,250,cs), (31,86,o), (124,-12,o), (255,-12,cs), (324,-12,o), (402,27,o), (423,96,c), (423,-12,ls) ); }, { closed = 1; nodes = ( (166,63,o), (115,148,o), (115,252,cs), (115,356,o), (166,437,o), (264,437,cs), (363,437,o), (422,360,o), (422,250,cs), (422,148,o), (363,65,o), (267,64,cs) ); } ); width = 543; } ); }, { glyphname = gbreve.ss01; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:23:29 +0000"; layers = ( { layerId = master01; shapes = ( { ref = g.ss01; }, { pos = (-45,0); ref = brevecomb; } ); width = 547; } ); }, { glyphname = gcommaaccent.ss01; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:23:29 +0000"; layers = ( { anchors = ( { name = _top; pos = (262,512); } ); layerId = master01; shapes = ( { ref = g.ss01; }, { pos = (-58,0); ref = commaturnedabovecomb; } ); width = 547; } ); }, { glyphname = gdotaccent.ss01; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:23:29 +0000"; layers = ( { layerId = master01; shapes = ( { ref = g.ss01; }, { pos = (188,0); ref = dotaccentcomb; } ); width = 547; } ); }, { glyphname = gmacron.ss01; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:23:29 +0000"; layers = ( { layerId = master01; shapes = ( { ref = g.ss01; }, { pos = (-39,0); ref = macroncomb; } ); width = 547; } ); }, { glyphname = ordfeminine; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; } ); width = 607; } ); unicode = 170; }, { glyphname = ordmasculine; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:23:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; } ); width = 580; } ); unicode = 186; }, { glyphname = zero; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (552,-13,o), (616,173,o), (616,358,cs), (616,553,o), (550,720,o), (342,720,c), (132,720,o), (66,553,o), (66,358,cs), (66,173,o), (130,-13,o), (342,-13,c) ); }, { closed = 1; nodes = ( (202,68,o), (153,199,o), (153,359,cs), (153,522,o), (202,639,o), (343,639,c), (478,639,o), (529,522,o), (529,359,cs), (529,199,o), (478,68,o), (342,68,c) ); }, { closed = 1; nodes = ( (376,290,o), (404,319,o), (404,353,cs), (404,388,o), (376,417,o), (342,417,cs), (307,417,o), (278,388,o), (278,353,cs), (278,319,o), (307,290,o), (342,290,cs) ); } ); width = 682; }, { associatedMasterId = master01; layerId = "13DCC383-82AB-442C-BFC2-C1F1611A1FF5"; name = foreground; shapes = ( { closed = 1; nodes = ( (148,-13,o), (84,173,o), (84,358,cs), (84,553,o), (150,719,o), (360,719,c), (568,719,o), (634,553,o), (634,358,cs), (634,173,o), (570,-13,o), (360,-13,c) ); }, { closed = 1; nodes = ( (235,618,o), (188,513,o), (188,360,cs), (188,200,o), (230,89,o), (359,89,c), (488,89,o), (530,200,o), (530,360,cs), (530,513,o), (483,618,o), (360,618,c) ); }, { closed = 1; nodes = ( (395,295,o), (424,325,o), (424,358,cs), (424,394,o), (395,424,o), (361,424,cs), (326,424,o), (296,394,o), (296,358,cs), (296,325,o), (326,295,o), (361,295,cs) ); } ); width = 718; } ); unicode = 48; }, { glyphname = one; lastChange = "2023-08-03 09:34:19 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,12); target = (0,2); type = Stem; }, { horizontal = 1; origin = (0,8); target = (0,7); type = Stem; }, { horizontal = 1; origin = (0,12); target = (0,11); type = Stem; }, { origin = (0,10); target = (0,2); type = Stem; }, { origin = (0,4); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (422,0,l), (422,80,l), (289,80,l), (289,699,l), (214,699,l), (214,606,o), (193,592,o), (76,592,c), (76,512,l), (201,512,l), (201,80,l), (74,80,l), (74,0,l) ); } ); width = 513; }, { associatedMasterId = master01; layerId = "E47BB55E-6434-4EFE-8F9A-CD219E7F6C54"; name = foreground; shapes = ( { closed = 1; nodes = ( (196,94,l), (69,94,l), (69,0,l), (441,0,l), (441,96,l), (308,96,l), (308,699,l), (221,699,l), (221,598,o), (163,593,o), (71,593,c), (71,512,l), (196,512,l) ); } ); width = 496; } ); unicode = 49; }, { glyphname = two; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,25); target = (0,2); type = Stem; }, { horizontal = 1; origin = (0,18); target = (0,8); type = Stem; }, { origin = (0,25); target = (0,2); type = Stem; }, { origin = (0,21); target = (0,5); type = Stem; }, { origin = (0,14); target = (0,15); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (501,1,l), (501,81,l), (161,81,l), (161,274,o), (490,284,o), (490,528,cs), (490,647,o), (399,712,o), (284,712,c), (204,712,o), (132,677,o), (96,615,c), (81,589,o), (72,555,o), (72,519,c), (160,519,l), (160,576,o), (205,632,o), (283,632,c), (361,632,o), (404,584,o), (404,528,cs), (404,335,o), (75,332,o), (75,81,cs), (75,1,l) ); } ); width = 576; }, { associatedMasterId = master01; layerId = "BC9AB10E-C11D-48D7-ACCF-502BD9D7D8B4"; name = foreground; shapes = ( { closed = 1; nodes = ( (184,257,o), (500,284,o), (500,530,cs), (500,649,o), (404,719,o), (289,719,c), (209,719,o), (137,685,o), (101,623,c), (86,597,o), (77,566,o), (77,530,c), (174,530,l), (174,587,o), (210,636,o), (288,636,c), (366,636,o), (405,592,o), (405,536,cs), (405,343,o), (80,308,o), (80,87,cs), (80,1,l), (511,1,l), (511,93,l), (184,93,l) ); } ); width = 587; } ); unicode = 50; }, { glyphname = three; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (429,-12,o), (541,69,o), (541,208,cs), (541,324,o), (465,423,o), (309,423,c), (502,615,l), (502,700,l), (114,700,l), (114,620,l), (396,620,l), (191,423,l), (191,355,l), (286,355,ls), (385,355,o), (455,309,o), (455,212,cs), (455,128,o), (390,68,o), (301,68,cs), (228,68,o), (169,94,o), (149,173,c), (146,185,o), (144,198,o), (144,210,c), (60,203,l), (60,182,o), (63,162,o), (67,144,c), (94,43,o), (191,-12,o), (300,-12,cs) ); } ); width = 609; }, { associatedMasterId = master01; layerId = "EB8DBBAE-32D2-41E0-8962-5175497312F2"; name = foreground; shapes = ( { closed = 1; nodes = ( (469,429,o), (530,330,o), (530,203,cs), (530,64,o), (418,-12,o), (289,-12,c), (180,-12,o), (83,43,o), (56,144,c), (52,162,o), (49,182,o), (49,203,c), (156,210,l), (156,198,o), (158,185,o), (161,173,c), (174,121,o), (217,78,o), (290,78,c), (379,78,o), (423,140,o), (423,207,cs), (423,271,o), (399,358,o), (265,358,c), (183,358,l), (183,441,l), (379,611,l), (110,611,l), (110,700,l), (496,700,l), (496,606,l), (313,441,l) ); } ); width = 587; } ); unicode = 51; }, { glyphname = four; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,9); target = (0,7); type = Stem; }, { origin = (0,10); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (460,1,l), (460,167,l), (564,167,l), (564,248,l), (460,248,l), (460,701,l), (374,701,l), (65,248,l), (65,168,l), (374,168,l), (374,1,l) ); }, { closed = 1; nodes = ( (374,559,l), (374,248,l), (157,248,l) ); } ); width = 613; }, { associatedMasterId = master01; layerId = "343D4897-1185-4756-95B8-BCD83EF9873F"; name = foreground; shapes = ( { closed = 1; nodes = ( (460,1,l), (460,702,l), (354,702,l), (354,1,l) ); }, { closed = 1; nodes = ( (557,158,l), (557,250,l), (63,250,l), (63,158,l) ); }, { closed = 1; nodes = ( (354,701,l), (64,248,l), (169,248,l), (452,690,l) ); } ); width = 582; } ); unicode = 52; }, { glyphname = five; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,30); target = (0,23); type = Stem; }, { horizontal = 1; origin = (0,17); target = (0,5); type = Stem; }, { horizontal = 1; origin = (0,12); target = (0,9); type = Stem; }, { origin = (0,20); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (439,-12,o), (551,77,o), (551,234,cs), (551,387,o), (444,469,o), (322,469,cs), (265,469,o), (204,443,o), (184,407,c), (223,620,l), (505,620,l), (505,700,l), (158,700,l), (96,348,l), (188,322,l), (210,361,o), (253,388,o), (305,388,cs), (396,388,o), (465,330,o), (465,234,cs), (465,126,o), (400,68,o), (311,68,cs), (237,68,o), (169,123,o), (158,195,c), (78,163,l), (105,49,o), (201,-12,o), (310,-12,cs) ); } ); width = 621; }, { associatedMasterId = master01; layerId = "141C748C-D320-4F67-ACD8-1A49E620755D"; name = foreground; shapes = ( { closed = 1; nodes = ( (84,49,o), (180,-12,o), (289,-12,c), (418,-12,o), (530,83,o), (530,240,cs), (530,393,o), (418,484,o), (289,484,c), (255,484,o), (191,469,o), (174,442,c), (209,627,l), (484,627,l), (484,720,l), (129,720,l), (60,321,l), (59,316,o), (166,315,o), (165,310,c), (183,355,o), (224,393,o), (288,393,c), (379,393,o), (427,314,o), (427,242,cs), (427,166,o), (379,80,o), (290,80,c), (216,80,o), (170,133,o), (156,195,c), (57,163,l) ); } ); width = 587; } ); unicode = 53; }, { glyphname = six; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,17); target = (1,11); type = Stem; }, { horizontal = 1; origin = (1,5); target = (0,5); type = Stem; }, { origin = (0,14); target = (1,2); type = Stem; }, { origin = (1,8); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (447,-12,o), (535,88,o), (535,227,cs), (535,354,o), (432,452,o), (315,452,cs), (284,452,o), (248,442,o), (236,427,c), (410,700,l), (311,700,l), (136,404,ls), (106,354,o), (76,292,o), (76,227,cs), (76,88,o), (162,-12,o), (307,-12,c) ); }, { closed = 1; nodes = ( (211,68,o), (163,140,o), (163,228,cs), (163,299,o), (211,376,o), (304,376,c), (395,376,o), (447,299,o), (447,228,cs), (447,134,o), (395,68,o), (308,68,c) ); } ); width = 595; }, { associatedMasterId = master01; layerId = "D6D6E878-2182-488D-B392-1DFFB86B72D8"; name = foreground; shapes = ( { closed = 1; nodes = ( (417,-12,o), (529,75,o), (529,235,cs), (529,392,o), (413,476,o), (318,476,c), (271,476,o), (246,464,o), (241,464,c), (413,720,l), (297,720,l), (91,384,ls), (65,342,o), (48,287,o), (48,235,cs), (48,75,o), (159,-12,o), (288,-12,c) ); }, { closed = 1; nodes = ( (378,392,o), (426,310,o), (426,236,cs), (426,159,o), (378,81,o), (289,81,c), (200,81,o), (151,159,o), (151,236,cs), (151,310,o), (196,392,o), (287,392,c) ); } ); width = 586; } ); unicode = 54; }, { glyphname = seven; lastChange = "2023-08-02 08:52:02 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,3); target = (0,4); type = Stem; }, { origin = (0,4); target = (0,1); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (200,1,l), (499,622,l), (499,700,l), (55,700,l), (55,620,l), (410,620,l), (111,1,l) ); } ); width = 527; }, { associatedMasterId = master01; layerId = "838B41D5-9F30-4BE4-913F-336DAFA8DCAA"; name = foreground; shapes = ( { closed = 1; nodes = ( (378,608,l), (79,1,l), (200,1,l), (499,610,l), (499,700,l), (55,700,l), (55,608,l) ); } ); width = 525; } ); unicode = 55; }, { glyphname = eight; lastChange = "2023-08-02 08:52:29 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (428,-12,o), (537,64,o), (537,203,cs), (537,286,o), (494,348,o), (431,384,c), (473,416,o), (501,465,o), (501,530,cs), (501,649,o), (412,712,o), (299,712,cs), (188,712,o), (98,649,o), (98,530,cs), (98,465,o), (128,415,o), (168,384,c), (106,348,o), (64,286,o), (64,203,cs), (64,64,o), (171,-12,o), (300,-12,cs) ); }, { closed = 1; nodes = ( (213,68,o), (152,123,o), (152,203,cs), (152,278,o), (208,340,o), (299,340,cs), (390,340,o), (449,278,o), (449,203,cs), (449,123,o), (390,68,o), (301,68,cs) ); }, { closed = 1; nodes = ( (225,418,o), (182,465,o), (182,530,cs), (182,586,o), (222,636,o), (298,636,cs), (374,636,o), (417,586,o), (417,530,cs), (417,465,o), (374,418,o), (300,418,cs) ); } ); width = 611; }, { associatedMasterId = master01; layerId = "91AF98D4-6337-4809-84E9-869B365A9A81"; name = foreground; shapes = ( { closed = 1; nodes = ( (404,342,o), (503,408,o), (503,530,cs), (503,649,o), (404,719,o), (289,719,c), (175,719,o), (77,649,o), (77,530,cs), (77,408,o), (175,342,o), (289,342,c) ); }, { closed = 1; nodes = ( (366,642,o), (405,586,o), (405,530,cs), (405,474,o), (366,418,o), (290,418,c), (213,418,o), (174,474,o), (174,530,cs), (174,586,o), (210,642,o), (288,642,c) ); }, { closed = 1; nodes = ( (418,-12,o), (530,64,o), (530,203,cs), (530,339,o), (418,419,o), (289,419,c), (160,419,o), (49,339,o), (49,203,cs), (49,64,o), (160,-12,o), (289,-12,c) ); }, { closed = 1; nodes = ( (379,341,o), (423,274,o), (423,210,cs), (423,143,o), (379,78,o), (290,78,c), (201,78,o), (156,143,o), (156,210,cs), (156,274,o), (197,341,o), (288,341,c) ); } ); width = 587; }, { associatedMasterId = master01; layerId = "594B591A-42ED-4B4B-A577-75D6A89A309A"; name = "2 Aug 21, 17:38"; shapes = ( { closed = 1; nodes = ( (404,342,o), (503,408,o), (503,530,cs), (503,649,o), (404,719,o), (289,719,c), (175,719,o), (77,649,o), (77,530,cs), (77,408,o), (175,342,o), (289,342,c) ); }, { closed = 1; nodes = ( (366,642,o), (405,586,o), (405,530,cs), (405,474,o), (366,418,o), (290,418,c), (213,418,o), (174,474,o), (174,530,cs), (174,586,o), (210,642,o), (288,642,c) ); }, { closed = 1; nodes = ( (418,-12,o), (530,64,o), (530,203,cs), (530,339,o), (418,419,o), (289,419,c), (160,419,o), (49,339,o), (49,203,cs), (49,64,o), (160,-12,o), (289,-12,c) ); }, { closed = 1; nodes = ( (379,341,o), (423,274,o), (423,210,cs), (423,143,o), (379,78,o), (290,78,c), (201,78,o), (156,143,o), (156,210,cs), (156,274,o), (197,341,o), (288,341,c) ); } ); width = 587; } ); unicode = 56; }, { glyphname = nine; lastChange = "2023-08-02 08:52:16 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (300,0,l), (475,296,ls), (505,346,o), (535,408,o), (535,473,cs), (535,612,o), (449,712,o), (304,712,c), (164,712,o), (76,612,o), (76,473,cs), (76,346,o), (179,248,o), (296,248,cs), (327,248,o), (363,258,o), (375,273,c), (201,0,l) ); }, { closed = 1; nodes = ( (216,324,o), (164,401,o), (164,472,cs), (164,566,o), (216,632,o), (303,632,c), (400,632,o), (448,560,o), (448,472,cs), (448,401,o), (400,324,o), (307,324,c) ); } ); width = 594; }, { associatedMasterId = master01; layerId = "DE9DA14C-A867-4145-8585-487AFC56B204"; name = foreground; shapes = ( { closed = 1; nodes = ( (160,732,o), (48,645,o), (48,485,cs), (48,328,o), (164,244,o), (259,244,c), (306,244,o), (331,256,o), (336,256,c), (164,0,l), (280,0,l), (486,336,ls), (512,378,o), (529,433,o), (529,485,cs), (529,645,o), (418,732,o), (289,732,c) ); }, { closed = 1; nodes = ( (199,328,o), (151,410,o), (151,484,cs), (151,561,o), (199,639,o), (288,639,c), (377,639,o), (426,561,o), (426,484,cs), (426,410,o), (381,328,o), (290,328,c) ); } ); width = 586; } ); unicode = 57; }, { glyphname = .notdef; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,3); target = (1,3); type = Stem; }, { horizontal = 1; origin = (0,1); target = (1,1); type = Stem; }, { origin = (0,3); target = (1,0); type = Stem; }, { origin = (0,1); target = (1,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (553,-150,l), (553,730,l), (95,730,l), (95,-150,l) ); }, { closed = 1; nodes = ( (180,652,l), (468,652,l), (468,-72,l), (180,-72,l) ); } ); width = 648; } ); }, { glyphname = space; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; width = 268; }, { associatedMasterId = master01; layerId = "278BD42E-6D32-4FB3-9902-F04FFA4DB058"; name = foreground; width = 230; } ); unicode = 32; }, { glyphname = nbspace; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; width = 268; } ); metricWidth = space; unicode = 160; }, { glyphname = period; lastChange = "2023-08-03 12:38:17 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (146,-12,o), (174,17,o), (174,51,cs), (174,86,o), (146,115,o), (112,115,cs), (77,115,o), (48,86,o), (48,51,cs), (48,17,o), (77,-12,o), (112,-12,cs) ); } ); width = 222; }, { associatedMasterId = master01; layerId = "2626C257-C8D1-4BEC-A76B-04061BD798F2"; name = foreground; shapes = ( { closed = 1; nodes = ( (196,-12,o), (229,23,o), (229,62,cs), (229,104,o), (196,139,o), (156,139,cs), (115,139,o), (80,104,o), (80,62,cs), (80,23,o), (115,-12,o), (156,-12,cs) ); } ); width = 309; } ); unicode = 46; }, { glyphname = comma; lastChange = "2023-08-03 12:38:12 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (144,-119,o), (194,-39,o), (194,48,cs), (194,97,o), (163,134,o), (116,134,cs), (80,134,o), (50,99,o), (50,64,cs), (50,31,o), (81,0,o), (114,0,cs), (117,0,o), (122,0,o), (124,1,c), (124,-71,o), (50,-86,o), (50,-86,c), (50,-86,o), (49,-119,o), (50,-119,cs) ); } ); width = 244; }, { associatedMasterId = master01; layerId = "7090993E-1050-418C-BDF4-9BE23E3E6164"; name = foreground; shapes = ( { closed = 1; nodes = ( (132,0,o), (136,0,o), (139,1,c), (139,-76,o), (60,-92,o), (60,-92,c), (60,-92,o), (59,-131,o), (60,-131,cs), (171,-131,o), (214,-21,o), (214,50,c), (214,94,o), (190,142,o), (131,142,cs), (91,142,o), (60,105,o), (60,67,cs), (60,32,o), (92,0,o), (129,0,cs) ); } ); width = 274; } ); unicode = 44; }, { glyphname = colon; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (188,300,o), (216,329,o), (216,363,cs), (216,398,o), (188,427,o), (154,427,cs), (119,427,o), (90,398,o), (90,363,cs), (90,329,o), (119,300,o), (154,300,cs) ); }, { closed = 1; nodes = ( (188,-12,o), (216,17,o), (216,51,cs), (216,86,o), (188,115,o), (154,115,cs), (119,115,o), (90,86,o), (90,51,cs), (90,17,o), (119,-12,o), (154,-12,cs) ); } ); width = 306; }, { associatedMasterId = master01; layerId = "1129757A-F034-4623-96F5-2C126444C93D"; name = foreground; shapes = ( { closed = 1; nodes = ( (196,-12,o), (229,23,o), (229,62,cs), (229,104,o), (196,139,o), (156,139,cs), (115,139,o), (80,104,o), (80,62,cs), (80,23,o), (115,-12,o), (156,-12,cs) ); }, { closed = 1; nodes = ( (196,289,o), (229,324,o), (229,363,cs), (229,405,o), (196,440,o), (156,440,cs), (115,440,o), (80,405,o), (80,363,cs), (80,324,o), (115,289,o), (156,289,cs) ); } ); width = 309; } ); unicode = 58; }, { glyphname = semicolon; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (140,-119,o), (179,-20,o), (180,48,c), (180,89,o), (158,134,o), (102,134,cs), (66,134,o), (36,99,o), (36,64,cs), (36,31,o), (67,0,o), (100,0,cs), (103,0,o), (108,0,o), (110,1,c), (110,-71,o), (36,-86,o), (36,-86,c), (36,-86,o), (35,-119,o), (36,-119,cs) ); }, { closed = 1; nodes = ( (143,300,o), (171,329,o), (171,363,cs), (171,398,o), (143,427,o), (109,427,cs), (74,427,o), (45,398,o), (45,363,cs), (45,329,o), (74,300,o), (109,300,cs) ); } ); width = 270; }, { associatedMasterId = master01; layerId = "7C7B3130-D28B-462C-85A7-59917ACED75E"; name = foreground; shapes = ( { closed = 1; nodes = ( (180,289,o), (213,324,o), (213,363,cs), (213,405,o), (180,440,o), (140,440,cs), (99,440,o), (64,405,o), (64,363,cs), (64,324,o), (99,289,o), (140,289,cs) ); }, { closed = 1; nodes = ( (132,0,o), (136,0,o), (139,1,c), (139,-76,o), (60,-92,o), (60,-92,c), (60,-92,o), (59,-131,o), (60,-131,cs), (171,-131,o), (214,-21,o), (214,50,c), (214,94,o), (190,142,o), (131,142,cs), (91,142,o), (60,105,o), (60,67,cs), (60,32,o), (92,0,o), (129,0,cs) ); } ); width = 274; } ); unicode = 59; }, { glyphname = ellipsis; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { pos = (230,0); ref = period; }, { pos = (460,0); ref = period; }, { ref = period; } ); width = 770; } ); unicode = 8230; }, { glyphname = exclam; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (213,215,l), (224,720,l), (121,720,l), (135,215,l) ); }, { closed = 1; nodes = ( (210,-11,o), (240,21,o), (240,56,cs), (240,94,o), (210,126,o), (174,126,cs), (136,126,o), (105,94,o), (105,56,cs), (105,21,o), (136,-11,o), (174,-11,cs) ); } ); width = 345; }, { associatedMasterId = master01; layerId = "A93029F6-5A44-47E5-8EBB-60AEDDECB850"; name = foreground; shapes = ( { closed = 1; nodes = ( (205,215,l), (218,720,l), (89,720,l), (105,215,l) ); }, { closed = 1; nodes = ( (196,-12,o), (229,23,o), (229,62,cs), (229,104,o), (196,139,o), (156,139,cs), (115,139,o), (80,104,o), (80,62,cs), (80,23,o), (115,-12,o), (156,-12,cs) ); } ); width = 309; } ); unicode = 33; }, { glyphname = exclamdown; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (206,-232,l), (195,273,l), (117,273,l), (103,-232,l) ); }, { closed = 1; nodes = ( (192,362,o), (222,394,o), (222,432,cs), (222,467,o), (192,499,o), (156,499,cs), (118,499,o), (87,467,o), (87,432,cs), (87,394,o), (118,362,o), (156,362,cs) ); } ); width = 309; } ); unicode = 161; }, { glyphname = question; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,18); target = (0,8); type = Stem; }, { horizontal = 1; origin = (1,11); target = (1,5); type = Stem; }, { origin = (0,14); target = (0,15); type = Stem; }, { origin = (0,0); target = (0,1); type = Stem; }, { origin = (0,21); target = (0,5); type = Stem; }, { origin = (1,8); target = (1,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (188,216,o), (279,216,o), (279,216,c), (279,380,o), (463,311,o), (463,530,cs), (463,649,o), (371,719,o), (256,719,cs), (180,719,o), (108,685,o), (72,623,c), (57,597,o), (48,566,o), (48,530,c), (130,530,l), (130,587,o), (181,639,o), (255,639,cs), (333,639,o), (381,592,o), (381,536,cs), (381,372,o), (188,437,o), (188,216,cs) ); }, { closed = 1; nodes = ( (258,-12,o), (286,17,o), (286,51,cs), (286,86,o), (258,115,o), (224,115,cs), (189,115,o), (160,86,o), (160,51,cs), (160,17,o), (189,-12,o), (224,-12,cs) ); } ); width = 511; }, { associatedMasterId = master01; layerId = "CB6FE323-AA22-456B-834C-E280C3EC3E3D"; name = foreground; shapes = ( { closed = 1; nodes = ( (312,380,o), (500,311,o), (500,530,cs), (500,649,o), (404,719,o), (289,719,c), (209,719,o), (137,685,o), (101,623,c), (86,597,o), (77,566,o), (77,530,c), (174,530,l), (174,587,o), (210,636,o), (288,636,c), (366,636,o), (405,592,o), (405,536,cs), (405,372,o), (208,437,o), (208,216,cs), (208,216,o), (312,216,o), (312,216,c) ); }, { closed = 1; nodes = ( (308,-12,o), (341,23,o), (341,62,cs), (341,104,o), (308,139,o), (268,139,cs), (227,139,o), (192,104,o), (192,62,cs), (192,23,o), (227,-12,o), (268,-12,cs) ); } ); width = 587; } ); unicode = 63; }, { glyphname = questiondown; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (331,-219,o), (403,-185,o), (439,-123,c), (454,-97,o), (463,-66,o), (463,-30,c), (381,-30,l), (381,-87,o), (330,-139,o), (256,-139,cs), (178,-139,o), (130,-92,o), (130,-36,cs), (130,128,o), (323,63,o), (323,284,cs), (323,284,o), (232,284,o), (232,284,c), (232,120,o), (48,189,o), (48,-30,cs), (48,-149,o), (140,-219,o), (255,-219,cs) ); }, { closed = 1; nodes = ( (322,385,o), (351,414,o), (351,449,cs), (351,483,o), (322,512,o), (287,512,cs), (253,512,o), (225,483,o), (225,449,cs), (225,414,o), (253,385,o), (287,385,cs) ); } ); width = 511; } ); unicode = 191; }, { glyphname = periodcentered; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (188,241,o), (216,270,o), (216,304,cs), (216,339,o), (188,368,o), (154,368,cs), (119,368,o), (90,339,o), (90,304,cs), (90,270,o), (119,241,o), (154,241,cs) ); } ); width = 306; } ); unicode = 183; }, { glyphname = bullet; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (216,223,o), (254,262,o), (254,307,cs), (254,354,o), (216,393,o), (171,393,cs), (124,393,o), (85,354,o), (85,307,cs), (85,262,o), (124,223,o), (171,223,cs) ); } ); width = 339; } ); unicode = 8226; }, { glyphname = asterisk; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (244,455,l), (350,330,l), (402,374,l), (297,499,l), (431,562,l), (403,624,l), (279,567,l), (279,712,l), (211,712,l), (211,564,l), (86,622,l), (58,561,l), (191,499,l), (86,374,l), (138,330,l) ); } ); width = 489; }, { associatedMasterId = master01; layerId = "52A87255-65B2-4E80-95F9-0AF50A018D84"; name = foreground; shapes = ( { closed = 1; nodes = ( (146,321,l), (246,438,l), (344,320,l), (407,374,l), (310,489,l), (436,553,l), (400,624,l), (287,568,l), (287,714,l), (204,714,l), (204,568,l), (92,624,l), (55,553,l), (180,490,l), (83,374,l) ); } ); width = 491; } ); unicode = 42; }, { glyphname = numbersign; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (1,3); target = (1,2); type = Stem; }, { horizontal = 1; origin = (3,3); target = (3,2); type = Stem; }, { origin = (1,3); target = (3,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (454,0,l), (627,720,l), (554,720,l), (381,0,l) ); }, { closed = 1; nodes = ( (646,208,l), (646,288,l), (72,288,l), (72,208,l) ); }, { closed = 1; nodes = ( (238,0,l), (411,720,l), (338,720,l), (165,0,l) ); }, { closed = 1; nodes = ( (710,433,l), (710,513,l), (136,513,l), (136,433,l) ); } ); width = 782; }, { associatedMasterId = master01; layerId = "21C28542-C2BA-4EFE-9B17-DE8F14164D30"; name = foreground; shapes = ( { closed = 1; nodes = ( (227,0,l), (400,720,l), (306,720,l), (133,0,l) ); }, { closed = 1; nodes = ( (462,0,l), (635,720,l), (541,720,l), (368,0,l) ); }, { closed = 1; nodes = ( (707,425,l), (707,523,l), (133,523,l), (133,425,l) ); }, { closed = 1; nodes = ( (644,199,l), (644,297,l), (70,297,l), (70,199,l) ); } ); width = 777; } ); unicode = 35; }, { glyphname = slash; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (103,0,l), (396,720,l), (312,720,l), (19,0,l) ); } ); width = 400; }, { associatedMasterId = master01; layerId = "B6C497E8-57DB-4813-80B4-1FC1C004D65A"; name = foreground; shapes = ( { closed = 1; nodes = ( (97,0,l), (390,720,l), (303,720,l), (10,0,l) ); } ); width = 385; } ); unicode = 47; }, { glyphname = backslash; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (381,0,l), (88,720,l), (4,720,l), (297,0,l) ); } ); width = 400; }, { associatedMasterId = master01; layerId = "343D6EAE-1DF2-4E0E-B6B5-032545DCA862"; name = foreground; shapes = ( { closed = 1; nodes = ( (82,720,l), (-5,720,l), (288,0,l), (375,0,l) ); } ); width = 385; } ); unicode = 92; }, { glyphname = periodcentered.loclCAT; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (183,241,o), (211,270,o), (211,304,cs), (211,339,o), (183,368,o), (149,368,cs), (114,368,o), (85,339,o), (85,304,cs), (85,270,o), (114,241,o), (149,241,cs) ); } ); width = 296; } ); }, { glyphname = periodcentered.loclCAT.case; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (-72,241,o), (-44,270,o), (-44,304,cs), (-44,339,o), (-72,368,o), (-106,368,cs), (-141,368,o), (-170,339,o), (-170,304,cs), (-170,270,o), (-141,241,o), (-106,241,cs) ); } ); width = 41; } ); }, { glyphname = hyphen; lastChange = "2023-08-03 12:33:23 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,3); target = (0,2); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (418,255,l), (418,335,l), (70,335,l), (70,255,l) ); } ); width = 488; }, { associatedMasterId = master01; layerId = "A4E3A6E5-E339-49A3-BA7C-5350A83F40F5"; name = foreground; shapes = ( { closed = 1; nodes = ( (428,247,l), (428,345,l), (80,345,l), (80,247,l) ); } ); width = 508; } ); unicode = 45; }, { glyphname = endash; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (484,255,l), (484,335,l), (71,335,l), (71,255,l) ); } ); width = 555; } ); unicode = 8211; }, { glyphname = emdash; lastChange = "2023-08-03 12:40:45 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (816,253,l), (816,333,l), (71,333,l), (71,253,l) ); } ); width = 887; } ); unicode = 8212; }, { glyphname = underscore; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,3); target = (0,2); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (516,0,l), (516,80,l), (30,80,l), (30,0,l) ); } ); width = 546; }, { associatedMasterId = master01; layerId = "1AB4D43C-2735-4A3F-815D-32BCD16357D5"; name = foreground; shapes = ( { closed = 1; nodes = ( (546,0,l), (546,98,l), (60,98,l), (60,0,l) ); } ); width = 606; } ); unicode = 95; }, { glyphname = parenleft; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (273,-60,l), (276,-58,o), (156,82,o), (156,345,c), (156,607,o), (276,748,o), (273,750,c), (180,750,l), (180,750,o), (70,580,o), (70,345,c), (70,109,o), (180,-60,o), (180,-60,c) ); } ); width = 303; }, { associatedMasterId = master01; layerId = "A003329C-BEC9-4397-9AAD-9155A5EADE70"; name = foreground; shapes = ( { closed = 1; nodes = ( (62,109,o), (172,-60,o), (172,-60,c), (280,-60,l), (283,-58,o), (163,82,o), (163,345,c), (163,607,o), (283,748,o), (280,750,c), (172,750,l), (172,750,o), (62,580,o), (62,345,c) ); } ); width = 313; } ); unicode = 40; }, { glyphname = parenright; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (122,-60,l), (122,-60,o), (232,109,o), (232,345,c), (232,580,o), (122,750,o), (122,750,c), (30,750,l), (27,748,o), (147,607,o), (147,345,c), (147,82,o), (27,-58,o), (30,-60,c) ); } ); width = 302; }, { associatedMasterId = master01; layerId = "FEA7CF8C-5847-4A35-8A6B-C76339FB953A"; name = foreground; shapes = ( { closed = 1; nodes = ( (243,580,o), (133,750,o), (133,750,c), (25,750,l), (22,748,o), (142,607,o), (142,345,c), (142,82,o), (22,-58,o), (25,-60,c), (133,-60,l), (133,-60,o), (243,109,o), (243,345,c) ); } ); width = 303; } ); unicode = 41; }, { glyphname = braceleft; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (268,-93,l), (268,-12,l), (246,-12,ls), (226,-12,o), (214,-1,o), (214,24,cs), (214,232,ls), (214,290,o), (191,307,o), (150,316,c), (191,325,o), (214,340,o), (214,395,cs), (214,608,ls), (214,633,o), (226,644,o), (246,644,cs), (268,644,l), (268,725,l), (221,725,ls), (155,725,o), (133,693,o), (133,625,cs), (133,422,ls), (133,371,o), (114,353,o), (62,353,c), (62,278,l), (114,278,o), (133,260,o), (133,209,cs), (133,7,ls), (133,-61,o), (155,-93,o), (221,-93,cs) ); } ); width = 296; } ); unicode = 123; }, { glyphname = braceright; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (75,-93,ls), (141,-93,o), (163,-61,o), (163,7,cs), (163,209,ls), (163,260,o), (182,278,o), (234,278,c), (234,353,l), (182,353,o), (163,371,o), (163,422,cs), (163,625,ls), (163,693,o), (141,725,o), (75,725,cs), (28,725,l), (28,644,l), (50,644,ls), (70,644,o), (82,633,o), (82,608,cs), (82,395,ls), (82,340,o), (105,325,o), (146,316,c), (105,307,o), (82,290,o), (82,232,cs), (82,24,ls), (82,-1,o), (70,-12,o), (50,-12,cs), (28,-12,l), (28,-93,l) ); } ); width = 296; } ); unicode = 125; }, { glyphname = bracketleft; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (344,-51,l), (344,25,l), (175,25,l), (175,678,l), (345,678,l), (345,753,l), (95,753,l), (95,-51,l) ); } ); width = 383; } ); unicode = 91; }, { glyphname = bracketright; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (288,-51,l), (288,753,l), (38,753,l), (38,678,l), (208,678,l), (208,25,l), (39,25,l), (39,-51,l) ); } ); width = 383; } ); unicode = 93; }, { glyphname = quotesinglbase; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = comma; } ); width = 274; } ); unicode = 8218; }, { glyphname = quotedblbase; lastChange = "2023-08-03 12:38:02 +0000"; layers = ( { layerId = master01; shapes = ( { pos = (183,0); ref = comma; }, { ref = comma; } ); width = 463; } ); unicode = 8222; }, { glyphname = quotedblleft; lastChange = "2023-08-03 09:24:59 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (355,467,o), (382,495,o), (382,537,cs), (382,574,o), (356,601,o), (318,601,cs), (315,601,o), (310,601,o), (308,600,c), (308,672,o), (382,687,o), (382,687,c), (382,687,o), (383,720,o), (382,720,cs), (278,720,o), (239,621,o), (238,553,c), (238,512,o), (260,467,o), (316,467,cs) ); }, { closed = 1; nodes = ( (162,467,o), (189,495,o), (189,537,cs), (189,574,o), (163,601,o), (125,601,cs), (122,601,o), (117,601,o), (115,600,c), (115,672,o), (189,687,o), (189,687,c), (189,687,o), (190,720,o), (189,720,cs), (85,720,o), (46,621,o), (45,553,c), (45,512,o), (67,467,o), (123,467,cs) ); } ); width = 432; } ); unicode = 8220; }, { glyphname = quotedblright; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (347,472,o), (386,571,o), (387,639,c), (387,680,o), (365,725,o), (309,725,cs), (270,725,o), (243,697,o), (243,655,cs), (243,618,o), (269,591,o), (307,591,cs), (310,591,o), (315,591,o), (317,592,c), (317,520,o), (243,505,o), (243,505,c), (243,505,o), (242,472,o), (243,472,cs) ); }, { closed = 1; nodes = ( (154,472,o), (193,571,o), (194,639,c), (194,680,o), (172,725,o), (116,725,cs), (77,725,o), (50,697,o), (50,655,cs), (50,618,o), (76,591,o), (114,591,cs), (117,591,o), (122,591,o), (124,592,c), (124,520,o), (50,505,o), (50,505,c), (50,505,o), (49,472,o), (50,472,cs) ); } ); width = 432; } ); unicode = 8221; }, { glyphname = quoteleft; lastChange = "2023-08-03 09:26:13 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (164,467,o), (194,502,o), (194,537,cs), (194,570,o), (163,601,o), (130,601,cs), (127,601,o), (122,601,o), (120,600,c), (120,672,o), (194,687,o), (194,687,c), (194,687,o), (195,720,o), (194,720,cs), (90,720,o), (51,621,o), (50,553,c), (50,512,o), (72,467,o), (128,467,cs) ); } ); width = 244; } ); unicode = 8216; }, { glyphname = quoteright; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (154,467,o), (193,566,o), (194,634,c), (194,675,o), (172,720,o), (116,720,cs), (80,720,o), (50,685,o), (50,650,cs), (50,617,o), (81,586,o), (114,586,cs), (117,586,o), (122,586,o), (124,587,c), (124,515,o), (50,500,o), (50,500,c), (50,500,o), (49,467,o), (50,467,cs) ); } ); width = 244; } ); unicode = 8217; }, { glyphname = guillemetleft; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (631,120,l), (382,287,l), (631,454,l), (631,544,l), (304,325,l), (304,249,l), (631,30,l) ); }, { closed = 1; nodes = ( (375,121,l), (126,288,l), (375,455,l), (375,545,l), (48,326,l), (48,250,l), (375,31,l) ); } ); width = 687; } ); unicode = 171; }, { glyphname = guillemetright; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (639,250,l), (639,326,l), (312,545,l), (312,455,l), (561,288,l), (312,121,l), (312,31,l) ); }, { closed = 1; nodes = ( (383,249,l), (383,325,l), (56,544,l), (56,454,l), (305,287,l), (56,120,l), (56,30,l) ); } ); width = 687; } ); unicode = 187; }, { glyphname = guilsinglleft; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (345,121,l), (122,288,l), (345,455,l), (345,545,l), (48,326,l), (48,250,l), (345,31,l) ); } ); width = 401; } ); unicode = 8249; }, { glyphname = guilsinglright; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (353,250,l), (353,326,l), (56,545,l), (56,455,l), (279,288,l), (56,121,l), (56,31,l) ); } ); width = 401; } ); unicode = 8250; }, { glyphname = quotedbl; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (320,465,l), (328,499,o), (364,621,o), (364,658,c), (364,696,o), (337,720,o), (306,720,cs), (273,720,o), (246,696,o), (246,658,c), (246,621,o), (283,499,o), (291,465,c) ); }, { closed = 1; nodes = ( (154,465,l), (162,499,o), (198,621,o), (198,658,c), (198,696,o), (171,720,o), (140,720,cs), (107,720,o), (80,696,o), (80,658,c), (80,621,o), (117,499,o), (125,465,c) ); } ); width = 444; }, { associatedMasterId = master01; layerId = "24C34471-2878-49D9-AC64-055C689381E7"; name = foreground; shapes = ( { closed = 1; nodes = ( (354,459,l), (387,579,o), (401,624,o), (401,651,cs), (401,689,o), (371,721,o), (335,721,cs), (298,721,o), (266,689,o), (266,651,cs), (266,625,o), (280,579,o), (314,459,c) ); }, { closed = 1; nodes = ( (153,459,l), (186,579,o), (200,624,o), (200,651,cs), (200,689,o), (170,721,o), (134,721,cs), (97,721,o), (65,689,o), (65,651,cs), (65,625,o), (79,579,o), (113,459,c) ); } ); width = 473; } ); unicode = 34; }, { glyphname = quotesingle; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (154,465,l), (162,499,o), (198,621,o), (198,658,c), (198,696,o), (171,720,o), (140,720,cs), (107,720,o), (80,696,o), (80,658,c), (80,621,o), (117,499,o), (125,465,c) ); } ); width = 278; }, { associatedMasterId = master01; layerId = "9EC1078A-27A8-4ABD-A85E-C1F27DFD7ADE"; name = foreground; shapes = ( { closed = 1; nodes = ( (158,459,l), (191,579,o), (205,624,o), (205,651,cs), (205,689,o), (175,721,o), (139,721,cs), (102,721,o), (70,689,o), (70,651,cs), (70,625,o), (84,579,o), (118,459,c) ); } ); width = 282; } ); unicode = 39; }, { glyphname = at; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (639,-151,o), (712,-112,o), (808,-56,c), (770,8,l), (686,-45,o), (608,-77,o), (502,-77,cs), (289,-77,o), (165,84,o), (165,281,cs), (165,478,o), (289,638,o), (502,638,cs), (711,638,o), (821,512,o), (821,348,cs), (821,264,o), (796,149,o), (712,149,cs), (686,149,o), (659,171,o), (661,207,c), (696,502,l), (618,502,l), (608,419,l), (591,479,o), (533,512,o), (480,512,cs), (351,512,o), (280,402,o), (266,294,cs), (251,169,o), (313,67,o), (426,67,cs), (484,67,o), (557,99,o), (583,144,c), (596,103,o), (633,67,o), (701,67,cs), (866,67,o), (905,249,o), (905,348,cs), (905,539,o), (781,712,o), (502,712,cs), (223,712,o), (81,512,o), (81,279,cs), (81,57,o), (222,-151,o), (502,-151,cs) ); }, { closed = 1; nodes = ( (367,144,o), (339,218,o), (348,292,cs), (357,366,o), (403,437,o), (483,437,cs), (564,437,o), (594,362,o), (586,288,cs), (577,214,o), (532,144,o), (449,144,cs) ); } ); width = 977; } ); unicode = 64; }, { glyphname = ampersand; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,38); target = (1,9); type = Stem; }, { horizontal = 1; origin = (2,5); target = (0,26); type = Stem; }, { horizontal = 1; origin = (0,5); target = (0,9); type = Stem; }, { origin = (0,35); target = (1,2); type = Stem; }, { origin = (2,8); target = (0,23); type = Stem; }, { origin = (0,16); target = (0,15); type = Stem; }, { origin = (0,29); target = (2,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (363,-12,o), (419,15,o), (461,70,c), (505,17,o), (550,0,o), (608,0,cs), (615,0,o), (615,0,o), (624,0,c), (624,70,l), (562,70,o), (540,85,o), (503,128,c), (534,182,o), (559,262,o), (560,332,c), (488,332,l), (488,285,o), (473,226,o), (452,186,c), (323,359,l), (419,423,o), (473,478,o), (473,564,cs), (473,623,o), (419,714,o), (311,713,cs), (196,712,o), (135,629,o), (135,549,cs), (135,486,o), (181,410,o), (216,372,c), (123,316,o), (75,261,o), (75,168,cs), (75,58,o), (155,-12,o), (285,-12,cs) ); }, { closed = 1; nodes = ( (203,66,o), (153,115,o), (153,179,cs), (153,235,o), (196,280,o), (259,320,c), (407,127,l), (376,85,o), (336,66,o), (285,66,cs) ); }, { closed = 1; nodes = ( (245,458,o), (213,492,o), (213,551,cs), (213,602,o), (246,641,o), (310,641,cs), (352,641,o), (395,604,o), (395,555,cs), (395,503,o), (363,468,o), (279,412,c) ); } ); width = 668; }, { associatedMasterId = master01; layerId = "BC46DC87-AB29-432C-8E82-6AD56269F461"; name = foreground; shapes = ( { closed = 1; nodes = ( (506,-1,l), (628,-1,l), (311,350,l), (259,405,o), (185,460,o), (185,534,c), (185,582,o), (210,640,o), (286,640,cs), (344,640,o), (381,596,o), (381,547,cs), (381,495,o), (339,466,o), (265,418,c), (130,341,o), (50,284,o), (50,177,c), (50,54,o), (155,-11,o), (284,-11,c), (492,-11,o), (570,203,o), (575,333,c), (486,333,l), (486,196,o), (382,79,o), (284,79,c), (204,79,o), (144,107,o), (144,180,c), (144,277,o), (257,312,o), (352,378,c), (417,423,o), (470,481,o), (470,560,c), (470,619,o), (414,713,o), (287,713,c), (150,713,o), (89,621,o), (89,541,c), (89,471,o), (117,424,o), (211,323,c) ); } ); width = 648; } ); unicode = 38; }, { glyphname = paragraph; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = top; pos = (412,712); } ); hints = ( { horizontal = 1; origin = (0,13); target = (1,3); type = Stem; }, { horizontal = 1; origin = (0,6); target = (1,0); type = Stem; }, { horizontal = 1; origin = (0,13); target = (0,2); type = Stem; }, { origin = (1,2); target = (0,0); type = Stem; }, { origin = (1,2); target = (0,2); type = Stem; }, { origin = (1,3); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (603,0,l), (603,76,l), (484,76,l), (484,624,l), (603,624,l), (603,700,l), (224,700,ls), (142,700,o), (60,637,o), (60,535,cs), (60,429,o), (142,371,o), (224,371,c), (224,0,l) ); }, { closed = 1; nodes = ( (312,624,l), (396,624,l), (396,74,l), (312,74,l) ); } ); width = 668; } ); unicode = 182; }, { glyphname = section; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (416,62,o), (485,130,o), (485,211,cs), (485,404,o), (173,430,o), (173,542,cs), (173,584,o), (205,624,o), (270,624,cs), (342,624,o), (380,588,o), (380,555,c), (466,555,l), (466,617,o), (416,700,o), (271,700,cs), (149,700,o), (89,612,o), (89,539,cs), (89,345,o), (400,344,o), (400,211,cs), (400,161,o), (352,120,o), (311,114,c), (326,53,l) ); }, { closed = 1; nodes = ( (400,-230,o), (460,-142,o), (460,-69,cs), (460,125,o), (149,126,o), (149,259,cs), (149,309,o), (197,350,o), (238,356,c), (223,417,l), (133,408,o), (64,340,o), (64,259,cs), (64,66,o), (376,40,o), (376,-72,cs), (376,-114,o), (344,-154,o), (279,-154,cs), (207,-154,o), (169,-118,o), (169,-85,c), (83,-85,l), (83,-147,o), (133,-230,o), (278,-230,cs) ); } ); width = 549; } ); unicode = 167; }, { glyphname = copyright; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (629,-12,o), (757,164,o), (757,353,cs), (757,544,o), (629,720,o), (403,720,cs), (177,720,o), (49,544,o), (49,353,cs), (49,164,o), (177,-12,o), (403,-12,cs) ); }, { closed = 1; nodes = ( (475,151,o), (534,188,o), (560,252,c), (499,274,l), (483,237,o), (454,222,o), (406,222,c), (337,222,o), (303,274,o), (303,353,cs), (303,428,o), (332,483,o), (406,483,c), (454,483,o), (483,468,o), (499,430,c), (560,453,l), (534,517,o), (476,554,o), (408,554,c), (312,554,o), (227,477,o), (227,351,cs), (227,228,o), (312,151,o), (408,151,c) ); }, { closed = 1; nodes = ( (247,64,o), (129,184,o), (129,353,cs), (129,518,o), (246,644,o), (403,644,cs), (560,644,o), (677,518,o), (677,353,cs), (677,184,o), (559,64,o), (403,64,cs) ); } ); width = 806; } ); unicode = 169; }, { glyphname = registered; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (587,126,o), (691,269,o), (691,422,cs), (691,577,o), (587,720,o), (404,720,cs), (221,720,o), (117,577,o), (117,422,cs), (117,269,o), (221,126,o), (404,126,cs) ); }, { closed = 1; nodes = ( (282,199,o), (191,291,o), (191,422,cs), (191,551,o), (282,646,o), (404,646,cs), (526,646,o), (617,551,o), (617,422,cs), (617,291,o), (526,199,o), (404,199,cs) ); }, { closed = 1; nodes = ( (361,279,l), (361,386,l), (390,386,l), (454,279,l), (524,279,l), (450,396,l), (478,407,o), (505,435,o), (505,487,cs), (505,534,o), (466,571,o), (406,571,cs), (300,571,l), (300,279,l) ); }, { closed = 1; nodes = ( (360,517,l), (393,517,ls), (428,517,o), (445,505,o), (445,482,c), (445,452,o), (428,443,o), (393,443,cs), (360,443,l) ); } ); width = 808; } ); unicode = 174; }, { glyphname = trademark; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (1,4); target = (1,5); type = Stem; }, { origin = (1,7); target = (1,0); type = Stem; }, { horizontal = 1; origin = (0,12); target = (0,11); type = Stem; }, { origin = (0,12); target = (0,0); type = Stem; }, { place = (1170,88); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (434,319,l), (434,573,l), (534,353,l), (575,353,l), (675,573,l), (675,319,l), (745,319,l), (745,700,l), (660,700,l), (555,471,l), (449,700,l), (364,700,l), (364,319,l) ); }, { closed = 1; nodes = ( (202,319,l), (202,640,l), (309,640,l), (309,700,l), (28,700,l), (28,640,l), (132,640,l), (132,319,l) ); } ); width = 773; } ); unicode = 8482; }, { glyphname = degree; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (371,471,o), (415,531,o), (415,595,cs), (415,661,o), (371,720,o), (294,720,cs), (218,720,o), (174,661,o), (174,595,cs), (174,531,o), (218,471,o), (294,471,cs) ); }, { closed = 1; nodes = ( (261,535,o), (236,560,o), (236,595,cs), (236,630,o), (261,656,o), (294,656,cs), (328,656,o), (353,630,o), (353,595,cs), (353,560,o), (328,535,o), (294,535,cs) ); } ); width = 600; } ); unicode = 176; }, { glyphname = bar; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (185,-12,l), (185,720,l), (97,720,l), (97,-12,l) ); } ); width = 282; } ); unicode = 124; }, { glyphname = cent; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (378,95,o), (455,143,o), (490,226,c), (414,256,l), (393,205,o), (350,171,o), (290,171,c), (189,171,o), (138,255,o), (138,359,cs), (138,463,o), (189,544,o), (290,544,c), (350,544,o), (393,510,o), (414,459,c), (490,489,l), (455,572,o), (380,620,o), (292,620,c), (166,620,o), (54,520,o), (54,356,cs), (54,195,o), (166,95,o), (292,95,c) ); }, { closed = 1; nodes = ( (341,0,l), (341,152,l), (261,152,l), (261,0,l) ); }, { closed = 1; nodes = ( (335,548,l), (335,700,l), (255,700,l), (255,548,l) ); } ); width = 563; }, { associatedMasterId = master01; layerId = "67A10FD7-782D-4391-978E-3D650EA85A7F"; name = foreground; width = 563; } ); unicode = 162; }, { glyphname = dollar; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (479,-12,o), (592,58,o), (592,195,c), (592,340,o), (493,370,o), (364,395,c), (271,413,o), (170,433,o), (170,521,cs), (170,591,o), (247,632,o), (322,632,cs), (422,632,o), (473,572,o), (483,513,c), (585,513,l), (580,603,o), (502,712,o), (329,712,c), (164,712,o), (82,618,o), (82,516,c), (82,380,o), (176,338,o), (286,317,c), (397,300,o), (504,287,o), (504,186,c), (505,114,o), (422,68,o), (334,68,c), (240,70,o), (175,129,o), (161,214,c), (58,214,l), (71,99,o), (159,-12,o), (334,-12,c) ); }, { closed = 1; nodes = ( (370,-91,l), (370,791,l), (289,791,l), (289,-91,l) ); } ); width = 643; }, { associatedMasterId = master01; layerId = "B77E3584-C066-4B83-9C04-DBBF2850799D"; name = foreground; shapes = ( { closed = 1; nodes = ( (271,420,o), (184,434,o), (184,522,cs), (184,592,o), (247,626,o), (322,626,cs), (422,626,o), (473,573,o), (483,514,c), (585,514,l), (580,604,o), (502,713,o), (329,713,c), (164,713,o), (82,619,o), (82,517,c), (82,369,o), (176,335,o), (286,314,c), (397,297,o), (492,288,o), (492,187,c), (493,115,o), (422,78,o), (334,78,c), (240,80,o), (175,130,o), (161,215,c), (58,215,l), (71,100,o), (159,-11,o), (334,-11,c), (479,-11,o), (592,59,o), (592,196,c), (592,341,o), (493,377,o), (364,402,c) ); }, { closed = 1; nodes = ( (370,-91,l), (370,791,l), (289,791,l), (289,-91,l) ); } ); width = 643; } ); unicode = 36; }, { glyphname = euro; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (439,-13,o), (529,40,o), (575,121,c), (494,163,l), (460,105,o), (398,67,o), (316,67,cs), (172,67,o), (97,193,o), (97,356,cs), (97,519,o), (172,643,o), (316,643,cs), (398,643,o), (460,605,o), (494,547,c), (575,589,l), (529,670,o), (439,723,o), (316,723,cs), (96,723,o), (7,539,o), (7,355,cs), (7,171,o), (96,-13,o), (316,-13,cs) ); }, { closed = 1; nodes = ( (431,225,l), (451,305,l), (-51,305,l), (-71,225,l) ); }, { closed = 1; nodes = ( (431,370,l), (451,450,l), (-51,450,l), (-71,370,l) ); } ); width = 600; } ); unicode = 8364; }, { glyphname = sterling; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (341,0,ls), (463,0,o), (520,74,o), (545,158,c), (468,179,l), (453,124,o), (414,80,o), (337,80,cs), (150,80,l), (174,97,o), (247,167,o), (247,278,cs), (247,399,o), (146,440,o), (146,528,cs), (146,584,o), (195,632,o), (273,632,c), (351,632,o), (396,576,o), (396,519,c), (484,519,l), (484,555,o), (475,589,o), (460,615,c), (424,677,o), (352,712,o), (272,712,c), (157,712,o), (60,647,o), (60,528,cs), (60,413,o), (157,381,o), (157,289,cs), (157,192,o), (98,119,o), (45,80,c), (45,0,l) ); }, { closed = 1; nodes = ( (395,281,l), (395,361,l), (61,361,l), (61,281,l) ); } ); width = 568; }, { associatedMasterId = master01; layerId = "39949623-1A73-454F-BBEA-2B76B8F5BB59"; name = foreground; width = 614; } ); unicode = 163; }, { glyphname = yen; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (345,0,l), (342,309,l), (583,700,l), (490,700,l), (299,390,l), (111,700,l), (11,700,l), (260,309,l), (257,0,l) ); }, { closed = 1; nodes = ( (513,163,l), (513,243,l), (81,243,l), (81,163,l) ); }, { closed = 1; nodes = ( (513,308,l), (513,388,l), (81,388,l), (81,308,l) ); } ); width = 594; } ); unicode = 165; }, { glyphname = plus; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (1,3); target = (1,2); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (320,84,l), (320,512,l), (232,512,l), (232,84,l) ); }, { closed = 1; nodes = ( (474,258,l), (474,338,l), (77,338,l), (77,258,l) ); } ); width = 550; }, { associatedMasterId = master01; layerId = "A5CB3561-8809-4C40-98EF-8A07A48E9182"; name = foreground; shapes = ( { closed = 1; nodes = ( (457,249,l), (457,347,l), (60,347,l), (60,249,l) ); }, { closed = 1; nodes = ( (307,512,l), (209,512,l), (209,84,l), (307,84,l) ); } ); width = 517; } ); unicode = 43; }, { glyphname = minus; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (490,255,l), (490,335,l), (61,335,l), (61,255,l) ); } ); width = 550; } ); unicode = 8722; }, { glyphname = multiply; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (275,277,l), (435,118,l), (487,170,l), (327,329,l), (487,488,l), (435,540,l), (275,381,l), (116,540,l), (64,488,l), (223,329,l), (64,170,l), (116,118,l) ); } ); width = 550; } ); unicode = 215; }, { glyphname = divide; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (484,220,l), (484,300,l), (66,300,l), (66,220,l) ); }, { closed = 1; nodes = ( (310,1,o), (338,30,o), (338,64,cs), (338,99,o), (310,128,o), (276,128,cs), (241,128,o), (212,99,o), (212,64,cs), (212,30,o), (241,1,o), (276,1,cs) ); }, { closed = 1; nodes = ( (310,385,o), (338,414,o), (338,448,cs), (338,483,o), (310,512,o), (276,512,cs), (241,512,o), (212,483,o), (212,448,cs), (212,414,o), (241,385,o), (276,385,cs) ); } ); width = 550; } ); unicode = 247; }, { glyphname = equal; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { hints = ( { horizontal = 1; place = (121,205); target = (0,3); type = Stem; }, { horizontal = 1; origin = (0,3); target = (0,2); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (463,326,l), (463,406,l), (88,406,l), (88,326,l) ); }, { closed = 1; nodes = ( (462,136,l), (462,216,l), (87,216,l), (87,136,l) ); } ); width = 550; }, { associatedMasterId = master01; layerId = "FCFF93B1-7D38-4FD5-A711-74071FE2EC06"; name = foreground; shapes = ( { closed = 1; nodes = ( (443,320,l), (443,418,l), (68,418,l), (68,320,l) ); }, { closed = 1; nodes = ( (443,134,l), (443,232,l), (68,232,l), (68,134,l) ); } ); width = 508; } ); unicode = 61; }, { glyphname = greater; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (502,249,l), (502,325,l), (48,544,l), (48,459,l), (396,287,l), (48,115,l), (48,30,l) ); } ); width = 550; } ); unicode = 62; }, { glyphname = less; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (502,115,l), (154,287,l), (502,459,l), (502,544,l), (48,325,l), (48,249,l), (502,30,l) ); } ); width = 550; } ); unicode = 60; }, { glyphname = asciitilde; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (422,218,o), (460,260,o), (477,292,c), (432,341,l), (418,325,o), (400,292,o), (354,292,cs), (314,292,o), (264,354,o), (199,354,cs), (132,354,o), (89,313,o), (73,281,c), (118,231,l), (132,248,o), (150,281,o), (194,281,cs), (235,281,o), (287,218,o), (363,218,cs) ); } ); width = 550; } ); unicode = 126; }, { glyphname = asciicircum; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (332,699,l), (284,699,l), (77,419,l), (169,419,l), (308,619,l), (446,418,l), (539,418,l) ); } ); width = 600; } ); unicode = 94; }, { glyphname = percent; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,0); target = (0,0); type = Stem; }, { horizontal = 1; place = (249,69); type = Stem; }, { horizontal = 1; origin = (1,11); target = (2,11); type = Stem; }, { horizontal = 1; origin = (1,5); target = (2,5); type = Stem; }, { origin = (1,8); target = (2,2); type = Stem; }, { origin = (2,8); target = (1,2); type = Stem; }, { place = (525,10); target = (0,2); type = Stem; }, { place = (757,76); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (320,0,l), (613,720,l), (535,720,l), (242,0,l) ); }, { closed = 1; nodes = ( (292,391,o), (366,450,o), (366,556,cs), (366,659,o), (296,720,o), (214,720,c), (131,720,o), (58,658,o), (58,555,cs), (58,449,o), (128,391,o), (210,391,c) ); }, { closed = 1; nodes = ( (159,458,o), (132,507,o), (132,555,cs), (132,605,o), (159,652,o), (213,652,c), (265,652,o), (292,606,o), (292,556,cs), (292,509,o), (262,458,o), (211,458,c) ); }, { closed = 1; nodes = ( (729,-9,o), (803,50,o), (803,156,cs), (803,259,o), (733,320,o), (651,320,c), (568,320,o), (495,258,o), (495,155,cs), (495,49,o), (565,-9,o), (647,-9,c) ); }, { closed = 1; nodes = ( (596,58,o), (569,107,o), (569,155,cs), (569,205,o), (596,252,o), (650,252,c), (702,252,o), (729,206,o), (729,156,cs), (729,109,o), (699,58,o), (648,58,c) ); } ); width = 861; }, { associatedMasterId = master01; layerId = "B4672107-219B-492B-AE8A-C8526732ACAF"; name = foreground; shapes = ( { closed = 1; nodes = ( (351,0,l), (644,720,l), (557,720,l), (264,0,l) ); }, { closed = 1; nodes = ( (323,391,o), (397,450,o), (397,556,cs), (397,659,o), (327,720,o), (245,720,c), (162,720,o), (89,658,o), (89,555,cs), (89,449,o), (159,391,o), (241,391,c) ); }, { closed = 1; nodes = ( (295,651,o), (321,605,o), (321,556,cs), (321,510,o), (292,460,o), (242,460,c), (191,460,o), (166,508,o), (166,555,cs), (166,604,o), (191,651,o), (244,651,c) ); }, { closed = 1; nodes = ( (759,-11,o), (833,48,o), (833,154,cs), (833,257,o), (763,318,o), (681,318,c), (598,318,o), (525,256,o), (525,153,cs), (525,47,o), (595,-11,o), (677,-11,c) ); }, { closed = 1; nodes = ( (731,249,o), (757,203,o), (757,154,cs), (757,108,o), (728,58,o), (678,58,c), (627,58,o), (602,106,o), (602,153,cs), (602,202,o), (627,249,o), (680,249,c) ); } ); width = 918; } ); unicode = 37; }, { glyphname = brevecomb_acutecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = brevecomb; }, { pos = (248,201); ref = acutecomb; } ); width = 600; } ); }, { glyphname = brevecomb_gravecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = brevecomb; }, { pos = (125,190); ref = gravecomb; } ); width = 600; } ); }, { glyphname = brevecomb_hookabovecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (326,739,l), (326,767,l), (368,772,o), (404,802,o), (404,847,cs), (404,918,o), (335,939,o), (258,934,c), (258,881,l), (301,885,o), (344,874,o), (344,847,cs), (344,816,o), (307,805,o), (264,805,c), (264,739,l) ); }, { ref = brevecomb; } ); width = 600; } ); }, { glyphname = brevecomb_tildecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = brevecomb; }, { pos = (0,161); ref = tildecomb; } ); width = 600; } ); }, { glyphname = circumflexcomb_acutecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { pos = (1,0); ref = circumflexcomb; }, { pos = (320,98); ref = acutecomb; } ); width = 420; } ); }, { glyphname = circumflexcomb_gravecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = circumflexcomb; }, { pos = (255,99); ref = gravecomb; } ); width = 420; } ); }, { glyphname = circumflexcomb_hookabovecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = circumflexcomb; }, { pos = (68,142); ref = hookabovecomb; } ); width = 420; } ); }, { glyphname = circumflexcomb_tildecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = circumflexcomb; }, { pos = (-82,182); ref = tildecomb; } ); width = 420; } ); }, { glyphname = dieresiscomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (161,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); }, { pos = (-27,636); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (280,581,o), (304,606,o), (304,636,cs), (304,666,o), (280,691,o), (250,691,cs), (220,691,o), (195,666,o), (195,636,cs), (195,606,o), (220,581,o), (250,581,cs) ); }, { closed = 1; nodes = ( (105,581,o), (129,606,o), (129,636,cs), (129,666,o), (105,691,o), (75,691,cs), (45,691,o), (20,666,o), (20,636,cs), (20,606,o), (45,581,o), (75,581,cs) ); } ); width = 324; } ); unicode = 776; }, { glyphname = dotaccentcomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (74,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); }, { pos = (-27,636); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (104,581,o), (128,606,o), (128,636,cs), (128,666,o), (104,691,o), (74,691,cs), (44,691,o), (19,666,o), (19,636,cs), (19,606,o), (44,581,o), (74,581,cs) ); } ); width = 147; } ); unicode = 775; }, { glyphname = gravecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (178,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (215,557,l), (131,712,l), (21,712,l), (143,557,l) ); } ); width = 237; } ); unicode = 768; }, { glyphname = acutecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (56,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (96,557,l), (218,712,l), (108,712,l), (24,557,l) ); } ); width = 237; } ); unicode = 769; }, { glyphname = hungarumlautcomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (253,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (385,557,l), (507,712,l), (387,712,l), (303,557,l) ); }, { closed = 1; nodes = ( (193,557,l), (315,712,l), (195,712,l), (111,557,l) ); } ); width = 600; } ); unicode = 779; }, { glyphname = caroncomb.alt; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (391,529,l), (459,712,l), (352,712,l), (322,529,l) ); } ); width = 600; } ); }, { glyphname = circumflexcomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (211,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (135,557,l), (213,648,l), (291,557,l), (373,557,l), (238,712,l), (188,712,l), (52,557,l) ); } ); width = 420; }, { associatedMasterId = master01; layerId = "20458CA3-7F03-4177-ABD8-708FA8DF63BB"; name = "3 Aug 21, 16:24"; shapes = ( { closed = 1; nodes = ( (104,557,l), (190,557,l), (353,745,l), (267,745,l) ); }, { closed = 1; nodes = ( (216,745,l), (379,557,l), (465,557,l), (302,745,l) ); }, { closed = 1; nodes = ( (104,557,l), (190,557,l), (353,745,l), (267,745,l) ); }, { closed = 1; nodes = ( (216,745,l), (379,557,l), (465,557,l), (302,745,l) ); } ); width = 600; } ); unicode = 770; }, { glyphname = caroncomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (213,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); }, { pos = (-27,636); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (238,557,l), (373,712,l), (291,712,l), (213,621,l), (135,712,l), (52,712,l), (188,557,l) ); } ); width = 420; } ); unicode = 780; }, { glyphname = brevecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (307,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (402,557,o), (457,631,o), (457,712,c), (385,712,l), (385,668,o), (357,627,o), (306,627,cs), (257,627,o), (228,668,o), (228,712,c), (156,712,l), (156,631,o), (211,557,o), (306,557,cs) ); } ); width = 600; } ); unicode = 774; }, { glyphname = ringcomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (118,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (182,557,o), (219,607,o), (219,660,cs), (219,715,o), (182,764,o), (118,764,cs), (55,764,o), (18,715,o), (18,660,cs), (18,607,o), (55,557,o), (118,557,cs) ); }, { closed = 1; nodes = ( (93,614,o), (74,633,o), (74,660,cs), (74,687,o), (93,707,o), (118,707,c), (144,707,o), (163,687,o), (163,660,cs), (163,633,o), (144,614,o), (118,614,cs) ); } ); width = 237; } ); unicode = 778; }, { glyphname = tildecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (299,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); }, { pos = (-26,636); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (422,574,o), (457,614,o), (471,643,c), (433,688,l), (422,673,o), (406,644,o), (368,644,cs), (334,644,o), (276,702,o), (233,702,cs), (179,702,o), (144,662,o), (130,633,c), (168,588,l), (179,603,o), (195,632,o), (233,632,cs), (267,632,o), (325,574,o), (368,574,cs) ); } ); width = 600; } ); unicode = 771; }, { glyphname = macroncomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (301,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); }, { pos = (-27,636); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (451,599,l), (451,673,l), (152,673,l), (152,599,l) ); } ); width = 600; } ); unicode = 772; }, { glyphname = hookabovecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (292,500); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); }, { pos = (-27,636); }, { pos = (-27,762); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (328,557,l), (328,586,l), (371,591,o), (408,622,o), (408,668,cs), (408,740,o), (337,762,o), (258,757,c), (258,703,l), (302,707,o), (346,695,o), (346,668,cs), (346,636,o), (308,625,o), (264,625,c), (264,557,l) ); } ); width = 600; } ); unicode = 777; }, { glyphname = commaturnedabovecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _top; pos = (320,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (350,555,o), (374,584,o), (374,612,cs), (374,638,o), (349,664,o), (322,664,cs), (321,664,o), (316,664,o), (314,663,c), (314,721,o), (374,733,o), (374,733,c), (374,733,o), (375,760,o), (374,760,cs), (305,760,o), (256,705,o), (256,625,cs), (256,587,o), (284,555,o), (321,555,cs) ); } ); width = 600; } ); unicode = 786; }, { glyphname = dotbelowcomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (75,0); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (105,-174,o), (129,-149,o), (129,-119,cs), (129,-89,o), (105,-64,o), (75,-64,cs), (45,-64,o), (20,-89,o), (20,-119,cs), (20,-149,o), (45,-174,o), (75,-174,cs) ); } ); width = 149; } ); unicode = 803; }, { glyphname = commaaccentcomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (306,-12); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (317,-284,o), (366,-229,o), (366,-149,cs), (366,-111,o), (338,-79,o), (301,-79,cs), (272,-79,o), (248,-108,o), (248,-136,cs), (248,-162,o), (273,-188,o), (300,-188,cs), (301,-188,o), (306,-188,o), (308,-187,c), (308,-245,o), (248,-257,o), (248,-257,c), (248,-257,o), (247,-284,o), (248,-284,cs) ); } ); width = 600; } ); unicode = 806; }, { glyphname = cedillacomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (290,2); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (353,-207,o), (398,-172,o), (398,-123,cs), (398,-66,o), (340,-33,o), (293,-46,c), (328,8,l), (266,8,l), (221,-63,l), (264,-103,l), (268,-98,o), (283,-89,o), (301,-89,cs), (329,-89,o), (342,-99,o), (342,-119,cs), (342,-138,o), (325,-148,o), (295,-148,cs), (264,-148,o), (242,-126,o), (232,-113,c), (195,-157,l), (216,-185,o), (256,-207,o), (301,-207,cs) ); } ); width = 600; } ); unicode = 807; }, { glyphname = ogonekcomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _ogonek; pos = (356,0); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (382,-230,o), (414,-226,o), (431,-215,c), (431,-145,l), (390,-166,o), (336,-157,o), (336,-101,cs), (336,-68,o), (362,-24,o), (401,0,c), (318,0,l), (298,-12,o), (260,-66,o), (260,-116,cs), (260,-173,o), (298,-230,o), (369,-230,cs) ); } ); width = 600; } ); unicode = 808; }, { glyphname = macronbelowcomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (315,-12); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (484,-159,l), (484,-85,l), (145,-85,l), (145,-159,l) ); } ); width = 600; } ); unicode = 817; }, { glyphname = commaaccentcomb.loclMAH; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (310,2); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (353,-207,o), (398,-172,o), (398,-119,cs), (398,-66,o), (354,-41,o), (308,-41,cs), (289,-41,o), (277,-43,o), (266,-46,c), (279,-93,l), (285,-91,o), (293,-89,o), (301,-89,cs), (329,-89,o), (342,-99,o), (342,-118,cs), (342,-138,o), (325,-148,o), (300,-148,cs), (264,-148,o), (242,-126,o), (232,-113,c), (195,-157,l), (216,-185,o), (256,-207,o), (301,-207,cs) ); } ); width = 600; } ); }, { glyphname = dieresis; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = dieresiscomb; } ); width = 324; } ); unicode = 168; }, { glyphname = dotaccent; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = dotaccentcomb; } ); width = 147; } ); unicode = 729; }, { glyphname = grave; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { pos = (-35,0); ref = gravecomb; slant = (8,0); } ); width = 237; } ); unicode = 96; }, { glyphname = acute; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = acutecomb; } ); width = 237; } ); unicode = 180; }, { glyphname = hungarumlaut; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = hungarumlautcomb; } ); width = 600; } ); unicode = 733; }, { glyphname = circumflex; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = circumflexcomb; } ); width = 420; } ); unicode = 710; }, { glyphname = caron; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = caroncomb; } ); width = 420; } ); unicode = 711; }, { glyphname = breve; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = brevecomb; } ); width = 600; } ); unicode = 728; }, { glyphname = ring; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = ringcomb; } ); width = 237; } ); unicode = 730; }, { glyphname = tilde; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { pos = (-35,0); ref = tildecomb; slant = (8,0); } ); width = 600; } ); unicode = 732; }, { glyphname = macron; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (433,640,l), (433,720,l), (103,720,l), (103,640,l) ); } ); width = 536; } ); unicode = 175; }, { glyphname = cedilla; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = cedillacomb; } ); width = 600; } ); unicode = 184; }, { glyphname = ogonek; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = ogonekcomb; } ); width = 600; } ); unicode = 731; } ); instances = ( { instanceInterpolations = { master01 = 1; }; name = Regular; } ); kerningLTR = { master01 = { "@MMK_L_A" = { "@MMK_R_V" = -55; "@MMK_R_z" = 30; asterisk = -48; quotedbl = -54; quotedblright = -45; quoteright = -50; quotesingle = -54; }; "@MMK_L_F" = { "@MMK_R_A" = -65; period = -50; quoteright = 30; }; "@MMK_L_H" = { period = 0; }; "@MMK_L_I" = { "@MMK_R_T" = 10; }; "@MMK_L_L" = { "@MMK_R_V" = -55; "@MMK_R_Y" = -60; emdash = -100; }; "@MMK_L_P" = { comma = -80; }; "@MMK_L_T" = { "@MMK_R_c" = -40; "@MMK_R_f" = -25; "@MMK_R_g" = -40; "@MMK_R_id" = 57; "@MMK_R_n" = -20; "@MMK_R_p" = -30; "@MMK_R_q" = -40; "@MMK_R_r" = -34; "@MMK_R_w" = -20; "@MMK_R_x" = -25; iacute = -20; }; "@MMK_L_V" = { "@MMK_R_A" = -50; "@MMK_R_a" = -33; "@MMK_R_o" = -28; colon = -32; }; "@MMK_L_W" = { "@MMK_R_a" = -10; "@MMK_R_o" = -22; }; "@MMK_L_Y" = { "@MMK_R_a" = -50; "@MMK_R_c" = -50; "@MMK_R_e" = -50; "@MMK_R_g" = -54; "@MMK_R_o" = -50; "@MMK_R_p" = -20; "@MMK_R_r" = -30; "@MMK_R_u" = -30; hyphen = -50; quotedblbase = -80; }; "@MMK_L_a" = { "@MMK_R_l" = -30; }; "@MMK_L_e" = { "@MMK_R_Y" = -50; }; "@MMK_L_f" = { braceright = 76; bracketright = 71; parenright = 65; quotedblright = 54; quoteleft = 30; quoteright = 64; }; "@MMK_L_g" = { "@MMK_R_h" = -25; }; "@MMK_L_l" = { "@MMK_R_c" = -42; "@MMK_R_w" = 0; }; "@MMK_L_lcaron" = { "@MMK_R_l" = 70; }; "@MMK_L_n" = { period = -54; }; "@MMK_L_o" = { "@MMK_R_T" = 0; "@MMK_R_d" = 17; T = 0; quoteright = -20; }; "@MMK_L_p" = { "@MMK_R_l" = -30; }; "@MMK_L_r" = { comma = -59; period = -90; }; "@MMK_L_w" = { "@MMK_R_l" = 0; }; "@MMK_L_y" = { "@MMK_R_l" = -20; comma = -70; period = -80; }; A = { Y = -45; }; T = { "@MMK_R_o" = -55; a = -36; e = -58; o = -55; u = -50; }; Y = { A = -53; }; a = { w = -11; }; eight = { seven = -14; }; hyphen = { "@MMK_R_Y" = -50; }; iacute = { "@MMK_R_T" = 40; }; idieresis = { "@MMK_R_T" = 57; }; igrave = { "@MMK_R_T" = -30; }; imacron = { "@MMK_R_T" = 57; }; itilde = { "@MMK_R_T" = 58; }; nine = { four = -44; }; o = { T = -55; }; one = { nine = -32; seven = -15; }; q = { u = -10; }; quotedblleft = { "@MMK_R_A" = -26; }; quoteleft = { "@MMK_R_A" = -50; "@MMK_R_o" = -9; }; r = { t = 23; v = 29; y = 25; }; seven = { four = -38; six = -48; }; t = { y = 24; }; w = { a = -8; }; y = { w = 35; }; }; }; metrics = ( { type = ascender; }, { type = "cap height"; }, { type = "x-height"; }, { type = baseline; }, { type = descender; }, { name = "Overshoot X"; }, { name = "Overshoot Base"; }, { name = "Overshoot Cap"; } ); properties = ( { key = designers; values = ( { language = ENG; value = "Olivia King"; } ); }, { key = copyrights; values = ( { language = ENG; value = "Copyright 2023 The Inclusive Sans Project Authors (https://github.com/LivKing/Inclusive-Sans)"; } ); }, { key = licenses; values = ( { language = ENG; value = "This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL"; } ); }, { key = designerURL; value = "https://www.oliviaking.com/"; }, { key = licenseURL; value = "https://scripts.sil.org/OFL"; }, { key = manufacturerURL; value = "https://www.oliviaking.com/"; }, { key = manufacturers; values = ( { language = dflt; value = "Olivia King"; } ); } ); unitsPerEm = 1000; userData = { GSDimensionPlugin.Dimensions = { master01 = { HH = "80"; HV = "88"; OH = "80"; OV = "92"; nV = "84"; nd = "68"; oH = "76"; oV = "86"; }; }; UFO.lib = { com.defcon.sortDescriptor = ( { allowPseudoUnicode = 0; ascending = "Latin-1"; type = characterSet; } ); com.robofont.generateFeaturesWithFontTools = 0; com.typemytype.robofont.compileSettings.autohint = 1; com.typemytype.robofont.compileSettings.checkOutlines = 0; com.typemytype.robofont.compileSettings.createDummyDSIG = 1; com.typemytype.robofont.compileSettings.decompose = 0; com.typemytype.robofont.compileSettings.generateFormat = 0; com.typemytype.robofont.compileSettings.releaseMode = 0; com.typemytype.robofont.guideline.magnetic.D6N96jJj7E = 5; com.typemytype.robofont.guideline.magnetic.Gbo3EdxKDI = 5; com.typemytype.robofont.guideline.showMeasurements.D6N96jJj7E = 0; com.typemytype.robofont.guideline.showMeasurements.Gbo3EdxKDI = 0; com.typemytype.robofont.italicSlantOffset = 0; com.typemytype.robofont.segmentType = curve; com.typemytype.robofont.shouldAddPointsInSplineConversion = 1; com.typemytype.robofont.smartSets.uniqueKey = "5067957840"; public.postscriptNames = { }; }; UFOFormat = 3; }; versionMajor = 1; versionMinor = 1; } ================================================ FILE: sources/V1.0/InclusiveSans_Italic.glyphs ================================================ { .appVersion = "3208"; .formatVersion = 3; DisplayStrings = ( " Letter Groups EFHIJLTU EFHIJLTU AVWXZ AVWXZ KMNY KMNY COQS COQS BPRDG BPRDG fijltr fijltr kvwxyz kvwxyz hmnu hmnu ceogs ceogs abdpq abdpq Spacing HHOHHOOHOO HIHOIO HHOHHOOHOO HIHOIO uuonouonoo ninoioolonlniuo uuonouonoo ninoioolonlniuo 010 080 030 020 050 060 070 010 080 030 020 050 060 070 Kerning HHAVAHH WAFAPATAUAYALYTJLVÆ HH HHAVAHH WAFAPATAUAYALYTJLVÆ HH TiTíTîTïTìTTīTĩT Vă Tä Tü Tõ Tŭ Tř" ); customParameters = ( { disabled = 1; name = glyphOrder; value = ( space, exclam, quotesingle, quotedbl, numbersign, dollar, percent, ampersand, parenleft, parenright, asterisk, plus, comma, hyphen, period, slash, zero, one, two, three, four, five, six, seven, eight, nine, colon, semicolon, less, equal, greater, question, at, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, bracketleft, backslash, bracketright, asciicircum, underscore, grave, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, braceleft, bar, braceright, asciitilde, exclamdown, cent, sterling, currency, yen, brokenbar, section, dieresis, copyright, ordfeminine, guillemetleft, logicalnot, registered, macron, degree, plusminus, twosuperior, threesuperior, acute, mu, paragraph, periodcentered, cedilla, onesuperior, ordmasculine, guillemetright, onequarter, onehalf, threequarters, questiondown, Agrave, Aacute, Acircumflex, Atilde, Adieresis, Aring, AE, Ccedilla, Egrave, Eacute, Ecircumflex, Edieresis, Igrave, Iacute, Icircumflex, Idieresis, Eth, Ntilde, Ograve, Oacute, Ocircumflex, Otilde, Odieresis, multiply, Oslash, Ugrave, Uacute, Ucircumflex, Udieresis, Yacute, Thorn, germandbls, agrave, aacute, acircumflex, atilde, adieresis, aring, ae, ccedilla, egrave, eacute, ecircumflex, edieresis, igrave, iacute, icircumflex, idieresis, eth, ntilde, ograve, oacute, ocircumflex, otilde, odieresis, divide, oslash, ugrave, uacute, ucircumflex, udieresis, yacute, thorn, ydieresis, dotlessi, circumflex, caron, breve, dotaccent, ring, ogonek, tilde, hungarumlaut, quoteleft, quoteright, minus, g.ss01, a.ss01 ); }, { name = "Use Typo Metrics"; value = 1; }, { name = fsType; value = ( ); } ); date = "2023-06-07 06:02:52 +0000"; familyName = "Inclusive Sans"; featurePrefixes = ( { automatic = 1; code = "languagesystem DFLT dflt; languagesystem DFLT MAH; languagesystem latn dflt; languagesystem latn AZE; languagesystem latn CRT; languagesystem latn KAZ; languagesystem latn TAT; languagesystem latn TRK; languagesystem latn ROM; languagesystem latn MOL; languagesystem latn MAH; languagesystem latn CAT; languagesystem latn NLD; "; name = Languagesystems; } ); features = ( { automatic = 1; code = "feature locl; feature ordn; feature case; feature ss01; "; tag = aalt; }, { code = "lookup ccmp_DFLT_1 { lookupflag 0; sub brevecomb acutecomb by brevecomb_acutecomb; sub brevecomb gravecomb by brevecomb_gravecomb; sub brevecomb hookabovecomb by brevecomb_hookabovecomb; sub brevecomb tildecomb by brevecomb_tildecomb; sub circumflexcomb acutecomb by circumflexcomb_acutecomb; sub circumflexcomb gravecomb by circumflexcomb_gravecomb; sub circumflexcomb hookabovecomb by circumflexcomb_hookabovecomb; sub circumflexcomb tildecomb by circumflexcomb_tildecomb; } ccmp_DFLT_1; lookup ccmp_Other_1 { @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hookabovecomb hungarumlautcomb macroncomb ringcomb tildecomb]; @CombiningNonTopAccents = [cedillacomb dotbelowcomb macronbelowcomb ogonekcomb]; lookupflag UseMarkFilteringSet @CombiningTopAccents; sub i' @CombiningTopAccents by idotless; sub j' @CombiningTopAccents by jdotless; sub idotbelow' @CombiningTopAccents by idotless dotbelowcomb; sub iogonek' @CombiningTopAccents by idotless ogonekcomb; sub idotbelow' @CombiningNonTopAccents @CombiningTopAccents by idotless dotbelowcomb; sub iogonek' @CombiningNonTopAccents @CombiningTopAccents by idotless ogonekcomb; } ccmp_Other_1; "; tag = ccmp; }, { automatic = 1; code = "language MAH; lookup locl_noScript_0 { sub commaaccentcomb by commaaccentcomb.loclMAH; } locl_noScript_0; script latn; language AZE; lookup locl_latn_0 { sub i by idotaccent; } locl_latn_0; language CRT; lookup locl_latn_0; language KAZ; lookup locl_latn_0; language TAT; lookup locl_latn_0; language TRK; lookup locl_latn_0; script latn; language ROM; lookup locl_latn_1 { sub Scedilla by Scommaaccent; sub scedilla by scommaaccent; sub Tcedilla by Tcommaaccent; sub tcedilla by tcommaaccent; } locl_latn_1; language MOL; lookup locl_latn_1; script latn; language MAH; lookup locl_latn_2 { sub Lcommaaccent by Lcommaaccent.loclMAH; sub Ncommaaccent by Ncommaaccent.loclMAH; sub lcommaaccent by lcommaaccent.loclMAH; sub ncommaaccent by ncommaaccent.loclMAH; } locl_latn_2; script latn; language CAT; lookup locl_latn_3 { sub l periodcentered' l by periodcentered.loclCAT; sub L periodcentered' L by periodcentered.loclCAT.case; } locl_latn_3; script latn; language NLD; lookup locl_latn_4 { sub iacute j' by jacute; sub Iacute J' by Jacute; } locl_latn_4; "; tag = locl; }, { automatic = 1; code = "sub [zero one two three four five six seven eight nine] [A a]' by ordfeminine; sub [zero one two three four five six seven eight nine] [O o]' by ordmasculine; "; tag = ordn; }, { automatic = 1; code = "sub periodcentered.loclCAT by periodcentered.loclCAT.case; "; tag = case; }, { automatic = 1; code = "sub a by a.ss01; sub aacute by aacute.ss01; sub abreve by abreve.ss01; sub abreveacute by abreveacute.ss01; sub abrevedotbelow by abrevedotbelow.ss01; sub abrevegrave by abrevegrave.ss01; sub abrevehookabove by abrevehookabove.ss01; sub abrevetilde by abrevetilde.ss01; sub acircumflex by acircumflex.ss01; sub acircumflexacute by acircumflexacute.ss01; sub acircumflexdotbelow by acircumflexdotbelow.ss01; sub acircumflexgrave by acircumflexgrave.ss01; sub acircumflexhookabove by acircumflexhookabove.ss01; sub acircumflextilde by acircumflextilde.ss01; sub adieresis by adieresis.ss01; sub adotbelow by adotbelow.ss01; sub agrave by agrave.ss01; sub ahookabove by ahookabove.ss01; sub amacron by amacron.ss01; sub aogonek by aogonek.ss01; sub aring by aring.ss01; sub atilde by atilde.ss01; sub g by g.ss01; sub gbreve by gbreve.ss01; sub gcommaaccent by gcommaaccent.ss01; sub gdotaccent by gdotaccent.ss01; sub gmacron by gmacron.ss01; "; labels = ( { language = dflt; value = ss01; } ); tag = ss01; } ); fontMaster = ( { customParameters = ( { name = typoAscender; value = 950; }, { name = typoDescender; value = -250; }, { name = typoLineGap; value = 0; }, { name = winAscent; value = 1137; }, { name = winDescent; value = 404; }, { name = hheaAscender; value = 950; }, { name = hheaDescender; value = -250; }, { name = hheaLineGap; value = 0; } ); guides = ( { angle = 262.0051; pos = (104,0); } ); id = master01; metricValues = ( { pos = 720; }, { pos = 700; }, { pos = 500; }, { }, { pos = -230; }, { pos = 512; }, { pos = -12; }, { pos = 712; }, { pos = 10; } ); name = Italic; visible = 1; } ); glyphs = ( { glyphname = A; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (268,0); }, { name = ogonek; pos = (514,0); }, { name = top; pos = (368,712); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (560,0,l), (409,700,l), (325,700,l), (476,0,l) ); }, { closed = 1; nodes = ( (61,0,l), (408,700,l), (324,700,l), (-23,0,l) ); }, { closed = 1; nodes = ( (447,195,l), (459,275,l), (138,275,l), (126,195,l) ); } ); width = 607; } ); unicode = 65; }, { glyphname = Aacute; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (275,200); ref = acutecomb; } ); width = 607; } ); unicode = 193; }, { glyphname = Abreve; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (24,200); ref = brevecomb; } ); width = 607; } ); unicode = 258; }, { glyphname = Abreveacute; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (24,200); ref = brevecomb_acutecomb; } ); width = 607; } ); unicode = 7854; }, { glyphname = Abrevedotbelow; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (228,0); ref = dotbelowcomb; }, { pos = (24,200); ref = brevecomb; } ); width = 607; } ); unicode = 7862; }, { glyphname = Abrevegrave; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (24,200); ref = brevecomb_gravecomb; } ); width = 607; } ); unicode = 7856; }, { glyphname = Abrevehookabove; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (24,200); ref = brevecomb_hookabovecomb; } ); width = 607; } ); unicode = 7858; }, { glyphname = Abrevetilde; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (24,200); ref = brevecomb_tildecomb; } ); width = 607; } ); unicode = 7860; }, { glyphname = Acircumflex; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (120,200); ref = circumflexcomb; } ); width = 607; } ); unicode = 194; }, { glyphname = Acircumflexacute; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (119,200); ref = circumflexcomb_acutecomb; } ); width = 607; } ); unicode = 7844; }, { glyphname = Acircumflexdotbelow; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (228,0); ref = dotbelowcomb; }, { pos = (120,200); ref = circumflexcomb; } ); width = 607; } ); unicode = 7852; }, { glyphname = Acircumflexgrave; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (120,200); ref = circumflexcomb_gravecomb; } ); width = 607; } ); unicode = 7846; }, { glyphname = Acircumflexhookabove; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (120,200); ref = circumflexcomb_hookabovecomb; } ); width = 607; } ); unicode = 7848; }, { glyphname = Acircumflextilde; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (120,200); ref = circumflexcomb_tildecomb; } ); width = 607; } ); unicode = 7850; }, { glyphname = Adieresis; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (170,200); ref = dieresiscomb; } ); width = 607; } ); unicode = 196; }, { glyphname = Adotbelow; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (228,0); ref = dotbelowcomb; } ); width = 607; } ); unicode = 7840; }, { glyphname = Agrave; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (153,200); ref = gravecomb; } ); width = 607; } ); unicode = 192; }, { glyphname = Ahookabove; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (41,212); ref = hookabovecomb; } ); width = 607; } ); unicode = 7842; }, { glyphname = Amacron; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (30,200); ref = macroncomb; } ); width = 607; } ); unicode = 256; }, { glyphname = Aogonek; kernLeft = A; kernRight = A; lastChange = "2023-07-09 23:16:33 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (193,0); ref = ogonekcomb; } ); width = 607; } ); unicode = 260; }, { glyphname = Aring; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (213,200); ref = ringcomb; } ); width = 607; } ); unicode = 197; }, { glyphname = Atilde; kernLeft = A; kernRight = A; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = A; }, { pos = (32,200); ref = tildecomb; } ); width = 607; } ); unicode = 195; }, { glyphname = AE; kernLeft = A; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (63,0,l), (476,700,l), (388,700,l), (-25,0,l) ); }, { closed = 1; nodes = ( (393,195,l), (405,275,l), (159,275,l), (147,195,l) ); }, { closed = 1; nodes = ( (739,0,l), (750,80,l), (450,80,l), (484,320,l), (723,320,l), (734,400,l), (495,400,l), (526,620,l), (826,620,l), (837,700,l), (449,700,l), (351,0,l) ); } ); width = 832; } ); unicode = 198; }, { glyphname = B; kernLeft = B; kernRight = B; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,14); target = (1,10); type = Stem; }, { horizontal = 1; origin = (1,0); target = (2,10); type = Stem; }, { horizontal = 1; origin = (2,0); target = (0,13); type = Stem; }, { origin = (0,14); target = (1,10); type = Stem; }, { origin = (1,6); target = (0,3); type = Stem; }, { origin = (2,6); target = (0,9); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (319,0,ls), (479,0,o), (574,79,o), (592,206,cs), (606,309,o), (565,360,o), (475,382,c), (536,400,o), (586,444,o), (598,525,cs), (614,641,o), (546,701,o), (409,701,cs), (160,701,l), (62,0,l) ); }, { closed = 1; nodes = ( (197,335,l), (197,335,o), (376,335,o), (376,335,c), (468,335,o), (511,289,o), (500,206,cs), (489,126,o), (422,80,o), (330,80,cs), (161,80,l) ); }, { closed = 1; nodes = ( (237,621,l), (237,621,o), (393,621,o), (393,621,cs), (466,621,o), (516,591,o), (507,524,cs), (497,455,o), (438,415,o), (365,415,cs), (208,415,l) ); } ); width = 652; }, { associatedMasterId = master01; layerId = "B2778AA9-272F-47DA-B672-36E0A49462E6"; name = foreground; shapes = ( { closed = 1; nodes = ( (201,608,o), (362,608,o), (362,608,c), (428,608,o), (473,575,o), (473,515,cs), (473,461,o), (427,419,o), (362,419,cs), (201,419,l), (201,608,l) ); }, { closed = 1; nodes = ( (95,0,l), (394,0,ls), (546,0,o), (621,101,o), (621,194,cs), (621,315,o), (554,363,o), (486,382,c), (529,387,o), (582,456,o), (582,536,cs), (582,620,o), (516,701,o), (379,701,cs), (95,701,l) ); }, { closed = 1; nodes = ( (201,326,o), (374,326,o), (374,326,c), (461,326,o), (506,283,o), (506,209,cs), (506,146,o), (459,93,o), (374,93,cs), (201,93,l), (201,326,l) ); } ); width = 671; } ); unicode = 66; }, { glyphname = C; kernLeft = C; kernRight = C; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (331,0); }, { name = top; pos = (429,713); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (486,-13,o), (600,75,o), (646,198,c), (559,216,l), (524,130,o), (443,67,o), (338,67,cs), (194,67,o), (137,194,o), (160,357,cs), (182,512,o), (274,633,o), (418,633,c), (523,633,o), (586,570,o), (597,484,c), (688,502,l), (678,625,o), (588,713,o), (429,713,c), (210,713,o), (97,548,o), (70,355,cs), (44,171,o), (107,-13,o), (327,-13,cs) ); } ); width = 697; }, { associatedMasterId = master01; layerId = "B03B6E58-C7A4-4549-B5DA-7F61DFFF8AA1"; name = foreground; shapes = ( { closed = 1; nodes = ( (50,540,o), (156,713,o), (386,713,c), (551,713,o), (653,623,o), (683,503,c), (574,481,l), (548,565,o), (477,616,o), (386,616,c), (252,616,o), (164,504,o), (164,349,c), (164,194,o), (252,86,o), (386,86,c), (477,86,o), (549,147,o), (576,223,c), (683,198,l), (648,82,o), (551,-12,o), (386,-12,c), (156,-12,o), (50,158,o), (50,347,c) ); } ); width = 718; } ); unicode = 67; }, { glyphname = Cacute; kernLeft = C; kernRight = C; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = C; }, { pos = (336,201); ref = acutecomb; } ); width = 697; } ); unicode = 262; }, { glyphname = Ccaron; kernLeft = C; kernRight = C; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = C; }, { pos = (179,201); ref = caroncomb; } ); width = 697; } ); unicode = 268; }, { glyphname = Ccedilla; kernLeft = C; kernRight = C; lastChange = "2023-07-09 23:16:52 +0000"; layers = ( { layerId = master01; shapes = ( { ref = C; }, { pos = (76,-2); ref = cedillacomb; } ); width = 697; } ); unicode = 199; }, { glyphname = Cdotaccent; kernLeft = C; kernRight = C; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = C; }, { pos = (318,201); ref = dotaccentcomb; } ); width = 697; } ); unicode = 266; }, { glyphname = D; kernLeft = D; kernRight = D; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (388,712); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (254,0,ls), (484,0,o), (611,141,o), (640,349,cs), (670,560,o), (582,700,o), (352,700,cs), (160,700,l), (62,0,l) ); }, { closed = 1; nodes = ( (235,620,l), (344,620,ls), (505,620,o), (570,507,o), (548,350,cs), (526,192,o), (429,80,o), (268,80,cs), (159,80,l) ); } ); width = 676; }, { associatedMasterId = master01; layerId = "06695B29-B584-4CFA-B58E-873EFBF25244"; name = foreground; shapes = ( { closed = 1; nodes = ( (535,700,o), (646,542,o), (646,356,cs), (646,178,o), (539,0,o), (308,0,cs), (95,0,l), (95,700,l), (305,700,ls) ); }, { closed = 1; nodes = ( (445,91,o), (532,200,o), (532,356,cs), (532,504,o), (441,609,o), (308,609,cs), (205,609,l), (205,91,l), (308,91,ls) ); } ); width = 696; } ); unicode = 68; }, { glyphname = Eth; kernLeft = D; kernRight = D; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (254,0,ls), (484,0,o), (611,141,o), (640,349,cs), (670,560,o), (582,700,o), (352,700,cs), (160,700,l), (62,0,l) ); }, { closed = 1; nodes = ( (275,302,l), (287,386,l), (33,386,l), (21,302,l) ); }, { closed = 1; nodes = ( (235,620,l), (344,620,ls), (505,620,o), (570,507,o), (548,350,cs), (526,192,o), (429,80,o), (268,80,cs), (159,80,l) ); } ); width = 676; } ); unicode = 208; }, { glyphname = Dcaron; kernLeft = D; kernRight = D; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = D; }, { pos = (138,200); ref = caroncomb; } ); width = 676; } ); unicode = 270; }, { glyphname = Dcroat; kernLeft = D; kernRight = D; lastChange = "2023-07-09 23:16:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Eth; } ); width = 676; } ); unicode = 272; }, { glyphname = Ddotbelow; kernLeft = D; kernRight = D; lastChange = "2023-07-09 23:16:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = D; }, { pos = (235,0); ref = dotbelowcomb; } ); width = 676; } ); unicode = 7692; }, { glyphname = Dmacronbelow; kernLeft = D; kernRight = D; lastChange = "2023-07-09 23:16:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = D; }, { ref = macronbelowcomb; } ); width = 676; } ); unicode = 7694; }, { glyphname = E; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (267,0); }, { name = ogonek; pos = (427,0); }, { name = top; pos = (368,720); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (472,0,l), (483,80,l), (161,80,l), (195,320,l), (456,320,l), (467,398,l), (206,398,l), (237,620,l), (559,620,l), (570,700,l), (160,700,l), (62,0,l) ); } ); width = 564; }, { associatedMasterId = master01; layerId = "A977A26C-359E-4C6D-9AFD-AF1AE6B4AD04"; name = foreground; shapes = ( { closed = 1; nodes = ( (90,700,l), (546,700,l), (546,608,l), (196,608,l), (196,405,l), (485,405,l), (485,313,l), (196,313,l), (196,92,l), (546,92,l), (546,0,l), (90,0,l) ); } ); width = 596; } ); unicode = 69; }, { glyphname = Eacute; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (275,208); ref = acutecomb; } ); width = 564; } ); unicode = 201; }, { glyphname = Ecaron; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (118,208); ref = caroncomb; } ); width = 564; } ); unicode = 282; }, { glyphname = Ecircumflex; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (120,208); ref = circumflexcomb; } ); width = 564; } ); unicode = 202; }, { glyphname = Ecircumflexacute; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (119,208); ref = circumflexcomb_acutecomb; } ); width = 564; } ); unicode = 7870; }, { glyphname = Ecircumflexdotbelow; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (227,0); ref = dotbelowcomb; }, { pos = (120,208); ref = circumflexcomb; } ); width = 564; } ); unicode = 7878; }, { glyphname = Ecircumflexgrave; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (120,208); ref = circumflexcomb_gravecomb; } ); width = 564; } ); unicode = 7872; }, { glyphname = Ecircumflexhookabove; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (120,208); ref = circumflexcomb_hookabovecomb; } ); width = 564; } ); unicode = 7874; }, { glyphname = Ecircumflextilde; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (120,208); ref = circumflexcomb_tildecomb; } ); width = 564; } ); unicode = 7876; }, { glyphname = Edieresis; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (170,208); ref = dieresiscomb; } ); width = 564; } ); unicode = 203; }, { glyphname = Edotaccent; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (257,208); ref = dotaccentcomb; } ); width = 564; } ); unicode = 278; }, { glyphname = Edotbelow; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (227,0); ref = dotbelowcomb; } ); width = 564; } ); unicode = 7864; }, { glyphname = Egrave; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (153,208); ref = gravecomb; } ); width = 564; } ); unicode = 200; }, { glyphname = Ehookabove; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (41,220); ref = hookabovecomb; } ); width = 564; } ); unicode = 7866; }, { glyphname = Emacron; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (30,208); ref = macroncomb; } ); width = 564; } ); unicode = 274; }, { glyphname = Eogonek; kernLeft = E; kernRight = E; lastChange = "2023-07-09 23:17:07 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (106,0); ref = ogonekcomb; } ); width = 564; } ); unicode = 280; }, { glyphname = Etilde; kernLeft = E; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = E; }, { pos = (32,208); ref = tildecomb; } ); width = 564; } ); unicode = 7868; }, { glyphname = F; kernLeft = F; kernRight = F; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (150,0,l), (195,320,l), (456,320,l), (467,400,l), (206,400,l), (237,620,l), (559,620,l), (570,700,l), (160,700,l), (62,0,l) ); } ); width = 541; }, { associatedMasterId = master01; layerId = "A8DBB783-FE60-44AC-AE41-AD44FD5FD283"; name = foreground; shapes = ( { closed = 1; nodes = ( (95,0,l), (95,700,l), (551,700,l), (551,608,l), (201,608,l), (201,404,l), (490,404,l), (490,312,l), (201,312,l), (201,0,l) ); } ); width = 581; } ); unicode = 70; }, { glyphname = G; kernLeft = G; kernRight = G; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (430,724); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (421,-12,o), (504,30,o), (555,107,c), (555,107,o), (553,0,o), (553,0,c), (622,0,l), (674,368,l), (427,368,l), (415,284,l), (573,284,l), (555,158,o), (440,67,o), (335,67,cs), (191,67,o), (137,194,o), (160,357,cs), (182,512,o), (274,633,o), (418,633,c), (523,633,o), (586,570,o), (597,484,c), (688,502,l), (678,625,o), (588,713,o), (429,713,c), (210,713,o), (97,548,o), (70,355,cs), (42,158,o), (110,-12,o), (337,-12,c) ); } ); width = 723; }, { associatedMasterId = master01; layerId = "CB3D37D9-D998-4BEF-81F7-6BF9414937DB"; name = foreground; shapes = ( { closed = 1; nodes = ( (156,-12,o), (50,158,o), (50,347,c), (50,540,o), (156,713,o), (386,713,c), (551,713,o), (652,623,o), (683,503,c), (570,481,l), (548,553,o), (477,618,o), (386,618,c), (252,618,o), (165,504,o), (165,349,c), (165,194,o), (250,94,o), (391,94,c), (487,94,o), (577,179,o), (577,274,c), (419,274,l), (419,368,l), (704,368,l), (704,0,l), (608,0,l), (608,0,o), (608,143,o), (608,143,c), (583,27,o), (467,-12,o), (383,-12,c) ); } ); width = 768; } ); unicode = 71; }, { glyphname = Gbreve; kernLeft = G; kernRight = G; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = G; }, { pos = (86,212); ref = brevecomb; } ); width = 723; } ); unicode = 286; }, { glyphname = Gcommaaccent; kernLeft = G; kernRight = G; lastChange = "2023-07-09 23:17:17 +0000"; layers = ( { layerId = master01; shapes = ( { ref = G; }, { pos = (48,0); ref = commaaccentcomb; } ); width = 723; } ); unicode = 290; }, { glyphname = Gdotaccent; kernLeft = G; kernRight = G; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = G; }, { pos = (319,212); ref = dotaccentcomb; } ); width = 723; } ); unicode = 288; }, { glyphname = Gmacron; kernLeft = G; kernRight = G; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = G; }, { pos = (92,212); ref = macroncomb; } ); width = 723; } ); unicode = 7712; }, { glyphname = H; kernLeft = H; kernRight = H; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,1); target = (0,8); type = Stem; }, { origin = (0,11); target = (0,0); type = Stem; }, { origin = (0,3); target = (0,4); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (148,0,l), (193,324,l), (527,324,l), (482,0,l), (570,0,l), (668,700,l), (580,700,l), (539,404,l), (205,404,l), (246,700,l), (158,700,l), (60,0,l) ); } ); width = 700; }, { associatedMasterId = master01; layerId = "767EE966-09EE-4F15-A2D2-031D2049D6EC"; name = foreground; shapes = ( { closed = 1; nodes = ( (534,0,l), (640,0,l), (640,700,l), (534,700,l), (534,404,l), (196,404,l), (196,700,l), (90,700,l), (90,0,l), (196,0,l), (196,312,l), (534,312,l) ); } ); width = 730; } ); unicode = 72; }, { glyphname = Hbar; kernLeft = H; kernRight = H; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (693,492,l), (703,562,l), (88,562,l), (78,492,l) ); }, { pos = (2,0); ref = H; } ); width = 700; } ); unicode = 294; }, { glyphname = I; kernLeft = I; kernRight = I; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (303,712); } ); hints = ( { horizontal = 1; origin = (0,11); target = (0,10); type = Stem; }, { horizontal = 1; origin = (0,6); target = (0,7); type = Stem; }, { horizontal = 1; origin = (0,11); target = (0,2); type = Stem; }, { origin = (0,9); target = (0,0); type = Stem; }, { origin = (0,9); target = (0,2); type = Stem; }, { origin = (0,11); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (366,0,l), (377,76,l), (258,76,l), (335,624,l), (454,624,l), (464,700,l), (138,700,l), (128,624,l), (247,624,l), (169,74,l), (50,74,l), (40,0,l) ); } ); width = 476; }, { associatedMasterId = master01; layerId = "7531A638-AF93-42CE-98F8-0983E097DA89"; name = foreground; shapes = ( { closed = 1; nodes = ( (416,94,l), (306,94,l), (306,608,l), (416,608,l), (416,700,l), (90,700,l), (90,608,l), (200,608,l), (200,92,l), (90,92,l), (90,0,l), (416,0,l) ); } ); width = 506; } ); unicode = 73; }, { glyphname = IJ; kernLeft = I; kernRight = J; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (910,720); } ); layerId = master01; shapes = ( { ref = I; }, { pos = (476,0); ref = J; } ); width = 971; } ); unicode = 306; }, { glyphname = Iacute; kernLeft = I; kernRight = I; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (210,200); ref = acutecomb; } ); width = 476; } ); unicode = 205; }, { glyphname = Icircumflex; kernLeft = I; kernRight = I; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (55,200); ref = circumflexcomb; } ); width = 476; } ); unicode = 206; }, { glyphname = Idieresis; kernLeft = I; kernRight = I; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (105,200); ref = dieresiscomb; } ); width = 476; } ); unicode = 207; }, { glyphname = Idotaccent; kernLeft = I; kernRight = I; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (192,200); ref = dotaccentcomb; } ); width = 476; } ); unicode = 304; }, { glyphname = Idotbelow; kernLeft = I; kernRight = I; lastChange = "2023-07-09 23:17:42 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (163,0); ref = dotbelowcomb; } ); width = 476; } ); unicode = 7882; }, { glyphname = Igrave; kernLeft = I; kernRight = I; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (88,200); ref = gravecomb; } ); width = 476; } ); unicode = 204; }, { glyphname = Ihookabove; kernLeft = I; kernRight = I; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (-24,212); ref = hookabovecomb; } ); width = 476; } ); unicode = 7880; }, { glyphname = Imacron; kernLeft = I; kernRight = I; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (-35,200); ref = macroncomb; } ); width = 476; } ); unicode = 298; }, { glyphname = Iogonek; kernLeft = I; kernRight = I; lastChange = "2023-07-09 23:17:42 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (-116,0); ref = ogonekcomb; } ); width = 476; } ); unicode = 302; }, { glyphname = Itilde; kernLeft = I; kernRight = I; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = I; }, { pos = (-33,200); ref = tildecomb; } ); width = 476; } ); unicode = 296; }, { glyphname = J; kernLeft = J; kernRight = J; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (434,720); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (320,-12,o), (388,70,o), (412,241,cs), (476,700,l), (388,700,l), (324,240,ls), (309,133,o), (273,72,o), (182,72,c), (117,72,o), (90,120,o), (87,200,c), (-1,173,l), (1,56,o), (60,-12,o), (174,-12,c) ); } ); width = 495; }, { associatedMasterId = master01; layerId = "7D5A962D-9C0D-4DF1-88D2-B6BD600C45BA"; name = foreground; shapes = ( { closed = 1; nodes = ( (126,118,o), (160,85,o), (214,86,c), (307,86,o), (327,162,o), (327,229,cs), (327,700,l), (433,700,l), (433,230,ls), (433,134,o), (410,-12,o), (218,-12,c), (113,-12,o), (29,48,o), (10,164,c), (109,197,l) ); } ); width = 513; } ); unicode = 74; }, { glyphname = Jacute; kernLeft = J; kernRight = J; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = J; }, { pos = (341,208); ref = acutecomb; } ); width = 495; } ); }, { glyphname = K; kernLeft = K; kernRight = K; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,11); target = (0,10); type = Stem; }, { origin = (0,11); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (148,0,l), (182,242,l), (284,343,l), (453,0,l), (565,0,l), (354,404,l), (645,700,l), (538,700,l), (199,361,l), (246,700,l), (158,700,l), (60,0,l) ); } ); width = 615; }, { associatedMasterId = master01; layerId = "08AA5D7D-8610-445E-8CED-4DCF5FBF5B32"; name = foreground; shapes = ( { closed = 1; nodes = ( (94,0,l), (200,0,l), (200,248,l), (278,333,l), (515,0,l), (645,0,l), (349,408,l), (621,700,l), (491,700,l), (200,381,l), (200,700,l), (94,700,l) ); } ); width = 655; } ); unicode = 75; }, { glyphname = Kcommaaccent; kernLeft = K; kernRight = K; lastChange = "2023-07-09 23:17:51 +0000"; layers = ( { layerId = master01; shapes = ( { ref = K; }, { ref = commaaccentcomb; } ); width = 615; } ); unicode = 310; }, { glyphname = L; kernLeft = L; kernRight = L; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (204,712); } ); hints = ( { horizontal = 1; origin = (0,5); target = (0,4); type = Stem; }, { origin = (0,5); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (471,0,l), (482,80,l), (159,80,l), (246,700,l), (158,700,l), (60,0,l) ); } ); width = 524; }, { associatedMasterId = master01; layerId = "709592C3-DB4C-47AA-8876-5A583F256C89"; name = foreground; shapes = ( { closed = 1; nodes = ( (513,96,l), (513,0,l), (90,0,l), (90,700,l), (196,700,l), (196,96,l) ); } ); width = 528; } ); unicode = 76; }, { glyphname = Lacute; kernLeft = L; kernRight = L; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = L; }, { pos = (111,200); ref = acutecomb; } ); width = 524; } ); unicode = 313; }, { glyphname = Lcaron; kernLeft = L; kernRight = L; lastChange = "2023-07-09 23:17:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = L; }, { pos = (-46,0); ref = caroncomb.alt; } ); width = 524; } ); unicode = 317; }, { glyphname = Lcommaaccent; kernLeft = L; kernRight = L; lastChange = "2023-07-09 23:17:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = L; }, { ref = commaaccentcomb; } ); width = 524; } ); unicode = 315; }, { glyphname = Ldotbelow; kernLeft = L; kernRight = L; lastChange = "2023-07-09 23:17:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = L; }, { pos = (220,0); ref = dotbelowcomb; } ); width = 524; } ); unicode = 7734; }, { glyphname = Lmacronbelow; kernLeft = L; kernRight = L; lastChange = "2023-07-09 23:17:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = L; }, { pos = (-19,0); ref = macronbelowcomb; } ); width = 524; } ); unicode = 7738; }, { glyphname = Lslash; kernLeft = L; kernRight = L; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (204,712); } ); hints = ( { horizontal = 1; origin = (0,5); target = (0,4); type = Stem; }, { origin = (0,5); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (471,0,l), (482,80,l), (159,80,l), (246,700,l), (158,700,l), (60,0,l) ); }, { closed = 1; nodes = ( (357,398,l), (331,462,l), (-9,294,l), (16,229,l) ); } ); width = 524; } ); unicode = 321; }, { glyphname = M; kernLeft = M; kernRight = M; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,12); target = (0,11); type = Stem; }, { origin = (0,12); target = (0,0); type = Stem; }, { place = (637,53); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (148,0,l), (227,562,l), (363,62,l), (458,62,l), (729,562,l), (650,0,l), (738,0,l), (836,700,l), (714,700,l), (422,164,l), (280,700,l), (158,700,l), (60,0,l) ); } ); width = 868; }, { associatedMasterId = master01; layerId = "CA1B1FD6-294F-47BB-99AD-78D1808B8BBA"; name = foreground; shapes = ( { closed = 1; nodes = ( (200,0,l), (200,538,l), (368,137,l), (481,137,l), (649,535,l), (649,0,l), (755,0,l), (755,700,l), (607,700,l), (426,268,l), (243,700,l), (94,700,l), (94,0,l) ); } ); width = 849; } ); unicode = 77; }, { glyphname = N; kernLeft = N; kernRight = N; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (332,0); }, { name = top; pos = (428,712); } ); hints = ( { horizontal = 1; origin = (0,9); target = (0,8); type = Stem; }, { origin = (0,9); target = (0,0); type = Stem; }, { origin = (0,6); target = (0,3); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (148,0,l), (229,578,l), (468,0,l), (583,0,l), (681,700,l), (593,700,l), (513,126,l), (286,700,l), (158,700,l), (60,0,l) ); } ); width = 713; }, { associatedMasterId = master01; layerId = "0588BE4C-E1DC-4D10-B2ED-A5B0C3E90302"; name = foreground; shapes = ( { closed = 1; nodes = ( (200,0,l), (200,542,l), (502,0,l), (635,0,l), (635,700,l), (529,700,l), (529,158,l), (240,700,l), (94,700,l), (94,0,l) ); } ); width = 729; } ); unicode = 78; }, { glyphname = Nacute; kernLeft = N; kernRight = N; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = N; }, { pos = (335,200); ref = acutecomb; } ); width = 713; } ); unicode = 323; }, { glyphname = Ncaron; kernLeft = N; kernRight = N; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = N; }, { pos = (178,200); ref = caroncomb; } ); width = 713; } ); unicode = 327; }, { glyphname = Ncommaaccent; kernLeft = N; kernRight = N; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = N; }, { pos = (63,12); ref = commaaccentcomb; } ); width = 713; } ); unicode = 325; }, { glyphname = Ndotbelow; kernLeft = N; kernRight = N; lastChange = "2023-07-09 23:18:10 +0000"; layers = ( { layerId = master01; shapes = ( { ref = N; }, { pos = (292,0); ref = dotbelowcomb; } ); width = 713; } ); unicode = 7750; }, { glyphname = Nmacronbelow; kernLeft = N; kernRight = N; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = N; }, { pos = (54,12); ref = macronbelowcomb; } ); width = 713; } ); unicode = 7752; }, { glyphname = Ntilde; kernLeft = N; kernRight = N; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = N; }, { pos = (92,200); ref = tildecomb; } ); width = 713; } ); unicode = 209; }, { glyphname = Eng; kernLeft = N; kernRight = N; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,8); target = (0,7); type = Stem; }, { origin = (0,8); target = (0,9); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (509,-188,o), (564,-137,o), (577,-44,cs), (681,700,l), (593,700,l), (522,193,l), (286,700,l), (158,700,l), (60,0,l), (148,0,l), (229,578,l), (499,26,l), (489,-43,ls), (481,-97,o), (451,-116,o), (402,-116,cs), (389,-116,o), (371,-115,o), (355,-112,c), (346,-180,l), (362,-185,o), (384,-188,o), (400,-188,cs) ); } ); width = 713; } ); unicode = 330; }, { glyphname = O; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (438,721); } ); hints = ( { horizontal = 1; origin = (0,11); target = (1,11); type = Stem; }, { horizontal = 1; origin = (1,5); target = (0,5); type = Stem; }, { origin = (0,8); target = (1,2); type = Stem; }, { origin = (1,8); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (559,-11,o), (676,158,o), (703,351,cs), (730,544,o), (661,713,o), (437,713,cs), (213,713,o), (96,544,o), (69,351,cs), (42,158,o), (111,-11,o), (335,-11,cs) ); }, { closed = 1; nodes = ( (200,69,o), (139,196,o), (161,351,cs), (183,506,o), (279,633,o), (426,633,cs), (583,633,o), (633,506,o), (611,351,cs), (589,196,o), (504,69,o), (347,69,cs) ); } ); width = 744; }, { associatedMasterId = master01; layerId = "1E35F290-6AA7-4BE9-AB09-67F845E701DA"; name = foreground; shapes = ( { closed = 1; nodes = ( (155,-13,o), (50,171,o), (50,355,cs), (50,548,o), (156,713,o), (386,713,c), (616,713,o), (722,548,o), (722,355,cs), (722,171,o), (617,-13,o), (386,-13,c) ); }, { closed = 1; nodes = ( (252,617,o), (162,512,o), (162,357,cs), (162,194,o), (248,83,o), (386,83,c), (524,83,o), (610,194,o), (610,357,cs), (610,512,o), (520,617,o), (386,617,c) ); } ); width = 772; } ); unicode = 79; }, { glyphname = Oacute; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (345,209); ref = acutecomb; } ); width = 744; } ); unicode = 211; }, { glyphname = Ocircumflex; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (190,209); ref = circumflexcomb; } ); width = 744; } ); unicode = 212; }, { glyphname = Ocircumflexacute; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (189,209); ref = circumflexcomb_acutecomb; } ); width = 744; } ); unicode = 7888; }, { glyphname = Ocircumflexdotbelow; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (298,0); ref = dotbelowcomb; }, { pos = (190,209); ref = circumflexcomb; } ); width = 744; } ); unicode = 7896; }, { glyphname = Ocircumflexgrave; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (190,209); ref = circumflexcomb_gravecomb; } ); width = 744; } ); unicode = 7890; }, { glyphname = Ocircumflexhookabove; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (190,209); ref = circumflexcomb_hookabovecomb; } ); width = 744; } ); unicode = 7892; }, { glyphname = Ocircumflextilde; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (190,209); ref = circumflexcomb_tildecomb; } ); width = 744; } ); unicode = 7894; }, { glyphname = Odieresis; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (240,209); ref = dieresiscomb; } ); width = 744; } ); unicode = 214; }, { glyphname = Odotbelow; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (298,0); ref = dotbelowcomb; } ); width = 744; } ); unicode = 7884; }, { glyphname = Ograve; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (223,209); ref = gravecomb; } ); width = 744; } ); unicode = 210; }, { glyphname = Ohookabove; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (111,221); ref = hookabovecomb; } ); width = 744; } ); unicode = 7886; }, { glyphname = Ohorn; kernLeft = O; kernRight = O; lastChange = "2023-08-03 12:56:31 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (688,641,o), (712,762,o), (701,824,c), (613,818,l), (619,774,o), (613,709,o), (535,707,cs), (463,704,o), (448,713,o), (372,713,c), (396,674,l), (427,674,o), (427,641,o), (553,641,cs) ); }, { pos = (-71,0); ref = O; } ); width = 600; } ); unicode = 416; }, { glyphname = Ohornacute; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Ohorn; }, { pos = (274,209); ref = acutecomb; } ); width = 600; } ); unicode = 7898; }, { glyphname = Ohorndotbelow; kernLeft = O; kernRight = O; lastChange = "2023-07-09 23:18:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Ohorn; }, { pos = (228,0); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7906; }, { glyphname = Ohorngrave; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Ohorn; }, { pos = (152,209); ref = gravecomb; } ); width = 600; } ); unicode = 7900; }, { glyphname = Ohornhookabove; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Ohorn; }, { pos = (40,221); ref = hookabovecomb; } ); width = 600; } ); unicode = 7902; }, { glyphname = Ohorntilde; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Ohorn; }, { pos = (31,209); ref = tildecomb; } ); width = 600; } ); unicode = 7904; }, { glyphname = Ohungarumlaut; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (148,209); ref = hungarumlautcomb; } ); width = 744; } ); unicode = 336; }, { glyphname = Omacron; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (100,209); ref = macroncomb; } ); width = 744; } ); unicode = 332; }, { glyphname = Oslash; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (745,688,l), (694,734,l), (20,12,l), (67,-36,l) ); }, { ref = O; } ); width = 744; } ); unicode = 216; }, { glyphname = Otilde; kernLeft = O; kernRight = O; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = O; }, { pos = (102,209); ref = tildecomb; } ); width = 744; } ); unicode = 213; }, { glyphname = OE; kernLeft = O; kernRight = E; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (554,-11,o), (666,158,o), (693,351,cs), (720,544,o), (656,713,o), (432,713,cs), (213,713,o), (96,544,o), (69,351,cs), (42,158,o), (106,-11,o), (330,-11,cs) ); }, { closed = 1; nodes = ( (195,69,o), (139,196,o), (161,351,cs), (183,506,o), (274,633,o), (421,633,cs), (578,633,o), (623,506,o), (601,351,cs), (579,196,o), (499,69,o), (342,69,cs) ); }, { closed = 1; nodes = ( (976,0,l), (987,80,l), (653,80,l), (687,320,l), (960,320,l), (971,400,l), (698,400,l), (729,620,l), (1063,620,l), (1074,700,l), (652,700,l), (554,0,l) ); } ); width = 1069; } ); unicode = 338; }, { glyphname = P; kernLeft = P; kernRight = P; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,1); target = (1,8); type = Stem; }, { horizontal = 1; origin = (1,0); target = (0,9); type = Stem; }, { origin = (0,10); target = (1,8); type = Stem; }, { origin = (1,4); target = (0,5); type = Stem; }, { origin = (0,10); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (150,-1,l), (185,252,l), (344,252,l), (485,252,o), (580,342,o), (598,471,cs), (618,615,o), (539,701,o), (409,701,cs), (158,701,l), (60,-1,l) ); }, { closed = 1; nodes = ( (235,621,l), (396,621,ls), (469,621,o), (522,573,o), (508,473,cs), (495,376,o), (429,332,o), (355,332,cs), (195,332,l) ); } ); width = 602; }, { associatedMasterId = master01; layerId = "7FCCACBF-61D8-41EB-96D9-CCFCE935C285"; name = foreground; shapes = ( { closed = 1; nodes = ( (335,614,ls), (408,614,o), (463,573,o), (463,473,cs), (463,376,o), (408,343,o), (334,343,cs), (200,343,l), (200,614,l) ); }, { closed = 1; nodes = ( (491,252,o), (573,342,o), (573,471,cs), (573,615,o), (482,701,o), (352,701,cs), (94,701,l), (94,-1,l), (202,-1,l), (202,252,l), (350,252,l) ); } ); width = 603; } ); unicode = 80; }, { glyphname = Thorn; kernLeft = P; kernRight = P; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,1); target = (1,8); type = Stem; }, { horizontal = 1; origin = (1,0); target = (0,9); type = Stem; }, { origin = (0,10); target = (1,8); type = Stem; }, { origin = (1,4); target = (0,5); type = Stem; }, { origin = (0,10); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (150,-1,l), (173,164,l), (295,164,l), (447,164,o), (528,234,o), (545,358,cs), (563,487,o), (502,553,o), (352,553,cs), (138,553,l), (60,-1,l) ); }, { closed = 1; nodes = ( (214,473,l), (338,473,ls), (423,473,o), (467,445,o), (455,360,cs), (442,263,o), (391,244,o), (305,244,cs), (182,244,l) ); }, { closed = 1; nodes = ( (213,464,l), (246,700,l), (158,700,l), (125,464,l) ); } ); width = 565; } ); unicode = 222; }, { glyphname = Q; kernLeft = Q; kernRight = Q; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (559,-11,o), (676,158,o), (703,351,cs), (730,544,o), (661,713,o), (437,713,cs), (213,713,o), (96,544,o), (69,351,cs), (42,158,o), (111,-11,o), (335,-11,cs) ); }, { closed = 1; nodes = ( (672,37,l), (494,264,l), (433,217,l), (432,216,o), (610,-8,o), (609,-12,c) ); }, { closed = 1; nodes = ( (190,69,o), (139,196,o), (161,351,cs), (183,506,o), (269,633,o), (426,633,cs), (583,633,o), (633,506,o), (611,351,cs), (589,196,o), (504,69,o), (347,69,cs) ); } ); width = 752; }, { associatedMasterId = master01; layerId = "EFBC5A6F-D367-4A7A-A5FC-DD2D16B712CA"; name = foreground; shapes = ( { closed = 1; nodes = ( (410,270,l), (486,340,l), (758,54,l), (681,-12,l) ); }, { closed = 1; nodes = ( (155,-13,o), (50,171,o), (50,355,cs), (50,548,o), (156,713,o), (386,713,c), (616,713,o), (722,548,o), (722,355,cs), (722,171,o), (617,-13,o), (386,-13,c) ); }, { closed = 1; nodes = ( (252,617,o), (162,512,o), (162,357,cs), (162,194,o), (248,83,o), (386,83,c), (524,83,o), (610,194,o), (610,357,cs), (610,512,o), (520,617,o), (386,617,c) ); } ); width = 817; } ); unicode = 81; }, { glyphname = R; kernLeft = R; kernRight = R; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (375,720); } ); hints = ( { horizontal = 1; origin = (0,1); target = (1,8); type = Stem; }, { horizontal = 1; origin = (0,12); target = (1,0); type = Stem; }, { origin = (0,13); target = (1,8); type = Stem; }, { origin = (1,4); target = (0,8); type = Stem; }, { origin = (0,13); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (150,0,l), (191,292,l), (342,292,l), (465,0,l), (569,0,l), (434,306,l), (533,340,o), (589,421,o), (600,498,cs), (613,588,o), (578,700,o), (411,700,cs), (158,700,l), (60,0,l) ); }, { closed = 1; nodes = ( (235,620,l), (401,620,ls), (475,620,o), (519,561,o), (510,498,c), (500,427,o), (438,372,o), (365,372,cs), (200,372,l) ); } ); width = 646; }, { associatedMasterId = master01; layerId = "AC853CD9-4D5C-4A9A-82EA-746798F3E6E3"; name = foreground; shapes = ( { closed = 1; nodes = ( (346,606,ls), (420,606,o), (463,561,o), (463,498,c), (463,427,o), (418,386,o), (345,386,cs), (200,386,l), (200,606,l) ); }, { closed = 1; nodes = ( (487,0,l), (612,0,l), (434,306,l), (528,340,o), (573,421,o), (573,498,cs), (573,588,o), (523,700,o), (356,700,cs), (94,700,l), (94,0,l), (202,0,l), (202,292,l), (323,292,l) ); } ); width = 652; } ); unicode = 82; }, { glyphname = Racute; kernLeft = R; kernRight = R; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = R; }, { pos = (282,208); ref = acutecomb; } ); width = 646; } ); unicode = 340; }, { glyphname = Rcaron; kernLeft = R; kernRight = R; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = R; }, { pos = (125,208); ref = caroncomb; } ); width = 646; } ); unicode = 344; }, { glyphname = Rcommaaccent; kernLeft = R; kernRight = R; lastChange = "2023-07-09 23:18:48 +0000"; layers = ( { layerId = master01; shapes = ( { ref = R; }, { ref = commaaccentcomb; } ); width = 646; } ); unicode = 342; }, { glyphname = Rmacronbelow; kernLeft = R; kernRight = R; lastChange = "2023-07-09 23:18:41 +0000"; layers = ( { layerId = master01; shapes = ( { ref = R; }, { pos = (27,0); ref = macronbelowcomb; } ); width = 646; } ); unicode = 7774; }, { glyphname = S; kernLeft = S; kernRight = S; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (279,-12); }, { name = top; pos = (380,720); } ); hints = ( { horizontal = 1; origin = (0,31); target = (0,24); type = Stem; }, { horizontal = 1; origin = (0,15); target = (0,8); type = Stem; }, { origin = (0,18); target = (0,5); type = Stem; }, { origin = (0,21); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (424,-12,o), (537,58,o), (556,195,c), (594,462,o), (174,336,o), (200,521,cs), (210,591,o), (285,632,o), (360,632,cs), (460,632,o), (499,572,o), (501,513,c), (594,513,l), (602,603,o), (531,712,o), (378,712,c), (213,712,o), (126,618,o), (111,516,c), (73,240,o), (494,375,o), (467,186,c), (458,114,o), (378,68,o), (290,68,c), (197,70,o), (144,129,o), (142,214,c), (45,214,l), (42,99,o), (104,-12,o), (279,-12,c) ); } ); width = 621; }, { associatedMasterId = master01; layerId = "917E4443-A1CA-4121-BF2B-9D5AF53FD226"; name = foreground; shapes = ( { closed = 1; nodes = ( (271,419,o), (184,433,o), (184,521,cs), (184,591,o), (247,623,o), (322,623,cs), (422,623,o), (473,572,o), (483,513,c), (585,513,l), (580,603,o), (502,712,o), (329,712,c), (164,712,o), (82,618,o), (82,516,c), (82,368,o), (176,334,o), (286,313,c), (397,296,o), (492,287,o), (492,186,c), (493,114,o), (422,79,o), (334,79,c), (240,81,o), (175,129,o), (161,214,c), (58,214,l), (71,99,o), (159,-12,o), (334,-12,c), (479,-12,o), (592,58,o), (592,195,c), (592,340,o), (493,376,o), (364,401,c) ); } ); width = 643; }, { associatedMasterId = master01; layerId = "C07C9857-C18C-48E6-9123-EFA8357277D3"; name = "8 Jul 21, 13:25"; shapes = ( { closed = 1; nodes = ( (271,419,o), (184,433,o), (184,521,cs), (184,591,o), (247,623,o), (322,623,cs), (422,623,o), (473,572,o), (483,513,c), (585,513,l), (580,603,o), (502,712,o), (329,712,c), (164,712,o), (82,618,o), (82,516,c), (82,368,o), (176,334,o), (286,313,c), (397,296,o), (492,287,o), (492,186,c), (493,114,o), (422,79,o), (334,79,c), (240,81,o), (175,129,o), (161,214,c), (58,214,l), (71,99,o), (159,-12,o), (334,-12,c), (479,-12,o), (592,58,o), (592,195,c), (592,340,o), (493,376,o), (364,401,c) ); }, { closed = 1; nodes = ( (271,419,o), (184,433,o), (184,521,cs), (184,591,o), (247,623,o), (322,623,cs), (422,623,o), (473,572,o), (483,513,c), (585,513,l), (580,603,o), (502,712,o), (329,712,c), (164,712,o), (82,618,o), (82,516,c), (82,368,o), (176,334,o), (286,313,c), (397,296,o), (492,287,o), (492,186,c), (493,114,o), (422,79,o), (334,79,c), (240,81,o), (175,129,o), (161,214,c), (58,214,l), (71,99,o), (159,-12,o), (334,-12,c), (479,-12,o), (592,58,o), (592,195,c), (592,340,o), (493,376,o), (364,401,c) ); } ); width = 643; }, { anchors = ( { name = top; pos = (311,720); } ); associatedMasterId = master01; hints = ( { horizontal = 1; origin = (0,31); target = (0,24); type = Stem; }, { horizontal = 1; origin = (0,12); target = (0,5); type = Stem; }, { origin = (0,15); target = (0,2); type = Stem; }, { origin = (0,21); target = (0,34); type = Stem; } ); layerId = "AA6848CB-AEE8-43E1-A86C-A0496DF06434"; name = "1 Oct 21, 07:21"; shapes = ( { closed = 1; nodes = ( (253,413,o), (162,433,o), (162,521,cs), (162,591,o), (231,632,o), (306,632,cs), (406,632,o), (451,572,o), (461,513,c), (557,513,l), (552,603,o), (486,712,o), (313,712,c), (148,712,o), (74,618,o), (74,516,c), (74,380,o), (168,338,o), (268,317,c), (379,291,o), (476,287,o), (476,186,c), (477,114,o), (404,68,o), (316,68,c), (222,70,o), (161,129,o), (147,214,c), (50,214,l), (63,99,o), (141,-12,o), (316,-12,c), (461,-12,o), (564,58,o), (564,195,c), (564,340,o), (465,370,o), (346,395,c) ); }, { closed = 1; nodes = ( (253,413,o), (162,433,o), (162,521,cs), (162,591,o), (231,632,o), (306,632,cs), (406,632,o), (451,572,o), (461,513,c), (557,513,l), (552,603,o), (486,712,o), (313,712,c), (148,712,o), (74,618,o), (74,516,c), (74,380,o), (168,338,o), (268,317,c), (379,291,o), (476,287,o), (476,186,c), (477,114,o), (404,68,o), (316,68,c), (222,70,o), (161,129,o), (147,214,c), (50,214,l), (63,99,o), (141,-12,o), (316,-12,c), (461,-12,o), (564,58,o), (564,195,c), (564,340,o), (465,370,o), (346,395,c) ); } ); visible = 1; width = 621; } ); unicode = 83; }, { glyphname = Sacute; kernLeft = S; kernRight = S; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = S; }, { pos = (287,208); ref = acutecomb; } ); width = 621; } ); unicode = 346; }, { glyphname = Scaron; kernLeft = S; kernRight = S; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = S; }, { pos = (130,208); ref = caroncomb; } ); width = 621; } ); unicode = 352; }, { glyphname = Scedilla; kernLeft = S; kernRight = S; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = S; }, { pos = (24,-14); ref = cedillacomb; } ); width = 621; } ); unicode = 350; }, { glyphname = Scommaaccent; kernLeft = S; kernRight = S; lastChange = "2023-07-09 23:18:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = S; }, { pos = (10,0); ref = commaaccentcomb; } ); width = 621; } ); unicode = 536; }, { glyphname = Germandbls; kernLeft = B; kernRight = B; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (482,-12,o), (603,69,o), (621,199,cs), (635,300,o), (557,382,o), (432,382,c), (622,600,l), (606,662,o), (518,712,o), (410,712,cs), (246,712,o), (147,605,o), (120,416,c), (62,0,l), (150,0,l), (207,407,ls), (229,563,o), (309,631,o), (398,631,cs), (461,631,o), (501,612,o), (507,592,c), (327,382,l), (317,313,l), (411,313,ls), (471,313,o), (546,275,o), (535,203,cs), (525,128,o), (459,68,o), (380,68,cs), (340,68,o), (306,78,o), (281,98,c), (224,30,l), (262,2,o), (312,-12,o), (368,-12,cs) ); } ); width = 682; }, { associatedMasterId = master01; layerId = "F21A90D2-DE7B-4C42-8F88-BC0E7842DBD9"; name = "7 Jun 23, 15:00"; shapes = ( { closed = 1; nodes = ( (185,0,l), (97,0,l), (97,416,l), (97,601,o), (174,700,o), (329,700,cs), (437,700,o), (530,630,o), (555,568,c), (404,407,l), (559,407,o), (636,315,o), (636,199,cs), (636,60,o), (524,-12,o), (395,-12,cs), (339,-12,o), (287,2,o), (245,30,c), (292,96,l), (320,76,o), (356,68,o), (396,68,cs), (485,68,o), (550,119,o), (550,203,cs), (550,300,o), (480,338,o), (381,338,cs), (290,338,l), (290,407,l), (441,560,l), (432,580,o), (393,615,o), (330,615,cs), (218,615,o), (185,521,o), (185,407,cs) ); } ); width = 690; } ); unicode = 7838; }, { glyphname = T; kernLeft = T; kernRight = T; lastChange = "2023-08-03 13:01:11 +0000"; layers = ( { anchors = ( { name = bottom; pos = (212,0); }, { name = top; pos = (313,712); } ); hints = ( { horizontal = 1; origin = (0,4); target = (0,5); type = Stem; }, { origin = (0,7); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (258,0,l), (345,620,l), (535,620,l), (546,700,l), (78,700,l), (67,620,l), (257,620,l), (170,0,l) ); } ); width = 499; }, { associatedMasterId = master01; layerId = "B6AB5140-E37C-42F2-A30F-777986DD981C"; name = foreground; shapes = ( { closed = 1; nodes = ( (318,608,l), (517,608,l), (517,700,l), (5,700,l), (5,608,l), (212,608,l), (212,0,l), (318,0,l) ); } ); width = 522; } ); unicode = 84; }, { glyphname = Tcaron; kernLeft = T; kernRight = T; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = T; }, { pos = (63,200); ref = caroncomb; } ); width = 499; } ); unicode = 356; }, { glyphname = Tcedilla; kernLeft = T; kernRight = T; lastChange = "2023-07-09 23:28:14 +0000"; layers = ( { layerId = master01; shapes = ( { ref = T; }, { pos = (-43,-2); ref = cedillacomb; } ); width = 499; } ); unicode = 354; }, { glyphname = Tcommaaccent; kernLeft = T; kernRight = T; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = T; }, { pos = (-57,12); ref = commaaccentcomb; } ); width = 499; } ); unicode = 538; }, { glyphname = Tdotbelow; kernLeft = T; kernRight = T; lastChange = "2023-07-09 23:28:14 +0000"; layers = ( { layerId = master01; shapes = ( { ref = T; }, { pos = (172,0); ref = dotbelowcomb; } ); width = 499; } ); unicode = 7788; }, { glyphname = Tmacronbelow; kernLeft = T; kernRight = T; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = T; }, { pos = (-66,12); ref = macronbelowcomb; } ); width = 499; } ); unicode = 7790; }, { glyphname = U; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (406,712); } ); hints = ( { horizontal = 1; origin = (0,17); target = (0,9); type = Stem; }, { origin = (0,14); target = (0,11); type = Stem; }, { place = (472,78); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (470,-12,o), (571,98,o), (596,275,cs), (655,701,l), (567,701,l), (508,275,ls), (488,139,o), (405,73,o), (312,73,cs), (215,73,o), (154,139,o), (174,275,cs), (233,701,l), (145,701,l), (86,275,ls), (61,98,o), (141,-12,o), (304,-12,cs) ); } ); width = 674; }, { associatedMasterId = master01; layerId = "5FB1FA1A-EB05-444A-B8AE-D1ED2DC196B0"; name = foreground; shapes = ( { closed = 1; nodes = ( (258,91,o), (181,142,o), (181,278,cs), (181,701,l), (70,701,l), (70,278,ls), (70,101,o), (156,-12,o), (356,-12,c), (523,-12,o), (620,102,o), (620,280,cs), (620,700,l), (507,700,l), (507,279,ls), (507,142,o), (447,91,o), (352,91,c) ); } ); width = 690; } ); unicode = 85; }, { glyphname = Uacute; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (313,200); ref = acutecomb; } ); width = 674; } ); unicode = 218; }, { glyphname = Ubreve; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (62,200); ref = brevecomb; } ); width = 674; } ); unicode = 364; }, { glyphname = Ucircumflex; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (158,200); ref = circumflexcomb; } ); width = 674; } ); unicode = 219; }, { glyphname = Udieresis; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (208,200); ref = dieresiscomb; } ); width = 674; } ); unicode = 220; }, { glyphname = Udotbelow; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (265,0); ref = dotbelowcomb; } ); width = 674; } ); unicode = 7908; }, { glyphname = Ugrave; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (191,200); ref = gravecomb; } ); width = 674; } ); unicode = 217; }, { glyphname = Uhookabove; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (79,212); ref = hookabovecomb; } ); width = 674; } ); unicode = 7910; }, { glyphname = Uhorn; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (780,634,o), (804,755,o), (793,817,c), (705,811,l), (711,767,o), (705,702,o), (627,700,c), (640,634,l) ); }, { pos = (0,-1); ref = U; } ); width = 674; } ); unicode = 431; }, { glyphname = Uhornacute; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Uhorn; }, { pos = (313,199); ref = acutecomb; } ); width = 674; } ); unicode = 7912; }, { glyphname = Uhorndotbelow; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Uhorn; }, { pos = (265,0); ref = dotbelowcomb; } ); width = 674; } ); unicode = 7920; }, { glyphname = Uhorngrave; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Uhorn; }, { pos = (191,199); ref = gravecomb; } ); width = 674; } ); unicode = 7914; }, { glyphname = Uhornhookabove; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Uhorn; }, { pos = (79,211); ref = hookabovecomb; } ); width = 674; } ); unicode = 7916; }, { glyphname = Uhorntilde; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Uhorn; }, { pos = (70,199); ref = tildecomb; } ); width = 674; } ); unicode = 7918; }, { glyphname = Uhungarumlaut; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (116,200); ref = hungarumlautcomb; } ); width = 674; } ); unicode = 368; }, { glyphname = Umacron; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (68,200); ref = macroncomb; } ); width = 674; } ); unicode = 362; }, { glyphname = Uogonek; kernLeft = U; kernRight = U; lastChange = "2023-07-09 23:19:16 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { ref = ogonekcomb; } ); width = 674; } ); unicode = 370; }, { glyphname = Uring; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (251,200); ref = ringcomb; } ); width = 674; } ); unicode = 366; }, { glyphname = Utilde; kernLeft = U; kernRight = U; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = U; }, { pos = (70,200); ref = tildecomb; } ); width = 674; } ); unicode = 360; }, { glyphname = V; kernLeft = V; kernRight = V; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (302,0,l), (155,700,l), (71,700,l), (218,0,l) ); }, { closed = 1; nodes = ( (303,0,l), (645,700,l), (561,700,l), (219,0,l) ); } ); width = 590; }, { associatedMasterId = master01; layerId = "0FF30111-47E3-4533-B04A-7E0F4FCC8B75"; name = foreground; shapes = ( { closed = 1; nodes = ( (246,0,l), (356,0,l), (120,701,l), (10,701,l) ); }, { closed = 1; nodes = ( (515,701,l), (279,0,l), (385,0,l), (621,701,l) ); } ); width = 631; } ); unicode = 86; }, { glyphname = W; kernLeft = W; kernRight = W; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (528,712); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (258,0,l), (508,569,l), (598,0,l), (713,0,l), (961,700,l), (868,700,l), (669,116,l), (580,700,l), (472,700,l), (219,116,l), (184,700,l), (91,700,l), (143,0,l) ); } ); width = 926; }, { associatedMasterId = master01; layerId = "D6814062-5E09-4D1C-9A77-973156DD01C6"; name = foreground; shapes = ( { closed = 1; nodes = ( (347,563,l), (209,162,l), (127,700,l), (24,700,l), (137,0,l), (260,0,l), (398,432,l), (536,0,l), (659,0,l), (772,700,l), (671,700,l), (591,162,l), (451,563,l) ); } ); width = 796; } ); unicode = 87; }, { glyphname = Wacute; kernLeft = W; kernRight = W; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = W; }, { pos = (435,200); ref = acutecomb; } ); width = 926; } ); unicode = 7810; }, { glyphname = Wcircumflex; kernLeft = W; kernRight = W; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = W; }, { pos = (280,200); ref = circumflexcomb; } ); width = 926; } ); unicode = 372; }, { glyphname = Wdieresis; kernLeft = W; kernRight = W; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = W; }, { pos = (330,200); ref = dieresiscomb; } ); width = 926; } ); unicode = 7812; }, { glyphname = Wgrave; kernLeft = W; kernRight = W; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = W; }, { pos = (313,200); ref = gravecomb; } ); width = 926; } ); unicode = 7808; }, { glyphname = X; kernLeft = X; kernRight = X; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (522,0,l), (191,700,l), (90,700,l), (422,0,l) ); }, { closed = 1; nodes = ( (81,0,l), (609,700,l), (509,700,l), (-18,0,l) ); } ); width = 574; }, { associatedMasterId = master01; layerId = "246BAF68-6253-4F28-9414-8F7B7433EFF2"; name = foreground; shapes = ( { closed = 1; nodes = ( (620,0,l), (149,700,l), (22,700,l), (494,0,l) ); }, { closed = 1; nodes = ( (620,700,l), (497,700,l), (26,0,l), (148,0,l) ); } ); width = 649; } ); unicode = 88; }, { glyphname = Y; kernLeft = Y; kernRight = Y; lastChange = "2023-08-03 12:44:40 +0000"; layers = ( { anchors = ( { name = top; pos = (364,712); } ); hints = ( { horizontal = 1; origin = (0,8); target = (0,6); type = Stem; }, { origin = (0,8); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (304,0,l), (344,309,l), (640,700,l), (547,700,l), (313,390,l), (168,700,l), (68,700,l), (262,309,l), (216,0,l) ); } ); width = 582; }, { associatedMasterId = master01; layerId = "8B946DEB-BFC8-4419-BD29-DE4D27CA2D95"; name = foreground; shapes = ( { closed = 1; nodes = ( (345,0,l), (345,309,l), (580,700,l), (462,700,l), (296,404,l), (127,700,l), (2,700,l), (239,309,l), (239,0,l) ); } ); width = 582; } ); unicode = 89; }, { glyphname = Yacute; kernLeft = Y; kernRight = Y; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Y; }, { pos = (271,200); ref = acutecomb; } ); width = 582; } ); unicode = 221; }, { glyphname = Ycircumflex; kernLeft = Y; kernRight = Y; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Y; }, { pos = (116,200); ref = circumflexcomb; } ); width = 582; } ); unicode = 374; }, { glyphname = Ydieresis; kernLeft = Y; kernRight = Y; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Y; }, { pos = (166,200); ref = dieresiscomb; } ); width = 582; } ); unicode = 376; }, { glyphname = Ydotbelow; kernLeft = Y; kernRight = Y; lastChange = "2023-07-09 23:19:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Y; }, { pos = (218,0); ref = dotbelowcomb; } ); width = 582; } ); unicode = 7924; }, { glyphname = Ygrave; kernLeft = Y; kernRight = Y; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Y; }, { pos = (149,200); ref = gravecomb; } ); width = 582; } ); unicode = 7922; }, { glyphname = Yhookabove; kernLeft = Y; kernRight = Y; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Y; }, { pos = (37,212); ref = hookabovecomb; } ); width = 582; } ); unicode = 7926; }, { glyphname = Ytilde; kernLeft = Y; kernRight = Y; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Y; }, { pos = (28,200); ref = tildecomb; } ); width = 582; } ); unicode = 7928; }, { glyphname = Z; kernLeft = Z; kernRight = Z; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (345,712); } ); hints = ( { horizontal = 1; origin = (0,9); target = (0,2); type = Stem; }, { horizontal = 1; origin = (0,5); target = (0,6); type = Stem; }, { origin = (0,9); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (469,1,l), (480,81,l), (125,81,l), (556,618,l), (567,700,l), (108,700,l), (97,620,l), (452,620,l), (22,83,l), (10,1,l) ); } ); width = 554; }, { associatedMasterId = master01; layerId = "2E06CB95-C68F-4397-AF31-B6A751E83E1E"; name = foreground; shapes = ( { closed = 1; nodes = ( (529,1,l), (529,93,l), (162,93,l), (529,606,l), (529,700,l), (40,700,l), (40,608,l), (407,608,l), (40,95,l), (40,1,l) ); } ); width = 569; } ); unicode = 90; }, { glyphname = Zacute; kernLeft = Z; kernRight = Z; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Z; }, { pos = (252,200); ref = acutecomb; } ); width = 554; } ); unicode = 377; }, { glyphname = Zcaron; kernLeft = Z; kernRight = Z; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Z; }, { pos = (95,200); ref = caroncomb; } ); width = 554; } ); unicode = 381; }, { glyphname = Zdotaccent; kernLeft = Z; kernRight = Z; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = Z; }, { pos = (234,200); ref = dotaccentcomb; } ); width = 554; } ); unicode = 379; }, { glyphname = Lcommaaccent.loclMAH; kernLeft = L; kernRight = L; lastChange = "2023-07-09 23:19:56 +0000"; layers = ( { layerId = master01; shapes = ( { ref = L; }, { ref = cedillacomb; } ); width = 524; } ); }, { glyphname = Ncommaaccent.loclMAH; kernLeft = N; kernRight = N; lastChange = "2023-07-09 23:19:59 +0000"; layers = ( { layerId = master01; shapes = ( { ref = N; }, { pos = (57,-2); ref = commaaccentcomb.loclMAH; } ); width = 713; } ); }, { glyphname = a; kernLeft = a; kernRight = a; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (238,-12); }, { name = ogonek; pos = (441,0); }, { name = top; pos = (336,516); } ); hints = ( { horizontal = 1; place = (-47,41); type = Stem; }, { horizontal = 1; place = (204,41); type = Stem; }, { horizontal = 1; place = (477,41); type = Stem; }, { horizontal = 1; place = (-35,60); type = Stem; }, { place = (21,49); type = Stem; }, { place = (330,49); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (307,-12,o), (386,27,o), (416,96,c), (403,0,l), (486,0,l), (556,500,l), (476,500,l), (462,402,l), (449,457,o), (405,512,o), (317,512,cs), (186,512,o), (78,419,o), (54,250,cs), (31,86,o), (107,-12,o), (238,-12,cs) ); }, { closed = 1; nodes = ( (486,0,l), (403,0,l) ); }, { closed = 1; nodes = ( (160,64,o), (124,148,o), (138,252,cs), (153,356,o), (212,437,o), (310,437,cs), (409,437,o), (452,360,o), (437,250,cs), (423,148,o), (357,64,o), (261,64,cs) ); } ); width = 607; }, { associatedMasterId = master01; layerId = "3B5242A6-E9B9-4106-A318-25CEEEEB8629"; name = foreground; shapes = ( { closed = 1; nodes = ( (131,199,o), (196,247,o), (349,247,c), (349,226,ls), (349,127,o), (247,78,o), (195,78,cs), (152,78,o), (131,114,o), (131,148,cs) ); }, { closed = 1; nodes = ( (355,67,o), (377,0,o), (448,0,cs), (473,0,o), (496,6,o), (510,16,c), (510,95,l), (470,91,o), (447,107,o), (447,147,c), (447,340,ls), (447,414,o), (408,512,o), (257,512,cs), (115,512,o), (56,404,o), (56,404,cs), (132,355,l), (132,355,o), (167,425,o), (250,426,cs), (315,427,o), (347,388,o), (349,344,c), (349,328,l), (165,328,o), (40,262,o), (40,135,cs), (40,43,o), (103,-12,o), (192,-12,cs), (318,-12,o), (356,106,o), (356,106,c) ); } ); width = 550; } ); unicode = 97; }, { glyphname = aacute; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (243,4); ref = acutecomb; } ); width = 607; } ); unicode = 225; }, { glyphname = abreve; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (-8,4); ref = brevecomb; } ); width = 607; } ); unicode = 259; }, { glyphname = abreveacute; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (-8,4); ref = brevecomb_acutecomb; } ); width = 607; } ); unicode = 7855; }, { glyphname = abrevedotbelow; kernLeft = a; kernRight = a; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (198,-12); ref = dotbelowcomb; }, { pos = (-8,4); ref = brevecomb; } ); width = 607; } ); unicode = 7863; }, { glyphname = abrevegrave; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (-8,4); ref = brevecomb_gravecomb; } ); width = 607; } ); unicode = 7857; }, { glyphname = abrevehookabove; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (-8,4); ref = brevecomb_hookabovecomb; } ); width = 607; } ); unicode = 7859; }, { glyphname = abrevetilde; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (-8,4); ref = brevecomb_tildecomb; } ); width = 607; } ); unicode = 7861; }, { glyphname = acircumflex; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (88,4); ref = circumflexcomb; } ); width = 607; } ); unicode = 226; }, { glyphname = acircumflexacute; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (87,4); ref = circumflexcomb_acutecomb; } ); width = 607; } ); unicode = 7845; }, { glyphname = acircumflexdotbelow; kernLeft = a; kernRight = a; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (198,-12); ref = dotbelowcomb; }, { pos = (88,4); ref = circumflexcomb; } ); width = 607; } ); unicode = 7853; }, { glyphname = acircumflexgrave; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (88,4); ref = circumflexcomb_gravecomb; } ); width = 607; } ); unicode = 7847; }, { glyphname = acircumflexhookabove; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (88,4); ref = circumflexcomb_hookabovecomb; } ); width = 607; } ); unicode = 7849; }, { glyphname = acircumflextilde; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (88,4); ref = circumflexcomb_tildecomb; } ); width = 607; } ); unicode = 7851; }, { glyphname = adieresis; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (138,4); ref = dieresiscomb; } ); width = 607; } ); unicode = 228; }, { glyphname = adotbelow; kernLeft = a; kernRight = a; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (198,-12); ref = dotbelowcomb; } ); width = 607; } ); unicode = 7841; }, { glyphname = agrave; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (121,4); ref = gravecomb; } ); width = 607; } ); unicode = 224; }, { glyphname = ahookabove; kernLeft = a; kernRight = a; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (9,16); ref = hookabovecomb; } ); width = 607; } ); unicode = 7843; }, { glyphname = amacron; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (-2,4); ref = macroncomb; } ); width = 607; } ); unicode = 257; }, { glyphname = aogonek; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (120,0); ref = ogonekcomb; } ); width = 607; } ); unicode = 261; }, { glyphname = aring; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (181,4); ref = ringcomb; } ); width = 607; } ); unicode = 229; }, { glyphname = atilde; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:20:08 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; }, { pos = (0,4); ref = tildecomb; } ); width = 607; } ); unicode = 227; }, { glyphname = ae; kernLeft = a; kernRight = e; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (682,-13,o), (758,30,o), (811,113,c), (741,143,l), (706,92,o), (656,63,o), (596,63,c), (495,63,o), (461,141,o), (475,245,cs), (490,349,o), (547,436,o), (648,436,c), (739,436,o), (777,360,o), (770,304,c), (481,304,l), (471,233,l), (844,233,l), (848,261,l), (872,434,o), (782,512,o), (661,512,c), (535,512,o), (416,412,o), (393,248,cs), (370,87,o), (461,-13,o), (587,-13,c) ); }, { closed = 1; nodes = ( (144,64,o), (118,91,o), (125,142,cs), (136,223,o), (219,239,o), (391,239,c), (389,219,ls), (375,120,o), (257,64,o), (195,64,cs) ); }, { closed = 1; nodes = ( (308,-12,o), (403,113,o), (403,113,c), (428,155,o), (464,173,o), (490,340,cs), (503,429,o), (434,512,o), (316,512,cs), (150,512,o), (91,393,o), (91,393,c), (154,356,l), (154,356,o), (196,436,o), (298,436,cs), (366,436,o), (413,390,o), (405,336,cs), (401,305,l), (168,305,o), (58,262,o), (40,135,cs), (27,43,o), (82,-12,o), (163,-12,cs) ); } ); width = 896; } ); unicode = 230; }, { glyphname = b; kernLeft = l; kernRight = b; lastChange = "2023-08-03 12:05:51 +0000"; layers = ( { anchors = ( { name = bottom; pos = (297,-11); } ); hints = ( { horizontal = 1; origin = (0,16); target = (1,11); type = Stem; }, { horizontal = 1; origin = (0,5); target = (1,5); type = Stem; }, { horizontal = 1; origin = (0,11); target = (1,11); type = Stem; }, { origin = (0,11); target = (1,2); type = Stem; }, { origin = (1,8); target = (0,2); type = Stem; }, { origin = (0,11); target = (0,8); type = Stem; }, { origin = (0,11); target = (0,12); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (428,-12,o), (536,81,o), (560,250,cs), (583,414,o), (507,512,o), (376,512,cs), (307,512,o), (228,473,o), (198,404,c), (242,720,l), (158,720,l), (57,0,l), (138,0,l), (152,98,l), (165,43,o), (209,-12,o), (297,-12,cs) ); }, { closed = 1; nodes = ( (205,63,o), (162,140,o), (177,250,cs), (191,352,o), (257,435,o), (353,436,cs), (454,437,o), (490,352,o), (476,248,cs), (461,144,o), (402,63,o), (304,63,cs) ); } ); width = 614; }, { associatedMasterId = master01; hints = ( { horizontal = 1; origin = (1,11); target = (0,5); type = Stem; }, { horizontal = 1; origin = (1,5); target = (0,11); type = Stem; }, { horizontal = 1; origin = (1,11); target = (0,5); type = Stem; }, { origin = (1,8); target = (0,8); type = Stem; }, { origin = (0,2); target = (1,2); type = Stem; }, { origin = (1,8); target = (0,8); type = Stem; } ); layerId = "67A6802E-0ADA-4E35-B6DE-2FB806E7B19C"; name = "21 Jul 21, 11:33"; shapes = ( { closed = 1; nodes = ( (419,436,o), (473,339,o), (473,252,cs), (473,165,o), (421,64,o), (327,64,c), (231,64,o), (173,165,o), (173,252,cs), (173,339,o), (223,436,o), (321,436,c) ); }, { closed = 1; nodes = ( (460,-13,o), (576,81,o), (576,250,cs), (576,414,o), (465,512,o), (336,512,c), (207,512,o), (92,412,o), (92,248,cs), (92,79,o), (202,-13,o), (331,-13,c) ); } ); width = 613; } ); unicode = 98; }, { glyphname = c; kernLeft = c; kernRight = c; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (255,-13); }, { name = top; pos = (330,521); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (341,-13,o), (425,35,o), (471,118,c), (400,148,l), (371,97,o), (324,63,o), (264,63,c), (163,63,o), (124,147,o), (138,251,cs), (153,355,o), (215,436,o), (316,436,c), (376,436,o), (414,402,o), (428,351,c), (508,381,l), (485,464,o), (417,512,o), (329,512,c), (203,512,o), (77,412,o), (54,248,cs), (31,87,o), (129,-13,o), (255,-13,c) ); } ); width = 536; }, { associatedMasterId = master01; layerId = "D5044F65-6BC5-444E-BECC-015FB8AF7D9F"; name = foreground; shapes = ( { closed = 1; nodes = ( (150,338,o), (200,429,o), (294,429,c), (356,429,o), (397,384,o), (413,331,c), (502,360,l), (479,465,o), (389,512,o), (293,512,c), (162,512,o), (50,421,o), (50,251,c), (50,81,o), (162,-12,o), (293,-12,c), (389,-12,o), (481,38,o), (506,147,c), (417,176,l), (401,123,o), (356,72,o), (294,72,c), (200,72,o), (150,164,o), (150,250,c) ); } ); width = 550; }, { associatedMasterId = master01; layerId = "5E179671-36B7-481B-ACDA-F3411599AAD9"; name = "22 Jul 21, 10:29"; shapes = ( { closed = 1; nodes = ( (54,87,o), (166,-13,o), (292,-13,c), (380,-13,o), (457,35,o), (492,118,c), (416,148,l), (395,97,o), (350,63,o), (290,63,c), (189,63,o), (137,147,o), (137,251,cs), (137,355,o), (189,436,o), (290,436,c), (350,436,o), (395,402,o), (416,351,c), (492,381,l), (457,464,o), (380,512,o), (292,512,c), (166,512,o), (54,412,o), (54,248,cs) ); } ); width = 536; } ); unicode = 99; }, { glyphname = cacute; kernLeft = c; kernRight = c; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = c; }, { pos = (237,9); ref = acutecomb; } ); width = 536; } ); unicode = 263; }, { glyphname = ccaron; kernLeft = c; kernRight = c; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = c; }, { pos = (80,9); ref = caroncomb; } ); width = 536; } ); unicode = 269; }, { glyphname = ccedilla; kernLeft = c; kernRight = c; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = c; }, { pos = (0,-15); ref = cedillacomb; } ); width = 536; } ); unicode = 231; }, { glyphname = cdotaccent; kernLeft = c; kernRight = c; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = c; }, { pos = (219,9); ref = dotaccentcomb; } ); width = 536; } ); unicode = 267; }, { glyphname = d; kernLeft = d; kernRight = d; lastChange = "2023-08-03 12:06:21 +0000"; layers = ( { anchors = ( { name = bottom; pos = (256,0); }, { name = center; pos = (314,250); }, { name = top; pos = (423,720); }, { name = topright; pos = (657,720); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (331,-12,o), (391,43,o), (421,98,c), (411,27,o), (446,-1,o), (498,-1,cs), (523,-1,o), (536,3,o), (551,11,c), (561,79,l), (510,68,o), (499,86,o), (505,126,cs), (587,712,l), (503,712,l), (460,404,l), (448,473,o), (381,512,o), (312,512,cs), (181,512,o), (77,414,o), (54,250,cs), (30,81,o), (112,-12,o), (243,-12,cs) ); }, { closed = 1; nodes = ( (160,63,o), (123,144,o), (138,248,cs), (152,352,o), (212,436,o), (313,436,cs), (409,436,o), (451,352,o), (437,250,cs), (422,140,o), (357,63,o), (258,63,cs) ); } ); width = 627; }, { associatedMasterId = master01; layerId = "7399E59F-C8CF-444F-A145-6D2B7F7CF480"; name = foreground; shapes = ( { closed = 1; nodes = ( (397,426,o), (440,339,o), (440,252,cs), (440,165,o), (391,75,o), (299,75,c), (205,75,o), (156,165,o), (156,252,cs), (156,339,o), (203,426,o), (299,426,c) ); }, { closed = 1; nodes = ( (443,62,o), (477,2,o), (536,1,cs), (578,0,o), (614,18,o), (614,18,c), (614,18,o), (614,101,o), (614,101,cs), (564,90,o), (537,105,o), (537,150,c), (537,720,l), (437,720,l), (437,422,l), (414,475,o), (343,512,o), (274,512,c), (141,512,o), (54,397,o), (54,250,cs), (54,123,o), (122,-12,o), (274,-11,c), (349,-11,o), (419,25,o), (444,101,c) ); } ); width = 664; } ); unicode = 100; }, { glyphname = eth; kernLeft = d; kernRight = d; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (365,-12,o), (487,78,o), (515,250,cs), (537,388,o), (540,617,o), (251,738,c), (202,677,l), (323,636,o), (415,526,o), (421,470,c), (400,507,o), (329,512,o), (319,512,cs), (199,512,o), (78,422,o), (54,250,cs), (30,78,o), (125,-12,o), (245,-12,cs) ); }, { closed = 1; nodes = ( (160,64,o), (119,133,o), (135,250,cs), (151,367,o), (212,436,o), (308,436,cs), (405,436,o), (449,367,o), (433,250,cs), (417,133,o), (353,64,o), (256,64,cs) ); }, { closed = 1; nodes = ( (507,644,l), (494,701,l), (181,597,l), (195,540,l) ); } ); width = 569; } ); unicode = 240; }, { glyphname = dcaron; kernLeft = d; kernRight = lcaron; lastChange = "2023-08-03 12:06:25 +0000"; layers = ( { layerId = master01; shapes = ( { ref = d; }, { pos = (469,0); ref = caroncomb.alt; } ); width = 627; } ); unicode = 271; }, { glyphname = dcroat; kernLeft = d; kernRight = d; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (634,582,l), (643,650,l), (350,650,l), (341,582,l) ); }, { ref = d; } ); width = 627; } ); unicode = 273; }, { glyphname = ddotbelow; kernLeft = d; kernRight = d; lastChange = "2023-08-03 12:09:38 +0000"; layers = ( { layerId = master01; shapes = ( { ref = d; }, { pos = (216,0); ref = dotbelowcomb; } ); width = 627; } ); unicode = 7693; }, { glyphname = dmacronbelow; kernLeft = d; kernRight = d; lastChange = "2023-08-03 12:09:38 +0000"; layers = ( { layerId = master01; shapes = ( { ref = d; }, { pos = (-22,12); ref = macronbelowcomb; } ); width = 627; } ); unicode = 7695; }, { glyphname = e; kernLeft = e; kernRight = e; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (254,-13); }, { name = top; pos = (328,515); } ); hints = ( { horizontal = 1; origin = (0,28); target = (0,6); type = Stem; }, { horizontal = 1; origin = (0,17); target = (0,15); type = Stem; }, { horizontal = 1; origin = (0,22); target = (0,12); type = Stem; }, { origin = (0,25); target = (0,9); type = Stem; }, { origin = (0,15); target = (0,18); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (355,-13,o), (431,30,o), (484,113,c), (414,143,l), (379,92,o), (323,63,o), (263,63,c), (162,63,o), (122,141,o), (136,245,cs), (151,349,o), (214,436,o), (315,436,c), (412,436,o), (450,360,o), (443,304,c), (142,304,l), (131,230,l), (516,230,l), (521,261,l), (545,434,o), (455,512,o), (328,512,c), (202,512,o), (77,412,o), (54,248,cs), (31,87,o), (128,-13,o), (254,-13,c) ); } ); width = 569; }, { associatedMasterId = master01; layerId = "169FF446-F214-45AF-87EB-12250BF5A1D5"; name = foreground; visible = 1; width = 543; }, { associatedMasterId = master01; layerId = "E0E72D27-D989-452C-96DA-744C8CBAEC4B"; name = "10 Jul 21, 15:30"; shapes = ( { closed = 1; nodes = ( (41,87,o), (153,-13,o), (279,-13,c), (367,-13,o), (444,35,o), (479,118,c), (403,148,l), (382,97,o), (337,63,o), (277,63,c), (176,63,o), (124,147,o), (124,251,cs), (124,355,o), (176,436,o), (277,436,c), (337,436,o), (382,402,o), (403,351,c), (479,381,l), (444,464,o), (367,512,o), (279,512,c), (153,512,o), (41,412,o), (41,248,cs) ); }, { closed = 1; nodes = ( (406,-13,o), (521,81,o), (521,250,cs), (521,414,o), (411,512,o), (283,512,c), (156,512,o), (42,412,o), (42,248,cs), (42,79,o), (151,-13,o), (278,-13,c) ); }, { closed = 1; nodes = ( (377,435,o), (437,352,o), (437,250,cs), (437,140,o), (377,63,o), (278,63,c), (179,63,o), (126,144,o), (126,248,cs), (126,352,o), (179,436,o), (281,436,c) ); } ); visible = 1; width = 543; } ); unicode = 101; }, { glyphname = eacute; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (235,3); ref = acutecomb; } ); width = 569; } ); unicode = 233; }, { glyphname = ecaron; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (78,3); ref = caroncomb; } ); width = 569; } ); unicode = 283; }, { glyphname = ecircumflex; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (80,3); ref = circumflexcomb; } ); width = 569; } ); unicode = 234; }, { glyphname = ecircumflexacute; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (79,3); ref = circumflexcomb_acutecomb; } ); width = 569; } ); unicode = 7871; }, { glyphname = ecircumflexdotbelow; kernLeft = e; kernRight = e; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (214,-13); ref = dotbelowcomb; }, { pos = (80,3); ref = circumflexcomb; } ); width = 569; } ); unicode = 7879; }, { glyphname = ecircumflexgrave; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (80,3); ref = circumflexcomb_gravecomb; } ); width = 569; } ); unicode = 7873; }, { glyphname = ecircumflexhookabove; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (80,3); ref = circumflexcomb_hookabovecomb; } ); width = 569; } ); unicode = 7875; }, { glyphname = ecircumflextilde; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (80,3); ref = circumflexcomb_tildecomb; } ); width = 569; } ); unicode = 7877; }, { glyphname = edieresis; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (130,3); ref = dieresiscomb; } ); width = 569; } ); unicode = 235; }, { glyphname = edotaccent; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (217,3); ref = dotaccentcomb; } ); width = 569; } ); unicode = 279; }, { glyphname = edotbelow; kernLeft = e; kernRight = e; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (214,-13); ref = dotbelowcomb; } ); width = 569; } ); unicode = 7865; }, { glyphname = egrave; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (113,3); ref = gravecomb; } ); width = 569; } ); unicode = 232; }, { glyphname = ehookabove; kernLeft = e; kernRight = e; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (1,15); ref = hookabovecomb; } ); width = 569; } ); unicode = 7867; }, { glyphname = emacron; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (-10,3); ref = macroncomb; } ); width = 569; } ); unicode = 275; }, { glyphname = eogonek; kernLeft = e; kernRight = e; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (402,-197,o), (435,-193,o), (453,-182,c), (463,-112,l), (419,-133,o), (366,-124,o), (374,-68,cs), (381,-18,o), (444,58,o), (484,113,c), (371,33,l), (349,21,o), (303,-33,o), (296,-83,cs), (288,-140,o), (318,-197,o), (389,-197,cs) ); }, { ref = e; } ); width = 569; } ); unicode = 281; }, { glyphname = etilde; kernLeft = e; kernRight = e; lastChange = "2023-07-09 23:20:34 +0000"; layers = ( { layerId = master01; shapes = ( { ref = e; }, { pos = (-8,3); ref = tildecomb; } ); width = 569; } ); unicode = 7869; }, { glyphname = f; kernLeft = f; kernRight = f; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,20); target = (0,21); type = Stem; }, { horizontal = 1; origin = (0,11); target = (0,15); type = Stem; }, { origin = (0,23); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (192,0,l), (251,424,l), (379,424,l), (390,500,l), (262,500,l), (273,575,ls), (280,629,o), (310,648,o), (359,648,cs), (372,648,o), (390,647,o), (405,644,c), (415,712,l), (399,717,o), (376,720,o), (360,720,cs), (251,720,o), (202,669,o), (189,576,cs), (178,500,l), (82,500,l), (71,424,l), (167,424,l), (108,0,l) ); } ); width = 375; }, { associatedMasterId = master01; layerId = "05947023-CF81-4962-BA32-552EF9D46824"; name = foreground; shapes = ( { closed = 1; nodes = ( (134,409,l), (134,0,l), (233,0,l), (233,409,l), (365,409,l), (365,500,l), (233,500,l), (232,602,o), (245,630,o), (294,635,cs), (332,639,o), (364,630,o), (364,630,c), (364,720,l), (349,725,o), (321,728,o), (305,728,cs), (164,728,o), (134,664,o), (134,500,c), (40,500,l), (40,409,l) ); } ); width = 375; } ); unicode = 102; }, { glyphname = g; kernLeft = g; kernRight = g; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (317,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (344,-232,o), (462,-171,o), (488,17,cs), (556,500,l), (476,500,l), (462,402,l), (449,457,o), (405,512,o), (317,512,cs), (186,512,o), (78,419,o), (54,250,cs), (31,86,o), (107,-12,o), (238,-12,cs), (307,-12,o), (386,27,o), (416,96,c), (405,17,ls), (389,-96,o), (334,-156,o), (224,-156,cs), (157,-156,o), (110,-125,o), (94,-66,c), (22,-107,l), (48,-195,o), (126,-229,o), (213,-230,cs) ); }, { closed = 1; nodes = ( (160,64,o), (124,148,o), (138,252,cs), (153,356,o), (212,437,o), (310,437,cs), (409,437,o), (452,360,o), (437,250,cs), (423,148,o), (357,64,o), (261,64,cs) ); } ); width = 607; }, { associatedMasterId = master01; layerId = "79240F66-912C-4E1A-A3E4-4F79DFA0CFDD"; name = foreground; shapes = ( { closed = 1; nodes = ( (394,426,o), (437,339,o), (437,252,cs), (437,165,o), (392,75,o), (296,75,c), (202,75,o), (160,165,o), (160,252,cs), (160,339,o), (200,426,o), (296,426,c) ); }, { closed = 1; nodes = ( (534,499,l), (434,499,l), (434,422,l), (411,475,o), (340,512,o), (271,512,c), (138,512,o), (51,397,o), (51,250,cs), (51,123,o), (119,-13,o), (271,-12,c), (346,-12,o), (406,27,o), (434,98,c), (434,5,ls), (434,-112,o), (388,-165,o), (275,-166,cs), (201,-167,o), (153,-122,o), (128,-63,c), (50,-106,l), (95,-207,o), (187,-249,o), (274,-250,cs), (390,-252,o), (534,-200,o), (534,-12,cs) ); } ); width = 614; } ); unicode = 103; }, { glyphname = gbreve; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:20:44 +0000"; layers = ( { layerId = master01; shapes = ( { ref = g; }, { pos = (-27,0); ref = brevecomb; } ); width = 607; } ); unicode = 287; }, { glyphname = gcommaaccent; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:20:44 +0000"; layers = ( { layerId = master01; shapes = ( { ref = g; }, { pos = (-40,0); ref = commaturnedabovecomb; } ); width = 607; } ); unicode = 291; }, { glyphname = gdotaccent; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:20:44 +0000"; layers = ( { layerId = master01; shapes = ( { ref = g; }, { pos = (206,0); ref = dotaccentcomb; } ); width = 607; } ); unicode = 289; }, { glyphname = gmacron; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:20:44 +0000"; layers = ( { layerId = master01; shapes = ( { ref = g; }, { pos = (-21,0); ref = macroncomb; } ); width = 607; } ); unicode = 7713; }, { glyphname = h; kernLeft = l; kernRight = h; lastChange = "2023-08-03 12:08:52 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,13); target = (0,4); type = Stem; }, { place = (57,49); type = Stem; }, { place = (386,49); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (141,0,l), (179,270,ls), (192,366,o), (249,436,o), (341,436,cs), (408,436,o), (449,403,o), (436,316,cs), (392,0,l), (476,0,l), (522,328,ls), (539,448,o), (477,512,o), (380,512,cs), (268,512,o), (212,441,o), (198,406,c), (241,712,l), (157,712,l), (57,0,l) ); } ); width = 597; }, { associatedMasterId = master01; layerId = "CD505587-AC72-48CE-8408-6BA3826A3B3C"; name = foreground; shapes = ( { closed = 1; nodes = ( (185,0,l), (185,259,ls), (185,355,o), (232,425,o), (314,425,cs), (371,425,o), (423,392,o), (423,306,c), (423,0,l), (523,0,l), (523,328,ls), (523,448,o), (439,512,o), (352,512,cs), (249,512,o), (205,455,o), (185,402,c), (185,720,l), (85,720,l), (85,0,l) ); } ); width = 603; } ); unicode = 104; }, { glyphname = hbar; kernLeft = h; kernRight = h; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (404,582,l), (413,650,l), (120,650,l), (111,582,l) ); }, { pos = (37,0); ref = h; } ); width = 634; } ); unicode = 295; }, { glyphname = i; lastChange = "2023-08-03 13:00:57 +0000"; layers = ( { anchors = ( { name = bottom; pos = (96,0); }, { name = top; pos = (161,500); } ); hints = ( { horizontal = 1; origin = (0,11); target = (0,5); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; }, { origin = (0,8); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (210,595,o), (240,622,o), (245,653,cs), (249,685,o), (227,712,o), (196,712,cs), (164,712,o), (133,685,o), (129,653,cs), (124,622,o), (147,595,o), (179,595,cs) ); }, { ref = idotless; } ); width = 260; }, { associatedMasterId = master01; layerId = "6625A516-8D1C-4BE4-BEF2-383D9616A379"; name = foreground; shapes = ( { closed = 1; nodes = ( (193,0,l), (193,500,l), (93,500,l), (93,0,l) ); }, { closed = 1; nodes = ( (178,571,o), (206,600,o), (206,634,cs), (206,669,o), (178,698,o), (144,698,cs), (109,698,o), (80,669,o), (80,634,cs), (80,600,o), (109,571,o), (144,571,cs) ); } ); width = 286; } ); unicode = 105; }, { glyphname = idotless; kernLeft = i; kernRight = I; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (166,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (137,0,l), (207,500,l), (123,500,l), (53,0,l) ); } ); width = 260; } ); unicode = 305; }, { glyphname = iacute; lastChange = "2023-08-03 13:01:20 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (73,0); ref = acutecomb; } ); width = 260; } ); unicode = 237; }, { glyphname = icircumflex; lastChange = "2023-08-03 13:01:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (-82,0); ref = circumflexcomb; } ); width = 260; } ); unicode = 238; }, { glyphname = idieresis; kernLeft = id; kernRight = I; lastChange = "2023-08-03 13:01:51 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (-32,0); ref = dieresiscomb; } ); width = 260; } ); unicode = 239; }, { glyphname = idotaccent; kernLeft = i; kernRight = I; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (208,593,o), (240,622,o), (245,656,cs), (250,691,o), (226,720,o), (192,720,cs), (157,720,o), (124,691,o), (119,656,cs), (114,622,o), (139,593,o), (174,593,cs) ); }, { pos = (-5,0); ref = idotless; } ); width = 260; } ); }, { glyphname = idotbelow; kernLeft = i; kernRight = I; lastChange = "2023-07-09 23:21:00 +0000"; layers = ( { layerId = master01; shapes = ( { ref = i; }, { pos = (56,0); ref = dotbelowcomb; } ); width = 260; } ); unicode = 7883; }, { glyphname = igrave; lastChange = "2023-08-03 13:02:17 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (-49,0); ref = gravecomb; } ); width = 260; } ); unicode = 236; }, { glyphname = ihookabove; kernLeft = i; kernRight = I; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (-161,12); ref = hookabovecomb; } ); width = 260; } ); unicode = 7881; }, { glyphname = ij; kernLeft = i; kernRight = j; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (508,593,o), (540,622,o), (545,656,c), (551,691,o), (527,720,o), (492,720,cs), (457,720,o), (424,691,o), (419,656,cs), (414,622,o), (439,593,o), (474,593,cs) ); }, { ref = idotaccent; }, { pos = (260,0); ref = jdotless; } ); width = 561; } ); unicode = 307; }, { glyphname = imacron; kernLeft = id; kernRight = I; lastChange = "2023-08-01 09:03:20 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (-172,0); ref = macroncomb; } ); width = 260; } ); unicode = 299; }, { glyphname = iogonek; kernLeft = i; kernRight = I; lastChange = "2023-07-09 23:21:12 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (55,0); ref = dotaccentcomb; }, { pos = (-230,0); ref = ogonekcomb; } ); width = 260; } ); unicode = 303; }, { glyphname = itilde; kernLeft = id; kernRight = I; lastChange = "2023-08-01 09:02:45 +0000"; layers = ( { layerId = master01; shapes = ( { ref = idotless; }, { pos = (-170,0); ref = tildecomb; } ); width = 260; } ); unicode = 297; }, { glyphname = j; kernLeft = j; kernRight = j; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; place = (-284,59); type = Stem; }, { horizontal = 1; origin = (1,5); target = (1,11); type = Stem; }, { origin = (1,8); target = (1,2); type = Stem; }, { origin = (1,8); target = (1,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (102,-230,o), (150,-179,o), (163,-86,cs), (163,-86,o), (176,0,o), (246,500,c), (162,500,l), (80,-85,l), (72,-139,o), (43,-158,o), (-6,-158,cs), (-19,-158,o), (-37,-157,o), (-53,-154,c), (-62,-222,l), (-46,-227,o), (-23,-230,o), (-7,-230,cs) ); }, { closed = 1; nodes = ( (249,593,o), (281,622,o), (286,656,cs), (291,691,o), (267,720,o), (233,720,cs), (198,720,o), (165,691,o), (160,656,cs), (155,622,o), (180,593,o), (215,593,cs) ); } ); width = 301; }, { associatedMasterId = master01; layerId = "D21705D2-9FF0-49F0-B103-525AAF3570C8"; name = foreground; shapes = ( { closed = 1; nodes = ( (187,593,o), (215,622,o), (215,656,cs), (215,691,o), (187,720,o), (153,720,cs), (118,720,o), (89,691,o), (89,656,cs), (89,622,o), (118,593,o), (153,593,cs) ); }, { closed = 1; nodes = ( (106,499,l), (106,-6,ls), (106,-108,o), (94,-152,o), (41,-156,cs), (3,-159,o), (-25,-151,o), (-25,-151,c), (-25,-243,l), (-10,-248,o), (18,-251,o), (34,-251,cs), (175,-251,o), (205,-176,o), (205,-12,cs), (205,499,l) ); } ); width = 275; } ); unicode = 106; }, { glyphname = jdotless; kernLeft = j; kernRight = j; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (206,512); } ); hints = ( { horizontal = 1; place = (-284,59); type = Stem; }, { horizontal = 1; place = (685,-185); target = (0,6); type = Stem; }, { origin = (0,6); target = (0,5); type = Stem; }, { origin = (0,6); target = (0,5); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (102,-230,o), (150,-179,o), (163,-86,cs), (163,-86,o), (176,0,o), (246,500,c), (162,500,l), (80,-85,l), (72,-139,o), (43,-158,o), (-6,-158,cs), (-19,-158,o), (-37,-157,o), (-53,-154,c), (-62,-222,l), (-46,-227,o), (-23,-230,o), (-7,-230,cs) ); } ); width = 301; } ); unicode = 567; }, { glyphname = jacute; kernLeft = j; kernRight = j; lastChange = "2023-07-09 23:21:21 +0000"; layers = ( { layerId = master01; shapes = ( { ref = jdotless; }, { pos = (113,0); ref = acutecomb; } ); width = 301; } ); }, { glyphname = k; kernLeft = l; kernRight = k; lastChange = "2023-08-03 12:05:26 +0000"; layers = ( { anchors = ( { name = bottom; pos = (242,-12); } ); hints = ( { place = (58,49); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (242,256,l), (267,266,l), (529,500,l), (425,500,l), (111,225,l), (98,131,l) ); }, { closed = 1; nodes = ( (141,0,l), (241,712,l), (157,712,l), (57,0,l) ); }, { closed = 1; nodes = ( (475,0,l), (288,302,l), (215,249,l), (369,0,l) ); } ); width = 525; }, { associatedMasterId = master01; layerId = "45831B20-6849-4EF6-BE83-8DDAD9BE09E7"; name = foreground; shapes = ( { closed = 1; nodes = ( (804,256,l), (828,266,l), (1049,500,l), (941,500,l), (681,225,l), (686,131,l) ); }, { closed = 1; nodes = ( (747,0,l), (747,712,l), (663,712,l), (663,0,l) ); }, { closed = 1; nodes = ( (1069,0,l), (840,302,l), (778,249,l), (967,0,l) ); } ); width = 537; }, { associatedMasterId = master01; hints = ( { horizontal = 1; origin = (0,8); target = (0,1); type = Stem; }, { origin = (0,9); target = (0,10); type = Stem; } ); layerId = "F5153F53-BD19-4DEE-BBF1-244D87F5AFFD"; name = "22 Jul 21, 10:33"; shapes = ( { closed = 1; nodes = ( (210,252,l), (395,-1,l), (498,-1,l), (267,308,l), (479,500,l), (371,500,l), (177,325,l), (176,712,l), (92,712,l), (93,0,l), (177,0,l), (177,223,l) ); }, { closed = 1; nodes = ( (219,252,l), (409,-1,l), (528,-1,l), (291,315,l), (503,500,l), (365,500,l), (186,344,l), (186,720,l), (86,720,l), (86,0,l), (186,0,l), (186,223,l) ); } ); width = 513; } ); unicode = 107; }, { glyphname = kcommaaccent; kernLeft = l; kernRight = k; lastChange = "2023-08-03 12:05:26 +0000"; layers = ( { layerId = master01; shapes = ( { ref = k; }, { pos = (-27,0); ref = commaaccentcomb; } ); width = 525; } ); unicode = 311; }, { glyphname = l; kernLeft = l; kernRight = l; lastChange = "2023-08-03 12:51:49 +0000"; layers = ( { anchors = ( { name = bottom; pos = (94,0); }, { name = center; pos = (177,360); }, { name = top; pos = (183,720); }, { name = topright; pos = (281,720); } ); hints = ( { horizontal = 1; origin = (0,3); target = (0,2); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (127,0,l), (227,712,l), (143,712,l), (43,0,l) ); } ); width = 258; }, { associatedMasterId = master01; layerId = "9184F1DE-F07E-494E-9C47-EEC1A903CA2E"; name = foreground; shapes = ( { closed = 1; nodes = ( (180,0,l), (180,720,l), (80,720,l), (80,0,l) ); } ); width = 260; } ); unicode = 108; }, { glyphname = lacute; kernLeft = l; kernRight = l; lastChange = "2023-08-03 12:51:49 +0000"; layers = ( { layerId = master01; shapes = ( { ref = l; }, { pos = (90,208); ref = acutecomb; } ); width = 258; } ); unicode = 314; }, { glyphname = lcaron; kernLeft = l; kernRight = lcaron; lastChange = "2023-08-03 12:51:51 +0000"; layers = ( { layerId = master01; shapes = ( { ref = l; }, { pos = (93,0); ref = caroncomb.alt; } ); width = 258; } ); unicode = 318; }, { glyphname = lcommaaccent; kernLeft = l; kernRight = l; lastChange = "2023-08-03 12:51:51 +0000"; layers = ( { layerId = master01; shapes = ( { ref = l; }, { pos = (-175,12); ref = commaaccentcomb; } ); width = 258; } ); unicode = 316; }, { glyphname = ldotbelow; kernLeft = l; kernRight = l; lastChange = "2023-08-03 12:51:51 +0000"; layers = ( { layerId = master01; shapes = ( { ref = l; }, { pos = (54,0); ref = dotbelowcomb; } ); width = 258; } ); unicode = 7735; }, { glyphname = lmacronbelow; kernLeft = l; kernRight = l; lastChange = "2023-08-03 12:51:51 +0000"; layers = ( { layerId = master01; shapes = ( { ref = l; }, { pos = (-184,12); ref = macronbelowcomb; } ); width = 258; } ); unicode = 7739; }, { glyphname = lslash; kernLeft = l; kernRight = l; lastChange = "2023-08-03 12:52:18 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (357,373,l), (331,437,l), (40,294,l), (65,229,l) ); }, { pos = (66,0); ref = l; } ); width = 383; } ); unicode = 322; }, { glyphname = m; kernLeft = m; kernRight = m; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (434,1); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (141,0,l), (179,270,ls), (192,366,o), (249,436,o), (341,436,cs), (408,436,o), (449,403,o), (436,316,cs), (392,0,l), (476,0,l), (522,328,ls), (539,448,o), (477,512,o), (380,512,cs), (268,512,o), (212,441,o), (198,406,c), (211,500,l), (127,500,l), (57,0,l) ); }, { closed = 1; nodes = ( (476,0,l), (514,270,ls), (527,366,o), (584,436,o), (676,436,cs), (743,436,o), (784,403,o), (771,316,cs), (727,0,l), (811,0,l), (857,328,ls), (874,448,o), (812,512,o), (715,512,cs), (603,512,o), (537,433,o), (523,398,c), (459,0,l) ); } ); width = 934; }, { associatedMasterId = master01; layerId = "2AB4FA2C-6E87-475E-BC95-C87BA88E814C"; name = foreground; shapes = ( { closed = 1; nodes = ( (524,355,o), (571,425,o), (653,425,cs), (710,425,o), (762,392,o), (762,306,c), (762,0,l), (862,0,l), (862,328,ls), (862,448,o), (778,512,o), (691,512,cs), (589,512,o), (535,445,o), (514,392,c), (490,471,o), (422,512,o), (352,512,cs), (249,512,o), (205,455,o), (185,402,c), (185,501,l), (85,501,l), (85,0,l), (185,0,l), (185,259,ls), (185,355,o), (232,425,o), (314,425,cs), (371,425,o), (423,392,o), (423,306,c), (423,0,l), (524,0,l), (524,259,ls) ); } ); width = 942; } ); unicode = 109; }, { glyphname = n; kernLeft = n; kernRight = n; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (274,0); }, { name = top; pos = (354,525); } ); hints = ( { origin = (0,19); target = (0,0); type = Stem; }, { origin = (0,8); target = (0,9); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (141,0,l), (179,270,ls), (192,366,o), (249,436,o), (341,436,cs), (408,436,o), (449,403,o), (436,316,cs), (392,0,l), (476,0,l), (522,328,ls), (539,448,o), (477,512,o), (380,512,cs), (268,512,o), (212,441,o), (198,406,c), (211,500,l), (127,500,l), (57,0,l) ); } ); width = 597; }, { associatedMasterId = master01; layerId = "9DAFEF19-BC7E-4592-BC8A-958FBEEA9065"; name = foreground; shapes = ( { closed = 1; nodes = ( (176,500,l), (92,500,l), (92,0,l), (176,0,l), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (421,403,o), (421,316,cs), (421,0,l), (505,0,l), (505,328,ls), (505,448,o), (440,512,o), (343,512,cs), (231,512,o), (163,445,o), (163,320,c), (176,320,l) ); } ); width = 603; }, { associatedMasterId = master01; layerId = "4E993862-6A8B-4F58-BA63-F4C2183B2AD6"; name = "22 Jul 21, 09:48"; shapes = ( { closed = 1; nodes = ( (176,500,l), (92,500,l), (92,0,l), (176,0,l), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (421,403,o), (421,316,cs), (421,0,l), (505,0,l), (505,328,ls), (505,448,o), (440,512,o), (343,512,cs), (231,512,o), (163,445,o), (163,320,c), (176,320,l) ); }, { closed = 1; nodes = ( (176,0,l), (176,259,ls), (176,355,o), (228,425,o), (310,425,cs), (379,425,o), (426,392,o), (426,306,c), (426,0,l), (510,0,l), (510,324,ls), (510,432,o), (443,512,o), (348,512,cs), (245,512,o), (196,455,o), (176,402,c), (176,500,l), (92,500,l), (92,0,l) ); } ); width = 603; }, { associatedMasterId = master01; layerId = "093DBDD9-08D0-4671-954B-3775BA1B0BE1"; name = "22 Jul 21, 09:45"; shapes = ( { closed = 1; nodes = ( (170,500,l), (86,500,l), (86,0,l), (170,0,l), (170,270,ls), (170,366,o), (217,436,o), (309,436,cs), (376,436,o), (415,403,o), (415,316,cs), (415,0,l), (499,0,l), (499,328,ls), (499,448,o), (434,512,o), (337,512,cs), (225,512,o), (179,441,o), (170,406,c) ); } ); width = 591; }, { associatedMasterId = master01; layerId = "47444D12-A43B-4A04-A14E-0473975F487A"; name = "22 Jul 21, 09:45"; shapes = ( { closed = 1; nodes = ( (176,500,l), (92,500,l), (92,0,l), (176,0,l), (176,270,ls), (176,366,o), (223,436,o), (315,436,cs), (382,436,o), (421,403,o), (421,316,cs), (421,0,l), (505,0,l), (505,328,ls), (505,448,o), (440,512,o), (343,512,cs), (231,512,o), (163,445,o), (163,320,c), (176,320,l) ); } ); width = 603; } ); unicode = 110; }, { glyphname = nacute; kernLeft = n; kernRight = n; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = n; }, { pos = (261,13); ref = acutecomb; } ); width = 597; } ); unicode = 324; }, { glyphname = ncaron; kernLeft = n; kernRight = n; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = n; }, { pos = (104,13); ref = caroncomb; } ); width = 597; } ); unicode = 328; }, { glyphname = ncommaaccent; kernLeft = n; kernRight = n; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = n; }, { pos = (5,12); ref = commaaccentcomb; } ); width = 597; } ); unicode = 326; }, { glyphname = ndotbelow; kernLeft = n; kernRight = n; lastChange = "2023-07-09 23:21:50 +0000"; layers = ( { layerId = master01; shapes = ( { ref = n; }, { pos = (234,0); ref = dotbelowcomb; } ); width = 597; } ); unicode = 7751; }, { glyphname = nhookleft; kernLeft = n; kernRight = n; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (71,-188,o), (122,-137,o), (135,-44,cs), (179,270,ls), (192,366,o), (249,436,o), (341,436,cs), (408,436,o), (449,403,o), (436,316,cs), (392,1,l), (476,1,l), (522,328,ls), (539,448,o), (477,512,o), (380,512,cs), (268,512,o), (212,441,o), (198,406,c), (211,500,l), (127,500,l), (51,-43,ls), (43,-97,o), (13,-116,o), (-36,-116,cs), (-49,-116,o), (-66,-115,o), (-82,-112,c), (-91,-180,l), (-75,-185,o), (-54,-188,o), (-38,-188,cs) ); } ); width = 600; } ); unicode = 626; }, { glyphname = nhookretroflex; kernLeft = n; kernRight = n; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (531,-188,o), (554,-185,o), (572,-180,c), (581,-112,l), (565,-115,o), (548,-116,o), (535,-116,cs), (486,-116,o), (462,-97,o), (470,-43,cs), (522,328,ls), (539,448,o), (477,512,o), (380,512,cs), (268,512,o), (212,441,o), (198,406,c), (211,500,l), (127,500,l), (57,0,l), (141,0,l), (179,270,ls), (192,366,o), (249,436,o), (341,436,cs), (408,436,o), (449,403,o), (436,316,cs), (386,-44,ls), (373,-137,o), (406,-188,o), (515,-188,cs) ); } ); width = 600; } ); unicode = 627; }, { glyphname = nmacronbelow; kernLeft = n; kernRight = n; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (280,0); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (141,0,l), (179,270,ls), (192,366,o), (249,436,o), (341,436,cs), (408,436,o), (449,403,o), (436,316,cs), (392,0,l), (476,0,l), (522,328,ls), (539,448,o), (477,512,o), (380,512,cs), (268,512,o), (212,441,o), (198,406,c), (211,500,l), (127,500,l), (57,0,l) ); }, { ref = macronbelowcomb; } ); width = 600; } ); unicode = 7753; }, { glyphname = ntilde; kernLeft = n; kernRight = n; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = n; }, { pos = (18,13); ref = tildecomb; } ); width = 597; } ); unicode = 241; }, { glyphname = eng; kernLeft = n; kernRight = n; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (406,-188,o), (457,-137,o), (470,-44,cs), (522,328,ls), (539,448,o), (477,512,o), (380,512,cs), (268,512,o), (212,441,o), (198,406,c), (211,500,l), (127,500,l), (57,0,l), (141,0,l), (179,270,ls), (192,366,o), (249,436,o), (341,436,cs), (408,436,o), (449,403,o), (436,316,cs), (386,-43,ls), (378,-97,o), (348,-116,o), (299,-116,cs), (286,-116,o), (268,-115,o), (252,-112,c), (243,-180,l), (259,-185,o), (281,-188,o), (297,-188,cs) ); } ); width = 600; } ); unicode = 331; }, { glyphname = o; kernLeft = o; kernRight = o; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (253,-12); }, { name = top; pos = (327,516); } ); hints = ( { horizontal = 1; origin = (0,11); target = (1,11); type = Stem; }, { horizontal = 1; origin = (0,5); target = (1,5); type = Stem; }, { origin = (0,8); target = (1,2); type = Stem; }, { origin = (1,8); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (377,-12,o), (502,78,o), (526,250,cs), (550,422,o), (451,512,o), (327,512,cs), (203,512,o), (78,422,o), (54,250,cs), (30,78,o), (129,-12,o), (253,-12,cs) ); }, { closed = 1; nodes = ( (164,64,o), (122,133,o), (138,250,cs), (154,367,o), (216,436,o), (316,436,cs), (416,436,o), (458,367,o), (442,250,cs), (426,133,o), (364,64,o), (264,64,cs) ); } ); width = 580; }, { associatedMasterId = master01; layerId = "75CEC0A4-E86C-4BAB-AB20-41EC8FFB0C18"; name = foreground; shapes = ( { closed = 1; nodes = ( (422,-13,o), (540,81,o), (540,250,cs), (540,414,o), (427,512,o), (296,512,c), (165,512,o), (48,412,o), (48,248,cs), (48,79,o), (160,-13,o), (291,-13,c) ); }, { closed = 1; nodes = ( (389,426,o), (436,338,o), (436,250,cs), (436,164,o), (384,72,o), (291,72,c), (197,72,o), (149,162,o), (149,248,cs), (149,336,o), (198,426,o), (294,426,c) ); } ); width = 587; } ); unicode = 111; }, { glyphname = oacute; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (234,4); ref = acutecomb; } ); width = 580; } ); unicode = 243; }, { glyphname = ocircumflex; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (79,4); ref = circumflexcomb; } ); width = 580; } ); unicode = 244; }, { glyphname = ocircumflexacute; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (78,4); ref = circumflexcomb_acutecomb; } ); width = 580; } ); unicode = 7889; }, { glyphname = ocircumflexdotbelow; kernLeft = o; kernRight = o; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (213,-12); ref = dotbelowcomb; }, { pos = (79,4); ref = circumflexcomb; } ); width = 580; } ); unicode = 7897; }, { glyphname = ocircumflexgrave; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (79,4); ref = circumflexcomb_gravecomb; } ); width = 580; } ); unicode = 7891; }, { glyphname = ocircumflexhookabove; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (79,4); ref = circumflexcomb_hookabovecomb; } ); width = 580; } ); unicode = 7893; }, { glyphname = ocircumflextilde; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (79,4); ref = circumflexcomb_tildecomb; } ); width = 580; } ); unicode = 7895; }, { glyphname = odieresis; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (129,4); ref = dieresiscomb; } ); width = 580; } ); unicode = 246; }, { glyphname = odotbelow; kernLeft = o; kernRight = o; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (213,-12); ref = dotbelowcomb; } ); width = 580; } ); unicode = 7885; }, { glyphname = ograve; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (112,4); ref = gravecomb; } ); width = 580; } ); unicode = 242; }, { glyphname = ohookabove; kernLeft = o; kernRight = o; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (0,16); ref = hookabovecomb; } ); width = 580; } ); unicode = 7887; }, { glyphname = ohorn; kernLeft = o; kernRight = o; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (327,516); } ); hints = ( { horizontal = 1; origin = (0,11); target = (1,11); type = Stem; }, { horizontal = 1; origin = (2,9); target = (1,5); type = Stem; }, { origin = (0,8); target = (1,2); type = Stem; }, { origin = (1,8); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (377,-12,o), (502,78,o), (526,250,cs), (550,422,o), (451,512,o), (327,512,cs), (203,512,o), (78,422,o), (54,250,cs), (30,78,o), (129,-12,o), (253,-12,cs) ); }, { closed = 1; nodes = ( (164,64,o), (122,133,o), (138,250,cs), (154,367,o), (216,436,o), (316,436,cs), (416,436,o), (458,367,o), (442,250,cs), (426,133,o), (364,64,o), (264,64,cs) ); }, { closed = 1; nodes = ( (583,453,o), (602,553,o), (593,604,c), (520,599,l), (525,563,o), (519,509,o), (456,507,cs), (396,505,o), (383,515,o), (321,512,c), (340,480,l), (366,480,o), (367,453,o), (471,453,cs) ); } ); width = 580; } ); unicode = 417; }, { glyphname = ohornacute; kernLeft = o; kernRight = o; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (377,-12,o), (502,78,o), (526,250,cs), (550,422,o), (451,512,o), (327,512,cs), (203,512,o), (78,422,o), (54,250,cs), (30,78,o), (129,-12,o), (253,-12,cs) ); }, { closed = 1; nodes = ( (164,64,o), (122,133,o), (138,250,cs), (154,367,o), (216,436,o), (316,436,cs), (416,436,o), (458,367,o), (442,250,cs), (426,133,o), (364,64,o), (264,64,cs) ); }, { closed = 1; nodes = ( (583,453,o), (602,553,o), (593,604,c), (520,599,l), (525,563,o), (519,509,o), (456,507,cs), (396,505,o), (383,515,o), (321,512,c), (340,480,l), (366,480,o), (367,453,o), (471,453,cs) ); }, { pos = (223,0); ref = acutecomb; } ); width = 600; } ); unicode = 7899; }, { glyphname = ohorndotbelow; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = ohorn; }, { pos = (222,0); ref = dotbelowcomb; } ); width = 580; } ); unicode = 7907; }, { glyphname = ohorngrave; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = ohorn; }, { pos = (112,4); ref = gravecomb; } ); width = 580; } ); unicode = 7901; }, { glyphname = ohornhookabove; kernLeft = o; kernRight = o; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = ohorn; }, { pos = (0,16); ref = hookabovecomb; } ); width = 580; } ); unicode = 7903; }, { glyphname = ohorntilde; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = ohorn; }, { pos = (-9,4); ref = tildecomb; } ); width = 580; } ); unicode = 7905; }, { glyphname = ohungarumlaut; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (37,4); ref = hungarumlautcomb; } ); width = 580; } ); unicode = 337; }, { glyphname = omacron; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (-11,4); ref = macroncomb; } ); width = 580; } ); unicode = 333; }, { glyphname = oslash; kernLeft = o; kernRight = o; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (568,500,l), (518,546,l), (11,0,l), (58,-48,l) ); }, { ref = o; } ); width = 580; } ); unicode = 248; }, { glyphname = otilde; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:21:58 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; }, { pos = (-9,4); ref = tildecomb; } ); width = 580; } ); unicode = 245; }, { glyphname = oe; kernLeft = o; kernRight = e; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (752,-13,o), (828,30,o), (881,113,c), (811,143,l), (776,92,o), (720,63,o), (660,63,c), (559,63,o), (511,141,o), (525,245,cs), (540,349,o), (611,436,o), (712,436,c), (809,436,o), (847,360,o), (840,304,c), (531,304,l), (520,230,l), (913,230,l), (918,261,l), (942,434,o), (852,512,o), (725,512,c), (599,512,o), (466,412,o), (443,248,cs), (420,87,o), (525,-13,o), (651,-13,c) ); }, { closed = 1; nodes = ( (377,-12,o), (502,78,o), (526,250,cs), (550,422,o), (451,512,o), (327,512,cs), (203,512,o), (78,422,o), (54,250,cs), (30,78,o), (129,-12,o), (253,-12,cs) ); }, { closed = 1; nodes = ( (164,64,o), (122,133,o), (138,250,cs), (154,367,o), (216,436,o), (316,436,cs), (416,436,o), (458,367,o), (442,250,cs), (426,133,o), (364,64,o), (264,64,cs) ); } ); width = 958; } ); unicode = 339; }, { glyphname = p; kernLeft = p; kernRight = p; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (109,-230,l), (154,96,l), (166,27,o), (233,-12,o), (302,-12,cs), (433,-12,o), (537,86,o), (560,250,cs), (584,419,o), (502,512,o), (371,512,cs), (283,512,o), (223,457,o), (194,402,c), (208,500,l), (127,500,l), (25,-230,l) ); }, { closed = 1; nodes = ( (205,65,o), (163,148,o), (177,250,cs), (192,360,o), (257,437,o), (356,437,cs), (454,437,o), (491,356,o), (476,252,cs), (462,148,o), (402,63,o), (301,64,cs) ); } ); width = 614; }, { associatedMasterId = master01; layerId = "111F6626-3440-438D-AC91-776452057215"; name = foreground; shapes = ( { closed = 1; nodes = ( (226,74,o), (183,161,o), (183,248,cs), (183,335,o), (228,425,o), (324,425,c), (418,425,o), (467,335,o), (467,248,cs), (467,161,o), (420,74,o), (324,74,c) ); }, { closed = 1; nodes = ( (482,-11,o), (569,103,o), (569,250,cs), (569,377,o), (501,513,o), (349,512,c), (274,512,o), (214,473,o), (186,402,c), (186,500,l), (86,500,l), (86,-249,l), (186,-249,l), (186,78,l), (209,25,o), (280,-11,o), (349,-11,c) ); } ); width = 624; } ); unicode = 112; }, { glyphname = thorn; kernLeft = p; kernRight = p; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (109,-230,l), (154,96,l), (166,27,o), (233,-12,o), (302,-12,cs), (433,-12,o), (537,86,o), (560,250,cs), (584,419,o), (502,512,o), (371,512,cs), (283,512,o), (223,457,o), (194,402,c), (238,712,l), (157,712,l), (25,-230,l) ); }, { closed = 1; nodes = ( (205,65,o), (163,148,o), (177,250,cs), (192,360,o), (257,437,o), (356,437,cs), (454,437,o), (491,356,o), (476,252,cs), (462,148,o), (402,63,o), (301,64,cs) ); } ); width = 614; } ); unicode = 254; }, { glyphname = q; kernLeft = q; kernRight = q; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (490,-230,o), (503,-226,o), (518,-218,c), (528,-150,l), (477,-161,o), (466,-143,o), (471,-103,cs), (556,500,l), (476,500,l), (462,402,l), (449,457,o), (405,512,o), (317,512,cs), (186,512,o), (78,419,o), (54,250,cs), (31,86,o), (107,-12,o), (238,-12,cs), (307,-12,o), (386,27,o), (416,96,c), (385,-124,ls), (374,-204,o), (413,-230,o), (465,-230,cs) ); }, { closed = 1; nodes = ( (160,64,o), (124,148,o), (138,252,cs), (153,356,o), (212,437,o), (310,437,cs), (409,437,o), (452,360,o), (437,250,cs), (423,148,o), (357,64,o), (261,64,cs) ); } ); width = 624; }, { associatedMasterId = master01; layerId = "5B836CBD-5A05-4F3B-A39F-8D74CF5805A4"; name = foreground; shapes = ( { closed = 1; nodes = ( (443,-207,o), (486,-247,o), (536,-248,cs), (578,-249,o), (620,-231,o), (620,-231,c), (620,-231,o), (620,-148,o), (620,-148,cs), (570,-159,o), (543,-144,o), (543,-99,c), (543,500,l), (443,500,l), (443,402,l), (415,473,o), (353,512,o), (278,512,c), (126,513,o), (60,377,o), (60,250,cs), (60,103,o), (147,-11,o), (280,-11,c), (349,-11,o), (420,25,o), (443,78,c), (443,-140,l) ); }, { closed = 1; nodes = ( (209,74,o), (162,161,o), (162,248,cs), (162,335,o), (211,425,o), (305,425,c), (401,425,o), (446,335,o), (446,248,cs), (446,161,o), (403,74,o), (305,74,c) ); } ); width = 630; } ); unicode = 113; }, { glyphname = r; kernLeft = r; kernRight = r; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (99,0); }, { name = top; pos = (246,527); } ); hints = ( { horizontal = 1; origin = (0,11); target = (0,4); type = Stem; }, { horizontal = 1; origin = (0,16); target = (0,4); type = Stem; }, { origin = (0,17); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (141,0,l), (179,270,ls), (192,366,o), (245,420,o), (328,436,cs), (354,441,o), (388,436,o), (407,430,c), (418,508,l), (409,509,o), (386,512,o), (376,512,cs), (273,512,o), (225,454,o), (197,401,c), (211,500,l), (127,500,l), (57,0,l) ); } ); width = 402; }, { associatedMasterId = master01; layerId = "4E6D224B-E0A5-4955-882F-1582C38B5E9B"; name = foreground; shapes = ( { closed = 1; nodes = ( (185,0,l), (185,258,ls), (185,354,o), (230,408,o), (311,424,cs), (336,429,o), (371,424,o), (391,414,c), (391,508,l), (382,509,o), (358,512,o), (348,512,cs), (245,512,o), (205,454,o), (185,401,c), (185,500,l), (85,500,l), (85,0,l) ); }, { closed = 0; nodes = ( (378,509,l) ); } ); width = 406; } ); unicode = 114; }, { glyphname = racute; kernLeft = r; kernRight = r; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = r; }, { pos = (153,15); ref = acutecomb; } ); width = 402; } ); unicode = 341; }, { glyphname = rcaron; kernLeft = r; kernRight = r; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = r; }, { pos = (-4,15); ref = caroncomb; } ); width = 402; } ); unicode = 345; }, { glyphname = rcommaaccent; kernLeft = r; kernRight = r; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = r; }, { pos = (-170,12); ref = commaaccentcomb; } ); width = 402; } ); unicode = 343; }, { glyphname = rdotbelow; kernLeft = r; kernRight = r; lastChange = "2023-07-09 23:22:17 +0000"; layers = ( { layerId = master01; shapes = ( { ref = r; }, { pos = (59,0); ref = dotbelowcomb; } ); width = 402; } ); unicode = 7771; }, { glyphname = rmacronbelow; kernLeft = r; kernRight = r; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (164,0); } ); layerId = master01; shapes = ( { ref = r; }, { pos = (-179,12); ref = macronbelowcomb; } ); width = 402; } ); unicode = 7775; }, { glyphname = s; kernLeft = s; kernRight = s; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (209,-12); }, { name = top; pos = (281,520); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (348,-12,o), (421,56,o), (432,137,cs), (459,330,o), (145,253,o), (161,365,cs), (167,407,o), (203,436,o), (268,436,cs), (340,436,o), (373,400,o), (368,367,c), (454,367,l), (463,429,o), (425,512,o), (280,512,cs), (158,512,o), (87,435,o), (77,362,cs), (49,168,o), (366,270,o), (347,137,cs), (340,87,o), (293,64,o), (227,64,cs), (177,64,o), (118,93,o), (127,156,c), (37,156,l), (23,57,o), (108,-12,o), (209,-12,c) ); } ); width = 503; }, { associatedMasterId = master01; layerId = "387FA4A7-73FF-4D97-8FCB-952702749138"; name = foreground; shapes = ( { closed = 1; nodes = ( (88,39,o), (165,-12,o), (259,-12,cs), (387,-12,o), (459,56,o), (457,137,cs), (458,190,o), (442,253,o), (303,292,cs), (203,320,o), (164,339,o), (163,380,cs), (163,416,o), (202,436,o), (263,436,cs), (314,436,o), (352,413,o), (365,373,c), (440,408,l), (416,470,o), (360,512,o), (266,512,cs), (140,512,o), (78,445,o), (78,372,cs), (78,310,o), (99,266,o), (205,233,cs), (288,207,o), (371,191,o), (371,132,cs), (371,82,o), (317,65,o), (266,65,cs), (207,65,o), (155,92,o), (139,155,c), (134,155,l), (59,118,l) ); } ); width = 494; }, { associatedMasterId = master01; layerId = "7E27A0BC-C66B-4AEC-96DE-E66ACE9A3214"; name = "21 Jul 21, 11:57"; shapes = ( { closed = 1; nodes = ( (65,56,o), (151,-12,o), (249,-12,c), (387,-12,o), (459,56,o), (457,137,c), (458,190,o), (442,253,o), (303,292,cs), (203,320,o), (154,339,o), (153,372,c), (153,416,o), (192,436,o), (251,436,cs), (311,436,o), (343,403,o), (352,370,c), (437,370,l), (426,423,o), (393,512,o), (252,512,cs), (130,512,o), (68,445,o), (68,372,cs), (68,310,o), (99,266,o), (205,233,cs), (288,207,o), (371,191,o), (371,140,c), (371,82,o), (317,65,o), (256,65,c), (207,65,o), (155,92,o), (139,155,c), (50,155,l) ); }, { closed = 1; nodes = ( (65,56,o), (151,-12,o), (249,-12,c), (387,-12,o), (459,56,o), (457,137,c), (458,190,o), (442,253,o), (303,292,cs), (203,320,o), (154,339,o), (153,372,c), (153,416,o), (192,436,o), (251,436,cs), (311,436,o), (343,403,o), (352,370,c), (437,370,l), (426,423,o), (393,512,o), (252,512,cs), (130,512,o), (68,445,o), (68,372,cs), (68,310,o), (99,266,o), (205,233,cs), (288,207,o), (371,191,o), (371,140,c), (371,82,o), (317,65,o), (256,65,c), (207,65,o), (155,92,o), (139,155,c), (50,155,l) ); } ); width = 512; }, { associatedMasterId = master01; layerId = "16A2ED11-E800-4B00-98DC-B709ECAC59BA"; name = "1 Oct 21, 07:26"; shapes = ( { closed = 1; nodes = ( (50,57,o), (145,-12,o), (246,-12,c), (385,-12,o), (448,56,o), (448,137,cs), (448,218,o), (417,254,o), (291,292,cs), (174,327,o), (146,342,o), (145,375,cs), (144,408,o), (177,436,o), (242,436,cs), (314,436,o), (352,400,o), (352,367,c), (438,367,l), (438,429,o), (388,512,o), (243,512,cs), (121,512,o), (61,445,o), (61,372,cs), (61,303,o), (102,255,o), (199,229,cs), (284,206,o), (363,195,o), (363,137,cs), (363,87,o), (319,64,o), (253,64,cs), (203,64,o), (140,94,o), (140,157,c), (50,156,l) ); }, { closed = 1; nodes = ( (50,57,o), (145,-12,o), (246,-12,c), (385,-12,o), (448,56,o), (448,137,cs), (448,218,o), (417,254,o), (291,292,cs), (174,327,o), (146,342,o), (145,375,cs), (144,408,o), (177,436,o), (242,436,cs), (314,436,o), (352,400,o), (352,367,c), (438,367,l), (438,429,o), (388,512,o), (243,512,cs), (121,512,o), (61,445,o), (61,372,cs), (61,303,o), (102,255,o), (199,229,cs), (284,206,o), (363,195,o), (363,137,cs), (363,87,o), (319,64,o), (253,64,cs), (203,64,o), (140,94,o), (140,157,c), (50,156,l) ); } ); width = 503; } ); unicode = 115; }, { glyphname = sacute; kernLeft = s; kernRight = s; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = s; }, { pos = (188,8); ref = acutecomb; } ); width = 503; } ); unicode = 347; }, { glyphname = scaron; kernLeft = s; kernRight = s; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = s; }, { pos = (31,8); ref = caroncomb; } ); width = 503; } ); unicode = 353; }, { glyphname = scedilla; kernLeft = s; kernRight = s; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = s; }, { pos = (-46,-14); ref = cedillacomb; } ); width = 503; } ); unicode = 351; }, { glyphname = scommaaccent; kernLeft = s; kernRight = s; lastChange = "2023-07-09 23:22:21 +0000"; layers = ( { layerId = master01; shapes = ( { ref = s; }, { pos = (-60,0); ref = commaaccentcomb; } ); width = 503; } ); unicode = 537; }, { glyphname = germandbls; kernLeft = s; kernRight = s; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (378,-12,o), (487,64,o), (506,203,cs), (518,286,o), (484,348,o), (426,384,c), (472,416,o), (507,465,o), (516,530,cs), (533,649,o), (453,712,o), (351,712,cs), (240,712,o), (148,649,o), (131,530,cs), (57,0,l), (141,0,l), (215,530,ls), (223,586,o), (263,636,o), (339,636,cs), (415,636,o), (440,586,o), (432,530,cs), (423,465,o), (385,418,o), (311,418,cs), (307,418,l), (296,340,l), (299,340,ls), (379,340,o), (429,278,o), (418,203,cs), (407,123,o), (351,68,o), (262,68,cs), (247,68,o), (234,68,o), (224,70,c), (213,-9,l), (224,-11,o), (236,-12,o), (250,-12,cs) ); } ); width = 567; } ); unicode = 223; }, { glyphname = t; kernLeft = t; kernRight = t; lastChange = "2023-08-03 12:10:40 +0000"; layers = ( { anchors = ( { name = bottom; pos = (139,0); }, { name = center; pos = (183,250); }, { name = top; pos = (227,500); }, { name = topright; pos = (315,748); } ); hints = ( { horizontal = 1; place = (-35,458); target = (0,10); type = Stem; }, { horizontal = 1; origin = (0,20); target = (0,21); type = Stem; }, { horizontal = 1; origin = (0,21); target = (0,13); type = Stem; }, { origin = (0,10); target = (0,10); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (245,-12,o), (268,-9,o), (285,-4,c), (295,64,l), (278,61,o), (261,60,o), (248,60,cs), (199,60,o), (176,78,o), (183,132,cs), (224,423,l), (353,423,l), (364,499,l), (235,499,l), (253,627,l), (169,627,l), (161,570,ls), (153,512,o), (138,500,o), (84,500,cs), (61,500,l), (50,423,l), (140,423,l), (99,132,ls), (86,39,o), (120,-12,o), (229,-12,cs) ); } ); width = 366; }, { associatedMasterId = master01; layerId = "4BC6D785-7F25-40CD-8B35-2CDB36DE77EE"; name = foreground; shapes = ( { closed = 1; nodes = ( (97,500,o), (43,500,cs), (20,500,l), (20,408,l), (110,408,l), (110,137,ls), (110,56,o), (145,0,o), (260,0,c), (282,0,o), (321,2,o), (336,4,c), (336,98,l), (322,97,o), (287,96,o), (271,96,cs), (225,97,o), (210,127,o), (210,166,cs), (210,408,l), (339,408,l), (339,499,l), (210,499,l), (210,629,l), (110,629,l), (110,572,ls), (110,512,o) ); } ); width = 379; } ); unicode = 116; }, { glyphname = tcaron; kernLeft = t; kernRight = t; lastChange = "2023-08-03 12:10:40 +0000"; layers = ( { layerId = master01; shapes = ( { ref = t; }, { pos = (127,28); ref = caroncomb.alt; } ); width = 366; } ); unicode = 357; }, { glyphname = tcedilla; kernLeft = t; kernRight = t; lastChange = "2023-08-03 12:12:35 +0000"; layers = ( { layerId = master01; shapes = ( { ref = t; }, { pos = (-116,-2); ref = cedillacomb; } ); width = 366; } ); unicode = 355; }, { glyphname = tcommaaccent; kernLeft = t; kernRight = t; lastChange = "2023-08-03 12:12:35 +0000"; layers = ( { layerId = master01; shapes = ( { ref = t; }, { pos = (-130,12); ref = commaaccentcomb; } ); width = 366; } ); unicode = 539; }, { glyphname = tdotbelow; kernLeft = t; kernRight = t; lastChange = "2023-08-03 12:12:35 +0000"; layers = ( { layerId = master01; shapes = ( { ref = t; }, { pos = (99,0); ref = dotbelowcomb; } ); width = 366; } ); unicode = 7789; }, { glyphname = tmacronbelow; kernLeft = t; kernRight = t; lastChange = "2023-08-03 12:12:35 +0000"; layers = ( { layerId = master01; shapes = ( { ref = t; }, { pos = (-139,12); ref = macronbelowcomb; } ); width = 366; } ); unicode = 7791; }, { glyphname = u; kernLeft = u; kernRight = u; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (245,-12); }, { name = ogonek; pos = (425,0); }, { name = top; pos = (325,515); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (329,-12,o), (385,59,o), (399,94,c), (386,0,l), (470,0,l), (540,500,l), (456,500,l), (418,230,ls), (405,134,o), (348,64,o), (256,64,cs), (189,64,o), (148,97,o), (161,184,cs), (205,500,l), (121,500,l), (75,172,ls), (58,52,o), (120,-12,o), (217,-12,cs) ); } ); width = 597; }, { associatedMasterId = master01; layerId = "58AB66D5-CBBE-4AAE-8E7A-6B076E516B66"; name = foreground; shapes = ( { closed = 1; nodes = ( (418,500,l), (418,241,ls), (418,145,o), (371,75,o), (289,75,cs), (232,75,o), (180,108,o), (180,194,c), (180,500,l), (80,500,l), (80,172,ls), (80,52,o), (164,-12,o), (251,-12,cs), (354,-12,o), (398,45,o), (418,98,c), (418,-1,l), (518,-1,l), (518,500,l) ); } ); width = 603; } ); unicode = 117; }, { glyphname = uacute; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (232,3); ref = acutecomb; } ); width = 597; } ); unicode = 250; }, { glyphname = ubreve; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (-19,3); ref = brevecomb; } ); width = 597; } ); unicode = 365; }, { glyphname = ucircumflex; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (77,3); ref = circumflexcomb; } ); width = 597; } ); unicode = 251; }, { glyphname = udieresis; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (127,3); ref = dieresiscomb; } ); width = 597; } ); unicode = 252; }, { glyphname = udotbelow; kernLeft = u; kernRight = u; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (205,-12); ref = dotbelowcomb; } ); width = 597; } ); unicode = 7909; }, { glyphname = ugrave; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (110,3); ref = gravecomb; } ); width = 597; } ); unicode = 249; }, { glyphname = uhookabove; kernLeft = u; kernRight = u; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (-2,15); ref = hookabovecomb; } ); width = 597; } ); unicode = 7911; }, { glyphname = uhorn; kernLeft = u; kernRight = u; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (653,446,o), (668,546,o), (659,597,c), (586,592,l), (591,556,o), (585,502,o), (522,500,cs), (462,498,o), (453,446,o), (516,446,c) ); }, { ref = u; } ); width = 600; } ); unicode = 432; }, { glyphname = uhornacute; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = uhorn; }, { pos = (232,3); ref = acutecomb; } ); width = 600; } ); unicode = 7913; }, { glyphname = uhorndotbelow; kernLeft = u; kernRight = u; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = uhorn; }, { pos = (205,-12); ref = dotbelowcomb; } ); width = 600; } ); unicode = 7921; }, { glyphname = uhorngrave; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = uhorn; }, { pos = (110,3); ref = gravecomb; } ); width = 600; } ); unicode = 7915; }, { glyphname = uhornhookabove; kernLeft = u; kernRight = u; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = uhorn; }, { pos = (-2,15); ref = hookabovecomb; } ); width = 600; } ); unicode = 7917; }, { glyphname = uhorntilde; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = uhorn; }, { pos = (-11,3); ref = tildecomb; } ); width = 600; } ); unicode = 7919; }, { glyphname = uhungarumlaut; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (35,3); ref = hungarumlautcomb; } ); width = 597; } ); unicode = 369; }, { glyphname = umacron; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (-13,3); ref = macroncomb; } ); width = 597; } ); unicode = 363; }, { glyphname = uogonek; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (104,0); ref = ogonekcomb; } ); width = 597; } ); unicode = 371; }, { glyphname = uring; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (170,3); ref = ringcomb; } ); width = 597; } ); unicode = 367; }, { glyphname = utilde; kernLeft = u; kernRight = u; lastChange = "2023-07-09 23:22:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = u; }, { pos = (-11,3); ref = tildecomb; } ); width = 597; } ); unicode = 361; }, { glyphname = v; kernLeft = v; kernRight = v; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (267,0,l), (518,500,l), (438,500,l), (229,84,l), (136,500,l), (52,500,l), (163,0,l) ); } ); width = 500; }, { associatedMasterId = master01; layerId = "6A8EB27F-0274-4B16-855B-6672B7F2D5F0"; name = foreground; shapes = ( { closed = 1; nodes = ( (506,500,l), (324,0,l), (193,0,l), (12,500,l), (124,500,l), (258,101,l), (392,500,l) ); } ); width = 518; } ); unicode = 118; }, { glyphname = w; kernLeft = w; kernRight = w; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (424,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (248,0,l), (413,394,l), (398,394,l), (448,0,l), (561,0,l), (770,499,l), (679,499,l), (512,60,l), (523,60,l), (466,499,l), (374,499,l), (192,60,l), (204,60,l), (161,499,l), (70,499,l), (139,0,l) ); } ); width = 770; }, { associatedMasterId = master01; layerId = "A8781FE5-F585-44A1-B1ED-7854B8098763"; name = foreground; shapes = ( { closed = 1; nodes = ( (456,0,l), (573,0,l), (704,499,l), (606,499,l), (511,66,l), (530,66,l), (424,499,l), (320,499,l), (214,66,l), (233,66,l), (138,499,l), (30,499,l), (161,0,l), (278,0,l), (375,374,l), (359,374,l) ); } ); width = 734; } ); unicode = 119; }, { glyphname = wacute; kernLeft = w; kernRight = w; lastChange = "2023-07-09 23:22:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = w; }, { pos = (331,0); ref = acutecomb; } ); width = 770; } ); unicode = 7811; }, { glyphname = wcircumflex; kernLeft = w; kernRight = w; lastChange = "2023-07-09 23:22:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = w; }, { pos = (176,0); ref = circumflexcomb; } ); width = 770; } ); unicode = 373; }, { glyphname = wdieresis; kernLeft = w; kernRight = w; lastChange = "2023-07-09 23:22:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = w; }, { pos = (226,0); ref = dieresiscomb; } ); width = 770; } ); unicode = 7813; }, { glyphname = wgrave; kernLeft = w; kernRight = w; lastChange = "2023-07-09 23:22:46 +0000"; layers = ( { layerId = master01; shapes = ( { ref = w; }, { pos = (209,0); ref = gravecomb; } ); width = 770; } ); unicode = 7809; }, { glyphname = x; kernLeft = x; kernRight = x; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (394,0,l), (272,257,l), (455,500,l), (361,500,l), (236,334,l), (156,500,l), (62,500,l), (178,257,l), (-17,0,l), (77,0,l), (214,181,l), (300,0,l) ); } ); width = 447; }, { associatedMasterId = master01; layerId = "B47364CB-B425-460E-96EC-C79310290C0B"; name = foreground; shapes = ( { closed = 1; nodes = ( (247,166,l), (363,0,l), (485,0,l), (308,251,l), (480,500,l), (363,500,l), (250,335,l), (135,500,l), (13,500,l), (188,250,l), (13,0,l), (130,0,l) ); } ); width = 493; } ); unicode = 120; }, { glyphname = y; kernLeft = y; kernRight = y; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (194,-230); }, { name = top; pos = (298,516); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (140,-230,o), (178,-164,o), (245,-34,cs), (521,500,l), (432,500,l), (244,119,l), (136,500,l), (50,500,l), (188,3,l), (134,-126,o), (97,-150,o), (51,-150,c), (33,-150,o), (15,-149,o), (3,-146,c), (-7,-222,l), (5,-226,o), (25,-230,o), (46,-230,cs) ); } ); width = 498; }, { associatedMasterId = master01; layerId = "C02C67DD-6A80-4F27-B5CB-F7E47F86019A"; name = foreground; shapes = ( { closed = 1; nodes = ( (185,-251,o), (89,-251,cs), (78,-251,o), (45,-248,o), (30,-243,c), (30,-151,l), (30,-151,o), (58,-159,o), (96,-156,c), (141,-156,o), (181,-118,o), (202,-24,cs), (208,3,l), (10,500,l), (127,500,l), (266,119,l), (391,500,l), (497,500,l), (306,-34,ls), (248,-196,o) ); } ); width = 502; } ); unicode = 121; }, { glyphname = yacute; kernLeft = y; kernRight = y; lastChange = "2023-07-09 23:22:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = y; }, { pos = (205,4); ref = acutecomb; } ); width = 498; } ); unicode = 253; }, { glyphname = ycircumflex; kernLeft = y; kernRight = y; lastChange = "2023-07-09 23:22:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = y; }, { pos = (50,4); ref = circumflexcomb; } ); width = 498; } ); unicode = 375; }, { glyphname = ydieresis; kernLeft = y; kernRight = y; lastChange = "2023-07-09 23:22:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = y; }, { pos = (100,4); ref = dieresiscomb; } ); width = 498; } ); unicode = 255; }, { glyphname = ydotbelow; kernLeft = y; kernRight = y; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = y; }, { pos = (154,-230); ref = dotbelowcomb; } ); width = 498; } ); unicode = 7925; }, { glyphname = ygrave; kernLeft = y; kernRight = y; lastChange = "2023-07-09 23:22:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = y; }, { pos = (83,4); ref = gravecomb; } ); width = 498; } ); unicode = 7923; }, { glyphname = yhookabove; kernLeft = y; kernRight = y; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = y; }, { pos = (-29,16); ref = hookabovecomb; } ); width = 498; } ); unicode = 7927; }, { glyphname = ytilde; kernLeft = y; kernRight = y; lastChange = "2023-07-09 23:22:57 +0000"; layers = ( { layerId = master01; shapes = ( { ref = y; }, { pos = (-38,4); ref = tildecomb; } ); width = 498; } ); unicode = 7929; }, { glyphname = z; kernLeft = z; kernRight = z; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (257,521); } ); hints = ( { horizontal = 1; origin = (0,9); target = (0,2); type = Stem; }, { horizontal = 1; origin = (0,6); target = (0,5); type = Stem; }, { origin = (0,9); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (346,1,l), (357,77,l), (113,77,l), (404,425,l), (414,501,l), (85,501,l), (75,425,l), (317,425,l), (26,78,l), (15,1,l) ); } ); width = 427; }, { associatedMasterId = master01; layerId = "9FF03EA6-08B8-46BD-92BE-77D8C33F9469"; name = foreground; shapes = ( { closed = 1; nodes = ( (390,1,l), (390,86,l), (148,86,l), (390,419,l), (390,501,l), (40,501,l), (40,419,l), (282,419,l), (40,87,l), (40,1,l) ); } ); width = 430; } ); unicode = 122; }, { glyphname = zacute; kernLeft = z; kernRight = z; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = z; }, { pos = (164,9); ref = acutecomb; } ); width = 427; } ); unicode = 378; }, { glyphname = zcaron; kernLeft = z; kernRight = z; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = z; }, { pos = (7,9); ref = caroncomb; } ); width = 427; } ); unicode = 382; }, { glyphname = zdotaccent; kernLeft = z; kernRight = z; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = z; }, { pos = (146,9); ref = dotaccentcomb; } ); width = 427; } ); unicode = 380; }, { glyphname = lcommaaccent.loclMAH; kernLeft = l; kernRight = l; lastChange = "2023-08-03 12:51:51 +0000"; layers = ( { layerId = master01; shapes = ( { ref = l; }, { pos = (-161,-2); ref = cedillacomb; } ); width = 258; } ); }, { glyphname = ncommaaccent.loclMAH; kernLeft = n; kernRight = n; lastChange = "2023-07-09 23:23:10 +0000"; layers = ( { layerId = master01; shapes = ( { ref = n; }, { pos = (-1,-2); ref = commaaccentcomb.loclMAH; } ); width = 597; } ); }, { glyphname = a.ss01; kernLeft = a; kernRight = a; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = bottom; pos = (230,0); }, { name = ogonek; pos = (444,12); }, { name = top; pos = (309,512); } ); hints = ( { horizontal = 1; place = (-47,41); type = Stem; }, { horizontal = 1; place = (401,41); type = Stem; }, { place = (422,48); type = Stem; }, { place = (38,49); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (299,-12,o), (362,106,o), (362,106,c), (352,35,o), (383,0,o), (435,0,cs), (460,0,o), (473,4,o), (489,12,c), (498,80,l), (448,69,o), (436,87,o), (442,127,cs), (472,340,ls), (484,429,o), (427,512,o), (309,512,cs), (152,512,o), (93,393,o), (93,393,c), (156,356,l), (156,356,o), (198,436,o), (291,436,cs), (359,436,o), (395,390,o), (387,336,cs), (383,310,l), (180,310,o), (60,262,o), (42,135,cs), (29,43,o), (84,-12,o), (165,-12,cs) ); }, { closed = 1; nodes = ( (146,64,o), (120,91,o), (127,142,cs), (138,223,o), (222,244,o), (374,244,c), (371,219,ls), (357,120,o), (259,64,o), (197,64,cs) ); } ); width = 590; }, { associatedMasterId = master01; layerId = "9D365B9B-32C5-456F-91EC-EA0BDBFBA64C"; name = foreground; shapes = ( { closed = 1; nodes = ( (383,426,o), (426,339,o), (426,252,cs), (426,165,o), (381,75,o), (285,75,c), (191,75,o), (149,165,o), (149,252,cs), (149,339,o), (189,426,o), (285,426,c) ); }, { closed = 1; nodes = ( (127,512,o), (40,397,o), (40,250,cs), (40,123,o), (108,-13,o), (260,-12,c), (335,-12,o), (395,27,o), (423,98,c), (423,0,l), (523,0,l), (523,499,l), (423,499,l), (423,422,l), (400,475,o), (329,512,o), (260,512,c) ); } ); width = 583; }, { associatedMasterId = master01; layerId = "B723C8F9-18DA-486D-A68C-0EA6D66026F1"; name = "1 Aug 21, 12:43"; shapes = ( { closed = 1; nodes = ( (383,426,o), (426,339,o), (426,252,cs), (426,165,o), (381,75,o), (285,75,c), (191,75,o), (149,165,o), (149,252,cs), (149,339,o), (189,426,o), (285,426,c) ); }, { closed = 1; nodes = ( (196,63,o), (148,148,o), (148,252,cs), (148,356,o), (196,437,o), (294,437,cs), (393,437,o), (447,360,o), (447,250,cs), (447,148,o), (393,65,o), (297,64,cs) ); }, { closed = 0; nodes = ( (531,-103,l), (532,500,l), (451,500,l), (451,402,l), (430,457,o), (378,512,o), (290,512,cs), (159,512,o), (64,419,o), (64,250,cs), (64,86,o), (154,-12,o), (285,-12,cs), (354,-12,o), (427,27,o), (448,96,c) ); } ); width = 583; } ); }, { glyphname = aacute.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (216,0); ref = acutecomb; } ); width = 590; } ); }, { glyphname = abreve.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-35,0); ref = brevecomb; } ); width = 590; } ); }, { glyphname = abreveacute.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-35,0); ref = brevecomb_acutecomb; } ); width = 590; } ); }, { glyphname = abrevedotbelow.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (190,0); ref = dotbelowcomb; }, { pos = (-35,0); ref = brevecomb; } ); width = 590; } ); }, { glyphname = abrevegrave.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-35,0); ref = brevecomb_gravecomb; } ); width = 590; } ); }, { glyphname = abrevehookabove.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-35,0); ref = brevecomb_hookabovecomb; } ); width = 590; } ); }, { glyphname = abrevetilde.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-35,0); ref = brevecomb_tildecomb; } ); width = 590; } ); }, { glyphname = acircumflex.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (61,0); ref = circumflexcomb; } ); width = 590; } ); }, { glyphname = acircumflexacute.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (60,0); ref = circumflexcomb_acutecomb; } ); width = 590; } ); }, { glyphname = acircumflexdotbelow.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (190,0); ref = dotbelowcomb; }, { pos = (61,0); ref = circumflexcomb; } ); width = 590; } ); }, { glyphname = acircumflexgrave.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (61,0); ref = circumflexcomb_gravecomb; } ); width = 590; } ); }, { glyphname = acircumflexhookabove.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (61,0); ref = circumflexcomb_hookabovecomb; } ); width = 590; } ); }, { glyphname = acircumflextilde.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (61,0); ref = circumflexcomb_tildecomb; } ); width = 590; } ); }, { glyphname = adieresis.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (111,0); ref = dieresiscomb; } ); width = 590; } ); }, { glyphname = adotbelow.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (190,0); ref = dotbelowcomb; } ); width = 590; } ); }, { glyphname = agrave.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (94,0); ref = gravecomb; } ); width = 590; } ); }, { glyphname = ahookabove.ss01; kernLeft = a; kernRight = a; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-18,12); ref = hookabovecomb; } ); width = 590; } ); }, { glyphname = amacron.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-29,0); ref = macroncomb; } ); width = 590; } ); }, { glyphname = aogonek.ss01; kernLeft = a; kernRight = a; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (123,12); ref = ogonekcomb; } ); width = 590; } ); }, { glyphname = aring.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (154,0); ref = ringcomb; } ); width = 590; } ); }, { glyphname = atilde.ss01; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a.ss01; }, { pos = (-27,0); ref = tildecomb; } ); width = 590; } ); }, { glyphname = g.ss01; kernLeft = g; kernRight = g; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (299,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (353,-229,o), (453,-148,o), (467,-46,cs), (477,20,o), (451,94,o), (322,94,cs), (185,94,ls), (116,94,o), (135,174,o), (195,174,cs), (206,174,o), (246,174,o), (258,174,cs), (374,174,o), (455,242,o), (469,340,cs), (474,375,o), (467,417,o), (449,447,c), (466,476,o), (519,478,o), (556,472,c), (569,560,l), (478,576,o), (428,525,o), (417,480,c), (401,494,o), (360,512,o), (299,512,cs), (172,512,o), (97,427,o), (85,340,cs), (77,286,o), (95,222,o), (139,197,c), (102,193,o), (64,164,o), (59,127,cs), (53,86,o), (75,61,o), (107,52,c), (45,31,o), (14,-31,o), (8,-73,cs), (-6,-172,o), (83,-229,o), (208,-229,cs) ); }, { closed = 1; nodes = ( (121,-154,o), (79,-122,o), (88,-59,cs), (93,-22,o), (124,12,o), (168,22,c), (304,22,l), (376,22,o), (395,-2,o), (389,-49,cs), (383,-100,o), (336,-154,o), (218,-154,cs) ); }, { closed = 1; nodes = ( (183,243,o), (157,287,o), (165,342,cs), (172,395,o), (211,441,o), (288,441,cs), (372,441,o), (397,396,o), (389,343,cs), (381,285,o), (344,243,o), (260,243,cs) ); } ); width = 547; }, { associatedMasterId = master01; layerId = "077287D2-C640-42BE-89DC-9237D68A85C4"; name = foreground; shapes = ( { closed = 1; nodes = ( (183,240,o), (147,288,o), (147,343,cs), (147,398,o), (180,440,o), (245,440,cs), (312,440,o), (344,398,o), (344,343,cs), (344,288,o), (312,240,o), (245,240,cs) ); }, { closed = 1; nodes = ( (129,-46,o), (148,-8,o), (188,12,c), (298,12,l), (361,12,o), (405,-12,o), (403,-81,cs), (401,-150,o), (334,-171,o), (248,-169,c), (174,-167,o), (129,-127,o), (129,-82,c) ); }, { closed = 1; nodes = ( (509,560,l), (416,576,o), (373,525,o), (370,480,c), (340,500,o), (299,512,o), (248,512,cs), (119,512,o), (57,434,o), (57,337,cs), (57,280,o), (84,216,o), (139,191,c), (118,183,o), (57,164,o), (57,103,cs), (57,61,o), (101,37,o), (142,28,c), (79,12,o), (42,-33,o), (42,-89,cs), (42,-161,o), (108,-250,o), (249,-250,c), (419,-251,o), (495,-174,o), (494,-67,cs), (493,13,o), (425,99,o), (306,99,cs), (206,99,ls), (137,99,o), (147,168,o), (207,168,cs), (218,168,o), (241,168,o), (248,168,cs), (380,168,o), (441,242,o), (440,337,cs), (440,379,o), (428,417,o), (405,447,c), (418,476,o), (471,478,o), (509,472,c) ); } ); width = 523; }, { associatedMasterId = master01; layerId = "7A42339F-1245-461A-AC41-BAF96E1C6F90"; name = "22 Jul 21, 14:28"; shapes = ( { closed = 1; nodes = ( (195,246,o), (151,292,o), (151,344,cs), (151,396,o), (192,440,o), (257,440,cs), (324,440,o), (370,396,o), (370,344,cs), (370,292,o), (324,246,o), (257,246,cs) ); }, { closed = 1; nodes = ( (138,-22,o), (163,10,o), (209,30,c), (307,30,l), (365,30,o), (410,-1,o), (408,-70,cs), (406,-139,o), (345,-155,o), (266,-155,c), (192,-155,o), (138,-120,o), (138,-70,cs) ); }, { closed = 1; nodes = ( (521,560,l), (428,576,o), (385,525,o), (382,480,c), (352,500,o), (311,512,o), (260,512,cs), (148,512,o), (69,427,o), (69,340,cs), (69,286,o), (96,222,o), (151,197,c), (126,194,o), (77,181,o), (77,117,cs), (77,75,o), (113,50,o), (154,41,c), (91,25,o), (54,-22,o), (54,-78,cs), (54,-150,o), (120,-229,o), (261,-229,c), (418,-230,o), (494,-163,o), (493,-56,cs), (492,24,o), (440,102,o), (315,102,cs), (210,102,ls), (141,102,o), (151,174,o), (211,174,cs), (222,174,o), (253,174,o), (260,174,cs), (392,174,o), (452,269,o), (452,340,cs), (452,375,o), (440,417,o), (417,447,c), (430,476,o), (483,478,o), (521,472,c) ); }, { closed = 1; nodes = ( (423,-97,o), (378,-146,o), (254,-146,cs), (180,-146,o), (132,-102,o), (107,-43,c), (29,-86,l), (74,-187,o), (166,-229,o), (253,-230,cs), (369,-232,o), (506,-180,o), (506,-12,cs), (507,500,l), (426,500,l), (426,402,l), (405,457,o), (348,512,o), (260,512,cs), (129,512,o), (31,419,o), (31,250,cs), (31,86,o), (124,-12,o), (255,-12,cs), (324,-12,o), (402,27,o), (423,96,c), (423,-12,ls) ); }, { closed = 1; nodes = ( (166,63,o), (115,148,o), (115,252,cs), (115,356,o), (166,437,o), (264,437,cs), (363,437,o), (422,360,o), (422,250,cs), (422,148,o), (363,65,o), (267,64,cs) ); } ); width = 543; } ); }, { glyphname = gbreve.ss01; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:23:29 +0000"; layers = ( { layerId = master01; shapes = ( { ref = g.ss01; }, { pos = (-45,0); ref = brevecomb; } ); width = 547; } ); }, { glyphname = gcommaaccent.ss01; kernLeft = g; kernRight = g; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (299,512); } ); layerId = master01; shapes = ( { ref = g.ss01; }, { pos = (-58,0); ref = commaturnedabovecomb; } ); width = 547; } ); }, { glyphname = gdotaccent.ss01; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:23:29 +0000"; layers = ( { layerId = master01; shapes = ( { ref = g.ss01; }, { pos = (188,0); ref = dotaccentcomb; } ); width = 547; } ); }, { glyphname = gmacron.ss01; kernLeft = g; kernRight = g; lastChange = "2023-07-09 23:23:29 +0000"; layers = ( { layerId = master01; shapes = ( { ref = g.ss01; }, { pos = (-39,0); ref = macroncomb; } ); width = 547; } ); }, { glyphname = ordfeminine; kernLeft = a; kernRight = a; lastChange = "2023-07-09 23:23:18 +0000"; layers = ( { layerId = master01; shapes = ( { ref = a; } ); width = 607; } ); unicode = 170; }, { glyphname = ordmasculine; kernLeft = o; kernRight = o; lastChange = "2023-07-09 23:23:37 +0000"; layers = ( { layerId = master01; shapes = ( { ref = o; } ); width = 580; } ); unicode = 186; }, { glyphname = zero; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (515,-13,o), (605,173,o), (631,358,cs), (659,553,o), (616,720,o), (408,720,c), (198,720,o), (109,553,o), (81,358,cs), (55,173,o), (93,-13,o), (305,-13,c) ); }, { closed = 1; nodes = ( (176,68,o), (146,199,o), (168,359,cs), (191,522,o), (257,639,o), (398,639,c), (533,639,o), (567,522,o), (544,359,cs), (522,199,o), (452,68,o), (316,68,c) ); }, { closed = 1; nodes = ( (382,290,o), (414,319,o), (418,353,cs), (423,388,o), (399,417,o), (365,417,cs), (330,417,o), (297,388,o), (292,353,cs), (288,319,o), (313,290,o), (348,290,cs) ); } ); width = 682; }, { associatedMasterId = master01; layerId = "13DCC383-82AB-442C-BFC2-C1F1611A1FF5"; name = foreground; shapes = ( { closed = 1; nodes = ( (148,-13,o), (84,173,o), (84,358,cs), (84,553,o), (150,719,o), (360,719,c), (568,719,o), (634,553,o), (634,358,cs), (634,173,o), (570,-13,o), (360,-13,c) ); }, { closed = 1; nodes = ( (235,618,o), (188,513,o), (188,360,cs), (188,200,o), (230,89,o), (359,89,c), (488,89,o), (530,200,o), (530,360,cs), (530,513,o), (483,618,o), (360,618,c) ); }, { closed = 1; nodes = ( (395,295,o), (424,325,o), (424,358,cs), (424,394,o), (395,424,o), (361,424,cs), (326,424,o), (296,394,o), (296,358,cs), (296,325,o), (326,295,o), (361,295,cs) ); } ); width = 718; } ); unicode = 48; }, { glyphname = one; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,12); target = (0,2); type = Stem; }, { horizontal = 1; origin = (0,8); target = (0,7); type = Stem; }, { horizontal = 1; origin = (0,12); target = (0,11); type = Stem; }, { origin = (0,10); target = (0,2); type = Stem; }, { origin = (0,4); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (387,0,l), (398,80,l), (265,80,l), (352,699,l), (277,699,l), (264,606,o), (241,592,o), (124,592,c), (113,512,l), (238,512,l), (177,80,l), (50,80,l), (39,0,l) ); } ); width = 513; }, { associatedMasterId = master01; layerId = "E47BB55E-6434-4EFE-8F9A-CD219E7F6C54"; name = foreground; shapes = ( { closed = 1; nodes = ( (196,94,l), (69,94,l), (69,0,l), (441,0,l), (441,96,l), (308,96,l), (308,699,l), (221,699,l), (221,598,o), (163,593,o), (71,593,c), (71,512,l), (196,512,l) ); } ); width = 496; } ); unicode = 49; }, { glyphname = two; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,25); target = (0,2); type = Stem; }, { horizontal = 1; origin = (0,18); target = (0,8); type = Stem; }, { origin = (0,25); target = (0,2); type = Stem; }, { origin = (0,21); target = (0,5); type = Stem; }, { origin = (0,14); target = (0,15); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (466,1,l), (477,81,l), (137,81,l), (164,274,o), (495,284,o), (529,528,cs), (546,647,o), (464,712,o), (349,712,c), (269,712,o), (192,677,o), (147,615,c), (129,589,o), (115,555,o), (110,519,c), (198,519,l), (206,576,o), (259,632,o), (337,632,c), (415,632,o), (451,584,o), (443,528,cs), (416,335,o), (87,332,o), (51,81,cs), (40,1,l) ); } ); width = 576; }, { associatedMasterId = master01; layerId = "BC9AB10E-C11D-48D7-ACCF-502BD9D7D8B4"; name = foreground; shapes = ( { closed = 1; nodes = ( (184,257,o), (500,284,o), (500,530,cs), (500,649,o), (404,719,o), (289,719,c), (209,719,o), (137,685,o), (101,623,c), (86,597,o), (77,566,o), (77,530,c), (174,530,l), (174,587,o), (210,636,o), (288,636,c), (366,636,o), (405,592,o), (405,536,cs), (405,343,o), (80,308,o), (80,87,cs), (80,1,l), (511,1,l), (511,93,l), (184,93,l) ); } ); width = 587; } ); unicode = 50; }, { glyphname = three; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (392,-12,o), (516,69,o), (535,208,cs), (551,324,o), (489,423,o), (333,423,c), (553,615,l), (565,700,l), (177,700,l), (166,620,l), (448,620,l), (215,423,l), (206,355,l), (301,355,ls), (400,355,o), (463,309,o), (450,212,cs), (438,128,o), (364,68,o), (275,68,cs), (202,68,o), (147,94,o), (138,173,c), (137,185,o), (137,198,o), (138,210,c), (53,203,l), (50,182,o), (51,162,o), (52,144,c), (65,43,o), (154,-12,o), (263,-12,cs) ); } ); width = 609; }, { associatedMasterId = master01; layerId = "EB8DBBAE-32D2-41E0-8962-5175497312F2"; name = foreground; shapes = ( { closed = 1; nodes = ( (469,429,o), (530,330,o), (530,203,cs), (530,64,o), (418,-12,o), (289,-12,c), (180,-12,o), (83,43,o), (56,144,c), (52,162,o), (49,182,o), (49,203,c), (156,210,l), (156,198,o), (158,185,o), (161,173,c), (174,121,o), (217,78,o), (290,78,c), (379,78,o), (423,140,o), (423,207,cs), (423,271,o), (399,358,o), (265,358,c), (183,358,l), (183,441,l), (379,611,l), (110,611,l), (110,700,l), (496,700,l), (496,606,l), (313,441,l) ); } ); width = 587; } ); unicode = 51; }, { glyphname = four; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,9); target = (0,7); type = Stem; }, { origin = (0,10); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (425,1,l), (448,167,l), (552,167,l), (564,248,l), (460,248,l), (523,701,l), (437,701,l), (65,248,l), (53,168,l), (362,168,l), (339,1,l) ); }, { closed = 1; nodes = ( (417,559,l), (374,248,l), (157,248,l) ); } ); width = 613; }, { associatedMasterId = master01; layerId = "343D4897-1185-4756-95B8-BCD83EF9873F"; name = foreground; shapes = ( { closed = 1; nodes = ( (460,1,l), (460,702,l), (354,702,l), (354,1,l) ); }, { closed = 1; nodes = ( (557,158,l), (557,250,l), (63,250,l), (63,158,l) ); }, { closed = 1; nodes = ( (354,701,l), (64,248,l), (169,248,l), (452,690,l) ); } ); width = 582; } ); unicode = 52; }, { glyphname = five; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,30); target = (0,23); type = Stem; }, { horizontal = 1; origin = (0,17); target = (0,5); type = Stem; }, { horizontal = 1; origin = (0,12); target = (0,9); type = Stem; }, { origin = (0,20); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (402,-12,o), (527,77,o), (549,234,cs), (570,387,o), (475,469,o), (353,469,cs), (296,469,o), (231,443,o), (206,407,c), (275,620,l), (557,620,l), (568,700,l), (221,700,l), (110,348,l), (198,322,l), (226,361,o), (272,388,o), (324,388,cs), (415,388,o), (476,330,o), (463,234,cs), (448,126,o), (374,68,o), (285,68,cs), (211,68,o), (151,123,o), (150,195,c), (66,163,l), (77,49,o), (164,-12,o), (273,-12,cs) ); } ); width = 621; }, { associatedMasterId = master01; layerId = "141C748C-D320-4F67-ACD8-1A49E620755D"; name = foreground; shapes = ( { closed = 1; nodes = ( (84,49,o), (180,-12,o), (289,-12,c), (418,-12,o), (530,83,o), (530,240,cs), (530,393,o), (418,484,o), (289,484,c), (255,484,o), (191,469,o), (174,442,c), (209,627,l), (484,627,l), (484,720,l), (129,720,l), (60,321,l), (59,316,o), (166,315,o), (165,310,c), (183,355,o), (224,393,o), (288,393,c), (379,393,o), (427,314,o), (427,242,cs), (427,166,o), (379,80,o), (290,80,c), (216,80,o), (170,133,o), (156,195,c), (57,163,l) ); } ); width = 587; } ); unicode = 53; }, { glyphname = six; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,17); target = (1,11); type = Stem; }, { horizontal = 1; origin = (1,5); target = (0,5); type = Stem; }, { origin = (0,14); target = (1,2); type = Stem; }, { origin = (1,8); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (410,-12,o), (512,88,o), (532,227,cs), (550,354,o), (460,452,o), (343,452,cs), (312,452,o), (275,442,o), (261,427,c), (473,700,l), (374,700,l), (158,404,ls), (121,354,o), (82,292,o), (73,227,cs), (53,88,o), (125,-12,o), (270,-12,c) ); }, { closed = 1; nodes = ( (185,68,o), (148,140,o), (160,228,cs), (170,299,o), (229,376,o), (322,376,c), (413,376,o), (454,299,o), (444,228,cs), (431,134,o), (369,68,o), (282,68,c) ); } ); width = 595; }, { associatedMasterId = master01; layerId = "D6D6E878-2182-488D-B392-1DFFB86B72D8"; name = foreground; shapes = ( { closed = 1; nodes = ( (417,-12,o), (529,75,o), (529,235,cs), (529,392,o), (413,476,o), (318,476,c), (271,476,o), (246,464,o), (241,464,c), (413,720,l), (297,720,l), (91,384,ls), (65,342,o), (48,287,o), (48,235,cs), (48,75,o), (159,-12,o), (288,-12,c) ); }, { closed = 1; nodes = ( (378,392,o), (426,310,o), (426,236,cs), (426,159,o), (378,81,o), (289,81,c), (200,81,o), (151,159,o), (151,236,cs), (151,310,o), (196,392,o), (287,392,c) ); } ); width = 586; } ); unicode = 54; }, { glyphname = seven; lastChange = "2023-08-03 12:47:48 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,3); target = (0,4); type = Stem; }, { origin = (0,4); target = (0,1); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (165,1,l), (551,622,l), (562,700,l), (118,700,l), (107,620,l), (462,620,l), (76,1,l) ); } ); width = 527; }, { associatedMasterId = master01; layerId = "838B41D5-9F30-4BE4-913F-336DAFA8DCAA"; name = foreground; shapes = ( { closed = 1; nodes = ( (378,608,l), (79,1,l), (200,1,l), (499,610,l), (499,700,l), (55,700,l), (55,608,l) ); } ); width = 525; } ); unicode = 55; }, { glyphname = eight; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (391,-12,o), (511,64,o), (530,203,cs), (542,286,o), (508,348,o), (450,384,c), (496,416,o), (531,465,o), (540,530,cs), (557,649,o), (477,712,o), (364,712,cs), (253,712,o), (154,649,o), (137,530,cs), (128,465,o), (151,415,o), (187,384,c), (120,348,o), (69,286,o), (57,203,cs), (38,64,o), (134,-12,o), (263,-12,cs) ); }, { closed = 1; nodes = ( (187,68,o), (134,123,o), (145,203,cs), (156,278,o), (221,340,o), (312,340,cs), (403,340,o), (453,278,o), (442,203,cs), (431,123,o), (364,68,o), (275,68,cs) ); }, { closed = 1; nodes = ( (249,418,o), (212,465,o), (221,530,cs), (229,586,o), (276,636,o), (352,636,cs), (428,636,o), (464,586,o), (456,530,cs), (447,465,o), (398,418,o), (324,418,cs) ); } ); width = 611; }, { associatedMasterId = master01; layerId = "91AF98D4-6337-4809-84E9-869B365A9A81"; name = foreground; shapes = ( { closed = 1; nodes = ( (404,342,o), (503,408,o), (503,530,cs), (503,649,o), (404,719,o), (289,719,c), (175,719,o), (77,649,o), (77,530,cs), (77,408,o), (175,342,o), (289,342,c) ); }, { closed = 1; nodes = ( (366,642,o), (405,586,o), (405,530,cs), (405,474,o), (366,418,o), (290,418,c), (213,418,o), (174,474,o), (174,530,cs), (174,586,o), (210,642,o), (288,642,c) ); }, { closed = 1; nodes = ( (418,-12,o), (530,64,o), (530,203,cs), (530,339,o), (418,419,o), (289,419,c), (160,419,o), (49,339,o), (49,203,cs), (49,64,o), (160,-12,o), (289,-12,c) ); }, { closed = 1; nodes = ( (379,341,o), (423,274,o), (423,210,cs), (423,143,o), (379,78,o), (290,78,c), (201,78,o), (156,143,o), (156,210,cs), (156,274,o), (197,341,o), (288,341,c) ); } ); width = 587; }, { associatedMasterId = master01; layerId = "594B591A-42ED-4B4B-A577-75D6A89A309A"; name = "2 Aug 21, 17:38"; shapes = ( { closed = 1; nodes = ( (404,342,o), (503,408,o), (503,530,cs), (503,649,o), (404,719,o), (289,719,c), (175,719,o), (77,649,o), (77,530,cs), (77,408,o), (175,342,o), (289,342,c) ); }, { closed = 1; nodes = ( (366,642,o), (405,586,o), (405,530,cs), (405,474,o), (366,418,o), (290,418,c), (213,418,o), (174,474,o), (174,530,cs), (174,586,o), (210,642,o), (288,642,c) ); }, { closed = 1; nodes = ( (418,-12,o), (530,64,o), (530,203,cs), (530,339,o), (418,419,o), (289,419,c), (160,419,o), (49,339,o), (49,203,cs), (49,64,o), (160,-12,o), (289,-12,c) ); }, { closed = 1; nodes = ( (379,341,o), (423,274,o), (423,210,cs), (423,143,o), (379,78,o), (290,78,c), (201,78,o), (156,143,o), (156,210,cs), (156,274,o), (197,341,o), (288,341,c) ); } ); width = 587; } ); unicode = 56; }, { glyphname = nine; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (265,0,l), (481,296,ls), (518,346,o), (557,408,o), (566,473,cs), (586,612,o), (514,712,o), (369,712,c), (229,712,o), (127,612,o), (107,473,cs), (89,346,o), (179,248,o), (296,248,cs), (327,248,o), (364,258,o), (378,273,c), (166,0,l) ); }, { closed = 1; nodes = ( (226,324,o), (185,401,o), (195,472,cs), (208,566,o), (270,632,o), (357,632,c), (454,632,o), (492,560,o), (479,472,cs), (469,401,o), (410,324,o), (317,324,c) ); } ); width = 594; }, { associatedMasterId = master01; layerId = "DE9DA14C-A867-4145-8585-487AFC56B204"; name = foreground; shapes = ( { closed = 1; nodes = ( (160,732,o), (48,645,o), (48,485,cs), (48,328,o), (164,244,o), (259,244,c), (306,244,o), (331,256,o), (336,256,c), (164,0,l), (280,0,l), (486,336,ls), (512,378,o), (529,433,o), (529,485,cs), (529,645,o), (418,732,o), (289,732,c) ); }, { closed = 1; nodes = ( (199,328,o), (151,410,o), (151,484,cs), (151,561,o), (199,639,o), (288,639,c), (377,639,o), (426,561,o), (426,484,cs), (426,410,o), (381,328,o), (290,328,c) ); } ); width = 586; } ); unicode = 57; }, { glyphname = .notdef; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,3); target = (1,3); type = Stem; }, { horizontal = 1; origin = (0,1); target = (1,1); type = Stem; }, { origin = (0,3); target = (1,0); type = Stem; }, { origin = (0,1); target = (1,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (497,-150,l), (620,730,l), (162,730,l), (39,-150,l) ); }, { closed = 1; nodes = ( (236,652,l), (524,652,l), (423,-72,l), (135,-72,l) ); } ); width = 648; } ); }, { glyphname = space; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; width = 268; }, { associatedMasterId = master01; layerId = "278BD42E-6D32-4FB3-9902-F04FFA4DB058"; name = foreground; width = 230; } ); unicode = 32; }, { glyphname = nbspace; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; width = 268; } ); metricWidth = space; unicode = 160; }, { glyphname = period; lastChange = "2023-08-03 12:46:37 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (109,-12,o), (141,17,o), (146,51,cs), (151,86,o), (127,115,o), (93,115,cs), (58,115,o), (25,86,o), (20,51,cs), (15,17,o), (40,-12,o), (75,-12,cs) ); } ); width = 222; }, { associatedMasterId = master01; layerId = "2626C257-C8D1-4BEC-A76B-04061BD798F2"; name = foreground; shapes = ( { closed = 1; nodes = ( (196,-12,o), (229,23,o), (229,62,cs), (229,104,o), (196,139,o), (156,139,cs), (115,139,o), (80,104,o), (80,62,cs), (80,23,o), (115,-12,o), (156,-12,cs) ); } ); width = 309; } ); unicode = 46; }, { glyphname = comma; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (92,-119,o), (153,-39,o), (166,48,cs), (172,97,o), (147,134,o), (100,134,cs), (64,134,o), (29,99,o), (24,64,cs), (19,31,o), (46,0,o), (79,0,cs), (82,0,o), (87,0,o), (89,1,c), (79,-71,o), (3,-86,o), (3,-86,c), (3,-86,o), (-3,-119,o), (-2,-119,cs) ); } ); width = 244; }, { associatedMasterId = master01; layerId = "7090993E-1050-418C-BDF4-9BE23E3E6164"; name = foreground; shapes = ( { closed = 1; nodes = ( (132,0,o), (136,0,o), (139,1,c), (139,-76,o), (60,-92,o), (60,-92,c), (60,-92,o), (59,-131,o), (60,-131,cs), (171,-131,o), (214,-21,o), (214,50,c), (214,94,o), (190,142,o), (131,142,cs), (91,142,o), (60,105,o), (60,67,cs), (60,32,o), (92,0,o), (129,0,cs) ); } ); width = 274; } ); unicode = 44; }, { glyphname = colon; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (195,300,o), (227,329,o), (232,363,cs), (237,398,o), (213,427,o), (179,427,cs), (144,427,o), (111,398,o), (106,363,cs), (101,329,o), (126,300,o), (161,300,cs) ); }, { closed = 1; nodes = ( (151,-12,o), (183,17,o), (188,51,cs), (193,86,o), (169,115,o), (135,115,cs), (100,115,o), (67,86,o), (62,51,cs), (57,17,o), (82,-12,o), (117,-12,cs) ); } ); width = 306; }, { associatedMasterId = master01; layerId = "1129757A-F034-4623-96F5-2C126444C93D"; name = foreground; shapes = ( { closed = 1; nodes = ( (196,-12,o), (229,23,o), (229,62,cs), (229,104,o), (196,139,o), (156,139,cs), (115,139,o), (80,104,o), (80,62,cs), (80,23,o), (115,-12,o), (156,-12,cs) ); }, { closed = 1; nodes = ( (196,289,o), (229,324,o), (229,363,cs), (229,405,o), (196,440,o), (156,440,cs), (115,440,o), (80,405,o), (80,363,cs), (80,324,o), (115,289,o), (156,289,cs) ); } ); width = 309; } ); unicode = 58; }, { glyphname = semicolon; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (88,-119,o), (141,-20,o), (152,48,c), (157,89,o), (142,134,o), (86,134,cs), (50,134,o), (15,99,o), (10,64,cs), (5,31,o), (32,0,o), (65,0,cs), (68,0,o), (73,0,o), (75,1,c), (65,-71,o), (-11,-86,o), (-11,-86,c), (-11,-86,o), (-17,-119,o), (-16,-119,cs) ); }, { closed = 1; nodes = ( (150,300,o), (182,329,o), (187,363,cs), (192,398,o), (168,427,o), (134,427,cs), (99,427,o), (66,398,o), (61,363,cs), (56,329,o), (81,300,o), (116,300,cs) ); } ); width = 270; }, { associatedMasterId = master01; layerId = "7C7B3130-D28B-462C-85A7-59917ACED75E"; name = foreground; shapes = ( { closed = 1; nodes = ( (180,289,o), (213,324,o), (213,363,cs), (213,405,o), (180,440,o), (140,440,cs), (99,440,o), (64,405,o), (64,363,cs), (64,324,o), (99,289,o), (140,289,cs) ); }, { closed = 1; nodes = ( (132,0,o), (136,0,o), (139,1,c), (139,-76,o), (60,-92,o), (60,-92,c), (60,-92,o), (59,-131,o), (60,-131,cs), (171,-131,o), (214,-21,o), (214,50,c), (214,94,o), (190,142,o), (131,142,cs), (91,142,o), (60,105,o), (60,67,cs), (60,32,o), (92,0,o), (129,0,cs) ); } ); width = 274; } ); unicode = 59; }, { glyphname = ellipsis; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { pos = (230,0); ref = period; }, { pos = (460,0); ref = period; }, { ref = period; } ); width = 770; } ); unicode = 8230; }, { glyphname = exclam; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (208,215,l), (290,720,l), (187,720,l), (130,215,l) ); }, { closed = 1; nodes = ( (173,-11,o), (208,21,o), (213,56,cs), (218,94,o), (193,126,o), (157,126,cs), (119,126,o), (83,94,o), (78,56,cs), (73,21,o), (99,-11,o), (137,-11,cs) ); } ); width = 345; }, { associatedMasterId = master01; layerId = "A93029F6-5A44-47E5-8EBB-60AEDDECB850"; name = foreground; shapes = ( { closed = 1; nodes = ( (205,215,l), (218,720,l), (89,720,l), (105,215,l) ); }, { closed = 1; nodes = ( (196,-12,o), (229,23,o), (229,62,cs), (229,104,o), (196,139,o), (156,139,cs), (115,139,o), (80,104,o), (80,62,cs), (80,23,o), (115,-12,o), (156,-12,cs) ); } ); width = 309; } ); unicode = 33; }, { glyphname = exclamdown; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (138,-232,l), (198,273,l), (120,273,l), (35,-232,l) ); }, { closed = 1; nodes = ( (208,362,o), (242,394,o), (248,432,cs), (252,467,o), (227,499,o), (191,499,cs), (153,499,o), (117,467,o), (113,432,cs), (107,394,o), (134,362,o), (172,362,cs) ); } ); width = 309; } ); unicode = 161; }, { glyphname = question; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,18); target = (0,8); type = Stem; }, { horizontal = 1; origin = (1,11); target = (1,5); type = Stem; }, { origin = (0,14); target = (0,15); type = Stem; }, { origin = (0,0); target = (0,1); type = Stem; }, { origin = (0,21); target = (0,5); type = Stem; }, { origin = (1,8); target = (1,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (183,216,o), (274,216,o), (274,216,c), (297,380,o), (472,311,o), (502,530,cs), (519,649,o), (437,719,o), (322,719,cs), (246,719,o), (169,685,o), (124,623,c), (106,597,o), (92,566,o), (87,530,c), (169,530,l), (177,587,o), (236,639,o), (310,639,cs), (388,639,o), (429,592,o), (421,536,cs), (398,372,o), (214,437,o), (183,216,cs) ); }, { closed = 1; nodes = ( (221,-12,o), (253,17,o), (258,51,cs), (263,86,o), (239,115,o), (205,115,cs), (170,115,o), (137,86,o), (132,51,cs), (127,17,o), (152,-12,o), (187,-12,cs) ); } ); width = 511; }, { associatedMasterId = master01; layerId = "CB6FE323-AA22-456B-834C-E280C3EC3E3D"; name = foreground; shapes = ( { closed = 1; nodes = ( (312,380,o), (500,311,o), (500,530,cs), (500,649,o), (404,719,o), (289,719,c), (209,719,o), (137,685,o), (101,623,c), (86,597,o), (77,566,o), (77,530,c), (174,530,l), (174,587,o), (210,636,o), (288,636,c), (366,636,o), (405,592,o), (405,536,cs), (405,372,o), (208,437,o), (208,216,cs), (208,216,o), (312,216,o), (312,216,c) ); }, { closed = 1; nodes = ( (308,-12,o), (341,23,o), (341,62,cs), (341,104,o), (308,139,o), (268,139,cs), (227,139,o), (192,104,o), (192,62,cs), (192,23,o), (227,-12,o), (268,-12,cs) ); } ); width = 587; } ); unicode = 63; }, { glyphname = questiondown; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (265,-219,o), (342,-185,o), (387,-123,c), (405,-97,o), (419,-66,o), (424,-30,c), (342,-30,l), (334,-87,o), (275,-139,o), (201,-139,cs), (123,-139,o), (82,-92,o), (90,-36,cs), (113,128,o), (297,63,o), (328,284,cs), (328,284,o), (237,284,o), (237,284,c), (214,120,o), (39,189,o), (9,-30,cs), (-8,-149,o), (74,-219,o), (189,-219,cs) ); }, { closed = 1; nodes = ( (341,385,o), (374,414,o), (379,449,cs), (384,483,o), (359,512,o), (324,512,cs), (290,512,o), (258,483,o), (253,449,cs), (248,414,o), (272,385,o), (306,385,cs) ); } ); width = 511; } ); unicode = 191; }, { glyphname = periodcentered; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (187,241,o), (219,270,o), (224,304,cs), (229,339,o), (205,368,o), (171,368,cs), (136,368,o), (103,339,o), (98,304,cs), (93,270,o), (118,241,o), (153,241,cs) ); } ); width = 306; } ); unicode = 183; }, { glyphname = bullet; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (212,223,o), (256,262,o), (262,307,cs), (269,354,o), (236,393,o), (191,393,cs), (144,393,o), (100,354,o), (93,307,cs), (87,262,o), (120,223,o), (167,223,cs) ); } ); width = 339; } ); unicode = 8226; }, { glyphname = asterisk; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (273,455,l), (361,330,l), (419,374,l), (332,499,l), (475,562,l), (456,624,l), (324,567,l), (344,712,l), (276,712,l), (255,564,l), (138,622,l), (102,561,l), (226,499,l), (103,374,l), (149,330,l) ); } ); width = 489; }, { associatedMasterId = master01; layerId = "52A87255-65B2-4E80-95F9-0AF50A018D84"; name = foreground; shapes = ( { closed = 1; nodes = ( (146,321,l), (246,438,l), (344,320,l), (407,374,l), (310,489,l), (436,553,l), (400,624,l), (287,568,l), (287,714,l), (204,714,l), (204,568,l), (92,624,l), (55,553,l), (180,490,l), (83,374,l) ); } ); width = 491; } ); unicode = 42; }, { glyphname = numbersign; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (1,3); target = (1,2); type = Stem; }, { horizontal = 1; origin = (3,3); target = (3,2); type = Stem; }, { origin = (1,3); target = (3,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (419,0,l), (693,720,l), (620,720,l), (346,0,l) ); }, { closed = 1; nodes = ( (640,208,l), (651,288,l), (77,288,l), (66,208,l) ); }, { closed = 1; nodes = ( (203,0,l), (477,720,l), (404,720,l), (130,0,l) ); }, { closed = 1; nodes = ( (736,433,l), (747,513,l), (173,513,l), (162,433,l) ); } ); width = 782; }, { associatedMasterId = master01; layerId = "21C28542-C2BA-4EFE-9B17-DE8F14164D30"; name = foreground; shapes = ( { closed = 1; nodes = ( (227,0,l), (400,720,l), (306,720,l), (133,0,l) ); }, { closed = 1; nodes = ( (462,0,l), (635,720,l), (541,720,l), (368,0,l) ); }, { closed = 1; nodes = ( (707,425,l), (707,523,l), (133,523,l), (133,425,l) ); }, { closed = 1; nodes = ( (644,199,l), (644,297,l), (70,297,l), (70,199,l) ); } ); width = 777; } ); unicode = 35; }, { glyphname = slash; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (68,0,l), (462,720,l), (378,720,l), (-16,0,l) ); } ); width = 400; }, { associatedMasterId = master01; layerId = "B6C497E8-57DB-4813-80B4-1FC1C004D65A"; name = foreground; shapes = ( { closed = 1; nodes = ( (97,0,l), (390,720,l), (303,720,l), (10,0,l) ); } ); width = 385; } ); unicode = 47; }, { glyphname = backslash; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (346,0,l), (154,720,l), (70,720,l), (262,0,l) ); } ); width = 400; }, { associatedMasterId = master01; layerId = "343D6EAE-1DF2-4E0E-B6B5-032545DCA862"; name = foreground; shapes = ( { closed = 1; nodes = ( (82,720,l), (-5,720,l), (288,0,l), (375,0,l) ); } ); width = 385; } ); unicode = 92; }, { glyphname = periodcentered.loclCAT; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (182,241,o), (214,270,o), (219,304,cs), (224,339,o), (200,368,o), (166,368,cs), (131,368,o), (98,339,o), (93,304,cs), (88,270,o), (113,241,o), (148,241,cs) ); } ); width = 296; } ); }, { glyphname = periodcentered.loclCAT.case; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (-73,241,o), (-41,270,o), (-36,304,cs), (-31,339,o), (-55,368,o), (-89,368,cs), (-124,368,o), (-157,339,o), (-162,304,cs), (-167,270,o), (-142,241,o), (-107,241,cs) ); } ); width = 41; } ); }, { glyphname = hyphen; lastChange = "2023-08-03 12:46:31 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,3); target = (0,2); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (419,255,l), (430,335,l), (82,335,l), (71,255,l) ); } ); width = 488; }, { associatedMasterId = master01; layerId = "A4E3A6E5-E339-49A3-BA7C-5350A83F40F5"; name = foreground; shapes = ( { closed = 1; nodes = ( (428,247,l), (428,345,l), (80,345,l), (80,247,l) ); } ); width = 508; } ); unicode = 45; }, { glyphname = endash; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (485,255,l), (496,335,l), (83,335,l), (72,255,l) ); } ); width = 555; } ); unicode = 8211; }, { glyphname = emdash; lastChange = "2023-08-03 12:47:12 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (816,253,l), (828,333,l), (83,333,l), (71,253,l) ); } ); width = 887; } ); unicode = 8212; }, { glyphname = underscore; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,3); target = (0,2); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (481,0,l), (492,80,l), (6,80,l), (-5,0,l) ); } ); width = 546; }, { associatedMasterId = master01; layerId = "1AB4D43C-2735-4A3F-815D-32BCD16357D5"; name = foreground; shapes = ( { closed = 1; nodes = ( (546,0,l), (546,98,l), (60,98,l), (60,0,l) ); } ); width = 606; } ); unicode = 95; }, { glyphname = parenleft; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (229,-60,l), (233,-58,o), (132,82,o), (169,345,c), (206,607,o), (346,748,o), (343,750,c), (250,750,l), (250,750,o), (116,580,o), (83,345,c), (50,109,o), (136,-60,o), (136,-60,c) ); } ); width = 303; }, { associatedMasterId = master01; layerId = "A003329C-BEC9-4397-9AAD-9155A5EADE70"; name = foreground; shapes = ( { closed = 1; nodes = ( (62,109,o), (172,-60,o), (172,-60,c), (280,-60,l), (283,-58,o), (163,82,o), (163,345,c), (163,607,o), (283,748,o), (280,750,c), (172,750,l), (172,750,o), (62,580,o), (62,345,c) ); } ); width = 313; } ); unicode = 40; }, { glyphname = parenright; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (78,-60,l), (78,-60,o), (212,109,o), (245,345,c), (278,580,o), (192,750,o), (192,750,c), (100,750,l), (97,748,o), (197,607,o), (160,345,c), (123,82,o), (-16,-58,o), (-14,-60,c) ); } ); width = 302; }, { associatedMasterId = master01; layerId = "FEA7CF8C-5847-4A35-8A6B-C76339FB953A"; name = foreground; shapes = ( { closed = 1; nodes = ( (243,580,o), (133,750,o), (133,750,c), (25,750,l), (22,748,o), (142,607,o), (142,345,c), (142,82,o), (22,-58,o), (25,-60,c), (133,-60,l), (133,-60,o), (243,109,o), (243,345,c) ); } ); width = 303; } ); unicode = 41; }, { glyphname = braceleft; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (220,-93,l), (231,-12,l), (209,-12,ls), (189,-12,o), (179,-1,o), (182,24,cs), (211,232,ls), (220,290,o), (199,307,o), (159,316,c), (202,325,o), (227,340,o), (234,395,cs), (264,608,ls), (268,633,o), (281,644,o), (301,644,cs), (323,644,l), (335,725,l), (288,725,ls), (222,725,o), (195,693,o), (186,625,cs), (157,422,ls), (150,371,o), (128,353,o), (76,353,c), (66,278,l), (118,278,o), (134,260,o), (127,209,cs), (99,7,ls), (89,-61,o), (107,-93,o), (173,-93,cs) ); } ); width = 296; } ); unicode = 123; }, { glyphname = braceright; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (27,-93,ls), (93,-93,o), (119,-61,o), (129,7,cs), (157,209,ls), (164,260,o), (186,278,o), (238,278,c), (248,353,l), (196,353,o), (180,371,o), (187,422,cs), (216,625,ls), (225,693,o), (208,725,o), (142,725,cs), (95,725,l), (83,644,l), (105,644,ls), (125,644,o), (136,633,o), (132,608,cs), (102,395,ls), (95,340,o), (116,325,o), (155,316,c), (113,307,o), (88,290,o), (79,232,cs), (50,24,ls), (47,-1,o), (33,-12,o), (13,-12,cs), (-9,-12,l), (-20,-93,l) ); } ); width = 296; } ); unicode = 125; }, { glyphname = bracketleft; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (302,-51,l), (312,25,l), (143,25,l), (235,678,l), (405,678,l), (416,753,l), (166,753,l), (53,-51,l) ); } ); width = 383; } ); unicode = 91; }, { glyphname = bracketright; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (246,-51,l), (359,753,l), (109,753,l), (98,678,l), (268,678,l), (176,25,l), (7,25,l), (-3,-51,l) ); } ); width = 383; } ); unicode = 93; }, { glyphname = quotesinglbase; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = comma; } ); width = 274; } ); unicode = 8218; }, { glyphname = quotedblbase; lastChange = "2023-08-03 12:46:44 +0000"; layers = ( { layerId = master01; shapes = ( { pos = (183,0); ref = comma; }, { ref = comma; } ); width = 463; } ); unicode = 8222; }, { glyphname = quotedblleft; lastChange = "2023-08-03 12:47:07 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (385,467,o), (416,495,o), (422,537,cs), (428,574,o), (405,601,o), (367,601,cs), (364,601,o), (359,601,o), (357,600,c), (367,672,o), (443,687,o), (443,687,c), (443,687,o), (449,720,o), (448,720,cs), (344,720,o), (291,621,o), (281,553,c), (275,512,o), (290,467,o), (346,467,cs) ); }, { closed = 1; nodes = ( (192,467,o), (223,495,o), (229,537,cs), (235,574,o), (212,601,o), (174,601,cs), (171,601,o), (166,601,o), (164,600,c), (174,672,o), (250,687,o), (250,687,c), (250,687,o), (256,720,o), (255,720,cs), (151,720,o), (98,621,o), (88,553,c), (82,512,o), (97,467,o), (153,467,cs) ); } ); width = 432; } ); unicode = 8220; }, { glyphname = quotedblright; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (378,472,o), (431,571,o), (442,639,c), (447,680,o), (432,725,o), (376,725,cs), (337,725,o), (306,697,o), (300,655,cs), (295,618,o), (317,591,o), (355,591,cs), (358,591,o), (363,591,o), (365,592,c), (355,520,o), (279,505,o), (279,505,c), (279,505,o), (273,472,o), (274,472,cs) ); }, { closed = 1; nodes = ( (185,472,o), (238,571,o), (249,639,c), (254,680,o), (239,725,o), (183,725,cs), (144,725,o), (113,697,o), (107,655,cs), (102,618,o), (124,591,o), (162,591,cs), (165,591,o), (170,591,o), (172,592,c), (162,520,o), (86,505,o), (86,505,c), (86,505,o), (80,472,o), (81,472,cs) ); } ); width = 432; } ); unicode = 8221; }, { glyphname = quoteleft; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (194,467,o), (229,502,o), (234,537,cs), (239,570,o), (212,601,o), (179,601,cs), (176,601,o), (171,601,o), (169,600,c), (179,672,o), (255,687,o), (255,687,c), (255,687,o), (261,720,o), (260,720,cs), (156,720,o), (103,621,o), (93,553,c), (87,512,o), (102,467,o), (158,467,cs) ); } ); width = 244; } ); unicode = 8216; }, { glyphname = quoteright; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (184,467,o), (237,566,o), (248,634,c), (254,675,o), (238,720,o), (182,720,cs), (146,720,o), (111,685,o), (106,650,cs), (102,617,o), (128,586,o), (161,586,cs), (164,586,o), (169,586,o), (171,587,c), (161,515,o), (85,500,o), (85,500,c), (85,500,o), (79,467,o), (80,467,cs) ); } ); width = 244; } ); unicode = 8217; }, { glyphname = guillemetleft; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (613,120,l), (387,287,l), (660,454,l), (672,544,l), (315,325,l), (304,249,l), (600,30,l) ); }, { closed = 1; nodes = ( (357,121,l), (131,288,l), (404,455,l), (416,545,l), (59,326,l), (48,250,l), (344,31,l) ); } ); width = 687; } ); unicode = 171; }, { glyphname = guillemetright; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (639,250,l), (650,326,l), (353,545,l), (341,455,l), (566,288,l), (294,121,l), (281,31,l) ); }, { closed = 1; nodes = ( (383,249,l), (394,325,l), (97,544,l), (85,454,l), (310,287,l), (38,120,l), (25,30,l) ); } ); width = 687; } ); unicode = 187; }, { glyphname = guilsinglleft; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (327,121,l), (127,288,l), (374,455,l), (386,545,l), (59,326,l), (48,250,l), (314,31,l) ); } ); width = 401; } ); unicode = 8249; }, { glyphname = guilsinglright; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (353,250,l), (364,326,l), (97,545,l), (85,455,l), (284,288,l), (38,121,l), (25,31,l) ); } ); width = 401; } ); unicode = 8250; }, { glyphname = quotedbl; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (350,465,l), (363,499,o), (416,621,o), (421,658,c), (427,696,o), (403,720,o), (372,720,cs), (339,720,o), (309,696,o), (303,658,c), (298,621,o), (318,499,o), (321,465,c) ); }, { closed = 1; nodes = ( (184,465,l), (197,499,o), (250,621,o), (255,658,c), (261,696,o), (237,720,o), (206,720,cs), (173,720,o), (143,696,o), (137,658,c), (132,621,o), (152,499,o), (155,465,c) ); } ); width = 444; }, { associatedMasterId = master01; layerId = "24C34471-2878-49D9-AC64-055C689381E7"; name = foreground; shapes = ( { closed = 1; nodes = ( (354,459,l), (387,579,o), (401,624,o), (401,651,cs), (401,689,o), (371,721,o), (335,721,cs), (298,721,o), (266,689,o), (266,651,cs), (266,625,o), (280,579,o), (314,459,c) ); }, { closed = 1; nodes = ( (153,459,l), (186,579,o), (200,624,o), (200,651,cs), (200,689,o), (170,721,o), (134,721,cs), (97,721,o), (65,689,o), (65,651,cs), (65,625,o), (79,579,o), (113,459,c) ); } ); width = 473; } ); unicode = 34; }, { glyphname = quotesingle; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (184,465,l), (197,499,o), (250,621,o), (255,658,c), (261,696,o), (237,720,o), (206,720,cs), (173,720,o), (143,696,o), (137,658,c), (132,621,o), (152,499,o), (155,465,c) ); } ); width = 278; }, { associatedMasterId = master01; layerId = "9EC1078A-27A8-4ABD-A85E-C1F27DFD7ADE"; name = foreground; shapes = ( { closed = 1; nodes = ( (158,459,l), (191,579,o), (205,624,o), (205,651,cs), (205,689,o), (175,721,o), (139,721,cs), (102,721,o), (70,689,o), (70,651,cs), (70,625,o), (84,579,o), (118,459,c) ); } ); width = 282; } ); unicode = 39; }, { glyphname = at; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (583,-151,o), (661,-112,o), (765,-56,c), (736,8,l), (645,-45,o), (562,-77,o), (456,-77,cs), (243,-77,o), (142,84,o), (169,281,cs), (197,478,o), (344,638,o), (557,638,cs), (766,638,o), (858,512,o), (835,348,cs), (823,264,o), (782,149,o), (698,149,cs), (672,149,o), (648,171,o), (655,207,c), (731,502,l), (653,502,l), (632,419,l), (623,479,o), (570,512,o), (517,512,cs), (388,512,o), (301,402,o), (272,294,cs), (240,169,o), (287,67,o), (400,67,cs), (458,67,o), (536,99,o), (568,144,c), (575,103,o), (607,67,o), (675,67,cs), (840,67,o), (905,249,o), (919,348,cs), (946,539,o), (846,712,o), (567,712,cs), (288,712,o), (118,512,o), (85,279,cs), (54,57,o), (166,-151,o), (446,-151,cs) ); }, { closed = 1; nodes = ( (352,144,o), (335,218,o), (354,292,cs), (373,366,o), (429,437,o), (509,437,cs), (590,437,o), (610,362,o), (591,288,cs), (572,214,o), (517,144,o), (434,144,cs) ); } ); width = 977; } ); unicode = 64; }, { glyphname = ampersand; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,38); target = (1,9); type = Stem; }, { horizontal = 1; origin = (2,5); target = (0,26); type = Stem; }, { horizontal = 1; origin = (0,5); target = (0,9); type = Stem; }, { origin = (0,35); target = (1,2); type = Stem; }, { origin = (2,8); target = (0,23); type = Stem; }, { origin = (0,16); target = (0,15); type = Stem; }, { origin = (0,29); target = (2,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (326,-12,o), (386,15,o), (436,70,c), (472,17,o), (515,0,o), (573,0,cs), (580,0,o), (580,0,o), (589,0,c), (599,70,l), (537,70,o), (517,85,o), (486,128,c), (524,182,o), (561,262,o), (572,332,c), (500,332,l), (493,285,o), (470,226,o), (443,186,c), (338,359,l), (443,423,o), (505,478,o), (517,564,cs), (525,623,o), (484,714,o), (376,713,cs), (261,712,o), (188,629,o), (177,549,cs), (168,486,o), (203,410,o), (233,372,c), (132,316,o), (77,261,o), (63,168,cs), (48,58,o), (118,-12,o), (248,-12,cs) ); }, { closed = 1; nodes = ( (177,66,o), (134,115,o), (143,179,cs), (151,235,o), (200,280,o), (269,320,c), (390,127,l), (353,85,o), (310,66,o), (259,66,cs) ); }, { closed = 1; nodes = ( (274,458,o), (247,492,o), (255,551,cs), (262,602,o), (301,641,o), (365,641,cs), (407,641,o), (445,604,o), (438,555,cs), (431,503,o), (394,468,o), (302,412,c) ); } ); width = 668; }, { associatedMasterId = master01; layerId = "BC46DC87-AB29-432C-8E82-6AD56269F461"; name = foreground; shapes = ( { closed = 1; nodes = ( (506,-1,l), (628,-1,l), (311,350,l), (259,405,o), (185,460,o), (185,534,c), (185,582,o), (210,640,o), (286,640,cs), (344,640,o), (381,596,o), (381,547,cs), (381,495,o), (339,466,o), (265,418,c), (130,341,o), (50,284,o), (50,177,c), (50,54,o), (155,-11,o), (284,-11,c), (492,-11,o), (570,203,o), (575,333,c), (486,333,l), (486,196,o), (382,79,o), (284,79,c), (204,79,o), (144,107,o), (144,180,c), (144,277,o), (257,312,o), (352,378,c), (417,423,o), (470,481,o), (470,560,c), (470,619,o), (414,713,o), (287,713,c), (150,713,o), (89,621,o), (89,541,c), (89,471,o), (117,424,o), (211,323,c) ); } ); width = 648; } ); unicode = 38; }, { glyphname = paragraph; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = top; pos = (477,712); } ); hints = ( { horizontal = 1; origin = (0,13); target = (1,3); type = Stem; }, { horizontal = 1; origin = (0,6); target = (1,0); type = Stem; }, { horizontal = 1; origin = (0,13); target = (0,2); type = Stem; }, { origin = (1,2); target = (0,0); type = Stem; }, { origin = (1,2); target = (0,2); type = Stem; }, { origin = (1,3); target = (0,2); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (568,0,l), (579,76,l), (460,76,l), (537,624,l), (656,624,l), (666,700,l), (287,700,ls), (205,700,o), (114,637,o), (100,535,cs), (85,429,o), (159,371,o), (241,371,c), (189,0,l) ); }, { closed = 1; nodes = ( (365,624,l), (449,624,l), (371,74,l), (287,74,l) ); } ); width = 668; } ); unicode = 182; }, { glyphname = section; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (390,62,o), (468,130,o), (480,211,cs), (507,404,o), (198,430,o), (214,542,cs), (220,584,o), (258,624,o), (323,624,cs), (395,624,o), (428,588,o), (423,555,c), (509,555,l), (518,617,o), (479,700,o), (334,700,cs), (212,700,o), (140,612,o), (130,539,cs), (102,345,o), (413,344,o), (395,211,cs), (387,161,o), (334,120,o), (292,114,c), (298,53,l) ); }, { closed = 1; nodes = ( (333,-230,o), (405,-142,o), (415,-69,cs), (442,125,o), (132,126,o), (150,259,cs), (157,309,o), (211,350,o), (253,356,c), (246,417,l), (155,408,o), (77,340,o), (65,259,cs), (38,66,o), (346,40,o), (331,-72,cs), (325,-114,o), (287,-154,o), (222,-154,cs), (150,-154,o), (117,-118,o), (122,-85,c), (36,-85,l), (27,-147,o), (66,-230,o), (211,-230,cs) ); } ); width = 549; } ); unicode = 167; }, { glyphname = copyright; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (592,-12,o), (745,164,o), (771,353,cs), (798,544,o), (695,720,o), (469,720,cs), (243,720,o), (90,544,o), (63,353,cs), (37,164,o), (140,-12,o), (366,-12,cs) ); }, { closed = 1; nodes = ( (461,151,o), (525,188,o), (560,252,c), (502,274,l), (481,237,o), (450,222,o), (402,222,c), (333,222,o), (306,274,o), (317,353,cs), (328,428,o), (365,483,o), (439,483,c), (487,483,o), (514,468,o), (524,430,c), (589,453,l), (572,517,o), (519,554,o), (451,554,c), (355,554,o), (259,477,o), (241,351,cs), (224,228,o), (298,151,o), (394,151,c) ); }, { closed = 1; nodes = ( (221,64,o), (120,184,o), (143,353,cs), (167,518,o), (301,644,o), (458,644,cs), (615,644,o), (715,518,o), (691,353,cs), (668,184,o), (533,64,o), (377,64,cs) ); } ); width = 806; } ); unicode = 169; }, { glyphname = registered; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (570,126,o), (694,269,o), (715,422,cs), (737,577,o), (653,720,o), (470,720,cs), (287,720,o), (163,577,o), (141,422,cs), (120,269,o), (204,126,o), (387,126,cs) ); }, { closed = 1; nodes = ( (275,199,o), (197,291,o), (215,422,cs), (233,551,o), (338,646,o), (460,646,cs), (582,646,o), (659,551,o), (641,422,cs), (623,291,o), (519,199,o), (397,199,cs) ); }, { closed = 1; nodes = ( (365,279,l), (380,386,l), (409,386,l), (458,279,l), (528,279,l), (471,396,l), (500,407,o), (531,435,o), (538,487,cs), (545,534,o), (511,571,o), (451,571,cs), (345,571,l), (304,279,l) ); }, { closed = 1; nodes = ( (398,517,l), (431,517,ls), (466,517,o), (481,505,o), (478,482,c), (473,452,o), (455,443,o), (420,443,cs), (387,443,l) ); } ); width = 808; } ); unicode = 174; }, { glyphname = trademark; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (1,4); target = (1,5); type = Stem; }, { origin = (1,7); target = (1,0); type = Stem; }, { horizontal = 1; origin = (0,12); target = (0,11); type = Stem; }, { origin = (0,12); target = (0,0); type = Stem; }, { place = (1135,53); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (444,319,l), (479,573,l), (548,353,l), (589,353,l), (720,573,l), (685,319,l), (755,319,l), (808,700,l), (723,700,l), (586,471,l), (512,700,l), (427,700,l), (374,319,l) ); }, { closed = 1; nodes = ( (212,319,l), (257,640,l), (364,640,l), (372,700,l), (91,700,l), (83,640,l), (187,640,l), (142,319,l) ); } ); width = 773; } ); unicode = 8482; }, { glyphname = degree; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (402,471,o), (454,531,o), (463,595,cs), (473,661,o), (437,720,o), (360,720,cs), (284,720,o), (232,661,o), (222,595,cs), (213,531,o), (249,471,o), (325,471,cs) ); }, { closed = 1; nodes = ( (301,535,o), (280,560,o), (284,595,cs), (289,630,o), (318,656,o), (351,656,cs), (385,656,o), (406,630,o), (401,595,cs), (397,560,o), (368,535,o), (334,535,cs) ); } ); width = 600; } ); unicode = 176; }, { glyphname = bar; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (148,-12,l), (251,720,l), (163,720,l), (60,-12,l) ); } ); width = 282; } ); unicode = 124; }, { glyphname = cent; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (356,95,o), (440,143,o), (487,226,c), (415,256,l), (387,205,o), (339,171,o), (279,171,c), (178,171,o), (139,255,o), (153,359,cs), (168,463,o), (230,544,o), (331,544,c), (391,544,o), (430,510,o), (443,459,c), (524,489,l), (500,572,o), (432,620,o), (344,620,c), (218,620,o), (92,520,o), (69,356,cs), (46,195,o), (144,95,o), (270,95,c) ); }, { closed = 1; nodes = ( (306,0,l), (327,152,l), (247,152,l), (226,0,l) ); }, { closed = 1; nodes = ( (377,548,l), (398,700,l), (318,700,l), (297,548,l) ); } ); width = 563; }, { associatedMasterId = master01; layerId = "67A10FD7-782D-4391-978E-3D650EA85A7F"; name = foreground; width = 563; } ); unicode = 162; }, { glyphname = dollar; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (442,-12,o), (565,58,o), (584,195,c), (605,340,o), (510,370,o), (384,395,c), (294,413,o), (196,433,o), (208,521,cs), (218,591,o), (301,632,o), (376,632,cs), (476,632,o), (518,572,o), (520,513,c), (622,513,l), (630,603,o), (567,712,o), (394,712,c), (229,712,o), (134,618,o), (119,516,c), (100,380,o), (188,338,o), (295,317,c), (404,300,o), (509,287,o), (495,186,c), (486,114,o), (396,68,o), (308,68,c), (215,70,o), (158,129,o), (156,214,c), (53,214,l), (50,99,o), (122,-12,o), (297,-12,c) ); }, { closed = 1; nodes = ( (322,-91,l), (446,791,l), (365,791,l), (241,-91,l) ); } ); width = 643; }, { associatedMasterId = master01; layerId = "B77E3584-C066-4B83-9C04-DBBF2850799D"; name = foreground; shapes = ( { closed = 1; nodes = ( (271,420,o), (184,434,o), (184,522,cs), (184,592,o), (247,626,o), (322,626,cs), (422,626,o), (473,573,o), (483,514,c), (585,514,l), (580,604,o), (502,713,o), (329,713,c), (164,713,o), (82,619,o), (82,517,c), (82,369,o), (176,335,o), (286,314,c), (397,297,o), (492,288,o), (492,187,c), (493,115,o), (422,78,o), (334,78,c), (240,80,o), (175,130,o), (161,215,c), (58,215,l), (71,100,o), (159,-11,o), (334,-11,c), (479,-11,o), (592,59,o), (592,196,c), (592,341,o), (493,377,o), (364,402,c) ); }, { closed = 1; nodes = ( (370,-91,l), (370,791,l), (289,791,l), (289,-91,l) ); } ); width = 643; } ); unicode = 36; }, { glyphname = euro; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (402,-13,o), (499,40,o), (557,121,c), (482,163,l), (440,105,o), (372,67,o), (290,67,cs), (146,67,o), (89,193,o), (112,356,cs), (135,519,o), (227,643,o), (371,643,cs), (453,643,o), (510,605,o), (536,547,c), (623,589,l), (588,670,o), (505,723,o), (382,723,cs), (162,723,o), (48,539,o), (22,355,cs), (-4,171,o), (59,-13,o), (279,-13,cs) ); }, { closed = 1; nodes = ( (427,225,l), (459,305,l), (-43,305,l), (-75,225,l) ); }, { closed = 1; nodes = ( (448,370,l), (479,450,l), (-23,450,l), (-54,370,l) ); } ); width = 600; } ); unicode = 8364; }, { glyphname = sterling; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (306,0,ls), (428,0,o), (495,74,o), (532,158,c), (458,179,l), (435,124,o), (390,80,o), (313,80,cs), (126,80,l), (152,97,o), (235,167,o), (251,278,cs), (268,399,o), (173,440,o), (185,528,cs), (193,584,o), (249,632,o), (327,632,c), (405,632,o), (442,576,o), (434,519,c), (522,519,l), (527,555,o), (523,589,o), (511,615,c), (484,677,o), (417,712,o), (337,712,c), (222,712,o), (116,647,o), (99,528,cs), (83,413,o), (175,381,o), (162,289,cs), (149,192,o), (80,119,o), (21,80,c), (10,0,l) ); }, { closed = 1; nodes = ( (399,281,l), (411,361,l), (77,361,l), (65,281,l) ); } ); width = 568; }, { associatedMasterId = master01; layerId = "39949623-1A73-454F-BBEA-2B76B8F5BB59"; name = foreground; width = 614; } ); unicode = 163; }, { glyphname = yen; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (310,0,l), (350,309,l), (646,700,l), (553,700,l), (319,390,l), (174,700,l), (74,700,l), (268,309,l), (222,0,l) ); }, { closed = 1; nodes = ( (501,163,l), (512,243,l), (80,243,l), (69,163,l) ); }, { closed = 1; nodes = ( (521,308,l), (532,388,l), (100,388,l), (89,308,l) ); } ); width = 594; } ); unicode = 165; }, { glyphname = plus; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (1,3); target = (1,2); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (297,84,l), (357,512,l), (269,512,l), (209,84,l) ); }, { closed = 1; nodes = ( (475,258,l), (486,338,l), (89,338,l), (78,258,l) ); } ); width = 550; }, { associatedMasterId = master01; layerId = "A5CB3561-8809-4C40-98EF-8A07A48E9182"; name = foreground; shapes = ( { closed = 1; nodes = ( (457,249,l), (457,347,l), (60,347,l), (60,249,l) ); }, { closed = 1; nodes = ( (307,512,l), (209,512,l), (209,84,l), (307,84,l) ); } ); width = 517; } ); unicode = 43; }, { glyphname = minus; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (491,255,l), (502,335,l), (73,335,l), (62,255,l) ); } ); width = 550; } ); unicode = 8722; }, { glyphname = multiply; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (279,277,l), (416,118,l), (476,170,l), (338,329,l), (520,488,l), (476,540,l), (293,381,l), (157,540,l), (97,488,l), (234,329,l), (53,170,l), (97,118,l) ); } ); width = 550; } ); unicode = 215; }, { glyphname = divide; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (480,220,l), (491,300,l), (73,300,l), (62,220,l) ); }, { closed = 1; nodes = ( (275,1,o), (307,30,o), (312,64,cs), (317,99,o), (293,128,o), (259,128,cs), (224,128,o), (191,99,o), (186,64,cs), (181,30,o), (206,1,o), (241,1,cs) ); }, { closed = 1; nodes = ( (329,385,o), (361,414,o), (366,448,cs), (371,483,o), (347,512,o), (313,512,cs), (278,512,o), (245,483,o), (240,448,cs), (235,414,o), (260,385,o), (295,385,cs) ); } ); width = 550; } ); unicode = 247; }, { glyphname = equal; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; place = (86,240); target = (0,3); type = Stem; }, { horizontal = 1; origin = (0,3); target = (0,2); type = Stem; }, { origin = (0,3); target = (0,0); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (474,326,l), (485,406,l), (110,406,l), (99,326,l) ); }, { closed = 1; nodes = ( (446,136,l), (457,216,l), (82,216,l), (71,136,l) ); } ); width = 550; }, { associatedMasterId = master01; layerId = "FCFF93B1-7D38-4FD5-A711-74071FE2EC06"; name = foreground; shapes = ( { closed = 1; nodes = ( (443,320,l), (443,418,l), (68,418,l), (68,320,l) ); }, { closed = 1; nodes = ( (443,134,l), (443,232,l), (68,232,l), (68,134,l) ); } ); width = 508; } ); unicode = 61; }, { glyphname = greater; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (502,249,l), (513,325,l), (89,544,l), (77,459,l), (401,287,l), (29,115,l), (17,30,l) ); } ); width = 550; } ); unicode = 62; }, { glyphname = less; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (483,115,l), (159,287,l), (531,459,l), (543,544,l), (59,325,l), (48,249,l), (471,30,l) ); } ); width = 550; } ); unicode = 60; }, { glyphname = asciitilde; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (418,218,o), (461,260,o), (483,292,c), (445,341,l), (429,325,o), (406,292,o), (360,292,cs), (320,292,o), (279,354,o), (214,354,cs), (147,354,o), (98,313,o), (77,281,c), (115,231,l), (132,248,o), (154,281,o), (198,281,cs), (239,281,o), (283,218,o), (359,218,cs) ); } ); width = 550; } ); unicode = 126; }, { glyphname = asciicircum; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (395,699,l), (347,699,l), (101,419,l), (193,419,l), (360,619,l), (470,418,l), (563,418,l) ); } ); width = 600; } ); unicode = 94; }, { glyphname = percent; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { hints = ( { horizontal = 1; origin = (0,0); target = (0,0); type = Stem; }, { horizontal = 1; place = (214,34); type = Stem; }, { horizontal = 1; origin = (1,11); target = (2,11); type = Stem; }, { horizontal = 1; origin = (1,5); target = (2,5); type = Stem; }, { origin = (1,8); target = (2,2); type = Stem; }, { origin = (2,8); target = (1,2); type = Stem; }, { place = (490,111); target = (0,2); type = Stem; }, { place = (722,41); type = Stem; } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (285,0,l), (679,720,l), (601,720,l), (207,0,l) ); }, { closed = 1; nodes = ( (312,391,o), (394,450,o), (409,556,cs), (423,659,o), (362,720,o), (280,720,c), (197,720,o), (115,658,o), (101,555,cs), (86,449,o), (148,391,o), (230,391,c) ); }, { closed = 1; nodes = ( (188,458,o), (168,507,o), (175,555,cs), (182,605,o), (215,652,o), (269,652,c), (321,652,o), (342,606,o), (335,556,cs), (328,509,o), (291,458,o), (240,458,c) ); }, { closed = 1; nodes = ( (693,-9,o), (775,50,o), (790,156,cs), (804,259,o), (743,320,o), (661,320,c), (578,320,o), (496,258,o), (482,155,cs), (467,49,o), (529,-9,o), (611,-9,c) ); }, { closed = 1; nodes = ( (569,58,o), (549,107,o), (556,155,cs), (563,205,o), (596,252,o), (650,252,c), (702,252,o), (723,206,o), (716,156,cs), (709,109,o), (672,58,o), (621,58,c) ); } ); width = 861; }, { associatedMasterId = master01; layerId = "B4672107-219B-492B-AE8A-C8526732ACAF"; name = foreground; shapes = ( { closed = 1; nodes = ( (351,0,l), (644,720,l), (557,720,l), (264,0,l) ); }, { closed = 1; nodes = ( (323,391,o), (397,450,o), (397,556,cs), (397,659,o), (327,720,o), (245,720,c), (162,720,o), (89,658,o), (89,555,cs), (89,449,o), (159,391,o), (241,391,c) ); }, { closed = 1; nodes = ( (295,651,o), (321,605,o), (321,556,cs), (321,510,o), (292,460,o), (242,460,c), (191,460,o), (166,508,o), (166,555,cs), (166,604,o), (191,651,o), (244,651,c) ); }, { closed = 1; nodes = ( (759,-11,o), (833,48,o), (833,154,cs), (833,257,o), (763,318,o), (681,318,c), (598,318,o), (525,256,o), (525,153,cs), (525,47,o), (595,-11,o), (677,-11,c) ); }, { closed = 1; nodes = ( (731,249,o), (757,203,o), (757,154,cs), (757,108,o), (728,58,o), (678,58,c), (627,58,o), (602,106,o), (602,153,cs), (602,202,o), (627,249,o), (680,249,c) ); } ); width = 918; } ); unicode = 37; }, { glyphname = brevecomb_acutecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = brevecomb; }, { pos = (248,201); ref = acutecomb; } ); width = 600; } ); }, { glyphname = brevecomb_gravecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = brevecomb; }, { pos = (125,190); ref = gravecomb; } ); width = 600; } ); }, { glyphname = brevecomb_hookabovecomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (395,739,l), (399,767,l), (441,772,o), (482,802,o), (488,847,cs), (498,918,o), (432,939,o), (354,934,c), (347,881,l), (390,885,o), (432,874,o), (428,847,cs), (424,816,o), (385,805,o), (342,805,c), (333,739,l) ); }, { ref = brevecomb; } ); width = 600; } ); }, { glyphname = brevecomb_tildecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = brevecomb; }, { pos = (0,161); ref = tildecomb; } ); width = 600; } ); }, { glyphname = circumflexcomb_acutecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { pos = (1,0); ref = circumflexcomb; }, { pos = (320,98); ref = acutecomb; } ); width = 420; } ); }, { glyphname = circumflexcomb_gravecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = circumflexcomb; }, { pos = (255,99); ref = gravecomb; } ); width = 420; } ); }, { glyphname = circumflexcomb_hookabovecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = circumflexcomb; }, { pos = (68,142); ref = hookabovecomb; } ); width = 420; } ); }, { glyphname = circumflexcomb_tildecomb; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = circumflexcomb; }, { pos = (-82,182); ref = tildecomb; } ); width = 420; } ); }, { glyphname = dieresiscomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (198,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); }, { pos = (-27,636); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (327,581,o), (354,606,o), (358,636,cs), (362,666,o), (342,691,o), (312,691,cs), (282,691,o), (253,666,o), (249,636,cs), (245,606,o), (267,581,o), (297,581,cs) ); }, { closed = 1; nodes = ( (152,581,o), (179,606,o), (183,636,cs), (187,666,o), (167,691,o), (137,691,cs), (107,691,o), (78,666,o), (74,636,cs), (70,606,o), (92,581,o), (122,581,cs) ); } ); width = 324; } ); unicode = 776; }, { glyphname = dotaccentcomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (111,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); }, { pos = (-27,636); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (151,581,o), (178,606,o), (182,636,cs), (186,666,o), (166,691,o), (136,691,cs), (106,691,o), (77,666,o), (73,636,cs), (69,606,o), (91,581,o), (121,581,cs) ); } ); width = 147; } ); unicode = 775; }, { glyphname = gravecomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (215,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (258,557,l), (196,712,l), (86,712,l), (186,557,l) ); } ); width = 237; } ); unicode = 768; }, { glyphname = acutecomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (93,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (139,557,l), (283,712,l), (173,712,l), (67,557,l) ); } ); width = 237; } ); unicode = 769; }, { glyphname = hungarumlautcomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (290,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (428,557,l), (572,712,l), (452,712,l), (346,557,l) ); }, { closed = 1; nodes = ( (236,557,l), (380,712,l), (260,712,l), (154,557,l) ); } ); width = 600; } ); unicode = 779; }, { glyphname = caroncomb.alt; lastChange = "2023-08-03 12:06:26 +0000"; layers = ( { anchors = ( { name = _topright; pos = (188,720); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (233,529,l), (327,712,l), (220,712,l), (164,529,l) ); } ); width = 320; } ); }, { glyphname = circumflexcomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (248,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (178,557,l), (269,648,l), (334,557,l), (416,557,l), (303,712,l), (253,712,l), (95,557,l) ); } ); width = 420; }, { associatedMasterId = master01; layerId = "20458CA3-7F03-4177-ABD8-708FA8DF63BB"; name = "3 Aug 21, 16:24"; shapes = ( { closed = 1; nodes = ( (104,557,l), (190,557,l), (353,745,l), (267,745,l) ); }, { closed = 1; nodes = ( (216,745,l), (379,557,l), (465,557,l), (302,745,l) ); }, { closed = 1; nodes = ( (104,557,l), (190,557,l), (353,745,l), (267,745,l) ); }, { closed = 1; nodes = ( (216,745,l), (379,557,l), (465,557,l), (302,745,l) ); } ); width = 600; } ); unicode = 770; }, { glyphname = caroncomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (250,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); }, { pos = (-27,636); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (281,557,l), (438,712,l), (356,712,l), (265,621,l), (200,712,l), (117,712,l), (231,557,l) ); } ); width = 420; } ); unicode = 780; }, { glyphname = brevecomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (344,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (445,557,o), (511,631,o), (522,712,c), (450,712,l), (444,668,o), (410,627,o), (359,627,cs), (310,627,o), (287,668,o), (293,712,c), (221,712,l), (210,631,o), (254,557,o), (349,557,cs) ); } ); width = 600; } ); unicode = 774; }, { glyphname = ringcomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (155,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (225,557,o), (269,607,o), (277,660,cs), (284,715,o), (254,764,o), (190,764,cs), (127,764,o), (83,715,o), (76,660,cs), (68,607,o), (98,557,o), (161,557,cs) ); }, { closed = 1; nodes = ( (144,614,o), (128,633,o), (132,660,cs), (135,687,o), (157,707,o), (182,707,c), (208,707,o), (224,687,o), (221,660,cs), (217,633,o), (195,614,o), (169,614,cs) ); } ); width = 237; } ); unicode = 778; }, { glyphname = tildecomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (336,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); }, { pos = (-26,636); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (468,574,o), (508,614,o), (526,643,c), (495,688,l), (481,673,o), (461,644,o), (423,644,cs), (389,644,o), (340,702,o), (297,702,cs), (243,702,o), (202,662,o), (184,633,c), (216,588,l), (229,603,o), (249,632,o), (287,632,cs), (321,632,o), (371,574,o), (414,574,cs) ); } ); width = 600; } ); unicode = 771; }, { glyphname = macroncomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (338,512); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); }, { pos = (-27,636); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (500,599,l), (510,673,l), (211,673,l), (201,599,l) ); } ); width = 600; } ); unicode = 772; }, { glyphname = hookabovecomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (327,500); } ); guides = ( { pos = (-27,712); }, { pos = (-22,557); }, { pos = (-27,636); }, { pos = (-27,762); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (371,557,l), (375,586,l), (419,591,o), (460,622,o), (467,668,cs), (477,740,o), (409,762,o), (329,757,c), (322,703,l), (366,707,o), (409,695,o), (405,668,cs), (400,636,o), (361,625,o), (317,625,c), (307,557,l) ); } ); width = 600; } ); unicode = 777; }, { glyphname = commaturnedabovecomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _top; pos = (357,512); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (393,555,o), (421,584,o), (425,612,cs), (429,638,o), (407,664,o), (380,664,cs), (379,664,o), (374,664,o), (372,663,c), (380,721,o), (442,733,o), (442,733,c), (442,733,o), (447,760,o), (446,760,cs), (377,760,o), (320,705,o), (309,625,cs), (303,587,o), (327,555,o), (364,555,cs) ); } ); width = 600; } ); unicode = 786; }, { glyphname = dotbelowcomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (40,0); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (45,-174,o), (73,-149,o), (77,-119,cs), (81,-89,o), (61,-64,o), (31,-64,cs), (1,-64,o), (-28,-89,o), (-32,-119,cs), (-36,-149,o), (-15,-174,o), (15,-174,cs) ); } ); width = 149; } ); unicode = 803; }, { glyphname = commaaccentcomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (269,-12); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (242,-284,o), (299,-229,o), (310,-149,cs), (315,-111,o), (292,-79,o), (255,-79,cs), (226,-79,o), (198,-108,o), (194,-136,cs), (190,-162,o), (211,-188,o), (238,-188,cs), (239,-188,o), (244,-188,o), (247,-187,c), (238,-245,o), (177,-257,o), (177,-257,c), (177,-257,o), (172,-284,o), (173,-284,cs) ); } ); width = 600; } ); unicode = 806; }, { glyphname = cedillacomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (255,2); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (289,-207,o), (339,-172,o), (346,-123,cs), (354,-66,o), (300,-33,o), (251,-46,c), (294,8,l), (232,8,l), (177,-63,l), (214,-103,l), (219,-98,o), (235,-89,o), (253,-89,cs), (281,-89,o), (293,-99,o), (290,-119,cs), (287,-138,o), (269,-148,o), (239,-148,cs), (208,-148,o), (189,-126,o), (181,-113,c), (138,-157,l), (155,-185,o), (192,-207,o), (237,-207,cs) ); } ); width = 600; } ); unicode = 807; }, { glyphname = ogonekcomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _ogonek; pos = (321,0); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (315,-230,o), (347,-226,o), (366,-215,c), (375,-145,l), (332,-166,o), (279,-157,o), (287,-101,cs), (291,-68,o), (323,-24,o), (366,0,c), (283,0,l), (261,-12,o), (216,-66,o), (209,-116,cs), (201,-173,o), (231,-230,o), (302,-230,cs) ); } ); width = 600; } ); unicode = 808; }, { glyphname = macronbelowcomb; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (278,-12); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (427,-159,l), (437,-85,l), (98,-85,l), (88,-159,l) ); } ); width = 600; } ); unicode = 817; }, { glyphname = commaaccentcomb.loclMAH; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { anchors = ( { name = _bottom; pos = (275,2); } ); layerId = master01; shapes = ( { closed = 1; nodes = ( (289,-207,o), (339,-172,o), (346,-119,cs), (354,-66,o), (313,-41,o), (267,-41,cs), (248,-41,o), (236,-43,o), (224,-46,c), (231,-93,l), (237,-91,o), (245,-89,o), (253,-89,cs), (281,-89,o), (293,-99,o), (290,-118,cs), (287,-138,o), (269,-148,o), (244,-148,cs), (208,-148,o), (189,-126,o), (181,-113,c), (138,-157,l), (155,-185,o), (192,-207,o), (237,-207,cs) ); } ); width = 600; } ); }, { glyphname = dieresis; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = dieresiscomb; } ); width = 324; } ); unicode = 168; }, { glyphname = dotaccent; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = dotaccentcomb; } ); width = 147; } ); unicode = 729; }, { glyphname = grave; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { pos = (-35,0); ref = gravecomb; slant = (8,0); } ); width = 237; } ); unicode = 96; }, { glyphname = acute; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = acutecomb; } ); width = 237; } ); unicode = 180; }, { glyphname = hungarumlaut; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = hungarumlautcomb; } ); width = 600; } ); unicode = 733; }, { glyphname = circumflex; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = circumflexcomb; } ); width = 420; } ); unicode = 710; }, { glyphname = caron; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = caroncomb; } ); width = 420; } ); unicode = 711; }, { glyphname = breve; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = brevecomb; } ); width = 600; } ); unicode = 728; }, { glyphname = ring; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = ringcomb; } ); width = 237; } ); unicode = 730; }, { glyphname = tilde; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { pos = (-35,0); ref = tildecomb; slant = (8,0); } ); width = 600; } ); unicode = 732; }, { glyphname = macron; lastChange = "2023-08-03 09:41:05 +0000"; layers = ( { layerId = master01; shapes = ( { closed = 1; nodes = ( (488,640,l), (499,720,l), (169,720,l), (158,640,l) ); } ); width = 536; } ); unicode = 175; }, { glyphname = cedilla; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = cedillacomb; } ); width = 600; } ); unicode = 184; }, { glyphname = ogonek; lastChange = "2023-07-09 23:04:31 +0000"; layers = ( { layerId = master01; shapes = ( { ref = ogonekcomb; } ); width = 600; } ); unicode = 731; } ); instances = ( { instanceInterpolations = { master01 = 1; }; isItalic = 1; name = Italic; } ); kerningLTR = { master01 = { "@MMK_L_A" = { "@MMK_R_V" = -55; "@MMK_R_z" = 30; asterisk = -48; quotedbl = -54; quotedblleft = -40; quotedblright = -45; quoteright = -50; quotesingle = -54; }; "@MMK_L_F" = { "@MMK_R_A" = -65; quoteright = 30; }; "@MMK_L_H" = { period = 0; }; "@MMK_L_I" = { "@MMK_R_T" = 57; }; "@MMK_L_L" = { "@MMK_R_V" = -55; "@MMK_R_Y" = -60; emdash = -80; }; "@MMK_L_T" = { "@MMK_R_c" = -40; "@MMK_R_f" = -25; "@MMK_R_g" = -40; "@MMK_R_id" = 57; "@MMK_R_n" = -20; "@MMK_R_p" = -30; "@MMK_R_q" = -40; "@MMK_R_r" = -34; "@MMK_R_w" = -20; "@MMK_R_x" = -25; hyphen = -30; icircumflex = 20; igrave = 60; }; "@MMK_L_V" = { "@MMK_R_A" = -50; "@MMK_R_a" = -33; "@MMK_R_o" = -28; colon = -32; hyphen = -50; }; "@MMK_L_W" = { "@MMK_R_a" = -10; "@MMK_R_o" = -22; }; "@MMK_L_Y" = { "@MMK_R_a" = -50; "@MMK_R_c" = -50; "@MMK_R_e" = -50; "@MMK_R_g" = -54; "@MMK_R_o" = -50; "@MMK_R_p" = -20; "@MMK_R_r" = -30; "@MMK_R_u" = -30; hyphen = -60; period = -40; quotedblbase = -40; }; "@MMK_L_a" = { "@MMK_R_l" = -30; }; "@MMK_L_e" = { "@MMK_R_Y" = -50; }; "@MMK_L_f" = { braceright = 76; bracketright = 71; parenright = 65; quotedblright = 54; quoteleft = 30; quoteright = 64; }; "@MMK_L_g" = { "@MMK_R_h" = -25; }; "@MMK_L_l" = { "@MMK_R_c" = -42; "@MMK_R_w" = 0; "@MMK_R_y" = -26; }; "@MMK_L_lcaron" = { "@MMK_R_l" = 60; }; "@MMK_L_n" = { period = -54; }; "@MMK_L_o" = { "@MMK_R_T" = 0; "@MMK_R_d" = 17; T = 0; quoteright = -20; }; "@MMK_L_p" = { "@MMK_R_l" = -30; }; "@MMK_L_r" = { comma = -59; period = -90; }; "@MMK_L_w" = { "@MMK_R_l" = 0; }; "@MMK_L_y" = { comma = -70; period = -80; }; A = { Y = -45; }; T = { "@MMK_R_o" = -55; a = -36; e = -58; o = -55; u = -50; }; Y = { A = -53; }; a = { w = -11; }; eight = { seven = -14; }; hyphen = { "@MMK_R_T" = -30; "@MMK_R_Y" = -60; }; iacute = { "@MMK_R_T" = 70; }; icircumflex = { "@MMK_R_T" = 20; }; igrave = { "@MMK_R_T" = -30; }; nine = { four = -44; }; o = { T = -55; }; one = { nine = -32; seven = -15; }; q = { u = -10; }; quotedblleft = { "@MMK_R_A" = -26; }; quoteleft = { "@MMK_R_A" = -50; "@MMK_R_o" = -9; }; r = { t = 23; v = 29; y = 25; }; seven = { four = -38; six = -48; }; t = { y = 24; }; w = { a = -8; }; y = { w = 35; }; zero = { seven = -30; }; }; }; metrics = ( { type = ascender; }, { type = "cap height"; }, { type = "x-height"; }, { type = baseline; }, { type = descender; }, { name = "Overshoot X"; }, { name = "Overshoot Base"; }, { name = "Overshoot Cap"; }, { type = "italic angle"; } ); properties = ( { key = designers; values = ( { language = ENG; value = "Olivia King"; } ); }, { key = copyrights; values = ( { language = ENG; value = "Copyright 2023 The Inclusive Sans Project Authors (https://github.com/LivKing/Inclusive-Sans)"; } ); }, { key = licenses; values = ( { language = ENG; value = "This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL"; } ); }, { key = designerURL; value = "https://www.oliviaking.com/"; }, { key = licenseURL; value = "https://scripts.sil.org/OFL"; }, { key = manufacturerURL; value = "https://www.oliviaking.com/"; }, { key = manufacturers; values = ( { language = dflt; value = "Olivia King"; } ); } ); unitsPerEm = 1000; userData = { GSDimensionPlugin.Dimensions = { master01 = { HH = "80"; HV = "88"; OH = "80"; OV = "92"; nV = "84"; nd = "68"; oH = "76"; oV = "86"; }; }; UFO.lib = { com.defcon.sortDescriptor = ( { allowPseudoUnicode = 0; ascending = "Latin-1"; type = characterSet; } ); com.robofont.generateFeaturesWithFontTools = 0; com.typemytype.robofont.compileSettings.autohint = 1; com.typemytype.robofont.compileSettings.checkOutlines = 0; com.typemytype.robofont.compileSettings.createDummyDSIG = 1; com.typemytype.robofont.compileSettings.decompose = 0; com.typemytype.robofont.compileSettings.generateFormat = 0; com.typemytype.robofont.compileSettings.releaseMode = 0; com.typemytype.robofont.guideline.magnetic.D6N96jJj7E = 5; com.typemytype.robofont.guideline.magnetic.Gbo3EdxKDI = 5; com.typemytype.robofont.guideline.showMeasurements.D6N96jJj7E = 0; com.typemytype.robofont.guideline.showMeasurements.Gbo3EdxKDI = 0; com.typemytype.robofont.italicSlantOffset = 0; com.typemytype.robofont.segmentType = curve; com.typemytype.robofont.shouldAddPointsInSplineConversion = 1; com.typemytype.robofont.smartSets.uniqueKey = "5067957840"; public.postscriptNames = { }; }; UFOFormat = 3; }; versionMajor = 1; versionMinor = 1; } ================================================ FILE: sources/config.yaml ================================================ sources: - InclusiveSans.glyphs - InclusiveSans-Italic.glyphs axisOrder: - wght - ital familyName: "Inclusive Sans" cleanUp: true stat: InclusiveSans[wght].ttf: - name: Weight tag: wght values: - name: Light value: 300 - name: Regular value: 400 linkedValue: 700 flags: 2 - name: Medium value: 500 - name: SemiBold value: 600 - name: Bold value: 700 - name: Italic tag: ital values: - name: Roman value: 0 linkedValue: 1 flags: 2 InclusiveSans-Italic[wght].ttf: - name: Weight tag: wght values: - name: Light value: 300 - name: Regular value: 400 linkedValue: 700 flags: 2 - name: Medium value: 500 - name: SemiBold value: 600 - name: Bold value: 700 - name: Italic tag: ital values: - name: Italic value: 1