From d2454bd570284af8c3a103666458d6cbd69072df Mon Sep 17 00:00:00 2001 From: Dr Anirban Mitra Date: Mon, 7 Oct 2024 20:32:26 +0530 Subject: [PATCH] Initial commit --- .github/workflows/build.yaml | 116 + .gitignore | 40 + .templaterc.json | 3 + AUTHORS.txt | 7 + CONTRIBUTORS.txt | 10 + Makefile | 70 + OFL.txt | 93 + README.md | 103 + documentation/DESCRIPTION.en_us.html | 12 + documentation/image1.png | Bin 0 -> 107572 bytes documentation/image1.py | 137 + documentation/image2.png | Bin 0 -> 216266 bytes documentation/image2.py | 145 + documentation/images-license.txt | 1 + renovate.json | 7 + requirements-test.in | 2 + requirements-test.txt | 2 + requirements.in | 6 + requirements.txt | 2 + scripts/customize.py | 123 + scripts/index.html | 19 + scripts/read-config.py | 45 + scripts/update-custom-filter.py | 8 + sources/CustomFilter_GF_Latin_All.plist | 1297 + sources/RadioCanadaDisplay-Italic.glyphs | 73246 ++++++++++++++++++++ sources/RadioCanadaDisplay.glyphs | 73762 +++++++++++++++++++++ sources/config.yaml | 105 + 27 files changed, 149361 insertions(+) create mode 100644 .github/workflows/build.yaml create mode 100644 .gitignore create mode 100644 .templaterc.json create mode 100644 AUTHORS.txt create mode 100644 CONTRIBUTORS.txt create mode 100644 Makefile create mode 100644 OFL.txt create mode 100644 README.md create mode 100644 documentation/DESCRIPTION.en_us.html create mode 100644 documentation/image1.png create mode 100644 documentation/image1.py create mode 100644 documentation/image2.png create mode 100644 documentation/image2.py create mode 100644 documentation/images-license.txt create mode 100644 renovate.json create mode 100644 requirements-test.in create mode 100644 requirements-test.txt create mode 100644 requirements.in create mode 100644 requirements.txt create mode 100644 scripts/customize.py create mode 100644 scripts/index.html create mode 100644 scripts/read-config.py create mode 100644 scripts/update-custom-filter.py create mode 100644 sources/CustomFilter_GF_Latin_All.plist create mode 100644 sources/RadioCanadaDisplay-Italic.glyphs create mode 100644 sources/RadioCanadaDisplay.glyphs create mode 100644 sources/config.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 00000000..e11f8936 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,116 @@ +name: Build font and specimen + +on: push + +jobs: + build: + name: Build and test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.10 + uses: actions/setup-python@v5 + with: + python-version: "3.10" + - name: Install sys tools/deps + run: | + sudo apt-get update + sudo apt-get install ttfautohint + sudo snap install yq + - uses: actions/cache@v4 + with: + path: ./venv/ + key: ${{ runner.os }}-venv-${{ hashFiles('**/requirements*.txt') }} + restore-keys: | + ${{ runner.os }}-venv- + - 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@v4 + if: ${{ github.ref == 'refs/heads/main' }} + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./out + - name: Archive artifacts + uses: actions/upload-artifact@v4 + with: + name: ${{ env.ZIP_NAME }} + path: | + fonts + out + outputs: + zip_name: ${{ env.ZIP_NAME }} + + # There are two ways a release can be created: either by pushing a tag, or by + # creating a release from the GitHub UI. Pushing a tag does not automatically + # create a release, so we have to do that ourselves. However, creating a + # release from the GitHub UI *does* push a tag, and we don't want to create + # a new release in that case because one already exists! + + release: + name: Create and populate release + needs: build + runs-on: ubuntu-latest + if: contains(github.ref, 'refs/tags/') + env: + ZIP_NAME: ${{ needs.build.outputs.zip_name }} + GH_TOKEN: ${{ github.token }} + steps: + - uses: actions/checkout@v4 + - name: Download font artefact files + uses: actions/download-artifact@v4 + with: + name: ${{ env.ZIP_NAME }} + path: ${{ env.ZIP_NAME }} + - name: Copy DESCRIPTION.en_us.html to artefact directory + run: cp documentation/DESCRIPTION.en_us.html ${{ env.ZIP_NAME }}/DESCRIPTION.en_us.html + - name: Copy ARTICLE.en_us.html to artefact directory + run: cp documentation/ARTICLE.en_us.html ${{ env.ZIP_NAME }}/ARTICLE.en_us.html + continue-on-error: true + - name: Copy OFL.txt to artefact directory + run: cp OFL.txt ${{ env.ZIP_NAME }}/OFL.txt + - name: Remove proof/fontbakery stuff from release + run: rm -rf ${{ env.ZIP_NAME }}/out + - name: gen release file name + shell: bash + run: echo "RELEASE_ZIP_NAME=$(echo '${{ github.repository }}' | awk -F '/' '{print $2}')-${{github.ref_name}}" >> $GITHUB_ENV + - name: Create release bundle + run: mv ${{ env.ZIP_NAME }} ${{ env.RELEASE_ZIP_NAME }}; zip -r ${{ env.RELEASE_ZIP_NAME }}.zip ${{ env.RELEASE_ZIP_NAME }} + - name: Check for release + id: create_release + run: | + if ! gh release view ${{ github.ref_name }}; then + git show -s --format=%B ${{ github.ref_name }} | tail -n +4 | gh release create ${{ github.ref_name }} -t ${{ github.ref_name }} -F - + fi + - name: Populate release + run: | + gh release upload ${{ github.ref_name }} ${{ env.RELEASE_ZIP_NAME }}.zip --clobber + - name: Set release live + run: | + gh release edit ${{ github.ref_name }} --draft=false \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..fa16d1ac --- /dev/null +++ b/.gitignore @@ -0,0 +1,40 @@ +*~ +venv +venv-test +build.stamp +proof +fonts +node_modules +package-lock.json +package.json +master_ufo +instance_ufos +.ninja_log +build.ninja + +# OS generated files # +###################### +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Autosaved by application when editing +###################### +*(تم الحفظ تلقائيًا).* +*(automaticky uloženo).* +*(Automatisch gesichert).* +*(Autosaved).* +*(guardado automáticamente).* +*(enregistré automatiquement).* +*(salvato automaticamente).* +*(自動保存).* +*(자동 저장됨).* +*(Salvo Automaticamente).* +*(Автосохранение).* +*(Otomatik Kaydedildi).* +*(自动存储).* +*(已自動儲存).* diff --git a/.templaterc.json b/.templaterc.json new file mode 100644 index 00000000..6174e0a7 --- /dev/null +++ b/.templaterc.json @@ -0,0 +1,3 @@ +{ + "files": [".github/**/*", "Makefile", "scripts/**/*", "requirements.txt"] +} diff --git a/AUTHORS.txt b/AUTHORS.txt new file mode 100644 index 00000000..5fb66c6e --- /dev/null +++ b/AUTHORS.txt @@ -0,0 +1,7 @@ +# This is the official list of project authors for copyright purposes. The first name in the list (if there are several authors), will appear as "Principal design" in the "about" section of the font specimen on Google Fonts. +# 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 + diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt new file mode 100644 index 00000000..a2882835 --- /dev/null +++ b/CONTRIBUTORS.txt @@ -0,0 +1,10 @@ +# 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 diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..91972fef --- /dev/null +++ b/Makefile @@ -0,0 +1,70 @@ +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 + +venv-test: venv-test/touchfile + +customize: venv + . venv/bin/activate; python3 scripts/customize.py + +build.stamp: venv sources/config.yaml $(SOURCES) + rm -rf fonts + (for config in sources/config*.yaml; do . venv/bin/activate; gftools builder $$config; done) && touch build.stamp + +venv/touchfile: requirements.txt + test -d venv || python3 -m venv venv + . venv/bin/activate; pip install -Ur requirements.txt + touch venv/touchfile + +venv-test/touchfile: requirements-test.txt + test -d venv-test || python3 -m venv venv-test + . venv-test/bin/activate; pip install -Ur requirements-test.txt + touch venv-test/touchfile + +test: venv-test build.stamp + TOCHECK=$$(find fonts/variable -type f 2>/dev/null); if [ -z "$$TOCHECK" ]; then TOCHECK=$$(find fonts/ttf -type f 2>/dev/null); fi ; . venv-test/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 $$TOCHECK || 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 + TOCHECK=$$(find fonts/variable -type f 2>/dev/null); if [ -z "$$TOCHECK" ]; then TOCHECK=$$(find fonts/ttf -type f 2>/dev/null); fi ; . venv/bin/activate; mkdir -p out/ out/proof; diffenator2 proof $$TOCHECK -o out/proof + +images: venv $(DRAWBOT_OUTPUT) + +%.png: %.py build.stamp + . venv/bin/activate; python3 $< --output $@ + +clean: + rm -rf venv + find . -name "*.pyc" -delete + +update-project-template: + npx update-template https://github.com/googlefonts/googlefonts-project-template/ + +update: venv venv-test + venv/bin/pip install --upgrade pip-tools + # See https://pip-tools.readthedocs.io/en/latest/#a-note-on-resolvers for + # the `--resolver` flag below. + venv/bin/pip-compile --upgrade --verbose --resolver=backtracking requirements.in + venv/bin/pip-sync requirements.txt + + venv-test/bin/pip install --upgrade pip-tools + venv-test/bin/pip-compile --upgrade --verbose --resolver=backtracking requirements-test.in + venv-test/bin/pip-sync requirements-test.txt + + git commit -m "Update requirements" requirements.txt requirements-test.txt + git push diff --git a/OFL.txt b/OFL.txt new file mode 100644 index 00000000..2b28cf98 --- /dev/null +++ b/OFL.txt @@ -0,0 +1,93 @@ +Copyright 20** The My Font Project Authors (https://github.com/googlefonts/googlefonts-project-template) + +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://openfontlicense.org + + +----------------------------------------------------------- +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. diff --git a/README.md b/README.md new file mode 100644 index 00000000..ea9d40f4 --- /dev/null +++ b/README.md @@ -0,0 +1,103 @@ +---- + +## Setting up your font + +### New repositories + +1. Hit the green button above ("Use this template") to create your own repository. + +2. Clone the repository, and replace the font sources in the `sources` directory with your own font sources. These sources may be either in Glyphs format or UFO/Designspace formats.\ +\ +Unlike many open source distributors, Google Fonts is **curated**. Fonts shipped to the platform have to match the [Google Fonts Specifications](https://github.com/googlefonts/gf-docs/tree/main/Spec). Please read them carefully.\ +\ +*(The sample font provided in this template is [Radio Canada](https://github.com/googlefonts/radiocanadadisplay/) by Charles Daoud, Etienne Aubert Bonn, Alexandre Saumier Demers and contributors.)* + +3. Then reference the sources in the file `sources/config.yaml`, as well as making any other changes you would like to make based on the instructions in the [Google Fonts Builder documentation](https://github.com/googlefonts/gftools/blob/main/Lib/gftools/builder/__init__.py). + +4. Add yourself to the `AUTHORS.txt` and `CONTRIBUTORS.txt` files. + +5. Fill out `documentation/DESCRIPTION.en_us.html` with a description about your font. + +6. Rewrite this Readme file according to the recommendations in the [Google Fonts Guide](https://googlefonts.github.io/gf-guide/readmefile.html). + +7. Add and commit these files to git. + +8. **At the command line, run `make customize` to ensure that all the paths and URLs in your project are correct**. This will also push your changes to GitHub. + +9. **Set up your GitHub pages site**: go to Settings > Pages and ensure that the "Source" drop-down is set to "Deploy from a Branch". Ensure that the "Branch" is set to `gh-pages`. If this branch is not available, check that the "Build font and specimen" action in the "Actions" tab has completed; if it completed successfully, then try again - `gh-pages` should now be an option. + +10. If Github Actions has successfully built the family, you will find the font binaries in the Actions tab. The official Github Actions documentation provides further [information](https://docs.github.com/en/actions/managing-workflow-runs/downloading-workflow-artifacts). + + +### Updating a repository + +1. To update your font repository to bring in the latest best-practices from the Google Fonts Project Template, run `make update-project-template` from the command line. This requires the `node` Javascript engine to be installed; if you don't have that already, [follow these instructions](https://nodejs.org/en/download/package-manager#macos) to install on your platform. + +2. To update the Python build chain which builds your fonts, run `make update` and `git add`/`git commit` the new `requirements.txt`. + +## More things to do + +* `CustomFilter_GF_Latin_All.plist` in `sources` is practical if you use GlyphsApp, you can remove it otherwise. Placed in the same directory as the your `.glyphs` file, it will allow Glyphs to display a filter list for all GF Latin glyphsets in app. To make sure your font supports the minimal set required by Google Fonts, look at the `GF_Latin_Core` filter list. Find other glyphsets and list formats for different software in [GF Glyphsets repository](https://github.com/googlefonts/glyphsets/tree/main/GF_glyphsets). + +* Once you are happy with your font, add promotional assets in the documentation directory. Make it different from the pic you use in this README. You can get inspired by existing tweet @googlefonts like: https://twitter.com/googlefonts/status/1415562928657416192. + +* Google Fonts uses Github Releases to manage font families. If you feel your font project has hit a milestone, you must create a new release for it. In order to do this, go to the releases page and hit the "Draft a new release button". You must provide a tag number and title which can only be a decimal number e.g 0.100, 1.000 etc. For the body text, mention what has changed since the last release. Once you are done, hit the "Publish release" button. Here is an example which fulfills the requirements, https://github.com/m4rc1e/test-ufr-family/releases/tag/2.019. For more info regarding Github release, please see the official Github Release [documentation](https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository). **Please note that Github Actions must be able to build the fonts before you can make a release. Once you have made a release, the fonts and tests assets will be attached to the release automatically. This may take a while since the fonts and tests will be built from scratch so please be patient.** + +---- + + +# My Font + +[![][Fontbakery]](https://googlefonts.github.io/googlefonts-project-template/fontbakery/fontbakery-report.html) +[![][Universal]](https://googlefonts.github.io/googlefonts-project-template/fontbakery/fontbakery-report.html) +[![][GF Profile]](https://googlefonts.github.io/googlefonts-project-template/fontbakery/fontbakery-report.html) +[![][Shaping]](https://googlefonts.github.io/googlefonts-project-template/fontbakery/fontbakery-report.html) + +[Fontbakery]: https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fgooglefonts%2Fgooglefonts-project-template%2Fgh-pages%2Fbadges%2Foverall.json +[GF Profile]: https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fgooglefonts%2Fgooglefonts-project-template%2Fgh-pages%2Fbadges%2FGoogleFonts.json +[Outline Correctness]: https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fgooglefonts%2Fgooglefonts-project-template%2Fgh-pages%2Fbadges%2FOutlineCorrectnessChecks.json +[Shaping]: https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fgooglefonts%2Fgooglefonts-project-template%2Fgh-pages%2Fbadges%2FShapingChecks.json +[Universal]: https://img.shields.io/endpoint?url=https%3A%2F%2Fraw.githubusercontent.com%2Fgooglefonts%2Fgooglefonts-project-template%2Fgh-pages%2Fbadges%2FUniversal.json + +Description of your font goes here. We recommend to start with a very short presentation line (the kind you would use on twitter to present your project for example), and then add as much details as necesary :-) Origin of the project, idea of usage, concept of creation… but also number of masters, axes, character sets, etc. + +Don't hesitate to create images! + +![Sample Image](documentation/image1.png) +![Sample Image](documentation/image2.png) + +## About + +Description of you and/or organisation goes here. + +## 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://yourname.github.io/your-font-repository-name`. + +## 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. diff --git a/documentation/DESCRIPTION.en_us.html b/documentation/DESCRIPTION.en_us.html new file mode 100644 index 00000000..34a7b196 --- /dev/null +++ b/documentation/DESCRIPTION.en_us.html @@ -0,0 +1,12 @@ +

+ Please add a text describing the font here, 100 chracters or more, but no more than 500 words. + See https://googlefonts.github.io/gf-guide/description.html for further reference. + Please make sure that HTML characters are properly encoded. ('&' becomes & etc.) + If unsure, use https://www.freeformatter.com/html-escape.html for formatting. (Use "Escape HTML"). +

+

+ Could be several paragraphs, also. +

+

+ To contribute, see github.com/youruseraccount/yourrepository. +

\ No newline at end of file diff --git a/documentation/image1.png b/documentation/image1.png new file mode 100644 index 0000000000000000000000000000000000000000..ffd1f1a1a649bbc9aed4c44fbbcb0bd0ddce70d0 GIT binary patch literal 107572 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∨bD|Cm`NO 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 A$YTn!3yH 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%0D9r=gc}Dv^sc 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≦LE*|hcy_6xo-{WO{b;6rpm$36&n_?N*!p09@i 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 Bj&A?} literal 0 HcmV?d00001 diff --git a/documentation/image2.py b/documentation/image2.py new file mode 100644 index 00000000..cc6cf755 --- /dev/null +++ b/documentation/image2.py @@ -0,0 +1,145 @@ +# This script is meant to be run from the root level +# of your font's git repository. For example, from a Unix terminal: +# $ git clone my-font +# $ cd my-font +# $ python3 documentation/image1.py --output documentation/image1.png + +# Import moduels from external python packages: https://pypi.org/ +from drawbot_skia.drawbot import * +from fontTools.ttLib import TTFont +from fontTools.misc.fixedTools import floatToFixedToStr + +# Import moduels from the Python Standard Library: https://docs.python.org/3/library/ +import subprocess +import sys +import argparse + +# Constants, these are the main "settings" for the image +WIDTH, HEIGHT, MARGIN, FRAMES = 2048, 1024, 128, 1 +FONT_PATH = "fonts/ttf/RadioCanadaDisplay-Regular.ttf" +FONT_LICENSE = "OFL v1.1" +AUXILIARY_FONT = "Helvetica" +AUXILIARY_FONT_SIZE = 48 + +LINE_ONE = "ABCDEFGHIJKLMNOPQ" +LINE_TWO = "RSTUVWXYZ123456789" +LINE_THREE = "abcdefghijklmnopqrstu" +LINE_FOUR = "vwxyz,.;:!@#$%^&*(){}[]" +BIG_TEXT_FONT_SIZE = 160 +BIG_TEXT_SIDE_MARGIN = MARGIN * 1 +BIG_TEXT_BOTTOM_MARGIN = MARGIN * 5.45 + +GRID_VIEW = False # Toggle this for a grid overlay + +# Handel the "--output" flag +# For example: $ python3 documentation/image1.py --output documentation/image1.png +parser = argparse.ArgumentParser() +parser.add_argument("--output", metavar="PNG", help="where to write the PNG file") +args = parser.parse_args() + +# Load the font with the parts of fonttools that are imported with the line: +# from fontTools.ttLib import TTFont +# Docs Link: https://fonttools.readthedocs.io/en/latest/ttLib/ttFont.html +ttFont = TTFont(FONT_PATH) + +# Constants that are worked out dynamically +MY_URL = subprocess.check_output("git remote get-url origin", shell=True).decode() +MY_HASH = subprocess.check_output("git rev-parse --short HEAD", shell=True).decode() +FONT_NAME = ttFont["name"].getDebugName(4) +FONT_VERSION = "v%s" % floatToFixedToStr(ttFont["head"].fontRevision, 16) + + +# Draws a grid +def grid(): + stroke(1, 0, 0, 0.75) + strokeWidth(2) + STEP_X, STEP_Y = 0, 0 + INCREMENT_X, INCREMENT_Y = MARGIN / 2, MARGIN / 2 + rect(MARGIN, MARGIN, WIDTH - (MARGIN * 2), HEIGHT - (MARGIN * 2)) + for x in range(29): + polygon((MARGIN + STEP_X, MARGIN), (MARGIN + STEP_X, HEIGHT - MARGIN)) + STEP_X += INCREMENT_X + for y in range(29): + polygon((MARGIN, MARGIN + STEP_Y), (WIDTH - MARGIN, MARGIN + STEP_Y)) + STEP_Y += INCREMENT_Y + polygon((WIDTH / 2, 0), (WIDTH / 2, HEIGHT)) + polygon((0, HEIGHT / 2), (WIDTH, HEIGHT / 2)) + + +# Remap input range to VF axis range +# This is useful for animation +# (E.g. sinewave(-1,1) to wght(100,900)) +def remap(value, inputMin, inputMax, outputMin, outputMax): + inputSpan = inputMax - inputMin # FIND INPUT RANGE SPAN + outputSpan = outputMax - outputMin # FIND OUTPUT RANGE SPAN + valueScaled = float(value - inputMin) / float(inputSpan) + return outputMin + (valueScaled * outputSpan) + + +# Draw the page/frame and a grid if "GRID_VIEW" is set to "True" +def draw_background(): + newPage(WIDTH, HEIGHT) + fill(0) + rect(-2, -2, WIDTH + 2, HEIGHT + 2) + if GRID_VIEW: + grid() + else: + pass + + +# Draw main text +def draw_main_text(): + fill(1) + stroke(None) + font(FONT_PATH) + fontSize(BIG_TEXT_FONT_SIZE) + # Adjust this line to center main text manually. + # TODO: This should be done automatically when drawbot-skia + # has support for textBox() and FormattedString + LEADING = 1.2 + text(LINE_ONE, (BIG_TEXT_SIDE_MARGIN, BIG_TEXT_BOTTOM_MARGIN)) + text(LINE_TWO, (BIG_TEXT_SIDE_MARGIN, BIG_TEXT_BOTTOM_MARGIN - (MARGIN * LEADING))) + text(LINE_THREE, (BIG_TEXT_SIDE_MARGIN, BIG_TEXT_BOTTOM_MARGIN - (MARGIN * (LEADING * 2)))) + text(LINE_FOUR, (BIG_TEXT_SIDE_MARGIN, BIG_TEXT_BOTTOM_MARGIN - (MARGIN * (LEADING * 3)))) + + +# Divider lines +def draw_divider_lines(): + stroke(1) + strokeWidth(5) + lineCap("round") + line((MARGIN, HEIGHT - (MARGIN * 1.5)), (WIDTH - MARGIN, HEIGHT - (MARGIN * 1.5))) + line((MARGIN, MARGIN + (MARGIN / 2)), (WIDTH - MARGIN, MARGIN + (MARGIN / 2))) + stroke(None) + + +# Draw text describing the font and it's git status & repo URL +def draw_auxiliary_text(): + # Setup + font(AUXILIARY_FONT) + fontSize(AUXILIARY_FONT_SIZE) + POS_TOP_LEFT = (MARGIN, HEIGHT - MARGIN * 1.25) + POS_TOP_RIGHT = (WIDTH - MARGIN, HEIGHT - MARGIN * 1.25) + POS_BOTTOM_LEFT = (MARGIN, MARGIN) + POS_BOTTOM_RIGHT = (WIDTH - MARGIN * 0.95, MARGIN) + #URL_AND_HASH = "github.com/googlefonts/googlefonts-project-template " + "at commit " + MY_HASH + URL_AND_HASH = MY_URL + "at commit " + MY_HASH + URL_AND_HASH = URL_AND_HASH.replace("\n", " ") + # Draw Text + #text("Your Font Regular", POS_TOP_LEFT, align="left") + text(FONT_NAME, POS_TOP_LEFT, align="left") + text(FONT_VERSION, POS_TOP_RIGHT, align="right") + text(URL_AND_HASH, POS_BOTTOM_LEFT, align="left") + text(FONT_LICENSE, POS_BOTTOM_RIGHT, align="right") + + +# Build and save the image +if __name__ == "__main__": + draw_background() + draw_main_text() + draw_divider_lines() + draw_auxiliary_text() + # Save output, using the "--output" flag location + saveImage(args.output) + # Print done in the terminal + print("DrawBot: Done") diff --git a/documentation/images-license.txt b/documentation/images-license.txt new file mode 100644 index 00000000..d27416f5 --- /dev/null +++ b/documentation/images-license.txt @@ -0,0 +1 @@ +The images in this repository are licensed under the CC https://creativecommons.org/licenses/by-sa/4.0/ \ No newline at end of file diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000..9f96c94f --- /dev/null +++ b/renovate.json @@ -0,0 +1,7 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "rangeStrategy": "bump" +} diff --git a/requirements-test.in b/requirements-test.in new file mode 100644 index 00000000..d3260664 --- /dev/null +++ b/requirements-test.in @@ -0,0 +1,2 @@ +fontbakery[googlefonts]>=0.9.2 +gftools[qa]>=0.9.23 diff --git a/requirements-test.txt b/requirements-test.txt new file mode 100644 index 00000000..161ef17e --- /dev/null +++ b/requirements-test.txt @@ -0,0 +1,2 @@ +# Placeholder file, update the requirements by running `make update`. +-r requirements-test.in diff --git a/requirements.in b/requirements.in new file mode 100644 index 00000000..25d651b1 --- /dev/null +++ b/requirements.in @@ -0,0 +1,6 @@ +fontmake>=3.9.0 +gftools[qa]>=0.9.54 +drawbot-skia>=0.5.0 +sh>=2.0.6 +bumpfontversion>=0.4.1 +diffenator2>=0.3.8 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..5dc91024 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +# Placeholder file, update the requirements by running `make update`. +-r requirements.in diff --git a/scripts/customize.py b/scripts/customize.py new file mode 100644 index 00000000..f7feab42 --- /dev/null +++ b/scripts/customize.py @@ -0,0 +1,123 @@ +#!/usr/bin/env python3 + +# This script is run by the user using `make customize` after the repository +# is cloned. If you are reading this because `make customize` 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 +import requests + +BASE_OWNER = "googlefonts" +BASE_REPONAME = "googlefonts-project-template" +DUMMY_URL = "https://yourname.github.io/your-font-repository-name" +LATEST_OFL = "https://raw.githubusercontent.com/googlefonts/googlefonts-project-template/main/OFL.txt" + + +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 lose(msg, e=None): + print(msg) + print("You will need to do the initialization steps manually.") + print("Read scripts/customize.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; don't do that") + 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() +ghpages_url = web_url(owner, reponame) +project_url = repo_url(owner, reponame) + +print("Fixing URLs:", web_url(BASE_OWNER, BASE_REPONAME), "->", ghpages_url) + +readme = readme.replace(web_url(BASE_OWNER, BASE_REPONAME), ghpages_url) +# In the badges, the URLs to raw.githubusercontent.com are URL-encoded as they +# are passed to shields.io. +readme = readme.replace( + quote(raw_url(BASE_OWNER, BASE_REPONAME), safe=""), + quote(raw_url(owner, reponame), safe=""), +) + +print("Fixing URLs:", DUMMY_URL, "->", ghpages_url) +readme = readme.replace(f"`{DUMMY_URL}`", ghpages_url) + +with open("README.md", "w") as fh: + fh.write(readme) + +git.add("README.md") + +# Fix the OFL +year = datetime.date.today().year +title = reponame.title() +copyright = f"Copyright {year} The {title} Project Authors ({project_url})\n" +print("Fetching the latest OFL..") +ofl = requests.get(LATEST_OFL).text.splitlines() +print("Writing an OFL for you") +print(copyright) +with open("OFL.txt", "w") as fh: + fh.write(copyright) + fh.write("\n".join(ofl[1:])) + +git.add("OFL.txt") + +# Pin the dependencies +print("Pinning dependencies") +dependencies = subprocess.check_output(["pip", "freeze"]) +with open("requirements.txt", "wb") as dependency_file: + dependency_file.write(dependencies) +git.add("requirements.txt") + +# Did anything change? +result = git.status("--porcelain") +if any(line.startswith("M ") for line in result.splitlines()): + git.commit("-m", "Customize repository") + + print("Pushing changes to GitHub") + git.push() +else: + print("Nothing changed, no need to push") diff --git a/scripts/index.html b/scripts/index.html new file mode 100644 index 00000000..07bb551a --- /dev/null +++ b/scripts/index.html @@ -0,0 +1,19 @@ + + + + + + My Font development + + +

My Font testing pages

+
+ + diff --git a/scripts/read-config.py b/scripts/read-config.py new file mode 100644 index 00000000..5c2d4047 --- /dev/null +++ b/scripts/read-config.py @@ -0,0 +1,45 @@ +#!/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) diff --git a/scripts/update-custom-filter.py b/scripts/update-custom-filter.py new file mode 100644 index 00000000..f2f071f6 --- /dev/null +++ b/scripts/update-custom-filter.py @@ -0,0 +1,8 @@ +import requests + +GF_Latin_All = "https://github.com/googlefonts/glyphsets/raw/main/GF_glyphsets/Latin/glyphs/CustomFilter_GF_Latin.plist" +dest = "sources/CustomFilter_GF_Latin_All.plist" + +r = requests.get(GF_Latin_All) +with open(dest, "wb") as f: + f.write(r.content) diff --git a/sources/CustomFilter_GF_Latin_All.plist b/sources/CustomFilter_GF_Latin_All.plist new file mode 100644 index 00000000..e175290d --- /dev/null +++ b/sources/CustomFilter_GF_Latin_All.plist @@ -0,0 +1,1297 @@ + + + + + + list + + apostrophemod + Acaron + Acircumflexdotbelow + Adblgrave + Adieresismacron + Adotaccent + Adotmacron + Ainvertedbreve + Alpha-latin + Aringbelow + Astroke + AEmacron + Bdotaccent + Bdotbelow + Beta-latin + Bhook + Bmacronbelow + Bstroke + Ccedillaacute + Chi-latin + Chook + Cstroke + Dcedilla + Dcircumflexbelow + Ddotaccent + Ddotbelow + Dhook + Dmacronbelow + Dtail + Ecedilla + Ecedillabreve + Ecircumflexbelow + Ecircumflexdotbelow + Edblgrave + Edotbelow + Einvertedbreve + Emacronacute + Emacrongrave + Eopen + Ereversed + Esh + Estroke + Etilde + Etildebelow + Schwa + Ezh + Ezhcaron + Ezhreversed + Fdotaccent + Fhook + Gacute + Gcaron + Ghook + Glottalstop + Gmacron + Gstroke + Hbrevebelow + Hcaron + Hcedilla + Hdieresis + Hdotaccent + Hdotbelow + Heng + Hhook + Hturned + Icaron + Idblgrave + Idieresisacute + Idotbelow + Iinvertedbreve + Iota-latin + Istroke + Itilde + Itildebelow + Jcrossedtail + Jstroke + Kacute + Kcaron + Kdotbelow + Khook + Kmacronbelow + Kstroke + Lbar + Lbelt + Lcircumflexbelow + Ldotbelow + Ldotbelowmacron + Ldoublebar + Lmacronbelow + Lmiddletilde + Macute + Mdotaccent + Mdotbelow + Mturned + Ncircumflexbelow + Ndotaccent + Ndotbelow + Ngrave + Nhookleft + Nlongrightleg + Nmacronbelow + OU + Ocaron + Ocenteredtilde + Ocircumflexdotbelow + Odblgrave + Odieresismacron + Odotaccent + Odotaccentmacron + Odotbelow + Oinvertedbreve + Omacronacute + Omacrongrave + Omega-latin + Oogonek + Oogonekmacron + Oopen + Oslashacute + Otildeacute + Otildedieresis + Otildemacron + Pacute + Pdotaccent + Phook + Pstroke + Qhooktail + Rdblgrave + Rdotaccent + Rdotbelow + Rdotbelowmacron + Rinvertedbreve + Rmacronbelow + Rstroke + Rtail + Sacutedotaccent + Saltillo + Scarondotaccent + Sdotaccent + Sdotbelow + Sdotbelowdotaccent + Sobliquestroke + Tcircumflexbelow + Tdiagonalstroke + Tdotaccent + Tdotbelow + Thook + Tmacronbelow + Tretroflexhook + Ubar + Ucaron + Ucircumflexbelow + Udblgrave + Udieresisacute + Udieresisbelow + Udieresiscaron + Udieresisgrave + Udieresismacron + Udotbelow + Uinvertedbreve + Umacrondieresis + Upsilon-latin + Utilde + Utildeacute + Utildebelow + Gamma-latin + Vdotbelow + Vhook + Vtilde + Vturned + Wdotaccent + Wdotbelow + Whook + Xdieresis + Xdotaccent + Ydotaccent + Yhook + Ymacron + Ystroke + Zcircumflex + Zdotbelow + Zmacronbelow + Zstroke + Ismall + acaron + acircumflexdotbelow + adblgrave + adieresismacron + adotaccent + adotbelow + adotmacron + ainvertedbreve + alpha-latin + aringbelow + astroke + aemacron + bdotaccent + bdotbelow + beta-latin + bhook + bilabialclick + bmacronbelow + bstroke + ccedillaacute + chi-latin + chook + cstroke + dcedilla + dcircumflexbelow + ddotaccent + ddotbelow + dhook + dmacronbelow + dtail + ecedilla + ecedillabreve + ecircumflexbelow + ecircumflexdotbelow + edblgrave + edotbelow + einvertedbreve + emacronacute + emacrongrave + eopen + esh + estroke + etilde + etildebelow + eturned + schwa + ezh + ezhcaron + ezhreversed + fdotaccent + gacute + gamma-latin + gcaron + ghook + glottalstop + glottalstopreversed + glottalstopsmall + gmacron + gstroke + hbrevebelow + hcaron + hcedilla + hdieresis + hdotaccent + hdotbelow + heng + hhook + hturned + icaron + idblgrave + idieresisacute + idotbelow + iinvertedbreve + iota-latin + istroke + itilde + itildebelow + jcrossedtail + jstroke + kacute + kcaron + kdotbelow + khook + kmacronbelow + kstroke + lambdastroke + lbar + lbelt + lcircumflexbelow + ldotbelow + ldotbelowmacron + ldoublebar + lmacronbelow + lmiddletilde + macute + mdotaccent + mdotbelow + mturned + ncircumflexbelow + ndotaccent + ndotbelow + ngrave + nhookleft + nlegrightlong + nmacronbelow + obarred + ocaron + ocircumflexdotbelow + odblgrave + odieresismacron + odotaccent + odotaccentmacron + odotbelow + oinvertedbreve + omacronacute + omacrongrave + omega-latin + oogonek + oogonekmacron + oopen + oslashacute + otildeacute + otildedieresis + otildemacron + ou + pacute + pdotaccent + phook + pstroke + qhooktail + rdblgrave + rdotaccent + rdotbelow + rdotbelowmacron + rfishhook + rinvertedbreve + rmacronbelow + rstroke + rtail + sacutedotaccent + saltillo + scarondotaccent + sdotaccent + sdotbelow + sdotbelowdotaccent + sobliquestroke + tcircumflexbelow + tdiagonalstroke + tdotaccent + tdotbelow + thook + tmacronbelow + tretroflexhook + ubar + ucaron + ucircumflexbelow + udblgrave + udieresisacute + udieresisbelow + udieresiscaron + udieresisgrave + udieresismacron + udotbelow + uinvertedbreve + umacrondieresis + upsilon-latin + utilde + utildeacute + utildebelow + vdotbelow + vhook + vtilde + vturned + wdotaccent + wdotbelow + whook + xdieresis + xdotaccent + ydotaccent + yhook + ymacron + ystroke + zcircumflex + zdotbelow + zmacronbelow + zstroke + hmod + nmod + wmod + clickalveolar + clickdental + clicklateral + clickretroflex + umod + vmod + zmod + florin + colonmod + doubleapostrophemod + minusmod + shortequalmod + kip + rbelowcomb + gravecomb_macroncomb + acutecomb_macroncomb + macroncomb_gravecomb + macroncomb_acutecomb + verticallineabovecomb + dblgravecomb + candraBinducomb + breveinvertedcomb + commaabovecomb + ringbelowcomb + verticallinebelowcomb + circumflexbelowcomb + breveinvertedbelowcomb + tildebelowcomb + macronbelowcomb + lowlinecomb + tildeoverlaycomb + dotaboverightcomb + acutemacroncomb + gravemacroncomb + macronacutecomb + macrongravecomb + secondtonechinese + fourthtonechinese + commaturnedmod + glottalstopmod + ringhalfleft + ringhalfright + uniA7AE + uniA7B8 + uniA7B9 + + name + GF_Latin_African + + + list + + apostrophemod + lambda + chi + dotbelowcomb + Acaron + Astroke + Cstroke + Emacronacute + Emacrongrave + Eopen + Etilde + Schwa + Ezh + Ezhcaron + Gcaron + Glottalstop + Gmacron + Gstroke + Hdotbelow + Icaron + Idotbelow + Istroke + Itilde + Kacute + Kcaron + Kdotbelow + Kmacronbelow + Lbar + Ldotbelow + Lmiddletilde + Mdotbelow + Ndotbelow + Nmacronbelow + Ocaron + Omacronacute + Omacrongrave + Oogonek + Oogonekmacron + Oopen + Saltillo + Sdotbelow + Tdiagonalstroke + Tmacronbelow + Ucaron + Upsilon-latin + Utilde + Gamma-latin + Zcircumflex + Zmacronbelow + Ismall + acaron + astroke + chi-latin + cstroke + emacronacute + emacrongrave + eopen + etilde + schwa + ezh + ezhcaron + gamma-latin + gcaron + glottalstop + glottalstopreversed + gmacron + gstroke + hdotbelow + icaron + idotbelow + iota-latin + istroke + itilde + kacute + kcaron + kdotbelow + kmacronbelow + lambdastroke + lbar + lbelt + ldotbelow + lmiddletilde + mdotbelow + ndotbelow + nmacronbelow + ocaron + omacronacute + omacrongrave + oogonek + oogonekmacron + oopen + saltillo + sdotbelow + tdiagonalstroke + tmacronbelow + ucaron + upsilon-latin + utilde + zcircumflex + zmacronbelow + wmod + clickalveolar + zmod + commaabovecomb + macronbelowcomb + lowlinecomb + commaturnedmod + glottalstopmod + Ccircumflex + Gcircumflex + Hcircumflex + Jcircumflex + Scircumflex + Tbar + Tcedilla + Ytilde + ccircumflex + gcircumflex + hcircumflex + idotless_ogonek + jcaron + jcircumflex + kgreenlandic + scircumflex + tbar + tcedilla + ytilde + ymod + thetamod + degree + YturnedSansSerif + commaaboverightcomb + strokeshortcomb + primemod + verticallinemod + + name + GF_Latin_Beyond + + + 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 + degree + A + Aacute + Abreve + 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 + 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 + 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 + 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 + 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 + + + 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 + quotedbl + quotesingle + bar + plus + multiply + divide + equal + greater + less + percent + degree + 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 + 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 + .notdef + comma + semicolon + question + periodcentered + bullet + endash + emdash + underscore + at + ampersand + copyright + registered + trademark + cent + dollar + euro + sterling + yen + minus + asciitilde + asciicircum + grave + + name + GF_Latin_Kernel + + + list + + numero + hryvnia + tenge + tugrik + whiteSquare + pi + dblverticalbar + kip + zero.zero + zero.tf + one.tf + two.tf + three.tf + four.tf + five.tf + six.tf + seven.tf + eight.tf + nine.tf + zero.dnom + one.dnom + two.dnom + three.dnom + four.dnom + five.dnom + six.dnom + seven.dnom + eight.dnom + nine.dnom + zero.numr + one.numr + two.numr + three.numr + four.numr + five.numr + six.numr + seven.numr + eight.numr + nine.numr + fraction + onehalf + onethird + twothirds + onequarter + threequarters + oneinferior + twoinferior + threeinferior + fourinferior + fiveinferior + sixinferior + seveninferior + eightinferior + nineinferior + onesuperior + twosuperior + threesuperior + foursuperior + fivesuperior + sixsuperior + sevensuperior + eightsuperior + ninesuperior + leftanglebracket-math + rightanglebracket-math + baht + minute + second + brokenbar + dagger + literSign + daggerdbl + estimated + bitcoin + cedi + colonsign + dong + guarani + lari + liraTurkish + manat + naira + peso + ruble + rupee + rupeeIndian + sheqel + won + notequal + greaterequal + lessequal + plusminus + approxequal + logicalnot + emptyset + infinity + integral + Ohm + increment + product + summation + radical + partialdiff + micro + perthousand + upArrow + northEastArrow + rightArrow + southEastArrow + downArrow + southWestArrow + leftArrow + northWestArrow + leftRightArrow + upDownArrow + blackCircle + whiteCircle + whiteBullet + blackDiamond + whiteDiamond + lozenge + blackSquare + blackSmallSquare + whiteSmallSquare + upBlackTriangle + rightBlackTriangle + downBlackTriangle + leftBlackTriangle + upWhiteTriangle + rightWhiteTriangle + downWhiteTriangle + leftWhiteTriangle + upBlackSmallTriangle + rightBlackSmallTriangle + downBlackSmallTriangle + leftBlackSmallTriangle + upWhiteSmallTriangle + rightWhiteSmallTriangle + downWhiteSmallTriangle + leftWhiteSmallTriangle + + name + GF_Latin_Plus + + + list + + dotbelowcomb + Acircumflexdotbelow + Ecircumflexdotbelow + Edotbelow + Etilde + Idotbelow + Itilde + Ocircumflexdotbelow + Odotbelow + Udotbelow + Utilde + acircumflexdotbelow + adotbelow + ecircumflexdotbelow + edotbelow + etilde + idotbelow + itilde + ocircumflexdotbelow + odotbelow + udotbelow + utilde + Ytilde + ytilde + Abreveacute + Abrevedotbelow + Abrevegrave + Abrevehookabove + Abrevetilde + Acircumflexacute + Acircumflexgrave + Acircumflexhookabove + Acircumflextilde + Adotbelow + Ahookabove + Ecircumflexacute + Ecircumflexgrave + Ecircumflexhookabove + Ecircumflextilde + Ehookabove + Ihookabove + Ocircumflexacute + Ocircumflexgrave + Ocircumflexhookabove + Ocircumflextilde + Ohookabove + Ohorn + Ohornacute + Ohorndotbelow + Ohorngrave + Ohornhookabove + Ohorntilde + Uhookabove + Uhorn + Uhornacute + Uhorndotbelow + Uhorngrave + Uhornhookabove + Uhorntilde + Ydotbelow + Yhookabove + abreveacute + abrevedotbelow + abrevegrave + abrevehookabove + abrevetilde + acircumflexacute + acircumflexgrave + acircumflexhookabove + acircumflextilde + ahookabove + ecircumflexacute + ecircumflexgrave + ecircumflexhookabove + ecircumflextilde + ehookabove + ihookabove + ocircumflexacute + ocircumflexgrave + ocircumflexhookabove + ocircumflextilde + ohookabove + ohorn + ohornacute + ohorndotbelow + ohorngrave + ohornhookabove + ohorntilde + uhookabove + uhorn + uhornacute + uhorndotbelow + uhorngrave + uhornhookabove + uhorntilde + ydotbelow + yhookabove + brevecomb_acutecomb + brevecomb_gravecomb + brevecomb_hookabovecomb + brevecomb_tildecomb + circumflexcomb_acutecomb + circumflexcomb_gravecomb + circumflexcomb_hookabovecomb + circumflexcomb_tildecomb + hookabovecomb + horncomb + + name + GF_Latin_Vietnamese + + + diff --git a/sources/RadioCanadaDisplay-Italic.glyphs b/sources/RadioCanadaDisplay-Italic.glyphs new file mode 100644 index 00000000..7b30ce55 --- /dev/null +++ b/sources/RadioCanadaDisplay-Italic.glyphs @@ -0,0 +1,73246 @@ +{ +.appVersion = "3249"; +.formatVersion = 3; +axes = ( +{ +name = Weight; +tag = wght; +} +); +classes = ( +{ +automatic = 1; +code = "A Aacute Abreve Acircumflex Adieresis Adotbelow Agrave Amacron Aogonek Aring Aringacute Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat Eth E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Edotbelow Egrave Emacron Eogonek Etilde Schwa F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Nhookleft Ntilde Eng O Oacute Obreve Ocircumflex Odieresis Odotbelow Ograve Ohungarumlaut Omacron Oogonek Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Ymacron Ytilde Z Zacute Zcaron Zdotaccent Delta Omega"; +name = Uppercase; +} +); +customParameters = ( +{ +name = fsType; +value = ( +); +}, +{ +name = "Use Typo Metrics"; +value = 1; +} +); +date = "2024-03-20 13:28:04 +0000"; +familyName = "Radio Canada Display"; +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 CAT; +"; +name = Languagesystems; +} +); +features = ( +{ +automatic = 1; +code = "feature locl; +feature sups; +feature frac; +feature ordn; +feature case; +feature pnum; +feature tnum; +"; +tag = aalt; +}, +{ +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 CAT; +lookup locl_latn_2 { + sub l periodcentered' l by periodcentered.loclCAT; + sub L periodcentered' L by periodcentered.loclCAT.case; +} locl_latn_2; +"; +tag = locl; +}, +{ +code = "sub f f i by f_f_i; +sub f f ij by f_f_ij; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by f_i; +sub f ij by f_ij; +sub f l by f_l;"; +tag = liga; +}, +{ +automatic = 1; +code = "lookup ccmp_Other_1 { + @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb dieresiscomb dotaccentcomb gravecomb hungarumlautcomb macroncomb ringcomb tildecomb]; + lookupflag UseMarkFilteringSet @CombiningTopAccents; + sub i' @CombiningTopAccents by idotless; + sub j' @CombiningTopAccents by jdotless; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + lookupflag 0; + @Markscomb = [dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb]; + @MarkscombCase = [dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case]; + sub @Uppercase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; + +lookup ccmp_Other_3 { + lookupflag 0; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_3; + +lookup ccmp_latn_1 { + lookupflag 0; + sub fi by f i; + sub fl by f l; + sub Ldot by L periodcentered.loclCAT.case; + sub ldot by l periodcentered.loclCAT; +} ccmp_latn_1; + +script latn; +lookup ccmp_latn_1; +"; +tag = ccmp; +}, +{ +automatic = 1; +code = "sub one by onesuperior; +sub two by twosuperior; +sub three by threesuperior; +"; +tag = sups; +}, +{ +automatic = 1; +code = "sub one slash four by onequarter; +sub one slash two by onehalf; +sub three slash four by threequarters; +"; +tag = frac; +}, +{ +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; +}, +{ +automatic = 1; +code = "sub zero.tf by zero; +sub one.tf by one; +sub two.tf by two; +sub three.tf by three; +sub four.tf by four; +sub five.tf by five; +sub six.tf by six; +sub seven.tf by seven; +sub eight.tf by eight; +sub nine.tf by nine; +sub space.tf by space; +sub period.tf by period; +sub comma.tf by comma; +sub colon.tf by colon; +sub semicolon.tf by semicolon; +"; +tag = pnum; +}, +{ +automatic = 1; +code = "sub zero by zero.tf; +sub one by one.tf; +sub two by two.tf; +sub three by three.tf; +sub four by four.tf; +sub five by five.tf; +sub six by six.tf; +sub seven by seven.tf; +sub eight by eight.tf; +sub nine by nine.tf; +sub space by space.tf; +sub period by period.tf; +sub comma by comma.tf; +sub colon by colon.tf; +sub semicolon by semicolon.tf; +"; +tag = tnum; +}, +{ +automatic = 1; +code = "sub periodcentered.loclCAT by periodcentered.loclCAT.case; +sub dieresiscomb by dieresiscomb.case; +sub dotaccentcomb by dotaccentcomb.case; +sub gravecomb by gravecomb.case; +sub acutecomb by acutecomb.case; +sub hungarumlautcomb by hungarumlautcomb.case; +sub circumflexcomb by circumflexcomb.case; +sub caroncomb by caroncomb.case; +sub brevecomb by brevecomb.case; +sub ringcomb by ringcomb.case; +sub tildecomb by tildecomb.case; +sub macroncomb by macroncomb.case; +"; +tag = case; +}, +{ +automatic = 1; +code = "lookupflag IgnoreMarks; +sub f f ij by f_f_ij; +sub f ij by f_ij; +"; +tag = dlig; +} +); +fontMaster = ( +{ +axesValues = ( +400 +); +customParameters = ( +{ +name = typoAscender; +value = 950; +}, +{ +name = typoDescender; +value = -250; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = hheaAscender; +value = 950; +}, +{ +name = hheaDescender; +value = -250; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1063; +}, +{ +name = winDescent; +value = 275; +} +); +id = m001; +metricValues = ( +{ +over = 10; +pos = 715; +}, +{ +over = 10; +pos = 690; +}, +{ +over = 10; +pos = 530; +}, +{ +over = -10; +}, +{ +over = -10; +pos = -175; +}, +{ +pos = 12; +} +); +name = Italic; +stemValues = ( +81, +87, +96, +0, +0 +); +userData = { +layerinfo.color = "1,0.75,0,0.7"; +}; +}, +{ +axesValues = ( +700 +); +customParameters = ( +{ +name = typoAscender; +value = 950; +}, +{ +name = typoDescender; +value = -250; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = hheaAscender; +value = 950; +}, +{ +name = hheaDescender; +value = -250; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1063; +}, +{ +name = winDescent; +value = 275; +} +); +iconName = Bold; +id = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +metricValues = ( +{ +over = 14; +pos = 715; +}, +{ +over = 14; +pos = 690; +}, +{ +over = 14; +pos = 530; +}, +{ +over = -14; +}, +{ +over = -14; +pos = -175; +}, +{ +pos = 12; +} +); +name = "Bold Italic"; +stemValues = ( +123, +123, +123, +135, +145 +); +userData = { +layerinfo.color = "1,0.75,0,0.7"; +}; +} +); +glyphs = ( +{ +color = 6; +glyphname = A; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (274,0); +}, +{ +name = ogonek; +pos = (572,0); +}, +{ +name = top; +pos = (406,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (258,0); +}, +{ +name = top; +pos = (404.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(160,191,l), +(444,191,l), +(467,0,l), +(572,0,l), +(481,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(391,620,l), +(432,287,l), +(212,287,l) +); +} +); +width = 660; +}, +{ +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = ogonek; +pos = (602,0); +}, +{ +name = top; +pos = (411,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (410.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(182,158,l), +(429,158,l), +(443,0,l), +(602,0,l), +(530,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(391,572,l), +(416,295,l), +(251,295,l) +); +} +); +width = 675; +} +); +unicode = 65; +}, +{ +color = 10; +glyphname = Aacute; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(450,735,l), +(608,845,l), +(473,845,l), +(349,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (83,0); +ref = acutecomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(472,735,l), +(648,850,l), +(475,850,l), +(347,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (89,0); +ref = acutecomb.case; +} +); +width = 675; +} +); +unicode = 193; +}, +{ +color = 10; +glyphname = Abreve; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,735,o), +(570,777,o), +(588,845,c), +(518,845,l), +(510,820,o), +(483,805,o), +(426,805,c), +(439,805,o), +(358,792,o), +(358,845,c), +(288,845,l), +(287,838,o), +(287,833,o), +(287,828,cs), +(287,773,o), +(335,735,o), +(423,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (82,0); +ref = brevecomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(535,730,o), +(588,779,o), +(604,850,c), +(507,850,l), +(499,827,o), +(477,814,o), +(436,814,c), +(395,814,o), +(383,827,o), +(383,850,c), +(286,850,l), +(285,843,o), +(284,837,o), +(284,831,cs), +(284,770,o), +(337,730,o), +(431,730,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = brevecomb.case; +} +); +width = 675; +} +); +unicode = 258; +}, +{ +color = 10; +glyphname = Acircumflex; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(338,735,l), +(459,814,l), +(474,845,l), +(369,845,l), +(231,735,l) +); +}, +{ +closed = 1; +nodes = ( +(597,735,l), +(507,845,l), +(402,845,l), +(416,814,l), +(504,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (82,0); +ref = circumflexcomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(353,735,l), +(468,812,l), +(490,850,l), +(361,850,l), +(226,735,l) +); +}, +{ +closed = 1; +nodes = ( +(614,735,l), +(529,850,l), +(400,850,l), +(416,812,l), +(497,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = circumflexcomb.case; +} +); +width = 675; +} +); +unicode = 194; +}, +{ +color = 10; +glyphname = Adieresis; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(356,742,o), +(382,767,o), +(382,802,c), +(382,834,o), +(361,855,o), +(330,855,c), +(295,855,o), +(270,830,o), +(270,793,c), +(270,763,o), +(291,742,o), +(321,742,c) +); +}, +{ +closed = 1; +nodes = ( +(559,742,o), +(585,767,o), +(585,802,c), +(585,834,o), +(564,855,o), +(533,855,c), +(498,855,o), +(473,830,o), +(473,793,c), +(473,763,o), +(494,742,o), +(524,742,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (83,0); +ref = dieresiscomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(363,742,o), +(395,770,o), +(395,813,c), +(395,850,o), +(371,873,o), +(330,873,c), +(288,873,o), +(256,845,o), +(256,802,c), +(256,765,o), +(279,742,o), +(321,742,c) +); +}, +{ +closed = 1; +nodes = ( +(583,742,o), +(615,770,o), +(615,813,c), +(615,850,o), +(591,873,o), +(550,873,c), +(508,873,o), +(476,845,o), +(476,802,c), +(476,765,o), +(499,742,o), +(541,742,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = dieresiscomb.case; +} +); +width = 675; +} +); +unicode = 196; +}, +{ +color = 10; +glyphname = Adotbelow; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(262,-195,o), +(290,-168,o), +(290,-130,c), +(290,-95,o), +(267,-72,o), +(233,-72,c), +(195,-72,o), +(168,-99,o), +(168,-140,c), +(168,-172,o), +(191,-195,o), +(224,-195,c) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (98,0); +ref = dotbelow; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(278,-198,o), +(314,-166,o), +(314,-117,c), +(314,-75,o), +(287,-48,o), +(243,-48,c), +(198,-48,o), +(162,-80,o), +(162,-130,c), +(162,-171,o), +(189,-198,o), +(233,-198,c) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (105,0); +ref = dotbelow; +} +); +width = 675; +} +); +unicode = 7840; +}, +{ +color = 10; +glyphname = Agrave; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(473,735,l), +(397,845,l), +(272,845,l), +(385,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (82,0); +ref = gravecomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(486,735,l), +(408,850,l), +(247,850,l), +(376,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (86,0); +ref = gravecomb.case; +} +); +width = 675; +} +); +unicode = 192; +}, +{ +color = 10; +glyphname = Amacron; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(576,753,l), +(594,837,l), +(278,837,l), +(260,753,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (83,0); +ref = macroncomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,735,l), +(610,850,l), +(280,850,l), +(255,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (88,0); +ref = macroncomb.case; +} +); +width = 675; +} +); +unicode = 256; +}, +{ +color = 10; +glyphname = Aogonek; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:03:05 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,-185,o), +(515,-176,o), +(537,-165,c), +(545,-84,l), +(520,-96,o), +(489,-106,o), +(463,-106,c), +(452,-106,o), +(446,-101,o), +(446,-93,cs), +(446,-72,o), +(483,-38,o), +(572,0,c), +(472,0,l), +(387,-35,o), +(358,-74,o), +(358,-118,c), +(358,-155,o), +(384,-185,o), +(446,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (342,0); +ref = ogonekcomb; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,-190,o), +(535,-183,o), +(566,-170,c), +(577,-75,l), +(555,-87,o), +(527,-96,o), +(508,-96,c), +(495,-96,o), +(488,-90,o), +(488,-82,cs), +(488,-65,o), +(513,-36,o), +(602,0,c), +(497,0,l), +(404,-36,o), +(373,-82,o), +(373,-121,c), +(373,-158,o), +(403,-190,o), +(472,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (336,0); +ref = ogonekcomb; +} +); +width = 675; +} +); +unicode = 260; +}, +{ +color = 10; +glyphname = Aring; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(486,735,o), +(530,779,o), +(530,833,c), +(530,878,o), +(495,908,o), +(444,908,c), +(379,908,o), +(335,864,o), +(335,810,c), +(335,765,o), +(370,735,o), +(421,735,c) +); +}, +{ +closed = 1; +nodes = ( +(408,790,o), +(398,800,o), +(398,815,c), +(398,836,o), +(414,853,o), +(439,853,c), +(457,853,o), +(467,843,o), +(467,828,c), +(467,807,o), +(451,790,o), +(426,790,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (83,0); +ref = ringcomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,735,o), +(543,784,o), +(543,837,c), +(543,883,o), +(509,917,o), +(449,917,c), +(379,917,o), +(336,868,o), +(336,815,c), +(336,769,o), +(370,735,o), +(430,735,c) +); +}, +{ +closed = 1; +nodes = ( +(419,800,o), +(409,808,o), +(409,823,c), +(409,839,o), +(422,852,o), +(442,852,c), +(460,852,o), +(470,844,o), +(470,829,c), +(470,813,o), +(457,800,o), +(437,800,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (88,0); +ref = ringcomb.case; +} +); +width = 675; +} +); +unicode = 197; +}, +{ +color = 10; +glyphname = Aringacute; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(486,735,o), +(530,779,o), +(530,833,c), +(530,878,o), +(495,908,o), +(444,908,c), +(379,908,o), +(335,864,o), +(335,810,c), +(335,765,o), +(370,735,o), +(421,735,c) +); +}, +{ +closed = 1; +nodes = ( +(408,790,o), +(398,800,o), +(398,815,c), +(398,836,o), +(414,853,o), +(439,853,c), +(457,853,o), +(467,843,o), +(467,828,c), +(467,807,o), +(451,790,o), +(426,790,c) +); +}, +{ +closed = 1; +nodes = ( +(498,925,l), +(638,1015,l), +(503,1015,l), +(402,925,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (83,0); +ref = ringcomb.case; +}, +{ +pos = (129,188); +ref = acutecomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,735,o), +(543,784,o), +(543,837,c), +(543,883,o), +(509,917,o), +(449,917,c), +(379,917,o), +(336,868,o), +(336,815,c), +(336,769,o), +(370,735,o), +(430,735,c) +); +}, +{ +closed = 1; +nodes = ( +(419,800,o), +(409,808,o), +(409,823,c), +(409,839,o), +(422,852,o), +(442,852,c), +(460,852,o), +(470,844,o), +(470,829,c), +(470,813,o), +(457,800,o), +(437,800,c) +); +}, +{ +closed = 1; +nodes = ( +(525,934,l), +(662,1017,l), +(500,1017,l), +(410,934,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (88,0); +ref = ringcomb.case; +}, +{ +pos = (137,200); +ref = acutecomb.case; +} +); +width = 675; +} +); +unicode = 506; +}, +{ +color = 10; +glyphname = Atilde; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:21:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,191,l), +(502,287,l), +(134,287,l), +(114,191,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(324,735,l), +(326,757,o), +(339,773,o), +(362,773,c), +(398,773,o), +(425,735,o), +(482,735,c), +(545,735,o), +(584,777,o), +(596,845,c), +(528,845,l), +(526,823,o), +(513,807,o), +(490,807,c), +(455,807,o), +(427,845,o), +(370,845,c), +(307,845,o), +(268,803,o), +(256,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (83,0); +ref = tildecomb.case; +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,158,l), +(511,295,l), +(143,295,l), +(114,158,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(337,735,l), +(338,761,o), +(354,772,o), +(371,772,c), +(404,772,o), +(426,735,o), +(491,735,c), +(554,735,o), +(601,781,o), +(613,854,c), +(529,854,l), +(528,828,o), +(512,817,o), +(495,817,c), +(464,817,o), +(440,854,o), +(375,854,c), +(311,854,o), +(264,808,o), +(253,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = tildecomb.case; +} +); +width = 675; +} +); +unicode = 195; +}, +{ +color = 6; +glyphname = AE; +kernLeft = B; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (589,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (589,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,l), +(574,690,l), +(461,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,193,l), +(502,287,l), +(194,287,l), +(174,193,l) +); +}, +{ +closed = 1; +nodes = ( +(860,0,l), +(880,96,l), +(460,96,l), +(440,0,l) +); +}, +{ +closed = 1; +nodes = ( +(495,0,l), +(642,690,l), +(537,690,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(860,306,l), +(880,402,l), +(525,402,l), +(505,306,l) +); +}, +{ +closed = 1; +nodes = ( +(981,594,l), +(1002,690,l), +(587,690,l), +(566,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,l), +(574,690,l), +(461,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,193,l), +(502,287,l), +(194,287,l), +(174,193,l) +); +}, +{ +closed = 1; +nodes = ( +(860,0,l), +(880,96,l), +(460,96,l), +(440,0,l) +); +}, +{ +closed = 1; +nodes = ( +(495,0,l), +(642,690,l), +(537,690,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(860,306,l), +(880,402,l), +(525,402,l), +(505,306,l) +); +}, +{ +closed = 1; +nodes = ( +(981,594,l), +(1002,690,l), +(587,690,l), +(566,594,l) +); +} +); +width = 979; +}, +{ +anchors = ( +{ +name = top; +pos = (610,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (610,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(118,0,l), +(593,690,l), +(426,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(464,162,l), +(493,295,l), +(203,295,l), +(174,162,l) +); +}, +{ +closed = 1; +nodes = ( +(883,0,l), +(914,145,l), +(487,145,l), +(456,0,l) +); +}, +{ +closed = 1; +nodes = ( +(543,0,l), +(690,690,l), +(535,690,l), +(388,0,l) +); +}, +{ +closed = 1; +nodes = ( +(896,282,l), +(925,419,l), +(545,419,l), +(516,282,l) +); +}, +{ +closed = 1; +nodes = ( +(995,545,l), +(1026,690,l), +(603,690,l), +(572,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(118,0,l), +(593,690,l), +(426,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(464,162,l), +(493,295,l), +(203,295,l), +(174,162,l) +); +}, +{ +closed = 1; +nodes = ( +(883,0,l), +(914,145,l), +(487,145,l), +(456,0,l) +); +}, +{ +closed = 1; +nodes = ( +(543,0,l), +(690,690,l), +(535,690,l), +(388,0,l) +); +}, +{ +closed = 1; +nodes = ( +(896,282,l), +(925,419,l), +(545,419,l), +(516,282,l) +); +}, +{ +closed = 1; +nodes = ( +(995,545,l), +(1026,690,l), +(603,690,l), +(572,545,l) +); +} +); +width = 991; +} +); +unicode = 198; +}, +{ +color = 10; +glyphname = AEacute; +kernLeft = B; +kernRight = E; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,l), +(574,690,l), +(461,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(482,193,l), +(502,287,l), +(194,287,l), +(174,193,l) +); +}, +{ +closed = 1; +nodes = ( +(860,0,l), +(880,96,l), +(460,96,l), +(440,0,l) +); +}, +{ +closed = 1; +nodes = ( +(495,0,l), +(642,690,l), +(537,690,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(860,306,l), +(880,402,l), +(525,402,l), +(505,306,l) +); +}, +{ +closed = 1; +nodes = ( +(634,735,l), +(792,845,l), +(657,845,l), +(533,735,l) +); +}, +{ +closed = 1; +nodes = ( +(981,594,l), +(1002,690,l), +(587,690,l), +(566,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = AE; +}, +{ +pos = (266,0); +ref = acutecomb.case; +} +); +width = 979; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(118,0,l), +(593,690,l), +(426,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(464,162,l), +(493,295,l), +(203,295,l), +(174,162,l) +); +}, +{ +closed = 1; +nodes = ( +(883,0,l), +(914,145,l), +(487,145,l), +(456,0,l) +); +}, +{ +closed = 1; +nodes = ( +(543,0,l), +(690,690,l), +(535,690,l), +(388,0,l) +); +}, +{ +closed = 1; +nodes = ( +(896,282,l), +(925,419,l), +(545,419,l), +(516,282,l) +); +}, +{ +closed = 1; +nodes = ( +(995,545,l), +(1026,690,l), +(603,690,l), +(572,545,l) +); +}, +{ +closed = 1; +nodes = ( +(671,735,l), +(847,850,l), +(674,850,l), +(546,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = AE; +}, +{ +pos = (288,0); +ref = acutecomb.case; +} +); +width = 991; +} +); +unicode = 508; +}, +{ +color = 6; +glyphname = B; +kernLeft = H; +kernRight = B; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(283,0,l), +(457.365,0,o), +(559,95.833,o), +(559,230,c), +(559,322.647,o), +(479.418,381,o), +(373,381,c), +(133,381,l), +(119,313,l), +(334,313,l), +(413,313,o), +(453,285,o), +(453,232,c), +(453,159,o), +(399,93,o), +(275,93,c), +(72,93,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(324,344,l), +(498,344,o), +(598,417,o), +(598,530,c), +(598,629,o), +(519,690,o), +(409,690,c), +(199,690,l), +(179,597,l), +(386,597,l), +(459,597,o), +(495,567,o), +(495,518,c), +(495,454,o), +(444,399,o), +(327,399,c), +(129,399,l), +(117,344,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(283,0,ls), +(457,0,o), +(559,96,o), +(559,230,cs), +(559,293,o), +(522,341,o), +(464,364,c), +(551,393,o), +(598,452,o), +(598,530,cs), +(598,629,o), +(519,690,o), +(409,690,cs), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(174,313,l), +(334,313,ls), +(413,313,o), +(453,285,o), +(453,232,cs), +(453,159,o), +(399,93,o), +(275,93,cs), +(127,93,l) +); +}, +{ +closed = 1; +nodes = ( +(234,597,l), +(386,597,ls), +(459,597,o), +(495,567,o), +(495,518,cs), +(495,454,o), +(444,399,o), +(327,399,cs), +(192.004,399,l) +); +} +); +width = 623; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(285,0,l), +(475,0,o), +(578,101,o), +(578,232,c), +(578,320,o), +(505.481,380,o), +(380,380,c), +(143,380,l), +(123,287,l), +(333,287,l), +(396.526,287,o), +(418,265,o), +(418,231,c), +(418,180,o), +(385.692,144,o), +(298,144,c), +(88,144,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(366,349,l), +(522.617,349,o), +(612,424.981,o), +(612,525,c), +(612,621.462,o), +(538.862,690,o), +(410,690,c), +(204,690,l), +(173,546,l), +(387,546,l), +(436,546,o), +(457,524,o), +(457,491,c), +(457,449,o), +(425.5,414,o), +(352,414,c), +(137,414,l), +(127,349,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,0,ls), +(475,0,o), +(578,101,o), +(578,232,cs), +(578,294,o), +(542,342,o), +(478,365,c), +(564,392,o), +(612,452,o), +(612,525,cs), +(612,621,o), +(539,690,o), +(410,690,cs), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(205,287,l), +(333,287,ls), +(397,287,o), +(418,265,o), +(418,231,cs), +(418,180,o), +(386,144,o), +(298,144,cs), +(175,144,l) +); +}, +{ +closed = 1; +nodes = ( +(260,546,l), +(387,546,ls), +(436,546,o), +(457,524,o), +(457,491,cs), +(457,449,o), +(426,414,o), +(352,414,cs), +(232,414,l) +); +} +); +width = 636; +} +); +unicode = 66; +}, +{ +color = 6; +glyphname = C; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (419.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (419.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(539,77,o), +(600,208,c), +(497,240,l), +(460,149,o), +(386,88,o), +(295,88,c), +(198,88,o), +(146,146,o), +(146,254,cs), +(146,444,o), +(253,602,o), +(390,602,c), +(485,602,o), +(538,551,o), +(543,456,c), +(650,486,l), +(637,612,o), +(545,700,o), +(406,700,c), +(198,700,o), +(38,499,o), +(38,248,cs), +(38,94,o), +(132,-10,o), +(278,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(539,77,o), +(600,208,c), +(497,240,l), +(460,149,o), +(386,88,o), +(295,88,c), +(198,88,o), +(146,146,o), +(146,254,cs), +(146,444,o), +(253,602,o), +(390,602,c), +(485,602,o), +(538,551,o), +(543,456,c), +(650,486,l), +(637,612,o), +(545,700,o), +(406,700,c), +(198,700,o), +(38,499,o), +(38,248,cs), +(38,94,o), +(132,-10,o), +(278,-10,c) +); +} +); +width = 668; +}, +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = top; +pos = (433,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = top; +pos = (433,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(465.162,-14,o), +(587.445,85,o), +(635,227,c), +(477,262,l), +(452.576,185,o), +(397.152,132,o), +(322,132,c), +(231.588,132,o), +(196,193,o), +(196,278,c), +(196,432,o), +(277.825,558,o), +(392,558,c), +(472.585,558,o), +(505.203,506,o), +(510,432,c), +(671,466,l), +(657.267,607,o), +(564.08,704,o), +(414,704,c), +(189.882,704,o), +(33,506,o), +(33,267,c), +(33,107,o), +(137.094,-14,o), +(306,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(465.162,-14,o), +(587.445,85,o), +(635,227,c), +(477,262,l), +(452.576,185,o), +(397.152,132,o), +(322,132,c), +(231.588,132,o), +(196,193,o), +(196,278,c), +(196,432,o), +(277.825,558,o), +(392,558,c), +(472.585,558,o), +(505.203,506,o), +(510,432,c), +(671,466,l), +(657.267,607,o), +(564.08,704,o), +(414,704,c), +(189.882,704,o), +(33,506,o), +(33,267,c), +(33,107,o), +(137.094,-14,o), +(306,-14,c) +); +} +); +width = 688; +} +); +unicode = 67; +}, +{ +color = 10; +glyphname = Cacute; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(539,77,o), +(600,208,c), +(497,240,l), +(460,149,o), +(386,88,o), +(295,88,c), +(198,88,o), +(146,146,o), +(146,254,cs), +(146,444,o), +(253,602,o), +(390,602,c), +(485,602,o), +(538,551,o), +(543,456,c), +(650,486,l), +(637,612,o), +(545,700,o), +(406,700,c), +(198,700,o), +(38,499,o), +(38,248,cs), +(38,94,o), +(132,-10,o), +(278,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(465,735,l), +(623,845,l), +(488,845,l), +(364,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (97,0); +ref = acutecomb.case; +} +); +width = 668; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(465,-14,o), +(587,85,o), +(635,227,c), +(477,262,l), +(453,185,o), +(397,132,o), +(322,132,c), +(232,132,o), +(196,193,o), +(196,278,c), +(196,432,o), +(278,558,o), +(392,558,c), +(473,558,o), +(505,506,o), +(510,432,c), +(671,466,l), +(657,607,o), +(564,704,o), +(414,704,c), +(190,704,o), +(33,506,o), +(33,267,c), +(33,107,o), +(137,-14,o), +(306,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(494,735,l), +(670,850,l), +(497,850,l), +(369,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = C; +}, +{ +pos = (111,0); +ref = acutecomb.case; +} +); +width = 688; +} +); +unicode = 262; +}, +{ +color = 10; +glyphname = Ccaron; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(539,77,o), +(600,208,c), +(497,240,l), +(460,149,o), +(386,88,o), +(295,88,c), +(198,88,o), +(146,146,o), +(146,254,cs), +(146,444,o), +(253,602,o), +(390,602,c), +(485,602,o), +(538,551,o), +(543,456,c), +(650,486,l), +(637,612,o), +(545,700,o), +(406,700,c), +(198,700,o), +(38,499,o), +(38,248,cs), +(38,94,o), +(132,-10,o), +(278,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(465,735,l), +(451,766,l), +(363,845,l), +(270,845,l), +(360,735,l) +); +}, +{ +closed = 1; +nodes = ( +(498,735,l), +(636,845,l), +(529,845,l), +(408,766,l), +(393,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = caroncomb.case; +} +); +width = 668; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(465,-14,o), +(587,85,o), +(635,227,c), +(477,262,l), +(453,185,o), +(397,132,o), +(322,132,c), +(232,132,o), +(196,193,o), +(196,278,c), +(196,432,o), +(278,558,o), +(392,558,c), +(473,558,o), +(505,506,o), +(510,432,c), +(671,466,l), +(657,607,o), +(564,704,o), +(414,704,c), +(190,704,o), +(33,506,o), +(33,267,c), +(33,107,o), +(137,-14,o), +(306,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(487,735,l), +(471,773,l), +(390,850,l), +(273,850,l), +(358,735,l) +); +}, +{ +closed = 1; +nodes = ( +(526,735,l), +(661,850,l), +(534,850,l), +(419,773,l), +(397,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = C; +}, +{ +pos = (108,0); +ref = caroncomb.case; +} +); +width = 688; +} +); +unicode = 268; +}, +{ +color = 10; +glyphname = Ccedilla; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(539,77,o), +(600,208,c), +(497,240,l), +(460,149,o), +(386,88,o), +(295,88,c), +(198,88,o), +(146,146,o), +(146,254,cs), +(146,444,o), +(253,602,o), +(390,602,c), +(485,602,o), +(538,551,o), +(543,456,c), +(650,486,l), +(637,612,o), +(545,700,o), +(406,700,c), +(198,700,o), +(38,499,o), +(38,248,cs), +(38,94,o), +(132,-10,o), +(278,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(295,-185,o), +(339,-144,o), +(339,-96,c), +(339,-55,o), +(310,-29,o), +(269,-29,c), +(278,-43,l), +(295,9,l), +(239,11,l), +(208,-73,l), +(220,-71,o), +(227,-70,o), +(238,-70,c), +(260,-70,o), +(271,-79,o), +(271,-94,c), +(271,-108,o), +(257,-119,o), +(232,-119,c), +(212,-119,o), +(197,-114,o), +(181,-105,c), +(154,-169,l), +(177,-180,o), +(201,-185,o), +(227,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (94,0); +ref = cedillacomb; +} +); +width = 668; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(465,-14,o), +(587,85,o), +(635,227,c), +(477,262,l), +(453,185,o), +(397,132,o), +(322,132,c), +(232,132,o), +(196,193,o), +(196,278,c), +(196,432,o), +(278,558,o), +(392,558,c), +(473,558,o), +(505,506,o), +(510,432,c), +(671,466,l), +(657,607,o), +(564,704,o), +(414,704,c), +(190,704,o), +(33,506,o), +(33,267,c), +(33,107,o), +(137,-14,o), +(306,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(328,-190,o), +(367,-146,o), +(367,-97,c), +(367,-57,o), +(338,-29,o), +(288,-29,c), +(297,-43,l), +(314,9,l), +(246,11,l), +(213,-80,l), +(225,-76,o), +(235,-74,o), +(247,-74,c), +(267,-74,o), +(277,-80,o), +(277,-91,c), +(277,-103,o), +(266,-109,o), +(243,-109,c), +(223,-109,o), +(201,-105,o), +(182,-94,c), +(153,-174,l), +(178,-185,o), +(208,-190,o), +(236,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = C; +}, +{ +pos = (106,0); +ref = cedillacomb; +} +); +width = 688; +} +); +unicode = 199; +}, +{ +color = 10; +glyphname = Ccircumflex; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(539,77,o), +(600,208,c), +(497,240,l), +(460,149,o), +(386,88,o), +(295,88,c), +(198,88,o), +(146,146,o), +(146,254,cs), +(146,444,o), +(253,602,o), +(390,602,c), +(485,602,o), +(538,551,o), +(543,456,c), +(650,486,l), +(637,612,o), +(545,700,o), +(406,700,c), +(198,700,o), +(38,499,o), +(38,248,cs), +(38,94,o), +(132,-10,o), +(278,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(353,735,l), +(474,814,l), +(489,845,l), +(384,845,l), +(246,735,l) +); +}, +{ +closed = 1; +nodes = ( +(612,735,l), +(522,845,l), +(417,845,l), +(431,814,l), +(519,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (96,0); +ref = circumflexcomb.case; +} +); +width = 668; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(465,-14,o), +(587,85,o), +(635,227,c), +(477,262,l), +(453,185,o), +(397,132,o), +(322,132,c), +(232,132,o), +(196,193,o), +(196,278,c), +(196,432,o), +(278,558,o), +(392,558,c), +(473,558,o), +(505,506,o), +(510,432,c), +(671,466,l), +(657,607,o), +(564,704,o), +(414,704,c), +(190,704,o), +(33,506,o), +(33,267,c), +(33,107,o), +(137,-14,o), +(306,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(375,735,l), +(490,812,l), +(512,850,l), +(383,850,l), +(248,735,l) +); +}, +{ +closed = 1; +nodes = ( +(636,735,l), +(551,850,l), +(422,850,l), +(438,812,l), +(519,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = C; +}, +{ +pos = (109,0); +ref = circumflexcomb.case; +} +); +width = 688; +} +); +unicode = 264; +}, +{ +color = 10; +glyphname = Cdotaccent; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(539,77,o), +(600,208,c), +(497,240,l), +(460,149,o), +(386,88,o), +(295,88,c), +(198,88,o), +(146,146,o), +(146,254,cs), +(146,444,o), +(253,602,o), +(390,602,c), +(485,602,o), +(538,551,o), +(543,456,c), +(650,486,l), +(637,612,o), +(545,700,o), +(406,700,c), +(198,700,o), +(38,499,o), +(38,248,cs), +(38,94,o), +(132,-10,o), +(278,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(475,735,o), +(503,760,o), +(503,795,c), +(503,827,o), +(480,848,o), +(446,848,c), +(408,848,o), +(381,823,o), +(381,785,c), +(381,756,o), +(404,735,o), +(437,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (96,0); +ref = dotaccentcomb.case; +} +); +width = 668; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(465,-14,o), +(587,85,o), +(635,227,c), +(477,262,l), +(453,185,o), +(397,132,o), +(322,132,c), +(232,132,o), +(196,193,o), +(196,278,c), +(196,432,o), +(278,558,o), +(392,558,c), +(473,558,o), +(505,506,o), +(510,432,c), +(671,466,l), +(657,607,o), +(564,704,o), +(414,704,c), +(190,704,o), +(33,506,o), +(33,267,c), +(33,107,o), +(137,-14,o), +(306,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(499,741,o), +(535,771,o), +(535,817,c), +(535,856,o), +(508,881,o), +(464,881,c), +(419,881,o), +(383,851,o), +(383,804,c), +(383,766,o), +(410,741,o), +(454,741,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = C; +}, +{ +pos = (109,0); +ref = dotaccentcomb.case; +} +); +width = 688; +} +); +unicode = 266; +}, +{ +color = 6; +glyphname = D; +kernLeft = H; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (401.664,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (401.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(236,0,ls), +(488,0,o), +(642,195.565,o), +(642,441,cs), +(642,588.093,o), +(539,690,o), +(375,690,cs), +(199,690,l), +(178,594,l), +(352,594,ls), +(487,594,o), +(534,536.512,o), +(534,434,cs), +(534,249.491,o), +(426,96,o), +(246,96,cs), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(236,0,ls), +(488,0,o), +(642,195.565,o), +(642,441,cs), +(642,588.093,o), +(539,690,o), +(375,690,cs), +(199,690,l), +(178,594,l), +(352,594,ls), +(487,594,o), +(534,536.512,o), +(534,434,cs), +(534,249.491,o), +(426,96,o), +(246,96,cs), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +width = 678; +}, +{ +anchors = ( +{ +name = top; +pos = (383.664,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (383.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(505,0,o), +(660,193,o), +(660,424,c), +(660,575,o), +(561,690,o), +(388,690,c), +(204,690,l), +(173,545,l), +(368,545,l), +(464,545,o), +(499,488.267,o), +(499,412,c), +(499,266.25,o), +(415,145,o), +(280,145,c), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(505,0,o), +(660,193,o), +(660,424,c), +(660,575,o), +(561,690,o), +(388,690,c), +(204,690,l), +(173,545,l), +(368,545,l), +(464,545,o), +(499,488.267,o), +(499,412,c), +(499,266.25,o), +(415,145,o), +(280,145,c), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +width = 689; +} +); +unicode = 68; +}, +{ +color = 10; +glyphname = Dcaron; +kernLeft = H; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(236,0,ls), +(488,0,o), +(642,196,o), +(642,441,cs), +(642,588,o), +(539,690,o), +(375,690,cs), +(199,690,l), +(178,594,l), +(352,594,ls), +(487,594,o), +(534,537,o), +(534,434,cs), +(534,249,o), +(426,96,o), +(246,96,cs), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(447,735,l), +(433,766,l), +(345,845,l), +(252,845,l), +(342,735,l) +); +}, +{ +closed = 1; +nodes = ( +(480,735,l), +(618,845,l), +(511,845,l), +(390,766,l), +(375,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = D; +}, +{ +pos = (77,0); +ref = caroncomb.case; +} +); +width = 678; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(505,0,o), +(660,193,o), +(660,424,c), +(660,575,o), +(561,690,o), +(388,690,c), +(204,690,l), +(173,545,l), +(368,545,l), +(464,545,o), +(499,488,o), +(499,412,c), +(499,266,o), +(415,145,o), +(280,145,c), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(438,735,l), +(422,773,l), +(341,850,l), +(224,850,l), +(309,735,l) +); +}, +{ +closed = 1; +nodes = ( +(477,735,l), +(612,850,l), +(485,850,l), +(370,773,l), +(348,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = D; +}, +{ +pos = (59,0); +ref = caroncomb.case; +} +); +width = 689; +} +); +unicode = 270; +}, +{ +color = 10; +glyphname = Dcroat; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(503,0,o), +(657,196,o), +(657,441,cs), +(657,588,o), +(554,690,o), +(390,690,cs), +(214,690,l), +(193,594,l), +(367,594,ls), +(502,594,o), +(549,537,o), +(549,434,cs), +(549,249,o), +(441,96,o), +(261,96,cs), +(87,96,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(269,690,l), +(164,690,l), +(17,0,l) +); +}, +{ +closed = 1; +nodes = ( +(355,295,l), +(374,386,l), +(29,386,l), +(10,295,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Eth; +} +); +width = 693; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,0,l), +(515,0,o), +(670,193,o), +(670,424,c), +(670,575,o), +(571,690,o), +(398,690,c), +(214,690,l), +(183,545,l), +(378,545,l), +(474,545,o), +(509,488,o), +(509,412,c), +(509,266,o), +(425,145,o), +(290,145,c), +(98,145,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,0,l), +(301,690,l), +(146,690,l), +(-1,0,l) +); +}, +{ +closed = 1; +nodes = ( +(355,280,l), +(380,401,l), +(22,401,l), +(-3,280,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Eth; +} +); +width = 699; +} +); +unicode = 272; +}, +{ +color = 6; +glyphname = Eth; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(503,0,o), +(657,196,o), +(657,441,cs), +(657,588,o), +(554,690,o), +(390,690,cs), +(214,690,l), +(193,594,l), +(367,594,ls), +(502,594,o), +(549,537,o), +(549,434,cs), +(549,249,o), +(441,96,o), +(261,96,cs), +(87,96,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(269,690,l), +(164,690,l), +(17,0,l) +); +}, +{ +closed = 1; +nodes = ( +(355,295,l), +(374,386,l), +(29,386,l), +(10,295,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(503,0,o), +(657,196,o), +(657,441,cs), +(657,588,o), +(554,690,o), +(390,690,cs), +(214,690,l), +(193,594,l), +(367,594,ls), +(502,594,o), +(549,537,o), +(549,434,cs), +(549,249,o), +(441,96,o), +(261,96,cs), +(87,96,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(269,690,l), +(164,690,l), +(17,0,l) +); +}, +{ +closed = 1; +nodes = ( +(355,295,l), +(374,386,l), +(29,386,l), +(10,295,l) +); +} +); +width = 693; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,0,l), +(515,0,o), +(670,193,o), +(670,424,c), +(670,575,o), +(571,690,o), +(398,690,c), +(214,690,l), +(183,545,l), +(378,545,l), +(474,545,o), +(509,488,o), +(509,412,c), +(509,266,o), +(425,145,o), +(290,145,c), +(98,145,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,0,l), +(301,690,l), +(146,690,l), +(-1,0,l) +); +}, +{ +closed = 1; +nodes = ( +(355,280,l), +(380,401,l), +(22,401,l), +(-3,280,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,0,l), +(515,0,o), +(670,193,o), +(670,424,c), +(670,575,o), +(571,690,o), +(398,690,c), +(214,690,l), +(183,545,l), +(378,545,l), +(474,545,o), +(509,488,o), +(509,412,c), +(509,266,o), +(425,145,o), +(290,145,c), +(98,145,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,0,l), +(301,690,l), +(146,690,l), +(-1,0,l) +); +}, +{ +closed = 1; +nodes = ( +(355,280,l), +(380,401,l), +(22,401,l), +(-3,280,l) +); +} +); +width = 699; +} +); +unicode = 208; +}, +{ +color = 6; +glyphname = E; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:03:07 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = ogonek; +pos = (492,0); +}, +{ +name = top; +pos = (398.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = top; +pos = (398.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +} +); +width = 611; +}, +{ +anchors = ( +{ +name = bottom; +pos = (254,0); +}, +{ +name = ogonek; +pos = (509,0); +}, +{ +name = top; +pos = (400.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (254,0); +}, +{ +name = top; +pos = (400.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +} +); +width = 617; +} +); +unicode = 69; +}, +{ +color = 10; +glyphname = Eacute; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(444,735,l), +(602,845,l), +(467,845,l), +(343,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,0); +ref = acutecomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(462,735,l), +(638,850,l), +(465,850,l), +(337,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (79,0); +ref = acutecomb.case; +} +); +width = 617; +} +); +unicode = 201; +}, +{ +color = 10; +glyphname = Ebreve; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(517,735,o), +(564,777,o), +(582,845,c), +(512,845,l), +(504,820,o), +(477,805,o), +(420,805,c), +(368,805,o), +(352,818,o), +(352,841,cs), +(352,845,l), +(282,845,l), +(281,838,o), +(281,833,o), +(281,828,cs), +(281,773,o), +(329,735,o), +(417,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = brevecomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(525,730,o), +(578,779,o), +(594,850,c), +(497,850,l), +(489,827,o), +(467,814,o), +(426,814,c), +(385,814,o), +(373,827,o), +(373,850,c), +(276,850,l), +(275,843,o), +(274,837,o), +(274,831,cs), +(274,770,o), +(327,730,o), +(421,730,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = brevecomb.case; +} +); +width = 617; +} +); +unicode = 276; +}, +{ +color = 10; +glyphname = Ecaron; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(444,735,l), +(430,766,l), +(342,845,l), +(249,845,l), +(339,735,l) +); +}, +{ +closed = 1; +nodes = ( +(477,735,l), +(615,845,l), +(508,845,l), +(387,766,l), +(372,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (74,0); +ref = caroncomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(455,735,l), +(439,773,l), +(358,850,l), +(241,850,l), +(326,735,l) +); +}, +{ +closed = 1; +nodes = ( +(494,735,l), +(629,850,l), +(502,850,l), +(387,773,l), +(365,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,0); +ref = caroncomb.case; +} +); +width = 617; +} +); +unicode = 282; +}, +{ +color = 10; +glyphname = Ecircumflex; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(332,735,l), +(453,814,l), +(468,845,l), +(363,845,l), +(225,735,l) +); +}, +{ +closed = 1; +nodes = ( +(591,735,l), +(501,845,l), +(396,845,l), +(410,814,l), +(498,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = circumflexcomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(343,735,l), +(458,812,l), +(480,850,l), +(351,850,l), +(216,735,l) +); +}, +{ +closed = 1; +nodes = ( +(604,735,l), +(519,850,l), +(390,850,l), +(406,812,l), +(487,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = circumflexcomb.case; +} +); +width = 617; +} +); +unicode = 202; +}, +{ +color = 10; +glyphname = Edieresis; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(350,742,o), +(376,767,o), +(376,802,c), +(376,834,o), +(355,855,o), +(324,855,c), +(289,855,o), +(264,830,o), +(264,793,c), +(264,763,o), +(285,742,o), +(315,742,c) +); +}, +{ +closed = 1; +nodes = ( +(553,742,o), +(579,767,o), +(579,802,c), +(579,834,o), +(558,855,o), +(527,855,c), +(492,855,o), +(467,830,o), +(467,793,c), +(467,763,o), +(488,742,o), +(518,742,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,0); +ref = dieresiscomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(353,742,o), +(385,770,o), +(385,813,c), +(385,850,o), +(361,873,o), +(320,873,c), +(278,873,o), +(246,845,o), +(246,802,c), +(246,765,o), +(269,742,o), +(311,742,c) +); +}, +{ +closed = 1; +nodes = ( +(573,742,o), +(605,770,o), +(605,813,c), +(605,850,o), +(581,873,o), +(540,873,c), +(498,873,o), +(466,845,o), +(466,802,c), +(466,765,o), +(489,742,o), +(531,742,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = dieresiscomb.case; +} +); +width = 617; +} +); +unicode = 203; +}, +{ +color = 10; +glyphname = Edotaccent; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(454,735,o), +(482,760,o), +(482,795,c), +(482,827,o), +(459,848,o), +(425,848,c), +(387,848,o), +(360,823,o), +(360,785,c), +(360,756,o), +(383,735,o), +(416,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = dotaccentcomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(467,741,o), +(503,771,o), +(503,817,c), +(503,856,o), +(476,881,o), +(432,881,c), +(387,881,o), +(351,851,o), +(351,804,c), +(351,766,o), +(378,741,o), +(422,741,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = dotaccentcomb.case; +} +); +width = 617; +} +); +unicode = 278; +}, +{ +color = 10; +glyphname = Edotbelow; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(256,-195,o), +(284,-168,o), +(284,-130,c), +(284,-95,o), +(261,-72,o), +(227,-72,c), +(189,-72,o), +(162,-99,o), +(162,-140,c), +(162,-172,o), +(185,-195,o), +(218,-195,c) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,0); +ref = dotbelow; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(268,-198,o), +(304,-166,o), +(304,-117,c), +(304,-75,o), +(277,-48,o), +(233,-48,c), +(188,-48,o), +(152,-80,o), +(152,-130,c), +(152,-171,o), +(179,-198,o), +(223,-198,c) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = dotbelow; +} +); +width = 617; +} +); +unicode = 7864; +}, +{ +color = 10; +glyphname = Egrave; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(467,735,l), +(391,845,l), +(266,845,l), +(379,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = gravecomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(476,735,l), +(398,850,l), +(237,850,l), +(366,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,0); +ref = gravecomb.case; +} +); +width = 617; +} +); +unicode = 200; +}, +{ +color = 10; +glyphname = Emacron; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(570,753,l), +(588,837,l), +(272,837,l), +(254,753,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,0); +ref = macroncomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(575,735,l), +(600,850,l), +(270,850,l), +(245,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (78,0); +ref = macroncomb.case; +} +); +width = 617; +} +); +unicode = 274; +}, +{ +color = 10; +glyphname = Eogonek; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:03:12 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(398,-185,o), +(435,-176,o), +(457,-165,c), +(465,-84,l), +(440,-96,o), +(409,-106,o), +(383,-106,c), +(372,-106,o), +(366,-101,o), +(366,-93,cs), +(366,-72,o), +(403,-38,o), +(492,0,c), +(392,0,l), +(307,-35,o), +(278,-74,o), +(278,-118,c), +(278,-155,o), +(304,-185,o), +(366,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (262,0); +ref = ogonekcomb; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(407,-190,o), +(442,-183,o), +(473,-170,c), +(484,-75,l), +(462,-87,o), +(434,-96,o), +(415,-96,c), +(402,-96,o), +(395,-90,o), +(395,-82,cs), +(395,-65,o), +(420,-36,o), +(509,0,c), +(404,0,l), +(311,-36,o), +(280,-82,o), +(280,-121,c), +(280,-158,o), +(310,-190,o), +(379,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (243,0); +ref = ogonekcomb; +} +); +width = 617; +} +); +unicode = 280; +}, +{ +color = 10; +glyphname = Etilde; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,0,l), +(512,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,306,l), +(512,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(613,594,l), +(634,690,l), +(199,690,l), +(178,594,l) +); +}, +{ +closed = 1; +nodes = ( +(318,735,l), +(320,757,o), +(333,773,o), +(356,773,c), +(392,773,o), +(419,735,o), +(476,735,c), +(539,735,o), +(578,777,o), +(590,845,c), +(522,845,l), +(520,823,o), +(507,807,o), +(484,807,c), +(449,807,o), +(421,845,o), +(364,845,c), +(301,845,o), +(262,803,o), +(250,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (76,0); +ref = tildecomb.case; +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(509,0,l), +(540,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,282,l), +(551,419,l), +(146,419,l), +(117,282,l) +); +}, +{ +closed = 1; +nodes = ( +(621,545,l), +(652,690,l), +(204,690,l), +(173,545,l) +); +}, +{ +closed = 1; +nodes = ( +(327,735,l), +(328,761,o), +(344,772,o), +(361,772,c), +(394,772,o), +(416,735,o), +(481,735,c), +(544,735,o), +(591,781,o), +(603,854,c), +(519,854,l), +(518,828,o), +(502,817,o), +(485,817,c), +(454,817,o), +(430,854,o), +(365,854,c), +(301,854,o), +(254,808,o), +(243,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = tildecomb.case; +} +); +width = 617; +} +); +unicode = 7868; +}, +{ +color = 6; +glyphname = Schwa; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(500,-10,o), +(662,190,o), +(662,441,cs), +(662,594,o), +(565,700,o), +(410,700,c), +(286,700,o), +(179,631,o), +(112,523,c), +(202,476,l), +(247,553,o), +(316,602,o), +(394,602,c), +(499,602,o), +(554,543,o), +(554,434,cs), +(554,244,o), +(445,88,o), +(305,88,c), +(199,88,o), +(145,146,o), +(145,254,cs), +(145,287,o), +(148,318,o), +(154,348,c), +(115,283,l), +(567,283,l), +(588,379,l), +(54,379,l), +(42,338,o), +(37,294,o), +(37,248,cs), +(37,94,o), +(133,-10,o), +(288,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(500,-10,o), +(662,190,o), +(662,441,cs), +(662,594,o), +(565,700,o), +(410,700,c), +(286,700,o), +(179,631,o), +(112,523,c), +(202,476,l), +(247,553,o), +(316,602,o), +(394,602,c), +(499,602,o), +(554,543,o), +(554,434,cs), +(554,244,o), +(445,88,o), +(305,88,c), +(199,88,o), +(145,146,o), +(145,254,cs), +(145,287,o), +(148,318,o), +(154,348,c), +(115,283,l), +(567,283,l), +(588,379,l), +(54,379,l), +(42,338,o), +(37,294,o), +(37,248,cs), +(37,94,o), +(133,-10,o), +(288,-10,c) +); +} +); +width = 698; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(290,704,o), +(180,638,o), +(111,537,c), +(245,466,l), +(282,522,o), +(336,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,131,o), +(327,131,c), +(231,131,o), +(190,188,o), +(190,278,c), +(190,301,o), +(192,324,o), +(196,345,c), +(128,275,l), +(565,275,l), +(594,409,l), +(53,409,l), +(39,364,o), +(31,317,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(290,704,o), +(180,638,o), +(111,537,c), +(245,466,l), +(282,522,o), +(336,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,131,o), +(327,131,c), +(231,131,o), +(190,188,o), +(190,278,c), +(190,301,o), +(192,324,o), +(196,345,c), +(128,275,l), +(565,275,l), +(594,409,l), +(53,409,l), +(39,364,o), +(31,317,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +} +); +width = 727; +} +); +unicode = 399; +}, +{ +color = 6; +glyphname = F; +kernLeft = H; +kernRight = F; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(488,286,l), +(508,382,l), +(133,382,l), +(113,286,l) +); +}, +{ +closed = 1; +nodes = ( +(593,594,l), +(614,690,l), +(199,690,l), +(178,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(488,286,l), +(508,382,l), +(133,382,l), +(113,286,l) +); +}, +{ +closed = 1; +nodes = ( +(593,594,l), +(614,690,l), +(199,690,l), +(178,594,l) +); +} +); +width = 575; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,262,l), +(529,399,l), +(142,399,l), +(113,262,l) +); +}, +{ +closed = 1; +nodes = ( +(601,545,l), +(632,690,l), +(204,690,l), +(173,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,262,l), +(529,399,l), +(142,399,l), +(113,262,l) +); +}, +{ +closed = 1; +nodes = ( +(601,545,l), +(632,690,l), +(204,690,l), +(173,545,l) +); +} +); +width = 582; +} +); +unicode = 70; +}, +{ +color = 6; +glyphname = G; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (278,0); +}, +{ +name = top; +pos = (437.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (278,0); +}, +{ +name = top; +pos = (437.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(401,-10,o), +(505,83,o), +(547,216,c), +(514,214,l), +(478,0,l), +(570,0,l), +(644,350,l), +(543,350,l), +(524,260,ls), +(503.074,164,o), +(395.57,88,o), +(298,88,c), +(197.745,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(257.578,602,o), +(403,602,c), +(501.105,602,o), +(555.837,551,o), +(561,456,c), +(668,486,l), +(654.734,612,o), +(560.848,700,o), +(419,700,c), +(202.522,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(125,-10,o), +(268,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(576,264,l), +(594,350,l), +(349,350,l), +(331,264,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(401,-10,o), +(505,83,o), +(547,216,c), +(514,214,l), +(478,0,l), +(570,0,l), +(644,350,l), +(543,350,l), +(524,260,ls), +(503.074,164,o), +(395.57,88,o), +(298,88,c), +(197.745,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(257.578,602,o), +(403,602,c), +(501.105,602,o), +(555.837,551,o), +(561,456,c), +(668,486,l), +(654.734,612,o), +(560.848,700,o), +(419,700,c), +(202.522,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(125,-10,o), +(268,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(576,264,l), +(594,350,l), +(349,350,l), +(331,264,l) +); +} +); +width = 703; +}, +{ +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (432.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (432.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(498,74,o), +(538,216,c), +(488,214,l), +(471,0,l), +(594,0,l), +(674,377,l), +(523,377,l), +(499,262,ls), +(482,182,o), +(407.097,132,o), +(320,132,c), +(230,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280.184,558,o), +(400,558,c), +(487.864,558,o), +(521,507,o), +(526,439,c), +(687,473,l), +(672,608,o), +(577.837,704,o), +(422,704,c), +(192.121,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(123,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(584,250,l), +(611,377,l), +(357,377,l), +(330,250,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(498,74,o), +(538,216,c), +(488,214,l), +(471,0,l), +(594,0,l), +(674,377,l), +(523,377,l), +(499,262,ls), +(482,182,o), +(407.097,132,o), +(320,132,c), +(230,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280.184,558,o), +(400,558,c), +(487.864,558,o), +(521,507,o), +(526,439,c), +(687,473,l), +(672,608,o), +(577.837,704,o), +(422,704,c), +(192.121,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(123,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(584,250,l), +(611,377,l), +(357,377,l), +(330,250,l) +); +} +); +width = 722; +} +); +unicode = 71; +}, +{ +color = 10; +glyphname = Gbreve; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(401,-10,o), +(505,83,o), +(547,216,c), +(514,214,l), +(478,0,l), +(570,0,l), +(644,350,l), +(543,350,l), +(524,260,ls), +(503,164,o), +(396,88,o), +(298,88,c), +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(258,602,o), +(403,602,c), +(501,602,o), +(556,551,o), +(561,456,c), +(668,486,l), +(655,612,o), +(561,700,o), +(419,700,c), +(203,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(125,-10,o), +(268,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(576,264,l), +(594,350,l), +(349,350,l), +(331,264,l) +); +}, +{ +closed = 1; +nodes = ( +(556,735,o), +(603,777,o), +(621,845,c), +(551,845,l), +(543,820,o), +(516,805,o), +(459,805,c), +(407,805,o), +(391,818,o), +(391,841,cs), +(391,845,l), +(321,845,l), +(320,838,o), +(320,833,o), +(320,828,cs), +(320,773,o), +(368,735,o), +(456,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (114,0); +ref = brevecomb.case; +} +); +width = 703; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(498,74,o), +(538,216,c), +(488,214,l), +(471,0,l), +(594,0,l), +(674,377,l), +(523,377,l), +(499,262,ls), +(482,182,o), +(407,132,o), +(320,132,c), +(230,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(488,558,o), +(521,507,o), +(526,439,c), +(687,473,l), +(672,608,o), +(578,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(123,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(584,250,l), +(611,377,l), +(357,377,l), +(330,250,l) +); +}, +{ +closed = 1; +nodes = ( +(557,730,o), +(610,779,o), +(626,850,c), +(529,850,l), +(521,827,o), +(499,814,o), +(458,814,c), +(417,814,o), +(405,827,o), +(405,850,c), +(308,850,l), +(307,843,o), +(306,837,o), +(306,831,cs), +(306,770,o), +(359,730,o), +(453,730,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = G; +}, +{ +pos = (109,0); +ref = brevecomb.case; +} +); +width = 722; +} +); +unicode = 286; +}, +{ +color = 10; +glyphname = Gcaron; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(401,-10,o), +(505,83,o), +(547,216,c), +(514,214,l), +(478,0,l), +(570,0,l), +(644,350,l), +(543,350,l), +(524,260,ls), +(503,164,o), +(396,88,o), +(298,88,c), +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(258,602,o), +(403,602,c), +(501,602,o), +(556,551,o), +(561,456,c), +(668,486,l), +(655,612,o), +(561,700,o), +(419,700,c), +(203,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(125,-10,o), +(268,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(576,264,l), +(594,350,l), +(349,350,l), +(331,264,l) +); +}, +{ +closed = 1; +nodes = ( +(483,735,l), +(469,766,l), +(381,845,l), +(288,845,l), +(378,735,l) +); +}, +{ +closed = 1; +nodes = ( +(516,735,l), +(654,845,l), +(547,845,l), +(426,766,l), +(411,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (113,0); +ref = caroncomb.case; +} +); +width = 703; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(498,74,o), +(538,216,c), +(488,214,l), +(471,0,l), +(594,0,l), +(674,377,l), +(523,377,l), +(499,262,ls), +(482,182,o), +(407,132,o), +(320,132,c), +(230,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(488,558,o), +(521,507,o), +(526,439,c), +(687,473,l), +(672,608,o), +(578,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(123,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(584,250,l), +(611,377,l), +(357,377,l), +(330,250,l) +); +}, +{ +closed = 1; +nodes = ( +(487,735,l), +(471,773,l), +(390,850,l), +(273,850,l), +(358,735,l) +); +}, +{ +closed = 1; +nodes = ( +(526,735,l), +(661,850,l), +(534,850,l), +(419,773,l), +(397,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = G; +}, +{ +pos = (108,0); +ref = caroncomb.case; +} +); +width = 722; +} +); +unicode = 486; +}, +{ +color = 10; +glyphname = Gcircumflex; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(401,-10,o), +(505,83,o), +(547,216,c), +(514,214,l), +(478,0,l), +(570,0,l), +(644,350,l), +(543,350,l), +(524,260,ls), +(503,164,o), +(396,88,o), +(298,88,c), +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(258,602,o), +(403,602,c), +(501,602,o), +(556,551,o), +(561,456,c), +(668,486,l), +(655,612,o), +(561,700,o), +(419,700,c), +(203,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(125,-10,o), +(268,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(576,264,l), +(594,350,l), +(349,350,l), +(331,264,l) +); +}, +{ +closed = 1; +nodes = ( +(371,735,l), +(492,814,l), +(507,845,l), +(402,845,l), +(264,735,l) +); +}, +{ +closed = 1; +nodes = ( +(630,735,l), +(540,845,l), +(435,845,l), +(449,814,l), +(537,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (114,0); +ref = circumflexcomb.case; +} +); +width = 703; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(498,74,o), +(538,216,c), +(488,214,l), +(471,0,l), +(594,0,l), +(674,377,l), +(523,377,l), +(499,262,ls), +(482,182,o), +(407,132,o), +(320,132,c), +(230,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(488,558,o), +(521,507,o), +(526,439,c), +(687,473,l), +(672,608,o), +(578,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(123,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(584,250,l), +(611,377,l), +(357,377,l), +(330,250,l) +); +}, +{ +closed = 1; +nodes = ( +(375,735,l), +(490,812,l), +(512,850,l), +(383,850,l), +(248,735,l) +); +}, +{ +closed = 1; +nodes = ( +(636,735,l), +(551,850,l), +(422,850,l), +(438,812,l), +(519,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = G; +}, +{ +pos = (109,0); +ref = circumflexcomb.case; +} +); +width = 722; +} +); +unicode = 284; +}, +{ +color = 10; +glyphname = Gcommaaccent; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(401,-10,o), +(505,83,o), +(547,216,c), +(514,214,l), +(478,0,l), +(570,0,l), +(644,350,l), +(543,350,l), +(524,260,ls), +(503,164,o), +(396,88,o), +(298,88,c), +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(258,602,o), +(403,602,c), +(501,602,o), +(556,551,o), +(561,456,c), +(668,486,l), +(655,612,o), +(561,700,o), +(419,700,c), +(203,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(125,-10,o), +(268,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(236,-275,l), +(320,-72,l), +(216,-72,l), +(173,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(576,264,l), +(594,350,l), +(349,350,l), +(331,264,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (101,0); +ref = commaaccentcomb; +} +); +width = 703; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(498,74,o), +(538,216,c), +(488,214,l), +(471,0,l), +(594,0,l), +(674,377,l), +(523,377,l), +(499,262,ls), +(482,182,o), +(407,132,o), +(320,132,c), +(230,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(488,558,o), +(521,507,o), +(526,439,c), +(687,473,l), +(672,608,o), +(578,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(123,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(256,-270,l), +(344,-54,l), +(212,-54,l), +(166,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(584,250,l), +(611,377,l), +(357,377,l), +(330,250,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = G; +}, +{ +pos = (108,0); +ref = commaaccentcomb; +} +); +width = 722; +} +); +unicode = 290; +}, +{ +color = 10; +glyphname = Gdotaccent; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(401,-10,o), +(505,83,o), +(547,216,c), +(514,214,l), +(478,0,l), +(570,0,l), +(644,350,l), +(543,350,l), +(524,260,ls), +(503,164,o), +(396,88,o), +(298,88,c), +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(258,602,o), +(403,602,c), +(501,602,o), +(556,551,o), +(561,456,c), +(668,486,l), +(655,612,o), +(561,700,o), +(419,700,c), +(203,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(125,-10,o), +(268,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(576,264,l), +(594,350,l), +(349,350,l), +(331,264,l) +); +}, +{ +closed = 1; +nodes = ( +(493,735,o), +(521,760,o), +(521,795,c), +(521,827,o), +(498,848,o), +(464,848,c), +(426,848,o), +(399,823,o), +(399,785,c), +(399,756,o), +(422,735,o), +(455,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (114,0); +ref = dotaccentcomb.case; +} +); +width = 703; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(498,74,o), +(538,216,c), +(488,214,l), +(471,0,l), +(594,0,l), +(674,377,l), +(523,377,l), +(499,262,ls), +(482,182,o), +(407,132,o), +(320,132,c), +(230,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(488,558,o), +(521,507,o), +(526,439,c), +(687,473,l), +(672,608,o), +(578,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(123,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(584,250,l), +(611,377,l), +(357,377,l), +(330,250,l) +); +}, +{ +closed = 1; +nodes = ( +(499,741,o), +(535,771,o), +(535,817,c), +(535,856,o), +(508,881,o), +(464,881,c), +(419,881,o), +(383,851,o), +(383,804,c), +(383,766,o), +(410,741,o), +(454,741,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = G; +}, +{ +pos = (109,0); +ref = dotaccentcomb.case; +} +); +width = 722; +} +); +unicode = 288; +}, +{ +color = 6; +glyphname = H; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-22 13:33:31 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (296,0); +}, +{ +name = center; +pos = (406,518); +}, +{ +name = top; +pos = (442,690); +}, +{ +name = topleft; +pos = (110,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (296,0); +}, +{ +name = center; +pos = (406,518); +}, +{ +name = top; +pos = (442,690); +}, +{ +name = topleft; +pos = (110,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(557,0,l), +(704,690,l), +(599,690,l), +(452,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(572,306,l), +(592,402,l), +(137,402,l), +(117,306,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(172,306,l), +(517,306,l), +(452,0,l), +(557,0,l), +(704,690,l), +(599,690,l), +(538,402,l), +(193,402,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +width = 704; +}, +{ +anchors = ( +{ +name = bottom; +pos = (301,0); +}, +{ +name = center; +pos = (411,518); +}, +{ +name = top; +pos = (447,690); +}, +{ +name = topleft; +pos = (110,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (301,0); +}, +{ +name = center; +pos = (411,518); +}, +{ +name = top; +pos = (447,690); +}, +{ +name = topleft; +pos = (110,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(571,278,l), +(602,423,l), +(147,423,l), +(116,278,l) +); +}, +{ +closed = 1; +nodes = ( +(580,0,l), +(727,690,l), +(573,690,l), +(426,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(203,278,l), +(485,278,l), +(426,0,l), +(580,0,l), +(727,690,l), +(573,690,l), +(516,423,l), +(234,423,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +width = 714; +} +); +unicode = 72; +}, +{ +color = 6; +glyphname = Hbar; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(572,0,l), +(719,690,l), +(614,690,l), +(467,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(269,690,l), +(164,690,l), +(17,0,l) +); +}, +{ +closed = 1; +nodes = ( +(583,286,l), +(603,382,l), +(148,382,l), +(128,286,l) +); +}, +{ +closed = 1; +nodes = ( +(744,482,l), +(764,573,l), +(69,573,l), +(49,482,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(122,0,l), +(183,286,l), +(528,286,l), +(467,0,l), +(572,0,l), +(719,690,l), +(614,690,l), +(548,382,l), +(203,382,l), +(269,690,l), +(164,690,l), +(17,0,l) +); +}, +{ +closed = 1; +nodes = ( +(744,482,l), +(764,573,l), +(69,573,l), +(49,482,l) +); +} +); +width = 734; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(149,0,l), +(296,690,l), +(141,690,l), +(-6,0,l) +); +}, +{ +closed = 1; +nodes = ( +(566,228,l), +(597,373,l), +(142,373,l), +(111,228,l) +); +}, +{ +closed = 1; +nodes = ( +(744,478,l), +(769,599,l), +(64,599,l), +(39,478,l) +); +}, +{ +closed = 1; +nodes = ( +(585,0,l), +(732,690,l), +(578,690,l), +(431,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(149,0,l), +(198,228,l), +(480,228,l), +(431,0,l), +(585,0,l), +(732,690,l), +(578,690,l), +(510,373,l), +(228,373,l), +(296,690,l), +(141,690,l), +(-6,0,l) +); +}, +{ +closed = 1; +nodes = ( +(744,478,l), +(769,599,l), +(64,599,l), +(39,478,l) +); +} +); +width = 724; +} +); +unicode = 294; +}, +{ +color = 10; +glyphname = Hcircumflex; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(557,0,l), +(704,690,l), +(599,690,l), +(452,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(572,306,l), +(592,402,l), +(137,402,l), +(117,306,l) +); +}, +{ +closed = 1; +nodes = ( +(360,735,l), +(481,814,l), +(496,845,l), +(391,845,l), +(253,735,l) +); +}, +{ +closed = 1; +nodes = ( +(619,735,l), +(529,845,l), +(424,845,l), +(438,814,l), +(526,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = H; +}, +{ +pos = (118,0); +ref = circumflexcomb.case; +} +); +width = 704; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(571,278,l), +(602,423,l), +(147,423,l), +(116,278,l) +); +}, +{ +closed = 1; +nodes = ( +(580,0,l), +(727,690,l), +(573,690,l), +(426,0,l) +); +}, +{ +closed = 1; +nodes = ( +(374,735,l), +(489,812,l), +(511,850,l), +(382,850,l), +(247,735,l) +); +}, +{ +closed = 1; +nodes = ( +(635,735,l), +(550,850,l), +(421,850,l), +(437,812,l), +(518,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = H; +}, +{ +pos = (123,0); +ref = circumflexcomb.case; +} +); +width = 714; +} +); +unicode = 292; +}, +{ +color = 6; +glyphname = I; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:03:14 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (55,0); +}, +{ +name = ogonek; +pos = (107,0); +}, +{ +name = top; +pos = (201.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (55,0); +}, +{ +name = top; +pos = (201.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +width = 254; +}, +{ +anchors = ( +{ +name = bottom; +pos = (66,0); +}, +{ +name = ogonek; +pos = (144,0); +}, +{ +name = top; +pos = (212.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (66,0); +}, +{ +name = top; +pos = (212.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +width = 278; +} +); +unicode = 73; +}, +{ +color = 10; +glyphname = IJ; +kernLeft = H; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(586,-10,o), +(679,74,o), +(714,237,cs), +(811,690,l), +(706,690,l), +(611,244,ls), +(588,138,o), +(538,87,o), +(456,87,c), +(378,87,o), +(340,136,o), +(347,226,c), +(248,214,l), +(244,67,o), +(327,-10,o), +(448,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (254,0); +ref = J; +} +); +width = 805; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(657,-14,o), +(751,76,o), +(789,253,cs), +(882,690,l), +(727,690,l), +(635,261,ls), +(618,180,o), +(570,132,o), +(503,132,c), +(443,132,o), +(411,173,o), +(406,241,c), +(261,202,l), +(270,66,o), +(362,-14,o), +(493,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (278,0); +ref = J; +} +); +width = 862; +} +); +unicode = 306; +}, +{ +color = 10; +glyphname = Iacute; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(247,735,l), +(405,845,l), +(270,845,l), +(146,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-121,0); +ref = acutecomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(274,735,l), +(450,850,l), +(277,850,l), +(149,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-109,0); +ref = acutecomb.case; +} +); +width = 278; +} +); +unicode = 205; +}, +{ +color = 10; +glyphname = Ibreve; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(255,690,l), +(150,690,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(321,735,o), +(368,777,o), +(386,845,c), +(316,845,l), +(308,820,o), +(281,805,o), +(224,805,c), +(172,805,o), +(156,818,o), +(156,841,cs), +(156,845,l), +(86,845,l), +(85,838,o), +(85,833,o), +(85,828,cs), +(85,773,o), +(133,735,o), +(221,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = brevecomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(145,0,l), +(292,690,l), +(137,690,l), +(-10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(338,730,o), +(391,779,o), +(407,850,c), +(310,850,l), +(302,827,o), +(280,814,o), +(239,814,c), +(198,814,o), +(186,827,o), +(186,850,c), +(89,850,l), +(88,843,o), +(87,837,o), +(87,831,cs), +(87,770,o), +(140,730,o), +(234,730,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = brevecomb.case; +} +); +width = 278; +} +); +unicode = 300; +}, +{ +color = 10; +glyphname = Icircumflex; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(135,735,l), +(256,814,l), +(271,845,l), +(166,845,l), +(28,735,l) +); +}, +{ +closed = 1; +nodes = ( +(394,735,l), +(304,845,l), +(199,845,l), +(213,814,l), +(301,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = circumflexcomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(155,735,l), +(270,812,l), +(292,850,l), +(163,850,l), +(28,735,l) +); +}, +{ +closed = 1; +nodes = ( +(416,735,l), +(331,850,l), +(202,850,l), +(218,812,l), +(299,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = circumflexcomb.case; +} +); +width = 278; +} +); +unicode = 206; +}, +{ +color = 10; +glyphname = Idieresis; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(153,742,o), +(179,767,o), +(179,802,c), +(179,834,o), +(158,855,o), +(127,855,c), +(92,855,o), +(67,830,o), +(67,793,c), +(67,763,o), +(88,742,o), +(118,742,c) +); +}, +{ +closed = 1; +nodes = ( +(356,742,o), +(382,767,o), +(382,802,c), +(382,834,o), +(361,855,o), +(330,855,c), +(295,855,o), +(270,830,o), +(270,793,c), +(270,763,o), +(291,742,o), +(321,742,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-121,0); +ref = dieresiscomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,742,o), +(197,770,o), +(197,813,c), +(197,850,o), +(173,873,o), +(132,873,c), +(90,873,o), +(58,845,o), +(58,802,c), +(58,765,o), +(81,742,o), +(123,742,c) +); +}, +{ +closed = 1; +nodes = ( +(385,742,o), +(417,770,o), +(417,813,c), +(417,850,o), +(393,873,o), +(352,873,c), +(310,873,o), +(278,845,o), +(278,802,c), +(278,765,o), +(301,742,o), +(343,742,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = dieresiscomb.case; +} +); +width = 278; +} +); +unicode = 207; +}, +{ +color = 10; +glyphname = Idotaccent; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(255,690,l), +(150,690,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(258,735,o), +(286,760,o), +(286,795,c), +(286,827,o), +(263,848,o), +(229,848,c), +(191,848,o), +(164,823,o), +(164,785,c), +(164,756,o), +(187,735,o), +(220,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = dotaccentcomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(279,741,o), +(315,771,o), +(315,817,c), +(315,856,o), +(288,881,o), +(244,881,c), +(199,881,o), +(163,851,o), +(163,804,c), +(163,766,o), +(190,741,o), +(234,741,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = dotaccentcomb.case; +} +); +width = 278; +} +); +unicode = 304; +}, +{ +color = 10; +glyphname = Idotbelow; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(59,-195,o), +(87,-168,o), +(87,-130,c), +(87,-95,o), +(64,-72,o), +(30,-72,c), +(-8,-72,o), +(-35,-99,o), +(-35,-140,c), +(-35,-172,o), +(-12,-195,o), +(21,-195,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-121,0); +ref = dotbelow; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(80,-198,o), +(116,-166,o), +(116,-117,c), +(116,-75,o), +(89,-48,o), +(45,-48,c), +(0,-48,o), +(-36,-80,o), +(-36,-130,c), +(-36,-171,o), +(-9,-198,o), +(35,-198,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = dotbelow; +} +); +width = 278; +} +); +unicode = 7882; +}, +{ +color = 10; +glyphname = Igrave; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(255,690,l), +(150,690,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(271,735,l), +(195,845,l), +(70,845,l), +(183,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = gravecomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(145,0,l), +(292,690,l), +(137,690,l), +(-10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(289,735,l), +(211,850,l), +(50,850,l), +(179,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-112,0); +ref = gravecomb.case; +} +); +width = 278; +} +); +unicode = 204; +}, +{ +color = 10; +glyphname = Imacron; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(373,753,l), +(391,837,l), +(75,837,l), +(57,753,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-121,0); +ref = macroncomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(387,735,l), +(412,850,l), +(82,850,l), +(57,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-110,0); +ref = macroncomb.case; +} +); +width = 278; +} +); +unicode = 298; +}, +{ +color = 10; +glyphname = Iogonek; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:03:14 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(13,-185,o), +(50,-176,o), +(72,-165,c), +(80,-84,l), +(55,-96,o), +(24,-106,o), +(-2,-106,c), +(-13,-106,o), +(-19,-101,o), +(-19,-93,cs), +(-19,-72,o), +(18,-38,o), +(107,0,c), +(2,0,l), +(-78,-35,o), +(-107,-74,o), +(-107,-118,c), +(-107,-155,o), +(-81,-185,o), +(-19,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-123,0); +ref = ogonekcomb; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(145,0,l), +(292,690,l), +(137,690,l), +(-10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(43,-190,o), +(78,-183,o), +(109,-170,c), +(120,-75,l), +(98,-87,o), +(70,-96,o), +(51,-96,c), +(38,-96,o), +(31,-90,o), +(31,-82,cs), +(31,-65,o), +(56,-36,o), +(145,0,c), +(40,0,l), +(-53,-36,o), +(-84,-82,o), +(-84,-121,c), +(-84,-158,o), +(-54,-190,o), +(15,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = ogonekcomb; +} +); +width = 278; +} +); +unicode = 302; +}, +{ +color = 10; +glyphname = Itilde; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(121,735,l), +(123,757,o), +(136,773,o), +(159,773,c), +(195,773,o), +(222,735,o), +(279,735,c), +(342,735,o), +(381,777,o), +(393,845,c), +(325,845,l), +(323,823,o), +(310,807,o), +(287,807,c), +(252,807,o), +(224,845,o), +(167,845,c), +(104,845,o), +(65,803,o), +(53,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-121,0); +ref = tildecomb.case; +} +); +width = 254; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(145,0,l), +(292,690,l), +(137,690,l), +(-10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(140,735,l), +(141,761,o), +(157,772,o), +(174,772,c), +(207,772,o), +(229,735,o), +(294,735,c), +(357,735,o), +(404,781,o), +(416,854,c), +(332,854,l), +(331,828,o), +(315,817,o), +(298,817,c), +(267,817,o), +(243,854,o), +(178,854,c), +(114,854,o), +(67,808,o), +(56,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = tildecomb.case; +} +); +width = 278; +} +); +unicode = 296; +}, +{ +color = 6; +glyphname = J; +kernLeft = J; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (501.803,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (501.803,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(331.139,-10,o), +(424.139,74,o), +(459.139,237,cs), +(556.139,690,l), +(451.139,690,l), +(356.139,244,ls), +(333.139,138,o), +(283.139,87,o), +(201.139,87,c), +(123.139,87,o), +(85.139,136,o), +(92.139,226,c), +(-6.861,214,l), +(-10.861,67,o), +(72.139,-10,o), +(193.139,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(331.139,-10,o), +(424.139,74,o), +(459.139,237,cs), +(556.139,690,l), +(451.139,690,l), +(356.139,244,ls), +(333.139,138,o), +(283.139,87,o), +(201.139,87,c), +(123.139,87,o), +(85.139,136,o), +(92.139,226,c), +(-6.861,214,l), +(-10.861,67,o), +(72.139,-10,o), +(193.139,-10,c) +); +} +); +width = 551; +}, +{ +anchors = ( +{ +name = top; +pos = (525.664,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (525.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(379,-14,o), +(473,76,o), +(511,253,cs), +(604,690,l), +(449,690,l), +(357,261,ls), +(340,180,o), +(292,132,o), +(225,132,c), +(165,132,o), +(133,173,o), +(128,241,c), +(-17,202,l), +(-8,66,o), +(84,-14,o), +(215,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,-14,o), +(473,76,o), +(511,253,cs), +(604,690,l), +(449,690,l), +(357,261,ls), +(340,180,o), +(292,132,o), +(225,132,c), +(165,132,o), +(133,173,o), +(128,241,c), +(-17,202,l), +(-8,66,o), +(84,-14,o), +(215,-14,c) +); +} +); +width = 584; +} +); +unicode = 74; +}, +{ +color = 10; +glyphname = Jcircumflex; +kernLeft = J; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(331.139,-10,o), +(424.139,74,o), +(459.139,237,cs), +(556.139,690,l), +(451.139,690,l), +(356.139,244,ls), +(333.139,138,o), +(283.139,87,o), +(201.139,87,c), +(123.139,87,o), +(85.139,136,o), +(92.139,226,c), +(-6.861,214,l), +(-10.861,67,o), +(72.139,-10,o), +(193.139,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(435.139,735,l), +(556.139,814,l), +(571.139,845,l), +(466.139,845,l), +(328.139,735,l) +); +}, +{ +closed = 1; +nodes = ( +(694.139,735,l), +(604.139,845,l), +(499.139,845,l), +(513.139,814,l), +(601.139,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = J; +}, +{ +pos = (178,0); +ref = circumflexcomb.case; +} +); +width = 551; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(379,-14,o), +(473,76,o), +(511,253,cs), +(604,690,l), +(449,690,l), +(357,261,ls), +(340,180,o), +(292,132,o), +(225,132,c), +(165,132,o), +(133,173,o), +(128,241,c), +(-17,202,l), +(-8,66,o), +(84,-14,o), +(215,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(468,735,l), +(583,812,l), +(605,850,l), +(476,850,l), +(341,735,l) +); +}, +{ +closed = 1; +nodes = ( +(729,735,l), +(644,850,l), +(515,850,l), +(531,812,l), +(612,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = J; +}, +{ +pos = (202,0); +ref = circumflexcomb.case; +} +); +width = 584; +} +); +unicode = 308; +}, +{ +color = 6; +glyphname = K; +kernLeft = H; +kernRight = X; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (410.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (410.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(683,690,l), +(546,690,l), +(148,320,l), +(116,171,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(555,0,l), +(351,403,l), +(277,334,l), +(439,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(683,690,l), +(546,690,l), +(148,320,l), +(116,171,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(555,0,l), +(351,403,l), +(277,334,l), +(439,0,l) +); +} +); +width = 641; +}, +{ +anchors = ( +{ +name = bottom; +pos = (258,0); +}, +{ +name = top; +pos = (404.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (258,0); +}, +{ +name = top; +pos = (404.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(713,690,l), +(511,690,l), +(183,367,l), +(138,148,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(375,415,l), +(267,309,l), +(411,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(713,690,l), +(511,690,l), +(183,367,l), +(138,148,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(375,415,l), +(267,309,l), +(411,0,l) +); +} +); +width = 657; +} +); +unicode = 75; +}, +{ +color = 10; +glyphname = Kcommaaccent; +kernLeft = H; +kernRight = X; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(683,690,l), +(546,690,l), +(148,320,l), +(116,171,l) +); +}, +{ +closed = 1; +nodes = ( +(222,-275,l), +(306,-72,l), +(202,-72,l), +(159,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(555,0,l), +(351,403,l), +(277,334,l), +(439,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = K; +}, +{ +pos = (87,0); +ref = commaaccentcomb; +} +); +width = 641; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(713,690,l), +(511,690,l), +(183,367,l), +(138,148,l) +); +}, +{ +closed = 1; +nodes = ( +(229,-270,l), +(317,-54,l), +(185,-54,l), +(139,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(375,415,l), +(267,309,l), +(411,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = K; +}, +{ +pos = (81,0); +ref = commaaccentcomb; +} +); +width = 657; +} +); +unicode = 310; +}, +{ +color = 6; +glyphname = L; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (214,0); +}, +{ +name = center; +pos = (123,345); +}, +{ +name = top; +pos = (196,690); +}, +{ +name = topright; +pos = (392,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (229,0); +}, +{ +name = top; +pos = (201.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(457,96,l), +(72,96,l), +(52,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(457,96,l), +(72,96,l), +(52,0,l) +); +} +); +width = 539; +}, +{ +anchors = ( +{ +name = bottom; +pos = (216,0); +}, +{ +name = center; +pos = (139,345); +}, +{ +name = top; +pos = (212,690); +}, +{ +name = topright; +pos = (402,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (209,0); +}, +{ +name = top; +pos = (212.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(442,0,l), +(473,145,l), +(88,145,l), +(57,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(442,0,l), +(473,145,l), +(88,145,l), +(57,0,l) +); +} +); +width = 544; +} +); +unicode = 76; +}, +{ +color = 10; +glyphname = Lacute; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(457,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(247,735,l), +(405,845,l), +(270,845,l), +(146,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +pos = (-127,0); +ref = acutecomb.case; +} +); +width = 539; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(442,0,l), +(473,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(274,735,l), +(450,850,l), +(277,850,l), +(149,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = L; +}, +{ +pos = (-110,0); +ref = acutecomb.case; +} +); +width = 544; +} +); +unicode = 313; +}, +{ +color = 10; +glyphname = Lcaron; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(457,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(414,417,l), +(516,690,l), +(412,690,l), +(354,417,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +pos = (130,-25); +ref = caroncomb.alt; +} +); +width = 539; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(442,0,l), +(473,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(444,383,l), +(572,690,l), +(422,690,l), +(356,383,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = L; +}, +{ +pos = (154,-25); +ref = caroncomb.alt; +} +); +width = 544; +} +); +unicode = 317; +}, +{ +color = 10; +glyphname = Lcommaaccent; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,-275,l), +(271,-72,l), +(167,-72,l), +(124,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(457,96,l), +(72,96,l), +(52,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +pos = (37,0); +ref = commaaccentcomb; +} +); +width = 539; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,-270,l), +(268,-54,l), +(136,-54,l), +(90,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(442,0,l), +(473,145,l), +(88,145,l), +(57,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = L; +}, +{ +pos = (39,0); +ref = commaaccentcomb; +} +); +width = 544; +} +); +unicode = 315; +}, +{ +color = 10; +glyphname = Ldot; +kernLeft = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(457,96,l), +(72,96,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(428,271,o), +(458,300,o), +(458,342,c), +(458,379,o), +(433,404,o), +(396,404,c), +(355,404,o), +(326,375,o), +(326,331,c), +(326,296,o), +(351,271,o), +(387,271,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +ref = periodcentered.loclCAT.case; +} +); +width = 539; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(442,0,l), +(473,145,l), +(88,145,l), +(57,0,l) +); +}, +{ +closed = 1; +nodes = ( +(453,249,o), +(495,286,o), +(495,344,c), +(495,392,o), +(464,424,o), +(412,424,c), +(360,424,o), +(318,386,o), +(318,328,c), +(318,280,o), +(349,249,o), +(400,249,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = L; +}, +{ +ref = periodcentered.loclCAT.case; +} +); +width = 544; +} +); +unicode = 319; +}, +{ +color = 6; +glyphname = Lslash; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(384,388,l), +(407,493,l), +(14,317,l), +(-8,212,l) +); +}, +{ +closed = 1; +nodes = ( +(452,0,l), +(472,96,l), +(87,96,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(269,690,l), +(164,690,l), +(17,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(384,388,l), +(407,493,l), +(14,317,l), +(-8,212,l) +); +}, +{ +closed = 1; +nodes = ( +(452,0,l), +(472,96,l), +(87,96,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(269,690,l), +(164,690,l), +(17,0,l) +); +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(417,378,l), +(447,517,l), +(5,319,l), +(-25,180,l) +); +}, +{ +closed = 1; +nodes = ( +(452,0,l), +(483,145,l), +(98,145,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,0,l), +(301,690,l), +(146,690,l), +(-1,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(417,378,l), +(447,517,l), +(5,319,l), +(-25,180,l) +); +}, +{ +closed = 1; +nodes = ( +(452,0,l), +(483,145,l), +(98,145,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,0,l), +(301,690,l), +(146,690,l), +(-1,0,l) +); +} +); +width = 554; +} +); +unicode = 321; +}, +{ +color = 6; +glyphname = M; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(393,0,l), +(311,690,l), +(213,690,l), +(294,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(429,0,l), +(788,690,l), +(684,690,l), +(331,0,l) +); +}, +{ +closed = 1; +nodes = ( +(714,0,l), +(861,690,l), +(756,690,l), +(609,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(102,0,l), +(226,581,l), +(294,0,l), +(429,0,l), +(734,586,l), +(609,0,l), +(714,0,l), +(861,690,l), +(684,690,l), +(381,98,l), +(311,690,l), +(149,690,l), +(2,0,l) +); +} +); +width = 861; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(484,0,l), +(781,690,l), +(627,690,l), +(341,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(398,0,l), +(404,690,l), +(253,690,l), +(259,0,l) +); +}, +{ +closed = 1; +nodes = ( +(759,0,l), +(906,690,l), +(751,690,l), +(604,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,0,l), +(254,555,l), +(259,0,l), +(484,0,l), +(722,552,l), +(604,0,l), +(759,0,l), +(906,690,l), +(627,690,l), +(399,140,l), +(404,690,l), +(136,690,l), +(-11,0,l) +); +} +); +width = 893; +} +); +unicode = 77; +}, +{ +color = 6; +glyphname = N; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = top; +pos = (428.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = top; +pos = (428.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +} +); +width = 701; +}, +{ +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = top; +pos = (431,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = top; +pos = (431,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +} +); +width = 716; +} +); +unicode = 78; +}, +{ +color = 10; +glyphname = Nacute; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(474,735,l), +(632,845,l), +(497,845,l), +(373,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (106,0); +ref = acutecomb.case; +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +}, +{ +closed = 1; +nodes = ( +(492,735,l), +(668,850,l), +(495,850,l), +(367,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = N; +}, +{ +pos = (109,0); +ref = acutecomb.case; +} +); +width = 716; +} +); +unicode = 323; +}, +{ +color = 10; +glyphname = Ncaron; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(474,735,l), +(460,766,l), +(372,845,l), +(279,845,l), +(369,735,l) +); +}, +{ +closed = 1; +nodes = ( +(507,735,l), +(645,845,l), +(538,845,l), +(417,766,l), +(402,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (104,0); +ref = caroncomb.case; +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +}, +{ +closed = 1; +nodes = ( +(485,735,l), +(469,773,l), +(388,850,l), +(271,850,l), +(356,735,l) +); +}, +{ +closed = 1; +nodes = ( +(524,735,l), +(659,850,l), +(532,850,l), +(417,773,l), +(395,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = N; +}, +{ +pos = (106,0); +ref = caroncomb.case; +} +); +width = 716; +} +); +unicode = 327; +}, +{ +color = 10; +glyphname = Ncommaaccent; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(240,-275,l), +(324,-72,l), +(220,-72,l), +(177,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (105,0); +ref = commaaccentcomb; +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(255,-270,l), +(343,-54,l), +(211,-54,l), +(165,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = N; +}, +{ +pos = (107,0); +ref = commaaccentcomb; +} +); +width = 716; +} +); +unicode = 325; +}, +{ +color = 6; +glyphname = Nhookleft; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(7,-185,o), +(73,-138,o), +(98,-21,cs), +(249,690,l), +(149,690,l), +(-2,-17,ls), +(-13,-70,o), +(-46,-94,o), +(-91,-94,c), +(-114,-94,o), +(-134,-88,o), +(-154,-79,c), +(-173,-168,l), +(-147,-178,o), +(-119,-185,o), +(-87,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(7,-185,o), +(73,-138,o), +(98,-21,cs), +(249,690,l), +(149,690,l), +(-2,-17,ls), +(-13,-70,o), +(-46,-94,o), +(-91,-94,c), +(-114,-94,o), +(-134,-88,o), +(-154,-79,c), +(-173,-168,l), +(-147,-178,o), +(-119,-185,o), +(-87,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(27,-189,o), +(106,-143,o), +(133,-14,cs), +(283,690,l), +(136,690,l), +(-9,9,ls), +(-18,-32,o), +(-44,-54,o), +(-85,-54,c), +(-110,-54,o), +(-132,-49,o), +(-152,-41,c), +(-180,-172,l), +(-155,-183,o), +(-116,-189,o), +(-76,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(27,-189,o), +(106,-143,o), +(133,-14,cs), +(283,690,l), +(136,690,l), +(-9,9,ls), +(-18,-32,o), +(-44,-54,o), +(-85,-54,c), +(-110,-54,o), +(-132,-49,o), +(-152,-41,c), +(-180,-172,l), +(-155,-183,o), +(-116,-189,o), +(-76,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +} +); +width = 716; +} +); +unicode = 413; +}, +{ +color = 10; +glyphname = Ntilde; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(554,0,l), +(701,690,l), +(601,690,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(348,735,l), +(350,757,o), +(363,773,o), +(386,773,c), +(422,773,o), +(449,735,o), +(506,735,c), +(569,735,o), +(608,777,o), +(620,845,c), +(552,845,l), +(550,823,o), +(537,807,o), +(514,807,c), +(479,807,o), +(451,845,o), +(394,845,c), +(331,845,o), +(292,803,o), +(280,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (106,0); +ref = tildecomb.case; +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(729,690,l), +(582,690,l), +(435,0,l) +); +}, +{ +closed = 1; +nodes = ( +(357,735,l), +(358,761,o), +(374,772,o), +(391,772,c), +(424,772,o), +(446,735,o), +(511,735,c), +(574,735,o), +(621,781,o), +(633,854,c), +(549,854,l), +(548,828,o), +(532,817,o), +(515,817,c), +(484,817,o), +(460,854,o), +(395,854,c), +(331,854,o), +(284,808,o), +(273,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = N; +}, +{ +pos = (107,0); +ref = tildecomb.case; +} +); +width = 716; +} +); +unicode = 209; +}, +{ +color = 6; +glyphname = Eng; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(459,-185,o), +(525,-138,o), +(550,-21,cs), +(701,690,l), +(601,690,l), +(450,-17,ls), +(439,-70,o), +(406,-94,o), +(361,-94,c), +(338,-94,o), +(318,-88,o), +(298,-79,c), +(279,-168,l), +(305,-178,o), +(333,-185,o), +(365,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,l), +(284,690,l), +(180,690,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(459,-185,o), +(525,-138,o), +(550,-21,cs), +(701,690,l), +(601,690,l), +(450,-17,ls), +(439,-70,o), +(406,-94,o), +(361,-94,c), +(338,-94,o), +(318,-88,o), +(298,-79,c), +(279,-168,l), +(305,-178,o), +(333,-185,o), +(365,-185,c) +); +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(473,-189,o), +(552,-143,o), +(579,-14,cs), +(729,690,l), +(582,690,l), +(437,9,ls), +(428,-32,o), +(402,-54,o), +(361,-54,c), +(336,-54,o), +(314,-49,o), +(294,-41,c), +(266,-172,l), +(291,-183,o), +(330,-189,o), +(370,-189,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,0,l), +(386,690,l), +(235,690,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(473,-189,o), +(552,-143,o), +(579,-14,cs), +(729,690,l), +(582,690,l), +(437,9,ls), +(428,-32,o), +(402,-54,o), +(361,-54,c), +(336,-54,o), +(314,-49,o), +(294,-41,c), +(266,-172,l), +(291,-183,o), +(330,-189,o), +(370,-189,c) +); +} +); +width = 716; +} +); +unicode = 330; +}, +{ +color = 6; +glyphname = O; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:03:31 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = ogonek; +pos = (367,0); +}, +{ +name = top; +pos = (421.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = top; +pos = (421.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(499.323,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(563.855,700,o), +(409,700,c), +(197.666,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132.169,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146.162,o), +(144,254,cs), +(144,443.848,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,542.8,o), +(553,434,cs), +(553,244.085,o), +(444,88,o), +(304,88,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(499.323,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(563.855,700,o), +(409,700,c), +(197.666,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132.169,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146.162,o), +(144,254,cs), +(144,443.848,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,542.8,o), +(553,434,cs), +(553,244.085,o), +(444,88,o), +(304,88,c) +); +} +); +width = 697; +}, +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = ogonek; +pos = (408,0); +}, +{ +name = top; +pos = (438,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (438,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +width = 727; +} +); +unicode = 79; +}, +{ +color = 10; +glyphname = Oacute; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(467,735,l), +(625,845,l), +(490,845,l), +(366,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (99,0); +ref = acutecomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(499,735,l), +(675,850,l), +(502,850,l), +(374,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (116,0); +ref = acutecomb.case; +} +); +width = 727; +} +); +unicode = 211; +}, +{ +color = 10; +glyphname = Obreve; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(540,735,o), +(587,777,o), +(605,845,c), +(535,845,l), +(527,820,o), +(500,805,o), +(443,805,c), +(391,805,o), +(375,818,o), +(375,841,cs), +(375,845,l), +(305,845,l), +(304,838,o), +(304,833,o), +(304,828,cs), +(304,773,o), +(352,735,o), +(440,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = brevecomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(562,730,o), +(615,779,o), +(631,850,c), +(534,850,l), +(526,827,o), +(504,814,o), +(463,814,c), +(422,814,o), +(410,827,o), +(410,850,c), +(313,850,l), +(312,843,o), +(311,837,o), +(311,831,cs), +(311,770,o), +(364,730,o), +(458,730,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (114,0); +ref = brevecomb.case; +} +); +width = 727; +} +); +unicode = 334; +}, +{ +color = 10; +glyphname = Ocircumflex; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(355,735,l), +(476,814,l), +(491,845,l), +(386,845,l), +(248,735,l) +); +}, +{ +closed = 1; +nodes = ( +(614,735,l), +(524,845,l), +(419,845,l), +(433,814,l), +(521,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = circumflexcomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(380,735,l), +(495,812,l), +(517,850,l), +(388,850,l), +(253,735,l) +); +}, +{ +closed = 1; +nodes = ( +(641,735,l), +(556,850,l), +(427,850,l), +(443,812,l), +(524,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (114,0); +ref = circumflexcomb.case; +} +); +width = 727; +} +); +unicode = 212; +}, +{ +color = 10; +glyphname = Odieresis; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(373,742,o), +(399,767,o), +(399,802,c), +(399,834,o), +(378,855,o), +(347,855,c), +(312,855,o), +(287,830,o), +(287,793,c), +(287,763,o), +(308,742,o), +(338,742,c) +); +}, +{ +closed = 1; +nodes = ( +(576,742,o), +(602,767,o), +(602,802,c), +(602,834,o), +(581,855,o), +(550,855,c), +(515,855,o), +(490,830,o), +(490,793,c), +(490,763,o), +(511,742,o), +(541,742,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (99,0); +ref = dieresiscomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(390,742,o), +(422,770,o), +(422,813,c), +(422,850,o), +(398,873,o), +(357,873,c), +(315,873,o), +(283,845,o), +(283,802,c), +(283,765,o), +(306,742,o), +(348,742,c) +); +}, +{ +closed = 1; +nodes = ( +(610,742,o), +(642,770,o), +(642,813,c), +(642,850,o), +(618,873,o), +(577,873,c), +(535,873,o), +(503,845,o), +(503,802,c), +(503,765,o), +(526,742,o), +(568,742,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (114,0); +ref = dieresiscomb.case; +} +); +width = 727; +} +); +unicode = 214; +}, +{ +color = 10; +glyphname = Odotbelow; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(279,-195,o), +(307,-168,o), +(307,-130,c), +(307,-95,o), +(284,-72,o), +(250,-72,c), +(212,-72,o), +(185,-99,o), +(185,-140,c), +(185,-172,o), +(208,-195,o), +(241,-195,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (99,0); +ref = dotbelow; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(305,-198,o), +(341,-166,o), +(341,-117,c), +(341,-75,o), +(314,-48,o), +(270,-48,c), +(225,-48,o), +(189,-80,o), +(189,-130,c), +(189,-171,o), +(216,-198,o), +(260,-198,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (114,0); +ref = dotbelow; +} +); +width = 727; +} +); +unicode = 7884; +}, +{ +color = 10; +glyphname = Ograve; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(490,735,l), +(414,845,l), +(289,845,l), +(402,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = gravecomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(513,735,l), +(435,850,l), +(274,850,l), +(403,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = gravecomb.case; +} +); +width = 727; +} +); +unicode = 210; +}, +{ +color = 10; +glyphname = Ohungarumlaut; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(406,735,l), +(527,845,l), +(411,845,l), +(318,735,l) +); +}, +{ +closed = 1; +nodes = ( +(553,735,l), +(712,845,l), +(588,845,l), +(464,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (99,0); +ref = hungarumlautcomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(432,735,l), +(565,850,l), +(420,850,l), +(324,735,l) +); +}, +{ +closed = 1; +nodes = ( +(585,735,l), +(761,850,l), +(606,850,l), +(472,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (115,0); +ref = hungarumlautcomb.case; +} +); +width = 727; +} +); +unicode = 336; +}, +{ +color = 10; +glyphname = Omacron; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(593,753,l), +(611,837,l), +(295,837,l), +(277,753,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (99,0); +ref = macroncomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(612,735,l), +(637,850,l), +(307,850,l), +(282,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (115,0); +ref = macroncomb.case; +} +); +width = 727; +} +); +unicode = 332; +}, +{ +color = 10; +glyphname = Oogonek; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:03:31 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(275,-185,o), +(312,-176,o), +(334,-165,c), +(342,-84,l), +(317,-96,o), +(286,-106,o), +(260,-106,c), +(249,-106,o), +(243,-101,o), +(243,-93,cs), +(243,-72,o), +(286,-27,o), +(386,5,cs), +(548,57,o), +(661,231,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c), +(275,0,l), +(184,-35,o), +(155,-74,o), +(155,-118,c), +(155,-155,o), +(181,-185,o), +(243,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (137,0); +ref = ogonekcomb; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(291,-190,o), +(326,-183,o), +(357,-170,c), +(368,-75,l), +(346,-87,o), +(318,-96,o), +(299,-96,c), +(286,-96,o), +(279,-90,o), +(279,-82,cs), +(279,-65,o), +(302,-29,o), +(398,-3,cs), +(577,45,o), +(696,218,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c), +(292,-2,l), +(195,-36,o), +(164,-82,o), +(164,-121,c), +(164,-158,o), +(194,-190,o), +(263,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (142,0); +ref = ogonekcomb; +} +); +width = 727; +} +); +unicode = 490; +}, +{ +color = 6; +glyphname = Oslash; +kernLeft = C; +kernRight = D; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (422,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (422,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(50,0,l), +(767,690,l), +(648,690,l), +(-69,0,l) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(50,0,l), +(767,690,l), +(648,690,l), +(-69,0,l) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +} +); +width = 696; +}, +{ +anchors = ( +{ +name = top; +pos = (437,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (437,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(800,690,l), +(625,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(800,690,l), +(625,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +width = 725; +} +); +unicode = 216; +}, +{ +color = 10; +glyphname = Oslashacute; +kernLeft = C; +kernRight = D; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(50,0,l), +(767,690,l), +(648,690,l), +(-69,0,l) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(467,735,l), +(625,845,l), +(490,845,l), +(366,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Oslash; +}, +{ +pos = (99,0); +ref = acutecomb.case; +} +); +width = 696; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(800,690,l), +(625,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(498,735,l), +(674,850,l), +(501,850,l), +(373,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Oslash; +}, +{ +pos = (115,0); +ref = acutecomb.case; +} +); +width = 725; +} +); +unicode = 510; +}, +{ +color = 10; +glyphname = Otilde; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +}, +{ +closed = 1; +nodes = ( +(341,735,l), +(343,757,o), +(356,773,o), +(379,773,c), +(415,773,o), +(442,735,o), +(499,735,c), +(562,735,o), +(601,777,o), +(613,845,c), +(545,845,l), +(543,823,o), +(530,807,o), +(507,807,c), +(472,807,o), +(444,845,o), +(387,845,c), +(324,845,o), +(285,803,o), +(273,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (99,0); +ref = tildecomb.case; +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +}, +{ +closed = 1; +nodes = ( +(364,735,l), +(365,761,o), +(381,772,o), +(398,772,c), +(431,772,o), +(453,735,o), +(518,735,c), +(581,735,o), +(628,781,o), +(640,854,c), +(556,854,l), +(555,828,o), +(539,817,o), +(522,817,c), +(491,817,o), +(467,854,o), +(402,854,c), +(338,854,o), +(291,808,o), +(280,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = O; +}, +{ +pos = (114,0); +ref = tildecomb.case; +} +); +width = 727; +} +); +unicode = 213; +}, +{ +color = 6; +glyphname = OE; +kernLeft = O; +kernRight = E; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(464,0,l), +(485,96,l), +(326,96,ls), +(191,96,o), +(144,153,o), +(144,256,cs), +(144,441,o), +(252,594,o), +(432,594,cs), +(591,594,l), +(611,690,l), +(442,690,ls), +(190,690,o), +(36,494,o), +(36,249,cs), +(36,102,o), +(139,0,o), +(303,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(879,0,l), +(899,96,l), +(479,96,l), +(459,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,0,l), +(661,690,l), +(556,690,l), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(879,306,l), +(899,402,l), +(544,402,l), +(524,306,l) +); +}, +{ +closed = 1; +nodes = ( +(1000,594,l), +(1021,690,l), +(606,690,l), +(585,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(464,0,l), +(485,96,l), +(326,96,ls), +(191,96,o), +(144,153,o), +(144,256,cs), +(144,441,o), +(252,594,o), +(432,594,cs), +(591,594,l), +(611,690,l), +(442,690,ls), +(190,690,o), +(36,494,o), +(36,249,cs), +(36,102,o), +(139,0,o), +(303,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(879,0,l), +(899,96,l), +(479,96,l), +(459,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,0,l), +(661,690,l), +(556,690,l), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(879,306,l), +(899,402,l), +(544,402,l), +(524,306,l) +); +}, +{ +closed = 1; +nodes = ( +(1000,594,l), +(1021,690,l), +(606,690,l), +(585,594,l) +); +} +); +width = 998; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(488,0,l), +(519,145,l), +(324,145,l), +(228,145,o), +(193,202,o), +(193,278,c), +(193,424,o), +(277,545,o), +(412,545,c), +(604,545,l), +(635,690,l), +(433,690,l), +(187,690,o), +(32,497,o), +(32,266,c), +(32,115,o), +(131,0,o), +(304,0,c) +); +}, +{ +closed = 1; +nodes = ( +(896,0,l), +(927,145,l), +(500,145,l), +(469,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(703,690,l), +(548,690,l), +(401,0,l) +); +}, +{ +closed = 1; +nodes = ( +(909,282,l), +(938,419,l), +(558,419,l), +(529,282,l) +); +}, +{ +closed = 1; +nodes = ( +(1008,545,l), +(1039,690,l), +(616,690,l), +(585,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(488,0,l), +(519,145,l), +(324,145,l), +(228,145,o), +(193,202,o), +(193,278,c), +(193,424,o), +(277,545,o), +(412,545,c), +(604,545,l), +(635,690,l), +(433,690,l), +(187,690,o), +(32,497,o), +(32,266,c), +(32,115,o), +(131,0,o), +(304,0,c) +); +}, +{ +closed = 1; +nodes = ( +(896,0,l), +(927,145,l), +(500,145,l), +(469,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(703,690,l), +(548,690,l), +(401,0,l) +); +}, +{ +closed = 1; +nodes = ( +(909,282,l), +(938,419,l), +(558,419,l), +(529,282,l) +); +}, +{ +closed = 1; +nodes = ( +(1008,545,l), +(1039,690,l), +(616,690,l), +(585,545,l) +); +} +); +width = 1004; +} +); +unicode = 338; +}, +{ +color = 6; +glyphname = P; +kernLeft = H; +kernRight = P; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(300,240,l), +(496,240,o), +(611,348,o), +(611,500,c), +(611,617,o), +(519,690,o), +(395,690,c), +(199,690,l), +(178,594,l), +(371,594,l), +(460,594,o), +(504,559,o), +(504,493,c), +(504,410,o), +(446,336,o), +(312,336,c), +(123,336,l), +(103,240,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(300,240,l), +(496,240,o), +(611,348,o), +(611,500,c), +(611,617,o), +(519,690,o), +(395,690,c), +(199,690,l), +(178,594,l), +(371,594,l), +(460,594,o), +(504,559,o), +(504,493,c), +(504,410,o), +(446,336,o), +(312,336,c), +(123,336,l), +(103,240,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +width = 612; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(306,213,l), +(517,213,o), +(637,337,o), +(637,491,c), +(637,611,o), +(551,690,o), +(400,690,c), +(204,690,l), +(173,545,l), +(372,545,l), +(446,545,o), +(477,515,o), +(477,469,c), +(477,403,o), +(432,358,o), +(327,358,c), +(133,358,l), +(102,213,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,213,l), +(517,213,o), +(637,337,o), +(637,491,c), +(637,611,o), +(551,690,o), +(400,690,c), +(204,690,l), +(173,545,l), +(372,545,l), +(446,545,o), +(477,515,o), +(477,469,c), +(477,403,o), +(432,358,o), +(327,358,c), +(133,358,l), +(102,213,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +width = 631; +} +); +unicode = 80; +}, +{ +color = 6; +glyphname = Thorn; +kernLeft = H; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(276,125,l), +(472,125,o), +(587,233,o), +(587,385,c), +(587,502,o), +(495,575,o), +(371,575,c), +(175,575,l), +(154,479,l), +(347,479,l), +(436,479,o), +(480,444,o), +(480,378,c), +(480,295,o), +(422,221,o), +(288,221,c), +(99,221,l), +(79,125,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(276,125,l), +(472,125,o), +(587,233,o), +(587,385,c), +(587,502,o), +(495,575,o), +(371,575,c), +(175,575,l), +(154,479,l), +(347,479,l), +(436,479,o), +(480,444,o), +(480,378,c), +(480,295,o), +(422,221,o), +(288,221,c), +(99,221,l), +(79,125,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +} +); +width = 614; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(284,110,l), +(495,110,o), +(615,234,o), +(615,388,c), +(615,508,o), +(529,587,o), +(378,587,c), +(182,587,l), +(151,442,l), +(350,442,l), +(424,442,o), +(455,412,o), +(455,366,c), +(455,300,o), +(410,255,o), +(305,255,c), +(111,255,l), +(80,110,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,110,l), +(495,110,o), +(615,234,o), +(615,388,c), +(615,508,o), +(529,587,o), +(378,587,c), +(182,587,l), +(151,442,l), +(350,442,l), +(424,442,o), +(455,412,o), +(455,366,c), +(455,300,o), +(410,255,o), +(305,255,c), +(111,255,l), +(80,110,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +} +); +width = 632; +} +); +unicode = 222; +}, +{ +color = 6; +glyphname = Q; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = top; +pos = (422,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = top; +pos = (422,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(535,-55,l), +(446,87,l), +(390,195,l), +(285,195,l), +(371,52,l), +(425,-55,l) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(661,190,o), +(661,441,cs), +(661,594,o), +(564,700,o), +(409,700,c), +(198,700,o), +(36,499,o), +(36,248,cs), +(36,94,o), +(132,-10,o), +(287,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(535,-55,l), +(446,87,l), +(390,195,l), +(285,195,l), +(371,52,l), +(425,-55,l) +); +}, +{ +closed = 1; +nodes = ( +(198,88,o), +(144,146,o), +(144,254,cs), +(144,444,o), +(253,602,o), +(393,602,c), +(498,602,o), +(553,543,o), +(553,434,cs), +(553,244,o), +(444,88,o), +(304,88,c) +); +} +); +width = 697; +}, +{ +anchors = ( +{ +name = bottom; +pos = (438,690); +}, +{ +name = top; +pos = (291,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (438,690); +}, +{ +name = top; +pos = (291,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(557,-60,l), +(467,106,l), +(412,231,l), +(266,231,l), +(350,67,l), +(401,-60,l) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,-14,o), +(696,185,o), +(696,424,c), +(696,584,o), +(595,704,o), +(422,704,c), +(192,704,o), +(31,506,o), +(31,267,c), +(31,107,o), +(133,-14,o), +(305,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(557,-60,l), +(467,106,l), +(412,231,l), +(266,231,l), +(350,67,l), +(401,-60,l) +); +}, +{ +closed = 1; +nodes = ( +(231,132,o), +(194,193,o), +(194,278,c), +(194,432,o), +(280,558,o), +(400,558,c), +(496,558,o), +(533,497,o), +(533,412,c), +(533,258,o), +(447,132,o), +(327,132,c) +); +} +); +width = 727; +} +); +unicode = 81; +}, +{ +color = 6; +glyphname = R; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (251,0); +}, +{ +name = top; +pos = (397.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (251,0); +}, +{ +name = top; +pos = (397.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(294,260,l), +(487,260,o), +(600,364,o), +(600,510,c), +(600,621,o), +(510,690,o), +(389,690,c), +(199,690,l), +(178,594,l), +(365,594,l), +(451,594,o), +(493,562,o), +(493,503,c), +(493,425,o), +(437,356,o), +(306,356,c), +(128,356,l), +(107,260,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,0,l), +(378,299,l), +(270,299,l), +(401,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(294,260,l), +(487,260,o), +(600,364,o), +(600,510,c), +(600,621,o), +(510,690,o), +(389,690,c), +(199,690,l), +(178,594,l), +(365,594,l), +(451,594,o), +(493,562,o), +(493,503,c), +(493,425,o), +(437,356,o), +(306,356,c), +(128,356,l), +(107,260,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,0,l), +(378,299,l), +(270,299,l), +(401,0,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (256,0); +}, +{ +name = top; +pos = (402.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (256,0); +}, +{ +name = top; +pos = (402.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(301,233,l), +(509,233,o), +(627,347,o), +(627,495,c), +(627,609,o), +(543,690,o), +(395,690,c), +(204,690,l), +(173,545,l), +(367,545,l), +(437,545,o), +(467,519,o), +(467,479,c), +(467,419,o), +(424,378,o), +(322,378,c), +(137,378,l), +(107,233,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(548,0,l), +(406,299,l), +(257,299,l), +(386,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(301,233,l), +(509,233,o), +(627,347,o), +(627,495,c), +(627,609,o), +(543,690,o), +(395,690,c), +(204,690,l), +(173,545,l), +(367,545,l), +(437,545,o), +(467,519,o), +(467,479,c), +(467,419,o), +(424,378,o), +(322,378,c), +(137,378,l), +(107,233,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(548,0,l), +(406,299,l), +(257,299,l), +(386,0,l) +); +} +); +width = 642; +} +); +unicode = 82; +}, +{ +color = 10; +glyphname = Racute; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(294,260,l), +(487,260,o), +(600,364,o), +(600,510,c), +(600,621,o), +(510,690,o), +(389,690,c), +(199,690,l), +(178,594,l), +(365,594,l), +(451,594,o), +(493,562,o), +(493,503,c), +(493,425,o), +(437,356,o), +(306,356,c), +(128,356,l), +(107,260,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,0,l), +(378,299,l), +(270,299,l), +(401,0,l) +); +}, +{ +closed = 1; +nodes = ( +(443,735,l), +(601,845,l), +(466,845,l), +(342,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = R; +}, +{ +pos = (75,0); +ref = acutecomb.case; +} +); +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(301,233,l), +(509,233,o), +(627,347,o), +(627,495,c), +(627,609,o), +(543,690,o), +(395,690,c), +(204,690,l), +(173,545,l), +(367,545,l), +(437,545,o), +(467,519,o), +(467,479,c), +(467,419,o), +(424,378,o), +(322,378,c), +(137,378,l), +(107,233,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(548,0,l), +(406,299,l), +(257,299,l), +(386,0,l) +); +}, +{ +closed = 1; +nodes = ( +(464,735,l), +(640,850,l), +(467,850,l), +(339,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = R; +}, +{ +pos = (81,0); +ref = acutecomb.case; +} +); +width = 642; +} +); +unicode = 340; +}, +{ +color = 10; +glyphname = Rcaron; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(294,260,l), +(487,260,o), +(600,364,o), +(600,510,c), +(600,621,o), +(510,690,o), +(389,690,c), +(199,690,l), +(178,594,l), +(365,594,l), +(451,594,o), +(493,562,o), +(493,503,c), +(493,425,o), +(437,356,o), +(306,356,c), +(128,356,l), +(107,260,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,0,l), +(378,299,l), +(270,299,l), +(401,0,l) +); +}, +{ +closed = 1; +nodes = ( +(443,735,l), +(429,766,l), +(341,845,l), +(248,845,l), +(338,735,l) +); +}, +{ +closed = 1; +nodes = ( +(476,735,l), +(614,845,l), +(507,845,l), +(386,766,l), +(371,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = R; +}, +{ +pos = (73,0); +ref = caroncomb.case; +} +); +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(301,233,l), +(509,233,o), +(627,347,o), +(627,495,c), +(627,609,o), +(543,690,o), +(395,690,c), +(204,690,l), +(173,545,l), +(367,545,l), +(437,545,o), +(467,519,o), +(467,479,c), +(467,419,o), +(424,378,o), +(322,378,c), +(137,378,l), +(107,233,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(548,0,l), +(406,299,l), +(257,299,l), +(386,0,l) +); +}, +{ +closed = 1; +nodes = ( +(457,735,l), +(441,773,l), +(360,850,l), +(243,850,l), +(328,735,l) +); +}, +{ +closed = 1; +nodes = ( +(496,735,l), +(631,850,l), +(504,850,l), +(389,773,l), +(367,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = R; +}, +{ +pos = (78,0); +ref = caroncomb.case; +} +); +width = 642; +} +); +unicode = 344; +}, +{ +color = 10; +glyphname = Rcommaaccent; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(294,260,l), +(487,260,o), +(600,364,o), +(600,510,c), +(600,621,o), +(510,690,o), +(389,690,c), +(199,690,l), +(178,594,l), +(365,594,l), +(451,594,o), +(493,562,o), +(493,503,c), +(493,425,o), +(437,356,o), +(306,356,c), +(128,356,l), +(107,260,l) +); +}, +{ +closed = 1; +nodes = ( +(209,-275,l), +(293,-72,l), +(189,-72,l), +(146,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,0,l), +(378,299,l), +(270,299,l), +(401,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = R; +}, +{ +pos = (74,0); +ref = commaaccentcomb; +} +); +width = 619; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(301,233,l), +(509,233,o), +(627,347,o), +(627,495,c), +(627,609,o), +(543,690,o), +(395,690,c), +(204,690,l), +(173,545,l), +(367,545,l), +(437,545,o), +(467,519,o), +(467,479,c), +(467,419,o), +(424,378,o), +(322,378,c), +(137,378,l), +(107,233,l) +); +}, +{ +closed = 1; +nodes = ( +(227,-270,l), +(315,-54,l), +(183,-54,l), +(137,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(548,0,l), +(406,299,l), +(257,299,l), +(386,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = R; +}, +{ +pos = (79,0); +ref = commaaccentcomb; +} +); +width = 642; +} +); +unicode = 342; +}, +{ +color = 6; +glyphname = S; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (222,0); +}, +{ +name = top; +pos = (369,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (222,0); +}, +{ +name = top; +pos = (369,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(431,-10,o), +(520,97,o), +(520,203,c), +(520,426,o), +(191,372,o), +(191,521,c), +(191,566,o), +(228,607,o), +(326,607,c), +(416,607,o), +(464,572,o), +(484,499,c), +(581,532,l), +(550,637,o), +(470,700,o), +(343,700,c), +(155,700,o), +(81,592,o), +(81,497,c), +(81,287,o), +(409,331,o), +(409,187,c), +(409,125,o), +(356,83,o), +(251,83,c), +(155,83,o), +(109,120,o), +(91,196,c), +(-9,163,l), +(18,55,o), +(100,-10,o), +(242,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(431,-10,o), +(520,97,o), +(520,203,c), +(520,426,o), +(191,372,o), +(191,521,c), +(191,566,o), +(228,607,o), +(326,607,c), +(416,607,o), +(464,572,o), +(484,499,c), +(581,532,l), +(550,637,o), +(470,700,o), +(343,700,c), +(155,700,o), +(81,592,o), +(81,497,c), +(81,287,o), +(409,331,o), +(409,187,c), +(409,125,o), +(356,83,o), +(251,83,c), +(155,83,o), +(109,120,o), +(91,196,c), +(-9,163,l), +(18,55,o), +(100,-10,o), +(242,-10,c) +); +} +); +width = 592; +}, +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = top; +pos = (389,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = top; +pos = (389,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +} +); +width = 620; +} +); +unicode = 83; +}, +{ +color = 10; +glyphname = Sacute; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,-10,o), +(520,97,o), +(520,203,c), +(520,426,o), +(191,372,o), +(191,521,c), +(191,566,o), +(228,607,o), +(326,607,c), +(416,607,o), +(464,572,o), +(484,499,c), +(581,532,l), +(550,637,o), +(470,700,o), +(343,700,c), +(155,700,o), +(81,592,o), +(81,497,c), +(81,287,o), +(409,331,o), +(409,187,c), +(409,125,o), +(356,83,o), +(251,83,c), +(155,83,o), +(109,120,o), +(91,196,c), +(-9,163,l), +(18,55,o), +(100,-10,o), +(242,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(414,735,l), +(572,845,l), +(437,845,l), +(313,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (46,0); +ref = acutecomb.case; +} +); +width = 592; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(450,735,l), +(626,850,l), +(453,850,l), +(325,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = S; +}, +{ +pos = (67,0); +ref = acutecomb.case; +} +); +width = 620; +} +); +unicode = 346; +}, +{ +color = 10; +glyphname = Scaron; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,-10,o), +(520,97,o), +(520,203,c), +(520,426,o), +(191,372,o), +(191,521,c), +(191,566,o), +(228,607,o), +(326,607,c), +(416,607,o), +(464,572,o), +(484,499,c), +(581,532,l), +(550,637,o), +(470,700,o), +(343,700,c), +(155,700,o), +(81,592,o), +(81,497,c), +(81,287,o), +(409,331,o), +(409,187,c), +(409,125,o), +(356,83,o), +(251,83,c), +(155,83,o), +(109,120,o), +(91,196,c), +(-9,163,l), +(18,55,o), +(100,-10,o), +(242,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(414,735,l), +(400,766,l), +(312,845,l), +(219,845,l), +(309,735,l) +); +}, +{ +closed = 1; +nodes = ( +(447,735,l), +(585,845,l), +(478,845,l), +(357,766,l), +(342,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (44,0); +ref = caroncomb.case; +} +); +width = 592; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(443,735,l), +(427,773,l), +(346,850,l), +(229,850,l), +(314,735,l) +); +}, +{ +closed = 1; +nodes = ( +(482,735,l), +(617,850,l), +(490,850,l), +(375,773,l), +(353,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = S; +}, +{ +pos = (64,0); +ref = caroncomb.case; +} +); +width = 620; +} +); +unicode = 352; +}, +{ +color = 10; +glyphname = Scedilla; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,-10,o), +(520,97,o), +(520,203,c), +(520,426,o), +(191,372,o), +(191,521,c), +(191,566,o), +(228,607,o), +(326,607,c), +(416,607,o), +(464,572,o), +(484,499,c), +(581,532,l), +(550,637,o), +(470,700,o), +(343,700,c), +(155,700,o), +(81,592,o), +(81,497,c), +(81,287,o), +(409,331,o), +(409,187,c), +(409,125,o), +(356,83,o), +(251,83,c), +(155,83,o), +(109,120,o), +(91,196,c), +(-9,163,l), +(18,55,o), +(100,-10,o), +(242,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(244,-185,o), +(288,-144,o), +(288,-96,c), +(288,-55,o), +(259,-29,o), +(218,-29,c), +(227,-43,l), +(244,9,l), +(188,11,l), +(157,-73,l), +(169,-71,o), +(176,-70,o), +(187,-70,c), +(209,-70,o), +(220,-79,o), +(220,-94,c), +(220,-108,o), +(206,-119,o), +(181,-119,c), +(161,-119,o), +(146,-114,o), +(130,-105,c), +(103,-169,l), +(126,-180,o), +(150,-185,o), +(176,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (43,0); +ref = cedillacomb; +} +); +width = 592; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(286,-190,o), +(325,-146,o), +(325,-97,c), +(325,-57,o), +(296,-29,o), +(246,-29,c), +(255,-43,l), +(272,9,l), +(204,11,l), +(171,-80,l), +(183,-76,o), +(193,-74,o), +(205,-74,c), +(225,-74,o), +(235,-80,o), +(235,-91,c), +(235,-103,o), +(224,-109,o), +(201,-109,c), +(181,-109,o), +(159,-105,o), +(140,-94,c), +(111,-174,l), +(136,-185,o), +(166,-190,o), +(194,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = S; +}, +{ +pos = (64,0); +ref = cedillacomb; +} +); +width = 620; +} +); +unicode = 350; +}, +{ +color = 10; +glyphname = Scircumflex; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,-10,o), +(520,97,o), +(520,203,c), +(520,426,o), +(191,372,o), +(191,521,c), +(191,566,o), +(228,607,o), +(326,607,c), +(416,607,o), +(464,572,o), +(484,499,c), +(581,532,l), +(550,637,o), +(470,700,o), +(343,700,c), +(155,700,o), +(81,592,o), +(81,497,c), +(81,287,o), +(409,331,o), +(409,187,c), +(409,125,o), +(356,83,o), +(251,83,c), +(155,83,o), +(109,120,o), +(91,196,c), +(-9,163,l), +(18,55,o), +(100,-10,o), +(242,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(302,735,l), +(423,814,l), +(438,845,l), +(333,845,l), +(195,735,l) +); +}, +{ +closed = 1; +nodes = ( +(561,735,l), +(471,845,l), +(366,845,l), +(380,814,l), +(468,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (45,0); +ref = circumflexcomb.case; +} +); +width = 592; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(331,735,l), +(446,812,l), +(468,850,l), +(339,850,l), +(204,735,l) +); +}, +{ +closed = 1; +nodes = ( +(592,735,l), +(507,850,l), +(378,850,l), +(394,812,l), +(475,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = S; +}, +{ +pos = (65,0); +ref = circumflexcomb.case; +} +); +width = 620; +} +); +unicode = 348; +}, +{ +color = 10; +glyphname = Scommaaccent; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,-10,o), +(520,97,o), +(520,203,c), +(520,426,o), +(191,372,o), +(191,521,c), +(191,566,o), +(228,607,o), +(326,607,c), +(416,607,o), +(464,572,o), +(484,499,c), +(581,532,l), +(550,637,o), +(470,700,o), +(343,700,c), +(155,700,o), +(81,592,o), +(81,497,c), +(81,287,o), +(409,331,o), +(409,187,c), +(409,125,o), +(356,83,o), +(251,83,c), +(155,83,o), +(109,120,o), +(91,196,c), +(-9,163,l), +(18,55,o), +(100,-10,o), +(242,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(180,-275,l), +(264,-72,l), +(160,-72,l), +(117,-275,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (45,0); +ref = commaaccentcomb; +} +); +width = 592; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(215,-270,l), +(303,-54,l), +(171,-54,l), +(125,-270,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = S; +}, +{ +pos = (67,0); +ref = commaaccentcomb; +} +); +width = 620; +} +); +unicode = 536; +}, +{ +color = 6; +glyphname = Germandbls; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(519,-10,o), +(597,68,o), +(597,165,c), +(597,287,o), +(457,329,o), +(457,391,cs), +(457,422,o), +(481,456,o), +(614,489,c), +(602,643,o), +(509,700,o), +(392,700,c), +(229,700,o), +(128,614,o), +(88,426,cs), +(-3,0,l), +(102,0,l), +(190,416,ls), +(216,539,o), +(281,603,o), +(382,603,c), +(452,603,o), +(499,578,o), +(511,533,c), +(399,494,o), +(360,439,o), +(360,378,c), +(360,274,o), +(496,244,o), +(496,163,cs), +(496,114,o), +(451,80,o), +(393,80,c), +(342,80,o), +(310,91,o), +(272,120,c), +(220,35,l), +(256,8,o), +(313,-10,o), +(387,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(519,-10,o), +(597,68,o), +(597,165,c), +(597,287,o), +(457,329,o), +(457,391,cs), +(457,422,o), +(481,456,o), +(614,489,c), +(602,643,o), +(509,700,o), +(392,700,c), +(229,700,o), +(128,614,o), +(88,426,cs), +(-3,0,l), +(102,0,l), +(190,416,ls), +(216,539,o), +(281,603,o), +(382,603,c), +(452,603,o), +(499,578,o), +(511,533,c), +(399,494,o), +(360,439,o), +(360,378,c), +(360,274,o), +(496,244,o), +(496,163,cs), +(496,114,o), +(451,80,o), +(393,80,c), +(342,80,o), +(310,91,o), +(272,120,c), +(220,35,l), +(256,8,o), +(313,-10,o), +(387,-10,c) +); +} +); +width = 671; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(541,-14,o), +(629,77,o), +(629,184,c), +(629,299,o), +(507,331,o), +(507,387,cs), +(507,408,o), +(520,433,o), +(639,471,c), +(634,622,o), +(537,704,o), +(387,704,c), +(208,704,o), +(110,606,o), +(72,425,cs), +(-18,0,l), +(137,0,l), +(226,417,ls), +(245,506,o), +(298,562,o), +(378,562,c), +(433,562,o), +(468,544,o), +(481,511,c), +(399,484,o), +(355,429,o), +(355,365,c), +(355,262,o), +(478,239,o), +(478,177,cs), +(478,135,o), +(442,106,o), +(396,106,c), +(358,106,o), +(327,120,o), +(292,145,c), +(225,33,l), +(264,4,o), +(323,-14,o), +(394,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(541,-14,o), +(629,77,o), +(629,184,c), +(629,299,o), +(507,331,o), +(507,387,cs), +(507,408,o), +(520,433,o), +(639,471,c), +(634,622,o), +(537,704,o), +(387,704,c), +(208,704,o), +(110,606,o), +(72,425,cs), +(-18,0,l), +(137,0,l), +(226,417,ls), +(245,506,o), +(298,562,o), +(378,562,c), +(433,562,o), +(468,544,o), +(481,511,c), +(399,484,o), +(355,429,o), +(355,365,c), +(355,262,o), +(478,239,o), +(478,177,cs), +(478,135,o), +(442,106,o), +(396,106,c), +(358,106,o), +(327,120,o), +(292,145,c), +(225,33,l), +(264,4,o), +(323,-14,o), +(394,-14,c) +); +} +); +width = 691; +} +); +unicode = 7838; +}, +{ +color = 6; +glyphname = T; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (364.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (364.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(417,690,l), +(312,690,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(616,594,l), +(637,690,l), +(92,690,l), +(71,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(417,690,l), +(312,690,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(616,594,l), +(637,690,l), +(92,690,l), +(71,594,l) +); +} +); +width = 580; +}, +{ +anchors = ( +{ +name = bottom; +pos = (225,0); +}, +{ +name = top; +pos = (371.664,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (225,0); +}, +{ +name = top; +pos = (371.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(449,690,l), +(295,690,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(618,545,l), +(649,690,l), +(95,690,l), +(64,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(449,690,l), +(295,690,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(618,545,l), +(649,690,l), +(95,690,l), +(64,545,l) +); +} +); +width = 594; +} +); +unicode = 84; +}, +{ +color = 6; +glyphname = Tbar; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(417,690,l), +(312,690,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(475,261,l), +(495,352,l), +(90,352,l), +(70,261,l) +); +}, +{ +closed = 1; +nodes = ( +(616,594,l), +(637,690,l), +(92,690,l), +(71,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(417,690,l), +(312,690,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(475,261,l), +(495,352,l), +(90,352,l), +(70,261,l) +); +}, +{ +closed = 1; +nodes = ( +(616,594,l), +(637,690,l), +(92,690,l), +(71,594,l) +); +} +); +width = 580; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(449,690,l), +(295,690,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,246,l), +(540,367,l), +(66,367,l), +(40,246,l) +); +}, +{ +closed = 1; +nodes = ( +(618,545,l), +(649,690,l), +(95,690,l), +(64,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(449,690,l), +(295,690,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,246,l), +(540,367,l), +(66,367,l), +(40,246,l) +); +}, +{ +closed = 1; +nodes = ( +(618,545,l), +(649,690,l), +(95,690,l), +(64,545,l) +); +} +); +width = 594; +} +); +unicode = 358; +}, +{ +color = 10; +glyphname = Tcaron; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(417,690,l), +(312,690,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(616,594,l), +(637,690,l), +(92,690,l), +(71,594,l) +); +}, +{ +closed = 1; +nodes = ( +(410,735,l), +(396,766,l), +(308,845,l), +(215,845,l), +(305,735,l) +); +}, +{ +closed = 1; +nodes = ( +(443,735,l), +(581,845,l), +(474,845,l), +(353,766,l), +(338,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = T; +}, +{ +pos = (40,0); +ref = caroncomb.case; +} +); +width = 580; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(449,690,l), +(295,690,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(618,545,l), +(649,690,l), +(95,690,l), +(64,545,l) +); +}, +{ +closed = 1; +nodes = ( +(426,735,l), +(410,773,l), +(329,850,l), +(212,850,l), +(297,735,l) +); +}, +{ +closed = 1; +nodes = ( +(465,735,l), +(600,850,l), +(473,850,l), +(358,773,l), +(336,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = T; +}, +{ +pos = (47,0); +ref = caroncomb.case; +} +); +width = 594; +} +); +unicode = 356; +}, +{ +color = 10; +glyphname = Tcedilla; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(417,690,l), +(312,690,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(240,-185,o), +(284,-144,o), +(284,-96,c), +(284,-55,o), +(255,-29,o), +(214,-29,c), +(223,-43,l), +(240,9,l), +(184,11,l), +(153,-73,l), +(165,-71,o), +(172,-70,o), +(183,-70,c), +(205,-70,o), +(216,-79,o), +(216,-94,c), +(216,-108,o), +(202,-119,o), +(177,-119,c), +(157,-119,o), +(142,-114,o), +(126,-105,c), +(99,-169,l), +(122,-180,o), +(146,-185,o), +(172,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(616,594,l), +(637,690,l), +(92,690,l), +(71,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = T; +}, +{ +pos = (39,0); +ref = cedillacomb; +} +); +width = 580; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(449,690,l), +(295,690,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(267,-190,o), +(306,-146,o), +(306,-97,c), +(306,-57,o), +(277,-29,o), +(227,-29,c), +(236,-43,l), +(253,9,l), +(185,11,l), +(152,-80,l), +(164,-76,o), +(174,-74,o), +(186,-74,c), +(206,-74,o), +(216,-80,o), +(216,-91,c), +(216,-103,o), +(205,-109,o), +(182,-109,c), +(162,-109,o), +(140,-105,o), +(121,-94,c), +(92,-174,l), +(117,-185,o), +(147,-190,o), +(175,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(618,545,l), +(649,690,l), +(95,690,l), +(64,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = T; +}, +{ +pos = (45,0); +ref = cedillacomb; +} +); +width = 594; +} +); +unicode = 354; +}, +{ +color = 10; +glyphname = Tcommaaccent; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,0,l), +(417,690,l), +(312,690,l), +(165,0,l) +); +}, +{ +closed = 1; +nodes = ( +(176,-275,l), +(260,-72,l), +(156,-72,l), +(113,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(616,594,l), +(637,690,l), +(92,690,l), +(71,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = T; +}, +{ +pos = (41,0); +ref = commaaccentcomb; +} +); +width = 580; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,l), +(449,690,l), +(295,690,l), +(148,0,l) +); +}, +{ +closed = 1; +nodes = ( +(196,-270,l), +(284,-54,l), +(152,-54,l), +(106,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(618,545,l), +(649,690,l), +(95,690,l), +(64,545,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = T; +}, +{ +pos = (48,0); +ref = commaaccentcomb; +} +); +width = 594; +} +); +unicode = 538; +}, +{ +color = 6; +glyphname = U; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:03:46 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = ogonek; +pos = (356,0); +}, +{ +name = top; +pos = (411,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (411,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +} +); +width = 674; +}, +{ +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = ogonek; +pos = (390,0); +}, +{ +name = top; +pos = (420,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (420,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +} +); +width = 692; +} +); +unicode = 85; +}, +{ +color = 10; +glyphname = Uacute; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(456,735,l), +(614,845,l), +(479,845,l), +(355,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,0); +ref = acutecomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(481,735,l), +(657,850,l), +(484,850,l), +(356,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (98,0); +ref = acutecomb.case; +} +); +width = 692; +} +); +unicode = 218; +}, +{ +color = 10; +glyphname = Ubreve; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(529,735,o), +(576,777,o), +(594,845,c), +(524,845,l), +(516,820,o), +(489,805,o), +(432,805,c), +(380,805,o), +(364,818,o), +(364,841,cs), +(364,845,l), +(294,845,l), +(293,838,o), +(293,833,o), +(293,828,cs), +(293,773,o), +(341,735,o), +(429,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = brevecomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(544,730,o), +(597,779,o), +(613,850,c), +(516,850,l), +(508,827,o), +(486,814,o), +(445,814,c), +(404,814,o), +(392,827,o), +(392,850,c), +(295,850,l), +(294,843,o), +(293,837,o), +(293,831,cs), +(293,770,o), +(346,730,o), +(440,730,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = brevecomb.case; +} +); +width = 692; +} +); +unicode = 364; +}, +{ +color = 10; +glyphname = Ucircumflex; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(344,735,l), +(465,814,l), +(480,845,l), +(375,845,l), +(237,735,l) +); +}, +{ +closed = 1; +nodes = ( +(603,735,l), +(513,845,l), +(408,845,l), +(422,814,l), +(510,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = circumflexcomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(362,735,l), +(477,812,l), +(499,850,l), +(370,850,l), +(235,735,l) +); +}, +{ +closed = 1; +nodes = ( +(623,735,l), +(538,850,l), +(409,850,l), +(425,812,l), +(506,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = circumflexcomb.case; +} +); +width = 692; +} +); +unicode = 219; +}, +{ +color = 10; +glyphname = Udieresis; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(362,742,o), +(388,767,o), +(388,802,c), +(388,834,o), +(367,855,o), +(336,855,c), +(301,855,o), +(276,830,o), +(276,793,c), +(276,763,o), +(297,742,o), +(327,742,c) +); +}, +{ +closed = 1; +nodes = ( +(565,742,o), +(591,767,o), +(591,802,c), +(591,834,o), +(570,855,o), +(539,855,c), +(504,855,o), +(479,830,o), +(479,793,c), +(479,763,o), +(500,742,o), +(530,742,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,0); +ref = dieresiscomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(372,742,o), +(404,770,o), +(404,813,c), +(404,850,o), +(380,873,o), +(339,873,c), +(297,873,o), +(265,845,o), +(265,802,c), +(265,765,o), +(288,742,o), +(330,742,c) +); +}, +{ +closed = 1; +nodes = ( +(592,742,o), +(624,770,o), +(624,813,c), +(624,850,o), +(600,873,o), +(559,873,c), +(517,873,o), +(485,845,o), +(485,802,c), +(485,765,o), +(508,742,o), +(550,742,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = dieresiscomb.case; +} +); +width = 692; +} +); +unicode = 220; +}, +{ +color = 10; +glyphname = Udotbelow; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(268,-195,o), +(296,-168,o), +(296,-130,c), +(296,-95,o), +(273,-72,o), +(239,-72,c), +(201,-72,o), +(174,-99,o), +(174,-140,c), +(174,-172,o), +(197,-195,o), +(230,-195,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,0); +ref = dotbelow; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(287,-198,o), +(323,-166,o), +(323,-117,c), +(323,-75,o), +(296,-48,o), +(252,-48,c), +(207,-48,o), +(171,-80,o), +(171,-130,c), +(171,-171,o), +(198,-198,o), +(242,-198,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = dotbelow; +} +); +width = 692; +} +); +unicode = 7908; +}, +{ +color = 10; +glyphname = Ugrave; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(479,735,l), +(403,845,l), +(278,845,l), +(391,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = gravecomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(495,735,l), +(417,850,l), +(256,850,l), +(385,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (95,0); +ref = gravecomb.case; +} +); +width = 692; +} +); +unicode = 217; +}, +{ +color = 10; +glyphname = Uhungarumlaut; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(395,735,l), +(516,845,l), +(400,845,l), +(307,735,l) +); +}, +{ +closed = 1; +nodes = ( +(542,735,l), +(701,845,l), +(577,845,l), +(453,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,0); +ref = hungarumlautcomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(414,735,l), +(547,850,l), +(402,850,l), +(306,735,l) +); +}, +{ +closed = 1; +nodes = ( +(567,735,l), +(743,850,l), +(588,850,l), +(454,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (97,0); +ref = hungarumlautcomb.case; +} +); +width = 692; +} +); +unicode = 368; +}, +{ +color = 10; +glyphname = Umacron; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(582,753,l), +(600,837,l), +(284,837,l), +(266,753,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,0); +ref = macroncomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(594,735,l), +(619,850,l), +(289,850,l), +(264,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (97,0); +ref = macroncomb.case; +} +); +width = 692; +} +); +unicode = 362; +}, +{ +color = 10; +glyphname = Uogonek; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:03:46 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(262,-185,o), +(299,-176,o), +(321,-165,c), +(329,-84,l), +(304,-96,o), +(273,-106,o), +(247,-106,c), +(236,-106,o), +(230,-101,o), +(230,-93,cs), +(230,-72,o), +(278,-21,o), +(358,0,cs), +(476,31,o), +(558,121,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c), +(261,-2,l), +(171,-35,o), +(142,-74,o), +(142,-118,c), +(142,-155,o), +(168,-185,o), +(230,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (126,0); +ref = ogonekcomb; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(273,-190,o), +(308,-183,o), +(339,-170,c), +(350,-75,l), +(328,-87,o), +(300,-96,o), +(281,-96,c), +(268,-96,o), +(261,-90,o), +(261,-80,c), +(261,-65,o), +(286,-26,o), +(377,-4,cs), +(506,27,o), +(590,119,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c), +(274,-3,l), +(177,-36,o), +(146,-82,o), +(146,-121,c), +(146,-158,o), +(176,-190,o), +(245,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (124,0); +ref = ogonekcomb; +} +); +width = 692; +} +); +unicode = 370; +}, +{ +color = 10; +glyphname = Uring; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(492,735,o), +(536,779,o), +(536,833,c), +(536,878,o), +(501,908,o), +(450,908,c), +(385,908,o), +(341,864,o), +(341,810,c), +(341,765,o), +(376,735,o), +(427,735,c) +); +}, +{ +closed = 1; +nodes = ( +(414,790,o), +(404,800,o), +(404,815,c), +(404,836,o), +(420,853,o), +(445,853,c), +(463,853,o), +(473,843,o), +(473,828,c), +(473,807,o), +(457,790,o), +(432,790,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,0); +ref = ringcomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(509,735,o), +(552,784,o), +(552,837,c), +(552,883,o), +(518,917,o), +(458,917,c), +(388,917,o), +(345,868,o), +(345,815,c), +(345,769,o), +(379,735,o), +(439,735,c) +); +}, +{ +closed = 1; +nodes = ( +(428,800,o), +(418,808,o), +(418,823,c), +(418,839,o), +(431,852,o), +(451,852,c), +(469,852,o), +(479,844,o), +(479,829,c), +(479,813,o), +(466,800,o), +(446,800,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (97,0); +ref = ringcomb.case; +} +); +width = 692; +} +); +unicode = 366; +}, +{ +color = 10; +glyphname = Utilde; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(551,90,o), +(588,264,cs), +(679,690,l), +(577,690,l), +(488,274,ls), +(462,151,o), +(389,87,o), +(281,87,cs), +(195,87,o), +(152,128,o), +(152,208,cs), +(152,228,o), +(155,250,o), +(160,274,cs), +(249,690,l), +(144,690,l), +(53,264,ls), +(48,241,o), +(46,219,o), +(46,198,cs), +(46,73,o), +(131,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(330,735,l), +(332,757,o), +(345,773,o), +(368,773,c), +(404,773,o), +(431,735,o), +(488,735,c), +(551,735,o), +(590,777,o), +(602,845,c), +(534,845,l), +(532,823,o), +(519,807,o), +(496,807,c), +(461,807,o), +(433,845,o), +(376,845,c), +(313,845,o), +(274,803,o), +(262,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (88,0); +ref = tildecomb.case; +} +); +width = 674; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(466,-14,o), +(583,87,o), +(621,265,cs), +(712,690,l), +(560,690,l), +(471,273,ls), +(452,184,o), +(388,131,o), +(299,131,c), +(225,131,o), +(189,163,o), +(189,226,cs), +(189,240,o), +(190,256,o), +(194,273,cs), +(283,690,l), +(129,690,l), +(38,265,ls), +(33,243,o), +(31,221,o), +(31,201,cs), +(31,74,o), +(121,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(346,735,l), +(347,761,o), +(363,772,o), +(380,772,c), +(413,772,o), +(435,735,o), +(500,735,c), +(563,735,o), +(610,781,o), +(622,854,c), +(538,854,l), +(537,828,o), +(521,817,o), +(504,817,c), +(473,817,o), +(449,854,o), +(384,854,c), +(320,854,o), +(273,808,o), +(262,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = tildecomb.case; +} +); +width = 692; +} +); +unicode = 360; +}, +{ +color = 6; +glyphname = V; +kernLeft = V; +kernRight = V; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(335,0,l), +(720,690,l), +(605,690,l), +(233,0,l) +); +}, +{ +closed = 1; +nodes = ( +(279,0,l), +(195,690,l), +(90,690,l), +(181,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(335,0,l), +(720,690,l), +(605,690,l), +(233,0,l) +); +}, +{ +closed = 1; +nodes = ( +(279,0,l), +(195,690,l), +(90,690,l), +(181,0,l) +); +} +); +width = 660; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(384,0,l), +(750,690,l), +(574,690,l), +(227,0,l) +); +}, +{ +closed = 1; +nodes = ( +(297,0,l), +(234,690,l), +(75,690,l), +(147,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,0,l), +(750,690,l), +(574,690,l), +(227,0,l) +); +}, +{ +closed = 1; +nodes = ( +(297,0,l), +(234,690,l), +(75,690,l), +(147,0,l) +); +} +); +width = 675; +} +); +unicode = 86; +}, +{ +color = 6; +glyphname = W; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (405,0); +}, +{ +name = top; +pos = (551,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (405,0); +}, +{ +name = top; +pos = (551,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(679,0,l), +(978,690,l), +(870,690,l), +(579,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(197,690,l), +(93,690,l), +(98,0,l) +); +}, +{ +closed = 1; +nodes = ( +(259,0,l), +(555,690,l), +(456,690,l), +(159,0,l) +); +}, +{ +closed = 1; +nodes = ( +(615,0,l), +(611,690,l), +(517,690,l), +(520,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(517,602,l), +(520,0,l), +(679,0,l), +(978,690,l), +(870,690,l), +(615,84,l), +(611,690,l), +(456,690,l), +(195,84,l), +(197,690,l), +(93,690,l), +(98,0,l) +); +} +); +width = 921; +}, +{ +anchors = ( +{ +name = bottom; +pos = (437,0); +}, +{ +name = top; +pos = (583,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (437,0); +}, +{ +name = top; +pos = (583,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(770,0,l), +(1057,690,l), +(893,690,l), +(620,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,0,l), +(235,690,l), +(79,690,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,0,l), +(592,690,l), +(446,690,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(663,0,l), +(682,690,l), +(544,690,l), +(519,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,0,l), +(539,554,l), +(519,0,l), +(770,0,l), +(1057,690,l), +(893,690,l), +(666,117,l), +(682,690,l), +(446,690,l), +(221,117,l), +(235,690,l), +(79,690,l), +(72,0,l) +); +} +); +width = 986; +} +); +unicode = 87; +}, +{ +color = 10; +glyphname = Wacute; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,0,l), +(978,690,l), +(870,690,l), +(579,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(197,690,l), +(93,690,l), +(98,0,l) +); +}, +{ +closed = 1; +nodes = ( +(259,0,l), +(555,690,l), +(456,690,l), +(159,0,l) +); +}, +{ +closed = 1; +nodes = ( +(615,0,l), +(611,690,l), +(517,690,l), +(520,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,735,l), +(740,845,l), +(605,845,l), +(481,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (228,0); +ref = acutecomb.case; +} +); +width = 921; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(770,0,l), +(1057,690,l), +(893,690,l), +(620,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,0,l), +(235,690,l), +(79,690,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,0,l), +(592,690,l), +(446,690,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(663,0,l), +(682,690,l), +(544,690,l), +(519,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,735,l), +(803,850,l), +(630,850,l), +(502,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = W; +}, +{ +pos = (261,0); +ref = acutecomb.case; +} +); +width = 986; +} +); +unicode = 7810; +}, +{ +color = 10; +glyphname = Wcircumflex; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,0,l), +(978,690,l), +(870,690,l), +(579,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(197,690,l), +(93,690,l), +(98,0,l) +); +}, +{ +closed = 1; +nodes = ( +(259,0,l), +(555,690,l), +(456,690,l), +(159,0,l) +); +}, +{ +closed = 1; +nodes = ( +(615,0,l), +(611,690,l), +(517,690,l), +(520,0,l) +); +}, +{ +closed = 1; +nodes = ( +(470,735,l), +(591,814,l), +(606,845,l), +(501,845,l), +(363,735,l) +); +}, +{ +closed = 1; +nodes = ( +(729,735,l), +(639,845,l), +(534,845,l), +(548,814,l), +(636,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (227,0); +ref = circumflexcomb.case; +} +); +width = 921; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(770,0,l), +(1057,690,l), +(893,690,l), +(620,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,0,l), +(235,690,l), +(79,690,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,0,l), +(592,690,l), +(446,690,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(663,0,l), +(682,690,l), +(544,690,l), +(519,0,l) +); +}, +{ +closed = 1; +nodes = ( +(508,735,l), +(623,812,l), +(645,850,l), +(516,850,l), +(381,735,l) +); +}, +{ +closed = 1; +nodes = ( +(769,735,l), +(684,850,l), +(555,850,l), +(571,812,l), +(652,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = W; +}, +{ +pos = (259,0); +ref = circumflexcomb.case; +} +); +width = 986; +} +); +unicode = 372; +}, +{ +color = 10; +glyphname = Wdieresis; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,0,l), +(978,690,l), +(870,690,l), +(579,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(197,690,l), +(93,690,l), +(98,0,l) +); +}, +{ +closed = 1; +nodes = ( +(259,0,l), +(555,690,l), +(456,690,l), +(159,0,l) +); +}, +{ +closed = 1; +nodes = ( +(615,0,l), +(611,690,l), +(517,690,l), +(520,0,l) +); +}, +{ +closed = 1; +nodes = ( +(488,742,o), +(514,767,o), +(514,802,c), +(514,834,o), +(493,855,o), +(462,855,c), +(427,855,o), +(402,830,o), +(402,793,c), +(402,763,o), +(423,742,o), +(453,742,c) +); +}, +{ +closed = 1; +nodes = ( +(691,742,o), +(717,767,o), +(717,802,c), +(717,834,o), +(696,855,o), +(665,855,c), +(630,855,o), +(605,830,o), +(605,793,c), +(605,763,o), +(626,742,o), +(656,742,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (228,0); +ref = dieresiscomb.case; +} +); +width = 921; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(770,0,l), +(1057,690,l), +(893,690,l), +(620,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,0,l), +(235,690,l), +(79,690,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,0,l), +(592,690,l), +(446,690,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(663,0,l), +(682,690,l), +(544,690,l), +(519,0,l) +); +}, +{ +closed = 1; +nodes = ( +(518,742,o), +(550,770,o), +(550,813,c), +(550,850,o), +(526,873,o), +(485,873,c), +(443,873,o), +(411,845,o), +(411,802,c), +(411,765,o), +(434,742,o), +(476,742,c) +); +}, +{ +closed = 1; +nodes = ( +(738,742,o), +(770,770,o), +(770,813,c), +(770,850,o), +(746,873,o), +(705,873,c), +(663,873,o), +(631,845,o), +(631,802,c), +(631,765,o), +(654,742,o), +(696,742,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = W; +}, +{ +pos = (259,0); +ref = dieresiscomb.case; +} +); +width = 986; +} +); +unicode = 7812; +}, +{ +color = 10; +glyphname = Wgrave; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(679,0,l), +(978,690,l), +(870,690,l), +(579,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(197,690,l), +(93,690,l), +(98,0,l) +); +}, +{ +closed = 1; +nodes = ( +(259,0,l), +(555,690,l), +(456,690,l), +(159,0,l) +); +}, +{ +closed = 1; +nodes = ( +(615,0,l), +(611,690,l), +(517,690,l), +(520,0,l) +); +}, +{ +closed = 1; +nodes = ( +(605,735,l), +(529,845,l), +(404,845,l), +(517,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (227,0); +ref = gravecomb.case; +} +); +width = 921; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(770,0,l), +(1057,690,l), +(893,690,l), +(620,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,0,l), +(235,690,l), +(79,690,l), +(72,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,0,l), +(592,690,l), +(446,690,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(663,0,l), +(682,690,l), +(544,690,l), +(519,0,l) +); +}, +{ +closed = 1; +nodes = ( +(641,735,l), +(563,850,l), +(402,850,l), +(531,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = W; +}, +{ +pos = (258,0); +ref = gravecomb.case; +} +); +width = 986; +} +); +unicode = 7808; +}, +{ +color = 6; +glyphname = X; +kernLeft = X; +kernRight = X; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(71,0,l), +(304,286,l), +(351,334,l), +(661,690,l), +(530,690,l), +(311,423,l), +(263,374,l), +(-60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(524,0,l), +(209,690,l), +(97,690,l), +(412,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(71,0,l), +(304,286,l), +(351,334,l), +(661,690,l), +(530,690,l), +(311,423,l), +(263,374,l), +(-60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(524,0,l), +(209,690,l), +(97,690,l), +(412,0,l) +); +} +); +width = 610; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(115,0,l), +(313,249,l), +(388,321,l), +(699,690,l), +(511,690,l), +(326,458,l), +(251,384,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(562,0,l), +(250,690,l), +(84,690,l), +(396,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(115,0,l), +(313,249,l), +(388,321,l), +(699,690,l), +(511,690,l), +(326,458,l), +(251,384,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(562,0,l), +(250,690,l), +(84,690,l), +(396,0,l) +); +} +); +width = 635; +} +); +unicode = 88; +}, +{ +color = 6; +glyphname = Y; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (379.664,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (379.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +} +); +width = 600; +}, +{ +anchors = ( +{ +name = top; +pos = (399.664,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (399.664,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +} +); +width = 640; +} +); +unicode = 89; +}, +{ +color = 10; +glyphname = Yacute; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +}, +{ +closed = 1; +nodes = ( +(425,735,l), +(583,845,l), +(448,845,l), +(324,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (57,0); +ref = acutecomb.case; +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +}, +{ +closed = 1; +nodes = ( +(461,735,l), +(637,850,l), +(464,850,l), +(336,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (78,0); +ref = acutecomb.case; +} +); +width = 640; +} +); +unicode = 221; +}, +{ +color = 10; +glyphname = Ycircumflex; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +}, +{ +closed = 1; +nodes = ( +(313,735,l), +(434,814,l), +(449,845,l), +(344,845,l), +(206,735,l) +); +}, +{ +closed = 1; +nodes = ( +(572,735,l), +(482,845,l), +(377,845,l), +(391,814,l), +(479,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (56,0); +ref = circumflexcomb.case; +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +}, +{ +closed = 1; +nodes = ( +(342,735,l), +(457,812,l), +(479,850,l), +(350,850,l), +(215,735,l) +); +}, +{ +closed = 1; +nodes = ( +(603,735,l), +(518,850,l), +(389,850,l), +(405,812,l), +(486,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (76,0); +ref = circumflexcomb.case; +} +); +width = 640; +} +); +unicode = 374; +}, +{ +color = 10; +glyphname = Ydieresis; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +}, +{ +closed = 1; +nodes = ( +(331,742,o), +(357,767,o), +(357,802,c), +(357,834,o), +(336,855,o), +(305,855,c), +(270,855,o), +(245,830,o), +(245,793,c), +(245,763,o), +(266,742,o), +(296,742,c) +); +}, +{ +closed = 1; +nodes = ( +(534,742,o), +(560,767,o), +(560,802,c), +(560,834,o), +(539,855,o), +(508,855,c), +(473,855,o), +(448,830,o), +(448,793,c), +(448,763,o), +(469,742,o), +(499,742,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (57,0); +ref = dieresiscomb.case; +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +}, +{ +closed = 1; +nodes = ( +(352,742,o), +(384,770,o), +(384,813,c), +(384,850,o), +(360,873,o), +(319,873,c), +(277,873,o), +(245,845,o), +(245,802,c), +(245,765,o), +(268,742,o), +(310,742,c) +); +}, +{ +closed = 1; +nodes = ( +(572,742,o), +(604,770,o), +(604,813,c), +(604,850,o), +(580,873,o), +(539,873,c), +(497,873,o), +(465,845,o), +(465,802,c), +(465,765,o), +(488,742,o), +(530,742,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (76,0); +ref = dieresiscomb.case; +} +); +width = 640; +} +); +unicode = 376; +}, +{ +color = 10; +glyphname = Ygrave; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +}, +{ +closed = 1; +nodes = ( +(448,735,l), +(372,845,l), +(247,845,l), +(360,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (56,0); +ref = gravecomb.case; +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +}, +{ +closed = 1; +nodes = ( +(475,735,l), +(397,850,l), +(236,850,l), +(365,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (75,0); +ref = gravecomb.case; +} +); +width = 640; +} +); +unicode = 7922; +}, +{ +color = 10; +glyphname = Ymacron; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +}, +{ +closed = 1; +nodes = ( +(551,753,l), +(569,837,l), +(253,837,l), +(235,753,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (57,0); +ref = macroncomb.case; +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +}, +{ +closed = 1; +nodes = ( +(574,735,l), +(599,850,l), +(269,850,l), +(244,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (77,0); +ref = macroncomb.case; +} +); +width = 640; +} +); +unicode = 562; +}, +{ +color = 10; +glyphname = Ytilde; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(672,690,l), +(547,690,l), +(262,320,l), +(315,243,l) +); +}, +{ +closed = 1; +nodes = ( +(280,0,l), +(354,350,l), +(249,350,l), +(175,0,l) +); +}, +{ +closed = 1; +nodes = ( +(319,320,l), +(189,690,l), +(78,690,l), +(245,243,l) +); +}, +{ +closed = 1; +nodes = ( +(299,735,l), +(301,757,o), +(314,773,o), +(337,773,c), +(373,773,o), +(400,735,o), +(457,735,c), +(520,735,o), +(559,777,o), +(571,845,c), +(503,845,l), +(501,823,o), +(488,807,o), +(465,807,c), +(430,807,o), +(402,845,o), +(345,845,c), +(282,845,o), +(243,803,o), +(231,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (57,0); +ref = tildecomb.case; +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(717,690,l), +(536,690,l), +(277,343,l), +(353,221,l) +); +}, +{ +closed = 1; +nodes = ( +(324,0,l), +(405,381,l), +(251,381,l), +(170,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,343,l), +(234,690,l), +(73,690,l), +(236,220,l) +); +}, +{ +closed = 1; +nodes = ( +(326,735,l), +(327,761,o), +(343,772,o), +(360,772,c), +(393,772,o), +(415,735,o), +(480,735,c), +(543,735,o), +(590,781,o), +(602,854,c), +(518,854,l), +(517,828,o), +(501,817,o), +(484,817,c), +(453,817,o), +(429,854,o), +(364,854,c), +(300,854,o), +(253,808,o), +(242,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (76,0); +ref = tildecomb.case; +} +); +width = 640; +} +); +unicode = 7928; +}, +{ +color = 6; +glyphname = Z; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (253,0); +}, +{ +name = center; +pos = (326,345); +}, +{ +name = top; +pos = (399,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (253,0); +}, +{ +name = center; +pos = (326,345); +}, +{ +name = top; +pos = (399,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(108,52,l), +(635,638,l), +(499,638,l), +(-28,52,l) +); +}, +{ +closed = 1; +nodes = ( +(511,0,l), +(531,96,l), +(21,96,l), +(-28,52,l), +(-39,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,594,l), +(635,638,l), +(646,690,l), +(123,690,l), +(102,594,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(108,52,l), +(635,638,l), +(499,638,l), +(-28,52,l) +); +}, +{ +closed = 1; +nodes = ( +(511,0,l), +(531,96,l), +(21,96,l), +(-28,52,l), +(-39,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,594,l), +(635,638,l), +(646,690,l), +(123,690,l), +(102,594,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = center; +pos = (325,345); +}, +{ +name = top; +pos = (398,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = center; +pos = (325,345); +}, +{ +name = top; +pos = (398,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(174,103,l), +(632,587,l), +(431,587,l), +(-26,103,l) +); +}, +{ +closed = 1; +nodes = ( +(519,0,l), +(549,140,l), +(40,140,l), +(-26,103,l), +(-48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(566,550,l), +(632,587,l), +(654,690,l), +(114,690,l), +(84,550,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,103,l), +(632,587,l), +(431,587,l), +(-26,103,l) +); +}, +{ +closed = 1; +nodes = ( +(519,0,l), +(549,140,l), +(40,140,l), +(-26,103,l), +(-48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(566,550,l), +(632,587,l), +(654,690,l), +(114,690,l), +(84,550,l) +); +} +); +width = 616; +} +); +unicode = 90; +}, +{ +color = 10; +glyphname = Zacute; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,52,l), +(635,638,l), +(499,638,l), +(-28,52,l) +); +}, +{ +closed = 1; +nodes = ( +(511,0,l), +(531,96,l), +(21,96,l), +(-28,52,l), +(-39,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,594,l), +(635,638,l), +(646,690,l), +(123,690,l), +(102,594,l) +); +}, +{ +closed = 1; +nodes = ( +(433,735,l), +(591,845,l), +(456,845,l), +(332,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Z; +}, +{ +pos = (76,0); +ref = acutecomb.case; +} +); +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,103,l), +(632,587,l), +(431,587,l), +(-26,103,l) +); +}, +{ +closed = 1; +nodes = ( +(519,0,l), +(549,140,l), +(40,140,l), +(-26,103,l), +(-48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(566,550,l), +(632,587,l), +(654,690,l), +(114,690,l), +(84,550,l) +); +}, +{ +closed = 1; +nodes = ( +(443,735,l), +(619,850,l), +(446,850,l), +(318,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (76,0); +ref = acutecomb.case; +} +); +width = 616; +} +); +unicode = 377; +}, +{ +color = 10; +glyphname = Zcaron; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,52,l), +(635,638,l), +(499,638,l), +(-28,52,l) +); +}, +{ +closed = 1; +nodes = ( +(511,0,l), +(531,96,l), +(21,96,l), +(-28,52,l), +(-39,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,594,l), +(635,638,l), +(646,690,l), +(123,690,l), +(102,594,l) +); +}, +{ +closed = 1; +nodes = ( +(433,735,l), +(419,766,l), +(331,845,l), +(238,845,l), +(328,735,l) +); +}, +{ +closed = 1; +nodes = ( +(466,735,l), +(604,845,l), +(497,845,l), +(376,766,l), +(361,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Z; +}, +{ +pos = (74,0); +ref = caroncomb.case; +} +); +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,103,l), +(632,587,l), +(431,587,l), +(-26,103,l) +); +}, +{ +closed = 1; +nodes = ( +(519,0,l), +(549,140,l), +(40,140,l), +(-26,103,l), +(-48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(566,550,l), +(632,587,l), +(654,690,l), +(114,690,l), +(84,550,l) +); +}, +{ +closed = 1; +nodes = ( +(436,735,l), +(420,773,l), +(339,850,l), +(222,850,l), +(307,735,l) +); +}, +{ +closed = 1; +nodes = ( +(475,735,l), +(610,850,l), +(483,850,l), +(368,773,l), +(346,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (73,0); +ref = caroncomb.case; +} +); +width = 616; +} +); +unicode = 381; +}, +{ +color = 10; +glyphname = Zdotaccent; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,52,l), +(635,638,l), +(499,638,l), +(-28,52,l) +); +}, +{ +closed = 1; +nodes = ( +(511,0,l), +(531,96,l), +(21,96,l), +(-28,52,l), +(-39,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,594,l), +(635,638,l), +(646,690,l), +(123,690,l), +(102,594,l) +); +}, +{ +closed = 1; +nodes = ( +(443,735,o), +(471,760,o), +(471,795,c), +(471,827,o), +(448,848,o), +(414,848,c), +(376,848,o), +(349,823,o), +(349,785,c), +(349,756,o), +(372,735,o), +(405,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = Z; +}, +{ +pos = (75,0); +ref = dotaccentcomb.case; +} +); +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,103,l), +(632,587,l), +(431,587,l), +(-26,103,l) +); +}, +{ +closed = 1; +nodes = ( +(519,0,l), +(549,140,l), +(40,140,l), +(-26,103,l), +(-48,0,l) +); +}, +{ +closed = 1; +nodes = ( +(566,550,l), +(632,587,l), +(654,690,l), +(114,690,l), +(84,550,l) +); +}, +{ +closed = 1; +nodes = ( +(448,741,o), +(484,771,o), +(484,817,c), +(484,856,o), +(457,881,o), +(413,881,c), +(368,881,o), +(332,851,o), +(332,804,c), +(332,766,o), +(359,741,o), +(403,741,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (74,0); +ref = dotaccentcomb.case; +} +); +width = 616; +} +); +unicode = 379; +}, +{ +color = 6; +glyphname = a; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-22 13:33:38 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = ogonek; +pos = (437,0); +}, +{ +name = top; +pos = (329,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (329,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +} +); +width = 574; +}, +{ +anchors = ( +{ +name = bottom; +pos = (221,0); +}, +{ +name = ogonek; +pos = (459,0); +}, +{ +name = top; +pos = (333,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (221,0); +}, +{ +name = top; +pos = (333,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +width = 584; +} +); +unicode = 97; +}, +{ +color = 10; +glyphname = aacute; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(374,585,l), +(511,725,l), +(385,725,l), +(285,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (28,0); +ref = acutecomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(389,585,l), +(545,730,l), +(384,730,l), +(274,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (55,0); +ref = acutecomb; +} +); +width = 584; +} +); +unicode = 225; +}, +{ +color = 10; +glyphname = abreve; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(445,585,o), +(492,639,o), +(510,725,c), +(440,725,l), +(432,684,o), +(401,660,o), +(354,660,c), +(316,660,o), +(298,677,o), +(298,707,cs), +(298,712,o), +(299,719,o), +(300,725,c), +(230,725,l), +(228,713,o), +(227,702,o), +(227,692,cs), +(227,629,o), +(273,585,o), +(350,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (40,0); +ref = brevecomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(459,585,o), +(505,639,o), +(524,730,c), +(433,730,l), +(426,693,o), +(398,671,o), +(361,671,c), +(330,671,o), +(315,686,o), +(315,713,cs), +(315,718,o), +(316,724,o), +(317,730,c), +(226,730,l), +(224,718,o), +(223,708,o), +(223,697,cs), +(223,626,o), +(273,585,o), +(354,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (45,0); +ref = brevecomb; +} +); +width = 584; +} +); +unicode = 259; +}, +{ +color = 10; +glyphname = acircumflex; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(278,585,l), +(382,685,l), +(389,725,l), +(314,725,l), +(184,585,l) +); +}, +{ +closed = 1; +nodes = ( +(496,585,l), +(426,725,l), +(351,725,l), +(352,685,l), +(414,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (41,0); +ref = circumflexcomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(288,585,l), +(399,686,l), +(411,730,l), +(305,730,l), +(172,585,l) +); +}, +{ +closed = 1; +nodes = ( +(516,585,l), +(445,730,l), +(339,730,l), +(344,686,l), +(412,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (45,0); +ref = circumflexcomb; +} +); +width = 584; +} +); +unicode = 226; +}, +{ +color = 10; +glyphname = adieresis; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(295,602,o), +(321,627,o), +(321,662,c), +(321,694,o), +(300,715,o), +(269,715,c), +(234,715,o), +(209,690,o), +(209,653,c), +(209,623,o), +(230,602,o), +(260,602,c) +); +}, +{ +closed = 1; +nodes = ( +(477,602,o), +(503,627,o), +(503,662,c), +(503,694,o), +(482,715,o), +(451,715,c), +(416,715,o), +(391,690,o), +(391,653,c), +(391,623,o), +(412,602,o), +(442,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (39,0); +ref = dieresiscomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(299,588,o), +(333,618,o), +(333,664,c), +(333,703,o), +(308,728,o), +(267,728,c), +(225,728,o), +(191,698,o), +(191,652,c), +(191,613,o), +(216,588,o), +(257,588,c) +); +}, +{ +closed = 1; +nodes = ( +(495,588,o), +(529,618,o), +(529,664,c), +(529,703,o), +(504,728,o), +(463,728,c), +(421,728,o), +(387,698,o), +(387,652,c), +(387,613,o), +(412,588,o), +(453,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (43,0); +ref = dieresiscomb; +} +); +width = 584; +} +); +unicode = 228; +}, +{ +color = 10; +glyphname = adotbelow; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(222,-195,o), +(250,-168,o), +(250,-130,c), +(250,-95,o), +(227,-72,o), +(193,-72,c), +(155,-72,o), +(128,-99,o), +(128,-140,c), +(128,-172,o), +(151,-195,o), +(184,-195,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (42,0); +ref = dotbelow; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(235,-198,o), +(271,-166,o), +(271,-117,c), +(271,-75,o), +(244,-48,o), +(200,-48,c), +(155,-48,o), +(119,-80,o), +(119,-130,c), +(119,-171,o), +(146,-198,o), +(190,-198,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (44,0); +ref = dotbelow; +} +); +width = 584; +} +); +unicode = 7841; +}, +{ +color = 10; +glyphname = agrave; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:48:12 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(390,585,l), +(350,725,l), +(229,725,l), +(309,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (39,0); +ref = gravecomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(407,585,l), +(358,730,l), +(208,730,l), +(305,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (97,0); +ref = gravecomb; +} +); +width = 584; +} +); +unicode = 224; +}, +{ +color = 10; +glyphname = amacron; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(486,621,l), +(504,705,l), +(228,705,l), +(210,621,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (39,0); +ref = macroncomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(495,603,l), +(520,718,l), +(226,718,l), +(201,603,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (44,0); +ref = macroncomb; +} +); +width = 584; +} +); +unicode = 257; +}, +{ +color = 10; +glyphname = aogonek; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:04:03 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(343,-185,o), +(380,-176,o), +(402,-165,c), +(410,-84,l), +(385,-96,o), +(354,-106,o), +(328,-106,c), +(317,-106,o), +(311,-101,o), +(311,-93,cs), +(311,-72,o), +(348,-38,o), +(437,0,c), +(337,0,l), +(252,-35,o), +(223,-74,o), +(223,-118,c), +(223,-155,o), +(249,-185,o), +(311,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (207,0); +ref = ogonekcomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(357,-190,o), +(392,-183,o), +(423,-170,c), +(434,-75,l), +(412,-87,o), +(384,-96,o), +(365,-96,c), +(352,-96,o), +(345,-90,o), +(345,-82,cs), +(345,-65,o), +(370,-36,o), +(459,0,c), +(354,0,l), +(261,-36,o), +(230,-82,o), +(230,-121,c), +(230,-158,o), +(260,-190,o), +(329,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (193,0); +ref = ogonekcomb; +} +); +width = 584; +} +); +unicode = 261; +}, +{ +color = 10; +glyphname = aring; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(410,575,o), +(454,622,o), +(454,680,c), +(454,728,o), +(420,758,o), +(370,758,c), +(305,758,o), +(261,711,o), +(261,653,c), +(261,605,o), +(295,575,o), +(345,575,c) +); +}, +{ +closed = 1; +nodes = ( +(332,630,o), +(323,641,o), +(323,658,c), +(323,681,o), +(340,703,o), +(364,703,c), +(383,703,o), +(392,692,o), +(392,675,c), +(392,652,o), +(375,630,o), +(351,630,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (41,0); +ref = ringcomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(422,575,o), +(469,624,o), +(469,682,c), +(469,733,o), +(432,768,o), +(373,768,c), +(303,768,o), +(256,719,o), +(256,661,c), +(256,610,o), +(293,575,o), +(352,575,c) +); +}, +{ +closed = 1; +nodes = ( +(339,640,o), +(331,651,o), +(331,666,c), +(331,685,o), +(345,703,o), +(367,703,c), +(386,703,o), +(394,692,o), +(394,677,c), +(394,658,o), +(380,640,o), +(358,640,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (44,0); +ref = ringcomb; +} +); +width = 584; +} +); +unicode = 229; +}, +{ +color = 10; +glyphname = aringacute; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(410,575,o), +(454,622,o), +(454,680,c), +(454,728,o), +(420,758,o), +(370,758,c), +(305,758,o), +(261,711,o), +(261,653,c), +(261,605,o), +(295,575,o), +(345,575,c) +); +}, +{ +closed = 1; +nodes = ( +(332,630,o), +(323,641,o), +(323,658,c), +(323,681,o), +(340,703,o), +(364,703,c), +(383,703,o), +(392,692,o), +(392,675,c), +(392,652,o), +(375,630,o), +(351,630,c) +); +}, +{ +closed = 1; +nodes = ( +(421,775,l), +(551,875,l), +(417,875,l), +(333,775,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (41,0); +ref = ringcomb; +}, +{ +pos = (41,38); +ref = acutecomb.case; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(422,575,o), +(469,624,o), +(469,682,c), +(469,733,o), +(432,768,o), +(373,768,c), +(303,768,o), +(256,719,o), +(256,661,c), +(256,610,o), +(293,575,o), +(352,575,c) +); +}, +{ +closed = 1; +nodes = ( +(339,640,o), +(331,651,o), +(331,666,c), +(331,685,o), +(345,703,o), +(367,703,c), +(386,703,o), +(394,692,o), +(394,677,c), +(394,658,o), +(380,640,o), +(358,640,c) +); +}, +{ +closed = 1; +nodes = ( +(446,784,l), +(583,888,l), +(423,888,l), +(334,784,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (44,0); +ref = ringcomb; +}, +{ +pos = (62,48); +ref = acutecomb.case; +} +); +width = 584; +} +); +unicode = 507; +}, +{ +color = 10; +glyphname = atilde; +kernLeft = o; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(261,585,l), +(265,624,o), +(274,642,o), +(299,642,c), +(331,642,o), +(347,585,o), +(408,585,c), +(471,585,o), +(505,639,o), +(517,725,c), +(449,725,l), +(446,686,o), +(436,668,o), +(411,668,c), +(380,668,o), +(363,725,o), +(302,725,c), +(239,725,o), +(206,671,o), +(193,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (40,0); +ref = tildecomb; +} +); +width = 574; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(269,585,l), +(270,612,o), +(285,624,o), +(304,624,c), +(338,624,o), +(353,585,o), +(411,585,c), +(473,585,o), +(520,641,o), +(534,730,c), +(450,730,l), +(449,702,o), +(435,690,o), +(416,690,c), +(384,690,o), +(366,730,o), +(308,730,c), +(245,730,o), +(198,674,o), +(185,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = a; +}, +{ +pos = (44,0); +ref = tildecomb; +} +); +width = 584; +} +); +unicode = 227; +}, +{ +color = 6; +glyphname = ae; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (500,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (500,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(707,-10,o), +(786,43,o), +(834,125,c), +(749,170,l), +(716,116,o), +(666,84,o), +(610,84,c), +(538,84,o), +(498,121,o), +(498,195,cs), +(498,337,o), +(578,454,o), +(675,454,c), +(744,454,o), +(781,412,o), +(781,335,cs), +(781,311,o), +(779,288,o), +(774,266,c), +(812,310,l), +(494,310,l), +(477,231,l), +(869,231,l), +(878,265,o), +(885,302,o), +(885,340,cs), +(885,459,o), +(815,540,o), +(702,540,c), +(556,540,o), +(444,376,o), +(444,170,cs), +(444,63,o), +(509,-10,o), +(612,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(707,-10,o), +(786,43,o), +(834,125,c), +(749,170,l), +(716,116,o), +(666,84,o), +(610,84,c), +(538,84,o), +(498,121,o), +(498,195,cs), +(498,337,o), +(578,454,o), +(675,454,c), +(744,454,o), +(781,412,o), +(781,335,cs), +(781,311,o), +(779,288,o), +(774,266,c), +(812,310,l), +(494,310,l), +(477,231,l), +(869,231,l), +(878,265,o), +(885,302,o), +(885,340,cs), +(885,459,o), +(815,540,o), +(702,540,c), +(556,540,o), +(444,376,o), +(444,170,cs), +(444,63,o), +(509,-10,o), +(612,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +} +); +width = 932; +}, +{ +anchors = ( +{ +name = top; +pos = (496,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (496,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(719,-14,o), +(796,42,o), +(835,128,c), +(699,177,l), +(682,141,o), +(646,114,o), +(598,114,c), +(544,114,o), +(517,159,o), +(517,218,c), +(517,328,o), +(580,419,o), +(659,419,c), +(713,419,o), +(739,387,o), +(739,312,c), +(739,296,o), +(738,280,o), +(735,265,c), +(785,323,l), +(469,323,l), +(447,223,l), +(872,223,l), +(882,256,o), +(887,292,o), +(887,327,c), +(887,454,o), +(822,544,o), +(711,544,c), +(570,544,o), +(468,371,o), +(468,166,c), +(468,61,o), +(529,-14,o), +(627,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(719,-14,o), +(796,42,o), +(835,128,c), +(699,177,l), +(682,141,o), +(646,114,o), +(598,114,c), +(544,114,o), +(517,159,o), +(517,218,c), +(517,328,o), +(580,419,o), +(659,419,c), +(713,419,o), +(739,387,o), +(739,312,c), +(739,296,o), +(738,280,o), +(735,265,c), +(785,323,l), +(469,323,l), +(447,223,l), +(872,223,l), +(882,256,o), +(887,292,o), +(887,327,c), +(887,454,o), +(822,544,o), +(711,544,c), +(570,544,o), +(468,371,o), +(468,166,c), +(468,61,o), +(529,-14,o), +(627,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +width = 927; +} +); +unicode = 230; +}, +{ +color = 10; +glyphname = aeacute; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(707,-10,o), +(786,43,o), +(834,125,c), +(749,170,l), +(716,116,o), +(666,84,o), +(610,84,c), +(538,84,o), +(498,121,o), +(498,195,cs), +(498,337,o), +(578,454,o), +(675,454,c), +(744,454,o), +(781,412,o), +(781,335,cs), +(781,311,o), +(779,288,o), +(774,266,c), +(812,310,l), +(494,310,l), +(477,231,l), +(869,231,l), +(878,265,o), +(885,302,o), +(885,340,cs), +(885,459,o), +(815,540,o), +(702,540,c), +(556,540,o), +(444,376,o), +(444,170,cs), +(444,63,o), +(509,-10,o), +(612,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(290,-10,o), +(381,74,o), +(412,221,c), +(439,380,l), +(439,483,o), +(376,540,o), +(287,540,c), +(138,540,o), +(15,392,o), +(15,188,c), +(15,64,o), +(87,-10,o), +(184,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,77,o), +(120,113,o), +(120,195,c), +(120,343,o), +(196,453,o), +(303,453,c), +(368,453,o), +(407,417,o), +(407,335,c), +(407,196,o), +(331,77,o), +(224,77,c) +); +}, +{ +closed = 1; +nodes = ( +(437,0,l), +(550,530,l), +(450,530,l), +(424,407,l), +(409,265,l), +(363,122,l), +(337,0,l) +); +}, +{ +closed = 1; +nodes = ( +(545,585,l), +(682,725,l), +(556,725,l), +(456,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = ae; +}, +{ +pos = (199,0); +ref = acutecomb; +} +); +width = 932; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(719,-14,o), +(796,42,o), +(835,128,c), +(699,177,l), +(682,141,o), +(646,114,o), +(598,114,c), +(544,114,o), +(517,159,o), +(517,218,c), +(517,328,o), +(580,419,o), +(659,419,c), +(713,419,o), +(739,387,o), +(739,312,c), +(739,296,o), +(738,280,o), +(735,265,c), +(785,323,l), +(469,323,l), +(447,223,l), +(872,223,l), +(882,256,o), +(887,292,o), +(887,327,c), +(887,454,o), +(822,544,o), +(711,544,c), +(570,544,o), +(468,371,o), +(468,166,c), +(468,61,o), +(529,-14,o), +(627,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(552,585,l), +(708,730,l), +(547,730,l), +(437,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = ae; +}, +{ +pos = (218,0); +ref = acutecomb; +} +); +width = 927; +} +); +unicode = 509; +}, +{ +color = 6; +glyphname = b; +kernLeft = l; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(404,-10,o), +(527,138,o), +(527,342,c), +(527,466,o), +(455,540,o), +(358,540,c), +(252,540,o), +(161,456,o), +(130,309,c), +(103,150,l), +(103,47,o), +(166,-10,o), +(255,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(118,123,l), +(133,265,l), +(179,408,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(174,77,o), +(135,113,o), +(135,195,c), +(135,334,o), +(211,453,o), +(318,453,c), +(383,453,o), +(422,417,o), +(422,335,c), +(422,187,o), +(346,77,o), +(239,77,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(404,-10,o), +(527,138,o), +(527,342,c), +(527,466,o), +(455,540,o), +(358,540,c), +(252,540,o), +(161,456,o), +(130,309,c), +(103,150,l), +(103,47,o), +(166,-10,o), +(255,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(118,123,l), +(133,265,l), +(179,408,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(174,77,o), +(135,113,o), +(135,195,c), +(135,334,o), +(211,453,o), +(318,453,c), +(383,453,o), +(422,417,o), +(422,335,c), +(422,187,o), +(346,77,o), +(239,77,c) +); +} +); +width = 575; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(440,-14,o), +(542,154,o), +(542,341,c), +(542,468,o), +(482,544,o), +(384,544,c), +(283,544,o), +(200,458,o), +(168,304,c), +(146,145,l), +(143,42,o), +(195,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(159,139,l), +(166,265,l), +(210,383,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(197,120,o), +(169,151,o), +(169,212,c), +(169,322,o), +(227,410,o), +(309,410,c), +(360,410,o), +(388,379,o), +(388,318,c), +(388,208,o), +(330,120,o), +(248,120,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(440,-14,o), +(542,154,o), +(542,341,c), +(542,468,o), +(482,544,o), +(384,544,c), +(283,544,o), +(200,458,o), +(168,304,c), +(146,145,l), +(143,42,o), +(195,-14,o), +(283,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(159,139,l), +(166,265,l), +(210,383,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(197,120,o), +(169,151,o), +(169,212,c), +(169,322,o), +(227,410,o), +(309,410,c), +(360,410,o), +(388,379,o), +(388,318,c), +(388,208,o), +(330,120,o), +(248,120,c) +); +} +); +width = 586; +} +); +unicode = 98; +}, +{ +color = 6; +glyphname = c; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (203,0); +}, +{ +name = top; +pos = (315.655,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (203,0); +}, +{ +name = top; +pos = (315.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(394,40,o), +(447,145,c), +(353,179,l), +(319,109,o), +(277,80,o), +(226,80,c), +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(200,450,o), +(300,450,c), +(357,450,o), +(387,422,o), +(400,355,c), +(498,384,l), +(480,486,o), +(410,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(213,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(394,40,o), +(447,145,c), +(353,179,l), +(319,109,o), +(277,80,o), +(226,80,c), +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(200,450,o), +(300,450,c), +(357,450,o), +(387,422,o), +(400,355,c), +(498,384,l), +(480,486,o), +(410,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(213,-10,c) +); +} +); +width = 522; +}, +{ +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (332.655,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (332.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(352,-14,o), +(453,58,o), +(501,177,c), +(355,207,l), +(337,148,o), +(292,119,o), +(242,119,c), +(185,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(356,411,o), +(384,381,o), +(386,325,c), +(534,355,l), +(523,472,o), +(441,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(88,-14,o), +(221,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(352,-14,o), +(453,58,o), +(501,177,c), +(355,207,l), +(337,148,o), +(292,119,o), +(242,119,c), +(185,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(356,411,o), +(384,381,o), +(386,325,c), +(534,355,l), +(523,472,o), +(441,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(88,-14,o), +(221,-14,c) +); +} +); +width = 559; +} +); +unicode = 99; +}, +{ +color = 10; +glyphname = cacute; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(394,40,o), +(447,145,c), +(353,179,l), +(319,109,o), +(277,80,o), +(226,80,c), +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(200,450,o), +(300,450,c), +(357,450,o), +(387,422,o), +(400,355,c), +(498,384,l), +(480,486,o), +(410,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(361,585,l), +(498,725,l), +(372,725,l), +(272,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (15,0); +ref = acutecomb; +} +); +width = 522; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(352,-14,o), +(453,58,o), +(501,177,c), +(355,207,l), +(337,148,o), +(292,119,o), +(242,119,c), +(185,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(356,411,o), +(384,381,o), +(386,325,c), +(534,355,l), +(523,472,o), +(441,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(88,-14,o), +(221,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(389,585,l), +(545,730,l), +(384,730,l), +(274,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = c; +}, +{ +pos = (55,0); +ref = acutecomb; +} +); +width = 559; +} +); +unicode = 263; +}, +{ +color = 10; +glyphname = ccaron; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(394,40,o), +(447,145,c), +(353,179,l), +(319,109,o), +(277,80,o), +(226,80,c), +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(200,450,o), +(300,450,c), +(357,450,o), +(387,422,o), +(400,355,c), +(498,384,l), +(480,486,o), +(410,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(346,585,l), +(345,625,l), +(283,725,l), +(201,725,l), +(271,585,l) +); +}, +{ +closed = 1; +nodes = ( +(383,585,l), +(513,725,l), +(419,725,l), +(315,625,l), +(308,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (27,0); +ref = caroncomb; +} +); +width = 522; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(352,-14,o), +(453,58,o), +(501,177,c), +(355,207,l), +(337,148,o), +(292,119,o), +(242,119,c), +(185,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(356,411,o), +(384,381,o), +(386,325,c), +(534,355,l), +(523,472,o), +(441,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(88,-14,o), +(221,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(380,585,l), +(375,629,l), +(307,730,l), +(203,730,l), +(274,585,l) +); +}, +{ +closed = 1; +nodes = ( +(414,585,l), +(547,730,l), +(431,730,l), +(320,629,l), +(308,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = c; +}, +{ +pos = (45,0); +ref = caroncomb; +} +); +width = 559; +} +); +unicode = 269; +}, +{ +color = 10; +glyphname = ccedilla; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(394,40,o), +(447,145,c), +(353,179,l), +(319,109,o), +(277,80,o), +(226,80,c), +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(200,450,o), +(300,450,c), +(357,450,o), +(387,422,o), +(400,355,c), +(498,384,l), +(480,486,o), +(410,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(225,-185,o), +(269,-144,o), +(269,-96,c), +(269,-55,o), +(240,-29,o), +(199,-29,c), +(208,-43,l), +(225,9,l), +(169,11,l), +(138,-73,l), +(150,-71,o), +(157,-70,o), +(168,-70,c), +(190,-70,o), +(201,-79,o), +(201,-94,c), +(201,-108,o), +(187,-119,o), +(162,-119,c), +(142,-119,o), +(127,-114,o), +(111,-105,c), +(84,-169,l), +(107,-180,o), +(131,-185,o), +(157,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (24,0); +ref = cedillacomb; +} +); +width = 522; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(352,-14,o), +(453,58,o), +(501,177,c), +(355,207,l), +(337,148,o), +(292,119,o), +(242,119,c), +(185,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(356,411,o), +(384,381,o), +(386,325,c), +(534,355,l), +(523,472,o), +(441,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(88,-14,o), +(221,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(262,-190,o), +(301,-146,o), +(301,-97,c), +(301,-57,o), +(272,-29,o), +(222,-29,c), +(231,-43,l), +(248,9,l), +(180,11,l), +(147,-80,l), +(159,-76,o), +(169,-74,o), +(181,-74,c), +(201,-74,o), +(211,-80,o), +(211,-91,c), +(211,-103,o), +(200,-109,o), +(177,-109,c), +(157,-109,o), +(135,-105,o), +(116,-94,c), +(87,-174,l), +(112,-185,o), +(142,-190,o), +(170,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = c; +}, +{ +pos = (40,0); +ref = cedillacomb; +} +); +width = 559; +} +); +unicode = 231; +}, +{ +color = 10; +glyphname = ccircumflex; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(394,40,o), +(447,145,c), +(353,179,l), +(319,109,o), +(277,80,o), +(226,80,c), +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(200,450,o), +(300,450,c), +(357,450,o), +(387,422,o), +(400,355,c), +(498,384,l), +(480,486,o), +(410,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(265,585,l), +(369,685,l), +(376,725,l), +(301,725,l), +(171,585,l) +); +}, +{ +closed = 1; +nodes = ( +(483,585,l), +(413,725,l), +(338,725,l), +(339,685,l), +(401,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (28,0); +ref = circumflexcomb; +} +); +width = 522; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(352,-14,o), +(453,58,o), +(501,177,c), +(355,207,l), +(337,148,o), +(292,119,o), +(242,119,c), +(185,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(356,411,o), +(384,381,o), +(386,325,c), +(534,355,l), +(523,472,o), +(441,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(88,-14,o), +(221,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(288,585,l), +(399,686,l), +(411,730,l), +(305,730,l), +(172,585,l) +); +}, +{ +closed = 1; +nodes = ( +(516,585,l), +(445,730,l), +(339,730,l), +(344,686,l), +(412,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = c; +}, +{ +pos = (45,0); +ref = circumflexcomb; +} +); +width = 559; +} +); +unicode = 265; +}, +{ +color = 10; +glyphname = cdotaccent; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(394,40,o), +(447,145,c), +(353,179,l), +(319,109,o), +(277,80,o), +(226,80,c), +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(200,450,o), +(300,450,c), +(357,450,o), +(387,422,o), +(400,355,c), +(498,384,l), +(480,486,o), +(410,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(377,602,o), +(405,629,o), +(405,667,c), +(405,702,o), +(382,725,o), +(348,725,c), +(310,725,o), +(283,698,o), +(283,657,c), +(283,625,o), +(306,602,o), +(339,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (26,0); +ref = dotaccentcomb; +} +); +width = 522; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(352,-14,o), +(453,58,o), +(501,177,c), +(355,207,l), +(337,148,o), +(292,119,o), +(242,119,c), +(185,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(356,411,o), +(384,381,o), +(386,325,c), +(534,355,l), +(523,472,o), +(441,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(88,-14,o), +(221,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(401,588,o), +(437,620,o), +(437,669,c), +(437,711,o), +(410,738,o), +(366,738,c), +(321,738,o), +(285,706,o), +(285,656,c), +(285,615,o), +(312,588,o), +(356,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = c; +}, +{ +pos = (43,0); +ref = dotaccentcomb; +} +); +width = 559; +} +); +unicode = 267; +}, +{ +color = 6; +glyphname = d; +kernLeft = o; +kernRight = l; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (232,0); +}, +{ +name = center; +pos = (497,572); +}, +{ +name = top; +pos = (344,530); +}, +{ +name = topright; +pos = (619,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(292,-10,o), +(383,74,o), +(414,221,c), +(441,380,l), +(441,483,o), +(378,540,o), +(289,540,c), +(140,540,o), +(17,392,o), +(17,188,c), +(17,64,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(161,77,o), +(122,113,o), +(122,195,c), +(122,343,o), +(198,453,o), +(305,453,c), +(370,453,o), +(409,417,o), +(409,335,c), +(409,196,o), +(333,77,o), +(226,77,c) +); +}, +{ +closed = 1; +nodes = ( +(439,0,l), +(591,715,l), +(491,715,l), +(426,407,l), +(411,265,l), +(365,122,l), +(339,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-10,o), +(383,74,o), +(414,221,c), +(441,380,l), +(441,483,o), +(378,540,o), +(289,540,c), +(140,540,o), +(17,392,o), +(17,188,c), +(17,64,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(161,77,o), +(122,113,o), +(122,195,c), +(122,343,o), +(198,453,o), +(305,453,c), +(370,453,o), +(409,417,o), +(409,335,c), +(409,196,o), +(333,77,o), +(226,77,c) +); +}, +{ +closed = 1; +nodes = ( +(439,0,l), +(591,715,l), +(491,715,l), +(426,407,l), +(411,265,l), +(365,122,l), +(339,0,l) +); +} +); +width = 576; +}, +{ +anchors = ( +{ +name = bottom; +pos = (236,0); +}, +{ +name = center; +pos = (503,572); +}, +{ +name = top; +pos = (348,530); +}, +{ +name = topright; +pos = (637,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(611,715,l), +(462,715,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(611,715,l), +(462,715,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +} +); +width = 584; +} +); +unicode = 100; +}, +{ +color = 10; +glyphname = dcaron; +kernLeft = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(292,-10,o), +(383,74,o), +(414,221,c), +(441,380,l), +(441,483,o), +(378,540,o), +(289,540,c), +(140,540,o), +(17,392,o), +(17,188,c), +(17,64,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(161,77,o), +(122,113,o), +(122,195,c), +(122,343,o), +(198,453,o), +(305,453,c), +(370,453,o), +(409,417,o), +(409,335,c), +(409,196,o), +(333,77,o), +(226,77,c) +); +}, +{ +closed = 1; +nodes = ( +(439,0,l), +(591,715,l), +(491,715,l), +(426,407,l), +(411,265,l), +(365,122,l), +(339,0,l) +); +}, +{ +closed = 1; +nodes = ( +(641,442,l), +(743,715,l), +(639,715,l), +(581,442,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = d; +}, +{ +pos = (357,0); +ref = caroncomb.alt; +} +); +width = 576; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(611,715,l), +(462,715,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(679,408,l), +(806,715,l), +(656,715,l), +(591,408,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = d; +}, +{ +pos = (389,0); +ref = caroncomb.alt; +} +); +width = 584; +} +); +unicode = 271; +}, +{ +color = 6; +glyphname = dcroat; +kernLeft = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(292,-10,o), +(383,74,o), +(414,221,c), +(441,380,l), +(441,483,o), +(378,540,o), +(289,540,c), +(140,540,o), +(17,392,o), +(17,188,c), +(17,64,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(161,77,o), +(122,113,o), +(122,195,c), +(122,343,o), +(198,453,o), +(305,453,c), +(370,453,o), +(409,417,o), +(409,335,c), +(409,196,o), +(333,77,o), +(226,77,c) +); +}, +{ +closed = 1; +nodes = ( +(439,0,l), +(591,715,l), +(491,715,l), +(426,407,l), +(411,265,l), +(365,122,l), +(339,0,l) +); +}, +{ +closed = 1; +nodes = ( +(620,567,l), +(638,653,l), +(363,653,l), +(345,567,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-10,o), +(383,74,o), +(414,221,c), +(441,380,l), +(441,483,o), +(378,540,o), +(289,540,c), +(140,540,o), +(17,392,o), +(17,188,c), +(17,64,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(161,77,o), +(122,113,o), +(122,195,c), +(122,343,o), +(198,453,o), +(305,453,c), +(370,453,o), +(409,417,o), +(409,335,c), +(409,196,o), +(333,77,o), +(226,77,c) +); +}, +{ +closed = 1; +nodes = ( +(439,0,l), +(591,715,l), +(491,715,l), +(426,407,l), +(411,265,l), +(365,122,l), +(339,0,l) +); +}, +{ +closed = 1; +nodes = ( +(620,567,l), +(638,653,l), +(363,653,l), +(345,567,l) +); +} +); +width = 591; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(611,715,l), +(462,715,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(629,560,l), +(653,675,l), +(333,675,l), +(309,560,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(459,0,l), +(611,715,l), +(462,715,l), +(393,391,l), +(386,265,l), +(341,147,l), +(310,0,l) +); +}, +{ +closed = 1; +nodes = ( +(629,560,l), +(653,675,l), +(333,675,l), +(309,560,l) +); +} +); +width = 593; +} +); +unicode = 273; +}, +{ +color = 6; +glyphname = eth; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (226,0); +}, +{ +name = top; +pos = (378,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (226,0); +}, +{ +name = top; +pos = (378,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(373,-10,o), +(513,108,o), +(513,343,cs), +(513,462,o), +(466,600,o), +(349,715,c), +(213,715,l), +(359,585,o), +(421,473,o), +(421,327,cs), +(421,325,o), +(421,322,o), +(421,320,c), +(429,320,l), +(422,408,o), +(357,456,o), +(269,456,c), +(121,456,o), +(13,328,o), +(13,192,c), +(13,71,o), +(94,-10,o), +(222,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(169,80,o), +(116,120,o), +(116,197,c), +(116,294,o), +(193,374,o), +(279,374,c), +(360,374,o), +(401,334,o), +(401,267,cs), +(401,167,o), +(325,80,o), +(241,80,c) +); +}, +{ +closed = 1; +nodes = ( +(518,658,l), +(472,725,l), +(225,555,l), +(271,488,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(373,-10,o), +(513,108,o), +(513,343,cs), +(513,462,o), +(466,600,o), +(349,715,c), +(213,715,l), +(359,585,o), +(421,473,o), +(421,327,cs), +(421,325,o), +(421,322,o), +(421,320,c), +(429,320,l), +(422,408,o), +(357,456,o), +(269,456,c), +(121,456,o), +(13,328,o), +(13,192,c), +(13,71,o), +(94,-10,o), +(222,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(169,80,o), +(116,120,o), +(116,197,c), +(116,294,o), +(193,374,o), +(279,374,c), +(360,374,o), +(401,334,o), +(401,267,cs), +(401,167,o), +(325,80,o), +(241,80,c) +); +}, +{ +closed = 1; +nodes = ( +(518,658,l), +(472,725,l), +(225,555,l), +(271,488,l) +); +} +); +width = 563; +}, +{ +anchors = ( +{ +name = bottom; +pos = (231,0); +}, +{ +name = top; +pos = (383,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (231,0); +}, +{ +name = top; +pos = (383,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(388,-14,o), +(536,99,o), +(536,349,cs), +(536,452,o), +(488,594,o), +(383,715,c), +(184,715,l), +(332,570,o), +(391,444,o), +(391,284,cs), +(391,276,o), +(391,268,o), +(391,260,c), +(399,260,l), +(399,268,o), +(400,276,o), +(400,283,cs), +(400,394,o), +(341,461,o), +(244,461,c), +(117,461,o), +(4,339,o), +(4,197,c), +(4,76,o), +(91,-14,o), +(223,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(188,120,o), +(158,156,o), +(158,213,c), +(158,278,o), +(207,334,o), +(281,334,c), +(341,334,o), +(373,301,o), +(373,249,c), +(373,184,o), +(315,120,o), +(248,120,c) +); +}, +{ +closed = 1; +nodes = ( +(533,636,l), +(481,730,l), +(197,575,l), +(249,481,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,-14,o), +(536,99,o), +(536,349,cs), +(536,452,o), +(488,594,o), +(383,715,c), +(184,715,l), +(332,570,o), +(391,444,o), +(391,284,cs), +(391,276,o), +(391,268,o), +(391,260,c), +(399,260,l), +(399,381,o), +(361,461,o), +(244,461,c), +(117,461,o), +(4,339,o), +(4,197,c), +(4,76,o), +(91,-14,o), +(223,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(188,120,o), +(158,156,o), +(158,213,c), +(158,278,o), +(207,334,o), +(281,334,c), +(341,334,o), +(373,301,o), +(373,249,c), +(373,184,o), +(315,120,o), +(248,120,c) +); +}, +{ +closed = 1; +nodes = ( +(533,636,l), +(481,730,l), +(197,575,l), +(249,481,l) +); +} +); +width = 574; +} +); +unicode = 240; +}, +{ +color = 6; +glyphname = e; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:04:07 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (209,0); +}, +{ +name = ogonek; +pos = (288,0); +}, +{ +name = top; +pos = (321.655,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (209,0); +}, +{ +name = top; +pos = (321.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,336.725,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412.217,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(429.921,540,o), +(308,540,c), +(141.836,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,336.725,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412.217,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(429.921,540,o), +(308,540,c), +(141.836,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +} +); +width = 553; +}, +{ +anchors = ( +{ +name = bottom; +pos = (217,0); +}, +{ +name = ogonek; +pos = (320,0); +}, +{ +name = top; +pos = (329.655,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (217,0); +}, +{ +name = top; +pos = (329.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328.44,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328.44,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +} +); +width = 572; +} +); +unicode = 101; +}, +{ +color = 10; +glyphname = eacute; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(367,585,l), +(504,725,l), +(378,725,l), +(278,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (21,0); +ref = acutecomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(386,585,l), +(542,730,l), +(381,730,l), +(271,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (52,0); +ref = acutecomb; +} +); +width = 572; +} +); +unicode = 233; +}, +{ +color = 10; +glyphname = ebreve; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(438,585,o), +(485,639,o), +(503,725,c), +(433,725,l), +(425,684,o), +(394,660,o), +(347,660,c), +(309,660,o), +(291,677,o), +(291,707,cs), +(291,712,o), +(292,719,o), +(293,725,c), +(223,725,l), +(221,713,o), +(220,702,o), +(220,692,cs), +(220,629,o), +(266,585,o), +(343,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = brevecomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(456,585,o), +(502,639,o), +(521,730,c), +(430,730,l), +(423,693,o), +(395,671,o), +(358,671,c), +(327,671,o), +(312,686,o), +(312,713,cs), +(312,718,o), +(313,724,o), +(314,730,c), +(223,730,l), +(221,718,o), +(220,708,o), +(220,697,cs), +(220,626,o), +(270,585,o), +(351,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (42,0); +ref = brevecomb; +} +); +width = 572; +} +); +unicode = 277; +}, +{ +color = 10; +glyphname = ecaron; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(352,585,l), +(351,625,l), +(289,725,l), +(207,725,l), +(277,585,l) +); +}, +{ +closed = 1; +nodes = ( +(389,585,l), +(519,725,l), +(425,725,l), +(321,625,l), +(314,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = caroncomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(377,585,l), +(372,629,l), +(304,730,l), +(200,730,l), +(271,585,l) +); +}, +{ +closed = 1; +nodes = ( +(411,585,l), +(544,730,l), +(428,730,l), +(317,629,l), +(305,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (42,0); +ref = caroncomb; +} +); +width = 572; +} +); +unicode = 283; +}, +{ +color = 10; +glyphname = ecircumflex; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(271,585,l), +(375,685,l), +(382,725,l), +(307,725,l), +(177,585,l) +); +}, +{ +closed = 1; +nodes = ( +(489,585,l), +(419,725,l), +(344,725,l), +(345,685,l), +(407,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (34,0); +ref = circumflexcomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(285,585,l), +(396,686,l), +(408,730,l), +(302,730,l), +(169,585,l) +); +}, +{ +closed = 1; +nodes = ( +(513,585,l), +(442,730,l), +(336,730,l), +(341,686,l), +(409,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (42,0); +ref = circumflexcomb; +} +); +width = 572; +} +); +unicode = 234; +}, +{ +color = 10; +glyphname = edieresis; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(288,602,o), +(314,627,o), +(314,662,c), +(314,694,o), +(293,715,o), +(262,715,c), +(227,715,o), +(202,690,o), +(202,653,c), +(202,623,o), +(223,602,o), +(253,602,c) +); +}, +{ +closed = 1; +nodes = ( +(470,602,o), +(496,627,o), +(496,662,c), +(496,694,o), +(475,715,o), +(444,715,c), +(409,715,o), +(384,690,o), +(384,653,c), +(384,623,o), +(405,602,o), +(435,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (32,0); +ref = dieresiscomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(296,588,o), +(330,618,o), +(330,664,c), +(330,703,o), +(305,728,o), +(264,728,c), +(222,728,o), +(188,698,o), +(188,652,c), +(188,613,o), +(213,588,o), +(254,588,c) +); +}, +{ +closed = 1; +nodes = ( +(492,588,o), +(526,618,o), +(526,664,c), +(526,703,o), +(501,728,o), +(460,728,c), +(418,728,o), +(384,698,o), +(384,652,c), +(384,613,o), +(409,588,o), +(450,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (40,0); +ref = dieresiscomb; +} +); +width = 572; +} +); +unicode = 235; +}, +{ +color = 10; +glyphname = edotaccent; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(383,602,o), +(411,629,o), +(411,667,c), +(411,702,o), +(388,725,o), +(354,725,c), +(316,725,o), +(289,698,o), +(289,657,c), +(289,625,o), +(312,602,o), +(345,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (32,0); +ref = dotaccentcomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(398,588,o), +(434,620,o), +(434,669,c), +(434,711,o), +(407,738,o), +(363,738,c), +(318,738,o), +(282,706,o), +(282,656,c), +(282,615,o), +(309,588,o), +(353,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (40,0); +ref = dotaccentcomb; +} +); +width = 572; +} +); +unicode = 279; +}, +{ +color = 10; +glyphname = edotbelow; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(213,-195,o), +(241,-168,o), +(241,-130,c), +(241,-95,o), +(218,-72,o), +(184,-72,c), +(146,-72,o), +(119,-99,o), +(119,-140,c), +(119,-172,o), +(142,-195,o), +(175,-195,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = dotbelow; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(231,-198,o), +(267,-166,o), +(267,-117,c), +(267,-75,o), +(240,-48,o), +(196,-48,c), +(151,-48,o), +(115,-80,o), +(115,-130,c), +(115,-171,o), +(142,-198,o), +(186,-198,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (40,0); +ref = dotbelow; +} +); +width = 572; +} +); +unicode = 7865; +}, +{ +color = 10; +glyphname = egrave; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:48:12 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(383,585,l), +(343,725,l), +(222,725,l), +(302,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (32,0); +ref = gravecomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(404,585,l), +(355,730,l), +(205,730,l), +(302,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (94,0); +ref = gravecomb; +} +); +width = 572; +} +); +unicode = 232; +}, +{ +color = 10; +glyphname = emacron; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(479,621,l), +(497,705,l), +(221,705,l), +(203,621,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (32,0); +ref = macroncomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(492,603,l), +(517,718,l), +(223,718,l), +(198,603,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (41,0); +ref = macroncomb; +} +); +width = 572; +} +); +unicode = 275; +}, +{ +color = 10; +glyphname = eogonek; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-22 12:28:31 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(287,-185,o), +(324,-176,o), +(346,-165,c), +(354,-84,l), +(329,-96,o), +(298,-106,o), +(274,-106,c), +(261,-106,o), +(255,-101,o), +(255,-90,c), +(255,-72,o), +(281,-28,o), +(365,33,cs), +(400,59,o), +(432,88,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c), +(243,-10,o), +(268,-7,o), +(291,0,c), +(281,2,l), +(196,-35,o), +(167,-74,o), +(167,-118,c), +(167,-155,o), +(193,-185,o), +(255,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(287,-185,o), +(324,-176,o), +(346,-165,c), +(354,-84,l), +(329,-96,o), +(298,-106,o), +(274,-106,c), +(261,-106,o), +(255,-101,o), +(255,-90,c), +(255,-72,o), +(281,-28,o), +(365,33,cs), +(400,59,o), +(432,88,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c), +(243,-10,o), +(268,-7,o), +(291,0,c), +(279,0,l), +(196,-35,o), +(167,-74,o), +(167,-118,c), +(167,-155,o), +(193,-185,o), +(255,-185,c) +); +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(294,-190,o), +(329,-183,o), +(360,-170,c), +(371,-75,l), +(349,-87,o), +(321,-96,o), +(302,-96,c), +(289,-96,o), +(282,-90,o), +(282,-80,c), +(282,-65,o), +(303,-34,o), +(398,36,cs), +(432,61,o), +(460,91,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c), +(256,-14,o), +(278,-11,o), +(300,-7,c), +(296,-2,l), +(199,-36,o), +(167,-82,o), +(167,-121,c), +(167,-158,o), +(197,-190,o), +(266,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,-189,o), +(329,-182,o), +(360,-169,c), +(371,-75,l), +(349,-87,o), +(321,-96,o), +(302,-96,c), +(289,-96,o), +(282,-90,o), +(282,-80,c), +(282,-65,o), +(303,-34,o), +(398,36,cs), +(432,61,o), +(460,91,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,cs), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c), +(256,-14,o), +(278,-11,o), +(300,-7,c), +(296,-2,l), +(199,-36,o), +(167,-82,o), +(167,-121,c), +(167,-158,o), +(197,-189,o), +(266,-189,c) +); +} +); +width = 572; +} +); +unicode = 281; +}, +{ +color = 10; +glyphname = etilde; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-10,o), +(404,43,o), +(455,125,c), +(370,170,l), +(337,116,o), +(287,84,o), +(231,84,c), +(159,84,o), +(119,121,o), +(119,195,cs), +(119,337,o), +(199,454,o), +(296,454,c), +(365,454,o), +(402,412,o), +(402,335,cs), +(402,311,o), +(400,288,o), +(395,266,c), +(433,310,l), +(115,310,l), +(98,231,l), +(490,231,l), +(499,265,o), +(506,302,o), +(506,340,cs), +(506,459,o), +(430,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(254,585,l), +(258,624,o), +(267,642,o), +(292,642,c), +(324,642,o), +(340,585,o), +(401,585,c), +(464,585,o), +(498,639,o), +(510,725,c), +(442,725,l), +(439,686,o), +(429,668,o), +(404,668,c), +(373,668,o), +(356,725,o), +(295,725,c), +(232,725,o), +(199,671,o), +(186,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = tildecomb; +} +); +width = 553; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(342,-14,o), +(433,42,o), +(480,128,c), +(344,177,l), +(327,141,o), +(291,114,o), +(243,114,c), +(189,114,o), +(162,159,o), +(162,218,c), +(162,328,o), +(225,419,o), +(304,419,c), +(358,419,o), +(384,387,o), +(384,312,c), +(384,296,o), +(383,280,o), +(380,265,c), +(430,323,l), +(114,323,l), +(92,223,l), +(517,223,l), +(527,256,o), +(532,292,o), +(532,327,c), +(532,454,o), +(452,544,o), +(316,544,c), +(138,544,o), +(8,387,o), +(8,201,c), +(8,76,o), +(93,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(266,585,l), +(267,612,o), +(282,624,o), +(301,624,c), +(335,624,o), +(350,585,o), +(408,585,c), +(470,585,o), +(517,641,o), +(531,730,c), +(447,730,l), +(446,702,o), +(432,690,o), +(413,690,c), +(381,690,o), +(363,730,o), +(305,730,c), +(242,730,o), +(195,674,o), +(182,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = e; +}, +{ +pos = (41,0); +ref = tildecomb; +} +); +width = 572; +} +); +unicode = 7869; +}, +{ +color = 6; +glyphname = schwa; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(505,145,o), +(505,340,cs), +(505,459,o), +(427,540,o), +(302,540,c), +(201,540,o), +(116,487,o), +(65,405,c), +(150,360,l), +(183,414,o), +(233,446,o), +(289,446,c), +(361,446,o), +(401,409,o), +(401,335,cs), +(401,193,o), +(321,76,o), +(224,76,c), +(155,76,o), +(118,118,o), +(118,195,cs), +(118,219,o), +(120,242,o), +(125,264,c), +(87,220,l), +(405,220,l), +(422,299,l), +(30,299,l), +(21,265,o), +(14,228,o), +(14,190,cs), +(14,71,o), +(90,-10,o), +(212,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(505,145,o), +(505,340,cs), +(505,459,o), +(427,540,o), +(302,540,c), +(201,540,o), +(116,487,o), +(65,405,c), +(150,360,l), +(183,414,o), +(233,446,o), +(289,446,c), +(361,446,o), +(401,409,o), +(401,335,cs), +(401,193,o), +(321,76,o), +(224,76,c), +(155,76,o), +(118,118,o), +(118,195,cs), +(118,219,o), +(120,242,o), +(125,264,c), +(87,220,l), +(405,220,l), +(422,299,l), +(30,299,l), +(21,265,o), +(14,228,o), +(14,190,cs), +(14,71,o), +(90,-10,o), +(212,-10,c) +); +} +); +width = 552; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(401,-14,o), +(531,143,o), +(531,329,c), +(531,454,o), +(446,544,o), +(307,544,c), +(197,544,o), +(106,488,o), +(59,402,c), +(195,353,l), +(212,389,o), +(248,416,o), +(296,416,c), +(350,416,o), +(377,371,o), +(377,312,c), +(377,202,o), +(314,111,o), +(235,111,c), +(181,111,o), +(155,143,o), +(155,218,c), +(155,234,o), +(156,250,o), +(159,265,c), +(109,207,l), +(425,207,l), +(447,307,l), +(22,307,l), +(12,274,o), +(7,238,o), +(7,203,c), +(7,76,o), +(87,-14,o), +(223,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(401,-14,o), +(531,143,o), +(531,329,c), +(531,454,o), +(446,544,o), +(307,544,c), +(197,544,o), +(106,488,o), +(59,402,c), +(195,353,l), +(212,389,o), +(248,416,o), +(296,416,c), +(350,416,o), +(377,371,o), +(377,312,c), +(377,202,o), +(314,111,o), +(235,111,c), +(181,111,o), +(155,143,o), +(155,218,c), +(155,234,o), +(156,250,o), +(159,265,c), +(109,207,l), +(425,207,l), +(447,307,l), +(22,307,l), +(12,274,o), +(7,238,o), +(7,203,c), +(7,76,o), +(87,-14,o), +(223,-14,c) +); +} +); +width = 571; +} +); +unicode = 601; +}, +{ +color = 6; +glyphname = f; +kernLeft = f; +kernRight = f; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(340,443,l), +(359,530,l), +(50,530,l), +(31,443,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(340,443,l), +(359,530,l), +(50,530,l), +(31,443,l) +); +} +); +width = 338; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(371,407,l), +(397,530,l), +(49,530,l), +(23,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(371,407,l), +(397,530,l), +(49,530,l), +(23,407,l) +); +} +); +width = 353; +} +); +unicode = 102; +}, +{ +color = 6; +glyphname = g; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (323.655,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (323.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(382.68,111.273,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(382.68,111.273,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +} +); +width = 575; +}, +{ +anchors = ( +{ +name = top; +pos = (326.655,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (326.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +} +); +width = 585; +} +); +unicode = 103; +}, +{ +color = 10; +glyphname = gbreve; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(383,111,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +}, +{ +closed = 1; +nodes = ( +(440,585,o), +(487,639,o), +(505,725,c), +(435,725,l), +(427,684,o), +(396,660,o), +(349,660,c), +(311,660,o), +(293,677,o), +(293,707,cs), +(293,712,o), +(294,719,o), +(295,725,c), +(225,725,l), +(223,713,o), +(222,702,o), +(222,692,cs), +(222,629,o), +(268,585,o), +(345,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (35,0); +ref = brevecomb; +} +); +width = 575; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +}, +{ +closed = 1; +nodes = ( +(453,585,o), +(499,639,o), +(518,730,c), +(427,730,l), +(420,693,o), +(392,671,o), +(355,671,c), +(324,671,o), +(309,686,o), +(309,713,cs), +(309,718,o), +(310,724,o), +(311,730,c), +(220,730,l), +(218,718,o), +(217,708,o), +(217,697,cs), +(217,626,o), +(267,585,o), +(348,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = g; +}, +{ +pos = (39,0); +ref = brevecomb; +} +); +width = 585; +} +); +unicode = 287; +}, +{ +color = 10; +glyphname = gcaron; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(383,111,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +}, +{ +closed = 1; +nodes = ( +(354,585,l), +(353,625,l), +(291,725,l), +(209,725,l), +(279,585,l) +); +}, +{ +closed = 1; +nodes = ( +(391,585,l), +(521,725,l), +(427,725,l), +(323,625,l), +(316,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (35,0); +ref = caroncomb; +} +); +width = 575; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +}, +{ +closed = 1; +nodes = ( +(374,585,l), +(369,629,l), +(301,730,l), +(197,730,l), +(268,585,l) +); +}, +{ +closed = 1; +nodes = ( +(408,585,l), +(541,730,l), +(425,730,l), +(314,629,l), +(302,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = g; +}, +{ +pos = (39,0); +ref = caroncomb; +} +); +width = 585; +} +); +unicode = 487; +}, +{ +color = 10; +glyphname = gcircumflex; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(383,111,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +}, +{ +closed = 1; +nodes = ( +(273,585,l), +(377,685,l), +(384,725,l), +(309,725,l), +(179,585,l) +); +}, +{ +closed = 1; +nodes = ( +(491,585,l), +(421,725,l), +(346,725,l), +(347,685,l), +(409,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (36,0); +ref = circumflexcomb; +} +); +width = 575; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +}, +{ +closed = 1; +nodes = ( +(282,585,l), +(393,686,l), +(405,730,l), +(299,730,l), +(166,585,l) +); +}, +{ +closed = 1; +nodes = ( +(510,585,l), +(439,730,l), +(333,730,l), +(338,686,l), +(406,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = g; +}, +{ +pos = (39,0); +ref = circumflexcomb; +} +); +width = 585; +} +); +unicode = 285; +}, +{ +color = 6; +glyphname = gcommaaccent; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(383,111,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +}, +{ +closed = 1; +nodes = ( +(386,602,l), +(429,805,l), +(366,805,l), +(282,602,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(383,111,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +}, +{ +closed = 1; +nodes = ( +(386,602,l), +(429,805,l), +(366,805,l), +(282,602,l) +); +} +); +width = 575; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +}, +{ +closed = 1; +nodes = ( +(400,584,l), +(446,800,l), +(356,800,l), +(268,584,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +}, +{ +closed = 1; +nodes = ( +(400,584,l), +(446,800,l), +(356,800,l), +(268,584,l) +); +} +); +width = 585; +} +); +unicode = 291; +}, +{ +color = 10; +glyphname = gdotaccent; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(299,-185,o), +(410,-131,o), +(445,34,cs), +(551,530,l), +(451,530,l), +(425,407,l), +(410,265,l), +(374,168,l), +(349,53,ls), +(325,-57,o), +(249,-95,o), +(187,-95,c), +(129,-95,o), +(92,-73,o), +(71,-23,c), +(-31,-62,l), +(-9,-136,o), +(68,-185,o), +(175,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(289,40,o), +(383,111,o), +(413,236,c), +(440,380,l), +(440,483,o), +(377,540,o), +(288,540,c), +(139,540,o), +(21,405,o), +(21,221,c), +(21,115,o), +(94,40,o), +(191,40,c) +); +}, +{ +closed = 1; +nodes = ( +(166,127,o), +(126,165,o), +(126,228,c), +(126,356,o), +(197,453,o), +(304,453,c), +(367,453,o), +(409,418,o), +(407,345,c), +(407,226,o), +(329,127,o), +(231,127,c) +); +}, +{ +closed = 1; +nodes = ( +(385,602,o), +(413,629,o), +(413,667,c), +(413,702,o), +(390,725,o), +(356,725,c), +(318,725,o), +(291,698,o), +(291,657,c), +(291,625,o), +(314,602,o), +(347,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (34,0); +ref = dotaccentcomb; +} +); +width = 575; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(319,-189,o), +(433,-125,o), +(472,57,cs), +(573,530,l), +(424,530,l), +(397,404,l), +(383,265,l), +(345,160,l), +(328,80,ls), +(308,-14,o), +(246,-55,o), +(155,-55,c), +(106,-55,o), +(58,-38,o), +(14,-8,c), +(-60,-127,l), +(-12,-165,o), +(66,-189,o), +(153,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(273,44,o), +(350,110,o), +(382,226,c), +(407,385,l), +(410,488,o), +(348,544,o), +(268,544,c), +(119,544,o), +(17,397,o), +(17,234,c), +(17,122,o), +(80,44,o), +(182,44,c) +); +}, +{ +closed = 1; +nodes = ( +(210,178,o), +(171,198,o), +(171,262,c), +(171,328,o), +(216,410,o), +(300,410,c), +(343,410,o), +(382,390,o), +(382,326,c), +(382,260,o), +(337,178,o), +(253,178,c) +); +}, +{ +closed = 1; +nodes = ( +(395,588,o), +(431,620,o), +(431,669,c), +(431,711,o), +(404,738,o), +(360,738,c), +(315,738,o), +(279,706,o), +(279,656,c), +(279,615,o), +(306,588,o), +(350,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = g; +}, +{ +pos = (37,0); +ref = dotaccentcomb; +} +); +width = 585; +} +); +unicode = 289; +}, +{ +color = 6; +glyphname = h; +kernLeft = l; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (194,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (194,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +} +); +width = 573; +}, +{ +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (207,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (207,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +} +); +width = 586; +} +); +unicode = 104; +}, +{ +color = 6; +glyphname = hbar; +kernRight = n; +lastChange = "2024-03-21 14:00:40 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(169,309,ls), +(189,403,o), +(254,454,o), +(321,454,c), +(381,454,o), +(418,418,o), +(418,351,cs), +(418,338,o), +(416,324,o), +(413,309,cs), +(347,0,l), +(447,0,l), +(514,313,ls), +(517,328,o), +(520,351,o), +(520,369,cs), +(520,469,o), +(461,540,o), +(364,540,c), +(262,540,o), +(166,451,o), +(136,309,c), +(179,358,l), +(255,715,l), +(155,715,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(339,567,l), +(357,653,l), +(82,653,l), +(64,567,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(169,309,ls), +(189,403,o), +(254,454,o), +(321,454,c), +(381,454,o), +(418,418,o), +(418,351,cs), +(418,338,o), +(416,324,o), +(413,309,cs), +(347,0,l), +(447,0,l), +(514,313,ls), +(517,328,o), +(520,351,o), +(520,369,cs), +(520,469,o), +(461,540,o), +(364,540,c), +(262,540,o), +(166,451,o), +(136,309,c), +(179,358,l), +(255,715,l), +(155,715,l), +(3,0,l) +); +}, +{ +closed = 1; +nodes = ( +(343,580,l), +(357,653,l), +(82,653,l), +(68,580,l) +); +} +); +width = 579; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(137,0,l), +(202,304,ls), +(217,375,o), +(263,413,o), +(316,413,c), +(360,413,o), +(388,387,o), +(388,338,cs), +(388,328,o), +(387,318,o), +(384,304,cs), +(319,0,l), +(468,0,l), +(534,312,ls), +(539,335,o), +(541,356,o), +(541,377,cs), +(541,475,o), +(483,544,o), +(392,544,c), +(291,544,o), +(208,457,o), +(176,304,c), +(209,340,l), +(289,715,l), +(140,715,l), +(-12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(376,560,l), +(400,675,l), +(80,675,l), +(56,560,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(137,0,l), +(202,304,ls), +(217,375,o), +(263,413,o), +(316,413,c), +(360,413,o), +(388,387,o), +(388,338,cs), +(388,328,o), +(387,318,o), +(384,304,cs), +(319,0,l), +(468,0,l), +(534,312,ls), +(539,335,o), +(541,356,o), +(541,377,cs), +(541,475,o), +(483,544,o), +(392,544,c), +(291,544,o), +(208,457,o), +(176,304,c), +(209,340,l), +(289,715,l), +(140,715,l), +(-12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(384,584,l), +(400,675,l), +(80,675,l), +(64,584,l) +); +} +); +width = 594; +} +); +unicode = 295; +}, +{ +color = 10; +glyphname = hcircumflex; +kernLeft = l; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(159,309,ls), +(179,403,o), +(244,454,o), +(311,454,c), +(371,454,o), +(408,418,o), +(408,351,cs), +(408,338,o), +(406,324,o), +(403,309,cs), +(337,0,l), +(437,0,l), +(504,313,ls), +(507,328,o), +(510,351,o), +(510,369,cs), +(510,469,o), +(451,540,o), +(354,540,c), +(252,540,o), +(156,451,o), +(126,309,c), +(169,358,l), +(245,715,l), +(145,715,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(128,760,l), +(249,839,l), +(264,870,l), +(159,870,l), +(21,760,l) +); +}, +{ +closed = 1; +nodes = ( +(387,760,l), +(297,870,l), +(192,870,l), +(206,839,l), +(294,760,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = h; +}, +{ +pos = (-130,25); +ref = circumflexcomb.case; +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(130,0,l), +(195,304,ls), +(210,375,o), +(256,413,o), +(309,413,c), +(353,413,o), +(381,387,o), +(381,338,cs), +(381,328,o), +(380,318,o), +(377,304,cs), +(312,0,l), +(461,0,l), +(527,312,ls), +(532,335,o), +(534,356,o), +(534,377,cs), +(534,475,o), +(476,544,o), +(385,544,c), +(284,544,o), +(201,457,o), +(169,304,c), +(202,340,l), +(282,715,l), +(133,715,l), +(-19,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,760,l), +(265,837,l), +(287,875,l), +(158,875,l), +(23,760,l) +); +}, +{ +closed = 1; +nodes = ( +(411,760,l), +(326,875,l), +(197,875,l), +(213,837,l), +(294,760,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = h; +}, +{ +pos = (-117,25); +ref = circumflexcomb.case; +} +); +width = 586; +} +); +unicode = 293; +}, +{ +color = 10; +glyphname = i; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:49:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (43,0); +}, +{ +name = ogonek; +pos = (92,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (43,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(206,530,l), +(106,530,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,602,o), +(245,629,o), +(245,668,c), +(245,702,o), +(222,725,o), +(188,725,c), +(150,725,o), +(123,698,o), +(123,658,c), +(123,625,o), +(146,602,o), +(180,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(218,602,o), +(245,629,o), +(245,668,cs), +(245,702,o), +(222,725,o), +(188,725,cs), +(150,725,o), +(123,698,o), +(123,658,cs), +(123,625,o), +(146,602,o), +(180,602,cs) +); +}, +{ +ref = idotless; +} +); +width = 229; +}, +{ +anchors = ( +{ +name = bottom; +pos = (56,0); +}, +{ +name = ogonek; +pos = (129,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (56,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(244,530,l), +(95,530,l), +(-18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(245,580,o), +(287,617,o), +(287,675,cs), +(287,723,o), +(256,755,o), +(204,755,cs), +(152,755,o), +(110,717,o), +(110,659,cs), +(110,611,o), +(141,580,o), +(192,580,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(245,580,o), +(287,617,o), +(287,675,cs), +(287,723,o), +(256,755,o), +(204,755,cs), +(152,755,o), +(110,717,o), +(110,659,cs), +(110,611,o), +(141,580,o), +(192,580,cs) +); +}, +{ +ref = idotless; +} +); +width = 254; +} +); +unicode = 105; +}, +{ +color = 6; +glyphname = idotless; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:05:16 +0000"; +layers = ( +{ +anchors = ( +{ +name = ogonek; +pos = (92,0); +}, +{ +name = top; +pos = (154,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (154,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +} +); +width = 229; +}, +{ +anchors = ( +{ +name = ogonek; +pos = (129,0); +}, +{ +name = top; +pos = (167.655,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (167.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +} +); +width = 254; +} +); +unicode = 305; +}, +{ +color = 10; +glyphname = iacute; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(199,585,l), +(336,725,l), +(210,725,l), +(110,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-147,0); +ref = acutecomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(224,585,l), +(380,730,l), +(219,730,l), +(109,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-110,0); +ref = acutecomb; +} +); +width = 254; +} +); +unicode = 237; +}, +{ +color = 10; +glyphname = ibreve; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(270,585,o), +(317,639,o), +(335,725,c), +(265,725,l), +(257,684,o), +(226,660,o), +(179,660,c), +(141,660,o), +(123,677,o), +(123,707,cs), +(123,712,o), +(124,719,o), +(125,725,c), +(55,725,l), +(53,713,o), +(52,702,o), +(52,692,cs), +(52,629,o), +(98,585,o), +(175,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = brevecomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(294,585,o), +(340,639,o), +(359,730,c), +(268,730,l), +(261,693,o), +(233,671,o), +(196,671,c), +(165,671,o), +(150,686,o), +(150,713,cs), +(150,718,o), +(151,724,o), +(152,730,c), +(61,730,l), +(59,718,o), +(58,708,o), +(58,697,cs), +(58,626,o), +(108,585,o), +(189,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-120,0); +ref = brevecomb; +} +); +width = 254; +} +); +unicode = 301; +}, +{ +color = 10; +glyphname = icircumflex; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(103,585,l), +(207,685,l), +(214,725,l), +(139,725,l), +(9,585,l) +); +}, +{ +closed = 1; +nodes = ( +(321,585,l), +(251,725,l), +(176,725,l), +(177,685,l), +(239,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-134,0); +ref = circumflexcomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(123,585,l), +(234,686,l), +(246,730,l), +(140,730,l), +(7,585,l) +); +}, +{ +closed = 1; +nodes = ( +(351,585,l), +(280,730,l), +(174,730,l), +(179,686,l), +(247,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-120,0); +ref = circumflexcomb; +} +); +width = 254; +} +); +unicode = 238; +}, +{ +color = 10; +glyphname = idieresis; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(206,530,l), +(106,530,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(121,602,o), +(147,627,o), +(147,662,c), +(147,694,o), +(126,715,o), +(95,715,c), +(60,715,o), +(35,690,o), +(35,653,c), +(35,623,o), +(56,602,o), +(86,602,c) +); +}, +{ +closed = 1; +nodes = ( +(303,602,o), +(329,627,o), +(329,662,c), +(329,694,o), +(308,715,o), +(277,715,c), +(242,715,o), +(217,690,o), +(217,653,c), +(217,623,o), +(238,602,o), +(268,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-136,0); +ref = dieresiscomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(130,0,l), +(243,530,l), +(94,530,l), +(-19,0,l) +); +}, +{ +closed = 1; +nodes = ( +(135,588,o), +(169,618,o), +(169,664,c), +(169,703,o), +(144,728,o), +(103,728,c), +(61,728,o), +(27,698,o), +(27,652,c), +(27,613,o), +(52,588,o), +(93,588,c) +); +}, +{ +closed = 1; +nodes = ( +(331,588,o), +(365,618,o), +(365,664,c), +(365,703,o), +(340,728,o), +(299,728,c), +(257,728,o), +(223,698,o), +(223,652,c), +(223,613,o), +(248,588,o), +(289,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = dieresiscomb; +} +); +width = 254; +} +); +unicode = 239; +}, +{ +color = 10; +glyphname = idotaccent; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-136,0); +ref = dotaccentcomb; +} +); +width = 229; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = dotaccentcomb; +} +); +width = 254; +} +); +}, +{ +color = 10; +glyphname = idotbelow; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(46,-195,o), +(74,-168,o), +(74,-130,c), +(74,-95,o), +(51,-72,o), +(17,-72,c), +(-21,-72,o), +(-48,-99,o), +(-48,-140,c), +(-48,-172,o), +(-25,-195,o), +(8,-195,c) +); +}, +{ +closed = 1; +nodes = ( +(217,602,o), +(244,629,o), +(244,668,c), +(244,702,o), +(221,725,o), +(187,725,c), +(149,725,o), +(122,698,o), +(122,658,c), +(122,625,o), +(145,602,o), +(179,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = i; +}, +{ +pos = (-133,0); +ref = dotbelow; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(244,530,l), +(95,530,l), +(-18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(70,-198,o), +(106,-166,o), +(106,-117,c), +(106,-75,o), +(79,-48,o), +(35,-48,c), +(-10,-48,o), +(-46,-80,o), +(-46,-130,c), +(-46,-171,o), +(-19,-198,o), +(25,-198,c) +); +}, +{ +closed = 1; +nodes = ( +(245,580,o), +(287,617,o), +(287,675,c), +(287,723,o), +(256,755,o), +(204,755,c), +(152,755,o), +(110,717,o), +(110,659,c), +(110,611,o), +(141,580,o), +(192,580,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = i; +}, +{ +pos = (-121,0); +ref = dotbelow; +} +); +width = 254; +} +); +unicode = 7883; +}, +{ +color = 10; +glyphname = igrave; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:48:12 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(215,585,l), +(175,725,l), +(54,725,l), +(134,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-136,0); +ref = gravecomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(242,585,l), +(193,730,l), +(43,730,l), +(140,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-68,0); +ref = gravecomb; +} +); +width = 254; +} +); +unicode = 236; +}, +{ +color = 10; +glyphname = imacron; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(206,530,l), +(106,530,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(312,621,l), +(330,705,l), +(54,705,l), +(36,621,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-136,0); +ref = macroncomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(330,603,l), +(355,718,l), +(61,718,l), +(36,603,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-121,0); +ref = macroncomb; +} +); +width = 254; +} +); +unicode = 299; +}, +{ +color = 10; +glyphname = iogonek; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:05:16 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(-2,-185,o), +(35,-176,o), +(57,-165,c), +(65,-84,l), +(40,-96,o), +(9,-106,o), +(-17,-106,c), +(-28,-106,o), +(-34,-101,o), +(-34,-93,cs), +(-34,-72,o), +(3,-38,o), +(92,0,c), +(-8,0,l), +(-93,-35,o), +(-122,-74,o), +(-122,-118,c), +(-122,-155,o), +(-96,-185,o), +(-34,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(217,602,o), +(244,629,o), +(244,668,c), +(244,702,o), +(221,725,o), +(187,725,c), +(149,725,o), +(122,698,o), +(122,658,c), +(122,625,o), +(145,602,o), +(179,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-136,0); +ref = dotaccentcomb; +}, +{ +pos = (-138,0); +ref = ogonekcomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(244,530,l), +(95,530,l), +(-18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(29,-190,o), +(64,-183,o), +(95,-170,c), +(106,-75,l), +(84,-87,o), +(56,-96,o), +(37,-96,c), +(24,-96,o), +(17,-90,o), +(17,-82,cs), +(17,-65,o), +(42,-36,o), +(131,0,c), +(26,0,l), +(-67,-36,o), +(-98,-82,o), +(-98,-121,c), +(-98,-158,o), +(-68,-190,o), +(1,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(245,580,o), +(287,617,o), +(287,675,c), +(287,723,o), +(256,755,o), +(204,755,c), +(152,755,o), +(110,717,o), +(110,659,c), +(110,611,o), +(141,580,o), +(192,580,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = dotaccentcomb; +}, +{ +pos = (-137,0); +ref = ogonekcomb; +} +); +width = 254; +} +); +unicode = 303; +}, +{ +color = 10; +glyphname = itilde; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(86,585,l), +(90,624,o), +(99,642,o), +(124,642,c), +(156,642,o), +(172,585,o), +(233,585,c), +(296,585,o), +(330,639,o), +(342,725,c), +(274,725,l), +(271,686,o), +(261,668,o), +(236,668,c), +(205,668,o), +(188,725,o), +(127,725,c), +(64,725,o), +(31,671,o), +(18,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = tildecomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(130,0,l), +(243,530,l), +(94,530,l), +(-19,0,l) +); +}, +{ +closed = 1; +nodes = ( +(105,585,l), +(106,612,o), +(121,624,o), +(140,624,c), +(174,624,o), +(189,585,o), +(247,585,c), +(309,585,o), +(356,641,o), +(370,730,c), +(286,730,l), +(285,702,o), +(271,690,o), +(252,690,c), +(220,690,o), +(202,730,o), +(144,730,c), +(81,730,o), +(34,674,o), +(21,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-121,0); +ref = tildecomb; +} +); +width = 254; +} +); +unicode = 297; +}, +{ +color = 10; +glyphname = ij; +kernLeft = n; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(228,-185,o), +(294,-138,o), +(319,-21,cs), +(436,530,l), +(336,530,l), +(219,-17,ls), +(208,-70,o), +(175,-94,o), +(130,-94,c), +(107,-94,o), +(87,-88,o), +(67,-79,c), +(48,-168,l), +(74,-178,o), +(102,-185,o), +(134,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(93,0,l), +(206,530,l), +(106,530,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,602,o), +(245,629,o), +(245,668,c), +(245,702,o), +(222,725,o), +(188,725,c), +(150,725,o), +(123,698,o), +(123,658,c), +(123,625,o), +(146,602,o), +(180,602,c) +); +}, +{ +closed = 1; +nodes = ( +(448,602,o), +(475,629,o), +(475,668,c), +(475,702,o), +(452,725,o), +(418,725,c), +(380,725,o), +(353,698,o), +(353,658,c), +(353,625,o), +(376,602,o), +(410,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = i; +}, +{ +pos = (229,0); +ref = j; +} +); +width = 458; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(279,-189,o), +(358,-143,o), +(385,-14,cs), +(501,530,l), +(352,530,l), +(241,9,ls), +(232,-32,o), +(208,-54,o), +(167,-54,c), +(142,-54,o), +(120,-49,o), +(100,-41,c), +(72,-172,l), +(97,-183,o), +(136,-189,o), +(176,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(131,0,l), +(244,530,l), +(95,530,l), +(-18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(245,580,o), +(287,617,o), +(287,675,c), +(287,723,o), +(256,755,o), +(204,755,c), +(152,755,o), +(110,717,o), +(110,659,c), +(110,611,o), +(141,580,o), +(192,580,c) +); +}, +{ +closed = 1; +nodes = ( +(502,580,o), +(544,617,o), +(544,675,c), +(544,723,o), +(513,755,o), +(461,755,c), +(409,755,o), +(367,717,o), +(367,659,c), +(367,611,o), +(398,580,o), +(449,580,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = i; +}, +{ +pos = (254,0); +ref = j; +} +); +width = 511; +} +); +unicode = 307; +}, +{ +color = 10; +glyphname = j; +kernLeft = j; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-185,o), +(63,-138,o), +(88,-21,cs), +(205,530,l), +(105,530,l), +(-12,-17,ls), +(-23,-70,o), +(-56,-94,o), +(-101,-94,c), +(-124,-94,o), +(-144,-88,o), +(-164,-79,c), +(-183,-168,l), +(-157,-178,o), +(-129,-185,o), +(-97,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(217,602,o), +(244,629,o), +(244,668,c), +(244,702,o), +(221,725,o), +(187,725,c), +(149,725,o), +(122,698,o), +(122,658,c), +(122,625,o), +(145,602,o), +(179,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-136,0); +ref = dotaccentcomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(21,-189,o), +(100,-143,o), +(127,-14,cs), +(243,530,l), +(94,530,l), +(-17,9,ls), +(-26,-32,o), +(-50,-54,o), +(-91,-54,c), +(-116,-54,o), +(-138,-49,o), +(-158,-41,c), +(-186,-172,l), +(-161,-183,o), +(-122,-189,o), +(-82,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(244,580,o), +(286,617,o), +(286,675,c), +(286,723,o), +(255,755,o), +(203,755,c), +(151,755,o), +(109,717,o), +(109,659,c), +(109,611,o), +(140,580,o), +(191,580,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-122,0); +ref = dotaccentcomb; +} +); +width = 257; +} +); +unicode = 106; +}, +{ +color = 6; +glyphname = jdotless; +kernLeft = j; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (154,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (154,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-185,o), +(63,-138,o), +(88,-21,cs), +(205,530,l), +(105,530,l), +(-12,-17,ls), +(-23,-70,o), +(-56,-94,o), +(-101,-94,c), +(-124,-94,o), +(-144,-88,o), +(-164,-79,c), +(-183,-168,l), +(-157,-178,o), +(-129,-185,o), +(-97,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-185,o), +(63,-138,o), +(88,-21,cs), +(205,530,l), +(105,530,l), +(-12,-17,ls), +(-23,-70,o), +(-56,-94,o), +(-101,-94,c), +(-124,-94,o), +(-144,-88,o), +(-164,-79,c), +(-183,-168,l), +(-157,-178,o), +(-129,-185,o), +(-97,-185,c) +); +} +); +width = 229; +}, +{ +anchors = ( +{ +name = top; +pos = (168,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (168,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(21,-189,o), +(100,-143,o), +(127,-14,cs), +(243,530,l), +(94,530,l), +(-17,9,ls), +(-26,-32,o), +(-50,-54,o), +(-91,-54,c), +(-116,-54,o), +(-138,-49,o), +(-158,-41,c), +(-186,-172,l), +(-161,-183,o), +(-122,-189,o), +(-82,-189,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(21,-189,o), +(100,-143,o), +(127,-14,cs), +(243,530,l), +(94,530,l), +(-17,9,ls), +(-26,-32,o), +(-50,-54,o), +(-91,-54,c), +(-116,-54,o), +(-138,-49,o), +(-158,-41,c), +(-186,-172,l), +(-161,-183,o), +(-122,-189,o), +(-82,-189,c) +); +} +); +width = 257; +} +); +unicode = 567; +}, +{ +color = 10; +glyphname = jcircumflex; +kernLeft = j; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-185,o), +(63,-138,o), +(88,-21,cs), +(205,530,l), +(105,530,l), +(-12,-17,ls), +(-23,-70,o), +(-56,-94,o), +(-101,-94,c), +(-124,-94,o), +(-144,-88,o), +(-164,-79,c), +(-183,-168,l), +(-157,-178,o), +(-129,-185,o), +(-97,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(103,585,l), +(207,685,l), +(214,725,l), +(139,725,l), +(9,585,l) +); +}, +{ +closed = 1; +nodes = ( +(321,585,l), +(251,725,l), +(176,725,l), +(177,685,l), +(239,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-134,0); +ref = circumflexcomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(21,-189,o), +(100,-143,o), +(127,-14,cs), +(243,530,l), +(94,530,l), +(-17,9,ls), +(-26,-32,o), +(-50,-54,o), +(-91,-54,c), +(-116,-54,o), +(-138,-49,o), +(-158,-41,c), +(-186,-172,l), +(-161,-183,o), +(-122,-189,o), +(-82,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(123,585,l), +(234,686,l), +(246,730,l), +(140,730,l), +(7,585,l) +); +}, +{ +closed = 1; +nodes = ( +(351,585,l), +(280,730,l), +(174,730,l), +(179,686,l), +(247,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-120,0); +ref = circumflexcomb; +} +); +width = 257; +} +); +unicode = 309; +}, +{ +color = 6; +glyphname = k; +kernLeft = l; +kernRight = x; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (203,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (203,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(533,530,l), +(403,530,l), +(144,276,l), +(114,136,l) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(272,307,l), +(202,240,l), +(320,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(533,530,l), +(403,530,l), +(144,276,l), +(114,136,l) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(272,307,l), +(202,240,l), +(320,0,l) +); +} +); +width = 514; +}, +{ +anchors = ( +{ +name = bottom; +pos = (214,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (214,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(571,530,l), +(383,530,l), +(190,341,l), +(147,138,l) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(471,0,l), +(310,343,l), +(208,244,l), +(313,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(571,530,l), +(383,530,l), +(190,341,l), +(147,138,l) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(471,0,l), +(310,343,l), +(208,244,l), +(313,0,l) +); +} +); +width = 544; +} +); +unicode = 107; +}, +{ +color = 10; +glyphname = kcommaaccent; +kernLeft = l; +kernRight = x; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(533,530,l), +(403,530,l), +(144,276,l), +(114,136,l) +); +}, +{ +closed = 1; +nodes = ( +(161,-275,l), +(245,-72,l), +(141,-72,l), +(98,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(272,307,l), +(202,240,l), +(320,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = k; +}, +{ +pos = (26,0); +ref = commaaccentcomb; +} +); +width = 514; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(571,530,l), +(383,530,l), +(190,341,l), +(147,138,l) +); +}, +{ +closed = 1; +nodes = ( +(185,-270,l), +(273,-54,l), +(141,-54,l), +(95,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(471,0,l), +(310,343,l), +(208,244,l), +(313,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = k; +}, +{ +pos = (37,0); +ref = commaaccentcomb; +} +); +width = 544; +} +); +unicode = 311; +}, +{ +color = 6; +glyphname = kgreenlandic; +kernLeft = n; +kernRight = x; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (203,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (203,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(533,530,l), +(403,530,l), +(144,276,l), +(114,136,l) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(272,307,l), +(202,240,l), +(320,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(533,530,l), +(403,530,l), +(144,276,l), +(114,136,l) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(272,307,l), +(202,240,l), +(320,0,l) +); +} +); +width = 514; +}, +{ +anchors = ( +{ +name = bottom; +pos = (214,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (214,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(571,530,l), +(383,530,l), +(190,341,l), +(147,138,l) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(471,0,l), +(310,343,l), +(208,244,l), +(313,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(571,530,l), +(383,530,l), +(190,341,l), +(147,138,l) +); +}, +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(471,0,l), +(310,343,l), +(208,244,l), +(313,0,l) +); +} +); +width = 544; +} +); +unicode = 312; +}, +{ +color = 6; +glyphname = l; +kernLeft = l; +kernRight = l; +lastChange = "2024-03-22 13:33:34 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (40,0); +}, +{ +name = center; +pos = (96,265); +}, +{ +name = top; +pos = (192,715); +}, +{ +name = topright; +pos = (279,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (42,0); +}, +{ +name = top; +pos = (193.978,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +} +); +width = 229; +}, +{ +anchors = ( +{ +name = bottom; +pos = (47,0); +}, +{ +name = center; +pos = (103,265); +}, +{ +name = top; +pos = (199,715); +}, +{ +name = topright; +pos = (306,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (55,0); +}, +{ +name = top; +pos = (206.978,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +} +); +width = 254; +} +); +unicode = 108; +}, +{ +color = 10; +glyphname = lacute; +kernLeft = l; +kernRight = l; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(245,715,l), +(145,715,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(240,770,l), +(377,910,l), +(251,910,l), +(151,770,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = l; +}, +{ +pos = (-131,25); +ref = acutecomb.case; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(263,770,l), +(419,915,l), +(258,915,l), +(148,770,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-123,25); +ref = acutecomb.case; +} +); +width = 254; +} +); +unicode = 314; +}, +{ +color = 10; +glyphname = lcaron; +kernLeft = l; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(301,442,l), +(403,715,l), +(299,715,l), +(241,442,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = l; +}, +{ +pos = (17,0); +ref = caroncomb.alt; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(349,408,l), +(476,715,l), +(326,715,l), +(261,408,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = l; +}, +{ +pos = (58,0); +ref = caroncomb.alt; +} +); +width = 254; +} +); +unicode = 318; +}, +{ +color = 10; +glyphname = lcommaaccent; +kernLeft = l; +kernRight = l; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(0,-275,l), +(84,-72,l), +(-20,-72,l), +(-63,-275,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = l; +}, +{ +pos = (-137,0); +ref = commaaccentcomb; +} +); +width = 229; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(26,-270,l), +(114,-54,l), +(-18,-54,l), +(-64,-270,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-130,0); +ref = commaaccentcomb; +} +); +width = 254; +} +); +unicode = 316; +}, +{ +color = 10; +glyphname = ldot; +kernLeft = l; +lastChange = "2024-03-21 14:01:37 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(244,715,l), +(144,715,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(316,231,o), +(346,260,o), +(346,302,c), +(346,339,o), +(321,364,o), +(284,364,c), +(243,364,o), +(214,335,o), +(214,291,c), +(214,256,o), +(239,231,o), +(275,231,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +alignment = -1; +pos = (182,3); +ref = periodcentered.loclCAT; +} +); +width = 352; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(281,715,l), +(132,715,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(350,214,o), +(392,251,o), +(392,309,c), +(392,357,o), +(361,389,o), +(309,389,c), +(257,389,o), +(215,351,o), +(215,293,c), +(215,245,o), +(246,214,o), +(297,214,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +alignment = -1; +pos = (186,0); +ref = periodcentered.loclCAT; +} +); +width = 375; +} +); +unicode = 320; +}, +{ +color = 6; +glyphname = lslash; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(260,715,l), +(160,715,l), +(8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(263,377,l), +(285,481,l), +(24,356,l), +(2,252,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(108,0,l), +(260,715,l), +(160,715,l), +(8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(263,377,l), +(285,481,l), +(24,356,l), +(2,252,l) +); +} +); +width = 256; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(140,715,l), +(289,715,l), +(137,0,l), +(-12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(268,339,l), +(293,467,l), +(9,340,l), +(-18,212,l) +); +}, +{ +closed = 1; +nodes = ( +(137,0,l), +(289,715,l), +(140,715,l), +(-12,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(137,0,l), +(289,715,l), +(140,715,l), +(-12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(268,339,l), +(293,467,l), +(9,340,l), +(-18,212,l) +); +} +); +width = 277; +} +); +unicode = 322; +}, +{ +color = 6; +glyphname = m; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-22 13:33:36 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(162,329,ls), +(179,410,o), +(237,453,o), +(296,453,c), +(345,453,o), +(380,423,o), +(380,366,cs), +(380,354,o), +(378,337,o), +(376,329,cs), +(306,0,l), +(406,0,l), +(476,329,ls), +(493,410,o), +(551,453,o), +(610,453,c), +(659,453,o), +(694,423,o), +(694,366,cs), +(694,354,o), +(692,337,o), +(690,329,cs), +(620,0,l), +(720,0,l), +(791,332,ls), +(794,347,o), +(796,367,o), +(796,383,cs), +(796,474,o), +(742,540,o), +(656,540,c), +(559,540,o), +(461,464,o), +(433,334,c), +(479,381,l), +(479,472,o), +(428,540,o), +(341,540,c), +(245,540,o), +(157,459,o), +(129,329,c), +(175,389,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(162,329,ls), +(179,410,o), +(237,453,o), +(296,453,c), +(345,453,o), +(380,423,o), +(380,366,cs), +(380,354,o), +(378,337,o), +(376,329,cs), +(306,0,l), +(406,0,l), +(476,329,ls), +(493,410,o), +(551,453,o), +(610,453,c), +(659,453,o), +(694,423,o), +(694,366,cs), +(694,354,o), +(692,337,o), +(690,329,cs), +(620,0,l), +(720,0,l), +(791,332,ls), +(794,347,o), +(796,367,o), +(796,383,cs), +(796,474,o), +(742,540,o), +(656,540,c), +(559,540,o), +(461,464,o), +(433,334,c), +(479,381,l), +(479,472,o), +(428,540,o), +(341,540,c), +(245,540,o), +(157,459,o), +(129,329,c), +(175,389,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +} +); +width = 857; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,306,ls), +(209,376,o), +(250,413,o), +(297,413,c), +(335,413,o), +(358,389,o), +(358,344,cs), +(358,333,o), +(357,320,o), +(354,306,cs), +(289,0,l), +(439,0,l), +(504,306,ls), +(519,376,o), +(560,413,o), +(607,413,c), +(645,413,o), +(668,389,o), +(668,343,cs), +(668,332,o), +(667,320,o), +(664,306,cs), +(599,0,l), +(749,0,l), +(814,306,ls), +(819,329,o), +(821,351,o), +(821,374,c), +(821,471,o), +(765,544,o), +(678,544,c), +(577,544,o), +(489,458,o), +(457,306,c), +(506,374,l), +(508,472,o), +(457,544,o), +(374,544,c), +(278,544,o), +(200,458,o), +(168,306,c), +(209,375,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,306,ls), +(209,376,o), +(250,413,o), +(297,413,c), +(335,413,o), +(358,389,o), +(358,344,cs), +(358,333,o), +(357,320,o), +(354,306,cs), +(289,0,l), +(439,0,l), +(504,306,ls), +(519,376,o), +(560,413,o), +(607,413,c), +(645,413,o), +(668,389,o), +(668,343,cs), +(668,332,o), +(667,320,o), +(664,306,cs), +(599,0,l), +(749,0,l), +(814,306,ls), +(819,329,o), +(821,351,o), +(821,374,c), +(821,471,o), +(765,544,o), +(678,544,c), +(577,544,o), +(489,458,o), +(457,306,c), +(506,374,l), +(508,472,o), +(457,544,o), +(374,544,c), +(278,544,o), +(200,458,o), +(168,306,c), +(209,375,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +} +); +width = 875; +} +); +unicode = 109; +}, +{ +color = 6; +glyphname = n; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (331,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (218,0); +}, +{ +name = top; +pos = (331,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +} +); +width = 573; +}, +{ +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (333,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (333,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +} +); +width = 586; +} +); +unicode = 110; +}, +{ +color = 10; +glyphname = nacute; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(376,585,l), +(513,725,l), +(387,725,l), +(287,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (30,0); +ref = acutecomb; +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(389,585,l), +(545,730,l), +(384,730,l), +(274,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = n; +}, +{ +pos = (55,0); +ref = acutecomb; +} +); +width = 586; +} +); +unicode = 324; +}, +{ +color = 6; +glyphname = napostrophe; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(267,0,l), +(333,309,ls), +(353,403,o), +(418,454,o), +(485,454,c), +(545,454,o), +(582,418,o), +(582,351,cs), +(582,338,o), +(580,324,o), +(577,309,cs), +(511,0,l), +(611,0,l), +(678,313,ls), +(681,328,o), +(684,351,o), +(684,369,cs), +(684,469,o), +(625,540,o), +(528,540,c), +(426,540,o), +(330,451,o), +(300,309,c), +(343,358,l), +(380,530,l), +(280,530,l), +(167,0,l) +); +}, +{ +closed = 1; +nodes = ( +(131,417,l), +(233,690,l), +(119,690,l), +(61,417,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(267,0,l), +(333,309,ls), +(353,403,o), +(418,454,o), +(485,454,c), +(545,454,o), +(582,418,o), +(582,351,cs), +(582,338,o), +(580,324,o), +(577,309,cs), +(511,0,l), +(611,0,l), +(678,313,ls), +(681,328,o), +(684,351,o), +(684,369,cs), +(684,469,o), +(625,540,o), +(528,540,c), +(426,540,o), +(330,451,o), +(300,309,c), +(343,358,l), +(380,530,l), +(280,530,l), +(167,0,l) +); +}, +{ +closed = 1; +nodes = ( +(131,417,l), +(233,690,l), +(119,690,l), +(61,417,l) +); +} +); +width = 738; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(329,0,l), +(394,304,ls), +(409,375,o), +(455,413,o), +(508,413,c), +(552,413,o), +(580,387,o), +(580,338,cs), +(580,328,o), +(579,318,o), +(576,304,cs), +(511,0,l), +(660,0,l), +(726,312,ls), +(731,335,o), +(733,356,o), +(733,377,cs), +(733,475,o), +(675,544,o), +(584,544,c), +(483,544,o), +(400,457,o), +(368,304,c), +(401,340,l), +(442,530,l), +(293,530,l), +(180,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,383,l), +(282,690,l), +(122,690,l), +(56,383,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,0,l), +(394,304,ls), +(409,375,o), +(455,413,o), +(508,413,c), +(552,413,o), +(580,387,o), +(580,338,cs), +(580,328,o), +(579,318,o), +(576,304,cs), +(511,0,l), +(660,0,l), +(726,312,ls), +(731,335,o), +(733,356,o), +(733,377,cs), +(733,475,o), +(675,544,o), +(584,544,c), +(483,544,o), +(400,457,o), +(368,304,c), +(401,340,l), +(442,530,l), +(293,530,l), +(180,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,383,l), +(282,690,l), +(122,690,l), +(56,383,l) +); +} +); +width = 786; +} +); +unicode = 329; +}, +{ +color = 10; +glyphname = ncaron; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(361,585,l), +(360,625,l), +(298,725,l), +(216,725,l), +(286,585,l) +); +}, +{ +closed = 1; +nodes = ( +(398,585,l), +(528,725,l), +(434,725,l), +(330,625,l), +(323,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (42,0); +ref = caroncomb; +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(380,585,l), +(375,629,l), +(307,730,l), +(203,730,l), +(274,585,l) +); +}, +{ +closed = 1; +nodes = ( +(414,585,l), +(547,730,l), +(431,730,l), +(320,629,l), +(308,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = n; +}, +{ +pos = (45,0); +ref = caroncomb; +} +); +width = 586; +} +); +unicode = 328; +}, +{ +color = 10; +glyphname = ncommaaccent; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(176,-275,l), +(260,-72,l), +(156,-72,l), +(113,-275,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (41,0); +ref = commaaccentcomb; +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(191,-270,l), +(279,-54,l), +(147,-54,l), +(101,-270,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = n; +}, +{ +pos = (43,0); +ref = commaaccentcomb; +} +); +width = 586; +} +); +unicode = 326; +}, +{ +color = 6; +glyphname = nhookleft; +kernLeft = j; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-185,o), +(63,-138,o), +(88,-21,cs), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-12,-17,ls), +(-23,-70,o), +(-56,-94,o), +(-101,-94,c), +(-124,-94,o), +(-144,-88,o), +(-164,-79,c), +(-183,-168,l), +(-157,-178,o), +(-129,-185,o), +(-97,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-185,o), +(63,-138,o), +(88,-21,cs), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-12,-17,ls), +(-23,-70,o), +(-56,-94,o), +(-101,-94,c), +(-124,-94,o), +(-144,-88,o), +(-164,-79,c), +(-183,-168,l), +(-157,-178,o), +(-129,-185,o), +(-97,-185,c) +); +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(20,-189,o), +(99,-143,o), +(126,-14,c), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-18,9,l), +(-27,-32,o), +(-51,-54,o), +(-92,-54,c), +(-117,-54,o), +(-139,-49,o), +(-159,-41,c), +(-187,-172,l), +(-162,-183,o), +(-123,-189,o), +(-83,-189,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,-189,o), +(99,-143,o), +(126,-14,c), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-18,9,l), +(-27,-32,o), +(-51,-54,o), +(-92,-54,c), +(-117,-54,o), +(-139,-49,o), +(-159,-41,c), +(-187,-172,l), +(-162,-183,o), +(-123,-189,o), +(-83,-189,c) +); +} +); +width = 586; +} +); +unicode = 626; +}, +{ +color = 10; +glyphname = ntilde; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(336,0,l), +(436,0,l), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(263,585,l), +(267,624,o), +(276,642,o), +(301,642,c), +(333,642,o), +(349,585,o), +(410,585,c), +(473,585,o), +(507,639,o), +(519,725,c), +(451,725,l), +(448,686,o), +(438,668,o), +(413,668,c), +(382,668,o), +(365,725,o), +(304,725,c), +(241,725,o), +(208,671,o), +(195,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (42,0); +ref = tildecomb; +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(311,0,l), +(460,0,l), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(269,585,l), +(270,612,o), +(285,624,o), +(304,624,c), +(338,624,o), +(353,585,o), +(411,585,c), +(473,585,o), +(520,641,o), +(534,730,c), +(450,730,l), +(449,702,o), +(435,690,o), +(416,690,c), +(384,690,o), +(366,730,o), +(308,730,c), +(245,730,o), +(198,674,o), +(185,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = n; +}, +{ +pos = (44,0); +ref = tildecomb; +} +); +width = 586; +} +); +unicode = 241; +}, +{ +color = 6; +glyphname = eng; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(341,-185,o), +(407,-138,o), +(432,-21,cs), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l), +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(332,-17,ls), +(321,-70,o), +(288,-94,o), +(243,-94,c), +(220,-94,o), +(200,-88,o), +(180,-79,c), +(161,-168,l), +(187,-178,o), +(215,-185,o), +(247,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(341,-185,o), +(407,-138,o), +(432,-21,cs), +(503,313,ls), +(506,328,o), +(509,351,o), +(509,369,cs), +(509,469,o), +(450,540,o), +(353,540,c), +(251,540,o), +(155,451,o), +(125,309,c), +(168,358,l), +(205,530,l), +(105,530,l), +(-8,0,l), +(92,0,l), +(158,309,ls), +(178,403,o), +(243,454,o), +(310,454,c), +(370,454,o), +(407,418,o), +(407,351,cs), +(407,338,o), +(405,324,o), +(402,309,cs), +(332,-17,ls), +(321,-70,o), +(288,-94,o), +(243,-94,c), +(220,-94,o), +(200,-88,o), +(180,-79,c), +(161,-168,l), +(187,-178,o), +(215,-185,o), +(247,-185,c) +); +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(351,-189,o), +(430,-143,o), +(457,-14,cs), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l), +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(313,9,ls), +(304,-32,o), +(280,-54,o), +(239,-54,c), +(214,-54,o), +(192,-49,o), +(172,-41,c), +(144,-172,l), +(169,-183,o), +(208,-189,o), +(248,-189,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(351,-189,o), +(430,-143,o), +(457,-14,cs), +(526,312,ls), +(531,335,o), +(533,356,o), +(533,377,cs), +(533,475,o), +(475,544,o), +(384,544,c), +(283,544,o), +(200,457,o), +(168,304,c), +(201,340,l), +(242,530,l), +(93,530,l), +(-20,0,l), +(129,0,l), +(194,304,ls), +(209,375,o), +(255,413,o), +(308,413,c), +(352,413,o), +(380,387,o), +(380,338,cs), +(380,328,o), +(379,318,o), +(376,304,cs), +(313,9,ls), +(304,-32,o), +(280,-54,o), +(239,-54,c), +(214,-54,o), +(192,-49,o), +(172,-41,c), +(144,-172,l), +(169,-183,o), +(208,-189,o), +(248,-189,c) +); +} +); +width = 586; +} +); +unicode = 331; +}, +{ +color = 6; +glyphname = o; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:47:33 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (210,0); +}, +{ +name = ogonek; +pos = (285,0); +}, +{ +name = top; +pos = (323,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (210,0); +}, +{ +name = top; +pos = (323,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +} +); +width = 564; +}, +{ +anchors = ( +{ +name = bottom; +pos = (215,0); +}, +{ +name = ogonek; +pos = (310,0); +}, +{ +name = top; +pos = (327,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (215,0); +}, +{ +name = top; +pos = (328,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +} +); +width = 576; +} +); +unicode = 111; +}, +{ +color = 10; +glyphname = oacute; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(368,585,l), +(505,725,l), +(379,725,l), +(279,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (22,0); +ref = acutecomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(384,585,l), +(540,730,l), +(379,730,l), +(269,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (49,0); +ref = acutecomb; +} +); +width = 576; +} +); +unicode = 243; +}, +{ +color = 10; +glyphname = obreve; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:47:33 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(439,585,o), +(486,639,o), +(504,725,c), +(434,725,l), +(426,684,o), +(395,660,o), +(348,660,c), +(310,660,o), +(292,677,o), +(292,707,cs), +(292,712,o), +(293,719,o), +(294,725,c), +(224,725,l), +(222,713,o), +(221,702,o), +(221,692,cs), +(221,629,o), +(267,585,o), +(344,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (34,0); +ref = brevecomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(454,585,o), +(500,639,o), +(519,730,c), +(428,730,l), +(421,693,o), +(393,671,o), +(356,671,c), +(325,671,o), +(310,686,o), +(310,713,cs), +(310,718,o), +(311,724,o), +(312,730,c), +(221,730,l), +(219,718,o), +(218,708,o), +(218,697,cs), +(218,626,o), +(268,585,o), +(349,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (39,0); +ref = brevecomb; +} +); +width = 576; +} +); +unicode = 335; +}, +{ +color = 10; +glyphname = ocircumflex; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:47:33 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(272,585,l), +(376,685,l), +(383,725,l), +(308,725,l), +(178,585,l) +); +}, +{ +closed = 1; +nodes = ( +(490,585,l), +(420,725,l), +(345,725,l), +(346,685,l), +(408,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (35,0); +ref = circumflexcomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(283,585,l), +(394,686,l), +(406,730,l), +(300,730,l), +(167,585,l) +); +}, +{ +closed = 1; +nodes = ( +(511,585,l), +(440,730,l), +(334,730,l), +(339,686,l), +(407,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (39,0); +ref = circumflexcomb; +} +); +width = 576; +} +); +unicode = 244; +}, +{ +color = 10; +glyphname = odieresis; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:47:33 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(289,602,o), +(315,627,o), +(315,662,c), +(315,694,o), +(294,715,o), +(263,715,c), +(228,715,o), +(203,690,o), +(203,653,c), +(203,623,o), +(224,602,o), +(254,602,c) +); +}, +{ +closed = 1; +nodes = ( +(471,602,o), +(497,627,o), +(497,662,c), +(497,694,o), +(476,715,o), +(445,715,c), +(410,715,o), +(385,690,o), +(385,653,c), +(385,623,o), +(406,602,o), +(436,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (33,0); +ref = dieresiscomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(294,588,o), +(328,618,o), +(328,664,c), +(328,703,o), +(303,728,o), +(262,728,c), +(220,728,o), +(186,698,o), +(186,652,c), +(186,613,o), +(211,588,o), +(252,588,c) +); +}, +{ +closed = 1; +nodes = ( +(490,588,o), +(524,618,o), +(524,664,c), +(524,703,o), +(499,728,o), +(458,728,c), +(416,728,o), +(382,698,o), +(382,652,c), +(382,613,o), +(407,588,o), +(448,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (37,0); +ref = dieresiscomb; +} +); +width = 576; +} +); +unicode = 246; +}, +{ +color = 10; +glyphname = odotbelow; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(214,-195,o), +(242,-168,o), +(242,-130,c), +(242,-95,o), +(219,-72,o), +(185,-72,c), +(147,-72,o), +(120,-99,o), +(120,-140,c), +(120,-172,o), +(143,-195,o), +(176,-195,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (34,0); +ref = dotbelow; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(229,-198,o), +(265,-166,o), +(265,-117,c), +(265,-75,o), +(238,-48,o), +(194,-48,c), +(149,-48,o), +(113,-80,o), +(113,-130,c), +(113,-171,o), +(140,-198,o), +(184,-198,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = dotbelow; +} +); +width = 576; +} +); +unicode = 7885; +}, +{ +color = 10; +glyphname = ograve; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:48:12 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(384,585,l), +(344,725,l), +(223,725,l), +(303,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (33,0); +ref = gravecomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(402,585,l), +(353,730,l), +(203,730,l), +(300,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (91,0); +ref = gravecomb; +} +); +width = 576; +} +); +unicode = 242; +}, +{ +color = 10; +glyphname = ohungarumlaut; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:48:20 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(312,585,l), +(412,725,l), +(309,725,l), +(229,585,l) +); +}, +{ +closed = 1; +nodes = ( +(444,585,l), +(574,725,l), +(461,725,l), +(361,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (34,0); +ref = hungarumlautcomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(327,585,l), +(442,730,l), +(302,730,l), +(220,585,l) +); +}, +{ +closed = 1; +nodes = ( +(464,585,l), +(620,730,l), +(473,730,l), +(358,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (39,0); +ref = hungarumlautcomb; +} +); +width = 576; +} +); +unicode = 337; +}, +{ +color = 10; +glyphname = omacron; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:47:33 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(480,621,l), +(498,705,l), +(222,705,l), +(204,621,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (33,0); +ref = macroncomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(490,603,l), +(515,718,l), +(221,718,l), +(196,603,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = macroncomb; +} +); +width = 576; +} +); +unicode = 333; +}, +{ +color = 10; +glyphname = oogonek; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:04:23 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(203,-185,o), +(240,-176,o), +(262,-165,c), +(270,-84,l), +(245,-96,o), +(214,-106,o), +(188,-106,c), +(177,-106,o), +(171,-101,o), +(171,-93,cs), +(171,-72,o), +(207,-34,o), +(312,7,cs), +(432,54,o), +(517,183,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c), +(204,-2,l), +(115,-35,o), +(83,-74,o), +(83,-118,c), +(83,-155,o), +(109,-185,o), +(171,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (55,0); +ref = ogonekcomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(213,-190,o), +(248,-183,o), +(279,-170,c), +(290,-75,l), +(268,-87,o), +(240,-96,o), +(221,-96,c), +(208,-96,o), +(201,-90,o), +(201,-82,cs), +(201,-65,o), +(225,-30,o), +(316,0,cs), +(448,44,o), +(536,176,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c), +(213,-3,l), +(120,-36,o), +(86,-82,o), +(86,-121,c), +(86,-158,o), +(116,-190,o), +(185,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (44,0); +ref = ogonekcomb; +} +); +width = 576; +} +); +unicode = 491; +}, +{ +color = 6; +glyphname = oslash; +kernLeft = G; +kernRight = M; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (322,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (322,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(387,-10,o), +(516,145,o), +(516,340,cs), +(516,459,o), +(438,540,o), +(313,540,c), +(144,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(50,0,l), +(601,540,l), +(484,540,l), +(-67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(159,80,o), +(119,121,o), +(119,195,cs), +(119,334,o), +(200,450,o), +(300,450,c), +(372,450,o), +(412,409,o), +(412,335,cs), +(412,196,o), +(331,80,o), +(231,80,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(387,-10,o), +(516,145,o), +(516,340,cs), +(516,459,o), +(438,540,o), +(313,540,c), +(144,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(50,0,l), +(601,540,l), +(484,540,l), +(-67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(159,80,o), +(119,121,o), +(119,195,cs), +(119,334,o), +(200,450,o), +(300,450,c), +(372,450,o), +(412,409,o), +(412,335,cs), +(412,196,o), +(331,80,o), +(231,80,c) +); +} +); +width = 564; +}, +{ +anchors = ( +{ +name = top; +pos = (328,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (328,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(78,0,l), +(614,530,l), +(465,530,l), +(-71,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(78,0,l), +(614,530,l), +(465,530,l), +(-71,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +} +); +width = 575; +} +); +unicode = 248; +}, +{ +color = 10; +glyphname = oslashacute; +kernLeft = G; +kernRight = M; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(387,-10,o), +(516,145,o), +(516,340,cs), +(516,459,o), +(438,540,o), +(313,540,c), +(144,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(93,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(50,0,l), +(601,540,l), +(484,540,l), +(-67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(159,80,o), +(119,121,o), +(119,195,cs), +(119,334,o), +(200,450,o), +(300,450,c), +(372,450,o), +(412,409,o), +(412,335,cs), +(412,196,o), +(331,80,o), +(231,80,c) +); +}, +{ +closed = 1; +nodes = ( +(367,585,l), +(504,725,l), +(378,725,l), +(278,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = oslash; +}, +{ +pos = (21,0); +ref = acutecomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(78,0,l), +(614,530,l), +(465,530,l), +(-71,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(384,585,l), +(540,730,l), +(379,730,l), +(269,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = oslash; +}, +{ +pos = (50,0); +ref = acutecomb; +} +); +width = 575; +} +); +unicode = 511; +}, +{ +color = 10; +glyphname = otilde; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:47:33 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(388,-10,o), +(517,145,o), +(517,340,cs), +(517,459,o), +(439,540,o), +(314,540,c), +(145,540,o), +(16,385,o), +(16,190,cs), +(16,71,o), +(94,-10,o), +(219,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,80,o), +(120,121,o), +(120,195,cs), +(120,334,o), +(201,450,o), +(301,450,c), +(373,450,o), +(413,409,o), +(413,335,cs), +(413,196,o), +(332,80,o), +(232,80,c) +); +}, +{ +closed = 1; +nodes = ( +(255,585,l), +(259,624,o), +(268,642,o), +(293,642,c), +(325,642,o), +(341,585,o), +(402,585,c), +(465,585,o), +(499,639,o), +(511,725,c), +(443,725,l), +(440,686,o), +(430,668,o), +(405,668,c), +(374,668,o), +(357,725,o), +(296,725,c), +(233,725,o), +(200,671,o), +(187,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (34,0); +ref = tildecomb; +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-14,o), +(536,143,o), +(536,329,c), +(536,454,o), +(451,544,o), +(318,544,c), +(137,544,o), +(6,387,o), +(6,201,c), +(6,76,o), +(91,-14,o), +(224,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(187,119,o), +(160,159,o), +(160,218,c), +(160,323,o), +(222,411,o), +(301,411,c), +(355,411,o), +(382,371,o), +(382,312,c), +(382,207,o), +(319,119,o), +(241,119,c) +); +}, +{ +closed = 1; +nodes = ( +(264,585,l), +(265,612,o), +(280,624,o), +(299,624,c), +(333,624,o), +(348,585,o), +(406,585,c), +(468,585,o), +(515,641,o), +(529,730,c), +(445,730,l), +(444,702,o), +(430,690,o), +(411,690,c), +(379,690,o), +(361,730,o), +(303,730,c), +(240,730,o), +(193,674,o), +(180,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = tildecomb; +} +); +width = 576; +} +); +unicode = 245; +}, +{ +color = 6; +glyphname = oe; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(373,-10,o), +(496,145,o), +(496,340,cs), +(496,459,o), +(424,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(91,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,80,o), +(119,121,o), +(119,195,cs), +(119,334,o), +(200,450,o), +(300,450,c), +(372,450,o), +(412,409,o), +(412,335,cs), +(412,196,o), +(331,80,o), +(231,80,c) +); +}, +{ +closed = 1; +nodes = ( +(706,-10,o), +(789,43,o), +(839,125,c), +(754,170,l), +(721,116,o), +(671,84,o), +(615,84,c), +(543,84,o), +(503,121,o), +(503,195,cs), +(503,337,o), +(583,454,o), +(680,454,c), +(749,454,o), +(786,412,o), +(786,335,cs), +(786,311,o), +(784,288,o), +(779,266,c), +(817,310,l), +(499,310,l), +(482,231,l), +(874,231,l), +(883,265,o), +(890,302,o), +(890,340,cs), +(890,459,o), +(816,540,o), +(697,540,c), +(539,540,o), +(419,385,o), +(419,190,cs), +(419,71,o), +(491,-10,o), +(607,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(373,-10,o), +(496,145,o), +(496,340,cs), +(496,459,o), +(424,540,o), +(308,540,c), +(142,540,o), +(15,385,o), +(15,190,cs), +(15,71,o), +(91,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(159,80,o), +(119,121,o), +(119,195,cs), +(119,334,o), +(200,450,o), +(300,450,c), +(372,450,o), +(412,409,o), +(412,335,cs), +(412,196,o), +(331,80,o), +(231,80,c) +); +}, +{ +closed = 1; +nodes = ( +(706,-10,o), +(789,43,o), +(839,125,c), +(754,170,l), +(721,116,o), +(671,84,o), +(615,84,c), +(543,84,o), +(503,121,o), +(503,195,cs), +(503,337,o), +(583,454,o), +(680,454,c), +(749,454,o), +(786,412,o), +(786,335,cs), +(786,311,o), +(784,288,o), +(779,266,c), +(817,310,l), +(499,310,l), +(482,231,l), +(874,231,l), +(883,265,o), +(890,302,o), +(890,340,cs), +(890,459,o), +(816,540,o), +(697,540,c), +(539,540,o), +(419,385,o), +(419,190,cs), +(419,71,o), +(491,-10,o), +(607,-10,c) +); +} +); +width = 937; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(384,-14,o), +(507,143,o), +(507,329,c), +(507,454,o), +(430,544,o), +(309,544,c), +(134,544,o), +(7,387,o), +(7,201,c), +(7,76,o), +(88,-14,o), +(215,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(188,119,o), +(161,159,o), +(161,218,c), +(161,323,o), +(223,411,o), +(302,411,c), +(356,411,o), +(383,371,o), +(383,312,c), +(383,207,o), +(320,119,o), +(242,119,c) +); +}, +{ +closed = 1; +nodes = ( +(714,-14,o), +(801,42,o), +(846,128,c), +(710,177,l), +(693,141,o), +(657,114,o), +(609,114,c), +(555,114,o), +(528,159,o), +(528,218,c), +(528,328,o), +(591,419,o), +(670,419,c), +(724,419,o), +(750,387,o), +(750,312,c), +(750,296,o), +(749,280,o), +(746,265,c), +(796,323,l), +(480,323,l), +(458,223,l), +(883,223,l), +(893,256,o), +(898,292,o), +(898,327,c), +(898,454,o), +(822,544,o), +(692,544,c), +(526,544,o), +(404,387,o), +(404,201,c), +(404,76,o), +(481,-14,o), +(608,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,-14,o), +(507,143,o), +(507,329,c), +(507,454,o), +(430,544,o), +(309,544,c), +(134,544,o), +(7,387,o), +(7,201,c), +(7,76,o), +(88,-14,o), +(215,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(188,119,o), +(161,159,o), +(161,218,c), +(161,323,o), +(223,411,o), +(302,411,c), +(356,411,o), +(383,371,o), +(383,312,c), +(383,207,o), +(320,119,o), +(242,119,c) +); +}, +{ +closed = 1; +nodes = ( +(714,-14,o), +(801,42,o), +(846,128,c), +(710,177,l), +(693,141,o), +(657,114,o), +(609,114,c), +(555,114,o), +(528,159,o), +(528,218,c), +(528,328,o), +(591,419,o), +(670,419,c), +(724,419,o), +(750,387,o), +(750,312,c), +(750,296,o), +(749,280,o), +(746,265,c), +(796,323,l), +(480,323,l), +(458,223,l), +(883,223,l), +(893,256,o), +(898,292,o), +(898,327,c), +(898,454,o), +(822,544,o), +(692,544,c), +(526,544,o), +(404,387,o), +(404,201,c), +(404,76,o), +(481,-14,o), +(608,-14,c) +); +} +); +width = 938; +} +); +unicode = 339; +}, +{ +color = 6; +glyphname = p; +kernLeft = p; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-10,o), +(528,138,o), +(528,342,c), +(528,466,o), +(456,540,o), +(359,540,c), +(253,540,o), +(162,456,o), +(131,309,c), +(104,150,l), +(104,47,o), +(167,-10,o), +(256,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(56,-175,l), +(119,123,l), +(134,265,l), +(180,408,l), +(206,530,l), +(106,530,l), +(-44,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(175,77,o), +(136,113,o), +(136,195,c), +(136,334,o), +(212,453,o), +(319,453,c), +(384,453,o), +(423,417,o), +(423,335,c), +(423,187,o), +(347,77,o), +(240,77,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-10,o), +(528,138,o), +(528,342,c), +(528,466,o), +(456,540,o), +(359,540,c), +(253,540,o), +(162,456,o), +(131,309,c), +(104,150,l), +(104,47,o), +(167,-10,o), +(256,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(56,-175,l), +(119,123,l), +(134,265,l), +(180,408,l), +(206,530,l), +(106,530,l), +(-44,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(175,77,o), +(136,113,o), +(136,195,c), +(136,334,o), +(212,453,o), +(319,453,c), +(384,453,o), +(423,417,o), +(423,335,c), +(423,187,o), +(347,77,o), +(240,77,c) +); +} +); +width = 576; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(441,-14,o), +(543,154,o), +(543,341,c), +(543,468,o), +(483,544,o), +(385,544,c), +(284,544,o), +(201,458,o), +(169,304,c), +(147,145,l), +(144,42,o), +(196,-14,o), +(284,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(93,-175,l), +(160,139,l), +(167,265,l), +(211,383,l), +(243,530,l), +(94,530,l), +(-56,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(198,120,o), +(170,151,o), +(170,212,c), +(170,322,o), +(228,410,o), +(310,410,c), +(361,410,o), +(389,379,o), +(389,318,c), +(389,208,o), +(331,120,o), +(249,120,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(441,-14,o), +(543,154,o), +(543,341,c), +(543,468,o), +(483,544,o), +(385,544,c), +(284,544,o), +(201,458,o), +(169,304,c), +(147,145,l), +(144,42,o), +(196,-14,o), +(284,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(93,-175,l), +(160,139,l), +(167,265,l), +(211,383,l), +(243,530,l), +(94,530,l), +(-56,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(198,120,o), +(170,151,o), +(170,212,c), +(170,322,o), +(228,410,o), +(310,410,c), +(361,410,o), +(389,379,o), +(389,318,c), +(389,208,o), +(331,120,o), +(249,120,c) +); +} +); +width = 587; +} +); +unicode = 112; +}, +{ +color = 6; +glyphname = thorn; +kernRight = o; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(405,-10,o), +(528,138,o), +(528,342,c), +(528,466,o), +(456,540,o), +(359,540,c), +(253,540,o), +(162,456,o), +(131,309,c), +(104,150,l), +(104,47,o), +(167,-10,o), +(256,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(56,-175,l), +(119,123,l), +(134,265,l), +(180,408,l), +(245,715,l), +(145,715,l), +(-44,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(175,77,o), +(136,113,o), +(136,195,c), +(136,334,o), +(212,453,o), +(319,453,c), +(384,453,o), +(423,417,o), +(423,335,c), +(423,187,o), +(347,77,o), +(240,77,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-10,o), +(528,138,o), +(528,342,c), +(528,466,o), +(456,540,o), +(359,540,c), +(253,540,o), +(162,456,o), +(131,309,c), +(104,150,l), +(104,47,o), +(167,-10,o), +(256,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(56,-175,l), +(119,123,l), +(134,265,l), +(180,408,l), +(245,715,l), +(145,715,l), +(-44,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(175,77,o), +(136,113,o), +(136,195,c), +(136,334,o), +(212,453,o), +(319,453,c), +(384,453,o), +(423,417,o), +(423,335,c), +(423,187,o), +(347,77,o), +(240,77,c) +); +} +); +width = 576; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(441,-14,o), +(543,154,o), +(543,341,c), +(543,468,o), +(483,544,o), +(385,544,c), +(284,544,o), +(201,458,o), +(169,304,c), +(147,145,l), +(144,42,o), +(196,-14,o), +(284,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(93,-175,l), +(160,139,l), +(167,265,l), +(211,383,l), +(282,715,l), +(133,715,l), +(-56,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(198,120,o), +(170,151,o), +(170,212,c), +(170,322,o), +(228,410,o), +(310,410,c), +(361,410,o), +(389,379,o), +(389,318,c), +(389,208,o), +(331,120,o), +(249,120,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(441,-14,o), +(543,154,o), +(543,341,c), +(543,468,o), +(483,544,o), +(385,544,c), +(284,544,o), +(201,458,o), +(169,304,c), +(147,145,l), +(144,42,o), +(196,-14,o), +(284,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(93,-175,l), +(160,139,l), +(167,265,l), +(211,383,l), +(282,715,l), +(133,715,l), +(-56,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(198,120,o), +(170,151,o), +(170,212,c), +(170,322,o), +(228,410,o), +(310,410,c), +(361,410,o), +(389,379,o), +(389,318,c), +(389,208,o), +(331,120,o), +(249,120,c) +); +} +); +width = 587; +} +); +unicode = 254; +}, +{ +color = 6; +glyphname = q; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(292,-10,o), +(383,74,o), +(414,221,c), +(441,380,l), +(441,483,o), +(378,540,o), +(289,540,c), +(140,540,o), +(17,392,o), +(17,188,c), +(17,64,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(161,77,o), +(122,113,o), +(122,195,c), +(122,343,o), +(198,453,o), +(305,453,c), +(370,453,o), +(409,417,o), +(409,335,c), +(409,196,o), +(333,77,o), +(226,77,c) +); +}, +{ +closed = 1; +nodes = ( +(402,-175,l), +(552,530,l), +(452,530,l), +(426,407,l), +(411,265,l), +(365,122,l), +(302,-175,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-10,o), +(383,74,o), +(414,221,c), +(441,380,l), +(441,483,o), +(378,540,o), +(289,540,c), +(140,540,o), +(17,392,o), +(17,188,c), +(17,64,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(161,77,o), +(122,113,o), +(122,195,c), +(122,343,o), +(198,453,o), +(305,453,c), +(370,453,o), +(409,417,o), +(409,335,c), +(409,196,o), +(333,77,o), +(226,77,c) +); +}, +{ +closed = 1; +nodes = ( +(402,-175,l), +(552,530,l), +(452,530,l), +(426,407,l), +(411,265,l), +(365,122,l), +(302,-175,l) +); +} +); +width = 576; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(422,-175,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(273,-175,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(269,-14,o), +(352,72,o), +(384,226,c), +(406,385,l), +(409,488,o), +(357,544,o), +(269,544,c), +(112,544,o), +(10,376,o), +(10,189,c), +(10,62,o), +(70,-14,o), +(168,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(192,120,o), +(164,151,o), +(164,212,c), +(164,322,o), +(222,410,o), +(304,410,c), +(355,410,o), +(383,379,o), +(383,318,c), +(383,208,o), +(325,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(422,-175,l), +(572,530,l), +(423,530,l), +(393,391,l), +(386,265,l), +(341,147,l), +(273,-175,l) +); +} +); +width = 585; +} +); +unicode = 113; +}, +{ +color = 6; +glyphname = r; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (42,0); +}, +{ +name = top; +pos = (230.655,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (42,0); +}, +{ +name = top; +pos = (230.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,292,l), +(175,389,o), +(235,429,o), +(314,429,c), +(341,429,l), +(365,540,l), +(252,540,o), +(154,439,o), +(120,279,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,292,l), +(175,389,o), +(235,429,o), +(314,429,c), +(341,429,l), +(365,540,l), +(252,540,o), +(154,439,o), +(120,279,c) +); +} +); +width = 342; +}, +{ +anchors = ( +{ +name = bottom; +pos = (55,0); +}, +{ +name = top; +pos = (241.655,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (55,0); +}, +{ +name = top; +pos = (241.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,271,l), +(203,348,o), +(242,373,o), +(304,373,c), +(366,373,l), +(403,544,l), +(275,544,o), +(199,423,o), +(160,238,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,271,l), +(203,348,o), +(242,373,o), +(304,373,c), +(366,373,l), +(403,544,l), +(275,544,o), +(199,423,o), +(160,238,c) +); +} +); +width = 369; +} +); +unicode = 114; +}, +{ +color = 10; +glyphname = racute; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,292,l), +(175,389,o), +(235,429,o), +(314,429,c), +(341,429,l), +(365,540,l), +(252,540,o), +(154,439,o), +(120,279,c) +); +}, +{ +closed = 1; +nodes = ( +(276,585,l), +(413,725,l), +(287,725,l), +(187,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = r; +}, +{ +pos = (-70,0); +ref = acutecomb; +} +); +width = 342; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,271,l), +(203,348,o), +(242,373,o), +(304,373,c), +(366,373,l), +(403,544,l), +(275,544,o), +(199,423,o), +(160,238,c) +); +}, +{ +closed = 1; +nodes = ( +(298,585,l), +(454,730,l), +(293,730,l), +(183,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-36,0); +ref = acutecomb; +} +); +width = 369; +} +); +unicode = 341; +}, +{ +color = 10; +glyphname = rcaron; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,292,l), +(175,389,o), +(235,429,o), +(314,429,c), +(341,429,l), +(365,540,l), +(252,540,o), +(154,439,o), +(120,279,c) +); +}, +{ +closed = 1; +nodes = ( +(261,585,l), +(260,625,l), +(198,725,l), +(116,725,l), +(186,585,l) +); +}, +{ +closed = 1; +nodes = ( +(298,585,l), +(428,725,l), +(334,725,l), +(230,625,l), +(223,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = r; +}, +{ +pos = (-58,0); +ref = caroncomb; +} +); +width = 342; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,271,l), +(203,348,o), +(242,373,o), +(304,373,c), +(366,373,l), +(403,544,l), +(275,544,o), +(199,423,o), +(160,238,c) +); +}, +{ +closed = 1; +nodes = ( +(289,585,l), +(284,629,l), +(216,730,l), +(112,730,l), +(183,585,l) +); +}, +{ +closed = 1; +nodes = ( +(323,585,l), +(456,730,l), +(340,730,l), +(229,629,l), +(217,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-46,0); +ref = caroncomb; +} +); +width = 369; +} +); +unicode = 345; +}, +{ +color = 10; +glyphname = rcommaaccent; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(0,-275,l), +(84,-72,l), +(-20,-72,l), +(-63,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(154,292,l), +(175,389,o), +(235,429,o), +(314,429,c), +(341,429,l), +(365,540,l), +(252,540,o), +(154,439,o), +(120,279,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = r; +}, +{ +pos = (-135,0); +ref = commaaccentcomb; +} +); +width = 342; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(129,0,l), +(242,530,l), +(93,530,l), +(-20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(26,-270,l), +(114,-54,l), +(-18,-54,l), +(-64,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(187,271,l), +(203,348,o), +(242,373,o), +(304,373,c), +(366,373,l), +(403,544,l), +(275,544,o), +(199,423,o), +(160,238,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-122,0); +ref = commaaccentcomb; +} +); +width = 369; +} +); +unicode = 343; +}, +{ +color = 6; +glyphname = s; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (173,0); +}, +{ +name = top; +pos = (286,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (173,0); +}, +{ +name = top; +pos = (286,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(412,68,o), +(412,157,c), +(412,328,o), +(158,303,o), +(158,397,c), +(158,428,o), +(191,459,o), +(254,459,c), +(308,459,o), +(351,433,o), +(369,368,c), +(461,399,l), +(440,491,o), +(371,540,o), +(271,540,c), +(129,540,o), +(57,468,o), +(57,380,c), +(57,227,o), +(308,249,o), +(308,145,c), +(308,103,o), +(266,71,o), +(202,71,c), +(142,71,o), +(94,97,o), +(77,164,c), +(-17,134,l), +(-2,39,o), +(80,-10,o), +(191,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(412,68,o), +(412,157,c), +(412,328,o), +(158,303,o), +(158,397,c), +(158,428,o), +(191,459,o), +(254,459,c), +(308,459,o), +(351,433,o), +(369,368,c), +(461,399,l), +(440,491,o), +(371,540,o), +(271,540,c), +(129,540,o), +(57,468,o), +(57,380,c), +(57,227,o), +(308,249,o), +(308,145,c), +(308,103,o), +(266,71,o), +(202,71,c), +(142,71,o), +(94,97,o), +(77,164,c), +(-17,134,l), +(-2,39,o), +(80,-10,o), +(191,-10,c) +); +} +); +width = 492; +}, +{ +anchors = ( +{ +name = bottom; +pos = (187,0); +}, +{ +name = top; +pos = (296,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (187,0); +}, +{ +name = top; +pos = (296,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-14,o), +(450,66,o), +(450,167,c), +(450,349,o), +(192,316,o), +(192,389,c), +(192,410,o), +(210,429,o), +(262,429,c), +(310,429,o), +(331,408,o), +(344,362,c), +(488,404,l), +(468,494,o), +(397,544,o), +(284,544,c), +(133,544,o), +(43,458,o), +(43,368,c), +(43,190,o), +(292,226,o), +(292,147,c), +(292,124,o), +(275,102,o), +(217,102,c), +(169,102,o), +(140,127,o), +(126,183,c), +(-21,140,l), +(-8,38,o), +(71,-14,o), +(198,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(356,-14,o), +(450,66,o), +(450,167,c), +(450,349,o), +(192,316,o), +(192,389,c), +(192,410,o), +(210,429,o), +(262,429,c), +(310,429,o), +(331,408,o), +(344,362,c), +(488,404,l), +(468,494,o), +(397,544,o), +(284,544,c), +(133,544,o), +(43,458,o), +(43,368,c), +(43,190,o), +(292,226,o), +(292,147,c), +(292,124,o), +(275,102,o), +(217,102,c), +(169,102,o), +(140,127,o), +(126,183,c), +(-21,140,l), +(-8,38,o), +(71,-14,o), +(198,-14,c) +); +} +); +width = 514; +} +); +unicode = 115; +}, +{ +color = 10; +glyphname = sacute; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(412,68,o), +(412,157,c), +(412,328,o), +(158,303,o), +(158,397,c), +(158,428,o), +(191,459,o), +(254,459,c), +(308,459,o), +(351,433,o), +(369,368,c), +(461,399,l), +(440,491,o), +(371,540,o), +(271,540,c), +(129,540,o), +(57,468,o), +(57,380,c), +(57,227,o), +(308,249,o), +(308,145,c), +(308,103,o), +(266,71,o), +(202,71,c), +(142,71,o), +(94,97,o), +(77,164,c), +(-17,134,l), +(-2,39,o), +(80,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(331,585,l), +(468,725,l), +(342,725,l), +(242,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (-15,0); +ref = acutecomb; +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(356,-14,o), +(450,66,o), +(450,167,c), +(450,349,o), +(192,316,o), +(192,389,c), +(192,410,o), +(210,429,o), +(262,429,c), +(310,429,o), +(331,408,o), +(344,362,c), +(488,404,l), +(468,494,o), +(397,544,o), +(284,544,c), +(133,544,o), +(43,458,o), +(43,368,c), +(43,190,o), +(292,226,o), +(292,147,c), +(292,124,o), +(275,102,o), +(217,102,c), +(169,102,o), +(140,127,o), +(126,183,c), +(-21,140,l), +(-8,38,o), +(71,-14,o), +(198,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(352,585,l), +(508,730,l), +(347,730,l), +(237,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = s; +}, +{ +pos = (18,0); +ref = acutecomb; +} +); +width = 514; +} +); +unicode = 347; +}, +{ +color = 10; +glyphname = scaron; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(412,68,o), +(412,157,c), +(412,328,o), +(158,303,o), +(158,397,c), +(158,428,o), +(191,459,o), +(254,459,c), +(308,459,o), +(351,433,o), +(369,368,c), +(461,399,l), +(440,491,o), +(371,540,o), +(271,540,c), +(129,540,o), +(57,468,o), +(57,380,c), +(57,227,o), +(308,249,o), +(308,145,c), +(308,103,o), +(266,71,o), +(202,71,c), +(142,71,o), +(94,97,o), +(77,164,c), +(-17,134,l), +(-2,39,o), +(80,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(316,585,l), +(315,625,l), +(253,725,l), +(171,725,l), +(241,585,l) +); +}, +{ +closed = 1; +nodes = ( +(353,585,l), +(483,725,l), +(389,725,l), +(285,625,l), +(278,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (-3,0); +ref = caroncomb; +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(356,-14,o), +(450,66,o), +(450,167,c), +(450,349,o), +(192,316,o), +(192,389,c), +(192,410,o), +(210,429,o), +(262,429,c), +(310,429,o), +(331,408,o), +(344,362,c), +(488,404,l), +(468,494,o), +(397,544,o), +(284,544,c), +(133,544,o), +(43,458,o), +(43,368,c), +(43,190,o), +(292,226,o), +(292,147,c), +(292,124,o), +(275,102,o), +(217,102,c), +(169,102,o), +(140,127,o), +(126,183,c), +(-21,140,l), +(-8,38,o), +(71,-14,o), +(198,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(343,585,l), +(338,629,l), +(270,730,l), +(166,730,l), +(237,585,l) +); +}, +{ +closed = 1; +nodes = ( +(377,585,l), +(510,730,l), +(394,730,l), +(283,629,l), +(271,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = s; +}, +{ +pos = (8,0); +ref = caroncomb; +} +); +width = 514; +} +); +unicode = 353; +}, +{ +color = 10; +glyphname = scedilla; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(412,68,o), +(412,157,c), +(412,328,o), +(158,303,o), +(158,397,c), +(158,428,o), +(191,459,o), +(254,459,c), +(308,459,o), +(351,433,o), +(369,368,c), +(461,399,l), +(440,491,o), +(371,540,o), +(271,540,c), +(129,540,o), +(57,468,o), +(57,380,c), +(57,227,o), +(308,249,o), +(308,145,c), +(308,103,o), +(266,71,o), +(202,71,c), +(142,71,o), +(94,97,o), +(77,164,c), +(-17,134,l), +(-2,39,o), +(80,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(195,-185,o), +(239,-144,o), +(239,-96,c), +(239,-55,o), +(210,-29,o), +(169,-29,c), +(178,-43,l), +(195,9,l), +(139,11,l), +(108,-73,l), +(120,-71,o), +(127,-70,o), +(138,-70,c), +(160,-70,o), +(171,-79,o), +(171,-94,c), +(171,-108,o), +(157,-119,o), +(132,-119,c), +(112,-119,o), +(97,-114,o), +(81,-105,c), +(54,-169,l), +(77,-180,o), +(101,-185,o), +(127,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (-6,0); +ref = cedillacomb; +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(356,-14,o), +(450,66,o), +(450,167,c), +(450,349,o), +(192,316,o), +(192,389,c), +(192,410,o), +(210,429,o), +(262,429,c), +(310,429,o), +(331,408,o), +(344,362,c), +(488,404,l), +(468,494,o), +(397,544,o), +(284,544,c), +(133,544,o), +(43,458,o), +(43,368,c), +(43,190,o), +(292,226,o), +(292,147,c), +(292,124,o), +(275,102,o), +(217,102,c), +(169,102,o), +(140,127,o), +(126,183,c), +(-21,140,l), +(-8,38,o), +(71,-14,o), +(198,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(229,-190,o), +(268,-146,o), +(268,-97,c), +(268,-57,o), +(239,-29,o), +(189,-29,c), +(198,-43,l), +(215,9,l), +(147,11,l), +(114,-80,l), +(126,-76,o), +(136,-74,o), +(148,-74,c), +(168,-74,o), +(178,-80,o), +(178,-91,c), +(178,-103,o), +(167,-109,o), +(144,-109,c), +(124,-109,o), +(102,-105,o), +(83,-94,c), +(54,-174,l), +(79,-185,o), +(109,-190,o), +(137,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = s; +}, +{ +pos = (7,0); +ref = cedillacomb; +} +); +width = 514; +} +); +unicode = 351; +}, +{ +color = 10; +glyphname = scircumflex; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(412,68,o), +(412,157,c), +(412,328,o), +(158,303,o), +(158,397,c), +(158,428,o), +(191,459,o), +(254,459,c), +(308,459,o), +(351,433,o), +(369,368,c), +(461,399,l), +(440,491,o), +(371,540,o), +(271,540,c), +(129,540,o), +(57,468,o), +(57,380,c), +(57,227,o), +(308,249,o), +(308,145,c), +(308,103,o), +(266,71,o), +(202,71,c), +(142,71,o), +(94,97,o), +(77,164,c), +(-17,134,l), +(-2,39,o), +(80,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(235,585,l), +(339,685,l), +(346,725,l), +(271,725,l), +(141,585,l) +); +}, +{ +closed = 1; +nodes = ( +(453,585,l), +(383,725,l), +(308,725,l), +(309,685,l), +(371,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (-2,0); +ref = circumflexcomb; +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(356,-14,o), +(450,66,o), +(450,167,c), +(450,349,o), +(192,316,o), +(192,389,c), +(192,410,o), +(210,429,o), +(262,429,c), +(310,429,o), +(331,408,o), +(344,362,c), +(488,404,l), +(468,494,o), +(397,544,o), +(284,544,c), +(133,544,o), +(43,458,o), +(43,368,c), +(43,190,o), +(292,226,o), +(292,147,c), +(292,124,o), +(275,102,o), +(217,102,c), +(169,102,o), +(140,127,o), +(126,183,c), +(-21,140,l), +(-8,38,o), +(71,-14,o), +(198,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(251,585,l), +(362,686,l), +(374,730,l), +(268,730,l), +(135,585,l) +); +}, +{ +closed = 1; +nodes = ( +(479,585,l), +(408,730,l), +(302,730,l), +(307,686,l), +(375,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = s; +}, +{ +pos = (8,0); +ref = circumflexcomb; +} +); +width = 514; +} +); +unicode = 349; +}, +{ +color = 10; +glyphname = scommaaccent; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(412,68,o), +(412,157,c), +(412,328,o), +(158,303,o), +(158,397,c), +(158,428,o), +(191,459,o), +(254,459,c), +(308,459,o), +(351,433,o), +(369,368,c), +(461,399,l), +(440,491,o), +(371,540,o), +(271,540,c), +(129,540,o), +(57,468,o), +(57,380,c), +(57,227,o), +(308,249,o), +(308,145,c), +(308,103,o), +(266,71,o), +(202,71,c), +(142,71,o), +(94,97,o), +(77,164,c), +(-17,134,l), +(-2,39,o), +(80,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(131,-275,l), +(215,-72,l), +(111,-72,l), +(68,-275,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (-4,0); +ref = commaaccentcomb; +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(356,-14,o), +(450,66,o), +(450,167,c), +(450,349,o), +(192,316,o), +(192,389,c), +(192,410,o), +(210,429,o), +(262,429,c), +(310,429,o), +(331,408,o), +(344,362,c), +(488,404,l), +(468,494,o), +(397,544,o), +(284,544,c), +(133,544,o), +(43,458,o), +(43,368,c), +(43,190,o), +(292,226,o), +(292,147,c), +(292,124,o), +(275,102,o), +(217,102,c), +(169,102,o), +(140,127,o), +(126,183,c), +(-21,140,l), +(-8,38,o), +(71,-14,o), +(198,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(158,-270,l), +(246,-54,l), +(114,-54,l), +(68,-270,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = s; +}, +{ +pos = (10,0); +ref = commaaccentcomb; +} +); +width = 514; +} +); +unicode = 537; +}, +{ +color = 6; +glyphname = germandbls; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(421,-10,o), +(505,56,o), +(505,167,c), +(505,293,o), +(367,328,o), +(367,376,c), +(367,423,o), +(514,443,o), +(514,586,c), +(514,666,o), +(450,725,o), +(345,725,c), +(209,725,o), +(130,648,o), +(99,504,cs), +(-8,0,l), +(92,0,l), +(201,511,ls), +(217,585,o), +(262,636,o), +(332,636,c), +(388,636,o), +(415,613,o), +(415,575,cs), +(415,490,o), +(268,476,o), +(268,359,c), +(268,263,o), +(406,241,o), +(406,158,c), +(406,104,o), +(366,80,o), +(312,80,c), +(268,80,o), +(235,89,o), +(196,113,c), +(150,27,l), +(185,4,o), +(230,-10,o), +(289,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(421,-10,o), +(505,56,o), +(505,167,c), +(505,293,o), +(367,328,o), +(367,376,c), +(367,423,o), +(514,443,o), +(514,586,c), +(514,666,o), +(450,725,o), +(345,725,c), +(209,725,o), +(130,648,o), +(99,504,cs), +(-8,0,l), +(92,0,l), +(201,511,ls), +(217,585,o), +(262,636,o), +(332,636,c), +(388,636,o), +(415,613,o), +(415,575,cs), +(415,490,o), +(268,476,o), +(268,359,c), +(268,263,o), +(406,241,o), +(406,158,c), +(406,104,o), +(366,80,o), +(312,80,c), +(268,80,o), +(235,89,o), +(196,113,c), +(150,27,l), +(185,4,o), +(230,-10,o), +(289,-10,c) +); +} +); +width = 578; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(451,-14,o), +(535,71,o), +(535,166,c), +(535,290,o), +(417,322,o), +(417,368,c), +(417,432,o), +(534,422,o), +(534,570,c), +(534,661,o), +(467,729,o), +(358,729,c), +(213,729,o), +(118,650,o), +(84,491,c), +(-20,0,l), +(129,0,l), +(235,501,l), +(249,563,o), +(281,593,o), +(332,593,c), +(372,593,o), +(392,575,o), +(392,544,c), +(392,465,o), +(263,455,o), +(263,350,cs), +(263,268,o), +(389,245,o), +(389,166,c), +(389,125,o), +(360,102,o), +(311,102,c), +(280,102,o), +(250,115,o), +(224,136,c), +(152,29,l), +(190,4,o), +(240,-14,o), +(321,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,-14,o), +(535,71,o), +(535,166,c), +(535,290,o), +(417,322,o), +(417,368,c), +(417,432,o), +(534,422,o), +(534,570,c), +(534,661,o), +(467,729,o), +(358,729,c), +(213,729,o), +(118,650,o), +(84,491,c), +(-20,0,l), +(129,0,l), +(235,501,l), +(249,563,o), +(281,593,o), +(332,593,c), +(372,593,o), +(392,575,o), +(392,544,c), +(392,465,o), +(263,455,o), +(263,350,cs), +(263,268,o), +(389,245,o), +(389,166,c), +(389,125,o), +(360,102,o), +(311,102,c), +(280,102,o), +(250,115,o), +(224,136,c), +(152,29,l), +(190,4,o), +(240,-14,o), +(321,-14,c) +); +} +); +width = 592; +} +); +unicode = 223; +}, +{ +color = 6; +glyphname = t; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-22 13:33:20 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (152,0); +}, +{ +name = center; +pos = (186,265); +}, +{ +name = top; +pos = (270,660); +}, +{ +name = topright; +pos = (437,717); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (149,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(226,-10,o), +(251,-7,o), +(275,0,c), +(295,93,l), +(271,87,o), +(248,83,o), +(221,83,cs), +(175,83,o), +(150,99,o), +(150,139,cs), +(150,148,o), +(151,157,o), +(153,168,cs), +(257,660,l), +(153,640,l), +(55,180,ls), +(51,163,o), +(49,140,o), +(49,125,cs), +(49,52,o), +(91,-10,o), +(204,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(364,443,l), +(383,530,l), +(55,530,l), +(36,443,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(226,-10,o), +(251,-7,o), +(275,0,c), +(295,93,l), +(271,87,o), +(248,83,o), +(221,83,cs), +(175,83,o), +(150,99,o), +(150,139,cs), +(150,148,o), +(151,157,o), +(153,168,cs), +(257,660,l), +(153,640,l), +(55,180,ls), +(51,163,o), +(49,140,o), +(49,125,cs), +(49,52,o), +(91,-10,o), +(204,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(364,443,l), +(383,530,l), +(55,530,l), +(36,443,l) +); +} +); +width = 371; +}, +{ +anchors = ( +{ +name = bottom; +pos = (174,0); +}, +{ +name = center; +pos = (194,265); +}, +{ +name = top; +pos = (280,669); +}, +{ +name = topright; +pos = (453,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (170,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(239,-14,o), +(272,-9,o), +(300,0,c), +(328,133,l), +(306,126,o), +(285,121,o), +(261,121,c), +(216,121,o), +(194,136,o), +(194,171,cs), +(194,179,o), +(195,188,o), +(197,197,cs), +(297,669,l), +(142,640,l), +(50,207,ls), +(45,183,o), +(43,161,o), +(43,141,cs), +(43,41,o), +(103,-14,o), +(207,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(382,407,l), +(408,530,l), +(53,530,l), +(27,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,-14,o), +(272,-9,o), +(300,0,c), +(328,133,l), +(306,126,o), +(285,121,o), +(261,121,c), +(216,121,o), +(194,136,o), +(194,171,cs), +(194,179,o), +(195,188,o), +(197,197,cs), +(297,669,l), +(142,640,l), +(50,207,ls), +(45,183,o), +(43,161,o), +(43,141,cs), +(43,41,o), +(103,-14,o), +(207,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(382,407,l), +(408,530,l), +(53,530,l), +(27,407,l) +); +} +); +width = 387; +} +); +unicode = 116; +}, +{ +color = 6; +glyphname = tbar; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(221,-10,o), +(246,-7,o), +(270,0,c), +(290,93,l), +(266,87,o), +(243,83,o), +(216,83,cs), +(170,83,o), +(145,99,o), +(145,139,cs), +(145,148,o), +(146,157,o), +(148,168,cs), +(252,660,l), +(148,640,l), +(50,180,ls), +(46,163,o), +(44,140,o), +(44,125,cs), +(44,52,o), +(86,-10,o), +(199,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(324,277,l), +(342,363,l), +(14,363,l), +(-4,277,l) +); +}, +{ +closed = 1; +nodes = ( +(359,443,l), +(378,530,l), +(50,530,l), +(31,443,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(221,-10,o), +(246,-7,o), +(270,0,c), +(290,93,l), +(266,87,o), +(243,83,o), +(216,83,cs), +(170,83,o), +(145,99,o), +(145,139,cs), +(145,148,o), +(146,157,o), +(148,168,cs), +(252,660,l), +(148,640,l), +(50,180,ls), +(46,163,o), +(44,140,o), +(44,125,cs), +(44,52,o), +(86,-10,o), +(199,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(324,277,l), +(342,363,l), +(14,363,l), +(-4,277,l) +); +}, +{ +closed = 1; +nodes = ( +(359,443,l), +(378,530,l), +(50,530,l), +(31,443,l) +); +} +); +width = 366; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(234,-14,o), +(267,-9,o), +(295,0,c), +(323,133,l), +(301,126,o), +(280,121,o), +(256,121,c), +(211,121,o), +(189,136,o), +(189,171,cs), +(189,179,o), +(190,188,o), +(192,197,cs), +(292,669,l), +(137,640,l), +(45,207,ls), +(40,183,o), +(38,161,o), +(38,141,cs), +(38,41,o), +(98,-14,o), +(202,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(340,234,l), +(364,349,l), +(9,349,l), +(-15,234,l) +); +}, +{ +closed = 1; +nodes = ( +(377,407,l), +(403,530,l), +(48,530,l), +(22,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(234,-14,o), +(267,-9,o), +(295,0,c), +(323,133,l), +(301,126,o), +(280,121,o), +(256,121,c), +(211,121,o), +(189,136,o), +(189,171,cs), +(189,179,o), +(190,188,o), +(192,197,cs), +(292,669,l), +(137,640,l), +(45,207,ls), +(40,183,o), +(38,161,o), +(38,141,cs), +(38,41,o), +(98,-14,o), +(202,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(340,234,l), +(364,349,l), +(9,349,l), +(-15,234,l) +); +}, +{ +closed = 1; +nodes = ( +(377,407,l), +(403,530,l), +(48,530,l), +(22,407,l) +); +} +); +width = 382; +} +); +unicode = 359; +}, +{ +color = 10; +glyphname = tcaron; +kernLeft = t; +kernRight = tcaron; +lastChange = "2024-03-22 13:32:52 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(221,-10,o), +(246,-7,o), +(270,0,c), +(290,93,l), +(266,87,o), +(243,83,o), +(216,83,cs), +(170,83,o), +(145,99,o), +(145,139,cs), +(145,148,o), +(146,157,o), +(148,168,cs), +(252,660,l), +(148,640,l), +(50,180,ls), +(46,163,o), +(44,140,o), +(44,125,cs), +(44,52,o), +(86,-10,o), +(199,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(289,443,l), +(308,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(394,417,l), +(496,690,l), +(392,690,l), +(334,417,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = t; +}, +{ +pos = (175,2); +ref = caroncomb.alt; +} +); +width = 371; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,-14,o), +(268,-9,o), +(296,0,c), +(324,133,l), +(302,126,o), +(281,121,o), +(257,121,c), +(212,121,o), +(190,136,o), +(190,171,cs), +(190,179,o), +(191,188,o), +(193,197,cs), +(293,669,l), +(138,640,l), +(46,207,ls), +(41,183,o), +(39,161,o), +(39,141,cs), +(39,41,o), +(99,-14,o), +(203,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(308,407,l), +(334,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(435,383,l), +(563,690,l), +(413,690,l), +(347,383,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = t; +}, +{ +pos = (205,0); +ref = caroncomb.alt; +} +); +width = 387; +} +); +unicode = 357; +}, +{ +color = 10; +glyphname = tcedilla; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-21 14:47:13 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(226,-10,o), +(251,-7,o), +(275,0,c), +(295,93,l), +(271,87,o), +(248,83,o), +(221,83,cs), +(175,83,o), +(150,99,o), +(150,139,cs), +(150,148,o), +(151,157,o), +(153,168,cs), +(257,660,l), +(153,640,l), +(55,180,ls), +(51,163,o), +(49,140,o), +(49,125,cs), +(49,52,o), +(91,-10,o), +(204,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(171,-185,o), +(215,-144,o), +(215,-96,c), +(215,-55,o), +(186,-29,o), +(145,-29,c), +(154,-43,l), +(171,9,l), +(115,11,l), +(84,-73,l), +(96,-71,o), +(103,-70,o), +(114,-70,c), +(136,-70,o), +(147,-79,o), +(147,-94,c), +(147,-108,o), +(133,-119,o), +(108,-119,c), +(88,-119,o), +(73,-114,o), +(57,-105,c), +(30,-169,l), +(53,-180,o), +(77,-185,o), +(103,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(364,443,l), +(383,530,l), +(55,530,l), +(36,443,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = t; +}, +{ +pos = (-27,0); +ref = cedillacomb; +} +); +width = 371; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(239,-14,o), +(272,-9,o), +(300,0,c), +(328,133,l), +(306,126,o), +(285,121,o), +(261,121,c), +(216,121,o), +(194,136,o), +(194,171,cs), +(194,179,o), +(195,188,o), +(197,197,cs), +(297,669,l), +(142,640,l), +(50,207,ls), +(45,183,o), +(43,161,o), +(43,141,cs), +(43,41,o), +(103,-14,o), +(207,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(212,-190,o), +(251,-146,o), +(251,-97,c), +(251,-57,o), +(222,-29,o), +(172,-29,c), +(181,-43,l), +(198,9,l), +(130,11,l), +(97,-80,l), +(109,-76,o), +(119,-74,o), +(131,-74,c), +(151,-74,o), +(161,-80,o), +(161,-91,c), +(161,-103,o), +(150,-109,o), +(127,-109,c), +(107,-109,o), +(85,-105,o), +(66,-94,c), +(37,-174,l), +(62,-185,o), +(92,-190,o), +(120,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(382,407,l), +(408,530,l), +(53,530,l), +(27,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-6,0); +ref = cedillacomb; +} +); +width = 387; +} +); +unicode = 355; +}, +{ +color = 10; +glyphname = tcommaaccent; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-21 14:47:13 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(226,-10,o), +(251,-7,o), +(275,0,c), +(295,93,l), +(271,87,o), +(248,83,o), +(221,83,cs), +(175,83,o), +(150,99,o), +(150,139,cs), +(150,148,o), +(151,157,o), +(153,168,cs), +(257,660,l), +(153,640,l), +(55,180,ls), +(51,163,o), +(49,140,o), +(49,125,cs), +(49,52,o), +(91,-10,o), +(204,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(107,-275,l), +(191,-72,l), +(87,-72,l), +(44,-275,l) +); +}, +{ +closed = 1; +nodes = ( +(364,443,l), +(383,530,l), +(55,530,l), +(36,443,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = t; +}, +{ +pos = (-25,0); +ref = commaaccentcomb; +} +); +width = 371; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(239,-14,o), +(272,-9,o), +(300,0,c), +(328,133,l), +(306,126,o), +(285,121,o), +(261,121,c), +(216,121,o), +(194,136,o), +(194,171,cs), +(194,179,o), +(195,188,o), +(197,197,cs), +(297,669,l), +(142,640,l), +(50,207,ls), +(45,183,o), +(43,161,o), +(43,141,cs), +(43,41,o), +(103,-14,o), +(207,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(141,-270,l), +(229,-54,l), +(97,-54,l), +(51,-270,l) +); +}, +{ +closed = 1; +nodes = ( +(382,407,l), +(408,530,l), +(53,530,l), +(27,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-3,0); +ref = commaaccentcomb; +} +); +width = 387; +} +); +unicode = 539; +}, +{ +color = 6; +glyphname = u; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:04:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (212,0); +}, +{ +name = ogonek; +pos = (432,0); +}, +{ +name = top; +pos = (324.655,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (212,0); +}, +{ +name = top; +pos = (324.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +} +); +width = 569; +}, +{ +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = ogonek; +pos = (460,0); +}, +{ +name = top; +pos = (333,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = top; +pos = (333,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +} +); +width = 585; +} +); +unicode = 117; +}, +{ +color = 10; +glyphname = uacute; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(370,585,l), +(507,725,l), +(381,725,l), +(281,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (24,0); +ref = acutecomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(389,585,l), +(545,730,l), +(384,730,l), +(274,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (55,0); +ref = acutecomb; +} +); +width = 585; +} +); +unicode = 250; +}, +{ +color = 10; +glyphname = ubreve; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(441,585,o), +(488,639,o), +(506,725,c), +(436,725,l), +(428,684,o), +(397,660,o), +(350,660,c), +(312,660,o), +(294,677,o), +(294,707,cs), +(294,712,o), +(295,719,o), +(296,725,c), +(226,725,l), +(224,713,o), +(223,702,o), +(223,692,cs), +(223,629,o), +(269,585,o), +(346,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (36,0); +ref = brevecomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(459,585,o), +(505,639,o), +(524,730,c), +(433,730,l), +(426,693,o), +(398,671,o), +(361,671,c), +(330,671,o), +(315,686,o), +(315,713,cs), +(315,718,o), +(316,724,o), +(317,730,c), +(226,730,l), +(224,718,o), +(223,708,o), +(223,697,cs), +(223,626,o), +(273,585,o), +(354,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (45,0); +ref = brevecomb; +} +); +width = 585; +} +); +unicode = 365; +}, +{ +color = 10; +glyphname = ucircumflex; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(274,585,l), +(378,685,l), +(385,725,l), +(310,725,l), +(180,585,l) +); +}, +{ +closed = 1; +nodes = ( +(492,585,l), +(422,725,l), +(347,725,l), +(348,685,l), +(410,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (37,0); +ref = circumflexcomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(288,585,l), +(399,686,l), +(411,730,l), +(305,730,l), +(172,585,l) +); +}, +{ +closed = 1; +nodes = ( +(516,585,l), +(445,730,l), +(339,730,l), +(344,686,l), +(412,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (45,0); +ref = circumflexcomb; +} +); +width = 585; +} +); +unicode = 251; +}, +{ +color = 10; +glyphname = udieresis; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(291,602,o), +(317,627,o), +(317,662,c), +(317,694,o), +(296,715,o), +(265,715,c), +(230,715,o), +(205,690,o), +(205,653,c), +(205,623,o), +(226,602,o), +(256,602,c) +); +}, +{ +closed = 1; +nodes = ( +(473,602,o), +(499,627,o), +(499,662,c), +(499,694,o), +(478,715,o), +(447,715,c), +(412,715,o), +(387,690,o), +(387,653,c), +(387,623,o), +(408,602,o), +(438,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = dieresiscomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(299,588,o), +(333,618,o), +(333,664,c), +(333,703,o), +(308,728,o), +(267,728,c), +(225,728,o), +(191,698,o), +(191,652,c), +(191,613,o), +(216,588,o), +(257,588,c) +); +}, +{ +closed = 1; +nodes = ( +(495,588,o), +(529,618,o), +(529,664,c), +(529,703,o), +(504,728,o), +(463,728,c), +(421,728,o), +(387,698,o), +(387,652,c), +(387,613,o), +(412,588,o), +(453,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = dieresiscomb; +} +); +width = 585; +} +); +unicode = 252; +}, +{ +color = 10; +glyphname = udotbelow; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(216,-195,o), +(244,-168,o), +(244,-130,c), +(244,-95,o), +(221,-72,o), +(187,-72,c), +(149,-72,o), +(122,-99,o), +(122,-140,c), +(122,-172,o), +(145,-195,o), +(178,-195,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (36,0); +ref = dotbelow; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(234,-198,o), +(270,-166,o), +(270,-117,c), +(270,-75,o), +(243,-48,o), +(199,-48,c), +(154,-48,o), +(118,-80,o), +(118,-130,c), +(118,-171,o), +(145,-198,o), +(189,-198,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = dotbelow; +} +); +width = 585; +} +); +unicode = 7909; +}, +{ +color = 10; +glyphname = ugrave; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:48:12 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(386,585,l), +(346,725,l), +(225,725,l), +(305,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = gravecomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(407,585,l), +(358,730,l), +(208,730,l), +(305,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (97,0); +ref = gravecomb; +} +); +width = 585; +} +); +unicode = 249; +}, +{ +color = 10; +glyphname = uhungarumlaut; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:48:20 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(314,585,l), +(414,725,l), +(311,725,l), +(231,585,l) +); +}, +{ +closed = 1; +nodes = ( +(446,585,l), +(576,725,l), +(463,725,l), +(363,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (36,0); +ref = hungarumlautcomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(332,585,l), +(447,730,l), +(307,730,l), +(225,585,l) +); +}, +{ +closed = 1; +nodes = ( +(469,585,l), +(625,730,l), +(478,730,l), +(363,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (45,0); +ref = hungarumlautcomb; +} +); +width = 585; +} +); +unicode = 369; +}, +{ +color = 10; +glyphname = umacron; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(482,621,l), +(500,705,l), +(224,705,l), +(206,621,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = macroncomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(495,603,l), +(520,718,l), +(226,718,l), +(201,603,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (44,0); +ref = macroncomb; +} +); +width = 585; +} +); +unicode = 363; +}, +{ +color = 10; +glyphname = uogonek; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:04:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(338,-185,o), +(375,-176,o), +(397,-165,c), +(405,-84,l), +(380,-96,o), +(349,-106,o), +(323,-106,c), +(312,-106,o), +(306,-101,o), +(306,-93,cs), +(306,-72,o), +(343,-38,o), +(432,0,c), +(332,0,l), +(247,-35,o), +(218,-74,o), +(218,-118,c), +(218,-155,o), +(244,-185,o), +(306,-185,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (202,0); +ref = ogonekcomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(358,-190,o), +(393,-183,o), +(424,-170,c), +(435,-75,l), +(413,-87,o), +(385,-96,o), +(366,-96,c), +(353,-96,o), +(346,-90,o), +(346,-82,cs), +(346,-65,o), +(371,-36,o), +(460,0,c), +(355,0,l), +(262,-36,o), +(231,-82,o), +(231,-121,c), +(231,-158,o), +(261,-190,o), +(330,-190,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (194,0); +ref = ogonekcomb; +} +); +width = 585; +} +); +unicode = 371; +}, +{ +color = 10; +glyphname = uring; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(406,575,o), +(450,622,o), +(450,680,c), +(450,728,o), +(416,758,o), +(366,758,c), +(301,758,o), +(257,711,o), +(257,653,c), +(257,605,o), +(291,575,o), +(341,575,c) +); +}, +{ +closed = 1; +nodes = ( +(328,630,o), +(319,641,o), +(319,658,c), +(319,681,o), +(336,703,o), +(360,703,c), +(379,703,o), +(388,692,o), +(388,675,c), +(388,652,o), +(371,630,o), +(347,630,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (37,0); +ref = ringcomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(422,575,o), +(469,624,o), +(469,682,c), +(469,733,o), +(432,768,o), +(373,768,c), +(303,768,o), +(256,719,o), +(256,661,c), +(256,610,o), +(293,575,o), +(352,575,c) +); +}, +{ +closed = 1; +nodes = ( +(339,640,o), +(331,651,o), +(331,666,c), +(331,685,o), +(345,703,o), +(367,703,c), +(386,703,o), +(394,692,o), +(394,677,c), +(394,658,o), +(380,640,o), +(358,640,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (44,0); +ref = ringcomb; +} +); +width = 585; +} +); +unicode = 367; +}, +{ +color = 10; +glyphname = utilde; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(382,79,o), +(412,221,c), +(369,172,l), +(332,0,l), +(432,0,l), +(545,530,l), +(445,530,l), +(379,221,ls), +(359,127,o), +(296,76,o), +(229,76,c), +(169,76,o), +(134,112,o), +(134,179,cs), +(134,192,o), +(136,206,o), +(139,221,cs), +(205,530,l), +(105,530,l), +(38,217,ls), +(35,202,o), +(32,179,o), +(32,161,cs), +(32,61,o), +(89,-10,o), +(186,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(257,585,l), +(261,624,o), +(270,642,o), +(295,642,c), +(327,642,o), +(343,585,o), +(404,585,c), +(467,585,o), +(501,639,o), +(513,725,c), +(445,725,l), +(442,686,o), +(432,668,o), +(407,668,c), +(376,668,o), +(359,725,o), +(298,725,c), +(235,725,o), +(202,671,o), +(189,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (36,0); +ref = tildecomb; +} +); +width = 569; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-14,o), +(353,73,o), +(385,226,c), +(351,190,l), +(311,0,l), +(460,0,l), +(573,530,l), +(424,530,l), +(359,226,ls), +(344,155,o), +(298,117,o), +(245,117,c), +(201,117,o), +(173,143,o), +(173,192,cs), +(173,202,o), +(174,212,o), +(177,226,cs), +(242,530,l), +(93,530,l), +(26,218,ls), +(21,195,o), +(19,174,o), +(19,153,cs), +(19,55,o), +(78,-14,o), +(169,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(269,585,l), +(270,612,o), +(285,624,o), +(304,624,c), +(338,624,o), +(353,585,o), +(411,585,c), +(473,585,o), +(520,641,o), +(534,730,c), +(450,730,l), +(449,702,o), +(435,690,o), +(416,690,c), +(384,690,o), +(366,730,o), +(308,730,c), +(245,730,o), +(198,674,o), +(185,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = u; +}, +{ +pos = (44,0); +ref = tildecomb; +} +); +width = 585; +} +); +unicode = 361; +}, +{ +color = 6; +glyphname = v; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(541,530,l), +(434,530,l), +(160,0,l) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,l), +(541,530,l), +(434,530,l), +(160,0,l) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +} +); +width = 508; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(318,0,l), +(578,530,l), +(411,530,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,0,l), +(578,530,l), +(411,530,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +} +); +width = 542; +} +); +unicode = 118; +}, +{ +color = 6; +glyphname = w; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 14:49:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (328,0); +}, +{ +name = top; +pos = (440,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (328,0); +}, +{ +name = top; +pos = (440,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(150,530,l), +(51,530,l), +(68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(212,0,l), +(448,530,l), +(357,530,l), +(122,0,l) +); +}, +{ +closed = 1; +nodes = ( +(504,0,l), +(490,530,l), +(402,530,l), +(412,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(799,530,l), +(696,530,l), +(466,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(212,0,l), +(404,431,l), +(412,0,l), +(556,0,l), +(799,530,l), +(696,530,l), +(502,83,l), +(490,530,l), +(357,530,l), +(158,82,l), +(150,530,l), +(51,530,l), +(68,0,l) +); +} +); +width = 768; +}, +{ +anchors = ( +{ +name = bottom; +pos = (363,0); +}, +{ +name = top; +pos = (461,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (363,0); +}, +{ +name = top; +pos = (475,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(653,0,l), +(868,530,l), +(713,530,l), +(521,0,l) +); +}, +{ +closed = 1; +nodes = ( +(172,0,l), +(199,530,l), +(51,530,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,0,l), +(477,530,l), +(342,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(552,0,l), +(572,530,l), +(441,530,l), +(419,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(275,0,l), +(437,424,l), +(419,0,l), +(653,0,l), +(868,530,l), +(713,530,l), +(556,96,l), +(572,530,l), +(342,530,l), +(177,94,l), +(199,530,l), +(51,530,l), +(40,0,l) +); +} +); +width = 837; +} +); +unicode = 119; +}, +{ +color = 10; +glyphname = wacute; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(150,530,l), +(51,530,l), +(68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(212,0,l), +(448,530,l), +(357,530,l), +(122,0,l) +); +}, +{ +closed = 1; +nodes = ( +(504,0,l), +(490,530,l), +(402,530,l), +(412,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(799,530,l), +(696,530,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(471,585,l), +(608,725,l), +(482,725,l), +(382,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (139,0); +ref = acutecomb; +} +); +width = 768; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(653,0,l), +(868,530,l), +(713,530,l), +(521,0,l) +); +}, +{ +closed = 1; +nodes = ( +(172,0,l), +(199,530,l), +(51,530,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,0,l), +(477,530,l), +(342,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(552,0,l), +(572,530,l), +(441,530,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,585,l), +(672,730,l), +(511,730,l), +(401,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = w; +}, +{ +pos = (183,0); +ref = acutecomb; +} +); +width = 837; +} +); +unicode = 7811; +}, +{ +color = 10; +glyphname = wcircumflex; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 14:49:28 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(150,530,l), +(51,530,l), +(68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(212,0,l), +(448,530,l), +(357,530,l), +(122,0,l) +); +}, +{ +closed = 1; +nodes = ( +(504,0,l), +(490,530,l), +(402,530,l), +(412,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(799,530,l), +(696,530,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(375,585,l), +(479,685,l), +(486,725,l), +(411,725,l), +(281,585,l) +); +}, +{ +closed = 1; +nodes = ( +(593,585,l), +(523,725,l), +(448,725,l), +(449,685,l), +(511,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (152,0); +ref = circumflexcomb; +} +); +width = 768; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(653,0,l), +(868,530,l), +(713,530,l), +(521,0,l) +); +}, +{ +closed = 1; +nodes = ( +(172,0,l), +(199,530,l), +(51,530,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,0,l), +(477,530,l), +(342,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(552,0,l), +(572,530,l), +(441,530,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(415,585,l), +(526,686,l), +(538,730,l), +(432,730,l), +(299,585,l) +); +}, +{ +closed = 1; +nodes = ( +(643,585,l), +(572,730,l), +(466,730,l), +(471,686,l), +(539,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = w; +}, +{ +pos = (173,0); +ref = circumflexcomb; +} +); +width = 837; +} +); +unicode = 373; +}, +{ +color = 10; +glyphname = wdieresis; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 14:49:28 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(150,530,l), +(51,530,l), +(68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(212,0,l), +(448,530,l), +(357,530,l), +(122,0,l) +); +}, +{ +closed = 1; +nodes = ( +(504,0,l), +(490,530,l), +(402,530,l), +(412,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(799,530,l), +(696,530,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(392,602,o), +(418,627,o), +(418,662,c), +(418,694,o), +(397,715,o), +(366,715,c), +(331,715,o), +(306,690,o), +(306,653,c), +(306,623,o), +(327,602,o), +(357,602,c) +); +}, +{ +closed = 1; +nodes = ( +(574,602,o), +(600,627,o), +(600,662,c), +(600,694,o), +(579,715,o), +(548,715,c), +(513,715,o), +(488,690,o), +(488,653,c), +(488,623,o), +(509,602,o), +(539,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (150,0); +ref = dieresiscomb; +} +); +width = 768; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(653,0,l), +(868,530,l), +(713,530,l), +(521,0,l) +); +}, +{ +closed = 1; +nodes = ( +(172,0,l), +(199,530,l), +(51,530,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,0,l), +(477,530,l), +(342,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(552,0,l), +(572,530,l), +(441,530,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(426,588,o), +(460,618,o), +(460,664,c), +(460,703,o), +(435,728,o), +(394,728,c), +(352,728,o), +(318,698,o), +(318,652,c), +(318,613,o), +(343,588,o), +(384,588,c) +); +}, +{ +closed = 1; +nodes = ( +(622,588,o), +(656,618,o), +(656,664,c), +(656,703,o), +(631,728,o), +(590,728,c), +(548,728,o), +(514,698,o), +(514,652,c), +(514,613,o), +(539,588,o), +(580,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = w; +}, +{ +pos = (171,0); +ref = dieresiscomb; +} +); +width = 837; +} +); +unicode = 7813; +}, +{ +color = 10; +glyphname = wgrave; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 14:49:28 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(150,530,l), +(51,530,l), +(68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(212,0,l), +(448,530,l), +(357,530,l), +(122,0,l) +); +}, +{ +closed = 1; +nodes = ( +(504,0,l), +(490,530,l), +(402,530,l), +(412,0,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(799,530,l), +(696,530,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(487,585,l), +(447,725,l), +(326,725,l), +(406,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (150,0); +ref = gravecomb; +} +); +width = 768; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(653,0,l), +(868,530,l), +(713,530,l), +(521,0,l) +); +}, +{ +closed = 1; +nodes = ( +(172,0,l), +(199,530,l), +(51,530,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(275,0,l), +(477,530,l), +(342,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(552,0,l), +(572,530,l), +(441,530,l), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(534,585,l), +(485,730,l), +(335,730,l), +(432,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = w; +}, +{ +pos = (225,0); +ref = gravecomb; +} +); +width = 837; +} +); +unicode = 7809; +}, +{ +color = 6; +glyphname = x; +kernLeft = x; +kernRight = x; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(63,0,l), +(239,217,l), +(278,249,l), +(521,530,l), +(401,530,l), +(238,328,l), +(198,296,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(418,0,l), +(171,530,l), +(65,530,l), +(312,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(63,0,l), +(239,217,l), +(278,249,l), +(521,530,l), +(401,530,l), +(238,328,l), +(198,296,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(418,0,l), +(171,530,l), +(65,530,l), +(312,0,l) +); +} +); +width = 506; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(106,0,l), +(259,206,l), +(309,248,l), +(547,530,l), +(373,530,l), +(233,340,l), +(182,297,l), +(-68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(444,0,l), +(211,530,l), +(55,530,l), +(288,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,0,l), +(259,206,l), +(309,248,l), +(547,530,l), +(373,530,l), +(233,340,l), +(182,297,l), +(-68,0,l) +); +}, +{ +closed = 1; +nodes = ( +(444,0,l), +(211,530,l), +(55,530,l), +(288,0,l) +); +} +); +width = 522; +} +); +unicode = 120; +}, +{ +color = 6; +glyphname = y; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (297.655,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (297.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +} +); +width = 508; +}, +{ +anchors = ( +{ +name = top; +pos = (315.655,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (315.655,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +} +); +width = 542; +} +); +unicode = 121; +}, +{ +color = 10; +glyphname = yacute; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(343,585,l), +(480,725,l), +(354,725,l), +(254,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (-3,0); +ref = acutecomb; +} +); +width = 508; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(372,585,l), +(528,730,l), +(367,730,l), +(257,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = y; +}, +{ +pos = (38,0); +ref = acutecomb; +} +); +width = 542; +} +); +unicode = 253; +}, +{ +color = 10; +glyphname = ycircumflex; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(247,585,l), +(351,685,l), +(358,725,l), +(283,725,l), +(153,585,l) +); +}, +{ +closed = 1; +nodes = ( +(465,585,l), +(395,725,l), +(320,725,l), +(321,685,l), +(383,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (10,0); +ref = circumflexcomb; +} +); +width = 508; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(271,585,l), +(382,686,l), +(394,730,l), +(288,730,l), +(155,585,l) +); +}, +{ +closed = 1; +nodes = ( +(499,585,l), +(428,730,l), +(322,730,l), +(327,686,l), +(395,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = y; +}, +{ +pos = (28,0); +ref = circumflexcomb; +} +); +width = 542; +} +); +unicode = 375; +}, +{ +color = 10; +glyphname = ydieresis; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(264,602,o), +(290,627,o), +(290,662,c), +(290,694,o), +(269,715,o), +(238,715,c), +(203,715,o), +(178,690,o), +(178,653,c), +(178,623,o), +(199,602,o), +(229,602,c) +); +}, +{ +closed = 1; +nodes = ( +(446,602,o), +(472,627,o), +(472,662,c), +(472,694,o), +(451,715,o), +(420,715,c), +(385,715,o), +(360,690,o), +(360,653,c), +(360,623,o), +(381,602,o), +(411,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = dieresiscomb; +} +); +width = 508; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(282,588,o), +(316,618,o), +(316,664,c), +(316,703,o), +(291,728,o), +(250,728,c), +(208,728,o), +(174,698,o), +(174,652,c), +(174,613,o), +(199,588,o), +(240,588,c) +); +}, +{ +closed = 1; +nodes = ( +(478,588,o), +(512,618,o), +(512,664,c), +(512,703,o), +(487,728,o), +(446,728,c), +(404,728,o), +(370,698,o), +(370,652,c), +(370,613,o), +(395,588,o), +(436,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = y; +}, +{ +pos = (26,0); +ref = dieresiscomb; +} +); +width = 542; +} +); +unicode = 255; +}, +{ +color = 10; +glyphname = ygrave; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:48:12 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(359,585,l), +(319,725,l), +(198,725,l), +(278,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = gravecomb; +} +); +width = 508; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(390,585,l), +(341,730,l), +(191,730,l), +(288,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = y; +}, +{ +pos = (80,0); +ref = gravecomb; +} +); +width = 542; +} +); +unicode = 7923; +}, +{ +color = 10; +glyphname = ymacron; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(455,621,l), +(473,705,l), +(197,705,l), +(179,621,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = macroncomb; +} +); +width = 508; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,603,l), +(503,718,l), +(209,718,l), +(184,603,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = y; +}, +{ +pos = (27,0); +ref = macroncomb; +} +); +width = 542; +} +); +unicode = 563; +}, +{ +color = 10; +glyphname = ytilde; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(119,-185,o), +(179,-151,o), +(259,0,cs), +(541,530,l), +(434,530,l), +(160,0,l), +(119,-72,o), +(84,-95,o), +(27,-95,c), +(4,-95,o), +(-18,-90,o), +(-41,-80,c), +(-60,-170,l), +(-31,-180,o), +(-6,-185,o), +(29,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(200,0,l), +(148,530,l), +(49,530,l), +(105,0,l) +); +}, +{ +closed = 1; +nodes = ( +(230,585,l), +(234,624,o), +(243,642,o), +(268,642,c), +(300,642,o), +(316,585,o), +(377,585,c), +(440,585,o), +(474,639,o), +(486,725,c), +(418,725,l), +(415,686,o), +(405,668,o), +(380,668,c), +(349,668,o), +(332,725,o), +(271,725,c), +(208,725,o), +(175,671,o), +(162,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (9,0); +ref = tildecomb; +} +); +width = 508; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,-190,o), +(241,-156,o), +(318,0,cs), +(578,530,l), +(411,530,l), +(172,0,ls), +(155,-38,o), +(125,-59,o), +(64,-59,c), +(27,-59,o), +(-5,-50,o), +(-31,-38,c), +(-58,-167,l), +(-24,-182,o), +(15,-190,o), +(64,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(221,0,l), +(202,530,l), +(46,530,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(252,585,l), +(253,612,o), +(268,624,o), +(287,624,c), +(321,624,o), +(336,585,o), +(394,585,c), +(456,585,o), +(503,641,o), +(517,730,c), +(433,730,l), +(432,702,o), +(418,690,o), +(399,690,c), +(367,690,o), +(349,730,o), +(291,730,c), +(228,730,o), +(181,674,o), +(168,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = y; +}, +{ +pos = (27,0); +ref = tildecomb; +} +); +width = 542; +} +); +unicode = 7929; +}, +{ +color = 6; +glyphname = z; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (188,0); +}, +{ +name = center; +pos = (244,265); +}, +{ +name = top; +pos = (300,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (188,0); +}, +{ +name = center; +pos = (244,265); +}, +{ +name = top; +pos = (300,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(100,52,l), +(469,478,l), +(344,478,l), +(-25,52,l) +); +}, +{ +closed = 1; +nodes = ( +(377,0,l), +(395,87,l), +(22,87,l), +(-25,52,l), +(-36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(421,443,l), +(469,478,l), +(480,530,l), +(87,530,l), +(68,443,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(377,0,l), +(395,87,l), +(130,87,l), +(469,478,l), +(480,530,l), +(87,530,l), +(68,443,l), +(314,443,l), +(-25,52,l), +(-36,0,l) +); +} +); +width = 487; +}, +{ +anchors = ( +{ +name = bottom; +pos = (194,0); +}, +{ +name = center; +pos = (250,265); +}, +{ +name = top; +pos = (306,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (194,0); +}, +{ +name = center; +pos = (250,265); +}, +{ +name = top; +pos = (306,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(480,433,l), +(300,442,l), +(-24,97,l), +(156,88,l) +); +}, +{ +closed = 1; +nodes = ( +(398,0,l), +(424,123,l), +(21,123,l), +(-24,97,l), +(-45,0,l) +); +}, +{ +closed = 1; +nodes = ( +(435,407,l), +(480,433,l), +(501,530,l), +(78,530,l), +(52,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(398,0,l), +(424,123,l), +(189,123,l), +(480,433,l), +(501,530,l), +(78,530,l), +(52,407,l), +(267,407,l), +(-24,97,l), +(-45,0,l) +); +} +); +width = 499; +} +); +unicode = 122; +}, +{ +color = 10; +glyphname = zacute; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(100,52,l), +(469,478,l), +(344,478,l), +(-25,52,l) +); +}, +{ +closed = 1; +nodes = ( +(377,0,l), +(395,87,l), +(22,87,l), +(-25,52,l), +(-36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(421,443,l), +(469,478,l), +(480,530,l), +(87,530,l), +(68,443,l) +); +}, +{ +closed = 1; +nodes = ( +(336,585,l), +(473,725,l), +(347,725,l), +(247,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = z; +}, +{ +pos = (-1,0); +ref = acutecomb; +} +); +width = 487; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(480,433,l), +(300,442,l), +(-24,97,l), +(156,88,l) +); +}, +{ +closed = 1; +nodes = ( +(398,0,l), +(424,123,l), +(21,123,l), +(-24,97,l), +(-45,0,l) +); +}, +{ +closed = 1; +nodes = ( +(435,407,l), +(480,433,l), +(501,530,l), +(78,530,l), +(52,407,l) +); +}, +{ +closed = 1; +nodes = ( +(345,585,l), +(501,730,l), +(340,730,l), +(230,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = z; +}, +{ +pos = (28,0); +ref = acutecomb; +} +); +width = 499; +} +); +unicode = 378; +}, +{ +color = 10; +glyphname = zcaron; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(100,52,l), +(469,478,l), +(344,478,l), +(-25,52,l) +); +}, +{ +closed = 1; +nodes = ( +(377,0,l), +(395,87,l), +(22,87,l), +(-25,52,l), +(-36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(421,443,l), +(469,478,l), +(480,530,l), +(87,530,l), +(68,443,l) +); +}, +{ +closed = 1; +nodes = ( +(321,585,l), +(320,625,l), +(258,725,l), +(176,725,l), +(246,585,l) +); +}, +{ +closed = 1; +nodes = ( +(358,585,l), +(488,725,l), +(394,725,l), +(290,625,l), +(283,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = z; +}, +{ +pos = (11,0); +ref = caroncomb; +} +); +width = 487; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(480,433,l), +(300,442,l), +(-24,97,l), +(156,88,l) +); +}, +{ +closed = 1; +nodes = ( +(398,0,l), +(424,123,l), +(21,123,l), +(-24,97,l), +(-45,0,l) +); +}, +{ +closed = 1; +nodes = ( +(435,407,l), +(480,433,l), +(501,530,l), +(78,530,l), +(52,407,l) +); +}, +{ +closed = 1; +nodes = ( +(336,585,l), +(331,629,l), +(263,730,l), +(159,730,l), +(230,585,l) +); +}, +{ +closed = 1; +nodes = ( +(370,585,l), +(503,730,l), +(387,730,l), +(276,629,l), +(264,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = z; +}, +{ +pos = (18,0); +ref = caroncomb; +} +); +width = 499; +} +); +unicode = 382; +}, +{ +color = 10; +glyphname = zdotaccent; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(100,52,l), +(469,478,l), +(344,478,l), +(-25,52,l) +); +}, +{ +closed = 1; +nodes = ( +(377,0,l), +(395,87,l), +(22,87,l), +(-25,52,l), +(-36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(421,443,l), +(469,478,l), +(480,530,l), +(87,530,l), +(68,443,l) +); +}, +{ +closed = 1; +nodes = ( +(352,602,o), +(380,629,o), +(380,667,c), +(380,702,o), +(357,725,o), +(323,725,c), +(285,725,o), +(258,698,o), +(258,657,c), +(258,625,o), +(281,602,o), +(314,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = z; +}, +{ +pos = (10,0); +ref = dotaccentcomb; +} +); +width = 487; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(480,433,l), +(300,442,l), +(-24,97,l), +(156,88,l) +); +}, +{ +closed = 1; +nodes = ( +(398,0,l), +(424,123,l), +(21,123,l), +(-24,97,l), +(-45,0,l) +); +}, +{ +closed = 1; +nodes = ( +(435,407,l), +(480,433,l), +(501,530,l), +(78,530,l), +(52,407,l) +); +}, +{ +closed = 1; +nodes = ( +(357,588,o), +(393,620,o), +(393,669,c), +(393,711,o), +(366,738,o), +(322,738,c), +(277,738,o), +(241,706,o), +(241,656,c), +(241,615,o), +(268,588,o), +(312,588,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = z; +}, +{ +pos = (16,0); +ref = dotaccentcomb; +} +); +width = 499; +} +); +unicode = 380; +}, +{ +color = 6; +glyphname = i.trk; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(206,530,l), +(106,530,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,602,o), +(245,629,o), +(245,668,c), +(245,702,o), +(222,725,o), +(188,725,c), +(150,725,o), +(123,698,o), +(123,658,c), +(123,625,o), +(146,602,o), +(180,602,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(206,530,l), +(106,530,l), +(-7,0,l) +); +}, +{ +closed = 1; +nodes = ( +(218,602,o), +(245,629,o), +(245,668,c), +(245,702,o), +(222,725,o), +(188,725,c), +(150,725,o), +(123,698,o), +(123,658,c), +(123,625,o), +(146,602,o), +(180,602,c) +); +} +); +width = 231; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(244,530,l), +(95,530,l), +(-18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(245,580,o), +(287,617,o), +(287,675,c), +(287,723,o), +(256,755,o), +(204,755,c), +(152,755,o), +(110,717,o), +(110,659,c), +(110,611,o), +(141,580,o), +(192,580,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(131,0,l), +(244,530,l), +(95,530,l), +(-18,0,l) +); +}, +{ +closed = 1; +nodes = ( +(245,580,o), +(287,617,o), +(287,675,c), +(287,723,o), +(256,755,o), +(204,755,c), +(152,755,o), +(110,717,o), +(110,659,c), +(110,611,o), +(141,580,o), +(192,580,c) +); +} +); +width = 257; +} +); +}, +{ +color = 6; +glyphname = f_f; +kernLeft = f; +kernRight = f; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (331,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(432,0,l), +(550,557,ls), +(561,610,o), +(592,636,o), +(640,636,c), +(663,636,o), +(683,630,o), +(703,621,c), +(721,708,l), +(695,718,o), +(667,725,o), +(635,725,c), +(541,725,o), +(476,678,o), +(451,561,cs), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(660,443,l), +(679,530,l), +(50,530,l), +(31,443,l) +); +} +); +width = 662; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (344.5,0); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(602,541,ls), +(611,582,o), +(637,603,o), +(678,603,c), +(706,603,o), +(730,597,o), +(751,589,c), +(777,712,l), +(748,723,o), +(708,729,o), +(668,729,c), +(565,729,o), +(483,683,o), +(456,554,cs), +(338,0,l) +); +}, +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(707,407,l), +(733,530,l), +(49,530,l), +(23,407,l) +); +} +); +width = 689; +} +); +}, +{ +color = 6; +glyphname = f_f_i; +kernLeft = f; +kernRight = i; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (296.667,0); +}, +{ +name = caret_2; +pos = (593.333,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(432,0,l), +(550,557,ls), +(561,610,o), +(592,636,o), +(640,636,c), +(663,636,o), +(683,630,o), +(703,621,c), +(721,708,l), +(695,718,o), +(667,725,o), +(635,725,c), +(541,725,o), +(476,678,o), +(451,561,cs), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(794,443,l), +(813,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(752,0,l), +(865,530,l), +(765,530,l), +(652,0,l) +); +}, +{ +closed = 1; +nodes = ( +(877,602,o), +(904,629,o), +(904,668,c), +(904,702,o), +(881,725,o), +(847,725,c), +(809,725,o), +(782,698,o), +(782,658,c), +(782,625,o), +(805,602,o), +(839,602,c) +); +} +); +width = 890; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (316,0); +}, +{ +name = caret_2; +pos = (632,0); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(602,541,ls), +(611,582,o), +(637,603,o), +(678,603,c), +(706,603,o), +(730,597,o), +(751,589,c), +(777,712,l), +(748,723,o), +(708,729,o), +(668,729,c), +(565,729,o), +(483,683,o), +(456,554,cs), +(338,0,l) +); +}, +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(787,407,l), +(813,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(823,0,l), +(936,530,l), +(787,530,l), +(674,0,l) +); +}, +{ +closed = 1; +nodes = ( +(937,580,o), +(979,617,o), +(979,675,c), +(979,723,o), +(948,755,o), +(896,755,c), +(844,755,o), +(802,717,o), +(802,659,c), +(802,611,o), +(833,580,o), +(884,580,c) +); +} +); +width = 948; +} +); +}, +{ +color = 6; +glyphname = f_f_ij; +kernLeft = f; +kernRight = q; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (131,0); +}, +{ +name = bottom_2; +pos = (504,0); +}, +{ +name = bottom_3; +pos = (877,0); +}, +{ +name = caret_1; +pos = (373.333,0); +}, +{ +name = caret_2; +pos = (746.667,0); +}, +{ +name = top_1; +pos = (283,715); +}, +{ +name = top_2; +pos = (656,715); +}, +{ +name = top_3; +pos = (1029,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(432,0,l), +(550,557,ls), +(561,610,o), +(592,636,o), +(640,636,c), +(663,636,o), +(683,630,o), +(703,621,c), +(721,708,l), +(695,718,o), +(667,725,o), +(635,725,c), +(541,725,o), +(476,678,o), +(451,561,cs), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(794,443,l), +(813,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(752,0,l), +(865,530,l), +(765,530,l), +(652,0,l) +); +}, +{ +closed = 1; +nodes = ( +(887,-185,o), +(953,-138,o), +(978,-21,cs), +(1095,530,l), +(995,530,l), +(878,-17,ls), +(867,-70,o), +(834,-94,o), +(789,-94,c), +(766,-94,o), +(746,-88,o), +(726,-79,c), +(707,-168,l), +(733,-178,o), +(761,-185,o), +(793,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(877,602,o), +(904,629,o), +(904,668,c), +(904,702,o), +(881,725,o), +(847,725,c), +(809,725,o), +(782,698,o), +(782,658,c), +(782,625,o), +(805,602,o), +(839,602,c) +); +}, +{ +closed = 1; +nodes = ( +(1107,602,o), +(1134,629,o), +(1134,668,c), +(1134,702,o), +(1111,725,o), +(1077,725,c), +(1039,725,o), +(1012,698,o), +(1012,658,c), +(1012,625,o), +(1035,602,o), +(1069,602,c) +); +} +); +width = 1120; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (145,0); +}, +{ +name = bottom_2; +pos = (546,0); +}, +{ +name = bottom_3; +pos = (947,0); +}, +{ +name = caret_1; +pos = (401,0); +}, +{ +name = caret_2; +pos = (802,0); +}, +{ +name = top_1; +pos = (297,715); +}, +{ +name = top_2; +pos = (698,715); +}, +{ +name = top_3; +pos = (1099,715); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(602,541,ls), +(611,582,o), +(637,603,o), +(678,603,c), +(706,603,o), +(730,597,o), +(751,589,c), +(777,712,l), +(748,723,o), +(708,729,o), +(668,729,c), +(565,729,o), +(483,683,o), +(456,554,cs), +(338,0,l) +); +}, +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(787,407,l), +(813,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(823,0,l), +(936,530,l), +(787,530,l), +(674,0,l) +); +}, +{ +closed = 1; +nodes = ( +(968,-189,o), +(1047,-143,o), +(1074,-14,cs), +(1190,530,l), +(1041,530,l), +(930,9,ls), +(921,-32,o), +(897,-54,o), +(856,-54,c), +(831,-54,o), +(809,-49,o), +(789,-41,c), +(761,-172,l), +(786,-183,o), +(825,-189,o), +(865,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(937,580,o), +(979,617,o), +(979,675,c), +(979,723,o), +(948,755,o), +(896,755,c), +(844,755,o), +(802,717,o), +(802,659,c), +(802,611,o), +(833,580,o), +(884,580,c) +); +}, +{ +closed = 1; +nodes = ( +(1191,580,o), +(1233,617,o), +(1233,675,c), +(1233,723,o), +(1202,755,o), +(1150,755,c), +(1098,755,o), +(1056,717,o), +(1056,659,c), +(1056,611,o), +(1087,580,o), +(1138,580,c) +); +} +); +width = 1203; +} +); +}, +{ +color = 6; +glyphname = f_f_l; +kernLeft = f; +kernRight = l; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (296.333,0); +}, +{ +name = caret_2; +pos = (592.667,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(432,0,l), +(550,557,ls), +(561,610,o), +(592,636,o), +(640,636,c), +(663,636,o), +(683,630,o), +(703,621,c), +(721,708,l), +(695,718,o), +(667,725,o), +(635,725,c), +(541,725,o), +(476,678,o), +(451,561,cs), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(660,443,l), +(679,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(752,0,l), +(904,715,l), +(804,715,l), +(652,0,l) +); +} +); +width = 889; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (316,0); +}, +{ +name = caret_2; +pos = (632,0); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(602,541,ls), +(611,582,o), +(637,603,o), +(678,603,c), +(706,603,o), +(730,597,o), +(751,589,c), +(777,712,l), +(748,723,o), +(708,729,o), +(668,729,c), +(565,729,o), +(483,683,o), +(456,554,cs), +(338,0,l) +); +}, +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(707,407,l), +(733,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(823,0,l), +(975,715,l), +(826,715,l), +(674,0,l) +); +} +); +width = 948; +} +); +}, +{ +color = 6; +glyphname = f_i; +kernLeft = f; +kernRight = i; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (87,0); +}, +{ +name = bottom_2; +pos = (372,0); +}, +{ +name = caret_1; +pos = (285,0); +}, +{ +name = top_1; +pos = (239,715); +}, +{ +name = top_2; +pos = (524,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(474,443,l), +(493,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(432,0,l), +(545,530,l), +(445,530,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(557,602,o), +(584,629,o), +(584,668,c), +(584,702,o), +(561,725,o), +(527,725,c), +(489,725,o), +(462,698,o), +(462,658,c), +(462,625,o), +(485,602,o), +(519,602,c) +); +} +); +width = 570; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (97,0); +}, +{ +name = bottom_2; +pos = (404,0); +}, +{ +name = caret_1; +pos = (306.5,0); +}, +{ +name = top_1; +pos = (249,715); +}, +{ +name = top_2; +pos = (556,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(551,0,l), +(551,530,l), +(402,530,l), +(402,0,l) +); +}, +{ +closed = 1; +nodes = ( +(527,580,o), +(565,614,o), +(565,667,cs), +(565,720,o), +(527,755,o), +(476,755,cs), +(426,755,o), +(388,720,o), +(388,667,cs), +(388,614,o), +(426,580,o), +(476,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(312,603,o), +(333,601,o), +(353,598,c), +(353,721,l), +(325,727,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(458,407,l), +(458,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(451,407,l), +(477,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(487,0,l), +(600,530,l), +(451,530,l), +(338,0,l) +); +}, +{ +closed = 1; +nodes = ( +(601,580,o), +(643,617,o), +(643,675,c), +(643,723,o), +(612,755,o), +(560,755,c), +(508,755,o), +(466,717,o), +(466,659,c), +(466,611,o), +(497,580,o), +(548,580,c) +); +} +); +width = 613; +} +); +}, +{ +color = 6; +glyphname = f_ij; +kernLeft = f; +kernRight = q; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (144,0); +}, +{ +name = bottom_2; +pos = (544,0); +}, +{ +name = caret_1; +pos = (400,0); +}, +{ +name = top_1; +pos = (296,715); +}, +{ +name = top_2; +pos = (696,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(474,443,l), +(493,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(432,0,l), +(545,530,l), +(445,530,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(567,-185,o), +(633,-138,o), +(658,-21,cs), +(775,530,l), +(675,530,l), +(558,-17,ls), +(547,-70,o), +(514,-94,o), +(469,-94,c), +(446,-94,o), +(426,-88,o), +(406,-79,c), +(387,-168,l), +(413,-178,o), +(441,-185,o), +(473,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(557,602,o), +(584,629,o), +(584,668,c), +(584,702,o), +(561,725,o), +(527,725,c), +(489,725,o), +(462,698,o), +(462,658,c), +(462,625,o), +(485,602,o), +(519,602,c) +); +}, +{ +closed = 1; +nodes = ( +(787,602,o), +(814,629,o), +(814,668,c), +(814,702,o), +(791,725,o), +(757,725,c), +(719,725,o), +(692,698,o), +(692,658,c), +(692,625,o), +(715,602,o), +(749,602,c) +); +} +); +width = 800; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (161,0); +}, +{ +name = bottom_2; +pos = (594,0); +}, +{ +name = caret_1; +pos = (433.5,0); +}, +{ +name = top_1; +pos = (313,715); +}, +{ +name = top_2; +pos = (746,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(551,0,l), +(551,530,l), +(402,530,l), +(402,0,l) +); +}, +{ +closed = 1; +nodes = ( +(527,580,o), +(565,614,o), +(565,667,cs), +(565,720,o), +(527,755,o), +(476,755,cs), +(426,755,o), +(388,720,o), +(388,667,cs), +(388,614,o), +(426,580,o), +(476,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(312,603,o), +(333,601,o), +(353,598,c), +(353,721,l), +(325,727,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(458,407,l), +(458,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(451,407,l), +(477,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(487,0,l), +(600,530,l), +(451,530,l), +(338,0,l) +); +}, +{ +closed = 1; +nodes = ( +(632,-189,o), +(711,-143,o), +(738,-14,cs), +(854,530,l), +(705,530,l), +(594,9,ls), +(585,-32,o), +(561,-54,o), +(520,-54,c), +(495,-54,o), +(473,-49,o), +(453,-41,c), +(425,-172,l), +(450,-183,o), +(489,-189,o), +(529,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(601,580,o), +(643,617,o), +(643,675,c), +(643,723,o), +(612,755,o), +(560,755,c), +(508,755,o), +(466,717,o), +(466,659,c), +(466,611,o), +(497,580,o), +(548,580,c) +); +}, +{ +closed = 1; +nodes = ( +(855,580,o), +(897,617,o), +(897,675,c), +(897,723,o), +(866,755,o), +(814,755,c), +(762,755,o), +(720,717,o), +(720,659,c), +(720,611,o), +(751,580,o), +(802,580,c) +); +} +); +width = 867; +} +); +}, +{ +color = 6; +glyphname = f_l; +kernLeft = f; +kernRight = l; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (86,0); +}, +{ +name = bottom_2; +pos = (371,0); +}, +{ +name = caret_1; +pos = (284.5,0); +}, +{ +name = top_1; +pos = (238,715); +}, +{ +name = top_2; +pos = (523,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(340,443,l), +(359,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(432,0,l), +(584,715,l), +(484,715,l), +(332,0,l) +); +} +); +width = 569; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (97,0); +}, +{ +name = bottom_2; +pos = (403,0); +}, +{ +name = caret_1; +pos = (306,0); +}, +{ +name = top_1; +pos = (249,715); +}, +{ +name = top_2; +pos = (555,715); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(371,407,l), +(397,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(487,0,l), +(639,715,l), +(490,715,l), +(338,0,l) +); +} +); +width = 612; +} +); +}, +{ +color = 6; +glyphname = fi; +kernLeft = f; +kernRight = i; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (285,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(474,443,l), +(493,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(432,0,l), +(545,530,l), +(445,530,l), +(332,0,l) +); +}, +{ +closed = 1; +nodes = ( +(557,602,o), +(584,629,o), +(584,668,c), +(584,702,o), +(561,725,o), +(527,725,c), +(489,725,o), +(462,698,o), +(462,658,c), +(462,625,o), +(485,602,o), +(519,602,c) +); +} +); +width = 570; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (306.5,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(551,0,l), +(551,530,l), +(402,530,l), +(402,0,l) +); +}, +{ +closed = 1; +nodes = ( +(527,580,o), +(565,614,o), +(565,667,cs), +(565,720,o), +(527,755,o), +(476,755,cs), +(426,755,o), +(388,720,o), +(388,667,cs), +(388,614,o), +(426,580,o), +(476,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(312,603,o), +(333,601,o), +(353,598,c), +(353,721,l), +(325,727,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(458,407,l), +(458,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(451,407,l), +(477,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(487,0,l), +(600,530,l), +(451,530,l), +(338,0,l) +); +}, +{ +closed = 1; +nodes = ( +(601,580,o), +(643,617,o), +(643,675,c), +(643,723,o), +(612,755,o), +(560,755,c), +(508,755,o), +(466,717,o), +(466,659,c), +(466,611,o), +(497,580,o), +(548,580,c) +); +} +); +width = 613; +} +); +unicode = 64257; +}, +{ +color = 6; +glyphname = fl; +kernLeft = f; +kernRight = l; +lastChange = "2024-03-21 14:12:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (284.5,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,0,l), +(230,557,ls), +(241,610,o), +(272,636,o), +(320,636,c), +(343,636,o), +(363,630,o), +(383,621,c), +(401,708,l), +(375,718,o), +(347,725,o), +(315,725,c), +(221,725,o), +(156,678,o), +(131,561,cs), +(12,0,l) +); +}, +{ +closed = 1; +nodes = ( +(340,443,l), +(359,530,l), +(50,530,l), +(31,443,l) +); +}, +{ +closed = 1; +nodes = ( +(432,0,l), +(584,715,l), +(484,715,l), +(332,0,l) +); +} +); +width = 569; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (306,0); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,0,l), +(266,541,ls), +(275,582,o), +(301,603,o), +(342,603,c), +(370,603,o), +(394,597,o), +(415,589,c), +(441,712,l), +(412,723,o), +(372,729,o), +(332,729,c), +(229,729,o), +(147,683,o), +(120,554,cs), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(371,407,l), +(397,530,l), +(49,530,l), +(23,407,l) +); +}, +{ +closed = 1; +nodes = ( +(487,0,l), +(639,715,l), +(490,715,l), +(338,0,l) +); +} +); +width = 612; +} +); +unicode = 64258; +}, +{ +color = 6; +glyphname = ordfeminine; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(251,376,o), +(313,440,o), +(313,537,cs), +(313,634,o), +(251,698,o), +(164,698,cs), +(77,698,o), +(16,634,o), +(16,537,cs), +(16,440,o), +(77,376,o), +(164,376,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,449,o), +(98,478,o), +(98,537,cs), +(98,596,o), +(124,625,o), +(164,625,cs), +(205,625,o), +(230,596,o), +(230,537,cs), +(230,478,o), +(205,449,o), +(164,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(227,449,o), +(208,468,o), +(208,505,cs), +(208,515,o), +(210,525,o), +(212,537,cs), +(225,596,o), +(257,625,o), +(297,625,cs), +(329,625,o), +(348,607,o), +(348,570,cs), +(348,560,o), +(347,549,o), +(344,537,cs), +(332,478,o), +(300,449,o), +(259,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,376,o), +(407,440,o), +(427,537,cs), +(430,550,o), +(431,563,o), +(431,575,cs), +(431,650,o), +(377,698,o), +(302,698,cs), +(215,698,o), +(151,634,o), +(130,537,cs), +(127,524,o), +(126,511,o), +(126,499,cs), +(126,424,o), +(179,376,o), +(254,376,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(235,376,o), +(296,472.026,o), +(296,581,c), +(296,649.25,o), +(261.385,698,o), +(206,698,c), +(120.393,698,o), +(56,609,o), +(56,508,c), +(56,432,o), +(93,376,o), +(153,376,c) +); +}, +{ +closed = 1; +nodes = ( +(156,447,o), +(138,473,o), +(138,514,c), +(138,574,o), +(173,627,o), +(216,627,c), +(248,627,o), +(269,601,o), +(269,560,c), +(269,500,o), +(231,447,o), +(188,447,c) +); +}, +{ +closed = 1; +nodes = ( +(310,384,l), +(375,690,l), +(295,690,l), +(275,598,l), +(277,531,l), +(246,462,l), +(230,384,l) +); +} +); +width = 335; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(251,376,o), +(313,440,o), +(313,537,cs), +(313,634,o), +(251,698,o), +(164,698,cs), +(77,698,o), +(16,634,o), +(16,537,cs), +(16,440,o), +(77,376,o), +(164,376,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,449,o), +(98,478,o), +(98,537,cs), +(98,596,o), +(124,625,o), +(164,625,cs), +(205,625,o), +(230,596,o), +(230,537,cs), +(230,478,o), +(205,449,o), +(164,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(227,449,o), +(208,468,o), +(208,505,cs), +(208,515,o), +(210,525,o), +(212,537,cs), +(225,596,o), +(257,625,o), +(297,625,cs), +(329,625,o), +(348,607,o), +(348,570,cs), +(348,560,o), +(347,549,o), +(344,537,cs), +(332,478,o), +(300,449,o), +(259,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,376,o), +(407,440,o), +(427,537,cs), +(430,550,o), +(431,563,o), +(431,575,cs), +(431,650,o), +(377,698,o), +(302,698,cs), +(215,698,o), +(151,634,o), +(130,537,cs), +(127,524,o), +(126,511,o), +(126,499,cs), +(126,424,o), +(179,376,o), +(254,376,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,447,o), +(211,473,o), +(211,514,c), +(211,574,o), +(246,627,o), +(289,627,c), +(321,627,o), +(342,601,o), +(342,560,c), +(342,500,o), +(304,447,o), +(261,447,c) +); +}, +{ +closed = 1; +nodes = ( +(193.393,698,o), +(129,609,o), +(129,508,c), +(129,432,o), +(166,376,o), +(226,376,c), +(308,376,o), +(369,472.026,o), +(369,581,c), +(369,649.25,o), +(334.385,698,o), +(279,698,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(220,374,o), +(282,472,o), +(282,600,c), +(282,660,o), +(251,700,o), +(206,700,c), +(117,700,o), +(54,613,o), +(54,504,c), +(54,432,o), +(88,374,o), +(145,374,c) +); +}, +{ +closed = 1; +nodes = ( +(173,464,o), +(161,483,o), +(161,510,c), +(161,560,o), +(185,610,o), +(220,610,c), +(243,610,o), +(257,592,o), +(257,560,c), +(257,515,o), +(231,464,o), +(196,464,c) +); +}, +{ +closed = 1; +nodes = ( +(318,384,l), +(383,690,l), +(283,690,l), +(263,598,l), +(265,531,l), +(234,462,l), +(218,384,l) +); +} +); +width = 338; +} +); +unicode = 170; +}, +{ +color = 6; +glyphname = ordmasculine; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(251,376,o), +(313,440,o), +(313,537,cs), +(313,634,o), +(251,698,o), +(164,698,cs), +(77,698,o), +(16,634,o), +(16,537,cs), +(16,440,o), +(77,376,o), +(164,376,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,449,o), +(98,478,o), +(98,537,cs), +(98,596,o), +(124,625,o), +(164,625,cs), +(205,625,o), +(230,596,o), +(230,537,cs), +(230,478,o), +(205,449,o), +(164,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(227,449,o), +(208,468,o), +(208,505,cs), +(208,515,o), +(210,525,o), +(212,537,cs), +(225,596,o), +(257,625,o), +(297,625,cs), +(329,625,o), +(348,607,o), +(348,570,cs), +(348,560,o), +(347,549,o), +(344,537,cs), +(332,478,o), +(300,449,o), +(259,449,cs) +); +}, +{ +closed = 1; +nodes = ( +(341,376,o), +(407,440,o), +(427,537,cs), +(430,550,o), +(431,563,o), +(431,575,cs), +(431,650,o), +(377,698,o), +(302,698,cs), +(215,698,o), +(151,634,o), +(130,537,cs), +(127,524,o), +(126,511,o), +(126,499,cs), +(126,424,o), +(179,376,o), +(254,376,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(281,376,o), +(355,465,o), +(355,566,c), +(355,643,o), +(305,698,o), +(225,698,c), +(131,698,o), +(57,609,o), +(57,508,c), +(57,431,o), +(107,376,o), +(187,376,c) +); +}, +{ +closed = 1; +nodes = ( +(160,449,o), +(139,473,o), +(139,514,c), +(139,574,o), +(177,625,o), +(220,625,c), +(252,625,o), +(273,601,o), +(273,560,c), +(273,500,o), +(235,449,o), +(192,449,c) +); +} +); +width = 327; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,374,o), +(366,455,o), +(366,566,c), +(366,643,o), +(314,700,o), +(228,700,c), +(128,700,o), +(54,619,o), +(54,508,c), +(54,431,o), +(106,374,o), +(192,374,c) +); +}, +{ +closed = 1; +nodes = ( +(176,467,o), +(161,482,o), +(161,514,c), +(161,566,o), +(186,607,o), +(221,607,c), +(244,607,o), +(259,592,o), +(259,560,c), +(259,508,o), +(234,467,o), +(199,467,c) +); +} +); +width = 337; +} +); +unicode = 186; +}, +{ +color = 6; +glyphname = Delta; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(488,0,l), +(508,96,l), +(40,96,l), +(20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +} +); +width = 657; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(470,0,l), +(500,141,l), +(82,141,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +} +); +width = 675; +} +); +unicode = 916; +}, +{ +color = 6; +glyphname = Omega; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(650,0,l), +(650,96,l), +(390,96,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,180,l), +(390,180,l), +(390,0,l), +(490,0,l) +); +}, +{ +closed = 1; +nodes = ( +(466,593,o), +(544,521,o), +(544,412,cs), +(544,298,o), +(480,228.1,o), +(390,205,c), +(390,128,l), +(536,152.866,o), +(650,256.477,o), +(650,415,cs), +(650,585,o), +(527,700,o), +(345,700,c), +(163,700,o), +(40,585,o), +(40,415,cs), +(40,256.477,o), +(154,152.866,o), +(300,128,c), +(300,205,l), +(210,228.1,o), +(146,298,o), +(146,412,cs), +(146,521,o), +(224,593,o), +(345,593,c) +); +}, +{ +closed = 1; +nodes = ( +(300,96,l), +(40,96,l), +(40,0,l), +(300,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,180,l), +(200,180,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(650,0,l), +(670,96,l), +(410,96,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(528,180,l), +(428,180,l), +(390,0,l), +(490,0,l) +); +}, +{ +closed = 1; +nodes = ( +(320,96,l), +(60,96,l), +(40,0,l), +(300,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(338,180,l), +(238,180,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(575,593,o), +(637,539,o), +(637,455,cs), +(637,441,o), +(635,427,o), +(632,412,cs), +(607,298,o), +(528,228,o), +(434,205,c), +(417,128,l), +(568,153,o), +(705,256,o), +(738,415,cs), +(743,438,o), +(745,461,o), +(745,482,cs), +(745,615,o), +(651,700,o), +(494,700,c), +(312,700,o), +(164,585,o), +(128,415,cs), +(123,393,o), +(121,372,o), +(121,352,cs), +(121,229,o), +(206,150,o), +(327,128,c), +(344,205,l), +(273,224,o), +(227,275,o), +(227,356,cs), +(227,373,o), +(230,392,o), +(234,412,cs), +(257,521,o), +(350,593,o), +(471,593,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(272,205,l), +(201,224,o), +(155,272,o), +(155,373,c), +(155,493,o), +(251,593,o), +(398,593,c), +(502,593,o), +(565,539,o), +(565,445,c), +(565,314,o), +(468.321,231.015,o), +(362,205,c), +(345,128,l), +(518,147,o), +(673,286,o), +(673,462,c), +(673,602,o), +(561,700,o), +(404,700,c), +(198,700,o), +(49,552,o), +(49,369,c), +(49,236,o), +(134,160,o), +(255,128,c) +); +}, +{ +closed = 1; +nodes = ( +(228,0,l), +(248,96,l), +(-12,96,l), +(-32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(228,0,l), +(266,180,l), +(166,180,l), +(128,0,l) +); +}, +{ +closed = 1; +nodes = ( +(418,0,l), +(456,180,l), +(356,180,l), +(318,0,l) +); +}, +{ +closed = 1; +nodes = ( +(578,0,l), +(598,96,l), +(338,96,l), +(318,0,l) +); +} +); +width = 690; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(325,147,l), +(40,147,l), +(40,0,l), +(325,0,l) +); +}, +{ +closed = 1; +nodes = ( +(325,0,l), +(325,225,l), +(200,225,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(670,0,l), +(670,147,l), +(385,147,l), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,225,l), +(385,225,l), +(385,0,l), +(510,0,l) +); +}, +{ +closed = 1; +nodes = ( +(166.969,704,o), +(40,589,o), +(40,425,cs), +(40,286,o), +(138,185,o), +(325,173,c), +(325,294,l), +(252.539,301,o), +(198,347,o), +(198,422,cs), +(198,504,o), +(261.074,558,o), +(355,558,c), +(449,558,o), +(512,504,o), +(512,422,cs), +(512,347,o), +(457,301,o), +(385,294,c), +(385,173,l), +(572,185,o), +(670,286,o), +(670,425,cs), +(670,589,o), +(543,704,o), +(355,704,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,294,l), +(255,300,o), +(213,335,o), +(213,393,cs), +(213,481,o), +(285,558,o), +(397,558,c), +(479,558,o), +(533,517,o), +(533,452,cs), +(533,375,o), +(459,302,o), +(375,294,c), +(350,173,l), +(568,187,o), +(695,323,o), +(695,470,c), +(695,605,o), +(572,704,o), +(412,704,c), +(192,704,o), +(52,551,o), +(52,387,c), +(52,277,o), +(130,188,o), +(290,173,c) +); +}, +{ +closed = 1; +nodes = ( +(253,0,l), +(284,147,l), +(-1,147,l), +(-32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(253,0,l), +(301,225,l), +(176,225,l), +(128,0,l) +); +}, +{ +closed = 1; +nodes = ( +(438,0,l), +(486,225,l), +(361,225,l), +(313,0,l) +); +}, +{ +closed = 1; +nodes = ( +(598,0,l), +(629,147,l), +(344,147,l), +(313,0,l) +); +} +); +width = 711; +} +); +unicode = 937; +}, +{ +color = 6; +glyphname = mu; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(56,-175,l), +(206,530,l), +(106,530,l), +(-44,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(301,-10,o), +(379,79,o), +(409,221,c), +(380,221,l), +(360,127,o), +(297,78,o), +(230,78,c), +(163,78,o), +(120,127,o), +(140,221,c), +(109,198,l), +(82,70,o), +(126,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(546,530,l), +(446,530,l), +(333,0,l) +); +} +); +width = 570; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(400,530,l), +(400,0,l), +(500,0,l), +(500,530,l) +); +}, +{ +closed = 1; +nodes = ( +(160,530,l), +(60,530,l), +(60,-175,l), +(160,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(134,70,o), +(191,-10,o), +(278,-10,c), +(366,-10,o), +(429,79,o), +(429,221,c), +(400,221,l), +(400,127,o), +(347,78,o), +(280,78,c), +(213,78,o), +(160,127,o), +(160,221,c), +(134,198,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,-175,l), +(243,530,l), +(94,530,l), +(-56,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(285,-14,o), +(344,73,o), +(376,226,c), +(360,226,l), +(345,155,o), +(299,118,o), +(246,118,c), +(193,118,o), +(163,155,o), +(178,226,c), +(153,196,l), +(125,64,o), +(154,-14,o), +(219,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(461,0,l), +(574,530,l), +(425,530,l), +(312,0,l) +); +} +); +width = 586; +} +); +unicode = 956; +}, +{ +color = 6; +glyphname = pi; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(485,530,l), +(385,530,l), +(385,140,l), +(385,44,o), +(436,-10,o), +(527,-10,c), +(551,-10,o), +(571.022,-7,o), +(593,0,c), +(593,89,l), +(576,83,o), +(561,80,o), +(545,80,c), +(508,80,o), +(485,96,o), +(485,143,c) +); +}, +{ +closed = 1; +nodes = ( +(15,443,l), +(593,443,l), +(593,530,l), +(15,530,l) +); +}, +{ +closed = 1; +nodes = ( +(215,530,l), +(115,530,l), +(115,0,l), +(215,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(474,-10,o), +(497,-7,o), +(520,0,c), +(539,91,l), +(521,84,o), +(505,80,o), +(487,80,c), +(458,80,o), +(439,91,o), +(439,119,c), +(439,128,o), +(441,138,o), +(443,147,cs), +(525,530,l), +(425,530,l), +(344,150,l), +(340,133,o), +(338,117,o), +(338,102,cs), +(338,33,o), +(377,-10,o), +(452,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(142,0,l), +(255,530,l), +(155,530,l), +(42,0,l) +); +}, +{ +closed = 1; +nodes = ( +(614,443,l), +(633,530,l), +(55,530,l), +(36,443,l) +); +} +); +width = 612; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,l), +(251,530,l), +(102,530,l), +(102,0,l) +); +}, +{ +closed = 1; +nodes = ( +(525,530,l), +(376,530,l), +(376,164,l), +(376,51,o), +(442,-14,o), +(552,-14,c), +(581.25,-14,o), +(605.415,-9,o), +(630,0,c), +(630,126,l), +(612,120,o), +(596,117,o), +(579,117,c), +(542,117,o), +(525,136,o), +(525,178,c) +); +}, +{ +closed = 1; +nodes = ( +(10,402,l), +(630,402,l), +(630,530,l), +(10,530,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,-14,o), +(531,-9,o), +(557,0,c), +(584,127,l), +(565,120,o), +(544,115,o), +(525,115,c), +(500,115,o), +(486,127,o), +(486,153,cs), +(486,160,o), +(487,167,o), +(489,176,c), +(565,530,l), +(416,530,l), +(341,180,l), +(337,161,o), +(335,143,o), +(335,126,cs), +(335,42,o), +(384,-14,o), +(476,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(178,0,l), +(291,530,l), +(142,530,l), +(29,0,l) +); +}, +{ +closed = 1; +nodes = ( +(642,402,l), +(670,530,l), +(50,530,l), +(22,402,l) +); +} +); +width = 644; +} +); +unicode = 960; +}, +{ +color = 6; +glyphname = zero; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(527,602,o), +(582,543,o), +(582,434,cs), +(582,244,o), +(473,88,o), +(333,88,c), +(227,88,o), +(173,146,o), +(173,254,cs), +(173,444,o), +(282,602,o), +(422,602,c) +); +}, +{ +closed = 1; +nodes = ( +(528,-10,o), +(690,190,o), +(690,441,cs), +(690,594,o), +(593,700,o), +(438,700,c), +(227,700,o), +(65,499,o), +(65,248,cs), +(65,94,o), +(161,-10,o), +(316,-10,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(436,-10,o), +(581,195,o), +(581,474,c), +(581,614,o), +(492,700,o), +(367,700,c), +(176,700,o), +(31,495,o), +(31,216,c), +(31,76,o), +(120,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(189,87,o), +(140,129,o), +(140,230,c), +(140,438,o), +(237,603,o), +(352,603,c), +(423,603,o), +(472,561,o), +(472,460,c), +(472,252,o), +(375,87,o), +(261,87,c) +); +} +); +width = 611; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(147,704,o), +(40,581,o), +(40,345,cs), +(40,109,o), +(147,-14,o), +(313,-14,cs), +(479,-14,o), +(586,109,o), +(586,345,cs), +(586,581,o), +(479,704,o), +(313,704,cs) +); +}, +{ +closed = 1; +nodes = ( +(386,558,o), +(428,496,o), +(428,345,cs), +(428,194,o), +(386,132,o), +(313,132,cs), +(240,132,o), +(198,194,o), +(198,345,cs), +(198,496,o), +(240,558,o), +(313,558,cs) +); +}, +{ +closed = 1; +nodes = ( +(288,704,o), +(163,581,o), +(113,345,cs), +(104,301,o), +(99,261,o), +(99,225,cs), +(99,67,o), +(184,-14,o), +(319,-14,cs), +(485,-14,o), +(609,109,o), +(659,345,cs), +(668,389,o), +(673,430,o), +(673,466,cs), +(673,623,o), +(589,704,o), +(454,704,cs) +); +}, +{ +closed = 1; +nodes = ( +(485,558,o), +(514,526,o), +(514,450,cs), +(514,422,o), +(510,387,o), +(501,345,cs), +(469,194,o), +(414,132,o), +(341,132,cs), +(288,132,o), +(258,165,o), +(258,241,cs), +(258,269,o), +(262,304,o), +(271,345,cs), +(303,496,o), +(359,558,o), +(432,558,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(464,-14,o), +(598,219,o), +(598,455,c), +(598,612,o), +(512,704,o), +(378,704,c), +(165,704,o), +(31,471,o), +(31,235,c), +(31,78,o), +(117,-14,o), +(251,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(221,132,o), +(190,169,o), +(190,245,c), +(190,413,o), +(267,558,o), +(356,558,c), +(408,558,o), +(439,521,o), +(439,445,c), +(439,277,o), +(362,132,o), +(273,132,c) +); +} +); +width = 627; +} +); +unicode = 48; +}, +{ +color = 6; +glyphname = one; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(188,0,l), +(334,690,l), +(254,690,l), +(219,608,o), +(177,584,o), +(82,575,c), +(66,499,l), +(189,499,l), +(83,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(188,0,l), +(335,690,l), +(253,690,l), +(219,608,o), +(177,584,o), +(81,575,c), +(66,499,l), +(189,499,l), +(83,0,l) +); +} +); +width = 360; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(295,0,l), +(295,690,l), +(174,690,l), +(140,520,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(196,463,l), +(174,690,l), +(156,608,o), +(115,576,o), +(12,567,c), +(12,463,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(222,0,l), +(369,690,l), +(248,690,l), +(212,608,o), +(164,576,o), +(60,567,c), +(37,463,l), +(166,463,l), +(67,0,l) +); +} +); +width = 376; +} +); +unicode = 49; +}, +{ +color = 6; +glyphname = two; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(508,620,o), +(410,700,o), +(286,700,c), +(158,700,o), +(63,623,o), +(45,473,c), +(148,453,l), +(160,557,o), +(208,608,o), +(281,608,c), +(352,608,o), +(399,566,o), +(399,493,c), +(399,443,o), +(372,391,o), +(312,331,cs), +(48,67,l), +(161,52,l), +(378,267,ls), +(461,350,o), +(508,403,o), +(508,499,c) +); +}, +{ +closed = 1; +nodes = ( +(527,100,l), +(128,100,l), +(48,67,l), +(48,0,l), +(527,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(367,255,ls), +(483,346,o), +(546,434,o), +(546,522,c), +(546,614,o), +(468,700,o), +(340,700,c), +(197,700,o), +(109,623,o), +(74,473,c), +(172,453,l), +(192,557,o), +(247,608,o), +(328,608,c), +(395,608,o), +(435,566,o), +(435,512,cs), +(435,462,o), +(385,393,o), +(296,319,cs), +(-10,67,l), +(106,52,l) +); +}, +{ +closed = 1; +nodes = ( +(455,0,l), +(476,100,l), +(77,100,l), +(-10,67,l), +(-24,0,l) +); +} +); +width = 571; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(528,617,o), +(428,704,o), +(297,704,c), +(162,704,o), +(57,629,o), +(38,459,c), +(192,439,l), +(201,531,o), +(238,563,o), +(287,563,c), +(333,563,o), +(369,534,o), +(369,483,c), +(369,435,o), +(332,386,o), +(271,331,cs), +(38,104,l), +(213,89,l), +(402,261,ls), +(486,336,o), +(528,402,o), +(528,486,c) +); +}, +{ +closed = 1; +nodes = ( +(550,140,l), +(109,140,l), +(38,104,l), +(38,0,l), +(550,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(392,257,ls), +(521,354,o), +(560,425,o), +(560,509,c), +(560,617,o), +(472,704,o), +(348,704,c), +(207,704,o), +(105,629,o), +(66,466,c), +(214,439,l), +(240,531,o), +(284,563,o), +(331,563,c), +(375,563,o), +(401,537,o), +(401,496,c), +(401,460,o), +(370,414,o), +(270,333,cs), +(-11,104,l), +(167,89,l) +); +}, +{ +closed = 1; +nodes = ( +(479,0,l), +(509,140,l), +(68,140,l), +(-11,104,l), +(-33,0,l) +); +} +); +width = 591; +} +); +unicode = 50; +}, +{ +color = 6; +glyphname = three; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(54,590,l), +(433,590,l), +(513,623,l), +(513,690,l), +(54,690,l) +); +}, +{ +closed = 1; +nodes = ( +(271,381,l), +(513,623,l), +(398,638,l), +(189,417,l), +(189,352,l), +(266,352,l), +(371,352,o), +(418,300,o), +(418,217,c), +(418,143.563,o), +(370,85,o), +(282,85,c), +(202,85,o), +(148.333,129.227,o), +(139,224,c), +(35,201,l), +(56.151,63,o), +(151,-10,o), +(283,-10,c), +(437,-10,o), +(527,90.149,o), +(527,223,c), +(527,347.963,o), +(439,428,o), +(338,428,c), +(316,428,o), +(302,425,o), +(284,414,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(399.009,-10,o), +(507.009,124,o), +(507.009,254,c), +(507.009,362,o), +(428.009,428,o), +(340.009,428,c), +(322.009,428,o), +(320.009,425,o), +(300.009,414,c), +(288.009,381,l), +(573.009,623,l), +(453.009,638,l), +(206.009,417,l), +(192.009,352,l), +(269.009,352,l), +(357.009,352,o), +(396.009,311,o), +(396.009,240,c), +(396.009,176,o), +(333.009,85,o), +(238.009,85,c), +(142.009,85,o), +(110.009,157,o), +(115.009,224,c), +(9.009,201,l), +(8.009,69,o), +(90.009,-10,o), +(234.009,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(486.009,590,l), +(573.009,623,l), +(588.009,690,l), +(129.009,690,l), +(107.009,590,l) +); +} +); +width = 572; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,550,l), +(465,550,l), +(536,586,l), +(536,690,l), +(40,690,l) +); +}, +{ +closed = 1; +nodes = ( +(295,372,l), +(536,586,l), +(402,638,l), +(183,411,l), +(183,332,l), +(267,332,l), +(355,332,o), +(395,292,o), +(395,227,c), +(395,164,o), +(352,126,o), +(287,126,c), +(230,126,o), +(181,154,o), +(174,242,c), +(22,210,l), +(40,60,o), +(143,-14,o), +(286,-14,c), +(442,-14,o), +(550,79,o), +(550,233,c), +(550,350,o), +(470,438,o), +(369,438,c), +(338,438,o), +(310,435,o), +(284,429,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(394,-14,o), +(525,94,o), +(525,258,c), +(525,357,o), +(458,435,o), +(373,435,c), +(349,435,o), +(330,433,o), +(303,429,c), +(302,372,l), +(589,586,l), +(456,638,l), +(198,411,l), +(182,332,l), +(266,332,l), +(341,332,o), +(374,303,o), +(374,250,c), +(374,179,o), +(317,126,o), +(242,126,c), +(185,126,o), +(152,157,o), +(150,242,c), +(-5,210,l), +(5,57,o), +(95,-14,o), +(232,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(510,550,l), +(589,586,l), +(611,690,l), +(115,690,l), +(85,550,l) +); +} +); +width = 584; +} +); +unicode = 51; +}, +{ +color = 6; +glyphname = four; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(12,141,l), +(547,141,l), +(547,237,l), +(52,237,l), +(12,193,l) +); +}, +{ +closed = 1; +nodes = ( +(447,0,l), +(447,690,l), +(342,690,l), +(342,0,l) +); +}, +{ +closed = 1; +nodes = ( +(114,193,l), +(384,690,l), +(282,690,l), +(12,193,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(94,193,l), +(460,690,l), +(349,690,l), +(-20,193,l) +); +}, +{ +closed = 1; +nodes = ( +(504,141,l), +(524,237,l), +(29,237,l), +(-20,193,l), +(-31,141,l) +); +}, +{ +closed = 1; +nodes = ( +(374,0,l), +(521,690,l), +(416,690,l), +(269,0,l) +); +} +); +width = 561; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(6,118,l), +(564,118,l), +(564,248,l), +(46,248,l), +(6,204,l) +); +}, +{ +closed = 1; +nodes = ( +(475,0,l), +(475,690,l), +(320,690,l), +(320,0,l) +); +}, +{ +closed = 1; +nodes = ( +(149,204,l), +(404,690,l), +(266,690,l), +(6,204,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(128,204,l), +(478,690,l), +(324,690,l), +(-24,204,l) +); +}, +{ +closed = 1; +nodes = ( +(516,118,l), +(544,248,l), +(26,248,l), +(-24,204,l), +(-42,118,l) +); +}, +{ +closed = 1; +nodes = ( +(402,0,l), +(549,690,l), +(394,690,l), +(247,0,l) +); +} +); +width = 569; +} +); +unicode = 52; +}, +{ +color = 6; +glyphname = five; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(138,304,l), +(161.322,342,o), +(210.765,375,o), +(277,375,c), +(371.755,375,o), +(423,309,o), +(423,223,c), +(423,143.627,o), +(366.974,85,o), +(282,85,c), +(208.754,85,o), +(158.283,128.515,o), +(149,204,c), +(45,181,l), +(66.104,63,o), +(158.593,-10,o), +(281,-10,c), +(433.908,-10,o), +(532,90,o), +(532,229,c), +(532,365.913,o), +(436.121,464,o), +(306,464,c), +(221.785,464,o), +(158.387,416.099,o), +(130,338,c), +(147,338,l), +(179,638,l), +(134,590,l), +(502,590,l), +(502,690,l), +(94,690,l), +(60,304,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(400,-10,o), +(514,120,o), +(514,269,c), +(514,380,o), +(442,463,o), +(326,463,c), +(240,463,o), +(173,416,o), +(134,338,c), +(150,338,l), +(246,638,l), +(186,590,l), +(554,590,l), +(576,690,l), +(168,690,l), +(52,304,l), +(130,304,l), +(161,342,o), +(216,376,o), +(283,376,c), +(361,376,o), +(402,325,o), +(402,257,c), +(402,164,o), +(338,85,o), +(244,85,c), +(170,85,o), +(115,123,o), +(115,204,c), +(10,181,l), +(12,63,o), +(109,-10,o), +(231,-10,c) +); +} +); +width = 581; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(186,277,l), +(201,312,o), +(238,344,o), +(291,344,c), +(358,344,o), +(400,296,o), +(400,232,c), +(400,166,o), +(358,126,o), +(293,126,c), +(240,126,o), +(201,154,o), +(190,213,c), +(37,181,l), +(59,60,o), +(153,-14,o), +(286,-14,c), +(447,-14,o), +(555,81,o), +(555,238,c), +(555,369,o), +(464,468,o), +(344,468,c), +(255,468,o), +(195,417,o), +(178,334,c), +(195,334,l), +(227,638,l), +(141,550,l), +(523,550,l), +(523,690,l), +(88,690,l), +(54,277,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(415,-14,o), +(531,105,o), +(531,270,c), +(531,387,o), +(467,466,o), +(363,466,c), +(274,466,o), +(211,417,o), +(176,334,c), +(193,334,l), +(290,638,l), +(185,550,l), +(567,550,l), +(597,690,l), +(162,690,l), +(40,277,l), +(172,277,l), +(194,312,o), +(234,344,o), +(287,344,c), +(344,344,o), +(372,310,o), +(372,255,c), +(372,178,o), +(326,126,o), +(251,126,c), +(202,126,o), +(166,155,o), +(162,213,c), +(2,181,l), +(15,60,o), +(92,-14,o), +(231,-14,c) +); +} +); +width = 593; +} +); +unicode = 53; +}, +{ +color = 6; +glyphname = six; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,307,o), +(154,331,o), +(154,365,c), +(154,530,o), +(216,604,o), +(314,604,c), +(377,604,o), +(424.833,573,o), +(447,515,c), +(539,559,l), +(504.792,651,o), +(422.692,700,o), +(323,700,c), +(149.127,700,o), +(45,570,o), +(45,325,c), +(45,96,o), +(152,-10,o), +(306,-10,c), +(456.932,-10,o), +(552,88,o), +(552,218,c), +(552,352,o), +(453,437,o), +(336,437,c), +(236,437,o), +(150,379,o), +(143,261,c), +(157,286,l) +); +}, +{ +closed = 1; +nodes = ( +(394,344,o), +(444,289,o), +(444,212,c), +(444,144,o), +(392,85,o), +(308,85,c), +(224,85,o), +(163,143,o), +(163,218,c), +(163,287,o), +(222,344,o), +(303,344,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(414,-10,o), +(527,100,o), +(527,248,c), +(527,363,o), +(449,437,o), +(334,437,c), +(249,437,o), +(154,379,o), +(121,261,c), +(141,286,l), +(151,417,o), +(215,604,o), +(359,604,c), +(420,604,o), +(468,573,o), +(484,515,c), +(578,557,l), +(549,649,o), +(464,700,o), +(370,700,c), +(146,700,o), +(26,461,o), +(26,229,c), +(26,68,o), +(126,-10,o), +(252,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(181,85,o), +(129,133,o), +(129,199,c), +(129,261,o), +(184,344,o), +(296,344,c), +(378,344,o), +(416,300,o), +(416,241,c), +(416,145,o), +(352,85,o), +(264,85,c) +); +} +); +width = 588; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(200,307,o), +(199,331,o), +(199,365,c), +(199,505,o), +(248,564,o), +(328,564,c), +(376,564,o), +(415,542,o), +(443,497,c), +(562,582,l), +(505,668,o), +(430,704,o), +(333,704,c), +(148,704,o), +(41,577,o), +(41,325,c), +(41,93,o), +(153,-14,o), +(315,-14,c), +(474,-14,o), +(574,87,o), +(574,220,c), +(574,358,o), +(480,445,o), +(365,445,c), +(275,445,o), +(189,391,o), +(188,261,c), +(202,286,l) +); +}, +{ +closed = 1; +nodes = ( +(380,312,o), +(417,271,o), +(417,212,c), +(417,163,o), +(378,121,o), +(317,121,c), +(254,121,o), +(212,161,o), +(212,214,c), +(212,268,o), +(253,312,o), +(316,312,c) +); +}, +{ +closed = 1; +nodes = ( +(265,307,o), +(269,331,o), +(277,365,c), +(306,505,o), +(368,564,o), +(448,564,c), +(496,564,o), +(530,542,o), +(549,497,c), +(686,582,l), +(647,668,o), +(580,704,o), +(483,704,c), +(298,704,o), +(164,577,o), +(110,325,c), +(61,93,o), +(150,-14,o), +(312,-14,c), +(471,-14,o), +(592,87,o), +(621,220,c), +(650,358,o), +(575,445,o), +(460,445,c), +(370,445,o), +(272,391,o), +(243,261,c), +(263,286,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(444,-14,o), +(550,115,o), +(550,257,c), +(550,369,o), +(470,440,o), +(376,440,c), +(286,440,o), +(201,391,o), +(172,261,c), +(192,286,l), +(209,431,o), +(264,564,o), +(379,564,c), +(428,564,o), +(460,542,o), +(478,497,c), +(604,570,l), +(565,661,o), +(491,704,o), +(392,704,c), +(182,704,o), +(32,480,o), +(32,229,c), +(32,76,o), +(120,-14,o), +(260,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(221,121,o), +(186,152,o), +(186,202,c), +(186,259,o), +(231,312,o), +(307,312,c), +(362,312,o), +(397,281,o), +(397,231,c), +(397,174,o), +(352,121,o), +(277,121,c) +); +} +); +width = 606; +} +); +unicode = 54; +}, +{ +color = 6; +glyphname = seven; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(20,590,l), +(440,590,l), +(510,638,l), +(510,690,l), +(20,690,l) +); +}, +{ +closed = 1; +nodes = ( +(284,0,l), +(285,212,o), +(343.665,415,o), +(510,638,c), +(397,638,l), +(248.652,426,o), +(176,212,o), +(165,0,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(219,0,l), +(252,216,o), +(354,419,o), +(573,638,c), +(446,638,l), +(252,426,o), +(142,212,o), +(100,0,c) +); +}, +{ +closed = 1; +nodes = ( +(492,590,l), +(573,638,l), +(584,690,l), +(94,690,l), +(72,590,l) +); +} +); +width = 534; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(11,550,l), +(454,550,l), +(524,588,l), +(524,690,l), +(11,690,l) +); +}, +{ +closed = 1; +nodes = ( +(321,0,l), +(322,230,o), +(375,392,o), +(524,588,c), +(384,598,l), +(227,404,o), +(166,230,o), +(156,0,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,0,l), +(291,230,o), +(378,392,o), +(577,588,c), +(433,598,l), +(222,404,o), +(130,230,o), +(84,0,c) +); +}, +{ +closed = 1; +nodes = ( +(499,550,l), +(577,588,l), +(599,690,l), +(86,690,l), +(56,550,l) +); +} +); +width = 539; +} +); +unicode = 55; +}, +{ +color = 6; +glyphname = eight; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442.007,-10,o), +(534,73,o), +(534,191,c), +(534,304,o), +(437.248,385,o), +(284,385,cs), +(131.732,385,o), +(35,304,o), +(35,191,c), +(35,73,o), +(126.974,-10,o), +(284,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,81,o), +(141,130,o), +(141,196,c), +(141,271,o), +(192.125,319,o), +(284,319,cs), +(376.851,319,o), +(428,271,o), +(428,196,c), +(428,130,o), +(383,81,o), +(284,81,cs) +); +}, +{ +closed = 1; +nodes = ( +(425.252,350,o), +(519,418,o), +(519,517,cs), +(519,628,o), +(425.252,700,o), +(284,700,cs), +(143.727,700,o), +(50,628,o), +(50,517,cs), +(50,418,o), +(143.727,350,o), +(284,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(204.143,407,o), +(156,450,o), +(156,512,cs), +(156,570,o), +(204,609,o), +(284,609,cs), +(365,609,o), +(413,570,o), +(413,512,cs), +(413,450,o), +(364.83,407,o), +(284,407,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(395,-10,o), +(505,88,o), +(505,215,c), +(505,309,o), +(428,385,o), +(293,385,cs), +(122.161,385,o), +(-1,282,o), +(-1,167,c), +(-1,70,o), +(84,-10,o), +(222,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(155,81,o), +(107,124,o), +(107,180,c), +(107,254,o), +(169,319,o), +(279,319,cs), +(359,319,o), +(400,275,o), +(400,213,c), +(400,146,o), +(358,81,o), +(237,81,c) +); +}, +{ +closed = 1; +nodes = ( +(444.356,350,o), +(558,438,o), +(558,540,c), +(558,630,o), +(480,700,o), +(351,700,c), +(201.586,700,o), +(85,610,o), +(85,499,cs), +(85,417,o), +(160,350,o), +(285,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,407,o), +(190,444,o), +(190,493,cs), +(190,558,o), +(243.862,609,o), +(335,609,cs), +(407,609,o), +(451,574,o), +(451,522,c), +(451,458,o), +(385.682,407,o), +(298,407,cs) +); +} +); +width = 568; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(458,-14,o), +(556,72,o), +(556,196,c), +(556,311,o), +(453,394,o), +(293,394,cs), +(132,394,o), +(30,311,o), +(30,196,c), +(30,72,o), +(127,-14,o), +(293,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(217,117,o), +(181,154,o), +(181,202,c), +(181,258,o), +(222,296,o), +(293,296,c), +(364,296,o), +(405,258,o), +(405,202,c), +(405,154,o), +(369,117,o), +(293,117,c) +); +}, +{ +closed = 1; +nodes = ( +(441,332,o), +(541,404,o), +(541,508,cs), +(541,627,o), +(441,704,o), +(293,704,cs), +(144,704,o), +(45,627,o), +(45,508,cs), +(45,404,o), +(144,332,o), +(293,332,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,418,o), +(196,451,o), +(196,499,cs), +(196,544,o), +(233,573,o), +(293,573,cs), +(353,573,o), +(390,544,o), +(390,499,cs), +(390,451,o), +(353,418,o), +(293,418,cs) +); +}, +{ +closed = 1; +nodes = ( +(455,-14,o), +(571,72,o), +(598,196,c), +(622,311,o), +(537,394,o), +(377,394,cs), +(216,394,o), +(96,311,o), +(72,196,c), +(45,72,o), +(124,-14,o), +(290,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,117,o), +(214,154,o), +(224,202,c), +(236,258,o), +(285,296,o), +(356,296,c), +(427,296,o), +(460,258,o), +(448,202,c), +(438,154,o), +(394,117,o), +(318,117,c) +); +}, +{ +closed = 1; +nodes = ( +(512,332,o), +(627,404,o), +(649,508,cs), +(674,627,o), +(591,704,o), +(443,704,cs), +(294,704,o), +(178,627,o), +(153,508,cs), +(131,404,o), +(215,332,o), +(364,332,cs) +); +}, +{ +closed = 1; +nodes = ( +(322,418,o), +(292,451,o), +(302,499,cs), +(312,544,o), +(355,573,o), +(415,573,cs), +(475,573,o), +(506,544,o), +(496,499,cs), +(486,451,o), +(442,418,o), +(382,418,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(411,-14,o), +(523,99,o), +(523,215,c), +(523,321,o), +(438,394,o), +(296,394,cs), +(113,394,o), +(-2,291,o), +(-2,168,cs), +(-2,69,o), +(84,-14,o), +(235,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(182,117,o), +(149,152,o), +(149,195,c), +(149,250,o), +(199,296,o), +(274,296,c), +(339,296,o), +(376,262,o), +(376,214,c), +(376,167,o), +(337,117,o), +(250,117,c) +); +}, +{ +closed = 1; +nodes = ( +(467,332,o), +(572,435,o), +(572,529,c), +(572,632,o), +(483,704,o), +(353,704,cs), +(190,704,o), +(80,606,o), +(80,497,c), +(80,401,o), +(166,332,o), +(299,332,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,418,o), +(225,446,o), +(225,489,c), +(225,535,o), +(268,573,o), +(334,573,c), +(391,573,o), +(422,545,o), +(422,502,c), +(422,456,o), +(379,418,o), +(313,418,c) +); +} +); +width = 584; +} +); +unicode = 56; +}, +{ +color = 6; +glyphname = nine; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,307,o), +(154,331,o), +(154,365,c), +(154,530,o), +(216,604,o), +(314,604,c), +(377,604,o), +(424.833,573,o), +(447,515,c), +(539,559,l), +(504.792,651,o), +(422.692,700,o), +(323,700,c), +(149.127,700,o), +(45,570,o), +(45,325,c), +(45,96,o), +(152,-10,o), +(306,-10,c), +(456.932,-10,o), +(552,88,o), +(552,218,c), +(552,352,o), +(453,437,o), +(336,437,c), +(236,437,o), +(150,379,o), +(143,261,c), +(157,286,l) +); +}, +{ +closed = 1; +nodes = ( +(394,344,o), +(444,289,o), +(444,212,c), +(444,144,o), +(392,85,o), +(308,85,c), +(224,85,o), +(163,143,o), +(163,218,c), +(163,287,o), +(222,344,o), +(303,344,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(577,229,o), +(577,461,c), +(577,622,o), +(477,700,o), +(351,700,c), +(189,700,o), +(76,590,o), +(76,442,c), +(76,327,o), +(154,253,o), +(269,253,c), +(354,253,o), +(449,311,o), +(482,429,c), +(462,404,l), +(452,273,o), +(388,86,o), +(244,86,c), +(183,86,o), +(135,117,o), +(119,175,c), +(25,133,l), +(54,41,o), +(139,-10,o), +(233,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(225,346,o), +(187,390,o), +(187,449,c), +(187,545,o), +(251,605,o), +(339,605,c), +(422,605,o), +(474,557,o), +(474,491,c), +(474,429,o), +(419,346,o), +(307,346,c) +); +} +); +width = 586; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(200,307,o), +(199,331,o), +(199,365,c), +(199,505,o), +(248,564,o), +(328,564,c), +(376,564,o), +(415,542,o), +(443,497,c), +(562,582,l), +(505,668,o), +(430,704,o), +(333,704,c), +(148,704,o), +(41,577,o), +(41,325,c), +(41,93,o), +(153,-14,o), +(315,-14,c), +(474,-14,o), +(574,87,o), +(574,220,c), +(574,358,o), +(480,445,o), +(365,445,c), +(275,445,o), +(189,391,o), +(188,261,c), +(202,286,l) +); +}, +{ +closed = 1; +nodes = ( +(380,312,o), +(417,271,o), +(417,212,c), +(417,163,o), +(378,121,o), +(317,121,c), +(254,121,o), +(212,161,o), +(212,214,c), +(212,268,o), +(253,312,o), +(316,312,c) +); +}, +{ +closed = 1; +nodes = ( +(265,307,o), +(269,331,o), +(277,365,c), +(306,505,o), +(368,564,o), +(448,564,c), +(496,564,o), +(530,542,o), +(549,497,c), +(686,582,l), +(647,668,o), +(580,704,o), +(483,704,c), +(298,704,o), +(164,577,o), +(110,325,c), +(61,93,o), +(150,-14,o), +(312,-14,c), +(471,-14,o), +(592,87,o), +(621,220,c), +(650,358,o), +(575,445,o), +(460,445,c), +(370,445,o), +(272,391,o), +(243,261,c), +(263,286,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(424,-14,o), +(574,210,o), +(574,461,c), +(574,614,o), +(486,704,o), +(346,704,c), +(162,704,o), +(56,575,o), +(56,433,c), +(56,321,o), +(136,250,o), +(230,250,c), +(320,250,o), +(405,299,o), +(434,429,c), +(414,404,l), +(397,259,o), +(342,126,o), +(227,126,c), +(178,126,o), +(146,148,o), +(128,193,c), +(2,120,l), +(41,29,o), +(115,-14,o), +(214,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(244,378,o), +(209,409,o), +(209,459,c), +(209,516,o), +(254,569,o), +(329,569,c), +(385,569,o), +(420,538,o), +(420,488,c), +(420,431,o), +(375,378,o), +(299,378,c) +); +} +); +width = 604; +} +); +unicode = 57; +}, +{ +color = 6; +glyphname = zero.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(430,-10,o), +(569,197,o), +(569,476,c), +(569,616,o), +(486,700,o), +(361,700,c), +(170,700,o), +(31,493,o), +(31,214,c), +(31,74,o), +(114,-10,o), +(241,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(183,87,o), +(140,127,o), +(140,228,c), +(140,436,o), +(231,603,o), +(346,603,c), +(417,603,o), +(460,563,o), +(460,462,c), +(460,254,o), +(369,87,o), +(255,87,c) +); +} +); +width = 599; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(580,219,o), +(580,455,c), +(580,612,o), +(498,704,o), +(364,704,c), +(151,704,o), +(21,471,o), +(21,235,c), +(21,78,o), +(103,-14,o), +(237,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(207,132,o), +(180,169,o), +(180,245,c), +(180,413,o), +(253,558,o), +(342,558,c), +(394,558,o), +(421,521,o), +(421,445,c), +(421,277,o), +(348,132,o), +(259,132,c) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = one.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(75,0,l), +(530,0,l), +(530,96,l), +(75,96,l) +); +}, +{ +closed = 1; +nodes = ( +(366,0,l), +(366,690,l), +(286,690,l), +(261,572,l), +(261,0,l) +); +}, +{ +closed = 1; +nodes = ( +(312,499,l), +(286,690,l), +(268,608,o), +(231,584,o), +(88,575,c), +(88,499,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(292,0,l), +(439,690,l), +(359,690,l), +(309,572,l), +(187,0,l) +); +}, +{ +closed = 1; +nodes = ( +(456,0,l), +(476,96,l), +(21,96,l), +(1,0,l) +); +}, +{ +closed = 1; +nodes = ( +(344,499,l), +(359,690,l), +(323,608,o), +(281,584,o), +(136,575,c), +(120,499,l) +); +} +); +width = 599; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(297,0,l), +(297,690,l), +(142,690,l), +(142,0,l) +); +}, +{ +closed = 1; +nodes = ( +(120,488,o), +(187,569,o), +(228,690,c), +(110,690,l), +(86,658,o), +(51,630,o), +(6,612,c), +(6,460,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,0,l), +(462,690,l), +(341,690,l), +(271,520,l), +(160,0,l) +); +}, +{ +closed = 1; +nodes = ( +(462,0,l), +(492,140,l), +(32,140,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(314,463,l), +(341,690,l), +(304,605,o), +(251,573,o), +(133,567,c), +(110,463,l) +); +} +); +width = 599; +} +); +}, +{ +color = 6; +glyphname = two.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(381,255,ls), +(497,346,o), +(560,434,o), +(560,522,c), +(560,614,o), +(482,700,o), +(354,700,c), +(211,700,o), +(123,623,o), +(88,473,c), +(186,453,l), +(206,557,o), +(261,608,o), +(342,608,c), +(409,608,o), +(449,566,o), +(449,512,cs), +(449,462,o), +(399,393,o), +(310,319,cs), +(4,67,l), +(120,52,l) +); +}, +{ +closed = 1; +nodes = ( +(469,0,l), +(490,100,l), +(91,100,l), +(4,67,l), +(-10,0,l) +); +} +); +width = 601; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(396,257,ls), +(525,354,o), +(564,425,o), +(564,509,c), +(564,617,o), +(476,704,o), +(352,704,c), +(211,704,o), +(109,629,o), +(70,466,c), +(218,439,l), +(244,531,o), +(288,563,o), +(335,563,c), +(379,563,o), +(405,537,o), +(405,496,c), +(405,460,o), +(374,414,o), +(274,333,cs), +(-7,104,l), +(171,89,l) +); +}, +{ +closed = 1; +nodes = ( +(483,0,l), +(513,140,l), +(72,140,l), +(-7,104,l), +(-29,0,l) +); +} +); +width = 599; +} +); +}, +{ +color = 6; +glyphname = three.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(412.009,-10,o), +(520.009,124,o), +(520.009,254,c), +(520.009,362,o), +(441.009,428,o), +(353.009,428,c), +(335.009,428,o), +(333.009,425,o), +(313.009,414,c), +(301.009,381,l), +(586.009,623,l), +(466.009,638,l), +(219.009,417,l), +(205.009,352,l), +(282.009,352,l), +(370.009,352,o), +(409.009,311,o), +(409.009,240,c), +(409.009,176,o), +(346.009,85,o), +(251.009,85,c), +(155.009,85,o), +(123.009,157,o), +(128.009,224,c), +(22.009,201,l), +(21.009,69,o), +(103.009,-10,o), +(247.009,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(499.009,590,l), +(586.009,623,l), +(601.009,690,l), +(142.009,690,l), +(120.009,590,l) +); +} +); +width = 600; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(397,-14,o), +(528,94,o), +(528,258,c), +(528,357,o), +(461,435,o), +(376,435,c), +(352,435,o), +(333,433,o), +(306,429,c), +(305,372,l), +(592,586,l), +(459,638,l), +(201,411,l), +(185,332,l), +(269,332,l), +(344,332,o), +(377,303,o), +(377,250,c), +(377,179,o), +(320,126,o), +(245,126,c), +(188,126,o), +(155,157,o), +(153,242,c), +(-2,210,l), +(8,57,o), +(98,-14,o), +(235,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(513,550,l), +(592,586,l), +(614,690,l), +(118,690,l), +(88,550,l) +); +} +); +width = 601; +} +); +}, +{ +color = 6; +glyphname = four.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(113,193,l), +(479,690,l), +(368,690,l), +(-1,193,l) +); +}, +{ +closed = 1; +nodes = ( +(523,141,l), +(543,237,l), +(48,237,l), +(-1,193,l), +(-12,141,l) +); +}, +{ +closed = 1; +nodes = ( +(393,0,l), +(540,690,l), +(435,690,l), +(288,0,l) +); +} +); +width = 599; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(140,204,l), +(490,690,l), +(336,690,l), +(-12,204,l) +); +}, +{ +closed = 1; +nodes = ( +(528,118,l), +(556,248,l), +(38,248,l), +(-12,204,l), +(-30,118,l) +); +}, +{ +closed = 1; +nodes = ( +(414,0,l), +(561,690,l), +(406,690,l), +(259,0,l) +); +} +); +width = 599; +} +); +}, +{ +color = 6; +glyphname = five.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(408,-10,o), +(522,120,o), +(522,269,c), +(522,380,o), +(450,463,o), +(334,463,c), +(248,463,o), +(181,416,o), +(142,338,c), +(158,338,l), +(254,638,l), +(194,590,l), +(562,590,l), +(584,690,l), +(176,690,l), +(60,304,l), +(138,304,l), +(169,342,o), +(224,376,o), +(291,376,c), +(369,376,o), +(410,325,o), +(410,257,c), +(410,164,o), +(346,85,o), +(252,85,c), +(178,85,o), +(123,123,o), +(123,204,c), +(18,181,l), +(20,63,o), +(117,-10,o), +(239,-10,c) +); +} +); +width = 599; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(416,-14,o), +(532,105,o), +(532,270,c), +(532,387,o), +(468,466,o), +(364,466,c), +(275,466,o), +(212,417,o), +(177,334,c), +(194,334,l), +(291,638,l), +(186,550,l), +(568,550,l), +(598,690,l), +(163,690,l), +(41,277,l), +(173,277,l), +(195,312,o), +(235,344,o), +(288,344,c), +(345,344,o), +(373,310,o), +(373,255,c), +(373,178,o), +(327,126,o), +(252,126,c), +(203,126,o), +(167,155,o), +(163,213,c), +(3,181,l), +(16,60,o), +(93,-14,o), +(232,-14,c) +); +} +); +width = 599; +} +); +}, +{ +color = 6; +glyphname = six.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(425,-10,o), +(538,100,o), +(538,248,c), +(538,363,o), +(460,437,o), +(345,437,c), +(260,437,o), +(165,379,o), +(132,261,c), +(152,286,l), +(162,417,o), +(226,604,o), +(370,604,c), +(431,604,o), +(479,573,o), +(495,515,c), +(589,557,l), +(560,649,o), +(475,700,o), +(381,700,c), +(157,700,o), +(37,461,o), +(37,229,c), +(37,68,o), +(137,-10,o), +(263,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(192,85,o), +(140,133,o), +(140,199,c), +(140,261,o), +(195,344,o), +(307,344,c), +(389,344,o), +(427,300,o), +(427,241,c), +(427,145,o), +(363,85,o), +(275,85,c) +); +} +); +width = 601; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(618,113,o), +(618,345,cs), +(618,578,o), +(509,700,o), +(348,700,cs), +(188,700,o), +(79,578,o), +(79,345,cs), +(79,113,o), +(188,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,70,o), +(188,149,o), +(188,345,cs), +(188,542,o), +(250,620,o), +(348,620,cs), +(447,620,o), +(509,542,o), +(509,345,cs), +(509,149,o), +(447,70,o), +(348,70,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(442,-14,o), +(548,115,o), +(548,257,c), +(548,369,o), +(468,440,o), +(374,440,c), +(284,440,o), +(199,391,o), +(170,261,c), +(190,286,l), +(207,431,o), +(262,564,o), +(377,564,c), +(426,564,o), +(458,542,o), +(476,497,c), +(602,570,l), +(563,661,o), +(489,704,o), +(390,704,c), +(180,704,o), +(30,480,o), +(30,229,c), +(30,76,o), +(118,-14,o), +(258,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(219,121,o), +(184,152,o), +(184,202,c), +(184,259,o), +(229,312,o), +(305,312,c), +(360,312,o), +(395,281,o), +(395,231,c), +(395,174,o), +(350,121,o), +(275,121,c) +); +} +); +width = 601; +} +); +}, +{ +color = 6; +glyphname = seven.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(253,0,l), +(286,216,o), +(386,419,o), +(615,638,c), +(488,638,l), +(284,426,o), +(176,212,o), +(134,0,c) +); +}, +{ +closed = 1; +nodes = ( +(534,590,l), +(615,638,l), +(626,690,l), +(120,690,l), +(98,590,l) +); +} +); +width = 599; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,0,l), +(291,230,o), +(377,392,o), +(572,588,c), +(428,598,l), +(221,404,o), +(130,230,o), +(84,0,c) +); +}, +{ +closed = 1; +nodes = ( +(494,550,l), +(572,588,l), +(594,690,l), +(91,690,l), +(61,550,l) +); +} +); +width = 539; +} +); +}, +{ +color = 6; +glyphname = eight.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(410,-10,o), +(520,88,o), +(520,215,c), +(520,309,o), +(443,385,o), +(308,385,cs), +(137,385,o), +(14,282,o), +(14,167,c), +(14,70,o), +(99,-10,o), +(237,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(170,81,o), +(122,124,o), +(122,180,c), +(122,254,o), +(184,319,o), +(294,319,cs), +(374,319,o), +(415,275,o), +(415,213,c), +(415,146,o), +(373,81,o), +(252,81,c) +); +}, +{ +closed = 1; +nodes = ( +(459,350,o), +(573,438,o), +(573,540,c), +(573,630,o), +(495,700,o), +(366,700,c), +(217,700,o), +(100,610,o), +(100,499,cs), +(100,417,o), +(175,350,o), +(300,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,407,o), +(205,444,o), +(205,493,cs), +(205,558,o), +(259,609,o), +(350,609,cs), +(422,609,o), +(466,574,o), +(466,522,c), +(466,458,o), +(401,407,o), +(313,407,cs) +); +} +); +width = 599; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(412,-14,o), +(524,99,o), +(524,215,c), +(524,321,o), +(439,394,o), +(297,394,cs), +(114,394,o), +(-1,291,o), +(-1,168,cs), +(-1,69,o), +(85,-14,o), +(236,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(183,117,o), +(150,152,o), +(150,195,c), +(150,250,o), +(200,296,o), +(275,296,c), +(340,296,o), +(377,262,o), +(377,214,c), +(377,167,o), +(338,117,o), +(251,117,c) +); +}, +{ +closed = 1; +nodes = ( +(468,332,o), +(573,435,o), +(573,529,c), +(573,632,o), +(484,704,o), +(354,704,cs), +(191,704,o), +(81,606,o), +(81,497,c), +(81,401,o), +(167,332,o), +(300,332,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,418,o), +(226,446,o), +(226,489,c), +(226,535,o), +(269,573,o), +(335,573,c), +(392,573,o), +(423,545,o), +(423,502,c), +(423,456,o), +(380,418,o), +(314,418,c) +); +} +); +width = 586; +} +); +}, +{ +color = 6; +glyphname = nine.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(444,-10,o), +(564,229,o), +(564,461,c), +(564,622,o), +(464,700,o), +(338,700,c), +(176,700,o), +(63,590,o), +(63,442,c), +(63,327,o), +(141,253,o), +(256,253,c), +(341,253,o), +(436,311,o), +(469,429,c), +(449,404,l), +(439,273,o), +(375,86,o), +(231,86,c), +(170,86,o), +(122,117,o), +(106,175,c), +(12,133,l), +(41,41,o), +(126,-10,o), +(220,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(212,346,o), +(174,390,o), +(174,449,c), +(174,545,o), +(238,605,o), +(326,605,c), +(409,605,o), +(461,557,o), +(461,491,c), +(461,429,o), +(406,346,o), +(294,346,c) +); +} +); +width = 599; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,383,o), +(443,359,o), +(443,325,c), +(443,146,o), +(379,70,o), +(278,70,c), +(213,70,o), +(163,103,o), +(140,175,c), +(48,131,l), +(83,39,o), +(167,-10,o), +(269,-10,c), +(446,-10,o), +(552,120,o), +(552,365,c), +(552,594,o), +(449,700,o), +(291,700,c), +(134,700,o), +(35,602,o), +(35,472,c), +(35,341,o), +(126,255,o), +(256,255,c), +(356,255,o), +(440,314,o), +(454,429,c), +(440,404,l) +); +}, +{ +closed = 1; +nodes = ( +(195,338,o), +(144,395,o), +(144,478,c), +(144,557,o), +(199,620,o), +(289,620,c), +(373,620,o), +(434,559,o), +(434,472,c), +(434,397,o), +(373,338,o), +(289,338,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(421,-14,o), +(571,210,o), +(571,461,c), +(571,614,o), +(483,704,o), +(343,704,c), +(159,704,o), +(53,575,o), +(53,433,c), +(53,321,o), +(133,250,o), +(227,250,c), +(317,250,o), +(402,299,o), +(431,429,c), +(411,404,l), +(394,259,o), +(339,126,o), +(224,126,c), +(175,126,o), +(143,148,o), +(125,193,c), +(-1,120,l), +(38,29,o), +(112,-14,o), +(211,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(241,378,o), +(206,409,o), +(206,459,c), +(206,516,o), +(251,569,o), +(326,569,c), +(382,569,o), +(417,538,o), +(417,488,c), +(417,431,o), +(372,378,o), +(296,378,c) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = fraction; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(20,0,l), +(605,690,l), +(492,690,l), +(-93,0,l) +); +} +); +width = 510; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(51,0,l), +(624,690,l), +(494,690,l), +(-79,0,l) +); +} +); +width = 543; +} +); +unicode = 8260; +}, +{ +color = 6; +glyphname = onehalf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(110,690,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(105,599,o), +(123,633,o), +(141,690,c), +(95,690,l), +(84,677,o), +(69,665,o), +(50,658,c), +(50,586,l) +); +}, +{ +closed = 1; +nodes = ( +(161,0,l), +(744,690,l), +(641,690,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(706,274,o), +(670,313,o), +(612,313,c), +(552,313,o), +(496,280,o), +(470,204,c), +(538,190,l), +(555,234,o), +(574,244,o), +(592,244,c), +(609,244,o), +(621,232,o), +(617,212,c), +(613,192,o), +(592,171,o), +(560,147,cs), +(437,53,l), +(520,46,l), +(615,115,ls), +(659,147,o), +(686,179,o), +(695,219,c) +); +}, +{ +closed = 1; +nodes = ( +(673,66,l), +(470,66,l), +(437,53,l), +(426,0,l), +(659,0,l) +); +}, +{ +closed = 1; +nodes = ( +(269,384,l), +(334,690,l), +(267,690,l), +(240,610,l), +(192,384,l) +); +}, +{ +closed = 1; +nodes = ( +(271,589,l), +(267,690,l), +(252,651,o), +(231,639,o), +(187,635,c), +(177,589,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(677,690,l), +(564,690,l), +(-21,0,l) +); +}, +{ +closed = 1; +nodes = ( +(196,384,l), +(261,690,l), +(194,690,l), +(179,651,o), +(158,639,o), +(114,635,c), +(104,589,l), +(163,589,l), +(119,384,l) +); +}, +{ +closed = 1; +nodes = ( +(586,0,l), +(600,66,l), +(474,66,l), +(539,108,ls), +(597,145,o), +(623,180,o), +(623,228,cs), +(623,279,o), +(581,313,o), +(524,313,cs), +(457,313,o), +(415,280,o), +(398,212,c), +(465,193,l), +(476,234,o), +(495,244,o), +(515,244,cs), +(533,244,o), +(546,233,o), +(546,217,cs), +(546,198,o), +(531,180,o), +(488,147,cs), +(364,53,l), +(353,0,l) +); +} +); +width = 709; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,0,l), +(679,690,l), +(549,690,l), +(-24,0,l) +); +}, +{ +closed = 1; +nodes = ( +(188,384,l), +(253,690,l), +(177,690,l), +(161,647,o), +(138,634,o), +(91,631,c), +(79,574,l), +(137,574,l), +(97,384,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(601,80,l), +(489,80,l), +(544,116,ls), +(599,152,o), +(618,188,o), +(618,229,cs), +(618,275,o), +(579,314,o), +(515,314,cs), +(454,314,o), +(404,282,o), +(388,205,c), +(471,189,l), +(478,224,o), +(494,231,o), +(506,231,cs), +(517,231,o), +(526,224,o), +(526,211,cs), +(526,194,o), +(518,181,o), +(469,146,cs), +(355,63,l), +(342,0,l) +); +} +); +width = 697; +} +); +unicode = 189; +}, +{ +color = 6; +glyphname = onequarter; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(385,48,l), +(636,48,l), +(636,109,l), +(402,109,l), +(385,92,l) +); +}, +{ +closed = 1; +nodes = ( +(598,0,l), +(598,306,l), +(523,306,l), +(523,0,l) +); +}, +{ +closed = 1; +nodes = ( +(450,92,l), +(561,306,l), +(498,306,l), +(385,92,l) +); +}, +{ +closed = 1; +nodes = ( +(161,0,l), +(597,690,l), +(494,690,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(120,690,l), +(110,610,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(146,589,l), +(120,690,l), +(114,651,o), +(95,639,o), +(52,635,c), +(52,589,l) +); +}, +{ +closed = 1; +nodes = ( +(395,48,l), +(646,48,l), +(659,109,l), +(425,109,l), +(405,92,l) +); +}, +{ +closed = 1; +nodes = ( +(598,0,l), +(663,306,l), +(588,306,l), +(523,0,l) +); +}, +{ +closed = 1; +nodes = ( +(475,92,l), +(626,306,l), +(558,306,l), +(405,92,l) +); +}, +{ +closed = 1; +nodes = ( +(161,0,l), +(744,690,l), +(641,690,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(269,384,l), +(334,690,l), +(267,690,l), +(240,610,l), +(192,384,l) +); +}, +{ +closed = 1; +nodes = ( +(271,589,l), +(267,690,l), +(252,651,o), +(231,639,o), +(187,635,c), +(177,589,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(92,0,l), +(677,690,l), +(564,690,l), +(-21,0,l) +); +}, +{ +closed = 1; +nodes = ( +(196,384,l), +(261,690,l), +(194,690,l), +(179,651,o), +(158,639,o), +(114,635,c), +(104,589,l), +(163,589,l), +(119,384,l) +); +}, +{ +closed = 1; +nodes = ( +(525,0,l), +(535,48,l), +(573,48,l), +(586,109,l), +(548,109,l), +(590,306,l), +(485,306,l), +(332,92,l), +(322,48,l), +(460,48,l), +(450,0,l) +); +}, +{ +closed = 1; +nodes = ( +(499,229,l), +(473,109,l), +(413.995,109,l) +); +} +); +width = 666; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,0,l), +(601,690,l), +(478,690,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(384,42,l), +(642,42,l), +(642,112,l), +(402,112,l), +(384,95,l) +); +}, +{ +closed = 1; +nodes = ( +(606,0,l), +(606,306,l), +(516,306,l), +(516,0,l) +); +}, +{ +closed = 1; +nodes = ( +(466,95,l), +(561,306,l), +(495,306,l), +(384,95,l) +); +}, +{ +closed = 1; +nodes = ( +(179,384,l), +(179,690,l), +(103,690,l), +(88,593,l), +(88,384,l) +); +}, +{ +closed = 1; +nodes = ( +(124,574,l), +(103,690,l), +(96,647,o), +(76,634,o), +(30,631,c), +(30,574,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(105,0,l), +(678,690,l), +(548,690,l), +(-25,0,l) +); +}, +{ +closed = 1; +nodes = ( +(188,384,l), +(253,690,l), +(177,690,l), +(161,647,o), +(138,634,o), +(91,631,c), +(79,574,l), +(137,574,l), +(97,384,l) +); +}, +{ +closed = 1; +nodes = ( +(533,0,l), +(542,42,l), +(578,42,l), +(593,112,l), +(557,112,l), +(598,306,l), +(480,306,l), +(331,95,l), +(320,42,l), +(452,42,l), +(443,0,l) +); +}, +{ +closed = 1; +nodes = ( +(487,206,l), +(467,112,l), +(424,112,l) +); +} +); +width = 686; +} +); +unicode = 188; +}, +{ +color = 6; +glyphname = threequarters; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(429,48,l), +(680,48,l), +(693,109,l), +(459,109,l), +(439,92,l) +); +}, +{ +closed = 1; +nodes = ( +(632,0,l), +(697,306,l), +(622,306,l), +(557,0,l) +); +}, +{ +closed = 1; +nodes = ( +(504,92,l), +(660,306,l), +(597,306,l), +(439,92,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(778,690,l), +(675,690,l), +(92,0,l) +); +}, +{ +closed = 1; +nodes = ( +(176,624,l), +(372,624,l), +(404,637,l), +(416,690,l), +(190,690,l) +); +}, +{ +closed = 1; +nodes = ( +(278,547,l), +(404,637,l), +(353,667,l), +(227,565,l), +(219,528,l), +(262,528,l), +(297,528,o), +(312,511,o), +(306,485,c), +(300,458,o), +(276,442,o), +(250,442,c), +(228,442,o), +(206,454,o), +(210,488,c), +(136,473,l), +(130,408,o), +(170,377,o), +(236,377,c), +(299,377,o), +(363,417,o), +(378,489,c), +(389,539,o), +(363,576,o), +(313,576,c), +(303,576,o), +(288,575,o), +(275,573,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(127,0,l), +(712,690,l), +(599,690,l), +(14,0,l) +); +}, +{ +closed = 1; +nodes = ( +(608,48,l), +(621,109,l), +(387,109,l), +(367,92,l), +(357,48,l) +); +}, +{ +closed = 1; +nodes = ( +(249,377,o), +(308,430,o), +(308,499,cs), +(308,537,o), +(283,576,o), +(241,576,c), +(231,576,o), +(216,575,o), +(203,573,c), +(206,547,l), +(332,637,l), +(277,667,l), +(155,565,l), +(147,528,l), +(190,528,l), +(220,528,o), +(235,514,o), +(235,491,c), +(235,461,o), +(216,442,o), +(182,442,c), +(160,442,o), +(139,455,o), +(136,488,c), +(64,473,l), +(72,410,o), +(114,377,o), +(178,377,c) +); +}, +{ +closed = 1; +nodes = ( +(437,92,l), +(588,306,l), +(520,306,l), +(367,92,l) +); +}, +{ +closed = 1; +nodes = ( +(560,0,l), +(625,306,l), +(550,306,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,624,l), +(332,637,l), +(344,690,l), +(118,690,l), +(104,624,l) +); +} +); +width = 701; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(808,690,l), +(685,690,l), +(112,0,l) +); +}, +{ +closed = 1; +nodes = ( +(453,42,l), +(711,42,l), +(726,112,l), +(486,112,l), +(464,95,l) +); +}, +{ +closed = 1; +nodes = ( +(666,0,l), +(731,306,l), +(641,306,l), +(576,0,l) +); +}, +{ +closed = 1; +nodes = ( +(546,95,l), +(686,306,l), +(620,306,l), +(464,95,l) +); +}, +{ +closed = 1; +nodes = ( +(178,610,l), +(386,610,l), +(417,628,l), +(431,690,l), +(195,690,l) +); +}, +{ +closed = 1; +nodes = ( +(293,545,l), +(417,628,l), +(368,667,l), +(235,564,l), +(226,522,l), +(271,522,l), +(299,522,o), +(309,510,o), +(305,489,c), +(300,468,o), +(286,456,o), +(265,456,c), +(243,456,o), +(232,468,o), +(235,499,c), +(142,481,l), +(137,409,o), +(179,376,o), +(244,376,c), +(314,376,o), +(376,411,o), +(391,482,c), +(401,529,o), +(381,568,o), +(334,568,c), +(317,568,o), +(298,565,o), +(281,561,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(738,690,l), +(608,690,l), +(35,0,l) +); +}, +{ +closed = 1; +nodes = ( +(638,42,l), +(653,112,l), +(413,112,l), +(391,95,l), +(380,42,l) +); +}, +{ +closed = 1; +nodes = ( +(265,376,o), +(317,424,o), +(317,490,c), +(317,529,o), +(296,568,o), +(251,568,c), +(240,568,o), +(225,565,o), +(208,561,c), +(220,545,l), +(344,628,l), +(295,667,l), +(162,564,l), +(153,522,l), +(198,522,l), +(222,522,o), +(233,513,o), +(233,493,c), +(233,474,o), +(217,456,o), +(192,456,c), +(170,456,o), +(157,471,o), +(155,498,c), +(69,481,l), +(74,411,o), +(121,376,o), +(187,376,c) +); +}, +{ +closed = 1; +nodes = ( +(473,95,l), +(613,306,l), +(540,306,l), +(391,95,l) +); +}, +{ +closed = 1; +nodes = ( +(593,0,l), +(658,306,l), +(568,306,l), +(503,0,l) +); +}, +{ +closed = 1; +nodes = ( +(313,610,l), +(344,628,l), +(358,690,l), +(122,690,l), +(105,610,l) +); +} +); +width = 746; +} +); +unicode = 190; +}, +{ +color = 6; +glyphname = onesuperior; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(138,384,l), +(138,690,l), +(71,690,l), +(61,610,l), +(61,384,l) +); +}, +{ +closed = 1; +nodes = ( +(97,589,l), +(71,690,l), +(65,651,o), +(45.73,639.304,o), +(3,635,c), +(3,589,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(147,384,l), +(212,690,l), +(145,690,l), +(118,610,l), +(70,384,l) +); +}, +{ +closed = 1; +nodes = ( +(149,589,l), +(145,690,l), +(130,651,o), +(109,639,o), +(65,635,c), +(55,589,l) +); +} +); +width = 170; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,384,l), +(148,690,l), +(72,690,l), +(57,593,l), +(57,384,l) +); +}, +{ +closed = 1; +nodes = ( +(93,574,l), +(72,690,l), +(65,647,o), +(45,634,o), +(-1,631,c), +(-1,574,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,384,l), +(222,690,l), +(146,690,l), +(110,593,l), +(66,384,l) +); +}, +{ +closed = 1; +nodes = ( +(142,574,l), +(146,690,l), +(130,647,o), +(107,634,o), +(60,631,c), +(48,574,l) +); +} +); +userData = { +ufoStretch.beamYPositionForStretchedGlyph = 114.20507; +}; +width = 175; +} +); +unicode = 185; +}, +{ +color = 6; +glyphname = twosuperior; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(237,658,o), +(192,697,o), +(134,697,c), +(74,697,o), +(25,664,o), +(16,588,c), +(87,574,l), +(94,618,o), +(111,628,o), +(129,628,c), +(146,628,o), +(161,616,o), +(161,596,c), +(161,576,o), +(145,555,o), +(118,531,cs), +(15,437,l), +(99,430,l), +(180,499,ls), +(217,531,o), +(237,563,o), +(237,603,c) +); +}, +{ +closed = 1; +nodes = ( +(248,450,l), +(45,450,l), +(15,437,l), +(15,384,l), +(248,384,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(211,492,ls), +(269,529,o), +(295,564,o), +(295,612,c), +(295,663,o), +(253,697,o), +(196,697,c), +(129,697,o), +(87,664,o), +(70,596,c), +(137,577,l), +(148,618,o), +(167,628,o), +(187,628,c), +(205,628,o), +(218,617,o), +(218,601,c), +(218,582,o), +(203,564,o), +(160,531,cs), +(36,437,l), +(115,430,l) +); +}, +{ +closed = 1; +nodes = ( +(258,384,l), +(272,450,l), +(69,450,l), +(36,437,l), +(25,384,l) +); +} +); +width = 261; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(244,657,o), +(197,698,o), +(133,698,c), +(71,698,o), +(21,666,o), +(14,581,c), +(105,573,l), +(106,608,o), +(118,615,o), +(130,615,c), +(142,615,o), +(151,607,o), +(151,592,c), +(151,573,o), +(135,553,o), +(108,530,cs), +(12,447,l), +(113,440,l), +(189,502,ls), +(227,533,o), +(244,563,o), +(244,599,c) +); +}, +{ +closed = 1; +nodes = ( +(254,464,l), +(40,464,l), +(12,447,l), +(12,384,l), +(254,384,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(223,500,ls), +(278,536,o), +(297,572,o), +(297,613,cs), +(297,659,o), +(258,698,o), +(194,698,c), +(133,698,o), +(83,666,o), +(67,589,c), +(150,573,l), +(157,608,o), +(173,615,o), +(185,615,c), +(196,615,o), +(205,608,o), +(205,595,c), +(205,578,o), +(197,565,o), +(148,530,cs), +(34,447,l), +(134,442,l) +); +}, +{ +closed = 1; +nodes = ( +(263,384,l), +(280,464,l), +(66,464,l), +(34,447,l), +(21,384,l) +); +} +); +width = 264; +} +); +unicode = 178; +}, +{ +color = 6; +glyphname = threesuperior; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(16,624,l), +(212,624,l), +(242,637,l), +(242,690,l), +(16,690,l) +); +}, +{ +closed = 1; +nodes = ( +(135,547,l), +(242,637,l), +(184,667,l), +(80,565,l), +(80,528,l), +(123,528,l), +(158,528,o), +(176,511,o), +(176,485,c), +(176,458,o), +(155,442,o), +(129,442,c), +(107,442,o), +(82,454,o), +(79,488,c), +(8,473,l), +(16,408,o), +(63,377,o), +(129,377,c), +(192,377,o), +(247,417,o), +(247,489,c), +(247,539,o), +(214,576,o), +(164,576,c), +(154,576,o), +(139,575,o), +(126,573,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(222,377,o), +(281,430,o), +(281,499,cs), +(281,537,o), +(256,576,o), +(214,576,c), +(204,576,o), +(189,575,o), +(176,573,c), +(179,547,l), +(305,637,l), +(250,667,l), +(128,565,l), +(120,528,l), +(163,528,l), +(193,528,o), +(208,514,o), +(208,491,c), +(208,461,o), +(189,442,o), +(155,442,c), +(133,442,o), +(112,455,o), +(109,488,c), +(37,473,l), +(45,410,o), +(87,377,o), +(151,377,c) +); +}, +{ +closed = 1; +nodes = ( +(273,624,l), +(305,637,l), +(317,690,l), +(91,690,l), +(77,624,l) +); +} +); +width = 262; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(12,610,l), +(220,610,l), +(248,628,l), +(248,690,l), +(12,690,l) +); +}, +{ +closed = 1; +nodes = ( +(141,545,l), +(248,628,l), +(190,667,l), +(79,564,l), +(79,522,l), +(124,522,l), +(152,522,o), +(165,510,o), +(165,489,c), +(165,468,o), +(153,456,o), +(132,456,c), +(110,456,o), +(97,468,o), +(93,499,c), +(4,481,l), +(14,409,o), +(63,376,o), +(128,376,c), +(198,376,o), +(253,410.724,o), +(253,482,c), +(253,529,o), +(224,568,o), +(177,568,c), +(160,568,o), +(142,565,o), +(126,561,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,376,o), +(281,424,o), +(281,490,c), +(281,529,o), +(260,568,o), +(215,568,c), +(204,568,o), +(189,565,o), +(172,561,c), +(184,545,l), +(308,628,l), +(259,667,l), +(126,564,l), +(117,522,l), +(162,522,l), +(186,522,o), +(197,513,o), +(197,493,c), +(197,474,o), +(181,456,o), +(156,456,c), +(134,456,o), +(121,471,o), +(119,498,c), +(33,481,l), +(38,411,o), +(85,376,o), +(151,376,c) +); +}, +{ +closed = 1; +nodes = ( +(277,610,l), +(308,628,l), +(322,690,l), +(86,690,l), +(69,610,l) +); +} +); +width = 264; +} +); +unicode = 179; +}, +{ +color = 6; +glyphname = space; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +width = 220; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +width = 182; +} +); +unicode = 32; +}, +{ +color = 6; +glyphname = nbspace; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +width = 220; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +width = 182; +} +); +unicode = 160; +}, +{ +color = 6; +glyphname = CR; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +width = 500; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +width = 500; +} +); +unicode = 13; +}, +{ +color = 6; +glyphname = NULL; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +width = 500; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +width = 500; +} +); +}, +{ +color = 6; +glyphname = .notdef; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (393,0); +}, +{ +name = bottomleft; +pos = (197,0); +}, +{ +name = center; +pos = (466,345); +}, +{ +name = top; +pos = (375,690); +}, +{ +name = topright; +pos = (392,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(430,-100,l), +(607,690,l), +(169,690,l), +(-8,-100,l) +); +}, +{ +closed = 1; +nodes = ( +(254,594,l), +(482,594,l), +(345,-4,l), +(117,-4,l) +); +} +); +width = 597; +}, +{ +anchors = ( +{ +name = bottom; +pos = (377,0); +}, +{ +name = bottomleft; +pos = (187,0); +}, +{ +name = center; +pos = (450,345); +}, +{ +name = top; +pos = (373,690); +}, +{ +name = topright; +pos = (402,690); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(453,-100,l), +(620,690,l), +(156,690,l), +(-11,-100,l) +); +}, +{ +closed = 1; +nodes = ( +(280,545,l), +(434,545,l), +(329,45,l), +(175,45,l) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = space.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +width = 600; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +width = 600; +} +); +}, +{ +color = 6; +glyphname = period; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(147.823,-10,o), +(175,18,o), +(175,56,cs), +(175,95,o), +(147.823,123,o), +(110,123,cs), +(72.177,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72.177,-10,o), +(110,-10,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(86,-10,o), +(116,19,o), +(116,61,c), +(116,98,o), +(91,123,o), +(54,123,c), +(13,123,o), +(-16,94,o), +(-16,50,c), +(-16,15,o), +(9,-10,o), +(45,-10,c) +); +} +); +width = 221; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,-14,o), +(156,23,o), +(156,81,c), +(156,129,o), +(125,161,o), +(73,161,c), +(21,161,o), +(-21,123,o), +(-21,65,c), +(-21,17,o), +(10,-14,o), +(61,-14,c) +); +} +); +width = 249; +} +); +unicode = 46; +}, +{ +color = 6; +glyphname = comma; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,96,o), +(148,123,o), +(110,123,cs), +(72,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72,-10,o), +(110,-10,c), +(97,6,l), +(45,-160,l), +(107,-160,l), +(147,-57,ls), +(165,-12,o), +(175,18,o), +(175,52,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(7,-160,l), +(109,113,l), +(-5,113,l), +(-63,-160,l) +); +} +); +width = 192; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,127,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,c), +(104,6,l), +(61,-160,l), +(142,-160,l), +(186,-51,ls), +(204,-6,o), +(214,30,o), +(214,67,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(39,-159,l), +(166,148,l), +(6,148,l), +(-59,-159,l) +); +} +); +width = 246; +} +); +unicode = 44; +}, +{ +color = 6; +glyphname = colon; +kernLeft = D; +kernRight = I; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(173,407,o), +(203,436,o), +(203,478,c), +(203,515,o), +(178,540,o), +(141,540,c), +(100,540,o), +(71,511,o), +(71,467,c), +(71,432,o), +(96,407,o), +(132,407,c) +); +}, +{ +closed = 1; +nodes = ( +(85,-10,o), +(115,19,o), +(115,61,c), +(115,98,o), +(90,123,o), +(53,123,c), +(12,123,o), +(-17,94,o), +(-17,50,c), +(-17,15,o), +(8,-10,o), +(44,-10,c) +); +} +); +width = 220; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,369,o), +(238,406,o), +(238,464,c), +(238,512,o), +(207,544,o), +(155,544,c), +(103,544,o), +(61,506,o), +(61,448,c), +(61,400,o), +(92,369,o), +(143,369,c) +); +}, +{ +closed = 1; +nodes = ( +(114,-14,o), +(156,23,o), +(156,81,c), +(156,129,o), +(125,161,o), +(73,161,c), +(21,161,o), +(-21,123,o), +(-21,65,c), +(-21,17,o), +(10,-14,o), +(61,-14,c) +); +} +); +width = 250; +} +); +unicode = 58; +}, +{ +color = 6; +glyphname = semicolon; +kernLeft = D; +kernRight = I; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,96,o), +(148,123,o), +(110,123,cs), +(72,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72,-10,o), +(110,-10,c), +(97,6,l), +(45,-160,l), +(107,-160,l), +(147,-57,ls), +(165,-12,o), +(175,18,o), +(175,52,c) +); +}, +{ +closed = 1; +nodes = ( +(148,407,o), +(175,435,o), +(175,473,cs), +(175,512,o), +(148,540,o), +(110,540,cs), +(72,540,o), +(45,512,o), +(45,473,cs), +(45,435,o), +(72,407,o), +(110,407,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(17,-160,l), +(119,113,l), +(5,113,l), +(-53,-160,l) +); +}, +{ +closed = 1; +nodes = ( +(174,407,o), +(204,436,o), +(204,478,c), +(204,515,o), +(179,540,o), +(142,540,c), +(101,540,o), +(72,511,o), +(72,467,c), +(72,432,o), +(97,407,o), +(133,407,c) +); +} +); +width = 219; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,127,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,c), +(104,6,l), +(61,-160,l), +(142,-160,l), +(186,-51,ls), +(204,-6,o), +(214,30,o), +(214,67,c) +); +}, +{ +closed = 1; +nodes = ( +(175,368,o), +(214,404,o), +(214,456,cs), +(214,509,o), +(175,544,o), +(124,544,cs), +(74,544,o), +(36,509,o), +(36,456,cs), +(36,404,o), +(74,368,o), +(124,368,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(40,-159,l), +(167,148,l), +(7,148,l), +(-58,-159,l) +); +}, +{ +closed = 1; +nodes = ( +(197,369,o), +(239,406,o), +(239,464,c), +(239,512,o), +(208,544,o), +(156,544,c), +(104,544,o), +(62,506,o), +(62,448,c), +(62,400,o), +(93,369,o), +(144,369,c) +); +} +); +width = 251; +} +); +unicode = 59; +}, +{ +color = 6; +glyphname = ellipsis; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(526,-10,o), +(556,19,o), +(556,61,cs), +(556,98,o), +(531,123,o), +(494,123,cs), +(453,123,o), +(424,94,o), +(424,50,cs), +(424,15,o), +(449,-10,o), +(485,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(86,-10,o), +(116,19,o), +(116,61,cs), +(116,98,o), +(91,123,o), +(54,123,cs), +(13,123,o), +(-16,94,o), +(-16,50,cs), +(-16,15,o), +(9,-10,o), +(45,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(336,19,o), +(336,61,cs), +(336,98,o), +(311,123,o), +(274,123,cs), +(233,123,o), +(204,94,o), +(204,50,cs), +(204,15,o), +(229,-10,o), +(265,-10,cs) +); +} +); +width = 661; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(594,-14,o), +(636,23,o), +(636,81,cs), +(636,129,o), +(605,161,o), +(553,161,cs), +(501,161,o), +(459,123,o), +(459,65,cs), +(459,17,o), +(490,-14,o), +(541,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(114,-14,o), +(156,23,o), +(156,81,cs), +(156,129,o), +(125,161,o), +(73,161,cs), +(21,161,o), +(-21,123,o), +(-21,65,cs), +(-21,17,o), +(10,-14,o), +(61,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(354,-14,o), +(396,23,o), +(396,81,cs), +(396,129,o), +(365,161,o), +(313,161,cs), +(261,161,o), +(219,123,o), +(219,65,cs), +(219,17,o), +(250,-14,o), +(301,-14,cs) +); +} +); +width = 729; +} +); +unicode = 8230; +}, +{ +color = 6; +glyphname = exclam; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(142,227,l), +(218,478,l), +(263,690,l), +(158,690,l), +(113,478,l), +(80,227,l) +); +}, +{ +closed = 1; +nodes = ( +(111,-10,o), +(141,19,o), +(141,61,c), +(141,98,o), +(116,123,o), +(79,123,c), +(38,123,o), +(9,94,o), +(9,50,c), +(9,15,o), +(34,-10,o), +(70,-10,c) +); +} +); +width = 271; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(168,247,l), +(249,502,l), +(289,690,l), +(133,690,l), +(93,502,l), +(66,247,l) +); +}, +{ +closed = 1; +nodes = ( +(127,-14,o), +(169,23,o), +(169,81,c), +(169,129,o), +(138,161,o), +(86,161,c), +(34,161,o), +(-8,123,o), +(-8,65,c), +(-8,17,o), +(23,-14,o), +(74,-14,c) +); +} +); +width = 273; +} +); +unicode = 33; +}, +{ +color = 6; +glyphname = exclamdown; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(78,-175,l), +(126,52,l), +(157,303,l), +(95,303,l), +(21,52,l), +(-27,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(199,407,o), +(229,436,o), +(229,478,c), +(229,515,o), +(204,540,o), +(167,540,c), +(126,540,o), +(97,511,o), +(97,467,c), +(97,432,o), +(122,407,o), +(158,407,c) +); +} +); +width = 269; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,-175,l), +(149,28,l), +(176,283,l), +(74,283,l), +(-7,28,l), +(-50,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(208,369,o), +(250,406,o), +(250,464,c), +(250,512,o), +(219,544,o), +(167,544,c), +(115,544,o), +(73,506,o), +(73,448,c), +(73,400,o), +(104,369,o), +(155,369,c) +); +} +); +width = 275; +} +); +unicode = 161; +}, +{ +color = 6; +glyphname = question; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(221,264,ls), +(221,433,o), +(409,401,o), +(409,514,c), +(409,569,o), +(366,607,o), +(288,607,c), +(209,607,o), +(159.778,566.308,o), +(144,484,c), +(45,508,l), +(67.175,630.614,o), +(159,700,o), +(290,700,c), +(436,700,o), +(515,626,o), +(515,524,c), +(515,338,o), +(312,378,o), +(312,255,cs), +(312,227,l), +(221,227,l) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(333,18,o), +(333,56,cs), +(333,95,o), +(306,123,o), +(268,123,cs), +(230,123,o), +(203,95,o), +(203,56,cs), +(203,18,o), +(230,-10,o), +(268,-10,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(288,227,l), +(294,255,ls), +(318,369,o), +(553,341,o), +(553,532,c), +(553,641,o), +(472,700,o), +(345,700,c), +(205,700,o), +(120,631,o), +(81,514,c), +(174,479,l), +(199,566,o), +(252,607,o), +(340,607,c), +(408,607,o), +(443,577,o), +(443,526,c), +(443,415,o), +(233,438,o), +(203,262,cs), +(197,227,l) +); +}, +{ +closed = 1; +nodes = ( +(244,-10,o), +(274,19,o), +(274,61,c), +(274,98,o), +(249,123,o), +(212,123,c), +(171,123,o), +(142,94,o), +(142,50,c), +(142,15,o), +(167,-10,o), +(203,-10,c) +); +} +); +width = 558; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(309,-14,o), +(348,21,o), +(348,73,cs), +(348,126,o), +(309,162,o), +(258,162,cs), +(208,162,o), +(170,126,o), +(170,73,cs), +(170,21,o), +(208,-14,o), +(258,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(520,629,o), +(420,704,o), +(289,704,c), +(154,704,o), +(49,638.184,o), +(30,489,c), +(184,469,l), +(193,538.742,o), +(231,563,o), +(280,563,c), +(326,563,o), +(360,541,o), +(360,504,c), +(360,414,o), +(185,416,o), +(191,254,cs), +(192,227,l), +(322,227,l), +(322,243,ls), +(322,338,o), +(520,340,o), +(520,514,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,227,l), +(301,243,ls), +(329,355,o), +(555,348,o), +(555,527,c), +(555,630,o), +(473,704,o), +(340,704,c), +(210,704,o), +(109,650,o), +(63,501,c), +(210,465,l), +(230,534,o), +(273,563,o), +(327,563,c), +(372,563,o), +(394,542,o), +(394,515,c), +(394,431,o), +(196,424,o), +(171,254,cs), +(167,227,l) +); +}, +{ +closed = 1; +nodes = ( +(248,-14,o), +(290,23,o), +(290,81,c), +(290,129,o), +(259,161,o), +(207,161,c), +(155,161,o), +(113,123,o), +(113,65,c), +(113,17,o), +(144,-14,o), +(195,-14,c) +); +} +); +width = 549; +} +); +unicode = 63; +}, +{ +color = 6; +glyphname = questiondown; +lastChange = "2024-03-21 14:18:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 0; +nodes = ( +(227,550,l), +(255,227,l), +(317,227,l), +(345,550,l) +); +}, +{ +closed = 1; +nodes = ( +(326,261,ls), +(337,92,o), +(146,120,o), +(146,1,c), +(146,-54,o), +(191,-92,o), +(269,-92,c), +(348,-92,o), +(395,-51,o), +(411,31,c), +(510,7,l), +(488,-116,o), +(398,-185,o), +(267,-185,c), +(121,-185,o), +(40,-111,o), +(40,-9,c), +(40,183,o), +(244,147,o), +(251,270,cs), +(253,303,l), +(323,303,l) +); +}, +{ +closed = 1; +nodes = ( +(249,540,o), +(222,512,o), +(222,474,cs), +(222,435,o), +(249,407,o), +(287,407,cs), +(325,407,o), +(352,435,o), +(352,474,cs), +(352,512,o), +(325,540,o), +(287,540,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,266,ls), +(334,90.24,o), +(146,123.52,o), +(146,6,c), +(146,-51.957,o), +(189,-92,o), +(267,-92,c), +(346,-92,o), +(395,-49.333,o), +(411,36,c), +(510,12,l), +(488,-114.203,o), +(396,-185,o), +(265,-185,c), +(119,-185,o), +(40,-108.898,o), +(40,-4,c), +(40,188.914,o), +(243,147.428,o), +(243,275,cs), +(243,303,l), +(334,303,l) +); +}, +{ +closed = 1; +nodes = ( +(249,540,o), +(222,512,o), +(222,474,cs), +(222,435,o), +(249,407,o), +(287,407,cs), +(325,407,o), +(352,435,o), +(352,474,cs), +(352,512,o), +(325,540,o), +(287,540,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(317,-185,o), +(402,-116,o), +(441,0,c), +(348,35,l), +(323,-51,o), +(270,-92,o), +(182,-92,c), +(114,-92,o), +(79,-62,o), +(79,-10,c), +(79,100,o), +(292,92,o), +(322,268,cs), +(328,303,l), +(237,303,l), +(231,275,ls), +(207,161,o), +(-31,174,o), +(-31,-17,c), +(-31,-126,o), +(50,-185,o), +(177,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(353,407,o), +(382,436,o), +(382,480,c), +(382,515,o), +(357,540,o), +(321,540,c), +(280,540,o), +(250,511,o), +(250,469,c), +(250,432,o), +(275,407,o), +(312,407,c) +); +} +); +width = 559; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(309,-14,o), +(348,21,o), +(348,73,cs), +(348,126,o), +(309,162,o), +(258,162,cs), +(208,162,o), +(170,126,o), +(170,73,cs), +(170,21,o), +(208,-14,o), +(258,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(520,629,o), +(420,704,o), +(289,704,c), +(154,704,o), +(49,638.184,o), +(30,489,c), +(184,469,l), +(193,538.742,o), +(231,563,o), +(280,563,c), +(326,563,o), +(360,541,o), +(360,504,c), +(360,414,o), +(185,416,o), +(191,254,cs), +(192,227,l), +(322,227,l), +(322,243,ls), +(322,338,o), +(520,340,o), +(520,514,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(305,-189,o), +(406,-135,o), +(452,14,c), +(305,50,l), +(285,-19,o), +(242,-48,o), +(188,-48,c), +(143,-48,o), +(121,-27,o), +(121,0,c), +(121,84,o), +(322,106,o), +(347,276,cs), +(351,303,l), +(221,303,l), +(217,287,ls), +(189,175,o), +(-40,167,o), +(-40,-14,c), +(-40,-113,o), +(42,-189,o), +(175,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(356,369,o), +(398,407,o), +(398,465,c), +(398,513,o), +(367,544,o), +(316,544,c), +(263,544,o), +(221,507,o), +(221,449,c), +(221,401,o), +(252,369,o), +(304,369,c) +); +} +); +width = 551; +} +); +unicode = 191; +}, +{ +color = 6; +glyphname = periodcentered; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(137,231,o), +(167,260,o), +(167,302,c), +(167,339,o), +(142,364,o), +(105,364,c), +(64,364,o), +(35,335,o), +(35,291,c), +(35,256,o), +(60,231,o), +(96,231,c) +); +} +); +width = 221; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(164,214,o), +(206,251,o), +(206,309,c), +(206,357,o), +(175,389,o), +(123,389,c), +(71,389,o), +(29,351,o), +(29,293,c), +(29,245,o), +(60,214,o), +(111,214,c) +); +} +); +width = 251; +} +); +unicode = 183; +}, +{ +color = 6; +glyphname = bullet; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(186,203,o), +(229,244,o), +(229,304,c), +(229,357,o), +(193,392,o), +(141,392,c), +(82,392,o), +(41,351,o), +(41,288,c), +(41,239,o), +(77,203,o), +(128,203,c) +); +} +); +width = 289; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,188,o), +(248,235,o), +(248,309,c), +(248,370,o), +(209,411,o), +(143,411,c), +(76,411,o), +(23,363,o), +(23,289,c), +(23,227,o), +(62,188,o), +(127,188,c) +); +} +); +width = 289; +} +); +unicode = 8226; +}, +{ +color = 6; +glyphname = asterisk; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(240,477,l), +(288,477,l), +(315,690,l), +(213,690,l) +); +}, +{ +closed = 1; +nodes = ( +(256,455,l), +(271,500,l), +(76,592,l), +(45,495,l) +); +}, +{ +closed = 1; +nodes = ( +(284,462,l), +(246,490,l), +(98,333,l), +(180,274,l) +); +}, +{ +closed = 1; +nodes = ( +(451,592,l), +(256,500,l), +(271,455,l), +(482,495,l) +); +}, +{ +closed = 1; +nodes = ( +(429,333,l), +(281,490,l), +(243,462,l), +(347,274,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(314,462,l), +(274,490,l), +(96,333,l), +(171,274,l) +); +}, +{ +closed = 1; +nodes = ( +(304,500,l), +(129,592,l), +(77,495,l), +(280,455,l) +); +}, +{ +closed = 1; +nodes = ( +(427,333,l), +(314,490,l), +(274,462,l), +(338,274,l) +); +}, +{ +closed = 1; +nodes = ( +(316,477,l), +(389,690,l), +(287,690,l), +(268,477,l) +); +}, +{ +closed = 1; +nodes = ( +(514,495,l), +(504,592,l), +(289,500,l), +(295,455,l) +); +} +); +width = 527; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(228,477,l), +(290,477,l), +(335,690,l), +(183,690,l) +); +}, +{ +closed = 1; +nodes = ( +(251,448,l), +(271,507,l), +(82,616,l), +(35,471,l) +); +}, +{ +closed = 1; +nodes = ( +(435,616,l), +(246,507,l), +(266,448,l), +(482,471,l) +); +}, +{ +closed = 1; +nodes = ( +(286,456,l), +(236,493,l), +(74,347,l), +(198,258,l) +); +}, +{ +closed = 1; +nodes = ( +(444,347,l), +(282,493,l), +(232,456,l), +(320,258,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,456,l), +(264,493,l), +(75,347,l), +(186,258,l) +); +}, +{ +closed = 1; +nodes = ( +(306,507,l), +(140,616,l), +(62,471,l), +(273,448,l) +); +}, +{ +closed = 1; +nodes = ( +(445,347,l), +(318,493,l), +(262,456,l), +(308,258,l) +); +}, +{ +closed = 1; +nodes = ( +(318,477,l), +(409,690,l), +(257,690,l), +(256,477,l) +); +}, +{ +closed = 1; +nodes = ( +(509,471,l), +(493,616,l), +(281,507,l), +(288,448,l) +); +} +); +width = 517; +} +); +unicode = 42; +}, +{ +color = 6; +glyphname = numbersign; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(328,0,l), +(631,690,l), +(534,690,l), +(231,0,l) +); +}, +{ +closed = 1; +nodes = ( +(519,192,l), +(537,278,l), +(6,278,l), +(-12,192,l) +); +}, +{ +closed = 1; +nodes = ( +(87,0,l), +(390,690,l), +(293,690,l), +(-10,0,l) +); +}, +{ +closed = 1; +nodes = ( +(622,428,l), +(640,514,l), +(109,514,l), +(91,428,l) +); +} +); +width = 623; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(339,0,l), +(642,690,l), +(500,690,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(505,176,l), +(532,300,l), +(6,300,l), +(-21,176,l) +); +}, +{ +closed = 1; +nodes = ( +(101,0,l), +(404,690,l), +(262,690,l), +(-41,0,l) +); +}, +{ +closed = 1; +nodes = ( +(601,406,l), +(628,530,l), +(102,530,l), +(75,406,l) +); +} +); +width = 602; +} +); +unicode = 35; +}, +{ +color = 6; +glyphname = slash; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(-2,-120,l), +(388,770,l), +(291,770,l), +(-99,-120,l) +); +} +); +width = 296; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(52,-120,l), +(442,770,l), +(291,770,l), +(-99,-120,l) +); +} +); +width = 350; +} +); +unicode = 47; +}, +{ +color = 6; +glyphname = backslash; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(190,-120,l), +(180,770,l), +(92,770,l), +(102,-120,l) +); +} +); +width = 289; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(241,-120,l), +(231,770,l), +(92,770,l), +(102,-120,l) +); +} +); +width = 340; +} +); +unicode = 92; +}, +{ +color = 6; +glyphname = periodcentered.loclCAT; +lastChange = "2024-03-21 14:01:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = periodcentered; +} +); +width = 189; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = periodcentered; +} +); +width = 251; +} +); +}, +{ +color = 6; +glyphname = period.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(275,-10,o), +(305,19,o), +(305,61,c), +(305,98,o), +(280,123,o), +(243,123,c), +(202,123,o), +(173,94,o), +(173,50,c), +(173,15,o), +(198,-10,o), +(234,-10,c) +); +} +); +width = 600; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-14,o), +(330,23,o), +(330,81,c), +(330,129,o), +(299,161,o), +(247,161,c), +(195,161,o), +(153,123,o), +(153,65,c), +(153,17,o), +(184,-14,o), +(235,-14,c) +); +} +); +width = 598; +} +); +}, +{ +color = 6; +glyphname = comma.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(196,-160,l), +(298,113,l), +(184,113,l), +(126,-160,l) +); +} +); +width = 599; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,127,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,c), +(104,6,l), +(61,-160,l), +(142,-160,l), +(186,-51,ls), +(204,-6,o), +(214,30,o), +(214,67,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(213,-159,l), +(340,148,l), +(180,148,l), +(115,-159,l) +); +} +); +width = 599; +} +); +}, +{ +color = 10; +glyphname = colon.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +pos = (189,0); +ref = colon; +} +); +width = 599; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +pos = (173,0); +ref = colon; +} +); +width = 599; +} +); +}, +{ +color = 10; +glyphname = semicolon.tf; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(162,0,l), +(162,690,l), +(58,690,l), +(58,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +pos = (189,0); +ref = semicolon; +} +); +width = 598; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +pos = (172,0); +ref = semicolon; +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = periodcentered.loclCAT.case; +lastChange = "2024-03-21 14:02:14 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = periodcentered; +} +); +width = 221; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = periodcentered; +} +); +width = 251; +} +); +}, +{ +color = 6; +glyphname = hyphen; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(297,261,l), +(316,346,l), +(61,346,l), +(42,261,l) +); +} +); +width = 374; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(298,239,l), +(325,368,l), +(51,368,l), +(24,239,l) +); +} +); +width = 365; +} +); +unicode = 45; +}, +{ +color = 6; +glyphname = endash; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(417,261,l), +(436,346,l), +(61,346,l), +(42,261,l) +); +} +); +width = 494; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(418,239,l), +(445,368,l), +(51,368,l), +(24,239,l) +); +} +); +width = 485; +} +); +unicode = 8211; +}, +{ +color = 6; +glyphname = emdash; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(767,261,l), +(786,346,l), +(31,346,l), +(12,261,l) +); +} +); +width = 814; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(772,239,l), +(799,368,l), +(26,368,l), +(-1,239,l) +); +} +); +width = 814; +} +); +unicode = 8212; +}, +{ +color = 6; +glyphname = underscore; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(344,-85,l), +(362,0,l), +(-73,0,l), +(-91,-85,l) +); +} +); +width = 434; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,-130,l), +(398,0,l), +(-73,0,l), +(-101,-130,l) +); +} +); +width = 471; +} +); +unicode = 95; +}, +{ +color = 6; +glyphname = parenleft; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,540,o), +(249,658,o), +(344,715,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-65,l), +(249,-8,o), +(169,110,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(259,-65,l), +(188,-13,o), +(156,58,o), +(156,211,c), +(156,460,o), +(291,654,o), +(425,715,c), +(395,780,l), +(200,707,o), +(57,480,o), +(57,202,c), +(57,35,o), +(110,-70,o), +(216,-126,c) +); +} +); +width = 325; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(200,543,o), +(285,659,o), +(376,706,c), +(332,802,l), +(163,746,o), +(56,586,o), +(56,325,c), +(56,64,o), +(163,-96,o), +(332,-152,c), +(376,-56,l), +(285,-9,o), +(200,106,o), +(200,325,c) +); +}, +{ +closed = 1; +nodes = ( +(815,543,o), +(925,659,o), +(1026,706,c), +(1002,802,l), +(822,746,o), +(681,586,o), +(625,325,c), +(570,64,o), +(643,-96,o), +(800,-152,c), +(864,-56,l), +(783,-9,o), +(723,106,o), +(769,325,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-56,l), +(218,-9,o), +(186,58,o), +(186,210,c), +(186,438,o), +(328,658,o), +(454,706,c), +(414,800,l), +(200,744,o), +(43,472,o), +(43,198,c), +(43,16,o), +(106,-94,o), +(234,-147,c) +); +} +); +width = 352; +} +); +unicode = 40; +}, +{ +color = 6; +glyphname = parenright; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,540,o), +(249,658,o), +(344,715,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-65,l), +(249,-8,o), +(169,110,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(118,-57,o), +(261,170,o), +(261,448,c), +(261,615,o), +(208,720,o), +(102,776,c), +(59,715,l), +(130,663,o), +(162,592,o), +(162,439,c), +(162,190,o), +(27,-4,o), +(-107,-65,c), +(-77,-130,l) +); +} +); +width = 325; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(200,543,o), +(285,659,o), +(376,706,c), +(332,802,l), +(163,746,o), +(56,586,o), +(56,325,c), +(56,64,o), +(163,-96,o), +(332,-152,c), +(376,-56,l), +(285,-9,o), +(200,106,o), +(200,325,c) +); +}, +{ +closed = 1; +nodes = ( +(815,543,o), +(925,659,o), +(1026,706,c), +(1002,802,l), +(822,746,o), +(681,586,o), +(625,325,c), +(570,64,o), +(643,-96,o), +(800,-152,c), +(864,-56,l), +(783,-9,o), +(723,106,o), +(769,325,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(145,-94,o), +(302,178,o), +(302,452,c), +(302,634,o), +(239,744,o), +(111,797,c), +(53,706,l), +(127,659,o), +(159,592,o), +(159,440,c), +(159,212,o), +(17,-8,o), +(-109,-56,c), +(-69,-150,l) +); +} +); +width = 350; +} +); +unicode = 41; +}, +{ +color = 6; +glyphname = braceleft; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(216,335,o), +(263,292,o), +(263,234,c), +(263,150,o), +(185,128,o), +(185,51,c), +(185,-6.368,o), +(235,-50.351,o), +(343,-58,c), +(335,-135,l), +(159,-121.629,o), +(86,-47.571,o), +(86,45,c), +(86,139,o), +(174,178,o), +(174,231,c), +(174,262,o), +(155,284,o), +(116,284,c), +(75,284,l), +(75,366,l), +(116,366,l), +(155,366,o), +(174,388,o), +(174,419,c), +(174,472,o), +(86,511,o), +(86,605,c), +(86,697.571,o), +(159,771.629,o), +(335,785,c), +(343,708,l), +(235,700.351,o), +(185,656.368,o), +(185,599,c), +(185,522,o), +(263,500,o), +(263,416,c), +(263,358,o), +(216,315,o), +(140,311,c), +(140,339,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(258,-58,l), +(165,-49,o), +(118,-20,o), +(118,23,c), +(118,103,o), +(242,142,o), +(242,250,c), +(242,302,o), +(202,326,o), +(136,330,c), +(130,310,l), +(230,307,o), +(281,363,o), +(281,429,c), +(281,490,o), +(237,524,o), +(237,582,c), +(237,648,o), +(296,699,o), +(420,708,c), +(418,785,l), +(229,777,o), +(139,697,o), +(139,591,c), +(139,514,o), +(191,472,o), +(191,429,cs), +(191,390,o), +(167,366,o), +(115,366,c), +(79,366,l), +(61,284,l), +(103,284,l), +(136,284,o), +(151,272,o), +(151,245,cs), +(151,159,o), +(20,123,o), +(20,11,cs), +(20,-56,o), +(82,-114,o), +(233,-135,c) +); +} +); +width = 337; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(217.179,325.381,o), +(266,284,o), +(266,234,c), +(266,156,o), +(195,120,o), +(195,51,c), +(195,4,o), +(243,-32,o), +(354,-46,c), +(340,-152,l), +(142.795,-137.761,o), +(61,-62.636,o), +(61,35,c), +(61,134.054,o), +(140,173,o), +(140,229,c), +(140,254,o), +(124,272,o), +(92,272,c), +(50,272,l), +(50,378,l), +(92,378,l), +(124,378,o), +(140,396,o), +(140,421,c), +(140,477,o), +(61,515.946,o), +(61,615,c), +(61,712.636,o), +(142.795,787.761,o), +(340,802,c), +(354,696,l), +(243,682,o), +(195,646,o), +(195,599,c), +(195,530,o), +(266,494,o), +(266,416,c), +(266,366,o), +(217.179,324.619,o), +(135,321,c), +(135,329,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,-46,l), +(174,-33,o), +(130,-7,o), +(130,28,c), +(130,88,o), +(245,140,o), +(245,231,c), +(245,282,o), +(208,314,o), +(135,324,c), +(133,316,l), +(231,321,o), +(283,368,o), +(283,432,c), +(283,489,o), +(247,542,o), +(247,592,c), +(247,634,o), +(289,677,o), +(429,696,c), +(425,802,l), +(204,793,o), +(117,696,o), +(117,592,c), +(117,526,o), +(157,477,o), +(157,434,cs), +(157,400,o), +(143,378,o), +(96,378,c), +(57,378,l), +(35,272,l), +(77,272,l), +(107,272,o), +(117,259,o), +(117,239,cs), +(117,179,o), +(-5,117,o), +(-5,16,cs), +(-5,-66,o), +(68,-140,o), +(240,-152,c) +); +} +); +width = 345; +} +); +unicode = 123; +}, +{ +color = 6; +glyphname = braceright; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(216,335,o), +(263,292,o), +(263,234,c), +(263,150,o), +(185,128,o), +(185,51,c), +(185,-6.368,o), +(235,-50.351,o), +(343,-58,c), +(335,-135,l), +(159,-121.629,o), +(86,-47.571,o), +(86,45,c), +(86,139,o), +(174,178,o), +(174,231,c), +(174,262,o), +(155,284,o), +(116,284,c), +(75,284,l), +(75,366,l), +(116,366,l), +(155,366,o), +(174,388,o), +(174,419,c), +(174,472,o), +(86,511,o), +(86,605,c), +(86,697.571,o), +(159,771.629,o), +(335,785,c), +(343,708,l), +(235,700.351,o), +(185,656.368,o), +(185,599,c), +(185,522,o), +(263,500,o), +(263,416,c), +(263,358,o), +(216,315,o), +(140,311,c), +(140,339,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(101,-127,o), +(191,-47,o), +(191,59,c), +(191,136,o), +(139,178,o), +(139,221,cs), +(139,260,o), +(163,284,o), +(215,284,c), +(251,284,l), +(269,366,l), +(227,366,l), +(194,366,o), +(179,378,o), +(179,405,cs), +(179,491,o), +(310,527,o), +(310,639,cs), +(310,706,o), +(248,764,o), +(97,785,c), +(72,708,l), +(165,699,o), +(212,670,o), +(212,627,c), +(212,547,o), +(88,508,o), +(88,400,c), +(88,348,o), +(128,324,o), +(194,320,c), +(200,340,l), +(100,343,o), +(49,287,o), +(49,221,c), +(49,160,o), +(93,126,o), +(93,68,c), +(93,2,o), +(34,-49,o), +(-90,-58,c), +(-88,-135,l) +); +} +); +width = 338; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(217.179,325.381,o), +(266,284,o), +(266,234,c), +(266,156,o), +(195,120,o), +(195,51,c), +(195,4,o), +(243,-32,o), +(354,-46,c), +(340,-152,l), +(142.795,-137.761,o), +(61,-62.636,o), +(61,35,c), +(61,134.054,o), +(140,173,o), +(140,229,c), +(140,254,o), +(124,272,o), +(92,272,c), +(50,272,l), +(50,378,l), +(92,378,l), +(124,378,o), +(140,396,o), +(140,421,c), +(140,477,o), +(61,515.946,o), +(61,615,c), +(61,712.636,o), +(142.795,787.761,o), +(340,802,c), +(354,696,l), +(243,682,o), +(195,646,o), +(195,599,c), +(195,530,o), +(266,494,o), +(266,416,c), +(266,366,o), +(217.179,324.619,o), +(135,321,c), +(135,329,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,-143,o), +(221,-46,o), +(221,58,c), +(221,124,o), +(181,173,o), +(181,216,cs), +(181,250,o), +(195,272,o), +(242,272,c), +(281,272,l), +(303,378,l), +(261,378,l), +(231,378,o), +(221,391,o), +(221,411,cs), +(221,471,o), +(343,533,o), +(343,634,cs), +(343,716,o), +(270,790,o), +(98,802,c), +(67,696,l), +(164,683,o), +(208,657,o), +(208,622,c), +(208,562,o), +(93,510,o), +(93,419,c), +(93,368,o), +(130,336,o), +(203,326,c), +(205,334,l), +(107,329,o), +(55,282,o), +(55,218,c), +(55,161,o), +(91,108,o), +(91,58,c), +(91,16,o), +(49,-27,o), +(-91,-46,c), +(-87,-152,l) +); +} +); +width = 345; +} +); +unicode = 125; +}, +{ +color = 6; +glyphname = bracketleft; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(70,-120,l), +(260,770,l), +(170,770,l), +(-20,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(216,-120,l), +(233,-40,l), +(27,-40,l), +(10,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(389,690,l), +(406,770,l), +(200,770,l), +(183,690,l) +); +} +); +width = 309; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,-120,l), +(300,770,l), +(161,770,l), +(-29,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(213,-120,l), +(241,10,l), +(47,10,l), +(19,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(375,640,l), +(403,770,l), +(209,770,l), +(181,640,l) +); +} +); +width = 321; +} +); +unicode = 91; +}, +{ +color = 6; +glyphname = bracketright; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(132,-120,l), +(322,770,l), +(232,770,l), +(42,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(102,-120,l), +(119,-40,l), +(-87,-40,l), +(-104,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(275,690,l), +(292,770,l), +(86,770,l), +(69,690,l) +); +} +); +width = 310; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,-120,l), +(343,770,l), +(204,770,l), +(14,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(105,-120,l), +(133,10,l), +(-61,10,l), +(-89,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(267,640,l), +(295,770,l), +(101,770,l), +(73,640,l) +); +} +); +width = 321; +} +); +unicode = 93; +}, +{ +color = 6; +glyphname = quotesinglbase; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(7,-160,l), +(109,113,l), +(-5,113,l), +(-63,-160,l) +); +} +); +width = 192; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,127,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,c), +(104,6,l), +(61,-160,l), +(142,-160,l), +(186,-51,ls), +(204,-6,o), +(214,30,o), +(214,67,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(39,-159,l), +(166,148,l), +(6,148,l), +(-59,-159,l) +); +} +); +width = 246; +} +); +unicode = 8218; +}, +{ +color = 6; +glyphname = quotedblbase; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(167,-160,l), +(269,113,l), +(155,113,l), +(97,-160,l) +); +}, +{ +closed = 1; +nodes = ( +(7,-160,l), +(109,113,l), +(-5,113,l), +(-63,-160,l) +); +} +); +width = 352; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,-159,l), +(366,148,l), +(206,148,l), +(141,-159,l) +); +}, +{ +closed = 1; +nodes = ( +(39,-159,l), +(166,148,l), +(6,148,l), +(-59,-159,l) +); +} +); +width = 446; +} +); +unicode = 8222; +}, +{ +color = 6; +glyphname = quotedblleft; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(165,417,l), +(223,690,l), +(153,690,l), +(51,417,l) +); +}, +{ +closed = 1; +nodes = ( +(325,417,l), +(383,690,l), +(313,690,l), +(211,417,l) +); +} +); +width = 352; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,669,o), +(175,704,o), +(125,704,cs), +(74,704,o), +(36,668,o), +(36,615,cs), +(36,563,o), +(74,528,o), +(125,528,c), +(104,548,l), +(62,382,l), +(142,382,l), +(186,491,ls), +(204,536,o), +(214,572,o), +(214,609,c) +); +}, +{ +closed = 1; +nodes = ( +(420,669,o), +(381,704,o), +(331,704,cs), +(280,704,o), +(242,668,o), +(242,615,cs), +(242,563,o), +(280,528,o), +(331,528,c), +(310,548,l), +(268,382,l), +(348,382,l), +(392,491,ls), +(410,536,o), +(420,572,o), +(420,609,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,383,l), +(272,690,l), +(174,690,l), +(46,383,l) +); +}, +{ +closed = 1; +nodes = ( +(406,383,l), +(472,690,l), +(374,690,l), +(246,383,l) +); +} +); +width = 445; +} +); +unicode = 8220; +}, +{ +color = 6; +glyphname = quotedblright; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(291,417,l), +(393,690,l), +(279,690,l), +(221,417,l) +); +}, +{ +closed = 1; +nodes = ( +(131,417,l), +(233,690,l), +(119,690,l), +(61,417,l) +); +} +); +width = 352; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,669,o), +(175,704,o), +(125,704,cs), +(74,704,o), +(36,668,o), +(36,615,cs), +(36,563,o), +(74,528,o), +(125,528,c), +(104,548,l), +(62,382,l), +(142,382,l), +(186,491,ls), +(204,536,o), +(214,572,o), +(214,609,c) +); +}, +{ +closed = 1; +nodes = ( +(420,669,o), +(381,704,o), +(331,704,cs), +(280,704,o), +(242,668,o), +(242,615,cs), +(242,563,o), +(280,528,o), +(331,528,c), +(310,548,l), +(268,382,l), +(348,382,l), +(392,491,ls), +(410,536,o), +(420,572,o), +(420,609,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(354,383,l), +(482,690,l), +(322,690,l), +(256,383,l) +); +}, +{ +closed = 1; +nodes = ( +(154,383,l), +(282,690,l), +(122,690,l), +(56,383,l) +); +} +); +width = 445; +} +); +unicode = 8221; +}, +{ +color = 6; +glyphname = quoteleft; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(165,417,l), +(223,690,l), +(153,690,l), +(51,417,l) +); +} +); +width = 192; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(36,403,o), +(75,368,o), +(125,368,cs), +(176,368,o), +(214,404,o), +(214,457,cs), +(214,509,o), +(176,544,o), +(125,544,c), +(146,524,l), +(188,690,l), +(108,690,l), +(64,581,ls), +(46,536,o), +(36,500,o), +(36,463,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,383,l), +(272,690,l), +(174,690,l), +(46,383,l) +); +} +); +width = 245; +} +); +unicode = 8216; +}, +{ +color = 6; +glyphname = quoteright; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(131,417,l), +(233,690,l), +(119,690,l), +(61,417,l) +); +} +); +width = 192; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,669,o), +(175,704,o), +(124,704,cs), +(74,704,o), +(36,669,o), +(36,616,cs), +(36,564,o), +(74,528,o), +(124,528,c), +(104,549,l), +(61,383,l), +(142,383,l), +(186,492,ls), +(204,537,o), +(214,572,o), +(214,610,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,383,l), +(282,690,l), +(122,690,l), +(56,383,l) +); +} +); +width = 245; +} +); +unicode = 8217; +}, +{ +color = 6; +glyphname = guillemetleft; +kernLeft = F; +kernRight = K; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(392,80,l), +(290,280,l), +(481,500,l), +(366,500,l), +(217,323,l), +(203,257,l), +(293,80,l) +); +}, +{ +closed = 1; +nodes = ( +(192,80,l), +(90,280,l), +(281,500,l), +(166,500,l), +(17,323,l), +(3,257,l), +(93,80,l) +); +} +); +width = 453; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,76,l), +(354,275,l), +(542,504,l), +(374,504,l), +(236,327,l), +(220,253,l), +(304,76,l) +); +}, +{ +closed = 1; +nodes = ( +(229,76,l), +(132,275,l), +(320,504,l), +(152,504,l), +(14,327,l), +(-2,253,l), +(82,76,l) +); +} +); +width = 508; +} +); +unicode = 171; +}, +{ +color = 6; +glyphname = guillemetright; +kernLeft = E; +kernRight = J; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(264,80,l), +(413,257,l), +(427,323,l), +(337,500,l), +(238,500,l), +(340,300,l), +(149,80,l) +); +}, +{ +closed = 1; +nodes = ( +(64,80,l), +(213,257,l), +(227,323,l), +(137,500,l), +(38,500,l), +(140,300,l), +(-51,80,l) +); +} +); +width = 450; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(333,76,l), +(471,253,l), +(487,327,l), +(403,504,l), +(256,504,l), +(353,305,l), +(165,76,l) +); +}, +{ +closed = 1; +nodes = ( +(111,76,l), +(249,253,l), +(265,327,l), +(181,504,l), +(34,504,l), +(131,305,l), +(-57,76,l) +); +} +); +width = 505; +} +); +unicode = 187; +}, +{ +color = 6; +glyphname = guilsinglleft; +kernLeft = F; +kernRight = K; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(192,80,l), +(90,280,l), +(281,500,l), +(166,500,l), +(17,323,l), +(3,257,l), +(93,80,l) +); +} +); +width = 253; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,76,l), +(132,275,l), +(320,504,l), +(152,504,l), +(14,327,l), +(-2,253,l), +(82,76,l) +); +} +); +width = 286; +} +); +unicode = 8249; +}, +{ +color = 6; +glyphname = guilsinglright; +kernLeft = E; +kernRight = J; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(64,80,l), +(213,257,l), +(227,323,l), +(137,500,l), +(38,500,l), +(140,300,l), +(-51,80,l) +); +} +); +width = 250; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,76,l), +(249,253,l), +(265,327,l), +(181,504,l), +(34,504,l), +(131,305,l), +(-57,76,l) +); +} +); +width = 283; +} +); +unicode = 8250; +}, +{ +color = 6; +glyphname = quotedbl; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(313,417,l), +(393,690,l), +(279,690,l), +(243,417,l) +); +}, +{ +closed = 1; +nodes = ( +(153,417,l), +(233,690,l), +(119,690,l), +(83,417,l) +); +} +); +width = 362; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(190,670,o), +(157,704,o), +(113,704,cs), +(68,704,o), +(36,670,o), +(36,622,c), +(36,597,o), +(39,579,o), +(44,554,cs), +(75,383,l), +(150,383,l), +(182,554,ls), +(187,579,o), +(190,597,o), +(190,622,c) +); +}, +{ +closed = 1; +nodes = ( +(374,670,o), +(341,704,o), +(296,704,cs), +(251,704,o), +(219,670,o), +(219,622,c), +(219,597,o), +(222,579,o), +(227,554,cs), +(258,383,l), +(334,383,l), +(365,554,ls), +(370,579,o), +(374,597,o), +(374,622,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(363,383,l), +(464,690,l), +(300,690,l), +(269,383,l) +); +}, +{ +closed = 1; +nodes = ( +(169,383,l), +(270,690,l), +(106,690,l), +(75,383,l) +); +} +); +width = 420; +} +); +unicode = 34; +}, +{ +color = 6; +glyphname = quotesingle; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(153,417,l), +(233,690,l), +(119,690,l), +(83,417,l) +); +} +); +width = 202; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,383,l), +(270,690,l), +(106,690,l), +(75,383,l) +); +} +); +width = 226; +} +); +unicode = 39; +}, +{ +color = 6; +glyphname = florin; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(73,-185,o), +(138,-138,o), +(163,-21,c), +(286,557,ls), +(297,610,o), +(328,636,o), +(376,636,c), +(399,636,o), +(419,630,o), +(439,621,c), +(457,708,l), +(431,718,o), +(403,725,o), +(371,725,c), +(277,725,o), +(212,678,o), +(187,561,cs), +(64,-17,l), +(53,-70,o), +(22,-96,o), +(-26,-96,c), +(-49,-96,o), +(-69,-90,o), +(-89,-81,c), +(-107,-168,l), +(-81,-178,o), +(-53,-185,o), +(-21,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(396,443,l), +(415,530,l), +(106,530,l), +(87,443,l) +); +} +); +width = 449; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(317,603,o), +(340,598,o), +(364,592,c), +(364,715,l), +(332,724,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(358,407,l), +(358,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(81,-189,o), +(163,-143,o), +(190,-14,cs), +(308,541,ls), +(317,582,o), +(343,603,o), +(384,603,c), +(412,603,o), +(436,597,o), +(457,589,c), +(483,712,l), +(454,723,o), +(414,729,o), +(374,729,c), +(271,729,o), +(189,683,o), +(162,554,cs), +(44,-1,ls), +(35,-42,o), +(9,-63,o), +(-32,-63,c), +(-60,-63,o), +(-84,-57,o), +(-105,-49,c), +(-131,-172,l), +(-102,-183,o), +(-62,-189,o), +(-22,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(413,407,l), +(439,530,l), +(91,530,l), +(65,407,l) +); +} +); +width = 465; +} +); +unicode = 402; +}, +{ +color = 6; +glyphname = at; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(400,-149,o), +(459,-136,o), +(521,-109,c), +(493,-35,l), +(443,-58,o), +(400,-69,o), +(333,-69,cs), +(202,-69,o), +(109,30,o), +(109,200,cs), +(109,428,o), +(270,620,o), +(507,620,cs), +(655,620,o), +(755,522,o), +(755,350,cs), +(755,195,o), +(680,70,o), +(631,70,cs), +(595,70,o), +(603,130,o), +(609,157,cs), +(680,490,l), +(580,490,l), +(567,427,l), +(548,474,o), +(504,500,o), +(445,500,cs), +(318,500,o), +(207,372,o), +(207,201,cs), +(207,100,o), +(260,30,o), +(349,30,cs), +(411,30,o), +(465,58,o), +(503,109,c), +(503,19,o), +(554,-10,o), +(615,-10,cs), +(746,-10,o), +(846,150,o), +(846,357,cs), +(846,572,o), +(708,700,o), +(514,700,cs), +(220,700,o), +(19,470,o), +(19,192,cs), +(19,-15,o), +(149,-149,o), +(326,-149,cs) +); +}, +{ +closed = 1; +nodes = ( +(344,118,o), +(311,146,o), +(311,215,cs), +(311,335,o), +(380,412,o), +(459,412,cs), +(511,412,o), +(544,384,o), +(544,320,cs), +(544,214,o), +(474,118,o), +(396,118,cs) +); +} +); +width = 894; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(497.182,387,o), +(534,350.483,o), +(534,265,c), +(534,179.517,o), +(497.182,143,o), +(444,143,c), +(390.818,143,o), +(354,179.517,o), +(354,265,c), +(354,350.483,o), +(390.818,387,o), +(444,387,c) +); +}, +{ +closed = 1; +nodes = ( +(557,309,l), +(557,440.581,o), +(496.975,515,o), +(406,515,c), +(289.29,515,o), +(205,421.383,o), +(205,265,c), +(205,108.617,o), +(289.29,15,o), +(406,15,c), +(496.975,15,o), +(557,89.419,o), +(557,221,c) +); +}, +{ +closed = 1; +nodes = ( +(759,136.163,o), +(732,91,o), +(706,91,c), +(686,91,o), +(674,100.724,o), +(674,157,c), +(674,505,l), +(529,505,l), +(529,367,l), +(544,265,l), +(529,162,l), +(531,128,ls), +(535.588,54,o), +(579,-10,o), +(675,-10,c), +(777,-10,o), +(854,84,o), +(854,285,c), +(854,534,o), +(697,704,o), +(456,704,c), +(219,704,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(197,-153,o), +(413,-153,c), +(487,-153,o), +(556,-133,o), +(611,-99,c), +(572,-25,l), +(527,-53,o), +(480,-68,o), +(413,-68,c), +(250,-68,o), +(135,66.024,o), +(135,265,cs), +(135,478.944,o), +(272,619,o), +(456,619,c), +(644,619,o), +(759,486.94,o), +(759,285,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,-149,o), +(459,-136,o), +(521,-109,c), +(493,-35,l), +(443,-58,o), +(400,-69,o), +(333,-69,cs), +(202,-69,o), +(109,30,o), +(109,200,cs), +(109,428,o), +(270,620,o), +(507,620,cs), +(655,620,o), +(755,522,o), +(755,350,cs), +(755,195,o), +(696,91,o), +(652,91,cs), +(632,91,o), +(622,101,o), +(634,157,cs), +(708,505,l), +(563,505,l), +(549,438,l), +(531,488,o), +(488,515,o), +(429,515,cs), +(292,515,o), +(179,384,o), +(179,209,cs), +(179,87,o), +(240,15,o), +(336,15,cs), +(394,15,o), +(446,45,o), +(483,101,c), +(483,39,o), +(516,-10,o), +(600,-10,cs), +(746,-10,o), +(846,150,o), +(846,357,cs), +(846,572,o), +(708,700,o), +(514,700,cs), +(220,700,o), +(19,470,o), +(19,192,cs), +(19,-15,o), +(149,-149,o), +(326,-149,cs) +); +}, +{ +closed = 1; +nodes = ( +(359,143,o), +(332,167,o), +(332,226,cs), +(332,320,o), +(389,387,o), +(453,387,cs), +(495,387,o), +(522,363,o), +(522,307,cs), +(522,212,o), +(466,143,o), +(401,143,cs) +); +} +); +width = 894; +} +); +unicode = 64; +}, +{ +color = 6; +glyphname = ampersand; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(175,331,ls), +(108,411,o), +(75,463,o), +(75,525,c), +(75,616,o), +(147,700,o), +(264,700,c), +(370,700,o), +(444,624,o), +(444,539,c), +(444,337,o), +(125,347,o), +(125,171,c), +(125,118,o), +(164,80,o), +(243,80,c), +(367,80,o), +(457,180,o), +(476,339,c), +(570,323,l), +(538,115,o), +(405,-10,o), +(238,-10,c), +(97,-10,o), +(22,68,o), +(22,159,c), +(22,384,o), +(345,378,o), +(345,534,c), +(345,578,o), +(310,613,o), +(262,613,c), +(210,613,o), +(175,578,o), +(175,530,c), +(175,488,o), +(190,461,o), +(228,417,cs), +(581,0,l), +(453,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(490,115,o), +(567,323,c), +(472,343,l), +(413,184,o), +(300,80,o), +(188,80,c), +(119,80,o), +(87,113,o), +(87,157,cs), +(87,352,o), +(486,331,o), +(486,557,c), +(486,635,o), +(417,700,o), +(324,700,c), +(200,700,o), +(112,615,o), +(112,508,c), +(112,452,o), +(141,398,o), +(183,331,cs), +(391,0,l), +(509,0,l), +(245,417,ls), +(223,450,o), +(213,474,o), +(213,505,c), +(213,573,o), +(256,613,o), +(313,613,c), +(361,613,o), +(389,586,o), +(389,550,cs), +(389,374,o), +(-16,397,o), +(-16,145,c), +(-16,63,o), +(48,-10,o), +(173,-10,c) +); +} +); +width = 592; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(168,319,ls), +(97,397,o), +(70,450,o), +(70,516,c), +(70,615,o), +(148,704,o), +(280,704,c), +(406,704,o), +(481,623,o), +(481,525,c), +(482,305,o), +(166,342,o), +(166,192,c), +(166,148,o), +(193,116,o), +(259,116,c), +(381,116,o), +(467,208,o), +(496,362,c), +(634,323,l), +(586,112,o), +(435,-14,o), +(249,-14,c), +(86,-14,o), +(17,72,o), +(17,167,c), +(17,411,o), +(343,367,o), +(342,515,c), +(342,550,o), +(317,579,o), +(279,579,c), +(240,579,o), +(215,549,o), +(215,514,c), +(215,477,o), +(233,446,o), +(264,413,cs), +(650,0,l), +(460,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(369,-14,o), +(537,112,o), +(630,323,c), +(494,364,l), +(438,208,o), +(333,116,o), +(216,116,c), +(160,116,o), +(136,147,o), +(136,184,c), +(136,364,o), +(521,285,o), +(521,542,c), +(521,633,o), +(448,704,o), +(328,704,c), +(185,704,o), +(102,606,o), +(102,498,c), +(102,436,o), +(131,379,o), +(173,319,cs), +(397,0,l), +(577,0,l), +(279,413,ls), +(260,439,o), +(249,464,o), +(249,492,cs), +(249,541,o), +(278,579,o), +(323,579,c), +(358,579,o), +(380,558,o), +(380,525,c), +(380,356,o), +(-19,431,o), +(-19,152,c), +(-19,68,o), +(47,-14,o), +(189,-14,c) +); +} +); +width = 647; +} +); +unicode = 38; +}, +{ +color = 6; +glyphname = paragraph; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(350,-120,l), +(523,690,l), +(433,690,l), +(260,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(530,-120,l), +(703,690,l), +(613,690,l), +(440,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(280,690,o), +(168,602,o), +(139,465,cs), +(135,445,o), +(133,426,o), +(133,409,cs), +(133,304,o), +(204,240,o), +(320,240,c), +(380,240,l), +(476,690,l), +(416,690,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(311,240,l), +(407,690,l), +(329,690,l), +(173,690,o), +(64,574,o), +(64,429,c), +(64,304,o), +(145,240,o), +(261,240,c) +); +}, +{ +closed = 1; +nodes = ( +(277,-120,l), +(450,690,l), +(360,690,l), +(187,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(457,-120,l), +(630,690,l), +(540,690,l), +(367,-120,l) +); +} +); +width = 635; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(130.031,690,o), +(35,600.044,o), +(35,460,cs), +(35,319.956,o), +(130.031,230,o), +(269,230,c), +(349,230,l), +(349,690,l), +(269,690,l) +); +}, +{ +closed = 1; +nodes = ( +(625,-120,l), +(625,690,l), +(486,690,l), +(486,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(425,-120,l), +(425,690,l), +(286,690,l), +(286,-120,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(326,230,l), +(424,690,l), +(334,690,l), +(175,690,o), +(59,566,o), +(59,422,c), +(59,296,o), +(137,230,o), +(250,230,c) +); +}, +{ +closed = 1; +nodes = ( +(327,-120,l), +(500,690,l), +(361,690,l), +(188,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(527,-120,l), +(700,690,l), +(561,690,l), +(388,-120,l) +); +} +); +width = 697; +} +); +unicode = 182; +}, +{ +color = 6; +glyphname = section; +lastChange = "2024-03-21 14:18:51 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(493,126,o), +(556,188,o), +(556,265,c), +(556,483,o), +(198,397,o), +(198,535,c), +(198,575,o), +(233,607,o), +(290,607,c), +(349,607,o), +(389,577,o), +(409,514,c), +(509,547,l), +(480,643,o), +(405,700,o), +(299,700,c), +(173,700,o), +(93,622,o), +(93,534,c), +(93,451,o), +(142,411,o), +(204,386,c), +(204,394,l), +(103,389,o), +(40,327,o), +(40,250,c), +(40,32,o), +(398,118,o), +(398,-20,c), +(398,-60,o), +(363,-92,o), +(306,-92,c), +(247,-92,o), +(207,-62,o), +(187,1,c), +(87,-32,l), +(116,-128,o), +(191,-185,o), +(297,-185,c), +(423,-185,o), +(503,-107,o), +(503,-19,c), +(503,64,o), +(454,104,o), +(392,129,c), +(392,121,l) +); +}, +{ +closed = 1; +nodes = ( +(138,320,o), +(179,355,o), +(241,355,c), +(331,355,o), +(458,319,o), +(458,244,c), +(458,195,o), +(417,160,o), +(355,160,c), +(265,160,o), +(138,196,o), +(138,271,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(351,-185,o), +(425,-88,o), +(425,0,c), +(425,60,o), +(395,108,o), +(347,123,c), +(345,118,l), +(464,114,o), +(540,195,o), +(540,272,c), +(540,461,o), +(237,400,o), +(237,530,c), +(237,572,o), +(282,607,o), +(341,607,c), +(405,607,o), +(439,577,o), +(450,515,c), +(552,547,l), +(534,643,o), +(450,700,o), +(351,700,c), +(209,700,o), +(135,603,o), +(135,513,c), +(135,455,o), +(165,407,o), +(213,391,c), +(215,397,l), +(96,401,o), +(20,320,o), +(20,243,c), +(20,54,o), +(323,115,o), +(323,-13,c), +(323,-57,o), +(278,-92,o), +(219,-92,c), +(155,-92,o), +(121,-62,o), +(110,0,c), +(8,-32,l), +(26,-128,o), +(110,-185,o), +(209,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(232,160,o), +(122,192,o), +(122,264,c), +(122,316,o), +(169,355,o), +(243,355,c), +(328,355,o), +(438,323,o), +(438,251,c), +(438,199,o), +(391,160,o), +(317,160,c) +); +} +); +width = 596; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(162,315,o), +(192,342,o), +(251,342,c), +(321,342,o), +(442,309,o), +(442,235,c), +(442,200,o), +(412,173,o), +(353,173,c), +(283,173,o), +(162,206,o), +(162,280,c) +); +}, +{ +closed = 1; +nodes = ( +(112,391,o), +(35,333,o), +(35,233,c), +(35,5,o), +(393,72,o), +(393,-30,c), +(393,-55,o), +(368,-74,o), +(325,-74,c), +(271,-74,o), +(234,-43,o), +(217,16,c), +(77,-32,l), +(109,-128,o), +(193,-189,o), +(312,-189,c), +(455,-189,o), +(538,-109,o), +(538,-15,c), +(538,55,o), +(496,107,o), +(432,129,c), +(396,116,l), +(503,124,o), +(580,182,o), +(580,282,c), +(580,510,o), +(222,443,o), +(222,545,c), +(222,570,o), +(247,589,o), +(290,589,c), +(344,589,o), +(380.521,558.342,o), +(398,499,c), +(538,547,l), +(505.548,643,o), +(421.619,704,o), +(303,704,c), +(160,704,o), +(77,624,o), +(77,530,c), +(77,460,o), +(119,408,o), +(183,386,c), +(219,399,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(375,-189,o), +(462,-95,o), +(462,-1,c), +(462,49,o), +(432,106,o), +(369,129,c), +(357,116,l), +(480,119,o), +(565,193,o), +(565,285,c), +(565,484,o), +(261,432,o), +(261,537,cs), +(261,564,o), +(288,589,o), +(339,589,c), +(393,589,o), +(423,558,o), +(437,500,c), +(578,547,l), +(556,643,o), +(471,704,o), +(363,704,c), +(202,704,o), +(115,610,o), +(115,516,c), +(115,466,o), +(145,409,o), +(208,386,c), +(220,399,l), +(97,401,o), +(12,322,o), +(12,230,c), +(12,31,o), +(316,83,o), +(316,-22,cs), +(316,-49,o), +(289,-74,o), +(238,-74,c), +(184,-74,o), +(154,-43,o), +(140,15,c), +(-1,-32,l), +(21,-128,o), +(106,-189,o), +(214,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(219,173,o), +(144,202,o), +(144,272,c), +(144,310,o), +(184,342,o), +(248,342,c), +(343,342,o), +(418,313,o), +(418,243,c), +(418,205,o), +(378,173,o), +(314,173,c) +); +} +); +width = 615; +} +); +unicode = 167; +}, +{ +color = 6; +glyphname = copyright; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(607,-10,o), +(757,150,o), +(757,345,cs), +(757,540,o), +(607,700,o), +(406,700,cs), +(205,700,o), +(55,540,o), +(55,345,cs), +(55,150,o), +(205,-10,o), +(406,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,65,o), +(135,191,o), +(135,345,cs), +(135,499,o), +(251,625,o), +(406,625,cs), +(561,625,o), +(677,499,o), +(677,345,cs), +(677,191,o), +(561,65,o), +(406,65,cs) +); +}, +{ +closed = 1; +nodes = ( +(487,137,o), +(546,177,o), +(569,254,c), +(488,276,l), +(475,230,o), +(448,211,o), +(406,211,c), +(352,211,o), +(315,251,o), +(315,340,cs), +(315,429,o), +(352,469,o), +(406,469,c), +(448,469,o), +(475,450,o), +(490,405,c), +(569,428,l), +(546,503,o), +(487,543,o), +(410,543,cs), +(302,543,o), +(228,463,o), +(228,340,cs), +(228,216,o), +(302,137,o), +(410,137,c) +); +} +); +width = 809; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,80,o), +(145,199,o), +(145,345,cs), +(145,491,o), +(255,610,o), +(401,610,cs), +(547,610,o), +(657,491,o), +(657,345,cs), +(657,199,o), +(547,80,o), +(401,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(484,137,o), +(545,177,o), +(571,254,c), +(475,286,l), +(463,243,o), +(440,226,o), +(403,226,c), +(355,226,o), +(322,261,o), +(322,340,cs), +(322,419,o), +(355,454,o), +(403,454,c), +(440,454,o), +(464,437,o), +(477,395,c), +(571,428,l), +(545,503,o), +(484,543,o), +(407,543,cs), +(296,543,o), +(218,463,o), +(218,340,cs), +(218,216,o), +(296,137,o), +(407,137,c) +); +} +); +width = 799; +} +); +unicode = 169; +}, +{ +color = 6; +glyphname = registered; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(347,211,o), +(310,251,o), +(310,340,cs), +(310,429,o), +(347,469,o), +(401,469,c), +(443,469,o), +(470,450,o), +(485,405,c), +(564,428,l), +(541,503,o), +(482,543,o), +(405,543,cs), +(297,543,o), +(223,463,o), +(223,340,cs), +(223,216,o), +(297,137,o), +(405,137,c), +(482,137,o), +(541,177,o), +(564,254,c), +(483,276,l), +(470,230,o), +(443,211,o), +(401,211,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(607,-10,o), +(757,150,o), +(757,345,cs), +(757,540,o), +(607,700,o), +(406,700,cs), +(205,700,o), +(55,540,o), +(55,345,cs), +(55,150,o), +(205,-10,o), +(406,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,65,o), +(135,191,o), +(135,345,cs), +(135,499,o), +(251,625,o), +(406,625,cs), +(561,625,o), +(677,499,o), +(677,345,cs), +(677,191,o), +(561,65,o), +(406,65,cs) +); +}, +{ +closed = 1; +nodes = ( +(343,142,l), +(343,540,l), +(259,540,l), +(259,142,l) +); +}, +{ +closed = 1; +nodes = ( +(576,142,l), +(467,304,l), +(374,304,l), +(477,142,l) +); +}, +{ +closed = 1; +nodes = ( +(414,272,l), +(510,272,o), +(572,323,o), +(572,406,cs), +(572,489,o), +(510,540,o), +(414,540,c), +(299,540,l), +(299,462,l), +(406,462,l), +(459,462,o), +(484,444,o), +(484,406,cs), +(484,369,o), +(459,350,o), +(406,350,c), +(299,350,l), +(299,272,l) +); +} +); +width = 809; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(355,226,o), +(322,261,o), +(322,340,cs), +(322,419,o), +(355,454,o), +(403,454,c), +(440,454,o), +(464,437,o), +(477,395,c), +(571,428,l), +(545,503,o), +(484,543,o), +(407,543,cs), +(296,543,o), +(218,463,o), +(218,340,cs), +(218,216,o), +(296,137,o), +(407,137,c), +(484,137,o), +(545,177,o), +(571,254,c), +(475,286,l), +(463,243,o), +(440,226,o), +(403,226,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,80,o), +(145,199,o), +(145,345,cs), +(145,491,o), +(255,610,o), +(401,610,cs), +(547,610,o), +(657,491,o), +(657,345,cs), +(657,199,o), +(547,80,o), +(401,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(358,147,l), +(358,540,l), +(259,540,l), +(259,147,l) +); +}, +{ +closed = 1; +nodes = ( +(566,147,l), +(468,309,l), +(365,309,l), +(455,147,l) +); +}, +{ +closed = 1; +nodes = ( +(416,269,l), +(513,269,o), +(566,320,o), +(566,404,cs), +(566,486,o), +(513,540,o), +(416,540,c), +(303,540,l), +(303,447,l), +(409,447,l), +(448,447,o), +(464,432,o), +(464,404,cs), +(464,375,o), +(448,360,o), +(409,360,c), +(303,360,l), +(303,269,l) +); +} +); +width = 799; +} +); +unicode = 174; +}, +{ +color = 6; +glyphname = trademark; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(561,384,l), +(515,690,l), +(443,690,l), +(496,384,l) +); +}, +{ +closed = 1; +nodes = ( +(262,384,l), +(262,690,l), +(185,690,l), +(185,384,l) +); +}, +{ +closed = 1; +nodes = ( +(347,617,l), +(347,690,l), +(100,690,l), +(100,617,l) +); +}, +{ +closed = 1; +nodes = ( +(451,384,l), +(451,690,l), +(378,690,l), +(378,384,l) +); +}, +{ +closed = 1; +nodes = ( +(608,384,l), +(661,690,l), +(593,690,l), +(544,384,l) +); +}, +{ +closed = 1; +nodes = ( +(730,384,l), +(730,690,l), +(653,690,l), +(653,384,l) +); +} +); +width = 770; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(572,384,l), +(539,690,l), +(450,690,l), +(502,384,l) +); +}, +{ +closed = 1; +nodes = ( +(265,384,l), +(265,690,l), +(175,690,l), +(175,384,l) +); +}, +{ +closed = 1; +nodes = ( +(345,604,l), +(345,690,l), +(95,690,l), +(95,604,l) +); +}, +{ +closed = 1; +nodes = ( +(461,384,l), +(461,690,l), +(375,690,l), +(375,384,l) +); +}, +{ +closed = 1; +nodes = ( +(627,384,l), +(683,690,l), +(598,690,l), +(556,384,l) +); +}, +{ +closed = 1; +nodes = ( +(757,384,l), +(757,690,l), +(670,690,l), +(670,384,l) +); +} +); +width = 787; +} +); +unicode = 8482; +}, +{ +color = 6; +glyphname = degree; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(327,374,o), +(404,457,o), +(404,568,c), +(404,640,o), +(351,700,o), +(263,700,c), +(158,700,o), +(81,617,o), +(81,506,c), +(81,434,o), +(134,374,o), +(222,374,c) +); +}, +{ +closed = 1; +nodes = ( +(191,450,o), +(168,472,o), +(168,514,c), +(168,568,o), +(208,624,o), +(257,624,c), +(294,624,o), +(317,602,o), +(317,560,c), +(317,506,o), +(277,450,o), +(228,450,c) +); +} +); +width = 400; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(373,636,o), +(302,704,o), +(201,704,cs), +(101,704,o), +(30,636,o), +(30,537,c), +(30,438,o), +(101,370,o), +(201,370,cs), +(302,370,o), +(373,438,o), +(373,537,c) +); +}, +{ +closed = 1; +nodes = ( +(146,576,o), +(170,599,o), +(201,599,cs), +(233,599,o), +(257,576,o), +(257,537,c), +(257,498,o), +(233,475,o), +(201,475,cs), +(170,475,o), +(146,498,o), +(146,537,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,370,o), +(407,458,o), +(407,564,c), +(407,645,o), +(345,704,o), +(261,704,c), +(143,704,o), +(70,616,o), +(70,510,c), +(70,429,o), +(132,370,o), +(216,370,c) +); +}, +{ +closed = 1; +nodes = ( +(203,475,o), +(184,491,o), +(184,523,c), +(184,562,o), +(211,599,o), +(247,599,c), +(274,599,o), +(293,583,o), +(293,551,c), +(293,512,o), +(266,475,o), +(230,475,c) +); +} +); +width = 394; +} +); +unicode = 176; +}, +{ +color = 6; +glyphname = bar; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(70,-120,l), +(260,770,l), +(170,770,l), +(-20,-120,l) +); +} +); +width = 248; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,-120,l), +(301,770,l), +(162,770,l), +(-28,-120,l) +); +} +); +width = 281; +} +); +unicode = 124; +}, +{ +color = 6; +glyphname = brokenbar; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(186,425,l), +(260,770,l), +(170,770,l), +(96,425,l) +); +}, +{ +closed = 1; +nodes = ( +(70,-120,l), +(144,225,l), +(54,225,l), +(-20,-120,l) +); +} +); +width = 248; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(227,425,l), +(301,770,l), +(162,770,l), +(88,425,l) +); +}, +{ +closed = 1; +nodes = ( +(111,-120,l), +(185,225,l), +(46,225,l), +(-28,-120,l) +); +} +); +width = 281; +} +); +unicode = 166; +}, +{ +color = 6; +glyphname = dagger; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(153,0,l), +(241,311,l), +(322,690,l), +(217,690,l), +(136,311,l), +(91,0,l) +); +}, +{ +closed = 1; +nodes = ( +(381,443,l), +(400,530,l), +(70,530,l), +(51,443,l) +); +} +); +width = 389; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(183,0,l), +(272,291,l), +(357,690,l), +(202,690,l), +(117,291,l), +(81,0,l) +); +}, +{ +closed = 1; +nodes = ( +(404,410,l), +(434,550,l), +(64,550,l), +(34,410,l) +); +} +); +width = 409; +} +); +unicode = 8224; +}, +{ +color = 6; +glyphname = literSign; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,344,o), +(492,417,o), +(492,501,c), +(492,559,o), +(455,605,o), +(379,605,c), +(293,605,o), +(210,530,o), +(210,447,cs), +(210,390,o), +(258,344,o), +(334,344,c) +); +}, +{ +closed = 1; +nodes = ( +(179,359,o), +(160,278,o), +(160,224,c), +(160,137,o), +(201,87,o), +(276,87,c), +(315,87,o), +(360,102,o), +(402,133,c), +(447,49,l), +(390,11,o), +(328,-10,o), +(267,-10,c), +(129,-10,o), +(56,72,o), +(56,227,c), +(56,498,o), +(186,700,o), +(390,700,c), +(519,700,o), +(597,618,o), +(597,512,c), +(597,367,o), +(478,253,o), +(345,253,c), +(246,253,o), +(180,307,o), +(180,396,cs), +(180,408,o), +(183,416,o), +(185,429,c), +(192,404,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(282,145,o), +(511,381,o), +(511,559,c), +(511,644,o), +(466,700,o), +(383,700,c), +(202,700,o), +(57,452,o), +(57,227,c), +(57,72,o), +(130,-10,o), +(268,-10,c), +(329,-10,o), +(391,11,o), +(448,49,c), +(403,133,l), +(361,102,o), +(316,87,o), +(277,87,c), +(202,87,o), +(161,137,o), +(161,224,c), +(161,374,o), +(268,605,o), +(372,605,c), +(399,605,o), +(413,585,o), +(413,552,c), +(413,424,o), +(235,211,o), +(-39,66,c), +(-4,-10,l) +); +} +); +width = 545; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(264,211,o), +(442,424,o), +(442,552,c), +(442,585,o), +(428,605,o), +(401,605,c), +(297,605,o), +(190,374,o), +(190,224,c), +(190,137,o), +(231,87,o), +(306,87,c), +(345,87,o), +(390,102,o), +(432,133,c), +(477,49,l), +(420,11,o), +(358,-10,o), +(297,-10,c), +(159,-10,o), +(86,72,o), +(86,227,c), +(86,452,o), +(231,700,o), +(412,700,c), +(495,700,o), +(540,644,o), +(540,559,c), +(540,381,o), +(311,145,o), +(25,-10,c), +(-10,66,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(325,139,o), +(564,354,o), +(564,549,c), +(564,640,o), +(506,704,o), +(403,704,c), +(212,704,o), +(58,471,o), +(58,227,c), +(58,72,o), +(155,-14,o), +(294,-14,c), +(371,-14,o), +(442,9,o), +(499,50,c), +(439,174,l), +(386,134,o), +(337,117,o), +(303,117,c), +(241,117,o), +(207,157,o), +(207,235,c), +(207,359,o), +(294,571,o), +(378,571,c), +(405,571,o), +(419,551,o), +(419,518,c), +(419,413,o), +(248,232,o), +(-32,108,c), +(25,-14,l) +); +} +); +width = 586; +} +); +unicode = 8467; +}, +{ +color = 6; +glyphname = daggerdbl; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(175,0,l), +(322,690,l), +(217,690,l), +(70,0,l) +); +}, +{ +closed = 1; +nodes = ( +(321,160,l), +(340,247,l), +(10,247,l), +(-9,160,l) +); +}, +{ +closed = 1; +nodes = ( +(381,443,l), +(400,530,l), +(70,530,l), +(51,443,l) +); +} +); +width = 389; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(210,0,l), +(357,690,l), +(202,690,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(347,140,l), +(377,280,l), +(7,280,l), +(-23,140,l) +); +}, +{ +closed = 1; +nodes = ( +(404,410,l), +(434,550,l), +(64,550,l), +(34,410,l) +); +} +); +width = 409; +} +); +unicode = 8225; +}, +{ +color = 6; +glyphname = estimated; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(551,-10,o), +(667,67,o), +(726,180,c), +(691,201,l), +(640,99,o), +(536,30,o), +(417,30,cs), +(238.748,30,o), +(93,171,o), +(93,345,cs), +(93,519,o), +(232,660,o), +(402,660,cs), +(572,660,o), +(711,519,o), +(711,345,c), +(751,345,l), +(751,540,o), +(594,700,o), +(402,700,cs), +(210,700,o), +(53,540,o), +(53,345,cs), +(53,150,o), +(216.748,-10,o), +(417,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,627,l), +(78,457,l), +(78,230,l), +(213,60,l) +); +}, +{ +closed = 1; +nodes = ( +(751,327,l), +(751,345,l), +(720,372,l), +(109,372,l), +(109,327,l) +); +}, +{ +closed = 1; +nodes = ( +(726,341,l), +(726,457,l), +(591,627,l), +(591,341,l) +); +} +); +width = 806; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(546,-10,o), +(662,67,o), +(721,180,c), +(686,201,l), +(635,99,o), +(531,30,o), +(412,30,cs), +(234,30,o), +(88,171,o), +(88,345,cs), +(88,519,o), +(227,660,o), +(397,660,cs), +(567,660,o), +(706,519,o), +(706,345,c), +(746,345,l), +(746,540,o), +(589,700,o), +(397,700,cs), +(205,700,o), +(48,540,o), +(48,345,cs), +(48,150,o), +(212,-10,o), +(412,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(208,627,l), +(73,457,l), +(73,230,l), +(208,60,l) +); +}, +{ +closed = 1; +nodes = ( +(746,327,l), +(746,345,l), +(715,372,l), +(104,372,l), +(104,327,l) +); +}, +{ +closed = 1; +nodes = ( +(721,341,l), +(721,457,l), +(586,627,l), +(586,341,l) +); +} +); +width = 796; +} +); +unicode = 8494; +}, +{ +color = 6; +glyphname = numero; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(248,690,l), +(445,0,l), +(554,0,l), +(357,690,l) +); +}, +{ +closed = 1; +nodes = ( +(170,0,l), +(317,690,l), +(217,690,l), +(70,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,0,l), +(732,690,l), +(632,690,l), +(485,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(478,0,l), +(284,690,l), +(185,690,l), +(379,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,0,l), +(249,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,0,l), +(661,690,l), +(561,690,l), +(414,0,l) +); +}, +{ +closed = 1; +nodes = ( +(837,191,o), +(867,220,o), +(867,262,c), +(867,299,o), +(842,324,o), +(805,324,c), +(764,324,o), +(735,295,o), +(735,251,c), +(735,216,o), +(760,191,o), +(796,191,c) +); +}, +{ +closed = 1; +nodes = ( +(945,374,o), +(1022,457,o), +(1022,568,c), +(1022,640,o), +(969,700,o), +(881,700,c), +(776,700,o), +(699,617,o), +(699,506,c), +(699,434,o), +(752,374,o), +(840,374,c) +); +}, +{ +closed = 1; +nodes = ( +(809,450,o), +(786,472,o), +(786,514,c), +(786,568,o), +(826,624,o), +(875,624,c), +(912,624,o), +(935,602,o), +(935,560,c), +(935,506,o), +(895,450,o), +(846,450,c) +); +} +); +width = 1018; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(317,690,l), +(345,0,l), +(496,0,l), +(468,690,l) +); +}, +{ +closed = 1; +nodes = ( +(206,0,l), +(353,690,l), +(206,690,l), +(59,0,l) +); +}, +{ +closed = 1; +nodes = ( +(607,0,l), +(754,690,l), +(607,690,l), +(460,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1148,636,o), +(1092,704,o), +(991,704,cs), +(891,704,o), +(805,636,o), +(784,537,c), +(763,438,o), +(820,370,o), +(920,370,cs), +(1021,370,o), +(1106,438,o), +(1127,537,c) +); +}, +{ +closed = 1; +nodes = ( +(908,576,o), +(937,599,o), +(968,599,cs), +(1000,599,o), +(1019,576,o), +(1011,537,c), +(1003,498,o), +(974,475,o), +(942,475,cs), +(911,475,o), +(892,498,o), +(900,537,c) +); +}, +{ +closed = 1; +nodes = ( +(923,144,o), +(969,179,o), +(980,231,cs), +(991,284,o), +(960,320,o), +(909,320,cs), +(859,320,o), +(813,284,o), +(802,231,cs), +(791,179,o), +(822,144,o), +(872,144,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,0,l), +(386,690,l), +(245,690,l), +(282,0,l) +); +}, +{ +closed = 1; +nodes = ( +(136,0,l), +(283,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(532,0,l), +(679,690,l), +(532,690,l), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(864,145,o), +(906,182,o), +(906,240,c), +(906,288,o), +(875,320,o), +(823,320,c), +(771,320,o), +(729,282,o), +(729,224,c), +(729,176,o), +(760,145,o), +(811,145,c) +); +}, +{ +closed = 1; +nodes = ( +(978,370,o), +(1051,458,o), +(1051,564,c), +(1051,645,o), +(989,704,o), +(905,704,c), +(787,704,o), +(714,616,o), +(714,510,c), +(714,429,o), +(776,370,o), +(860,370,c) +); +}, +{ +closed = 1; +nodes = ( +(847,475,o), +(828,491,o), +(828,523,c), +(828,562,o), +(855,599,o), +(891,599,c), +(918,599,o), +(937,583,o), +(937,551,c), +(937,512,o), +(910,475,o), +(874,475,c) +); +} +); +width = 1042; +} +); +unicode = 8470; +}, +{ +color = 6; +glyphname = cent; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(308,800,l), +(218,800,l), +(218,652,l), +(308,652,l) +); +}, +{ +closed = 1; +nodes = ( +(308,-110,l), +(308,222,l), +(218,222,l), +(218,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(187,260,o), +(139,313.919,o), +(139,435,cs), +(139,556.081,o), +(187,610,o), +(259,610,c), +(314.917,610,o), +(348.833,583.443,o), +(369,518,c), +(463,549,l), +(434.435,647.731,o), +(360.167,700,o), +(264,700,cs), +(127.941,700,o), +(35,595.927,o), +(35,435,cs), +(35,274.073,o), +(127.941,170,o), +(264,170,c), +(360.167,170,o), +(434.435,222.302,o), +(463,324,c), +(366,353,l), +(348.624,286.571,o), +(314.786,260,o), +(259,260,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(330.86,170,o), +(412,220,o), +(460,325,c), +(366,359,l), +(337,289,o), +(294.992,260,o), +(248,260,c), +(188,260,o), +(152,297,o), +(152,365,cs), +(152,499,o), +(228,610,o), +(322,610,c), +(373.158,610,o), +(405,582,o), +(413,515,c), +(511,544,l), +(497,646,o), +(426.402,700,o), +(336,700,c), +(173,700,o), +(48,549,o), +(48,360,cs), +(48,247,o), +(122,170,o), +(235,170,c) +); +}, +{ +closed = 1; +nodes = ( +(213,-110,l), +(283,222,l), +(193,222,l), +(123,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(375,652,l), +(406,800,l), +(316,800,l), +(285,652,l) +); +} +); +width = 493; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(218,299,o), +(180,345.575,o), +(180,435,cs), +(180,524.425,o), +(218,571,o), +(275,571,c), +(322.421,571,o), +(353,543,o), +(360,489,c), +(508,522,l), +(484,634,o), +(395.815,704,o), +(275,704,cs), +(128.869,704,o), +(26,596.014,o), +(26,435,cs), +(26,273.986,o), +(128.869,166,o), +(275,166,c), +(395.878,166,o), +(486,236,o), +(511,349,c), +(364,380,l), +(355,326,o), +(322.646,299,o), +(275,299,c) +); +}, +{ +closed = 1; +nodes = ( +(333,800,l), +(214,800,l), +(214,604,l), +(333,604,l) +); +}, +{ +closed = 1; +nodes = ( +(333,-110,l), +(333,254,l), +(214,254,l), +(214,-110,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,166,o), +(469,238,o), +(513,357,c), +(369,387,l), +(353,328,o), +(312,299,o), +(266,299,c), +(216,299,o), +(194,335,o), +(194,388,c), +(194,488,o), +(252,571,o), +(325,571,c), +(373,571,o), +(398,541,o), +(398,485,c), +(546,515,l), +(537,632,o), +(459,704,o), +(342,704,c), +(167,704,o), +(40,552,o), +(40,371,c), +(40,252,o), +(118,166,o), +(245,166,c) +); +}, +{ +closed = 1; +nodes = ( +(237,-110,l), +(314,254,l), +(195,254,l), +(118,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(388,604,l), +(430,800,l), +(311,800,l), +(269,604,l) +); +} +); +width = 532; +} +); +unicode = 162; +}, +{ +color = 6; +glyphname = currency; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(464,405,o), +(388.844,486,o), +(279,486,cs), +(170.22,486,o), +(95,405,o), +(95,303,c), +(95,201,o), +(170.22,120,o), +(279,120,cs), +(388.844,120,o), +(464,201,o), +(464,303,c) +); +}, +{ +closed = 1; +nodes = ( +(181,364,o), +(223.829,410,o), +(279,410,cs), +(335.319,410,o), +(378,364,o), +(378,303,c), +(378,242,o), +(335.319,196,o), +(279,196,cs), +(223.829,196,o), +(181,242,o), +(181,303,c) +); +}, +{ +closed = 1; +nodes = ( +(25,498,l), +(153,370,l), +(212,429,l), +(84,557,l) +); +}, +{ +closed = 1; +nodes = ( +(531,499,l), +(474,556,l), +(344,426,l), +(401,369,l) +); +}, +{ +closed = 1; +nodes = ( +(473,50,l), +(532,109,l), +(402,239,l), +(343,180,l) +); +}, +{ +closed = 1; +nodes = ( +(83,51,l), +(210,178,l), +(153,235,l), +(26,108,l) +); +}, +{ +closed = 1; +nodes = ( +(550,405,o), +(492,486,o), +(382,486,cs), +(274,486,o), +(181,405,o), +(159,303,c), +(138,201,o), +(196,120,o), +(305,120,cs), +(414,120,o), +(507,201,o), +(528,303,c) +); +}, +{ +closed = 1; +nodes = ( +(258,364,o), +(311,410,o), +(366,410,cs), +(422,410,o), +(455,364,o), +(442,303,c), +(429,242,o), +(377,196,o), +(321,196,cs), +(265,196,o), +(232,242,o), +(245,303,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(364,120,o), +(460,221,o), +(460,329,c), +(460,416,o), +(391,486,o), +(300,486,c), +(179.197,486,o), +(83,385,o), +(83,277,c), +(83,190,o), +(152,120,o), +(243,120,c) +); +}, +{ +closed = 1; +nodes = ( +(179,174,l), +(129,239,l), +(-25,112,l), +(29,51,l) +); +}, +{ +closed = 1; +nodes = ( +(223,432,l), +(124,557,l), +(63,502,l), +(160,380,l) +); +}, +{ +closed = 1; +nodes = ( +(202,196,o), +(170,234,o), +(170,285,c), +(170,351,o), +(231.313,410,o), +(291,410,c), +(341,410,o), +(373,372,o), +(373,321,c), +(373,255,o), +(312,196,o), +(252,196,c) +); +}, +{ +closed = 1; +nodes = ( +(483,105,l), +(384,230,l), +(322,175,l), +(421,50,l) +); +}, +{ +closed = 1; +nodes = ( +(568,495,l), +(513,556,l), +(364,433,l), +(412,366,l) +); +} +); +width = 558; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(494,416.148,o), +(410.892,506,o), +(289,506,cs), +(168.152,506,o), +(85,416.148,o), +(85,303,c), +(85,189.852,o), +(168.152,100,o), +(289,100,cs), +(410.892,100,o), +(494,189.852,o), +(494,303,c) +); +}, +{ +closed = 1; +nodes = ( +(209,355,o), +(242,391,o), +(289,391,cs), +(337,391,o), +(370,355,o), +(370,303,c), +(370,251,o), +(337,215,o), +(289,215,cs), +(242,215,o), +(209,251,o), +(209,303,c) +); +}, +{ +closed = 1; +nodes = ( +(106,25,l), +(250,169,l), +(154,265,l), +(10,121,l) +); +}, +{ +closed = 1; +nodes = ( +(10,485,l), +(154,341,l), +(251,438,l), +(107,582,l) +); +}, +{ +closed = 1; +nodes = ( +(567,486,l), +(471,582,l), +(322,433,l), +(418,337,l) +); +}, +{ +closed = 1; +nodes = ( +(470,25,l), +(567,122,l), +(431,258,l), +(334,161,l) +); +}, +{ +closed = 1; +nodes = ( +(582,416,o), +(518,506,o), +(397,506,cs), +(276,506,o), +(173,416,o), +(149,303,c), +(125,190,o), +(189,100,o), +(310,100,cs), +(432,100,o), +(534,190,o), +(558,303,c) +); +}, +{ +closed = 1; +nodes = ( +(284,355,o), +(325,391,o), +(372,391,cs), +(420,391,o), +(445,355,o), +(434,303,c), +(423,251,o), +(383,215,o), +(335,215,cs), +(288,215,o), +(262,251,o), +(273,303,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,100,o), +(485,210,o), +(485,339,c), +(485,428,o), +(407,506,o), +(306,506,c), +(174,506,o), +(74,396,o), +(74,267,c), +(74,178,o), +(152,100,o), +(253,100,c) +); +}, +{ +closed = 1; +nodes = ( +(209,157,l), +(127,264,l), +(-37,128,l), +(49,25,l) +); +}, +{ +closed = 1; +nodes = ( +(253,453,l), +(151,582,l), +(43,492,l), +(148,359,l) +); +}, +{ +closed = 1; +nodes = ( +(222,215,o), +(197,246,o), +(197,285,cs), +(197,340,o), +(245,391,o), +(294,391,c), +(337,391,o), +(362,360,o), +(362,321,cs), +(362,266,o), +(314,215,o), +(265,215,c) +); +}, +{ +closed = 1; +nodes = ( +(520,115,l), +(413,251,l), +(306,159,l), +(412,25,l) +); +}, +{ +closed = 1; +nodes = ( +(599,479,l), +(513,582,l), +(349,447,l), +(432,341,l) +); +} +); +width = 576; +} +); +unicode = 164; +}, +{ +color = 6; +glyphname = dollar; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(515,443,o), +(153,363,o), +(153,522,c), +(153,570,o), +(186,612,o), +(266,612,c), +(340,612,o), +(384,572,o), +(408,499,c), +(508,532,l), +(475,637,o), +(396,700,o), +(275,700,c), +(128,700,o), +(52,617,o), +(52,515,c), +(52,266,o), +(413,351,o), +(413,174,c), +(413,117,o), +(364,78,o), +(284,78,c), +(201,78,o), +(156,120,o), +(133,196,c), +(30,163,l), +(64,55,o), +(144,-10,o), +(276,-10,c), +(430,-10,o), +(515,72,o), +(515,180,c) +); +}, +{ +closed = 1; +nodes = ( +(322,800,l), +(232,800,l), +(232,652,l), +(322,652,l) +); +}, +{ +closed = 1; +nodes = ( +(322,-110,l), +(322,42,l), +(232,42,l), +(232,-110,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(415,-10,o), +(498,92,o), +(498,196,c), +(498,421,o), +(191,364,o), +(191,521,c), +(191,566,o), +(225.259,607,o), +(316,607,c), +(400.304,607,o), +(445.266,572,o), +(464,499,c), +(561,532,l), +(531.303,637,o), +(453,700,o), +(331,700,c), +(150,700,o), +(84,597,o), +(84,505,c), +(84,295,o), +(389,334,o), +(389,187,c), +(389,125,o), +(339.354,83,o), +(241,83,c), +(151,83,o), +(107.875,120,o), +(91,196,c), +(-9,163,l), +(16.924,55,o), +(97,-10,o), +(233,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(230,-110,l), +(262,42,l), +(172,42,l), +(140,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(392,652,l), +(423,800,l), +(333,800,l), +(302,652,l) +); +} +); +width = 573; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,-14,o), +(556,79,o), +(556,212,c), +(556,437,o), +(235,402,o), +(235,507,c), +(235,540,o), +(262,566,o), +(337,566,c), +(402,566,o), +(442,536,o), +(456,473,c), +(608,517,l), +(581,640,o), +(478,704,o), +(350,704,c), +(169,704,o), +(76,607,o), +(76,488,c), +(76,272,o), +(391,310,o), +(391,193,c), +(391,156,o), +(365,125,o), +(285,125,c), +(212,125,o), +(168,159,o), +(150,236,c), +(-6,190,l), +(22,53,o), +(127,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(272,-110,l), +(309,64,l), +(190,64,l), +(153,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(423,604,l), +(465,800,l), +(346,800,l), +(304,604,l) +); +} +); +width = 620; +} +); +unicode = 36; +}, +{ +color = 6; +glyphname = euro; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(238,84,o), +(186,179,o), +(186,345,cs), +(186,512,o), +(238,606,o), +(322,606,c), +(384,606,o), +(421,563,o), +(436,487,c), +(537,511,l), +(511,634,o), +(436,700,o), +(325,700,c), +(177,700,o), +(83,576,o), +(83,345,cs), +(83,115,o), +(177,-10,o), +(325,-10,c), +(436,-10,o), +(512,56,o), +(541,181,c), +(440,205,l), +(421,127,o), +(385,84,o), +(322,84,c) +); +}, +{ +closed = 1; +nodes = ( +(20,223,l), +(367,223,l), +(377,310,l), +(20,310,l) +); +}, +{ +closed = 1; +nodes = ( +(20,365,l), +(383,365,l), +(393,452,l), +(20,452,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(382,-10,o), +(459,56,o), +(506,181,c), +(411,205,l), +(380,127,o), +(335,84,o), +(275,84,c), +(206,84,o), +(176,135,o), +(176,227,c), +(176,443,o), +(268,606,o), +(376,606,c), +(437,606,o), +(465,563,o), +(472,487,c), +(573,511,l), +(560,634,o), +(491,700,o), +(386,700,c), +(210,700,o), +(72,492,o), +(72,222,c), +(72,70,o), +(145,-10,o), +(269,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(341,223,l), +(370,310,l), +(13,310,l), +(-6,223,l) +); +}, +{ +closed = 1; +nodes = ( +(388,365,l), +(416,452,l), +(43,452,l), +(25,365,l) +); +} +); +width = 577; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(262.265,124,o), +(216,204.441,o), +(216,345,cs), +(216,486.406,o), +(262.265,566,o), +(337,566,c), +(391.061,566,o), +(423.713,534,o), +(429,482,c), +(580,516,l), +(557,638.736,o), +(469,704,o), +(340,704,c), +(167.949,704,o), +(58,579.254,o), +(58,345,cs), +(58,111.761,o), +(167.949,-14,o), +(340,-14,c), +(469,-14,o), +(557,51.282,o), +(587,176,c), +(436,215,l), +(423.362,156,o), +(392.105,124,o), +(337,124,c) +); +}, +{ +closed = 1; +nodes = ( +(10,217,l), +(406,217,l), +(417,316,l), +(10,316,l) +); +}, +{ +closed = 1; +nodes = ( +(10,359,l), +(422,359,l), +(433,458,l), +(10,458,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(413,-14,o), +(504,51,o), +(551,176,c), +(409,215,l), +(384,156,o), +(345,124,o), +(293,124,c), +(235,124,o), +(216,162,o), +(216,249,c), +(216,434,o), +(291,566,o), +(384,566,c), +(438,566,o), +(460,534,o), +(465,482,c), +(617,516,l), +(606,639,o), +(516,704,o), +(401,704,c), +(199,704,o), +(57,507,o), +(57,243,c), +(57,72,o), +(139,-14,o), +(278,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(379,217,l), +(411,316,l), +(4,316,l), +(-17,217,l) +); +}, +{ +closed = 1; +nodes = ( +(425,359,l), +(457,458,l), +(34,458,l), +(13,359,l) +); +} +); +width = 602; +} +); +unicode = 8364; +}, +{ +color = 6; +glyphname = sterling; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(504,96,l), +(130,96,l), +(50,67,l), +(50,0,l), +(504,0,l) +); +}, +{ +closed = 1; +nodes = ( +(253,342,o), +(175,413,o), +(175,501,c), +(175,566,o), +(221,608,o), +(283,608,c), +(353,608,o), +(390.44,557,o), +(401,493,c), +(504,513,l), +(487.365,623,o), +(412,700,o), +(287,700,c), +(163,700,o), +(69,620,o), +(69,501,c), +(69,392,o), +(160,341,o), +(160,241,c), +(160,193,o), +(130,135,o), +(50,67,c), +(132,52,l), +(232,135,o), +(253,189,o), +(253,253,c) +); +}, +{ +closed = 1; +nodes = ( +(50,275,l), +(438,275,l), +(438,362,l), +(50,362,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(210,147,o), +(238,208,o), +(238,288,cs), +(238,350,o), +(205,406,o), +(205,478,c), +(205,557,o), +(265,608,o), +(327,608,c), +(399,608,o), +(429,563,o), +(437,493,c), +(536,513,l), +(524,640,o), +(453,700,o), +(337,700,c), +(208,700,o), +(98,605,o), +(98,472,c), +(98,389,o), +(142,342,o), +(142,275,cs), +(142,219.667,o), +(109.572,151.872,o), +(-9,67,c), +(70,52,l) +); +}, +{ +closed = 1; +nodes = ( +(431,0,l), +(451,96,l), +(77,96,l), +(-9,67,l), +(-23,0,l) +); +}, +{ +closed = 1; +nodes = ( +(423,275,l), +(442,362,l), +(54,362,l), +(35,275,l) +); +} +); +width = 564; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(547,140,l), +(106,140,l), +(35,104,l), +(35,0,l), +(547,0,l) +); +}, +{ +closed = 1; +nodes = ( +(57,395,o), +(133,346,o), +(133,272,c), +(133,214,o), +(100.607,158,o), +(35,104,c), +(107,97,l), +(231,133,o), +(279,205,o), +(279,278,c), +(279,353,o), +(217,409,o), +(217,485,c), +(217,534,o), +(252,563,o), +(295,563,c), +(341,563,o), +(380,531,o), +(386,469,c), +(540,489,l), +(524,629,o), +(431,704,o), +(296,704,c), +(160,704,o), +(57,618,o), +(57,497,c) +); +}, +{ +closed = 1; +nodes = ( +(35,251,l), +(449,251,l), +(449,371,l), +(35,371,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,138,o), +(266,232,o), +(266,309,cs), +(266,359,o), +(244,403,o), +(244,469,c), +(244,529,o), +(289,563,o), +(337,563,c), +(389,563,o), +(413,537,o), +(417,469,c), +(566,489,l), +(557,619,o), +(488,704,o), +(348,704,c), +(183,704,o), +(85,585,o), +(85,471,c), +(85,390,o), +(124,347,o), +(124,296,cs), +(124,230,o), +(72,165,o), +(-16,104,c), +(55,97,l) +); +}, +{ +closed = 1; +nodes = ( +(474,0,l), +(504,140,l), +(63,140,l), +(-16,104,l), +(-38,0,l) +); +}, +{ +closed = 1; +nodes = ( +(429,251,l), +(455,371,l), +(41,371,l), +(15,251,l) +); +} +); +width = 583; +} +); +unicode = 163; +}, +{ +color = 6; +glyphname = yen; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(329,363,l), +(138,690,l), +(20,690,l), +(262,303,l) +); +}, +{ +closed = 1; +nodes = ( +(332,303,l), +(574,690,l), +(459,690,l), +(271,363,l) +); +}, +{ +closed = 1; +nodes = ( +(349,0,l), +(349,410,l), +(244,410,l), +(244,0,l) +); +}, +{ +closed = 1; +nodes = ( +(90,161,l), +(503,161,l), +(503,248,l), +(90,248,l) +); +}, +{ +closed = 1; +nodes = ( +(90,303,l), +(504,303,l), +(504,390,l), +(90,390,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(649,690,l), +(528,690,l), +(270,363,l), +(324,303,l) +); +}, +{ +closed = 1; +nodes = ( +(277,0,l), +(364,410,l), +(259,410,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(465,161,l), +(484,248,l), +(71,248,l), +(52,161,l) +); +}, +{ +closed = 1; +nodes = ( +(328,363,l), +(207,690,l), +(95,690,l), +(254,303,l) +); +}, +{ +closed = 1; +nodes = ( +(496,303,l), +(515,390,l), +(101,390,l), +(82,303,l) +); +} +); +width = 594; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(386,0,l), +(386,453,l), +(232,453,l), +(232,0,l) +); +}, +{ +closed = 1; +nodes = ( +(71,183,l), +(547,183,l), +(547,290,l), +(71,290,l) +); +}, +{ +closed = 1; +nodes = ( +(71,325,l), +(547,325,l), +(547,432,l), +(71,432,l) +); +}, +{ +closed = 1; +nodes = ( +(279,415,l), +(368,293,l), +(592,690,l), +(426,690,l) +); +}, +{ +closed = 1; +nodes = ( +(251,292,l), +(351,415,l), +(201,690,l), +(28,690,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(667,690,l), +(491,690,l), +(285,415,l), +(358,293,l) +); +}, +{ +closed = 1; +nodes = ( +(314,0,l), +(410,453,l), +(256,453,l), +(160,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,183,l), +(537,290,l), +(61,290,l), +(38,183,l) +); +}, +{ +closed = 1; +nodes = ( +(357,415,l), +(266,690,l), +(103,690,l), +(241,292,l) +); +}, +{ +closed = 1; +nodes = ( +(544,325,l), +(567,432,l), +(91,432,l), +(68,325,l) +); +} +); +width = 620; +} +); +unicode = 165; +}, +{ +color = 6; +glyphname = bulletoperator; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(186,203,o), +(229,244,o), +(229,304,c), +(229,357,o), +(193,392,o), +(141,392,c), +(82,392,o), +(41,351,o), +(41,288,c), +(41,239,o), +(77,203,o), +(128,203,c) +); +} +); +width = 289; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,188,o), +(248,235,o), +(248,309,c), +(248,370,o), +(209,411,o), +(143,411,c), +(76,411,o), +(23,363,o), +(23,289,c), +(23,227,o), +(62,188,o), +(127,188,c) +); +} +); +width = 289; +} +); +unicode = 8729; +}, +{ +color = 6; +glyphname = divisionslash; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-120,l), +(383,770,l), +(287,770,l), +(-99,-120,l) +); +} +); +width = 291; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(51,-120,l), +(434,770,l), +(284,770,l), +(-99,-120,l) +); +} +); +width = 342; +} +); +unicode = 8725; +}, +{ +color = 6; +glyphname = plus; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(256,92,l), +(345,515,l), +(260,515,l), +(171,92,l) +); +}, +{ +closed = 1; +nodes = ( +(456,263,l), +(473,344,l), +(60,344,l), +(43,263,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(279,74,l), +(376,533,l), +(237,533,l), +(140,74,l) +); +}, +{ +closed = 1; +nodes = ( +(468,236,l), +(497,371,l), +(48,371,l), +(19,236,l) +); +} +); +width = 532; +} +); +unicode = 43; +}, +{ +color = 6; +glyphname = minus; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(456,263,l), +(473,344,l), +(60,344,l), +(43,263,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(468,236,l), +(497,371,l), +(48,371,l), +(19,236,l) +); +} +); +width = 532; +} +); +unicode = 8722; +}, +{ +color = 6; +glyphname = multiply; +lastChange = "2024-03-21 14:13:13 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(121,101,l), +(469,449,l), +(412,506,l), +(64,158,l) +); +}, +{ +closed = 1; +nodes = ( +(63,448,l), +(411,100,l), +(470,159,l), +(122,507,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(431,155,l), +(146,507,l), +(85,452,l), +(369,100,l) +); +}, +{ +closed = 1; +nodes = ( +(491,445,l), +(436,506,l), +(25,162,l), +(79,101,l) +); +} +); +width = 532; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(134,75,l), +(495,436,l), +(399,532,l), +(38,171,l) +); +}, +{ +closed = 1; +nodes = ( +(38,435,l), +(398,75,l), +(495,172,l), +(135,532,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(460,165,l), +(166,532,l), +(58,442,l), +(352,75,l) +); +}, +{ +closed = 1; +nodes = ( +(516,429,l), +(430,532,l), +(2,178,l), +(88,75,l) +); +} +); +width = 532; +} +); +unicode = 215; +}, +{ +color = 6; +glyphname = divide; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(456,263,l), +(473,344,l), +(60,344,l), +(43,263,l) +); +}, +{ +closed = 1; +nodes = ( +(252,82,o), +(278,106,o), +(278,142,c), +(278,173,o), +(256,194,o), +(225,194,c), +(190,194,o), +(166,170,o), +(166,132,c), +(166,103,o), +(187,82,o), +(217,82,c) +); +}, +{ +closed = 1; +nodes = ( +(322,412,o), +(348,436,o), +(348,472,c), +(348,503,o), +(326,524,o), +(295,524,c), +(260,524,o), +(236,500,o), +(236,462,c), +(236,433,o), +(257,412,o), +(287,412,c) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(468,236,l), +(497,371,l), +(48,371,l), +(19,236,l) +); +}, +{ +closed = 1; +nodes = ( +(260,55,o), +(296,87,o), +(296,136,c), +(296,177,o), +(269,204,o), +(225,204,c), +(181,204,o), +(145,172,o), +(145,122,c), +(145,81,o), +(171,55,o), +(215,55,c) +); +}, +{ +closed = 1; +nodes = ( +(333,403,o), +(369,435,o), +(369,484,c), +(369,525,o), +(342,552,o), +(298,552,c), +(254,552,o), +(218,520,o), +(218,470,c), +(218,429,o), +(244,403,o), +(288,403,c) +); +} +); +width = 532; +} +); +unicode = 247; +}, +{ +color = 6; +glyphname = equal; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(435,163,l), +(452,244,l), +(39,244,l), +(22,163,l) +); +}, +{ +closed = 1; +nodes = ( +(477,363,l), +(494,444,l), +(81,444,l), +(64,363,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(444,122,l), +(473,258,l), +(24,258,l), +(-5,122,l) +); +}, +{ +closed = 1; +nodes = ( +(492,350,l), +(521,484,l), +(72,484,l), +(43,350,l) +); +} +); +width = 532; +} +); +unicode = 61; +}, +{ +color = 6; +glyphname = notequal; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(166,92,l), +(448,515,l), +(350,515,l), +(68,92,l) +); +}, +{ +closed = 1; +nodes = ( +(435,163,l), +(452,244,l), +(39,244,l), +(22,163,l) +); +}, +{ +closed = 1; +nodes = ( +(477,363,l), +(494,444,l), +(81,444,l), +(64,363,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,52,l), +(487,555,l), +(349,555,l), +(29,52,l) +); +}, +{ +closed = 1; +nodes = ( +(444,122,l), +(473,258,l), +(24,258,l), +(-5,122,l) +); +}, +{ +closed = 1; +nodes = ( +(492,350,l), +(521,484,l), +(72,484,l), +(43,350,l) +); +} +); +width = 532; +} +); +unicode = 8800; +}, +{ +color = 6; +glyphname = greater; +lastChange = "2024-03-21 14:13:44 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(460,261,l), +(478,345,l), +(101,513,l), +(83,427,l), +(364,308,l), +(32,189,l), +(12,93,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(472,221,l), +(507,385,l), +(83,523,l), +(54,386,l), +(354,307,l), +(20,228,l), +(-10,83,l) +); +} +); +width = 532; +} +); +unicode = 62; +}, +{ +color = 6; +glyphname = less; +lastChange = "2024-03-21 14:13:31 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(55,261,l), +(161,304,l), +(468,423,l), +(468,513,l), +(55,345,l) +); +}, +{ +closed = 1; +nodes = ( +(468,185,l), +(161,304,l), +(55,345,l), +(55,261,l), +(468,93,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(433,179,l), +(152,298,l), +(484,417,l), +(504,513,l), +(55,345,l), +(37,261,l), +(415,93,l) +); +} +); +width = 532; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(35,221,l), +(171,304,l), +(488,383,l), +(488,523,l), +(35,385,l) +); +}, +{ +closed = 1; +nodes = ( +(488,225,l), +(171,304,l), +(35,385,l), +(35,221,l), +(488,83,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(463,220,l), +(163,299,l), +(496,378,l), +(527,523,l), +(45,385,l), +(10,221,l), +(434,83,l) +); +} +); +width = 532; +} +); +unicode = 60; +}, +{ +color = 6; +glyphname = greaterequal; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(464,302,l), +(486,404,l), +(96,513,l), +(78,430,l), +(377,355,l), +(47,280,l), +(28,193,l) +); +}, +{ +closed = 1; +nodes = ( +(420,93,l), +(437,174,l), +(24,174,l), +(7,93,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(478,281,l), +(517,465,l), +(84,543,l), +(57,413,l), +(374,375,l), +(41,338,l), +(12,203,l) +); +}, +{ +closed = 1; +nodes = ( +(431,63,l), +(460,199,l), +(11,199,l), +(-18,63,l) +); +} +); +width = 532; +} +); +unicode = 8805; +}, +{ +color = 6; +glyphname = lessequal; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(459,276,l), +(161,351,l), +(491,426,l), +(509,513,l), +(73,404,l), +(51,302,l), +(441,193,l) +); +}, +{ +closed = 1; +nodes = ( +(420,93,l), +(437,174,l), +(24,174,l), +(7,93,l) +); +} +); +width = 532; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(42,281,l), +(166,374,l), +(491,411,l), +(491,543,l), +(42,465,l) +); +}, +{ +closed = 1; +nodes = ( +(491,336,l), +(166,374,l), +(42,465,l), +(42,281,l), +(491,203,l) +); +}, +{ +closed = 1; +nodes = ( +(42,63,l), +(491,63,l), +(491,199,l), +(42,199,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(489,333,l), +(172,371,l), +(505,408,l), +(533,543,l), +(68,465,l), +(29,281,l), +(461,203,l) +); +}, +{ +closed = 1; +nodes = ( +(431,63,l), +(460,199,l), +(11,199,l), +(-18,63,l) +); +} +); +width = 532; +} +); +unicode = 8804; +}, +{ +color = 6; +glyphname = plusminus; +lastChange = "2024-03-21 14:13:25 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(468,318,l), +(485,399,l), +(72,399,l), +(55,318,l) +); +}, +{ +closed = 1; +nodes = ( +(413,62,l), +(430,143,l), +(17,143,l), +(0,62,l) +); +}, +{ +closed = 1; +nodes = ( +(279,202,l), +(345,515,l), +(260,515,l), +(194,202,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(486,322,l), +(515,458,l), +(66,458,l), +(37,322,l) +); +}, +{ +closed = 1; +nodes = ( +(427,44,l), +(456,179,l), +(7,179,l), +(-22,44,l) +); +}, +{ +closed = 1; +nodes = ( +(310,220,l), +(382,560,l), +(243,560,l), +(171,220,l) +); +} +); +width = 532; +} +); +unicode = 177; +}, +{ +color = 6; +glyphname = approxequal; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(60,363,l), +(94,375,o), +(128,383,o), +(162,383,c), +(242,383,o), +(291,343,o), +(371,343,c), +(405,343,o), +(439,351,o), +(473,363,c), +(473,444,l), +(439,432,o), +(405,424,o), +(371,424,c), +(291,424,o), +(242,464,o), +(162,464,c), +(128,464,o), +(94,456,o), +(60,444,c) +); +}, +{ +closed = 1; +nodes = ( +(60,163,l), +(94,175,o), +(128,183,o), +(162,183,c), +(242,183,o), +(291,143,o), +(371,143,c), +(405,143,o), +(439,151,o), +(473,163,c), +(473,244,l), +(439,232,o), +(405,224,o), +(371,224,c), +(291,224,o), +(242,264,o), +(162,264,c), +(128,264,o), +(94,256,o), +(60,244,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(366,143,o), +(398,151,o), +(435,163,c), +(452,244,l), +(415,232,o), +(380,224,o), +(346,224,c), +(266,224,o), +(221,264,o), +(141,264,c), +(107,264,o), +(75,256,o), +(39,244,c), +(22,163,l), +(58,175,o), +(94,183,o), +(128,183,c), +(208,183,o), +(252,143,o), +(332,143,c) +); +}, +{ +closed = 1; +nodes = ( +(409,343,o), +(441,351,o), +(477,363,c), +(494,444,l), +(458,432,o), +(422,424,o), +(388,424,c), +(308,424,o), +(264,464,o), +(184,464,c), +(150,464,o), +(118,456,o), +(81,444,c), +(64,363,l), +(101,375,o), +(136,383,o), +(170,383,c), +(250,383,o), +(295,343,o), +(375,343,c) +); +} +); +width = 532; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(42,353,l), +(83,365,o), +(121.333,373,o), +(162,373,c), +(242,373,o), +(291,333,o), +(371,333,c), +(411.667,333,o), +(450,341,o), +(491,353,c), +(491,484,l), +(450,472,o), +(411.667,464,o), +(371,464,c), +(291,464,o), +(242,504,o), +(162,504,c), +(121.333,504,o), +(83,496,o), +(42,484,c) +); +}, +{ +closed = 1; +nodes = ( +(42,123,l), +(83,135,o), +(121.333,143,o), +(162,143,c), +(242,143,o), +(291,103,o), +(371,103,c), +(411.667,103,o), +(450,111,o), +(491,123,c), +(491,254,l), +(450,242,o), +(411.667,234,o), +(371,234,c), +(291,234,o), +(242,274,o), +(162,274,c), +(121.333,274,o), +(83,266,o), +(42,254,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(366,103,o), +(401,111,o), +(444,123,c), +(472,254,l), +(428,242,o), +(388,234,o), +(348,234,c), +(268,234,o), +(222,274,o), +(142,274,c), +(102,274,o), +(67,266,o), +(23,254,c), +(-5,123,l), +(39,135,o), +(79,143,o), +(119,143,c), +(199,143,o), +(245,103,o), +(325,103,c) +); +}, +{ +closed = 1; +nodes = ( +(414,333,o), +(449,341,o), +(493,353,c), +(521,484,l), +(477,472,o), +(437,464,o), +(397,464,c), +(317,464,o), +(271,504,o), +(191,504,c), +(150,504,o), +(115,496,o), +(72,484,c), +(44,353,l), +(88,365,o), +(128,373,o), +(168,373,c), +(248,373,o), +(294,333,o), +(374,333,c) +); +} +); +width = 532; +} +); +unicode = 8776; +}, +{ +color = 6; +glyphname = asciitilde; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(408,295,o), +(455,357,o), +(453,455,c), +(379,455,l), +(377,402,o), +(362,378,o), +(327,378,c), +(281,378,o), +(247,455,o), +(168,455,c), +(92,455,o), +(45,393,o), +(47,295,c), +(121,295,l), +(123,348,o), +(138,372,o), +(173,372,c), +(221,372,o), +(254,295,o), +(332,295,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(114,295,l), +(122,348,o), +(140,372,o), +(177,372,c), +(228,372,o), +(250,295,o), +(333,295,c), +(411,295,o), +(464,357,o), +(476,455,c), +(402,455,l), +(393,402,o), +(375,378,o), +(338,378,c), +(289,378,o), +(267,455,o), +(183,455,c), +(105,455,o), +(52,393,o), +(40,295,c) +); +} +); +width = 500; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(428.182,277,o), +(483.388,355.562,o), +(481.057,475,c), +(367.057,475,l), +(365.249,432.325,o), +(355.057,416,o), +(323.057,416,c), +(276.057,416,o), +(237.541,475,o), +(156.057,475,c), +(67.495,475,o), +(12.984,396,o), +(15.057,277,c), +(129.057,277,l), +(131.057,319.567,o), +(141.057,336,o), +(173.057,336,c), +(223.057,336,o), +(259.708,277,o), +(340.057,277,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,277,l), +(126,320,o), +(139,336,o), +(169,336,c), +(221,336,o), +(256,277,o), +(336,277,c), +(424,277,o), +(486,348,o), +(503,475,c), +(389,475,l), +(384,432,o), +(370,416,o), +(340,416,c), +(291,416,o), +(256,475,o), +(174,475,c), +(85,475,o), +(24,404,o), +(7,277,c) +); +} +); +width = 495; +} +); +unicode = 126; +}, +{ +color = 6; +glyphname = logicalnot; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(456,263,l), +(473,344,l), +(60,344,l), +(43,263,l) +); +}, +{ +closed = 1; +nodes = ( +(420,92,l), +(473,344,l), +(388,344,l), +(335,92,l) +); +} +); +width = 532; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(468,236,l), +(497,371,l), +(48,371,l), +(19,236,l) +); +}, +{ +closed = 1; +nodes = ( +(434,74,l), +(497,371,l), +(358,371,l), +(295,74,l) +); +} +); +width = 532; +} +); +unicode = 172; +}, +{ +color = 6; +glyphname = asciicircum; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(436,277,l), +(356,690,l), +(272,690,l), +(16,278,l), +(113,278,l), +(298,586,l), +(352,277,l) +); +} +); +width = 479; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,690,l), +(251,537,l), +(336,277,l), +(480,277,l), +(326,690,l) +); +}, +{ +closed = 1; +nodes = ( +(166,278,l), +(251,537,l), +(326,690,l), +(174,690,l), +(20,278,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(466,277,l), +(400,690,l), +(248,690,l), +(6,278,l), +(159,278,l), +(299,537,l), +(329,277,l) +); +} +); +width = 499; +} +); +unicode = 94; +}, +{ +color = 6; +glyphname = infinity; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(699,120,o), +(774,201,o), +(774,303,c), +(774,405,o), +(699,486,o), +(594,486,c), +(390,486,o), +(395,196,o), +(249,196,cs), +(194,196,o), +(151,242,o), +(151,303,c), +(151,364,o), +(193.829,410,o), +(249,410,c), +(395,410,o), +(380,120,o), +(594,120,c) +); +}, +{ +closed = 1; +nodes = ( +(140,486,o), +(65,405,o), +(65,303,c), +(65,201,o), +(140,120,o), +(244,120,c), +(449,120,o), +(444,410,o), +(589,410,cs), +(645,410,o), +(688,364,o), +(688,303,c), +(688,242,o), +(645,196,o), +(589,196,c), +(444,196,o), +(459,486,o), +(244,486,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(417,120,o), +(458,410,o), +(601,410,cs), +(647,410,o), +(679,369,o), +(679,316,cs), +(679,245,o), +(621.982,196,o), +(560,196,cs), +(413,196,o), +(479,486,o), +(261,486,cs), +(146,486,o), +(57,391,o), +(57,281,cs), +(57,197,o), +(115,120,o), +(210,120,cs) +); +}, +{ +closed = 1; +nodes = ( +(675,120,o), +(764,215,o), +(764,325,cs), +(764,409,o), +(706,486,o), +(611,486,cs), +(405,486,o), +(364,196,o), +(220,196,cs), +(174,196,o), +(142,237,o), +(142,290,cs), +(142,361,o), +(199,410,o), +(261,410,cs), +(409,410,o), +(343,120,o), +(560,120,cs) +); +} +); +width = 838; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(730,100,o), +(814,190,o), +(814,303,c), +(814,416,o), +(730,506,o), +(611,506,c), +(386,506,o), +(398,226,o), +(255,226,cs), +(214,226,o), +(181,259,o), +(181,303,c), +(181,347,o), +(214,380,o), +(255,380,c), +(398,380,o), +(376,100,o), +(611,100,c) +); +}, +{ +closed = 1; +nodes = ( +(129,506,o), +(45,416,o), +(45,303,c), +(45,190,o), +(129,100,o), +(247,100,c), +(473,100,o), +(461,380,o), +(603,380,cs), +(645,380,o), +(678,347,o), +(678,303,c), +(678,259,o), +(645,226,o), +(603,226,c), +(461,226,o), +(483,506,o), +(247,506,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(441,100,o), +(469,380,o), +(607,380,cs), +(647,380,o), +(671,356,o), +(671,314,cs), +(671,264,o), +(626,226,o), +(582,226,cs), +(436,226,o), +(498,506,o), +(257,506,cs), +(126,506,o), +(35,405,o), +(35,281,cs), +(35,179,o), +(113,100,o), +(220,100,cs) +); +}, +{ +closed = 1; +nodes = ( +(715,100,o), +(806,201,o), +(806,325,cs), +(806,427,o), +(728,506,o), +(621,506,cs), +(401,506,o), +(373,226,o), +(234,226,cs), +(194,226,o), +(170,250,o), +(170,292,cs), +(170,342,o), +(215,380,o), +(259,380,cs), +(406,380,o), +(344,100,o), +(584,100,cs) +); +} +); +width = 858; +} +); +unicode = 8734; +}, +{ +color = 6; +glyphname = integral; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(73,-185,o), +(138,-138,o), +(163,-21,c), +(286,557,ls), +(297,610,o), +(328,636,o), +(376,636,c), +(399,636,o), +(419,630,o), +(439,621,c), +(457,708,l), +(431,718,o), +(403,725,o), +(371,725,c), +(277,725,o), +(212,678,o), +(187,561,cs), +(64,-17,l), +(53,-70,o), +(22,-96,o), +(-26,-96,c), +(-49,-96,o), +(-69,-90,o), +(-89,-81,c), +(-107,-168,l), +(-81,-178,o), +(-53,-185,o), +(-21,-185,c) +); +} +); +width = 429; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(317,603,o), +(340,598,o), +(364,592,c), +(364,715,l), +(332,724,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(358,407,l), +(358,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(81,-189,o), +(163,-143,o), +(190,-14,cs), +(308,541,ls), +(317,582,o), +(343,603,o), +(384,603,c), +(412,603,o), +(436,597,o), +(457,589,c), +(483,712,l), +(454,723,o), +(414,729,o), +(374,729,c), +(271,729,o), +(189,683,o), +(162,554,cs), +(44,-1,ls), +(35,-42,o), +(9,-63,o), +(-32,-63,c), +(-60,-63,o), +(-84,-57,o), +(-105,-49,c), +(-131,-172,l), +(-102,-183,o), +(-62,-189,o), +(-22,-189,c) +); +} +); +width = 445; +} +); +unicode = 8747; +}, +{ +color = 6; +glyphname = Ohm; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(650,0,l), +(650,96,l), +(390,96,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,180,l), +(390,180,l), +(390,0,l), +(490,0,l) +); +}, +{ +closed = 1; +nodes = ( +(466,593,o), +(544,521,o), +(544,412,cs), +(544,298,o), +(480,228.1,o), +(390,205,c), +(390,128,l), +(536,152.866,o), +(650,256.477,o), +(650,415,cs), +(650,585,o), +(527,700,o), +(345,700,c), +(163,700,o), +(40,585,o), +(40,415,cs), +(40,256.477,o), +(154,152.866,o), +(300,128,c), +(300,205,l), +(210,228.1,o), +(146,298,o), +(146,412,cs), +(146,521,o), +(224,593,o), +(345,593,c) +); +}, +{ +closed = 1; +nodes = ( +(300,96,l), +(40,96,l), +(40,0,l), +(300,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,180,l), +(200,180,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(650,0,l), +(670,96,l), +(410,96,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(528,180,l), +(428,180,l), +(390,0,l), +(490,0,l) +); +}, +{ +closed = 1; +nodes = ( +(320,96,l), +(60,96,l), +(40,0,l), +(300,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(338,180,l), +(238,180,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(575,593,o), +(637,539,o), +(637,455,cs), +(637,441,o), +(635,427,o), +(632,412,cs), +(607,298,o), +(528,228,o), +(434,205,c), +(417,128,l), +(568,153,o), +(705,256,o), +(738,415,cs), +(743,438,o), +(745,461,o), +(745,482,cs), +(745,615,o), +(651,700,o), +(494,700,c), +(312,700,o), +(164,585,o), +(128,415,cs), +(123,393,o), +(121,372,o), +(121,352,cs), +(121,229,o), +(206,150,o), +(327,128,c), +(344,205,l), +(273,224,o), +(227,275,o), +(227,356,cs), +(227,373,o), +(230,392,o), +(234,412,cs), +(257,521,o), +(350,593,o), +(471,593,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(272,205,l), +(201,224,o), +(155,272,o), +(155,373,c), +(155,493,o), +(251,593,o), +(398,593,c), +(502,593,o), +(565,539,o), +(565,445,c), +(565,314,o), +(468.321,231.015,o), +(362,205,c), +(345,128,l), +(518,147,o), +(673,286,o), +(673,462,c), +(673,602,o), +(561,700,o), +(404,700,c), +(198,700,o), +(49,552,o), +(49,369,c), +(49,236,o), +(134,160,o), +(255,128,c) +); +}, +{ +closed = 1; +nodes = ( +(228,0,l), +(248,96,l), +(-12,96,l), +(-32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(228,0,l), +(266,180,l), +(166,180,l), +(128,0,l) +); +}, +{ +closed = 1; +nodes = ( +(418,0,l), +(456,180,l), +(356,180,l), +(318,0,l) +); +}, +{ +closed = 1; +nodes = ( +(578,0,l), +(598,96,l), +(338,96,l), +(318,0,l) +); +} +); +width = 690; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(325,147,l), +(40,147,l), +(40,0,l), +(325,0,l) +); +}, +{ +closed = 1; +nodes = ( +(325,0,l), +(325,225,l), +(200,225,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(670,0,l), +(670,147,l), +(385,147,l), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,225,l), +(385,225,l), +(385,0,l), +(510,0,l) +); +}, +{ +closed = 1; +nodes = ( +(166.969,704,o), +(40,589,o), +(40,425,cs), +(40,286,o), +(138,185,o), +(325,173,c), +(325,294,l), +(252.539,301,o), +(198,347,o), +(198,422,cs), +(198,504,o), +(261.074,558,o), +(355,558,c), +(449,558,o), +(512,504,o), +(512,422,cs), +(512,347,o), +(457,301,o), +(385,294,c), +(385,173,l), +(572,185,o), +(670,286,o), +(670,425,cs), +(670,589,o), +(543,704,o), +(355,704,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,294,l), +(255,300,o), +(213,335,o), +(213,393,cs), +(213,481,o), +(285,558,o), +(397,558,c), +(479,558,o), +(533,517,o), +(533,452,cs), +(533,375,o), +(459,302,o), +(375,294,c), +(350,173,l), +(568,187,o), +(695,323,o), +(695,470,c), +(695,605,o), +(572,704,o), +(412,704,c), +(192,704,o), +(52,551,o), +(52,387,c), +(52,277,o), +(130,188,o), +(290,173,c) +); +}, +{ +closed = 1; +nodes = ( +(253,0,l), +(284,147,l), +(-1,147,l), +(-32,0,l) +); +}, +{ +closed = 1; +nodes = ( +(253,0,l), +(301,225,l), +(176,225,l), +(128,0,l) +); +}, +{ +closed = 1; +nodes = ( +(438,0,l), +(486,225,l), +(361,225,l), +(313,0,l) +); +}, +{ +closed = 1; +nodes = ( +(598,0,l), +(629,147,l), +(344,147,l), +(313,0,l) +); +} +); +width = 711; +} +); +unicode = 8486; +}, +{ +color = 6; +glyphname = increment; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,l), +(429,690,l), +(327,690,l), +(-58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(488,0,l), +(508,96,l), +(40,96,l), +(20,0,l) +); +}, +{ +closed = 1; +nodes = ( +(572,0,l), +(481,690,l), +(383,690,l), +(467,0,l) +); +} +); +width = 657; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(450,690,l), +(293,690,l), +(-73,0,l) +); +}, +{ +closed = 1; +nodes = ( +(470,0,l), +(500,141,l), +(82,141,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(602,0,l), +(530,690,l), +(380,690,l), +(443,0,l) +); +} +); +width = 675; +} +); +unicode = 8710; +}, +{ +color = 6; +glyphname = product; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(120,-175,l), +(304,690,l), +(199,690,l), +(15,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(450,-175,l), +(634,690,l), +(529,690,l), +(345,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(713,594,l), +(734,690,l), +(99,690,l), +(78,594,l) +); +} +); +width = 684; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,-175,l), +(327,690,l), +(172,690,l), +(-12,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(479,-175,l), +(663,690,l), +(509,690,l), +(325,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(714,545,l), +(745,690,l), +(90,690,l), +(59,545,l) +); +} +); +width = 685; +} +); +unicode = 8719; +}, +{ +color = 6; +glyphname = summation; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(30,-175,l), +(580,-175,l), +(580,-79,l), +(70,-79,l), +(30,-123,l) +); +}, +{ +closed = 1; +nodes = ( +(70,594,l), +(580,594,l), +(580,690,l), +(30,690,l), +(30,638,l) +); +}, +{ +closed = 1; +nodes = ( +(415,287,l), +(157,638,l), +(30,638,l), +(324,238,l), +(324,277,l), +(30,-123,l), +(152,-123,l), +(415,235,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(65,-123,l), +(393,235,l), +(404,287,l), +(213,638,l), +(94,638,l), +(304,248,l), +(312,287,l), +(-68,-123,l) +); +}, +{ +closed = 1; +nodes = ( +(471,-175,l), +(491,-79,l), +(-19,-79,l), +(-68,-123,l), +(-79,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(634,594,l), +(655,690,l), +(105,690,l), +(94,638,l), +(124,594,l) +); +} +); +width = 610; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(23,-175,l), +(590,-175,l), +(590,-35,l), +(81,-35,l), +(23,-72,l) +); +}, +{ +closed = 1; +nodes = ( +(81,550,l), +(590,550,l), +(590,690,l), +(23,690,l), +(23,587,l) +); +}, +{ +closed = 1; +nodes = ( +(333,295,l), +(23,-72,l), +(202,-72,l), +(440,209,l), +(440,312,l), +(208,587,l), +(23,587,l), +(333,220,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(125,-72,l), +(412,209,l), +(434,312,l), +(251,587,l), +(76,587,l), +(314,230,l), +(330,305,l), +(-64,-72,l) +); +}, +{ +closed = 1; +nodes = ( +(481,-175,l), +(511,-35,l), +(2,-35,l), +(-64,-72,l), +(-86,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(635,550,l), +(665,690,l), +(98,690,l), +(76,587,l), +(126,550,l) +); +} +); +width = 613; +} +); +unicode = 8721; +}, +{ +color = 6; +glyphname = radical; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(326,0,l), +(161,530,l), +(56,530,l), +(225,0,l) +); +}, +{ +closed = 1; +nodes = ( +(379,0,l), +(597,690,l), +(496,690,l), +(286,0,l) +); +}, +{ +closed = 1; +nodes = ( +(5,443,l), +(133,443,l), +(133,530,l), +(5,530,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(306,0,l), +(671,690,l), +(563,690,l), +(206,0,l) +); +}, +{ +closed = 1; +nodes = ( +(246,0,l), +(194,530,l), +(96,530,l), +(152,0,l) +); +}, +{ +closed = 1; +nodes = ( +(154,443,l), +(173,530,l), +(45,530,l), +(26,443,l) +); +} +); +width = 601; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(5,407,l), +(160,407,l), +(160,530,l), +(5,530,l) +); +}, +{ +closed = 1; +nodes = ( +(358,0,l), +(224,530,l), +(63,530,l), +(212,0,l) +); +}, +{ +closed = 1; +nodes = ( +(446,0,l), +(637,690,l), +(480,690,l), +(309,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(374,0,l), +(712,690,l), +(545,690,l), +(227,0,l) +); +}, +{ +closed = 1; +nodes = ( +(276,0,l), +(255,530,l), +(104,530,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,407,l), +(201,530,l), +(46,530,l), +(20,407,l) +); +} +); +width = 637; +} +); +unicode = 8730; +}, +{ +color = 6; +glyphname = micro; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(56,-175,l), +(206,530,l), +(106,530,l), +(-44,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(301,-10,o), +(379,79,o), +(409,221,c), +(380,221,l), +(360,127,o), +(297,78,o), +(230,78,c), +(163,78,o), +(120,127,o), +(140,221,c), +(109,198,l), +(82,70,o), +(126,-10,o), +(213,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(433,0,l), +(546,530,l), +(446,530,l), +(333,0,l) +); +} +); +width = 570; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(400,530,l), +(400,0,l), +(500,0,l), +(500,530,l) +); +}, +{ +closed = 1; +nodes = ( +(160,530,l), +(60,530,l), +(60,-175,l), +(160,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(134,70,o), +(191,-10,o), +(278,-10,c), +(366,-10,o), +(429,79,o), +(429,221,c), +(400,221,l), +(400,127,o), +(347,78,o), +(280,78,c), +(213,78,o), +(160,127,o), +(160,221,c), +(134,198,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,-175,l), +(243,530,l), +(94,530,l), +(-56,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(285,-14,o), +(344,73,o), +(376,226,c), +(360,226,l), +(345,155,o), +(299,118,o), +(246,118,c), +(193,118,o), +(163,155,o), +(178,226,c), +(153,196,l), +(125,64,o), +(154,-14,o), +(219,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(461,0,l), +(574,530,l), +(425,530,l), +(312,0,l) +); +} +); +width = 586; +} +); +unicode = 181; +}, +{ +color = 6; +glyphname = partialdiff; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(225.332,344,o), +(155,270.772,o), +(155,185,cs), +(155,129,o), +(194,85,o), +(267,85,c), +(351,85,o), +(424,143,o), +(440,218,c), +(442,227,o), +(443,235,o), +(443,243,cs), +(443,300,o), +(398,344,o), +(327,344,c) +); +}, +{ +closed = 1; +nodes = ( +(467,307,o), +(473,331,o), +(481,365,c), +(489,404,o), +(493,438,o), +(493,467,cs), +(493,561,o), +(452,604,o), +(377,604,c), +(335,604,o), +(290,587,o), +(256,556,c), +(206,641,l), +(263,679,o), +(322,700,o), +(383,700,c), +(521,700,o), +(597,618,o), +(597,463,cs), +(597,422,o), +(592,376,o), +(581,325,c), +(532,96,o), +(409,-10,o), +(255,-10,c), +(125,-10,o), +(50,70,o), +(50,174,cs), +(50,321,o), +(177,437,o), +(315,437,c), +(404,437,o), +(472,391,o), +(472,297,cs), +(472,285,o), +(471,274,o), +(469,261,c), +(461,286,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(422,-10,o), +(552,192,o), +(552,463,c), +(552,618,o), +(479,700,o), +(341,700,c), +(280,700,o), +(218,679,o), +(161,641,c), +(206,557,l), +(248,588,o), +(293,603,o), +(332,603,c), +(407,603,o), +(448,553,o), +(448,466,c), +(448,412,o), +(429,331,o), +(416,286,c), +(423,261,l), +(425,274,o), +(428,282,o), +(428,294,cs), +(428,383,o), +(362,437,o), +(263,437,c), +(130,437,o), +(11,323,o), +(11,178,c), +(11,72,o), +(89,-10,o), +(218,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(153,85,o), +(116,131,o), +(116,189,c), +(116,273,o), +(177,346,o), +(274,346,c), +(350,346,o), +(398,300,o), +(398,243,cs), +(398,160,o), +(315,85,o), +(229,85,c) +); +} +); +width = 587; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(222,346,o), +(161,273,o), +(161,189,c), +(161,131,o), +(198,85,o), +(274,85,c), +(360,85,o), +(443,160,o), +(443,243,cs), +(443,300,o), +(395,346,o), +(319,346,c) +); +}, +{ +closed = 1; +nodes = ( +(473.839,330.936,o), +(493,412,o), +(493,466,c), +(493,553,o), +(452,603,o), +(377,603,c), +(338,603,o), +(293,588,o), +(251,557,c), +(206,641,l), +(263,679,o), +(325,700,o), +(386,700,c), +(524,700,o), +(597,618,o), +(597,463,c), +(597,192,o), +(467,-10,o), +(263,-10,c), +(134,-10,o), +(56,72,o), +(56,178,c), +(56,323,o), +(175,437,o), +(308,437,c), +(407,437,o), +(473,383,o), +(473,294,cs), +(473,282,o), +(470,274,o), +(468,261,c), +(461,286,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(461,-14,o), +(602,179,o), +(602,450,c), +(602,615,o), +(498,704,o), +(360,704,c), +(281,704,o), +(209,679,o), +(150,641,c), +(215,522,l), +(260,549,o), +(307,563,o), +(342,563,c), +(404,563,o), +(447,523,o), +(447,450,c), +(447,412,o), +(434,340,o), +(415,286,c), +(434,263,l), +(436,276,o), +(437,282,o), +(437,294,cs), +(437,366,o), +(364,441,o), +(258,441,c), +(107,441,o), +(6,328,o), +(6,191,c), +(6,77,o), +(94,-14,o), +(242,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(193,115,o), +(160,152,o), +(160,207,c), +(160,262,o), +(202,316,o), +(288,316,c), +(355,316,o), +(397,279,o), +(397,228,c), +(397,163,o), +(336,115,o), +(258,115,c) +); +} +); +width = 636; +} +); +unicode = 8706; +}, +{ +color = 6; +glyphname = percent; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(135,0,l), +(720,690,l), +(607,690,l), +(22,0,l) +); +}, +{ +closed = 1; +nodes = ( +(327,374,o), +(404,457,o), +(404,568,cs), +(404,640,o), +(351,700,o), +(263,700,cs), +(158,700,o), +(81,617,o), +(81,506,cs), +(81,434,o), +(134,374,o), +(222,374,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,450,o), +(168,472,o), +(168,514,cs), +(168,568,o), +(208,624,o), +(257,624,cs), +(294,624,o), +(317,602,o), +(317,560,cs), +(317,506,o), +(277,450,o), +(228,450,cs) +); +}, +{ +closed = 1; +nodes = ( +(584,-10,o), +(661,73,o), +(661,184,cs), +(661,256,o), +(608,316,o), +(520,316,cs), +(415,316,o), +(338,233,o), +(338,122,cs), +(338,50,o), +(391,-10,o), +(479,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(448,66,o), +(425,88,o), +(425,130,cs), +(425,184,o), +(465,240,o), +(514,240,cs), +(551,240,o), +(574,218,o), +(574,176,cs), +(574,122,o), +(534,66,o), +(485,66,cs) +); +} +); +width = 739; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +}, +{ +closed = 1; +nodes = ( +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,c), +(380,57,o), +(445,-10,o), +(539,-10,cs), +(634,-10,o), +(699,57,o), +(699,153,c) +); +}, +{ +closed = 1; +nodes = ( +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,c), +(612,98,o), +(581,66,o), +(539,66,cs), +(498,66,o), +(467,98,o), +(467,153,c) +); +}, +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,0,l), +(759,690,l), +(609,690,l), +(36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(334,370,o), +(407,458,o), +(407,564,cs), +(407,645,o), +(345,704,o), +(261,704,cs), +(143,704,o), +(70,616,o), +(70,510,cs), +(70,429,o), +(132,370,o), +(216,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(203,475,o), +(184,491,o), +(184,523,cs), +(184,562,o), +(211,599,o), +(247,599,cs), +(274,599,o), +(293,583,o), +(293,551,cs), +(293,512,o), +(266,475,o), +(230,475,cs) +); +}, +{ +closed = 1; +nodes = ( +(651,-14,o), +(724,74,o), +(724,180,cs), +(724,261,o), +(662,320,o), +(578,320,cs), +(460,320,o), +(387,232,o), +(387,126,cs), +(387,45,o), +(449,-14,o), +(533,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(520,91,o), +(501,107,o), +(501,139,cs), +(501,178,o), +(528,215,o), +(564,215,cs), +(591,215,o), +(610,199,o), +(610,167,cs), +(610,128,o), +(583,91,o), +(547,91,cs) +); +} +); +width = 794; +} +); +unicode = 37; +}, +{ +color = 6; +glyphname = perthousand; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(135,0,l), +(720,690,l), +(607,690,l), +(22,0,l) +); +}, +{ +closed = 1; +nodes = ( +(327,374,o), +(404,457,o), +(404,568,cs), +(404,640,o), +(351,700,o), +(263,700,cs), +(158,700,o), +(81,617,o), +(81,506,cs), +(81,434,o), +(134,374,o), +(222,374,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,450,o), +(168,472,o), +(168,514,cs), +(168,568,o), +(208,624,o), +(257,624,cs), +(294,624,o), +(317,602,o), +(317,560,cs), +(317,506,o), +(277,450,o), +(228,450,cs) +); +}, +{ +closed = 1; +nodes = ( +(584,-10,o), +(661,73,o), +(661,184,cs), +(661,256,o), +(608,316,o), +(520,316,cs), +(415,316,o), +(338,233,o), +(338,122,cs), +(338,50,o), +(391,-10,o), +(479,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(448,66,o), +(425,88,o), +(425,130,cs), +(425,184,o), +(465,240,o), +(514,240,cs), +(551,240,o), +(574,218,o), +(574,176,cs), +(574,122,o), +(534,66,o), +(485,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(934,-10,o), +(1011,73,o), +(1011,184,cs), +(1011,256,o), +(958,316,o), +(870,316,cs), +(765,316,o), +(688,233,o), +(688,122,cs), +(688,50,o), +(741,-10,o), +(829,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(798,66,o), +(775,88,o), +(775,130,cs), +(775,184,o), +(815,240,o), +(864,240,cs), +(901,240,o), +(924,218,o), +(924,176,cs), +(924,122,o), +(884,66,o), +(835,66,cs) +); +} +); +width = 1089; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +}, +{ +closed = 1; +nodes = ( +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,c), +(380,57,o), +(445,-10,o), +(539,-10,cs), +(634,-10,o), +(699,57,o), +(699,153,c) +); +}, +{ +closed = 1; +nodes = ( +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,c), +(612,98,o), +(581,66,o), +(539,66,cs), +(498,66,o), +(467,98,o), +(467,153,c) +); +}, +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1049,249,o), +(984,316,o), +(889,316,cs), +(795,316,o), +(730,249,o), +(730,153,c), +(730,57,o), +(795,-10,o), +(889,-10,cs), +(984,-10,o), +(1049,57,o), +(1049,153,c) +); +}, +{ +closed = 1; +nodes = ( +(817,208,o), +(848,240,o), +(889,240,cs), +(931,240,o), +(962,208,o), +(962,153,c), +(962,98,o), +(931,66,o), +(889,66,cs), +(848,66,o), +(817,98,o), +(817,153,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,0,l), +(759,690,l), +(609,690,l), +(36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(334,370,o), +(407,458,o), +(407,564,cs), +(407,645,o), +(345,704,o), +(261,704,cs), +(143,704,o), +(70,616,o), +(70,510,cs), +(70,429,o), +(132,370,o), +(216,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(203,475,o), +(184,491,o), +(184,523,cs), +(184,562,o), +(211,599,o), +(247,599,cs), +(274,599,o), +(293,583,o), +(293,551,cs), +(293,512,o), +(266,475,o), +(230,475,cs) +); +}, +{ +closed = 1; +nodes = ( +(651,-14,o), +(724,74,o), +(724,180,cs), +(724,261,o), +(662,320,o), +(578,320,cs), +(460,320,o), +(387,232,o), +(387,126,cs), +(387,45,o), +(449,-14,o), +(533,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(520,91,o), +(501,107,o), +(501,139,cs), +(501,178,o), +(528,215,o), +(564,215,cs), +(591,215,o), +(610,199,o), +(610,167,cs), +(610,128,o), +(583,91,o), +(547,91,cs) +); +}, +{ +closed = 1; +nodes = ( +(1019,-14,o), +(1092,74,o), +(1092,180,cs), +(1092,261,o), +(1030,320,o), +(946,320,cs), +(828,320,o), +(755,232,o), +(755,126,cs), +(755,45,o), +(817,-14,o), +(901,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(888,91,o), +(869,107,o), +(869,139,cs), +(869,178,o), +(896,215,o), +(932,215,cs), +(959,215,o), +(978,199,o), +(978,167,cs), +(978,128,o), +(951,91,o), +(915,91,cs) +); +} +); +width = 1162; +} +); +unicode = 8240; +}, +{ +color = 6; +glyphname = lozenge; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(322,690,l), +(220,690,l), +(367,250,l), +(228,-175,l), +(322,-175,l), +(472,257,l) +); +}, +{ +closed = 1; +nodes = ( +(170,-175,l), +(272,-175,l), +(125,265,l), +(264,690,l), +(170,690,l), +(20,257,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(212,-175,l), +(453,255,l), +(396,690,l), +(300,690,l), +(347,256,l), +(112,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(156,-175,l), +(108,259,l), +(344,690,l), +(244,690,l), +(3,259,l), +(60,-175,l) +); +} +); +width = 492; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(387,690,l), +(232,690,l), +(366,249,l), +(241,-175,l), +(387,-175,l), +(526,258,l) +); +}, +{ +closed = 1; +nodes = ( +(300,690,l), +(154,690,l), +(15,257,l), +(154,-175,l), +(309,-175,l), +(175,266,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(277,-175,l), +(506,255,l), +(461,690,l), +(314,690,l), +(346,259,l), +(123,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(191,-175,l), +(159,256,l), +(382,690,l), +(228,690,l), +(-1,260,l), +(44,-175,l) +); +} +); +width = 541; +} +); +unicode = 9674; +}, +{ +color = 6; +glyphname = dieresiscomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (290,530); +}, +{ +name = top; +pos = (329,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(438,602,o), +(464,627,o), +(464,662,c), +(464,694,o), +(443,715,o), +(412,715,c), +(377,715,o), +(352,690,o), +(352,653,c), +(352,623,o), +(373,602,o), +(403,602,c) +); +}, +{ +closed = 1; +nodes = ( +(256,602,o), +(282,627,o), +(282,662,c), +(282,694,o), +(261,715,o), +(230,715,c), +(195,715,o), +(170,690,o), +(170,653,c), +(170,623,o), +(191,602,o), +(221,602,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (290,530); +}, +{ +name = top; +pos = (332,728); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(452,588,o), +(486,618,o), +(486,664,c), +(486,703,o), +(461,728,o), +(420,728,c), +(378,728,o), +(344,698,o), +(344,652,c), +(344,613,o), +(369,588,o), +(410,588,c) +); +}, +{ +closed = 1; +nodes = ( +(256,588,o), +(290,618,o), +(290,664,c), +(290,703,o), +(265,728,o), +(224,728,c), +(182,728,o), +(148,698,o), +(148,652,c), +(148,613,o), +(173,588,o), +(214,588,c) +); +} +); +width = 500; +} +); +unicode = 776; +}, +{ +color = 6; +glyphname = dotaccentcomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (290,530); +}, +{ +name = top; +pos = (331,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(285,602,o), +(312,627,o), +(312,663,cs), +(312,700,o), +(285,725,o), +(250,725,cs), +(215,725,o), +(188,700,o), +(188,663,cs), +(188,627,o), +(215,602,o), +(250,602,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(351,602,o), +(379,629,o), +(379,667,c), +(379,702,o), +(356,725,o), +(322,725,c), +(284,725,o), +(257,698,o), +(257,657,c), +(257,625,o), +(280,602,o), +(313,602,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (290,530); +}, +{ +name = top; +pos = (334,738); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(418,588,o), +(458,619,o), +(467,664,cs), +(477,710,o), +(450,738,o), +(407,738,cs), +(363,738,o), +(325,710,o), +(315,664,cs), +(306,619,o), +(331,588,o), +(375,588,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,588,o), +(394,620,o), +(394,669,c), +(394,711,o), +(367,738,o), +(323,738,c), +(278,738,o), +(242,706,o), +(242,656,c), +(242,615,o), +(269,588,o), +(313,588,c) +); +} +); +width = 500; +} +); +unicode = 775; +}, +{ +color = 6; +glyphname = gravecomb; +lastChange = "2024-03-22 10:55:36 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (290,530); +}, +{ +name = top; +pos = (284,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,725,l), +(105,725,l), +(215,585,l), +(305,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(350,585,l), +(310,725,l), +(189,725,l), +(269,585,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (236,530); +}, +{ +name = top; +pos = (279,730); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(238,730,l), +(81,730,l), +(206,585,l), +(318,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,585,l), +(238,730,l), +(81,730,l), +(206,585,l) +); +} +); +width = 499; +} +); +unicode = 768; +}, +{ +color = 6; +glyphname = acutecomb; +lastChange = "2024-03-21 14:49:53 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (301,530); +}, +{ +name = top; +pos = (373,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(285,585,l), +(395,725,l), +(265,725,l), +(195,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(334,585,l), +(471,725,l), +(345,725,l), +(245,585,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (278,530); +}, +{ +name = top; +pos = (321,730); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(294,585,l), +(419,730,l), +(262,730,l), +(182,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,585,l), +(459,730,l), +(302,730,l), +(222,585,l) +); +} +); +width = 499; +} +); +unicode = 769; +}, +{ +color = 6; +glyphname = hungarumlautcomb; +lastChange = "2024-03-21 14:48:20 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289,530); +}, +{ +name = top; +pos = (382,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(230,585,l), +(300,725,l), +(195,725,l), +(145,585,l) +); +}, +{ +closed = 1; +nodes = ( +(360,585,l), +(460,725,l), +(345,725,l), +(275,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(410,585,l), +(540,725,l), +(427,725,l), +(327,585,l) +); +}, +{ +closed = 1; +nodes = ( +(278,585,l), +(378,725,l), +(275,725,l), +(195,585,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288,530); +}, +{ +name = top; +pos = (396,730); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(238,585,l), +(322,730,l), +(182,730,l), +(131,585,l) +); +}, +{ +closed = 1; +nodes = ( +(375,585,l), +(500,730,l), +(353,730,l), +(269,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(425,585,l), +(581,730,l), +(434,730,l), +(319,585,l) +); +}, +{ +closed = 1; +nodes = ( +(288,585,l), +(403,730,l), +(263,730,l), +(181,585,l) +); +} +); +width = 499; +} +); +unicode = 779; +}, +{ +color = 6; +glyphname = caroncomb.alt; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _topright; +pos = (262,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(284,442,l), +(386,715,l), +(282,715,l), +(224,442,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _topright; +pos = (248,715); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(291,408,l), +(418,715,l), +(268,715,l), +(203,408,l) +); +} +); +width = 499; +} +); +}, +{ +color = 6; +glyphname = circumflexcomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (288,530); +}, +{ +name = top; +pos = (330,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(306,725,l), +(198,725,l), +(316,585,l), +(406,585,l) +); +}, +{ +closed = 1; +nodes = ( +(184,585,l), +(302,725,l), +(194,725,l), +(94,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(238,585,l), +(342,685,l), +(349,725,l), +(274,725,l), +(144,585,l) +); +}, +{ +closed = 1; +nodes = ( +(456,585,l), +(386,725,l), +(311,725,l), +(312,685,l), +(374,585,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288,530); +}, +{ +name = top; +pos = (331,730); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(320,730,l), +(184,730,l), +(312,585,l), +(422,585,l) +); +}, +{ +closed = 1; +nodes = ( +(188,585,l), +(316,730,l), +(180,730,l), +(78,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(244,585,l), +(355,686,l), +(367,730,l), +(261,730,l), +(128,585,l) +); +}, +{ +closed = 1; +nodes = ( +(472,585,l), +(401,730,l), +(295,730,l), +(300,686,l), +(368,585,l) +); +} +); +width = 499; +} +); +unicode = 770; +}, +{ +color = 6; +glyphname = caroncomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289,530); +}, +{ +name = top; +pos = (330,725); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(356,585,l), +(486,725,l), +(392,725,l), +(288,625,l), +(281,585,l) +); +}, +{ +closed = 1; +nodes = ( +(319,585,l), +(318,625,l), +(256,725,l), +(174,725,l), +(244,585,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288,530); +}, +{ +name = top; +pos = (331,730); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,585,l), +(503,730,l), +(387,730,l), +(276,629,l), +(264,585,l) +); +}, +{ +closed = 1; +nodes = ( +(336,585,l), +(331,629,l), +(263,730,l), +(159,730,l), +(230,585,l) +); +} +); +width = 499; +} +); +unicode = 780; +}, +{ +color = 6; +glyphname = brevecomb; +lastChange = "2024-03-22 12:29:02 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289,530); +}, +{ +name = top; +pos = (330,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(205,660,o), +(181,684,o), +(180,725,c), +(110,725,l), +(112,639,o), +(157,585,o), +(250,585,c), +(343,585,o), +(388,639,o), +(390,725,c), +(320,725,l), +(319,684,o), +(295,660,o), +(250,660,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(405,585,o), +(452,639,o), +(470,725,c), +(400,725,l), +(392,684,o), +(361,660,o), +(314,660,c), +(276,660,o), +(258,677,o), +(258,707,cs), +(258,712,o), +(259,719,o), +(260,725,c), +(190,725,l), +(188,713,o), +(187,702,o), +(187,692,cs), +(187,629,o), +(233,585,o), +(310,585,c) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288,530); +}, +{ +name = top; +pos = (331,730); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(213,671,o), +(193,693,o), +(192,730,c), +(101,730,l), +(103,639,o), +(151,585,o), +(250,585,c), +(349,585,o), +(397,639,o), +(399,730,c), +(308,730,l), +(307,693,o), +(287,671,o), +(250,671,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(415,584,o), +(461,638,o), +(480,729,c), +(389,729,l), +(382,692,o), +(354,670,o), +(317,670,c), +(286,670,o), +(271,685,o), +(271,712,cs), +(271,717,o), +(272,723,o), +(273,729,c), +(182,729,l), +(180,717,o), +(179,707,o), +(179,696,cs), +(179,625,o), +(229,584,o), +(310,584,c) +); +} +); +width = 499; +} +); +unicode = 774; +}, +{ +color = 6; +glyphname = ringcomb; +lastChange = "2024-03-21 14:16:43 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (288,530); +}, +{ +name = top; +pos = (323,728); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(229,630,o), +(216,646,o), +(216,666,cs), +(216,687,o), +(229,703,o), +(250,703,cs), +(271,703,o), +(284,687,o), +(284,666,cs), +(284,646,o), +(271,630,o), +(250,630,cs) +); +}, +{ +closed = 1; +nodes = ( +(305.88,575,o), +(347,610.977,o), +(347,666,cs), +(347,722.046,o), +(305.88,758,o), +(250,758,cs), +(194.12,758,o), +(153,722.046,o), +(153,666,cs), +(153,610.977,o), +(194.12,575,o), +(250,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(363,630,o), +(353,646,o), +(358,666,cs), +(362,687,o), +(378,703,o), +(399,703,cs), +(420,703,o), +(430,687,o), +(426,666,cs), +(421,646,o), +(405,630,o), +(384,630,cs) +); +}, +{ +closed = 1; +nodes = ( +(428,575,o), +(477,611,o), +(489,666,cs), +(500,722,o), +(467,758,o), +(411,758,cs), +(355,758,o), +(306,722,o), +(295,666,cs), +(283,611,o), +(316,575,o), +(372,575,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(370,575,o), +(414,622,o), +(414,680,cs), +(414,728,o), +(380,758,o), +(330,758,cs), +(265,758,o), +(221,711,o), +(221,653,cs), +(221,605,o), +(255,575,o), +(305,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(292,630,o), +(283,641,o), +(283,658,cs), +(283,681,o), +(300,703,o), +(324,703,cs), +(343,703,o), +(352,692,o), +(352,675,cs), +(352,652,o), +(335,630,o), +(311,630,cs) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (289,530); +}, +{ +name = top; +pos = (340,738); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (363,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(368,640,o), +(359,653,o), +(362,670,cs), +(366,689,o), +(381,702,o), +(399,702,cs), +(417,702,o), +(426,689,o), +(422,670,cs), +(419,653,o), +(404,640,o), +(386,640,cs) +); +}, +{ +closed = 1; +nodes = ( +(435,575,o), +(484,614,o), +(495,670,cs), +(508,728,o), +(476,767,o), +(413,767,cs), +(350,767,o), +(302,728,o), +(289,670,cs), +(278,614,o), +(309,575,o), +(372,575,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,575,o), +(426,624,o), +(426,682,cs), +(426,733,o), +(389,768,o), +(330,768,cs), +(260,768,o), +(213,719,o), +(213,661,cs), +(213,610,o), +(250,575,o), +(309,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(296,640,o), +(288,651,o), +(288,666,cs), +(288,685,o), +(302,703,o), +(324,703,cs), +(343,703,o), +(351,692,o), +(351,677,cs), +(351,658,o), +(337,640,o), +(315,640,cs) +); +} +); +width = 499; +} +); +unicode = 778; +}, +{ +color = 6; +glyphname = tildecomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289,530); +}, +{ +name = top; +pos = (330,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,585,o), +(394,639,o), +(400,725,c), +(332,725,l), +(331,686,o), +(322,668,o), +(303,668,c), +(272,668,o), +(251,725,o), +(192,725,c), +(139,725,o), +(106,671,o), +(100,585,c), +(168,585,l), +(169,624,o), +(178,642,o), +(197,642,c), +(229,642,o), +(249,585,o), +(308,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(221,585,l), +(225,624,o), +(234,642,o), +(259,642,c), +(291,642,o), +(307,585,o), +(368,585,c), +(431,585,o), +(465,639,o), +(477,725,c), +(409,725,l), +(406,686,o), +(396,668,o), +(371,668,c), +(340,668,o), +(323,725,o), +(262,725,c), +(199,725,o), +(166,671,o), +(153,585,c) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (289,530); +}, +{ +name = top; +pos = (332,730); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(366,585,o), +(406,641,o), +(409,730,c), +(325,730,l), +(322,702,o), +(310,690,o), +(295,690,c), +(267,690,o), +(246,730,o), +(188,730,c), +(133,730,o), +(93,674,o), +(91,585,c), +(175,585,l), +(178,612,o), +(190,624,o), +(205,624,c), +(235,624,o), +(254,585,o), +(312,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,585,l), +(227,612,o), +(242,624,o), +(261,624,c), +(295,624,o), +(310,585,o), +(368,585,c), +(430,585,o), +(477,641,o), +(491,730,c), +(407,730,l), +(406,702,o), +(392,690,o), +(373,690,c), +(341,690,o), +(323,730,o), +(265,730,c), +(202,730,o), +(155,674,o), +(142,585,c) +); +} +); +width = 499; +} +); +unicode = 771; +}, +{ +color = 6; +glyphname = macroncomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (290,530); +}, +{ +name = top; +pos = (327,705); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(447,621,l), +(465,705,l), +(189,705,l), +(171,621,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (289,530); +}, +{ +name = top; +pos = (329,718); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,603,l), +(476,718,l), +(182,718,l), +(157,603,l) +); +} +); +width = 498; +} +); +unicode = 772; +}, +{ +color = 6; +glyphname = commaaccentcomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (177,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(215,-72,o), +(188,-97,o), +(188,-133,cs), +(188,-170,o), +(215,-195,o), +(250,-195,cs), +(285,-195,o), +(312,-170,o), +(312,-133,cs), +(312,-97,o), +(285,-72,o), +(250,-72,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(135,-275,l), +(219,-72,l), +(115,-72,l), +(72,-275,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (177,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(326,-73,o), +(292,-43,o), +(249,-43,cs), +(206,-43,o), +(174,-73,o), +(174,-119,cs), +(174,-164,o), +(206,-193,o), +(249,-193,c), +(231,-175,l), +(193,-270,l), +(266,-270,l), +(298,-215,ls), +(318,-181,o), +(326,-156,o), +(326,-124,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,-270,l), +(236,-54,l), +(104,-54,l), +(58,-270,l) +); +} +); +width = 499; +} +); +unicode = 806; +}, +{ +color = 6; +glyphname = cedillacomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (179,0); +}, +{ +name = bottom; +pos = (139,-185); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(264,-43,l), +(270,9,l), +(214,11,l), +(201,-73,l), +(212,-71,o), +(219,-70,o), +(230,-70,c), +(254,-70,o), +(268,-79,o), +(268,-96,c), +(268,-110,o), +(255,-119,o), +(234,-119,c), +(214,-119,o), +(198,-114,o), +(180,-105,c), +(167,-169,l), +(192,-180,o), +(217,-185,o), +(243,-185,c), +(301,-185,o), +(337,-151,o), +(337,-106,cs), +(337,-57,o), +(300,-29,o), +(252,-29,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(198.235,-185,o), +(242,-144,o), +(242,-96,c), +(242,-55,o), +(213,-29,o), +(172,-29,c), +(181,-43,l), +(198,9,l), +(142,11,l), +(111,-73,l), +(123,-71,o), +(130,-70,o), +(141,-70,c), +(163,-70,o), +(174,-79,o), +(174,-94,c), +(174,-108,o), +(159.706,-119,o), +(135,-119,c), +(115,-119,o), +(100,-114,o), +(84,-105,c), +(57,-169,l), +(80,-180,o), +(104,-185,o), +(130,-185,c) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (180,0); +}, +{ +name = bottom; +pos = (139,-190); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-43,l), +(276,9,l), +(208,11,l), +(194,-80,l), +(205,-76,o), +(215,-74,o), +(227,-74,c), +(250,-74,o), +(260,-82,o), +(260,-92,c), +(260,-103,o), +(250,-109,o), +(230,-109,c), +(210,-109,o), +(187,-105,o), +(166,-94,c), +(154,-174,l), +(181,-185,o), +(212,-190,o), +(240,-190,c), +(318,-190,o), +(352,-154,o), +(352,-106,cs), +(352,-57,o), +(316,-29,o), +(258,-29,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(217.765,-190,o), +(257,-146,o), +(257,-97,c), +(257,-57,o), +(228,-29,o), +(178,-29,c), +(187,-43,l), +(204,9,l), +(136,11,l), +(103,-80,l), +(115,-76,o), +(125,-74,o), +(137,-74,c), +(157,-74,o), +(167,-80,o), +(167,-91,c), +(167,-103,o), +(156,-109,o), +(133,-109,c), +(113,-109,o), +(91,-105,o), +(72,-94,c), +(43,-174,l), +(68,-185,o), +(98,-190,o), +(126,-190,c) +); +} +); +width = 499; +} +); +unicode = 807; +}, +{ +color = 6; +glyphname = ogonekcomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +pos = (230,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(136,-37,o), +(113,-69,o), +(113,-111,c), +(113,-153,o), +(147,-185,o), +(212,-185,cs), +(241,-185,o), +(276,-176,o), +(304,-165,c), +(295,-84,l), +(272,-94,o), +(238,-106,o), +(218,-106,c), +(205,-106,o), +(197,-101,o), +(197,-89,c), +(197,-65,o), +(234,-34,o), +(304,0,c), +(204,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(136,-185,o), +(173,-176,o), +(195,-165,c), +(203,-84,l), +(178,-96,o), +(147,-106,o), +(121,-106,c), +(110,-106,o), +(104,-101,o), +(104,-93,cs), +(104,-72,o), +(141,-38,o), +(230,0,c), +(130,0,l), +(45,-35,o), +(16,-74,o), +(16,-118,c), +(16,-155,o), +(42,-185,o), +(104,-185,c) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (266,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(159,-37,o), +(131,-69,o), +(131,-111,c), +(131,-156,o), +(170,-190,o), +(242,-190,cs), +(273,-190,o), +(309,-183,o), +(339,-170,c), +(330,-75,l), +(310,-87,o), +(284,-96,o), +(265,-96,c), +(250,-96,o), +(242,-89,o), +(242,-79,c), +(242,-60,o), +(270,-31,o), +(339,0,c), +(234,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(164,-190,o), +(199,-183,o), +(230,-170,c), +(241,-75,l), +(219,-87,o), +(191,-96,o), +(172,-96,c), +(159,-96,o), +(152,-90,o), +(152,-82,cs), +(152,-65,o), +(176.588,-36.471,o), +(266,0,c), +(161,0,l), +(68,-36,o), +(37,-82,o), +(37,-121,c), +(37,-158,o), +(67,-190,o), +(136,-190,c) +); +} +); +width = 499; +} +); +unicode = 808; +}, +{ +color = 6; +glyphname = commaaccentcomb.alt; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (290,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(352,602,l), +(395,805,l), +(332,805,l), +(248,602,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,603,o), +(207,573,o), +(250,573,cs), +(293,573,o), +(326,603,o), +(326,649,cs), +(326,694,o), +(293,723,o), +(250,723,c), +(268,705,l), +(306,800,l), +(233,800,l), +(201,745,ls), +(181,711,o), +(174,686,o), +(174,654,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,584,l), +(407,800,l), +(317,800,l), +(229,584,l) +); +} +); +width = 499; +} +); +}, +{ +color = 6; +glyphname = dieresiscomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (322.664,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(477,742,o), +(503,767,o), +(503,802,c), +(503,834,o), +(482,855,o), +(451,855,c), +(416,855,o), +(391,830,o), +(391,793,c), +(391,763,o), +(412,742,o), +(442,742,c) +); +}, +{ +closed = 1; +nodes = ( +(274,742,o), +(300,767,o), +(300,802,c), +(300,834,o), +(279,855,o), +(248,855,c), +(213,855,o), +(188,830,o), +(188,793,c), +(188,763,o), +(209,742,o), +(239,742,c) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _top; +pos = (323.664,690); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(496,742,o), +(528,770,o), +(528,813,c), +(528,850,o), +(504,873,o), +(463,873,c), +(421,873,o), +(389,845,o), +(389,802,c), +(389,765,o), +(412,742,o), +(454,742,c) +); +}, +{ +closed = 1; +nodes = ( +(276,742,o), +(308,770,o), +(308,813,c), +(308,850,o), +(284,873,o), +(243,873,c), +(201,873,o), +(169,845,o), +(169,802,c), +(169,765,o), +(192,742,o), +(234,742,c) +); +} +); +width = 499; +} +); +}, +{ +color = 6; +glyphname = dotaccentcomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (323.664,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(441,735,o), +(474,760,o), +(481,796,cs), +(489,833,o), +(467,858,o), +(432,858,cs), +(397,858,o), +(365,833,o), +(357,796,cs), +(350,760,o), +(371,735,o), +(406,735,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(379,735,o), +(407,759.923,o), +(407,795,cs), +(407,826.983,o), +(384,848,o), +(350,848,cs), +(312,848,o), +(285,822.985,o), +(285,785,cs), +(285,755.909,o), +(308,735,o), +(341,735,cs) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (323.664,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(451,741,o), +(490,770,o), +(499,812,cs), +(508,855,o), +(480,882,o), +(437,882,cs), +(393,882,o), +(356,855,o), +(347,812,cs), +(338,770,o), +(364,741,o), +(408,741,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(390,741,o), +(426,771.025,o), +(426,817,cs), +(426,855.957,o), +(399,881,o), +(355,881,cs), +(310,881,o), +(274,850.951,o), +(274,804,cs), +(274,766.015,o), +(301,741,o), +(345,741,cs) +); +} +); +width = 499; +} +); +}, +{ +color = 6; +glyphname = gravecomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (323.664,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(213,845,l), +(78,845,l), +(215,735,l), +(313,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(392,735,l), +(316,845,l), +(191,845,l), +(304,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (324.664,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(218,850,l), +(49,850,l), +(200,735,l), +(321,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,735,l), +(322,850,l), +(161,850,l), +(290,735,l) +); +} +); +width = 501; +} +); +}, +{ +color = 6; +glyphname = acutecomb.case; +lastChange = "2024-03-21 14:21:18 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (323,690); +}, +{ +name = top; +pos = (408,845); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(285,735,l), +(422,845,l), +(287,845,l), +(187,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(368,735,l), +(526,845,l), +(391,845,l), +(267,735,l) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _top; +pos = (322,690); +}, +{ +name = top; +pos = (422,850); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(300,735,l), +(451,850,l), +(282,850,l), +(179,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,735,l), +(560,850,l), +(387,850,l), +(259,735,l) +); +} +); +width = 498; +} +); +}, +{ +color = 6; +glyphname = hungarumlautcomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (323,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(373,735,l), +(510,845,l), +(381,845,l), +(281,735,l) +); +}, +{ +closed = 1; +nodes = ( +(227,735,l), +(324,845,l), +(206,845,l), +(135,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(454,735,l), +(613,845,l), +(489,845,l), +(365,735,l) +); +}, +{ +closed = 1; +nodes = ( +(307,735,l), +(428,845,l), +(312,845,l), +(219,735,l) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _top; +pos = (323,690); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(386,735,l), +(537,850,l), +(384,850,l), +(275,735,l) +); +}, +{ +closed = 1; +nodes = ( +(235,735,l), +(343,850,l), +(200,850,l), +(129,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(470,735,l), +(646,850,l), +(491,850,l), +(357,735,l) +); +}, +{ +closed = 1; +nodes = ( +(317,735,l), +(450,850,l), +(305,850,l), +(209,735,l) +); +} +); +width = 498; +} +); +}, +{ +color = 6; +glyphname = circumflexcomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (323.664,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(167,735,l), +(316,845,l), +(181,845,l), +(67,735,l) +); +}, +{ +closed = 1; +nodes = ( +(319,845,l), +(184,845,l), +(333,735,l), +(433,735,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(257,735,l), +(378,814,l), +(393,845,l), +(288,845,l), +(150,735,l) +); +}, +{ +closed = 1; +nodes = ( +(516,735,l), +(426,845,l), +(321,845,l), +(335,814,l), +(423,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (323.664,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(178,735,l), +(325,850,l), +(166,850,l), +(56,735,l) +); +}, +{ +closed = 1; +nodes = ( +(334,850,l), +(175,850,l), +(322,735,l), +(444,735,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(266,735,l), +(381,812,l), +(403,850,l), +(274,850,l), +(139,735,l) +); +}, +{ +closed = 1; +nodes = ( +(527,735,l), +(442,850,l), +(313,850,l), +(329,812,l), +(410,735,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = caroncomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (324.664,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(403,735,l), +(541,845,l), +(434,845,l), +(313,766,l), +(298,735,l) +); +}, +{ +closed = 1; +nodes = ( +(370,735,l), +(356,766,l), +(268,845,l), +(175,845,l), +(265,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (324.664,690); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(418,735,l), +(553,850,l), +(426,850,l), +(311,773,l), +(289,735,l) +); +}, +{ +closed = 1; +nodes = ( +(379,735,l), +(363,773,l), +(282,850,l), +(165,850,l), +(250,735,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = brevecomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (324,690); +}, +{ +name = top; +pos = (357,845); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(195,805,o), +(174,820,o), +(170,845,c), +(100,845,l), +(105,777,o), +(153,735,o), +(250,735,c), +(347,735,o), +(395,777,o), +(400,845,c), +(330,845,l), +(326,820,o), +(305,805,o), +(250,805,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(442,735,o), +(489,777,o), +(507,845,c), +(437,845,l), +(429,820,o), +(402,805,o), +(345,805,cs), +(332,805,o), +(288,809,o), +(277,845,c), +(207,845,l), +(206,838,o), +(206,833,o), +(206,828,cs), +(206,773,o), +(254,735,o), +(342,735,cs) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (324,690); +}, +{ +name = top; +pos = (358,850); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(448,730,o), +(501,779,o), +(517,850,c), +(420,850,l), +(412,827,o), +(390,814,o), +(349,814,c), +(308,814,o), +(296,827,o), +(296,850,c), +(199,850,l), +(198,843,o), +(197,837,o), +(197,831,cs), +(197,770,o), +(250,730,o), +(344,730,c) +); +} +); +width = 499; +} +); +}, +{ +color = 6; +glyphname = ringcomb.case; +lastChange = "2024-03-21 14:17:05 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (323,690); +}, +{ +name = top; +pos = (369,878); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(229,790,o), +(216,803.778,o), +(216,821,cs), +(216,839.162,o), +(229,853,o), +(250,853,cs), +(271,853,o), +(284,839.162,o), +(284,821,cs), +(284,803.778,o), +(271,790,o), +(250,790,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,735,o), +(347,769.022,o), +(347,821,cs), +(347,873.957,o), +(306,908,o), +(250,908,cs), +(194,908,o), +(153,873.957,o), +(153,821,cs), +(153,769.022,o), +(194,735,o), +(250,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,790,o), +(216,803.778,o), +(216,821,cs), +(216,839.162,o), +(229,853,o), +(250,853,cs), +(271,853,o), +(284,839.162,o), +(284,821,cs), +(284,803.778,o), +(271,790,o), +(250,790,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,735,o), +(347,769.022,o), +(347,821,cs), +(347,873.957,o), +(306,908,o), +(250,908,cs), +(194,908,o), +(153,873.957,o), +(153,821,cs), +(153,769.022,o), +(194,735,o), +(250,735,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(404,735,o), +(448,779,o), +(448,833,cs), +(448,878,o), +(413,908,o), +(362,908,cs), +(297,908,o), +(253,864,o), +(253,810,cs), +(253,765,o), +(288,735,o), +(339,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(326,790,o), +(316,800,o), +(316,815,cs), +(316,836,o), +(332.294,853,o), +(357,853,cs), +(375,853,o), +(385,843,o), +(385,828,cs), +(385,807,o), +(369,790,o), +(344,790,cs) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _top; +pos = (323,690); +}, +{ +name = top; +pos = (371,890); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (397,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(232,800,o), +(220,811,o), +(220,826,cs), +(220,841,o), +(232,852,o), +(250,852,cs), +(268,852,o), +(280,841,o), +(280,826,cs), +(280,811,o), +(268,800,o), +(250,800,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,735,o), +(353,772,o), +(353,826,cs), +(353,880,o), +(313,917,o), +(250,917,cs), +(187,917,o), +(147,880,o), +(147,826,cs), +(147,772,o), +(187,735,o), +(250,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(402,800,o), +(392,811,o), +(396,826,cs), +(399,841,o), +(413,852,o), +(431,852,cs), +(449,852,o), +(459,841,o), +(456,826,cs), +(452,811,o), +(438,800,o), +(420,800,cs) +); +}, +{ +closed = 1; +nodes = ( +(469,735,o), +(517,772,o), +(529,826,cs), +(540,880,o), +(508,917,o), +(445,917,cs), +(382,917,o), +(334,880,o), +(323,826,cs), +(311,772,o), +(343,735,o), +(406,735,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(412,735,o), +(455,784,o), +(455,837,cs), +(455,883,o), +(421,917,o), +(361,917,cs), +(291,917,o), +(248,868,o), +(248,815,cs), +(248,769,o), +(282,735,o), +(342,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(331,800,o), +(321,808,o), +(321,823,cs), +(321,839,o), +(334,852,o), +(354,852,cs), +(372,852,o), +(382,844,o), +(382,829,cs), +(382,813,o), +(369,800,o), +(349,800,cs) +); +} +); +width = 498; +} +); +}, +{ +color = 6; +glyphname = tildecomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (323,690); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(367,735,o), +(403.348,777.429,o), +(410,845,c), +(342,845,l), +(340.655,823.105,o), +(329,807,o), +(308,807,c), +(278,807,o), +(247,845,o), +(190,845,c), +(133,845,o), +(96.652,802.571,o), +(90,735,c), +(158,735,l), +(159.345,756.895,o), +(171,773,o), +(192,773,c), +(223,773,o), +(253,735,o), +(310,735,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(242,735,l), +(244,757,o), +(257,773,o), +(280,773,c), +(316,773,o), +(343,735,o), +(400,735,c), +(463,735,o), +(502,777,o), +(514,845,c), +(446,845,l), +(444,823,o), +(431,807,o), +(408,807,c), +(373,807,o), +(345,845,o), +(288,845,c), +(225,845,o), +(186,803,o), +(174,735,c) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (324,690); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(372,735,o), +(415,781,o), +(419,854,c), +(335,854,l), +(332,828,o), +(320,817,o), +(304,817,c), +(276,817,o), +(252,854,o), +(187,854,c), +(127,854,o), +(84,808,o), +(81,735,c), +(165,735,l), +(168,761,o), +(180,772,o), +(196,772,c), +(226,772,o), +(248,735,o), +(313,735,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,735,l), +(251,761,o), +(267,772,o), +(284,772,c), +(317,772,o), +(339,735,o), +(404,735,c), +(467,735,o), +(514,781,o), +(526,854,c), +(442,854,l), +(441,828,o), +(425,817,o), +(408,817,c), +(377,817,o), +(353,854,o), +(288,854,c), +(224,854,o), +(177,808,o), +(166,735,c) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = macroncomb.case; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (322.664,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(494,753,l), +(512,837,l), +(196,837,l), +(178,753,l) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _top; +pos = (322.664,690); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(497,735,l), +(522,850,l), +(192,850,l), +(167,735,l) +); +} +); +width = 498; +} +); +}, +{ +color = 10; +glyphname = dieresis; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289.655,530); +} +); +layerId = m001; +shapes = ( +{ +ref = dieresiscomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (289.655,530); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = dieresiscomb; +} +); +width = 500; +} +); +unicode = 168; +}, +{ +color = 10; +glyphname = dotaccent; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(285,602,o), +(312,627,o), +(312,663,cs), +(312,700,o), +(285,725,o), +(250,725,cs), +(215,725,o), +(188,700,o), +(188,663,cs), +(188,627,o), +(215,602,o), +(250,602,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = dotaccentcomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (289.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(418,588,o), +(458,619,o), +(467,664,cs), +(477,710,o), +(450,738,o), +(407,738,cs), +(363,738,o), +(325,710,o), +(315,664,cs), +(306,619,o), +(331,588,o), +(375,588,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = dotaccentcomb; +} +); +width = 500; +} +); +unicode = 729; +}, +{ +color = 10; +glyphname = grave; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,725,l), +(105,725,l), +(215,585,l), +(305,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = gravecomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(238,730,l), +(81,730,l), +(206,585,l), +(318,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = gravecomb; +} +); +width = 499; +} +); +unicode = 96; +}, +{ +color = 10; +glyphname = acute; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(285,585,l), +(395,725,l), +(265,725,l), +(195,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = acutecomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(294,585,l), +(419,730,l), +(262,730,l), +(182,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = acutecomb; +} +); +width = 499; +} +); +unicode = 180; +}, +{ +color = 10; +glyphname = hungarumlaut; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(230,585,l), +(300,725,l), +(195,725,l), +(145,585,l) +); +}, +{ +closed = 1; +nodes = ( +(360,585,l), +(460,725,l), +(345,725,l), +(275,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = hungarumlautcomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (289,530); +} +); +background = { +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(238,585,l), +(322,730,l), +(182,730,l), +(131,585,l) +); +}, +{ +closed = 1; +nodes = ( +(375,585,l), +(500,730,l), +(353,730,l), +(269,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = hungarumlautcomb; +} +); +width = 499; +} +); +unicode = 733; +}, +{ +color = 10; +glyphname = circumflex; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(306,725,l), +(198,725,l), +(316,585,l), +(406,585,l) +); +}, +{ +closed = 1; +nodes = ( +(184,585,l), +(302,725,l), +(194,725,l), +(94,585,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = circumflexcomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(320,730,l), +(184,730,l), +(312,585,l), +(422,585,l) +); +}, +{ +closed = 1; +nodes = ( +(188,585,l), +(316,730,l), +(180,730,l), +(78,585,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = circumflexcomb; +} +); +width = 499; +} +); +unicode = 710; +}, +{ +color = 6; +glyphname = firsttonechinese; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289.655,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(447,621,l), +(465,705,l), +(189,705,l), +(171,621,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,603,l), +(476,718,l), +(182,718,l), +(157,603,l) +); +} +); +width = 498; +} +); +unicode = 713; +}, +{ +color = 10; +glyphname = caron; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +layerId = m001; +shapes = ( +{ +ref = caroncomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = caroncomb; +} +); +width = 499; +} +); +unicode = 711; +}, +{ +color = 10; +glyphname = breve; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(205,660,o), +(181,684,o), +(180,725,c), +(110,725,l), +(112,639,o), +(157,585,o), +(250,585,c), +(343,585,o), +(388,639,o), +(390,725,c), +(320,725,l), +(319,684,o), +(295,660,o), +(250,660,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = brevecomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (289,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(213,671,o), +(193,693,o), +(192,730,c), +(101,730,l), +(103,639,o), +(151,585,o), +(250,585,c), +(349,585,o), +(397,639,o), +(399,730,c), +(308,730,l), +(307,693,o), +(287,671,o), +(250,671,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = brevecomb; +} +); +width = 499; +} +); +unicode = 728; +}, +{ +color = 10; +glyphname = ring; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(229,630,o), +(216,646,o), +(216,666,cs), +(216,687,o), +(229,703,o), +(250,703,cs), +(271,703,o), +(284,687,o), +(284,666,cs), +(284,646,o), +(271,630,o), +(250,630,cs) +); +}, +{ +closed = 1; +nodes = ( +(305.88,575,o), +(347,610.977,o), +(347,666,cs), +(347,722.046,o), +(305.88,758,o), +(250,758,cs), +(194.12,758,o), +(153,722.046,o), +(153,666,cs), +(153,610.977,o), +(194.12,575,o), +(250,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(363,630,o), +(353,646,o), +(358,666,cs), +(362,687,o), +(378,703,o), +(399,703,cs), +(420,703,o), +(430,687,o), +(426,666,cs), +(421,646,o), +(405,630,o), +(384,630,cs) +); +}, +{ +closed = 1; +nodes = ( +(428,575,o), +(477,611,o), +(489,666,cs), +(500,722,o), +(467,758,o), +(411,758,cs), +(355,758,o), +(306,722,o), +(295,666,cs), +(283,611,o), +(316,575,o), +(372,575,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = ringcomb; +} +); +width = 499; +}, +{ +background = { +anchors = ( +{ +name = _top; +pos = (363,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(368,640,o), +(359,653,o), +(362,670,cs), +(366,689,o), +(381,702,o), +(399,702,cs), +(417,702,o), +(426,689,o), +(422,670,cs), +(419,653,o), +(404,640,o), +(386,640,cs) +); +}, +{ +closed = 1; +nodes = ( +(435,575,o), +(484,614,o), +(495,670,cs), +(508,728,o), +(476,767,o), +(413,767,cs), +(350,767,o), +(302,728,o), +(289,670,cs), +(278,614,o), +(309,575,o), +(372,575,cs) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = ringcomb; +} +); +width = 499; +} +); +unicode = 730; +}, +{ +color = 10; +glyphname = tilde; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,585,o), +(394,639,o), +(400,725,c), +(332,725,l), +(331,686,o), +(322,668,o), +(303,668,c), +(272,668,o), +(251,725,o), +(192,725,c), +(139,725,o), +(106,671,o), +(100,585,c), +(168,585,l), +(169,624,o), +(178,642,o), +(197,642,c), +(229,642,o), +(249,585,o), +(308,585,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = tildecomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (290,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(366,585,o), +(406,641,o), +(409,730,c), +(325,730,l), +(322,702,o), +(310,690,o), +(295,690,c), +(267,690,o), +(246,730,o), +(188,730,c), +(133,730,o), +(93,674,o), +(91,585,c), +(175,585,l), +(178,612,o), +(190,624,o), +(205,624,c), +(235,624,o), +(254,585,o), +(312,585,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = tildecomb; +} +); +width = 499; +} +); +unicode = 732; +}, +{ +color = 10; +glyphname = macron; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289.655,530); +} +); +layerId = m001; +shapes = ( +{ +ref = macroncomb; +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = macroncomb; +} +); +width = 498; +} +); +unicode = 175; +}, +{ +color = 10; +glyphname = cedilla; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (176,0); +} +); +background = { +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(264,-43,l), +(270,9,l), +(214,11,l), +(201,-73,l), +(212,-71,o), +(219,-70,o), +(230,-70,c), +(254,-70,o), +(268,-79,o), +(268,-96,c), +(268,-110,o), +(255,-119,o), +(234,-119,c), +(214,-119,o), +(198,-114,o), +(180,-105,c), +(167,-169,l), +(192,-180,o), +(217,-185,o), +(243,-185,c), +(301,-185,o), +(337,-151,o), +(337,-106,cs), +(337,-57,o), +(300,-29,o), +(252,-29,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = cedillacomb; +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (176,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(270,-43,l), +(276,9,l), +(208,11,l), +(194,-80,l), +(205,-76,o), +(215,-74,o), +(227,-74,c), +(250,-74,o), +(260,-82,o), +(260,-92,c), +(260,-103,o), +(250,-109,o), +(230,-109,c), +(210,-109,o), +(187,-105,o), +(166,-94,c), +(154,-174,l), +(181,-185,o), +(212,-190,o), +(240,-190,c), +(318,-190,o), +(352,-154,o), +(352,-106,cs), +(352,-57,o), +(316,-29,o), +(258,-29,c) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = cedillacomb; +} +); +width = 499; +} +); +unicode = 184; +}, +{ +color = 10; +glyphname = ogonek; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (176,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(136,-37,o), +(113,-69,o), +(113,-111,c), +(113,-153,o), +(147,-185,o), +(212,-185,cs), +(241,-185,o), +(276,-176,o), +(304,-165,c), +(295,-84,l), +(272,-94,o), +(238,-106,o), +(218,-106,c), +(205,-106,o), +(197,-101,o), +(197,-89,c), +(197,-65,o), +(234,-34,o), +(304,0,c), +(204,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = ogonekcomb; +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (177,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(159,-37,o), +(131,-69,o), +(131,-111,c), +(131,-156,o), +(170,-190,o), +(242,-190,cs), +(273,-190,o), +(309,-183,o), +(339,-170,c), +(330,-75,l), +(310,-87,o), +(284,-96,o), +(265,-96,c), +(250,-96,o), +(242,-89,o), +(242,-79,c), +(242,-60,o), +(270,-31,o), +(339,0,c), +(234,0,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +ref = ogonekcomb; +} +); +width = 499; +} +); +unicode = 731; +}, +{ +color = 6; +glyphname = caron.alt; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(284,442,l), +(386,715,l), +(282,715,l), +(224,442,l) +); +} +); +width = 499; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(291,408,l), +(418,715,l), +(268,715,l), +(203,408,l) +); +} +); +width = 499; +} +); +}, +{ +color = 6; +glyphname = IJacute; +kernLeft = H; +kernRight = U; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(586,-10,o), +(679,74,o), +(714,237,cs), +(811,690,l), +(706,690,l), +(611,244,ls), +(588,138,o), +(538,87,o), +(456,87,c), +(378,87,o), +(340,136,o), +(347,226,c), +(248,214,l), +(244,67,o), +(327,-10,o), +(448,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(107,0,l), +(254,690,l), +(149,690,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(247,735,l), +(405,845,l), +(270,845,l), +(146,735,l) +); +}, +{ +closed = 1; +nodes = ( +(804,735,l), +(962,845,l), +(827,845,l), +(703,735,l) +); +} +); +width = 806; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(657,-14,o), +(751,76,o), +(789,253,cs), +(882,690,l), +(727,690,l), +(635,261,ls), +(618,180,o), +(570,132,o), +(503,132,c), +(443,132,o), +(411,173,o), +(406,241,c), +(261,202,l), +(270,66,o), +(362,-14,o), +(493,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(144,0,l), +(291,690,l), +(136,690,l), +(-11,0,l) +); +}, +{ +closed = 1; +nodes = ( +(274,735,l), +(450,850,l), +(277,850,l), +(149,735,l) +); +}, +{ +closed = 1; +nodes = ( +(865,735,l), +(1041,850,l), +(868,850,l), +(740,735,l) +); +} +); +width = 862; +} +); +}, +{ +color = 6; +glyphname = dotbelow; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (176,0); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-195,o), +(208,-168,o), +(208,-130,c), +(208,-95,o), +(185,-72,o), +(151,-72,c), +(113,-72,o), +(86,-99,o), +(86,-140,c), +(86,-172,o), +(109,-195,o), +(142,-195,c) +); +} +); +width = 498; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (177,0); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,-198,o), +(227,-166,o), +(227,-117,c), +(227,-75,o), +(200,-48,o), +(156,-48,c), +(111,-48,o), +(75,-80,o), +(75,-130,c), +(75,-171,o), +(102,-198,o), +(146,-198,c) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = firsttonechinesecomb; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (289.655,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(447,621,l), +(465,705,l), +(189,705,l), +(171,621,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = _top; +pos = (288.655,530); +} +); +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,603,l), +(476,718,l), +(182,718,l), +(157,603,l) +); +} +); +width = 498; +} +); +}, +{ +color = 6; +glyphname = gem; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,256,o), +(76,198,o), +(127,167,c), +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,221,o), +(236,141,o), +(334,141,c), +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,20,o), +(240,-56,o), +(334,-56,c), +(334,114,l), +(164,114,l) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(361,16,o), +(441,-64,o), +(540,-64,cs), +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l) +); +}, +{ +closed = 1; +nodes = ( +(361,221,o), +(441,141,o), +(540,141,cs), +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(418,-144,o), +(476,-180,o), +(540,-180,cs), +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(644,141,o), +(724,221,o), +(724,320,cs), +(724,419,o), +(644,499,o), +(545,499,cs), +(446,499,o), +(366,419,o), +(366,320,cs), +(366,221,o), +(446,141,o), +(545,141,cs) +); +}, +{ +closed = 1; +nodes = ( +(339,114,l), +(169,114,l), +(169,20,o), +(245,-56,o), +(339,-56,c) +); +}, +{ +closed = 1; +nodes = ( +(132,473,l), +(81,442,o), +(45,384,o), +(45,320,cs), +(45,256,o), +(81,198,o), +(132,167,c) +); +}, +{ +closed = 1; +nodes = ( +(609,-180,o), +(667,-144,o), +(698,-93,c), +(392,-93,l), +(423,-144,o), +(481,-180,o), +(545,-180,cs) +); +}, +{ +closed = 1; +nodes = ( +(339,499,l), +(241,499,o), +(161,419,o), +(161,320,cs), +(161,221,o), +(241,141,o), +(339,141,c) +); +}, +{ +closed = 1; +nodes = ( +(644,-64,o), +(724,16,o), +(724,114,c), +(366,114,l), +(366,16,o), +(446,-64,o), +(545,-64,cs) +); +}, +{ +closed = 1; +nodes = ( +(339,526,l), +(339,696,l), +(245,696,o), +(169,620,o), +(169,526,c) +); +}, +{ +closed = 1; +nodes = ( +(845,-56,o), +(921,20,o), +(921,114,c), +(751,114,l), +(751,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(724,526,l), +(724,624,o), +(644,704,o), +(545,704,cs), +(446,704,o), +(366,624,o), +(366,526,c) +); +}, +{ +closed = 1; +nodes = ( +(849,141,o), +(929,221,o), +(929,320,cs), +(929,419,o), +(849,499,o), +(751,499,c), +(751,141,l) +); +}, +{ +closed = 1; +nodes = ( +(698,733,l), +(667,784,o), +(609,820,o), +(545,820,cs), +(481,820,o), +(423,784,o), +(392,733,c) +); +}, +{ +closed = 1; +nodes = ( +(1009,198,o), +(1045,256,o), +(1045,320,cs), +(1045,384,o), +(1009,442,o), +(958,473,c), +(958,167,l) +); +}, +{ +closed = 1; +nodes = ( +(921,526,l), +(921,620,o), +(845,696,o), +(751,696,c), +(751,526,l) +); +} +); +width = 1099; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,256,o), +(76,198,o), +(127,167,c), +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,221,o), +(236,141,o), +(334,141,c), +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,20,o), +(240,-56,o), +(334,-56,c), +(334,114,l), +(164,114,l) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(361,16,o), +(441,-64,o), +(540,-64,cs), +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l) +); +}, +{ +closed = 1; +nodes = ( +(361,221,o), +(441,141,o), +(540,141,cs), +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(418,-144,o), +(476,-180,o), +(540,-180,cs), +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +} +); +}; +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs), +(361,221,o), +(441,141,o), +(540,141,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,114,l), +(164,114,l), +(164,20,o), +(240,-56,o), +(334,-56,c) +); +}, +{ +closed = 1; +nodes = ( +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs), +(40,256,o), +(76,198,o), +(127,167,c) +); +}, +{ +closed = 1; +nodes = ( +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l), +(418,-144,o), +(476,-180,o), +(540,-180,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs), +(156,221,o), +(236,141,o), +(334,141,c) +); +}, +{ +closed = 1; +nodes = ( +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l), +(361,16,o), +(441,-64,o), +(540,-64,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +} +); +width = 1089; +} +); +}, +{ +color = 6; +glyphname = ijacute; +kernLeft = n; +kernRight = q; +lastChange = "2024-03-21 14:00:11 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(227,-185,o), +(293,-138,o), +(318,-21,cs), +(435,530,l), +(335,530,l), +(218,-17,ls), +(207,-70,o), +(174,-94,o), +(129,-94,c), +(106,-94,o), +(86,-88,o), +(66,-79,c), +(47,-168,l), +(73,-178,o), +(101,-185,o), +(133,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(92,0,l), +(205,530,l), +(105,530,l), +(-8,0,l) +); +}, +{ +closed = 1; +nodes = ( +(199,585,l), +(336,725,l), +(210,725,l), +(110,585,l) +); +}, +{ +closed = 1; +nodes = ( +(429,585,l), +(566,725,l), +(440,725,l), +(340,585,l) +); +} +); +width = 460; +}, +{ +layerId = "935096DB-18C6-4F5A-A149-9E36F9702B37"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,-189,o), +(357,-143,o), +(384,-14,cs), +(500,530,l), +(351,530,l), +(240,9,ls), +(231,-32,o), +(207,-54,o), +(166,-54,c), +(141,-54,o), +(119,-49,o), +(99,-41,c), +(71,-172,l), +(96,-183,o), +(135,-189,o), +(175,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(130,0,l), +(243,530,l), +(94,530,l), +(-19,0,l) +); +}, +{ +closed = 1; +nodes = ( +(224,585,l), +(380,730,l), +(219,730,l), +(109,585,l) +); +}, +{ +closed = 1; +nodes = ( +(482,585,l), +(638,730,l), +(477,730,l), +(367,585,l) +); +} +); +width = 514; +} +); +} +); +instances = ( +{ +axesValues = ( +400 +); +instanceInterpolations = { +m001 = 1; +}; +isItalic = 1; +name = Italic; +}, +{ +axesValues = ( +500 +); +instanceInterpolations = { +"935096DB-18C6-4F5A-A149-9E36F9702B37" = 0.33333; +m001 = 0.66667; +}; +isItalic = 1; +name = "Medium Italic"; +weightClass = 500; +}, +{ +axesValues = ( +600 +); +instanceInterpolations = { +"935096DB-18C6-4F5A-A149-9E36F9702B37" = 0.66667; +m001 = 0.33333; +}; +isItalic = 1; +name = "SemiBold Italic"; +weightClass = 600; +}, +{ +axesValues = ( +700 +); +instanceInterpolations = { +"935096DB-18C6-4F5A-A149-9E36F9702B37" = 1; +}; +isBold = 1; +isItalic = 1; +name = "Bold Italic"; +weightClass = 700; +} +); +kerningLTR = { +m001 = { +"@MMK_L_A" = { +"@MMK_R_I" = -80; +"@MMK_R_K" = 10; +"@MMK_R_L" = -20; +"@MMK_R_M" = -80; +"@MMK_R_O" = -20; +"@MMK_R_T" = -50; +"@MMK_R_U" = -10; +"@MMK_R_V" = -50; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -50; +"@MMK_R_a" = -10; +"@MMK_R_f" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_t" = -10; +"@MMK_R_u" = -5; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -10; +backslash = -40; +question = -60; +}; +"@MMK_L_B" = { +"@MMK_R_B" = -20; +"@MMK_R_I" = -10; +"@MMK_R_M" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -30; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +backslash = -10; +}; +"@MMK_L_C" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -30; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_D" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -40; +}; +"@MMK_L_E" = { +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_x" = -10; +}; +"@MMK_L_F" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_E" = -20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -20; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -10; +"@MMK_R_n" = -10; +"@MMK_R_o" = -20; +"@MMK_R_p" = -10; +"@MMK_R_s" = -20; +"@MMK_R_u" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +ibreve = 10; +icircumflex = 30; +idieresis = 20; +igrave = 0; +imacron = 20; +itilde = 20; +slash = -20; +}; +"@MMK_L_G" = { +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -10; +}; +"@MMK_L_I" = { +"@MMK_R_V" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_J" = { +"@MMK_R_B" = -50; +"@MMK_R_T" = -40; +"@MMK_R_V" = -30; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -40; +"@MMK_R_Z" = -20; +"@MMK_R_o" = 10; +}; +"@MMK_L_K" = { +"@MMK_R_T" = -40; +"@MMK_R_f" = 10; +"@MMK_R_t" = 10; +}; +"@MMK_L_L" = { +"@MMK_R_F" = -20; +"@MMK_R_I" = -90; +"@MMK_R_K" = 10; +"@MMK_R_L" = -60; +"@MMK_R_M" = -110; +"@MMK_R_O" = -20; +"@MMK_R_T" = -70; +"@MMK_R_U" = -10; +"@MMK_R_V" = -50; +"@MMK_R_W" = -30; +"@MMK_R_X" = -10; +"@MMK_R_Y" = -90; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_t" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +backslash = -60; +periodcentered.loclCAT.case = -180; +question = -40; +}; +"@MMK_L_N" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_K" = -80; +"@MMK_R_O" = -10; +"@MMK_R_T" = 20; +"@MMK_R_V" = 10; +"@MMK_R_W" = 10; +"@MMK_R_X" = 10; +"@MMK_R_Y" = 10; +"@MMK_R_a" = -10; +"@MMK_R_f" = 20; +"@MMK_R_o" = -10; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -30; +}; +"@MMK_L_O" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -50; +"@MMK_R_I" = -10; +"@MMK_R_K" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -10; +backslash = -10; +slash = -10; +}; +"@MMK_L_P" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -80; +"@MMK_R_J" = -70; +"@MMK_R_K" = -80; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -30; +"@MMK_R_Y" = -30; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -10; +"@MMK_R_x" = -10; +slash = -40; +}; +"@MMK_L_Q" = { +"@MMK_R_A" = 10; +"@MMK_R_B" = 20; +"@MMK_R_I" = -80; +"@MMK_R_J" = 10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -80; +"@MMK_R_V" = -60; +"@MMK_R_W" = -30; +"@MMK_R_X" = 10; +"@MMK_R_Y" = -50; +"@MMK_R_f" = -20; +"@MMK_R_j" = 50; +"@MMK_R_t" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = 10; +}; +"@MMK_L_R" = { +"@MMK_R_B" = -20; +"@MMK_R_J" = -20; +"@MMK_R_L" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_W" = -5; +"@MMK_R_Y" = -15; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_v" = -5; +}; +"@MMK_L_S" = { +"@MMK_R_B" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -20; +}; +"@MMK_L_T" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -100; +"@MMK_R_C" = -20; +"@MMK_R_E" = -40; +"@MMK_R_F" = -40; +"@MMK_R_I" = 20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_L" = -60; +"@MMK_R_O" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_W" = -5; +"@MMK_R_X" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -40; +"@MMK_R_n" = -20; +"@MMK_R_o" = -40; +"@MMK_R_p" = -20; +"@MMK_R_s" = -40; +"@MMK_R_u" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +Germandbls = -10; +ibreve = 30; +icircumflex = 50; +idieresis = 50; +igrave = 20; +imacron = 40; +itilde = 50; +slash = -30; +}; +"@MMK_L_U" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -40; +}; +"@MMK_L_V" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_C" = -20; +"@MMK_R_D" = -20; +"@MMK_R_F" = -30; +"@MMK_R_I" = 10; +"@MMK_R_J" = -50; +"@MMK_R_K" = -60; +"@MMK_R_L" = -20; +"@MMK_R_O" = -20; +"@MMK_R_S" = -5; +"@MMK_R_T" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -30; +"@MMK_R_p" = -20; +"@MMK_R_s" = -20; +"@MMK_R_u" = -20; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 30; +icircumflex = 20; +idieresis = 30; +igrave = 20; +imacron = 30; +itilde = 40; +slash = -40; +}; +"@MMK_L_W" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -60; +"@MMK_R_C" = -10; +"@MMK_R_F" = -10; +"@MMK_R_I" = 10; +"@MMK_R_J" = -30; +"@MMK_R_K" = -30; +"@MMK_R_L" = -10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -5; +"@MMK_R_a" = -15; +"@MMK_R_n" = -10; +"@MMK_R_o" = -15; +"@MMK_R_p" = -10; +"@MMK_R_s" = -15; +"@MMK_R_u" = -10; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +"@MMK_R_z" = -10; +Germandbls = -10; +ibreve = 30; +icircumflex = 30; +idieresis = 40; +igrave = 20; +imacron = 40; +itilde = 40; +slash = -30; +}; +"@MMK_L_X" = { +"@MMK_R_B" = -20; +"@MMK_R_F" = -20; +"@MMK_R_I" = 10; +"@MMK_R_J" = -20; +"@MMK_R_K" = 10; +"@MMK_R_L" = -40; +"@MMK_R_O" = -30; +"@MMK_R_T" = -10; +"@MMK_R_a" = -10; +"@MMK_R_n" = 30; +"@MMK_R_o" = -15; +"@MMK_R_s" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +ibreve = 20; +idieresis = 30; +imacron = 20; +}; +"@MMK_L_Y" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -80; +"@MMK_R_C" = -30; +"@MMK_R_D" = -20; +"@MMK_R_F" = -40; +"@MMK_R_I" = 10; +"@MMK_R_J" = -80; +"@MMK_R_K" = -50; +"@MMK_R_L" = -40; +"@MMK_R_O" = -30; +"@MMK_R_S" = -20; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -30; +"@MMK_R_p" = -20; +"@MMK_R_s" = -25; +"@MMK_R_u" = -20; +"@MMK_R_v" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 40; +icircumflex = 10; +idieresis = 50; +igrave = 20; +imacron = 40; +itilde = 40; +slash = -30; +}; +"@MMK_L_Z" = { +"@MMK_R_F" = -30; +"@MMK_R_L" = -30; +"@MMK_R_O" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +}; +"@MMK_L_a" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -80; +"@MMK_R_J" = -20; +"@MMK_R_T" = -60; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -30; +"@MMK_R_Y" = -40; +"@MMK_R_Z" = -30; +"@MMK_R_f" = -10; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +Dcroat = 20; +eth = 10; +}; +"@MMK_L_b" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -20; +}; +"@MMK_L_c" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_f" = { +"@MMK_R_F" = -10; +"@MMK_R_I" = 30; +"@MMK_R_K" = -40; +"@MMK_R_L" = -40; +"@MMK_R_M" = 10; +"@MMK_R_n" = 0; +ibreve = 30; +icircumflex = 30; +idieresis = 50; +igrave = 30; +imacron = 40; +itilde = 40; +slash = -30; +}; +"@MMK_L_i" = { +"@MMK_R_T" = 0; +"@MMK_R_V" = 0; +"@MMK_R_W" = 0; +"@MMK_R_X" = 0; +"@MMK_R_Y" = 0; +}; +"@MMK_L_n" = { +"@MMK_R_I" = -10; +backslash = -10; +}; +"@MMK_L_o" = { +"@MMK_R_F" = 10; +"@MMK_R_I" = -10; +"@MMK_R_x" = -10; +}; +"@MMK_L_q" = { +"@MMK_R_j" = 20; +}; +"@MMK_L_r" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -40; +"@MMK_R_L" = -20; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_s" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_t" = { +"@MMK_R_L" = -10; +"@MMK_R_M" = 10; +}; +"@MMK_L_tcaron" = { +"@MMK_R_H" = 100; +"@MMK_R_l" = 100; +"@MMK_R_n" = 80; +"@MMK_R_o" = 60; +}; +"@MMK_L_v" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -30; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_w" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -20; +"@MMK_R_M" = 10; +}; +"@MMK_L_x" = { +"@MMK_R_K" = 10; +"@MMK_R_L" = -30; +"@MMK_R_o" = -10; +backslash = -20; +}; +"@MMK_L_z" = { +"@MMK_R_L" = -20; +backslash = -20; +}; +Germandbls = { +"@MMK_R_I" = -20; +"@MMK_R_M" = -20; +"@MMK_R_T" = -20; +"@MMK_R_U" = -10; +"@MMK_R_V" = -40; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -40; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -10; +backslash = -30; +question = -20; +}; +Thorn = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -10; +"@MMK_R_K" = -50; +"@MMK_R_L" = 10; +"@MMK_R_S" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -40; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -20; +}; +backslash = { +"@MMK_R_O" = -10; +"@MMK_R_T" = -30; +"@MMK_R_V" = -40; +"@MMK_R_W" = -30; +"@MMK_R_Y" = -30; +"@MMK_R_j" = 90; +"@MMK_R_v" = -10; +}; +dcaron = { +"@MMK_R_E" = 10; +"@MMK_R_H" = 60; +"@MMK_R_K" = -20; +"@MMK_R_L" = -30; +"@MMK_R_M" = 30; +"@MMK_R_l" = 80; +"@MMK_R_n" = 40; +"@MMK_R_o" = 40; +backslash = 30; +}; +eth = { +"@MMK_R_I" = -20; +"@MMK_R_L" = 10; +backslash = -20; +}; +four = { +seven = -10; +}; +germandbls = { +"@MMK_R_I" = -40; +"@MMK_R_M" = -40; +backslash = -30; +question = -40; +}; +iacute = { +"@MMK_R_Y" = 10; +}; +ibreve = { +"@MMK_R_T" = 30; +"@MMK_R_V" = 30; +"@MMK_R_W" = 30; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 40; +}; +icircumflex = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 20; +"@MMK_R_W" = 20; +"@MMK_R_Y" = 10; +}; +idieresis = { +"@MMK_R_T" = 50; +"@MMK_R_V" = 30; +"@MMK_R_W" = 40; +"@MMK_R_X" = 30; +"@MMK_R_Y" = 50; +}; +imacron = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 30; +"@MMK_R_W" = 40; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 40; +}; +itilde = { +"@MMK_R_T" = 50; +"@MMK_R_V" = 40; +"@MMK_R_W" = 40; +"@MMK_R_X" = 30; +"@MMK_R_Y" = 40; +}; +lcaron = { +"@MMK_R_H" = 80; +"@MMK_R_l" = 80; +"@MMK_R_n" = 60; +"@MMK_R_o" = 60; +}; +questiondown = { +"@MMK_R_J" = -50; +"@MMK_R_O" = -60; +"@MMK_R_T" = -100; +"@MMK_R_U" = -70; +"@MMK_R_V" = -80; +"@MMK_R_W" = -50; +"@MMK_R_Y" = -100; +"@MMK_R_j" = 30; +}; +seven = { +eight = -10; +four = -40; +seven = -10; +six = -10; +three = -10; +two = -10; +zero = -10; +}; +slash = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -40; +"@MMK_R_O" = -10; +"@MMK_R_x" = -20; +"@MMK_R_z" = -20; +eth = -30; +}; +two = { +four = -20; +seven = -10; +}; +}; +"935096DB-18C6-4F5A-A149-9E36F9702B37" = { +"@MMK_L_A" = { +"@MMK_R_I" = -80; +"@MMK_R_K" = 10; +"@MMK_R_L" = -20; +"@MMK_R_M" = -80; +"@MMK_R_O" = -20; +"@MMK_R_T" = -50; +"@MMK_R_U" = -10; +"@MMK_R_V" = -40; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -50; +"@MMK_R_f" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_t" = -10; +"@MMK_R_u" = -5; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -10; +backslash = -40; +question = -60; +}; +"@MMK_L_B" = { +"@MMK_R_B" = -20; +"@MMK_R_I" = -10; +"@MMK_R_M" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -30; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +backslash = -10; +}; +"@MMK_L_C" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -30; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_D" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -40; +}; +"@MMK_L_E" = { +"@MMK_R_n" = 0; +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_x" = -10; +icircumflex = 20; +idieresis = 20; +itilde = 10; +}; +"@MMK_L_F" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_E" = -20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -20; +"@MMK_R_n" = -10; +"@MMK_R_o" = -20; +"@MMK_R_p" = -10; +"@MMK_R_s" = -20; +"@MMK_R_u" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +ibreve = 10; +icircumflex = 30; +idieresis = 40; +igrave = 10; +imacron = 20; +itilde = 30; +slash = -20; +}; +"@MMK_L_G" = { +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -20; +}; +"@MMK_L_I" = { +"@MMK_R_V" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_J" = { +"@MMK_R_B" = -50; +"@MMK_R_T" = -40; +"@MMK_R_V" = -30; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -40; +"@MMK_R_Z" = -20; +"@MMK_R_o" = 10; +}; +"@MMK_L_K" = { +"@MMK_R_T" = -40; +"@MMK_R_f" = 20; +"@MMK_R_t" = 20; +}; +"@MMK_L_L" = { +"@MMK_R_F" = -20; +"@MMK_R_I" = -100; +"@MMK_R_K" = 10; +"@MMK_R_L" = -60; +"@MMK_R_M" = -120; +"@MMK_R_O" = -20; +"@MMK_R_T" = -80; +"@MMK_R_U" = -10; +"@MMK_R_V" = -50; +"@MMK_R_W" = -30; +"@MMK_R_X" = -10; +"@MMK_R_Y" = -90; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_t" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -30; +"@MMK_R_w" = -10; +backslash = -50; +periodcentered.loclCAT.case = -200; +question = -40; +}; +"@MMK_L_N" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_K" = -100; +"@MMK_R_O" = -10; +"@MMK_R_T" = 20; +"@MMK_R_V" = 10; +"@MMK_R_W" = 10; +"@MMK_R_X" = 10; +"@MMK_R_Y" = 10; +"@MMK_R_a" = -10; +"@MMK_R_f" = 20; +"@MMK_R_o" = -10; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -30; +}; +"@MMK_L_O" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -50; +"@MMK_R_I" = -10; +"@MMK_R_K" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -10; +backslash = -10; +slash = -10; +}; +"@MMK_L_P" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_J" = -70; +"@MMK_R_K" = -80; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -30; +"@MMK_R_Y" = -40; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -10; +"@MMK_R_x" = -10; +slash = -40; +}; +"@MMK_L_Q" = { +"@MMK_R_A" = 10; +"@MMK_R_B" = 20; +"@MMK_R_I" = -100; +"@MMK_R_J" = 10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -80; +"@MMK_R_V" = -60; +"@MMK_R_W" = -30; +"@MMK_R_X" = 10; +"@MMK_R_Y" = -50; +"@MMK_R_f" = -20; +"@MMK_R_j" = 50; +"@MMK_R_t" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = 10; +}; +"@MMK_L_R" = { +"@MMK_R_B" = -20; +"@MMK_R_J" = -20; +"@MMK_R_L" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_W" = -5; +"@MMK_R_Y" = -20; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_v" = -5; +}; +"@MMK_L_S" = { +"@MMK_R_B" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -20; +}; +"@MMK_L_T" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -100; +"@MMK_R_C" = -20; +"@MMK_R_E" = -40; +"@MMK_R_F" = -40; +"@MMK_R_I" = 20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_L" = -60; +"@MMK_R_O" = -20; +"@MMK_R_T" = -10; +"@MMK_R_W" = -5; +"@MMK_R_X" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -35; +"@MMK_R_n" = -20; +"@MMK_R_o" = -40; +"@MMK_R_p" = -20; +"@MMK_R_s" = -40; +"@MMK_R_u" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +Germandbls = -10; +ibreve = 20; +icircumflex = 40; +idieresis = 40; +igrave = 10; +imacron = 30; +itilde = 30; +slash = -30; +}; +"@MMK_L_U" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -40; +}; +"@MMK_L_V" = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -90; +"@MMK_R_C" = -20; +"@MMK_R_D" = -20; +"@MMK_R_F" = -30; +"@MMK_R_I" = 10; +"@MMK_R_J" = -50; +"@MMK_R_K" = -60; +"@MMK_R_L" = -30; +"@MMK_R_O" = -20; +"@MMK_R_S" = -5; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -35; +"@MMK_R_p" = -20; +"@MMK_R_s" = -20; +"@MMK_R_u" = -20; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 30; +icircumflex = 30; +idieresis = 50; +igrave = 30; +imacron = 30; +itilde = 30; +slash = -40; +}; +"@MMK_L_W" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -60; +"@MMK_R_C" = -10; +"@MMK_R_F" = -10; +"@MMK_R_I" = 10; +"@MMK_R_J" = -30; +"@MMK_R_K" = -30; +"@MMK_R_L" = -10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -5; +"@MMK_R_a" = -15; +"@MMK_R_n" = -10; +"@MMK_R_o" = -15; +"@MMK_R_p" = -10; +"@MMK_R_s" = -15; +"@MMK_R_u" = -10; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +"@MMK_R_z" = -10; +Germandbls = -10; +ibreve = 30; +icircumflex = 40; +idieresis = 50; +igrave = 20; +imacron = 30; +itilde = 30; +slash = -30; +}; +"@MMK_L_X" = { +"@MMK_R_B" = -20; +"@MMK_R_F" = -30; +"@MMK_R_I" = 10; +"@MMK_R_J" = -20; +"@MMK_R_K" = 10; +"@MMK_R_L" = -50; +"@MMK_R_O" = -30; +"@MMK_R_T" = -10; +"@MMK_R_a" = -10; +"@MMK_R_n" = 0; +"@MMK_R_o" = -25; +"@MMK_R_s" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -20; +"@MMK_R_w" = -5; +ibreve = 20; +idieresis = 40; +igrave = 20; +imacron = 20; +itilde = 10; +}; +"@MMK_L_Y" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -80; +"@MMK_R_C" = -30; +"@MMK_R_D" = -20; +"@MMK_R_F" = -40; +"@MMK_R_I" = 10; +"@MMK_R_J" = -80; +"@MMK_R_K" = -50; +"@MMK_R_L" = -70; +"@MMK_R_O" = -30; +"@MMK_R_S" = -20; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -30; +"@MMK_R_p" = -20; +"@MMK_R_s" = -25; +"@MMK_R_u" = -20; +"@MMK_R_v" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 30; +icircumflex = 10; +idieresis = 50; +igrave = 20; +imacron = 30; +itilde = 30; +slash = -30; +}; +"@MMK_L_Z" = { +"@MMK_R_F" = -30; +"@MMK_R_L" = -30; +"@MMK_R_O" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_n" = 0; +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +icircumflex = 20; +idieresis = 20; +imacron = 10; +itilde = 10; +}; +"@MMK_L_a" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -80; +"@MMK_R_J" = -20; +"@MMK_R_T" = -60; +"@MMK_R_V" = -30; +"@MMK_R_W" = -10; +"@MMK_R_X" = -40; +"@MMK_R_Y" = -70; +"@MMK_R_Z" = -30; +"@MMK_R_f" = -10; +"@MMK_R_x" = -40; +"@MMK_R_z" = -20; +Dcroat = 20; +eth = 10; +}; +"@MMK_L_b" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -20; +}; +"@MMK_L_c" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_f" = { +"@MMK_R_I" = 40; +"@MMK_R_K" = -40; +"@MMK_R_L" = -30; +"@MMK_R_M" = 20; +"@MMK_R_n" = 0; +ibreve = 40; +icircumflex = 60; +idieresis = 70; +igrave = 50; +imacron = 50; +itilde = 60; +slash = -30; +}; +"@MMK_L_i" = { +"@MMK_R_T" = 0; +"@MMK_R_V" = 0; +"@MMK_R_W" = 0; +"@MMK_R_X" = 0; +"@MMK_R_Y" = 0; +"@MMK_R_Z" = 0; +"@MMK_R_j" = 0; +}; +"@MMK_L_n" = { +"@MMK_R_I" = -10; +backslash = -10; +}; +"@MMK_L_o" = { +"@MMK_R_F" = 10; +"@MMK_R_I" = -10; +"@MMK_R_x" = -10; +}; +"@MMK_L_q" = { +"@MMK_R_j" = 30; +"@MMK_R_n" = 0; +idieresis = 20; +}; +"@MMK_L_r" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -40; +"@MMK_R_L" = -10; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_s" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_t" = { +"@MMK_R_L" = -10; +"@MMK_R_M" = 10; +}; +"@MMK_L_tcaron" = { +"@MMK_R_H" = 140; +"@MMK_R_l" = 140; +"@MMK_R_n" = 120; +"@MMK_R_o" = 100; +}; +"@MMK_L_v" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -30; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_w" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -20; +"@MMK_R_M" = 10; +}; +"@MMK_L_x" = { +"@MMK_R_K" = 10; +"@MMK_R_L" = -50; +"@MMK_R_o" = -20; +backslash = -20; +}; +"@MMK_L_z" = { +"@MMK_R_L" = -20; +backslash = -20; +}; +Germandbls = { +"@MMK_R_I" = -40; +"@MMK_R_M" = -40; +"@MMK_R_T" = -40; +"@MMK_R_U" = -10; +"@MMK_R_V" = -50; +"@MMK_R_W" = -30; +"@MMK_R_Y" = -50; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -10; +backslash = -30; +question = -30; +}; +Thorn = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -10; +"@MMK_R_K" = -50; +"@MMK_R_L" = 10; +"@MMK_R_S" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -40; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -20; +}; +backslash = { +"@MMK_R_O" = -10; +"@MMK_R_T" = -40; +"@MMK_R_V" = -40; +"@MMK_R_W" = -30; +"@MMK_R_Y" = -40; +"@MMK_R_j" = 90; +"@MMK_R_v" = -10; +}; +dcaron = { +"@MMK_R_E" = 10; +"@MMK_R_H" = 140; +"@MMK_R_K" = -20; +"@MMK_R_L" = -30; +"@MMK_R_M" = 30; +"@MMK_R_l" = 140; +"@MMK_R_n" = 120; +"@MMK_R_o" = 100; +backslash = 30; +}; +eth = { +"@MMK_R_I" = -20; +"@MMK_R_L" = 10; +backslash = -20; +}; +four = { +seven = -10; +}; +germandbls = { +"@MMK_R_I" = -50; +"@MMK_R_M" = -50; +backslash = -30; +question = -40; +}; +iacute = { +"@MMK_R_T" = 10; +"@MMK_R_V" = 20; +"@MMK_R_W" = 20; +"@MMK_R_X" = 10; +"@MMK_R_Y" = 20; +}; +ibreve = { +"@MMK_R_T" = 20; +"@MMK_R_V" = 30; +"@MMK_R_W" = 30; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 30; +}; +icircumflex = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 30; +"@MMK_R_W" = 40; +"@MMK_R_Y" = 10; +"@MMK_R_Z" = 20; +}; +idieresis = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 50; +"@MMK_R_W" = 50; +"@MMK_R_X" = 40; +"@MMK_R_Y" = 50; +"@MMK_R_Z" = 20; +"@MMK_R_j" = 20; +}; +imacron = { +"@MMK_R_T" = 30; +"@MMK_R_V" = 30; +"@MMK_R_W" = 30; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 30; +"@MMK_R_Z" = 10; +}; +itilde = { +"@MMK_R_T" = 30; +"@MMK_R_V" = 40; +"@MMK_R_W" = 40; +"@MMK_R_X" = 30; +"@MMK_R_Y" = 40; +"@MMK_R_Z" = 10; +}; +lcaron = { +"@MMK_R_H" = 140; +"@MMK_R_l" = 140; +"@MMK_R_n" = 100; +"@MMK_R_o" = 100; +}; +questiondown = { +"@MMK_R_J" = -50; +"@MMK_R_O" = -60; +"@MMK_R_T" = -100; +"@MMK_R_U" = -70; +"@MMK_R_V" = -80; +"@MMK_R_W" = -50; +"@MMK_R_Y" = -100; +"@MMK_R_j" = 50; +}; +seven = { +eight = -10; +four = -40; +six = -10; +three = -10; +two = -10; +zero = -10; +}; +slash = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -40; +"@MMK_R_O" = -10; +"@MMK_R_x" = -20; +"@MMK_R_z" = -20; +eth = -30; +}; +two = { +four = -20; +seven = -10; +}; +}; +}; +metrics = ( +{ +type = ascender; +}, +{ +type = "cap height"; +}, +{ +type = "x-height"; +}, +{ +type = baseline; +}, +{ +type = descender; +}, +{ +type = "italic angle"; +} +); +properties = ( +{ +key = copyrights; +values = ( +{ +language = dflt; +value = "Copyright 2022 The Radio Canada Display Project Authors (https://github.com/googlefonts/radiocanadadisplay)"; +} +); +}, +{ +key = designers; +values = ( +{ +language = dflt; +value = "Étienne Aubert Bonn"; +} +); +}, +{ +key = designerURL; +value = "http://www.coppersandbrasses.com"; +}, +{ +key = licenses; +values = ( +{ +language = dflt; +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 = "Coppers and Brasses"; +} +); +}, +{ +key = manufacturerURL; +value = "http://www.coppersandbrasses.com"; +}, +{ +key = vendorID; +value = "C&B "; +} +); +stems = ( +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem0; +} +); +unitsPerEm = 1000; +userData = { +UFO.lib = { +com.defcon.sortDescriptor = ( +{ +allowPseudoUnicode = 0; +ascending = "Radio-Canada Display"; +type = characterSet; +} +); +com.typemytype.robofont.compileSettings.autohint = 1; +com.typemytype.robofont.compileSettings.checkOutlines = 1; +com.typemytype.robofont.compileSettings.createDummyDSIG = 1; +com.typemytype.robofont.compileSettings.decompose = 1; +com.typemytype.robofont.compileSettings.generateFormat = 0; +com.typemytype.robofont.compileSettings.releaseMode = 1; +com.typemytype.robofont.generateFeaturesWithFontTools = 0; +com.typemytype.robofont.italicSlantOffset = 0; +com.typemytype.robofont.shouldAddPointsInSplineConversion = 1; +com.typesupply.metricsMachine4.groupColors = { +public.kern1.A = ( +1, +0, +0, +0.25 +); +public.kern1.B = ( +1, +0.5, +0, +0.25 +); +public.kern1.C = ( +1, +1, +0, +0.25 +); +public.kern1.D = ( +0, +1, +0, +0.25 +); +public.kern1.E = ( +0, +1, +1, +0.25 +); +public.kern1.F = ( +0, +0.5, +1, +0.25 +); +public.kern1.G = ( +0, +0, +1, +0.25 +); +public.kern1.H = ( +0.5, +0, +1, +0.25 +); +public.kern1.I = ( +1, +0, +0.5, +0.25 +); +public.kern1.J = ( +1, +0.5, +0, +0.25 +); +public.kern1.K = ( +1, +0, +0, +0.25 +); +public.kern1.L = ( +1, +0, +0, +0.25 +); +public.kern1.M = ( +0, +1, +1, +0.25 +); +public.kern1.N = ( +0, +0.5, +1, +0.25 +); +public.kern1.O = ( +0, +1, +0, +0.25 +); +public.kern1.P = ( +1, +0.5, +0, +0.25 +); +public.kern1.Q = ( +0.5, +0, +1, +0.25 +); +public.kern1.R = ( +1, +1, +0, +0.25 +); +public.kern1.S = ( +0, +1, +0, +0.25 +); +public.kern1.T = ( +0, +1, +1, +0.25 +); +public.kern1.U = ( +1, +0, +1, +0.25 +); +public.kern1.V = ( +0, +0.5, +1, +0.25 +); +public.kern1.W = ( +0, +0, +1, +0.25 +); +public.kern1.X = ( +1, +0, +0.5, +0.25 +); +public.kern1.Y = ( +0.5, +0, +1, +0.25 +); +public.kern1.Z = ( +1, +0, +1, +0.25 +); +public.kern1.a = ( +0, +0, +1, +0.25 +); +public.kern1.b = ( +1, +0, +1, +0.25 +); +public.kern1.c = ( +1, +0.5, +0, +0.25 +); +public.kern1.f = ( +0, +1, +0, +0.25 +); +public.kern1.i = ( +0, +0.5, +1, +0.25 +); +public.kern1.l = ( +1, +1, +0, +0.25 +); +public.kern1.n = ( +1, +0, +0.5, +0.25 +); +public.kern1.o = ( +1, +0, +0, +0.25 +); +public.kern1.q = ( +0, +1, +1, +0.25 +); +public.kern1.r = ( +0.5, +0, +1, +0.25 +); +public.kern1.s = ( +1, +0, +1, +0.25 +); +public.kern1.t = ( +1, +0, +0.5, +0.25 +); +public.kern1.v = ( +1, +0, +0, +0.25 +); +public.kern1.w = ( +1, +0.5, +0, +0.25 +); +public.kern1.x = ( +0, +0, +1, +0.25 +); +public.kern1.z = ( +1, +1, +0, +0.25 +); +public.kern2.A = ( +1, +0, +0, +0.25 +); +public.kern2.B = ( +0, +0, +1, +0.25 +); +public.kern2.C = ( +0.5, +0, +1, +0.25 +); +public.kern2.D = ( +0, +1, +0, +0.25 +); +public.kern2.E = ( +0, +0.5, +1, +0.25 +); +public.kern2.F = ( +0, +1, +1, +0.25 +); +public.kern2.G = ( +1, +0, +1, +0.25 +); +public.kern2.H = ( +1, +0.5, +0, +0.25 +); +public.kern2.I = ( +1, +0, +0, +0.25 +); +public.kern2.J = ( +0, +1, +0, +0.25 +); +public.kern2.K = ( +1, +0.5, +0, +0.25 +); +public.kern2.L = ( +1, +1, +0, +0.25 +); +public.kern2.M = ( +1, +0, +0.5, +0.25 +); +public.kern2.O = ( +1, +1, +0, +0.25 +); +public.kern2.S = ( +0, +1, +1, +0.25 +); +public.kern2.T = ( +0, +0.5, +1, +0.25 +); +public.kern2.U = ( +0, +0, +1, +0.25 +); +public.kern2.V = ( +0.5, +0, +1, +0.25 +); +public.kern2.W = ( +1, +0, +1, +0.25 +); +public.kern2.X = ( +1, +0, +0.5, +0.25 +); +public.kern2.Y = ( +1, +0, +0, +0.25 +); +public.kern2.Z = ( +1, +0.5, +0, +0.25 +); +public.kern2.a = ( +1, +1, +0, +0.25 +); +public.kern2.f = ( +0, +0.5, +1, +0.25 +); +public.kern2.j = ( +0.5, +0, +1, +0.25 +); +public.kern2.l = ( +0, +1, +0, +0.25 +); +public.kern2.n = ( +0, +0, +1, +0.25 +); +public.kern2.o = ( +0, +1, +1, +0.25 +); +public.kern2.p = ( +1, +0, +1, +0.25 +); +public.kern2.s = ( +1, +0, +0.5, +0.25 +); +public.kern2.t = ( +1, +0, +0, +0.25 +); +public.kern2.u = ( +1, +0.5, +0, +0.25 +); +public.kern2.v = ( +1, +1, +0, +0.25 +); +public.kern2.w = ( +0, +1, +0, +0.25 +); +public.kern2.x = ( +0, +1, +1, +0.25 +); +public.kern2.z = ( +0, +0.5, +1, +0.25 +); +}; +}; +UFOFormat = 3; +UFOLayerName = foreground; +}; +versionMajor = 1; +versionMinor = 1; +} diff --git a/sources/RadioCanadaDisplay.glyphs b/sources/RadioCanadaDisplay.glyphs new file mode 100644 index 00000000..c6c01545 --- /dev/null +++ b/sources/RadioCanadaDisplay.glyphs @@ -0,0 +1,73762 @@ +{ +.appVersion = "3249"; +.formatVersion = 3; +axes = ( +{ +name = Weight; +tag = wght; +} +); +classes = ( +{ +automatic = 1; +code = "A Aacute Abreve Acircumflex Adieresis Adotbelow Agrave Amacron Aogonek Aring Aringacute Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Dcaron Dcroat Eth E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Edotbelow Egrave Emacron Eogonek Etilde Schwa F G Gbreve Gcaron Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Idotbelow Igrave Imacron Iogonek Itilde J Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Nhookleft Ntilde Eng O Oacute Obreve Ocircumflex Odieresis Odotbelow Ograve Ohungarumlaut Omacron Oogonek Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcedilla S Sacute Scaron Scedilla Scircumflex Scommaaccent Germandbls T Tbar Tcaron Tcedilla Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Udotbelow Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Ymacron Ytilde Z Zacute Zcaron Zdotaccent Delta Omega"; +name = Uppercase; +} +); +customParameters = ( +{ +name = fsType; +value = ( +); +}, +{ +name = "Use Typo Metrics"; +value = 1; +} +); +date = "2024-03-20 13:28:04 +0000"; +familyName = "Radio Canada Display"; +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 CAT; +"; +name = Languagesystems; +} +); +features = ( +{ +automatic = 1; +code = "feature locl; +feature sups; +feature frac; +feature ordn; +feature case; +feature pnum; +feature tnum; +"; +tag = aalt; +}, +{ +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 CAT; +lookup locl_latn_2 { + sub l periodcentered' l by periodcentered.loclCAT; + sub L periodcentered' L by periodcentered.loclCAT.case; +} locl_latn_2; +"; +tag = locl; +}, +{ +code = "sub f f i by f_f_i; +sub f f ij by f_f_ij; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by f_i; +sub f ij by f_ij; +sub f l by f_l;"; +tag = liga; +}, +{ +automatic = 1; +code = "lookup ccmp_Other_1 { + @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb dieresiscomb dotaccentcomb gravecomb hungarumlautcomb macroncomb ringcomb tildecomb]; + lookupflag UseMarkFilteringSet @CombiningTopAccents; + sub i' @CombiningTopAccents by idotless; + sub j' @CombiningTopAccents by jdotless; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + lookupflag 0; + @Markscomb = [dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb]; + @MarkscombCase = [dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case]; + sub @Uppercase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; + +lookup ccmp_Other_3 { + lookupflag 0; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_3; + +lookup ccmp_latn_1 { + lookupflag 0; + sub fi by f i; + sub fl by f l; + sub Ldot by L periodcentered.loclCAT.case; + sub ldot by l periodcentered.loclCAT; +} ccmp_latn_1; + +script latn; +lookup ccmp_latn_1; +"; +tag = ccmp; +}, +{ +automatic = 1; +code = "sub one by onesuperior; +sub two by twosuperior; +sub three by threesuperior; +"; +tag = sups; +}, +{ +automatic = 1; +code = "sub one slash four by onequarter; +sub one slash two by onehalf; +sub three slash four by threequarters; +"; +tag = frac; +}, +{ +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; +}, +{ +automatic = 1; +code = "sub zero.tf by zero; +sub one.tf by one; +sub two.tf by two; +sub three.tf by three; +sub four.tf by four; +sub five.tf by five; +sub six.tf by six; +sub seven.tf by seven; +sub eight.tf by eight; +sub nine.tf by nine; +sub space.tf by space; +sub period.tf by period; +sub comma.tf by comma; +sub colon.tf by colon; +sub semicolon.tf by semicolon; +"; +tag = pnum; +}, +{ +automatic = 1; +code = "sub zero by zero.tf; +sub one by one.tf; +sub two by two.tf; +sub three by three.tf; +sub four by four.tf; +sub five by five.tf; +sub six by six.tf; +sub seven by seven.tf; +sub eight by eight.tf; +sub nine by nine.tf; +sub space by space.tf; +sub period by period.tf; +sub comma by comma.tf; +sub colon by colon.tf; +sub semicolon by semicolon.tf; +"; +tag = tnum; +}, +{ +automatic = 1; +code = "sub periodcentered.loclCAT by periodcentered.loclCAT.case; +sub dieresiscomb by dieresiscomb.case; +sub dotaccentcomb by dotaccentcomb.case; +sub gravecomb by gravecomb.case; +sub acutecomb by acutecomb.case; +sub hungarumlautcomb by hungarumlautcomb.case; +sub circumflexcomb by circumflexcomb.case; +sub caroncomb by caroncomb.case; +sub brevecomb by brevecomb.case; +sub ringcomb by ringcomb.case; +sub tildecomb by tildecomb.case; +sub macroncomb by macroncomb.case; +"; +tag = case; +}, +{ +automatic = 1; +code = "lookupflag IgnoreMarks; +sub f f ij by f_f_ij; +sub f ij by f_ij; +"; +tag = dlig; +} +); +fontMaster = ( +{ +axesValues = ( +400 +); +customParameters = ( +{ +name = typoAscender; +value = 950; +}, +{ +name = typoDescender; +value = -250; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = hheaAscender; +value = 950; +}, +{ +name = hheaDescender; +value = -250; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1063; +}, +{ +name = winDescent; +value = 275; +} +); +id = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +metricValues = ( +{ +over = 10; +pos = 715; +}, +{ +over = 10; +pos = 690; +}, +{ +over = 10; +pos = 530; +}, +{ +over = -10; +}, +{ +over = -10; +pos = -175; +} +); +name = Regular; +stemValues = ( +85, +85, +85, +81, +81, +81, +100, +105, +87, +96 +); +userData = { +layerinfo.color = "1,0.75,0,0.7"; +}; +}, +{ +axesValues = ( +700 +); +customParameters = ( +{ +name = typoAscender; +value = 950; +}, +{ +name = typoDescender; +value = -250; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = hheaAscender; +value = 950; +}, +{ +name = hheaDescender; +value = -250; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = winAscent; +value = 1063; +}, +{ +name = winDescent; +value = 275; +} +); +iconName = Bold; +id = m001; +metricValues = ( +{ +over = 15; +pos = 715; +}, +{ +over = 14; +pos = 690; +}, +{ +over = 14; +pos = 530; +}, +{ +over = -14; +}, +{ +over = -15; +pos = -175; +} +); +name = Bold; +stemValues = ( +139, +149, +155, +123, +135, +145, +0, +0, +0, +0 +); +userData = { +layerinfo.color = "1,0.75,0,0.7"; +}; +} +); +glyphs = ( +{ +color = 6; +glyphname = A; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 13:34:41 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = ogonek; +pos = (675,0); +}, +{ +name = top; +pos = (337,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(675,0,l), +(454,690,l), +(299,690,l), +(509,0,l) +); +}, +{ +closed = 1; +nodes = ( +(163,0,l), +(367,690,l), +(221,690,l), +(0,0,l) +); +}, +{ +closed = 1; +nodes = ( +(521,158,l), +(521,295,l), +(153,295,l), +(153,158,l) +); +} +); +width = 675; +}, +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = ogonek; +pos = (645,0); +}, +{ +name = top; +pos = (331,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +} +); +width = 660; +}, +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,191,l), +(514,191,l), +(514,287,l), +(146,287,l) +); +}, +{ +closed = 1; +nodes = ( +(304,690,l), +(535,0,l), +(645,0,l), +(406,690,l) +); +}, +{ +closed = 1; +nodes = ( +(254,690,l), +(15,0,l), +(122,0,l), +(348,690,l) +); +} +); +width = 660; +} +); +unicode = 65; +}, +{ +color = 10; +glyphname = Aacute; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = acutecomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(364,735,l), +(501,845,l), +(370,845,l), +(270,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = acutecomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = acutecomb.case; +} +); +width = 660; +} +); +unicode = 193; +}, +{ +color = 10; +glyphname = Abreve; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = brevecomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(428,735,o), +(476,777,o), +(481,845,c), +(411,845,l), +(407,820,o), +(386,805,o), +(331,805,c), +(276,805,o), +(255,820,o), +(251,845,c), +(181,845,l), +(186,777,o), +(234,735,o), +(331,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = brevecomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = brevecomb.case; +} +); +width = 660; +} +); +unicode = 258; +}, +{ +color = 10; +glyphname = Acircumflex; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = circumflexcomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(514,735,l), +(400,845,l), +(266,845,l), +(415,735,l) +); +}, +{ +closed = 1; +nodes = ( +(247,735,l), +(396,845,l), +(262,845,l), +(148,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = circumflexcomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = circumflexcomb.case; +} +); +width = 660; +} +); +unicode = 194; +}, +{ +color = 10; +glyphname = Adieresis; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = dieresiscomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(464,742,o), +(489,765,o), +(489,798,cs), +(489,832,o), +(464,855,o), +(432,855,cs), +(400,855,o), +(375,832,o), +(375,798,cs), +(375,765,o), +(400,742,o), +(432,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,742,o), +(287,765,o), +(287,798,cs), +(287,832,o), +(262,855,o), +(230,855,cs), +(198,855,o), +(173,832,o), +(173,798,cs), +(173,765,o), +(198,742,o), +(230,742,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = dieresiscomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = dieresiscomb.case; +} +); +width = 660; +} +); +unicode = 196; +}, +{ +color = 10; +glyphname = Adotbelow; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = dotbelow; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(366,-195,o), +(393,-170,o), +(393,-133,cs), +(393,-97,o), +(366,-72,o), +(331,-72,cs), +(296,-72,o), +(269,-97,o), +(269,-133,cs), +(269,-170,o), +(296,-195,o), +(331,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = dotbelow; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = dotbelow; +} +); +width = 660; +} +); +unicode = 7840; +}, +{ +color = 10; +glyphname = Agrave; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = gravecomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(392,735,l), +(292,845,l), +(161,845,l), +(298,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = gravecomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = gravecomb.case; +} +); +width = 660; +} +); +unicode = 192; +}, +{ +color = 10; +glyphname = Amacron; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = macroncomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(489,753,l), +(489,837,l), +(173,837,l), +(173,753,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = macroncomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = macroncomb.case; +} +); +width = 660; +} +); +unicode = 256; +}, +{ +color = 10; +glyphname = Aogonek; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 13:34:41 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (336,0); +ref = ogonekcomb; +} +); +width = 675; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,-185,o), +(617,-176,o), +(645,-165,c), +(636,-84,l), +(613,-94,o), +(579,-106,o), +(559,-106,c), +(546,-106,o), +(538,-101,o), +(538,-89,c), +(538,-65,o), +(575,-34,o), +(645,0,c), +(535,0,l), +(477,-37,o), +(454,-69,o), +(454,-111,c), +(454,-153,o), +(488,-185,o), +(553,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (341,0); +ref = ogonekcomb; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(477,-37,o), +(454,-69,o), +(454,-111,c), +(454,-153,o), +(488,-185,o), +(553,-185,cs), +(582,-185,o), +(617,-176,o), +(645,-165,c), +(636,-84,l), +(613,-94,o), +(579,-106,o), +(559,-106,c), +(546,-106,o), +(538,-101,o), +(538,-89,c), +(538,-65,o), +(575,-34,o), +(645,0,c), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(146,191,l), +(514,191,l), +(514,287,l), +(146,287,l) +); +}, +{ +closed = 1; +nodes = ( +(304,690,l), +(535,0,l), +(645,0,l), +(406,690,l) +); +}, +{ +closed = 1; +nodes = ( +(254,690,l), +(15,0,l), +(122,0,l), +(348,690,l) +); +} +); +width = 660; +} +); +unicode = 260; +}, +{ +color = 10; +glyphname = Aring; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = ringcomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(387,735,o), +(428,769,o), +(428,821,cs), +(428,874,o), +(387,908,o), +(331,908,cs), +(275,908,o), +(234,874,o), +(234,821,cs), +(234,769,o), +(275,735,o), +(331,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,790,o), +(297,804,o), +(297,821,cs), +(297,839,o), +(310,853,o), +(331,853,cs), +(352,853,o), +(365,839,o), +(365,821,cs), +(365,804,o), +(352,790,o), +(331,790,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = ringcomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = ringcomb.case; +} +); +width = 660; +} +); +unicode = 197; +}, +{ +color = 10; +glyphname = Aringacute; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 13:44:07 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = ringcomb.case; +}, +{ +pos = (87,227); +ref = acutecomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(387,735,o), +(428,769,o), +(428,821,cs), +(428,874,o), +(387,908,o), +(331,908,cs), +(275,908,o), +(234,874,o), +(234,821,cs), +(234,769,o), +(275,735,o), +(331,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,790,o), +(297,804,o), +(297,821,cs), +(297,839,o), +(310,853,o), +(331,853,cs), +(352,853,o), +(365,839,o), +(365,821,cs), +(365,804,o), +(352,790,o), +(331,790,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,925,l), +(478,1015,l), +(377,1015,l), +(287,925,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = ringcomb.case; +}, +{ +pos = (81,190); +ref = acutecomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +} +); +width = 660; +} +); +unicode = 506; +}, +{ +color = 10; +glyphname = Atilde; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = tildecomb.case; +} +); +width = 675; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(406,690,l), +(304,690,l), +(535,0,l) +); +}, +{ +closed = 1; +nodes = ( +(122,0,l), +(348,690,l), +(254,690,l), +(15,0,l) +); +}, +{ +closed = 1; +nodes = ( +(514,191,l), +(514,287,l), +(146,287,l), +(146,191,l) +); +}, +{ +closed = 1; +nodes = ( +(239,735,l), +(240,757,o), +(252,773,o), +(273,773,c), +(304,773,o), +(334,735,o), +(391,735,c), +(448,735,o), +(484,777,o), +(491,845,c), +(423,845,l), +(422,823,o), +(410,807,o), +(389,807,c), +(359,807,o), +(328,845,o), +(271,845,c), +(214,845,o), +(178,803,o), +(171,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = tildecomb.case; +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = A; +}, +{ +pos = (81,0); +ref = tildecomb.case; +} +); +width = 660; +} +); +unicode = 195; +}, +{ +color = 6; +glyphname = AE; +kernLeft = B; +kernRight = E; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (536,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(173,0,l), +(519,690,l), +(364,690,l), +(0,0,l) +); +}, +{ +closed = 1; +nodes = ( +(503,162,l), +(503,295,l), +(213,295,l), +(213,162,l) +); +}, +{ +closed = 1; +nodes = ( +(956,0,l), +(956,145,l), +(529,145,l), +(529,0,l) +); +}, +{ +closed = 1; +nodes = ( +(616,0,l), +(616,690,l), +(461,690,l), +(461,0,l) +); +}, +{ +closed = 1; +nodes = ( +(909,282,l), +(909,419,l), +(529,419,l), +(529,282,l) +); +}, +{ +closed = 1; +nodes = ( +(952,545,l), +(952,690,l), +(529,690,l), +(529,545,l) +); +} +); +width = 992; +}, +{ +anchors = ( +{ +name = top; +pos = (506,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (506,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,l), +(488,690,l), +(388,690,l), +(6,0,l) +); +}, +{ +closed = 1; +nodes = ( +(505,193,l), +(505,287,l), +(197,287,l), +(197,193,l) +); +}, +{ +closed = 1; +nodes = ( +(924,0,l), +(924,96,l), +(504,96,l), +(504,0,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,690,l), +(454,690,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(859,306,l), +(859,402,l), +(504,402,l), +(504,306,l) +); +}, +{ +closed = 1; +nodes = ( +(919,594,l), +(919,690,l), +(504,690,l), +(504,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,l), +(488,690,l), +(388,690,l), +(6,0,l) +); +}, +{ +closed = 1; +nodes = ( +(505,193,l), +(505,287,l), +(197,287,l), +(197,193,l) +); +}, +{ +closed = 1; +nodes = ( +(924,0,l), +(924,96,l), +(504,96,l), +(504,0,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,690,l), +(454,690,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(859,306,l), +(859,402,l), +(504,402,l), +(504,306,l) +); +}, +{ +closed = 1; +nodes = ( +(919,594,l), +(919,690,l), +(504,690,l), +(504,594,l) +); +} +); +width = 970; +}, +{ +anchors = ( +{ +name = top; +pos = (506,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(321,690,l), +(552,0,l), +(662,0,l), +(423,690,l) +); +}, +{ +closed = 1; +nodes = ( +(271,690,l), +(32,0,l), +(139,0,l), +(365,690,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(559,690,l), +(454,690,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(504,306,l), +(859,306,l), +(859,402,l), +(504,402,l) +); +}, +{ +closed = 1; +nodes = ( +(504,0,l), +(924,0,l), +(924,96,l), +(504,96,l) +); +}, +{ +closed = 1; +nodes = ( +(504,594,l), +(919,594,l), +(919,690,l), +(504,690,l) +); +}, +{ +closed = 1; +nodes = ( +(197,193,l), +(505,193,l), +(505,287,l), +(197,287,l) +); +}, +{ +closed = 1; +nodes = ( +(388,690,l), +(6,0,l), +(120,0,l), +(488,690,l) +); +} +); +width = 970; +} +); +unicode = 198; +}, +{ +color = 10; +glyphname = AEacute; +kernLeft = B; +kernRight = E; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = AE; +}, +{ +pos = (286,0); +ref = acutecomb.case; +} +); +width = 992; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (506,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,l), +(488,690,l), +(388,690,l), +(6,0,l) +); +}, +{ +closed = 1; +nodes = ( +(505,193,l), +(505,287,l), +(197,287,l), +(197,193,l) +); +}, +{ +closed = 1; +nodes = ( +(924,0,l), +(924,96,l), +(504,96,l), +(504,0,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,690,l), +(454,690,l), +(454,0,l) +); +}, +{ +closed = 1; +nodes = ( +(859,306,l), +(859,402,l), +(504,402,l), +(504,306,l) +); +}, +{ +closed = 1; +nodes = ( +(919,594,l), +(919,690,l), +(504,690,l), +(504,594,l) +); +}, +{ +closed = 1; +nodes = ( +(539,735,l), +(676,845,l), +(545,845,l), +(445,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = AE; +}, +{ +pos = (256,0); +ref = acutecomb.case; +} +); +width = 970; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = AE; +}, +{ +pos = (256,0); +ref = acutecomb.case; +} +); +width = 970; +} +); +unicode = 508; +}, +{ +color = 6; +glyphname = B; +kernLeft = H; +kernRight = B; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(370,0,l), +(525,0,o), +(608,81,o), +(608,196,c), +(608,303,o), +(531,380,o), +(387,380,c), +(130,380,l), +(130,287,l), +(360,287,l), +(424,287,o), +(450,260,o), +(450,216,c), +(450,171,o), +(424,144,o), +(360,144,c), +(130,144,l), +(130,0,l) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(346,349,l), +(501,349,o), +(583,416,o), +(583,511,cs), +(583,618,o), +(500,690,o), +(347,690,c), +(130,690,l), +(130,546,l), +(336,546,l), +(398,546,o), +(425,521,o), +(425,480,c), +(425,439,o), +(398,414,o), +(336,414,c), +(130,414,l), +(130,349,l) +); +} +); +width = 638; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(352,0,l), +(500,0,o), +(589,78,o), +(589,193,c), +(589,305,o), +(501,381,o), +(346,381,c), +(125,381,l), +(125,313,l), +(336,313,l), +(439,313,o), +(481,272,o), +(481,202,c), +(481,135,o), +(439,93,o), +(336,93,c), +(125,93,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(341,344,l), +(487,344,o), +(564,414,o), +(564,510,cs), +(564,615,o), +(477,690,o), +(346,690,c), +(125,690,l), +(125,597,l), +(331,597,l), +(418,597,o), +(459,559,o), +(459,501,c), +(459,442,o), +(417,399,o), +(331,399,c), +(125,399,l), +(125,344,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(352,0,l), +(500,0,o), +(589,78,o), +(589,193,c), +(589,305,o), +(501,381,o), +(346,381,c), +(125,381,l), +(125,313,l), +(336,313,l), +(439,313,o), +(481,272,o), +(481,202,c), +(481,135,o), +(439,93,o), +(336,93,c), +(125,93,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(341,344,l), +(487,344,o), +(564,414,o), +(564,510,cs), +(564,615,o), +(477,690,o), +(346,690,c), +(125,690,l), +(125,597,l), +(331,597,l), +(418,597,o), +(459,559,o), +(459,501,c), +(459,442,o), +(417,399,o), +(331,399,c), +(125,399,l), +(125,344,l) +); +} +); +width = 623; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(487,344,o), +(564,414,o), +(564,510,cs), +(564,615,o), +(477,690,o), +(346,690,c), +(125,690,l), +(125,597,l), +(331,597,l), +(418,597,o), +(459,559,o), +(459,501,c), +(459,442,o), +(417,399,o), +(331,399,c), +(125,399,l), +(125,344,l), +(341,344,l) +); +}, +{ +closed = 1; +nodes = ( +(500,0,o), +(589,78,o), +(589,193,c), +(589,305,o), +(501,381,o), +(346,381,c), +(125,381,l), +(125,313,l), +(336,313,l), +(439,313,o), +(481,272,o), +(481,202,c), +(481,135,o), +(439,93,o), +(336,93,c), +(125,93,l), +(125,0,l), +(352,0,l) +); +} +); +width = 623; +} +); +unicode = 66; +}, +{ +color = 6; +glyphname = C; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (357,0); +}, +{ +name = top; +pos = (357,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(513,-14,o), +(628,77,o), +(658,226,c), +(505,268,l), +(492,182,o), +(438,132,o), +(356,132,c), +(257,132,o), +(194,213,o), +(194,345,cs), +(194,478,o), +(257,558,o), +(355,558,c), +(435,558,o), +(489,508,o), +(502,424,c), +(656,466,l), +(625,613,o), +(510,704,o), +(355,704,c), +(166,704,o), +(36,563,o), +(36,345,cs), +(36,128,o), +(166,-14,o), +(356,-14,c) +); +} +); +width = 686; +}, +{ +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,136.653,o), +(441,87,o), +(342,87,c), +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553.424,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,137,o), +(441,87,o), +(342,87,c), +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c) +); +} +); +width = 667; +}, +{ +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553.424,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c), +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,136.653,o), +(441,87,o), +(342,87,c) +); +} +); +width = 667; +} +); +unicode = 67; +}, +{ +color = 10; +glyphname = Cacute; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (107,0); +ref = acutecomb.case; +} +); +width = 686; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,136.653,o), +(441,87,o), +(342,87,c), +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553.424,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(378,735,l), +(515,845,l), +(384,845,l), +(284,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = acutecomb.case; +} +); +width = 667; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = acutecomb.case; +} +); +width = 667; +} +); +unicode = 262; +}, +{ +color = 10; +glyphname = Ccaron; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (107,0); +ref = caroncomb.case; +} +); +width = 686; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,136.653,o), +(441,87,o), +(342,87,c), +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553.424,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(414,735,l), +(528,845,l), +(429,845,l), +(280,735,l) +); +}, +{ +closed = 1; +nodes = ( +(410,735,l), +(261,845,l), +(162,845,l), +(276,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = caroncomb.case; +} +); +width = 667; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = caroncomb.case; +} +); +width = 667; +} +); +unicode = 268; +}, +{ +color = 10; +glyphname = Ccedilla; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (104,0); +ref = cedillacomb; +} +); +width = 686; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,136.653,o), +(441,87,o), +(342,87,c), +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553.424,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(396,-185,o), +(432,-151,o), +(432,-106,cs), +(432,-57,o), +(395,-29,o), +(347,-29,c), +(359,-43,l), +(365,9,l), +(309,11,l), +(296,-73,l), +(307,-71,o), +(314,-70,o), +(325,-70,c), +(349,-70,o), +(363,-79,o), +(363,-96,c), +(363,-110,o), +(350,-119,o), +(329,-119,c), +(309,-119,o), +(293,-114,o), +(275,-105,c), +(262,-169,l), +(287,-180,o), +(312,-185,o), +(338,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = C; +}, +{ +pos = (93,0); +ref = cedillacomb; +} +); +width = 667; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = C; +}, +{ +pos = (93,0); +ref = cedilla; +} +); +width = 667; +} +); +unicode = 199; +}, +{ +color = 10; +glyphname = Ccircumflex; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (107,0); +ref = circumflexcomb.case; +} +); +width = 686; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,136.653,o), +(441,87,o), +(342,87,c), +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553.424,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(528,735,l), +(414,845,l), +(280,845,l), +(429,735,l) +); +}, +{ +closed = 1; +nodes = ( +(261,735,l), +(410,845,l), +(276,845,l), +(162,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = circumflexcomb.case; +} +); +width = 667; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = circumflexcomb.case; +} +); +width = 667; +} +); +unicode = 264; +}, +{ +color = 10; +glyphname = Cdotaccent; +kernLeft = O; +kernRight = C; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = C; +}, +{ +pos = (107,0); +ref = dotaccentcomb.case; +} +); +width = 686; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (345,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(591,67,o), +(628,209,c), +(524,237,l), +(500,136.653,o), +(441,87,o), +(342,87,c), +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(342,603,c), +(438,603,o), +(500,553.424,o), +(520,455,c), +(624,483,l), +(591,623,o), +(486,700,o), +(345,700,c), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(345,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(380,735,o), +(407,760,o), +(407,796,cs), +(407,833,o), +(380,858,o), +(345,858,cs), +(310,858,o), +(283,833,o), +(283,796,cs), +(283,760,o), +(310,735,o), +(345,735,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = dotaccentcomb.case; +} +); +width = 667; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = C; +}, +{ +pos = (95,0); +ref = dotaccentcomb.case; +} +); +width = 667; +} +); +unicode = 266; +}, +{ +color = 6; +glyphname = D; +kernLeft = H; +kernRight = O; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (310,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(335,0,l), +(541,0,o), +(657,136,o), +(657,345,cs), +(657,555,o), +(541,690,o), +(335,690,c), +(130,690,l), +(130,545,l), +(325,545,l), +(440,545,o), +(499,470,o), +(499,345,cs), +(499,221,o), +(440,145,o), +(325,145,c), +(130,145,l), +(130,0,l) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +} +); +width = 693; +}, +{ +anchors = ( +{ +name = top; +pos = (328,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (328,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(309,0,l), +(511,0,o), +(634,131,o), +(634,345,cs), +(634,560,o), +(511,690,o), +(309,690,c), +(125,690,l), +(125,594,l), +(299,594,l), +(450,594,o), +(525,513.243,o), +(525,345,cs), +(525,177.718,o), +(450,96,o), +(299,96,c), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,0,l), +(511,0,o), +(634,131,o), +(634,345,cs), +(634,560,o), +(511,690,o), +(309,690,c), +(125,690,l), +(125,594,l), +(299,594,l), +(450,594,o), +(525,513,o), +(525,345,cs), +(525,178,o), +(450,96,o), +(299,96,c), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 678; +}, +{ +anchors = ( +{ +name = top; +pos = (328,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(511,0,o), +(634,131,o), +(634,345,cs), +(634,560,o), +(511,690,o), +(309,690,c), +(125,690,l), +(125,594,l), +(299,594,l), +(450,594,o), +(525,513.243,o), +(525,345,cs), +(525,177.718,o), +(450,96,o), +(299,96,c), +(125,96,l), +(125,0,l), +(309,0,l) +); +} +); +width = 678; +} +); +unicode = 68; +}, +{ +color = 10; +glyphname = Dcaron; +kernLeft = H; +kernRight = O; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = D; +}, +{ +pos = (60,0); +ref = caroncomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (328,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(309,0,l), +(511,0,o), +(634,131,o), +(634,345,cs), +(634,560,o), +(511,690,o), +(309,690,c), +(125,690,l), +(125,594,l), +(299,594,l), +(450,594,o), +(525,513.243,o), +(525,345,cs), +(525,177.718,o), +(450,96,o), +(299,96,c), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(397,735,l), +(511,845,l), +(412,845,l), +(263,735,l) +); +}, +{ +closed = 1; +nodes = ( +(393,735,l), +(244,845,l), +(145,845,l), +(259,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = D; +}, +{ +pos = (78,0); +ref = caroncomb.case; +} +); +width = 678; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = D; +}, +{ +pos = (78,0); +ref = caroncomb.case; +} +); +width = 678; +} +); +unicode = 270; +}, +{ +color = 10; +glyphname = Dcroat; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Eth; +} +); +width = 700; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(324,0,l), +(526,0,o), +(649,131,o), +(649,345,cs), +(649,560,o), +(526,690,o), +(324,690,c), +(140,690,l), +(140,594,l), +(314,594,l), +(465,594,o), +(540,513,o), +(540,345,cs), +(540,178,o), +(465,96,o), +(314,96,c), +(140,96,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(365,295,l), +(365,386,l), +(20,386,l), +(20,295,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Eth; +} +); +width = 693; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,295,l), +(365,295,l), +(365,386,l), +(20,386,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(526,0,o), +(649,131,o), +(649,345,cs), +(649,560,o), +(526,690,o), +(324,690,c), +(140,690,l), +(140,594,l), +(314,594,l), +(465,594,o), +(540,513,o), +(540,345,cs), +(540,178,o), +(465,96,o), +(314,96,c), +(140,96,l), +(140,0,l), +(324,0,l) +); +} +); +width = 693; +} +); +unicode = 272; +}, +{ +color = 6; +glyphname = Eth; +kernRight = O; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(342,0,l), +(548,0,o), +(664,136,o), +(664,345,cs), +(664,555,o), +(548,690,o), +(342,690,c), +(137,690,l), +(137,545,l), +(332,545,l), +(447,545,o), +(506,470,o), +(506,345,cs), +(506,221,o), +(447,145,o), +(332,145,c), +(137,145,l), +(137,0,l) +); +}, +{ +closed = 1; +nodes = ( +(224,0,l), +(224,690,l), +(69,690,l), +(69,0,l) +); +}, +{ +closed = 1; +nodes = ( +(368,280,l), +(368,401,l), +(10,401,l), +(10,280,l) +); +} +); +width = 700; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(324,0,l), +(526,0,o), +(649,131,o), +(649,345,cs), +(649,560,o), +(526,690,o), +(324,690,c), +(140,690,l), +(140,594,l), +(314,594,l), +(465,594,o), +(540,513,o), +(540,345,cs), +(540,178,o), +(465,96,o), +(314,96,c), +(140,96,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(365,295,l), +(365,386,l), +(20,386,l), +(20,295,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(324,0,l), +(526,0,o), +(649,131,o), +(649,345,cs), +(649,560,o), +(526,690,o), +(324,690,c), +(140,690,l), +(140,594,l), +(314,594,l), +(465,594,o), +(540,513,o), +(540,345,cs), +(540,178,o), +(465,96,o), +(314,96,c), +(140,96,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(365,295,l), +(365,386,l), +(20,386,l), +(20,295,l) +); +} +); +width = 693; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,295,l), +(365,295,l), +(365,386,l), +(20,386,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(526,0,o), +(649,131,o), +(649,345,cs), +(649,560,o), +(526,690,o), +(324,690,c), +(140,690,l), +(140,594,l), +(314,594,l), +(465,594,o), +(540,513,o), +(540,345,cs), +(540,178,o), +(465,96,o), +(314,96,c), +(140,96,l), +(140,0,l), +(324,0,l) +); +} +); +width = 693; +} +); +unicode = 208; +}, +{ +color = 6; +glyphname = E; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 13:34:49 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (327,0); +}, +{ +name = ogonek; +pos = (582,0); +}, +{ +name = top; +pos = (327,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(582,0,l), +(582,145,l), +(130,145,l), +(130,0,l) +); +}, +{ +closed = 1; +nodes = ( +(535,282,l), +(535,419,l), +(130,419,l), +(130,282,l) +); +}, +{ +closed = 1; +nodes = ( +(578,545,l), +(578,690,l), +(130,690,l), +(130,545,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = ogonek; +pos = (565,0); +}, +{ +name = top; +pos = (325,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +} +); +width = 611; +}, +{ +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,306,l), +(500,306,l), +(500,402,l), +(125,402,l) +); +}, +{ +closed = 1; +nodes = ( +(125,0,l), +(565,0,l), +(565,96,l), +(125,96,l) +); +}, +{ +closed = 1; +nodes = ( +(125,594,l), +(560,594,l), +(560,690,l), +(125,690,l) +); +} +); +width = 611; +} +); +unicode = 69; +}, +{ +color = 10; +glyphname = Eacute; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = acutecomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(358,735,l), +(495,845,l), +(364,845,l), +(264,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = acutecomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = acutecomb.case; +} +); +width = 611; +} +); +unicode = 201; +}, +{ +color = 10; +glyphname = Ebreve; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = brevecomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(422,735,o), +(470,777,o), +(475,845,c), +(405,845,l), +(401,820,o), +(380,805,o), +(325,805,c), +(270,805,o), +(249,820,o), +(245,845,c), +(175,845,l), +(180,777,o), +(228,735,o), +(325,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = brevecomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = brevecomb.case; +} +); +width = 611; +} +); +unicode = 276; +}, +{ +color = 10; +glyphname = Ecaron; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = caroncomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(394,735,l), +(508,845,l), +(409,845,l), +(260,735,l) +); +}, +{ +closed = 1; +nodes = ( +(390,735,l), +(241,845,l), +(142,845,l), +(256,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = caroncomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = caroncomb.case; +} +); +width = 611; +} +); +unicode = 282; +}, +{ +color = 10; +glyphname = Ecircumflex; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = circumflexcomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(508,735,l), +(394,845,l), +(260,845,l), +(409,735,l) +); +}, +{ +closed = 1; +nodes = ( +(241,735,l), +(390,845,l), +(256,845,l), +(142,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = circumflexcomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = circumflexcomb.case; +} +); +width = 611; +} +); +unicode = 202; +}, +{ +color = 10; +glyphname = Edieresis; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = dieresiscomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(458,742,o), +(483,765,o), +(483,798,cs), +(483,832,o), +(458,855,o), +(426,855,cs), +(394,855,o), +(369,832,o), +(369,798,cs), +(369,765,o), +(394,742,o), +(426,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,742,o), +(281,765,o), +(281,798,cs), +(281,832,o), +(256,855,o), +(224,855,cs), +(192,855,o), +(167,832,o), +(167,798,cs), +(167,765,o), +(192,742,o), +(224,742,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = dieresiscomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = dieresiscomb.case; +} +); +width = 611; +} +); +unicode = 203; +}, +{ +color = 10; +glyphname = Edotaccent; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = dotaccentcomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(360,735,o), +(387,760,o), +(387,796,cs), +(387,833,o), +(360,858,o), +(325,858,cs), +(290,858,o), +(263,833,o), +(263,796,cs), +(263,760,o), +(290,735,o), +(325,735,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = dotaccentcomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = dotaccentcomb.case; +} +); +width = 611; +} +); +unicode = 278; +}, +{ +color = 10; +glyphname = Edotbelow; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = dotbelow; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(360,-195,o), +(387,-170,o), +(387,-133,cs), +(387,-97,o), +(360,-72,o), +(325,-72,cs), +(290,-72,o), +(263,-97,o), +(263,-133,cs), +(263,-170,o), +(290,-195,o), +(325,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = dotbelow; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = dotbelow; +} +); +width = 611; +} +); +unicode = 7864; +}, +{ +color = 10; +glyphname = Egrave; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = gravecomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(386,735,l), +(286,845,l), +(155,845,l), +(292,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = gravecomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = gravecomb.case; +} +); +width = 611; +} +); +unicode = 200; +}, +{ +color = 10; +glyphname = Emacron; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = macroncomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(483,753,l), +(483,837,l), +(167,837,l), +(167,753,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = macroncomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = macroncomb.case; +} +); +width = 611; +} +); +unicode = 274; +}, +{ +color = 10; +glyphname = Eogonek; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 13:35:19 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (243,0); +ref = ogonekcomb; +} +); +width = 618; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(502,-185,o), +(537,-176,o), +(565,-165,c), +(556,-84,l), +(533,-94,o), +(499,-106,o), +(479,-106,c), +(466,-106,o), +(458,-101,o), +(458,-89,c), +(458,-65,o), +(495,-34,o), +(565,0,c), +(465,0,l), +(397,-37,o), +(374,-69,o), +(374,-111,c), +(374,-153,o), +(408,-185,o), +(473,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (261,0); +ref = ogonekcomb; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(397,-37,o), +(374,-69,o), +(374,-111,c), +(374,-153,o), +(408,-185,o), +(473,-185,cs), +(502,-185,o), +(537,-176,o), +(565,-165,c), +(556,-84,l), +(533,-94,o), +(499,-106,o), +(479,-106,c), +(466,-106,o), +(458,-101,o), +(458,-89,c), +(458,-65,o), +(495,-34,o), +(565,0,c), +(465,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,306,l), +(500,306,l), +(500,402,l), +(125,402,l) +); +}, +{ +closed = 1; +nodes = ( +(125,0,l), +(565,0,l), +(565,96,l), +(125,96,l) +); +}, +{ +closed = 1; +nodes = ( +(125,594,l), +(560,594,l), +(560,690,l), +(125,690,l) +); +} +); +width = 611; +} +); +unicode = 280; +}, +{ +color = 10; +glyphname = Etilde; +kernLeft = H; +kernRight = E; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = E; +}, +{ +pos = (77,0); +ref = tildecomb.case; +} +); +width = 618; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = top; +pos = (325,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(565,0,l), +(565,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,306,l), +(500,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(560,594,l), +(560,690,l), +(125,690,l), +(125,594,l) +); +}, +{ +closed = 1; +nodes = ( +(233,735,l), +(234,757,o), +(246,773,o), +(267,773,c), +(298,773,o), +(328,735,o), +(385,735,c), +(442,735,o), +(478,777,o), +(485,845,c), +(417,845,l), +(416,823,o), +(404,807,o), +(383,807,c), +(353,807,o), +(322,845,o), +(265,845,c), +(208,845,o), +(172,803,o), +(165,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = tildecomb.case; +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = E; +}, +{ +pos = (75,0); +ref = tildecomb.case; +} +); +width = 611; +} +); +unicode = 7868; +}, +{ +color = 6; +glyphname = Schwa; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(36,381,o), +(35,364,o), +(35,345,c), +(35,127,o), +(170,-14,o), +(363,-14,c), +(555,-14,o), +(692,129,o), +(692,345,c), +(692,560,o), +(557,704,o), +(366,704,c), +(194,704,o), +(85,624,o), +(53,506,c), +(236,459,l), +(254,515,o), +(297,540,o), +(354,540,c), +(441,540,o), +(494,479,o), +(494,345,c), +(494,202,o), +(443,147,o), +(363,147,c), +(278,147,o), +(231,201,o), +(231,345,c), +(178,270,l), +(584,270,l), +(584,399,l), +(36,399,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(557,-14,o), +(690,120,o), +(690,345,cs), +(690,571,o), +(556,704,o), +(361,704,cs), +(223,704,o), +(107,639,o), +(59,525,c), +(215,469,l), +(240,528,o), +(295,558,o), +(361,558,cs), +(465,558,o), +(532,486,o), +(532,345,cs), +(532,205,o), +(466,132,o), +(362,132,cs), +(259,132,o), +(194,205,o), +(194,345,c), +(143,275,l), +(580,275,l), +(580,409,l), +(39,409,l), +(36,388,o), +(36,357,o), +(36,345,cs), +(36,120,o), +(168,-14,o), +(362,-14,cs) +); +} +); +width = 726; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(529,700,o), +(346,700,c), +(218,700,o), +(116,635,o), +(68,520,c), +(169,480,l), +(200,560,o), +(262,603,o), +(346,603,c), +(468,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs), +(228,87,o), +(153,179,o), +(153,345,c), +(127,283,l), +(579,283,l), +(579,379,l), +(45,379,l), +(44,368,o), +(44,356,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(529,700,o), +(346,700,c), +(218,700,o), +(116,635,o), +(68,520,c), +(169,480,l), +(200,560,o), +(262,603,o), +(346,603,c), +(468,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs), +(228,87,o), +(153,179,o), +(153,345,c), +(127,283,l), +(579,283,l), +(579,379,l), +(45,379,l), +(44,368,o), +(44,356,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(38,368,o), +(38,359,o), +(38,345,c), +(38,122,o), +(162,-10,o), +(339,-10,c), +(522,-10,o), +(651,122,o), +(651,345,c), +(651,561,o), +(525,700,o), +(336,700,c), +(203,700,o), +(99,634,o), +(53,518,c), +(174,470,l), +(206,548,o), +(260,579,o), +(336,579,c), +(449,579,o), +(517,505,o), +(517,345,c), +(517,173,o), +(446,101,o), +(339,101,c), +(238,101,o), +(172,173,o), +(172,345,c), +(135,287,l), +(545,287,l), +(545,389,l), +(39,389,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,179,o), +(228,87,o), +(348,87,cs), +(469,87,o), +(544,179,o), +(544,345,cs), +(544,512,o), +(468,603,o), +(346,603,c), +(262,603,o), +(200,560,o), +(169,480,c), +(68,520,l), +(116,635,o), +(218,700,o), +(346,700,c), +(529,700,o), +(653,566,o), +(653,345,cs), +(653,125,o), +(530,-10,o), +(348,-10,cs), +(167,-10,o), +(44,125,o), +(44,345,cs), +(44,356,o), +(44,368,o), +(45,379,c), +(579,379,l), +(579,283,l), +(127,283,l), +(153,345,l) +); +} +); +width = 697; +} +); +unicode = 399; +}, +{ +color = 6; +glyphname = F; +kernLeft = H; +kernRight = F; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(517,262,l), +(517,399,l), +(130,399,l), +(130,262,l) +); +}, +{ +closed = 1; +nodes = ( +(558,545,l), +(558,690,l), +(130,690,l), +(130,545,l) +); +} +); +width = 583; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,286,l), +(500,382,l), +(125,382,l), +(125,286,l) +); +}, +{ +closed = 1; +nodes = ( +(540,594,l), +(540,690,l), +(125,690,l), +(125,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(500,286,l), +(500,382,l), +(125,382,l), +(125,286,l) +); +}, +{ +closed = 1; +nodes = ( +(540,594,l), +(540,690,l), +(125,690,l), +(125,594,l) +); +} +); +width = 576; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,286,l), +(500,286,l), +(500,382,l), +(125,382,l) +); +}, +{ +closed = 1; +nodes = ( +(125,594,l), +(540,594,l), +(540,690,l), +(125,690,l) +); +} +); +width = 576; +} +); +unicode = 70; +}, +{ +color = 6; +glyphname = G; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (358,0); +}, +{ +name = top; +pos = (359,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(474,-14,o), +(572,84,o), +(575,280,c), +(516,280,l), +(516,185,o), +(451,128,o), +(360,128,c), +(257,128,o), +(194,206,o), +(194,341,c), +(194,477,o), +(261,558,o), +(360,558,c), +(441,558,o), +(493,508,o), +(504,435,c), +(658,477,l), +(629,613,o), +(516,704,o), +(360,704,c), +(169,704,o), +(36,562,o), +(36,341,c), +(36,127,o), +(159,-14,o), +(328,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(667,0,l), +(667,377,l), +(516,377,l), +(516,214,l), +(544,0,l) +); +}, +{ +closed = 1; +nodes = ( +(604,250,l), +(604,377,l), +(350,377,l), +(350,250,l) +); +} +); +width = 722; +}, +{ +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c), +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(644,0,l), +(644,350,l), +(543,350,l), +(543,214,l), +(552,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c), +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(644,0,l), +(644,350,l), +(543,350,l), +(543,214,l), +(552,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +} +); +width = 704; +}, +{ +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(234,86,o), +(149,174.48,o), +(149,345,cs), +(149,516.545,o), +(232,603,o), +(358,603,c), +(454,603,o), +(516.117,553.839,o), +(536,465,c), +(640,493,l), +(607.176,623,o), +(502,700,o), +(361,700,c), +(171.173,700,o), +(40,566,o), +(40,345,cs), +(40,125,o), +(161,-10,o), +(363,-10,c), +(471,-10,o), +(569,36,o), +(640,124,c), +(535,152,l), +(499,111,o), +(441,86,o), +(365,86,c) +); +}, +{ +closed = 1; +nodes = ( +(535,-44,l), +(640,4,l), +(640,350,l), +(535,350,l) +); +}, +{ +closed = 1; +nodes = ( +(590,264,l), +(590,350,l), +(345,350,l), +(345,264,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,214,l), +(552,0,l), +(644,0,l), +(644,350,l), +(543,350,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +}, +{ +closed = 1; +nodes = ( +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c), +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c) +); +} +); +width = 704; +} +); +unicode = 71; +}, +{ +color = 10; +glyphname = Gbreve; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (109,0); +ref = brevecomb.case; +} +); +width = 722; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c), +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(644,0,l), +(644,350,l), +(543,350,l), +(543,214,l), +(552,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +}, +{ +closed = 1; +nodes = ( +(462,735,o), +(510,777,o), +(515,845,c), +(445,845,l), +(441,820,o), +(420,805,o), +(365,805,c), +(310,805,o), +(289,820,o), +(285,845,c), +(215,845,l), +(220,777,o), +(268,735,o), +(365,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = brevecomb.case; +} +); +width = 704; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = brevecomb.case; +} +); +width = 704; +} +); +unicode = 286; +}, +{ +color = 10; +glyphname = Gcaron; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (109,0); +ref = caroncomb.case; +} +); +width = 722; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c), +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(644,0,l), +(644,350,l), +(543,350,l), +(543,214,l), +(552,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +}, +{ +closed = 1; +nodes = ( +(434,735,l), +(548,845,l), +(449,845,l), +(300,735,l) +); +}, +{ +closed = 1; +nodes = ( +(430,735,l), +(281,845,l), +(182,845,l), +(296,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = caroncomb.case; +} +); +width = 704; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = caroncomb.case; +} +); +width = 704; +} +); +unicode = 486; +}, +{ +color = 10; +glyphname = Gcircumflex; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (109,0); +ref = circumflexcomb.case; +} +); +width = 722; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c), +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(644,0,l), +(644,350,l), +(543,350,l), +(543,214,l), +(552,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +}, +{ +closed = 1; +nodes = ( +(548,735,l), +(434,845,l), +(300,845,l), +(449,735,l) +); +}, +{ +closed = 1; +nodes = ( +(281,735,l), +(430,845,l), +(296,845,l), +(182,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = circumflexcomb.case; +} +); +width = 704; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = circumflexcomb.case; +} +); +width = 704; +} +); +unicode = 284; +}, +{ +color = 10; +glyphname = Gcommaaccent; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (214,0); +ref = commaaccentcomb; +} +); +width = 722; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c), +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(644,0,l), +(644,350,l), +(543,350,l), +(543,214,l), +(552,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +}, +{ +closed = 1; +nodes = ( +(368,-275,l), +(409,-72,l), +(305,-72,l), +(305,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = G; +}, +{ +pos = (211,0); +ref = commaaccentcomb; +} +); +width = 704; +} +); +unicode = 290; +}, +{ +color = 10; +glyphname = Gdotaccent; +kernLeft = O; +kernRight = G; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = G; +}, +{ +pos = (109,0); +ref = dotaccentcomb.case; +} +); +width = 722; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = top; +pos = (365,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(583,125,o), +(583,275,c), +(543,275,l), +(543,169,o), +(472,87,o), +(352,87,c), +(231,87,o), +(153,179,o), +(153,345,c), +(153,517,o), +(236,603,o), +(362,603,c), +(458,603,o), +(520,554,o), +(540,465,c), +(644,493,l), +(611,623,o), +(506,700,o), +(365,700,c), +(175,700,o), +(44,566,o), +(44,345,c), +(44,125,o), +(166,-10,o), +(335,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(644,0,l), +(644,350,l), +(543,350,l), +(543,214,l), +(552,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,264,l), +(594,350,l), +(349,350,l), +(349,264,l) +); +}, +{ +closed = 1; +nodes = ( +(400,735,o), +(427,760,o), +(427,796,cs), +(427,833,o), +(400,858,o), +(365,858,cs), +(330,858,o), +(303,833,o), +(303,796,cs), +(303,760,o), +(330,735,o), +(365,735,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = dotaccentcomb.case; +} +); +width = 704; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = G; +}, +{ +pos = (115,0); +ref = dotaccentcomb.case; +} +); +width = 704; +} +); +unicode = 288; +}, +{ +color = 6; +glyphname = H; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-22 12:23:55 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (358,0); +}, +{ +name = center; +pos = (358,518); +}, +{ +name = top; +pos = (358,690); +}, +{ +name = topleft; +pos = (20,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(653,0,l), +(653,690,l), +(498,690,l), +(498,0,l) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,278,l), +(585,423,l), +(130,423,l), +(130,278,l) +); +} +); +width = 715; +}, +{ +anchors = ( +{ +name = bottom; +pos = (353,0); +}, +{ +name = center; +pos = (353,518); +}, +{ +name = top; +pos = (353,690); +}, +{ +name = topleft; +pos = (20,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (353,0); +}, +{ +name = center; +pos = (353,518); +}, +{ +name = top; +pos = (353,690); +}, +{ +name = topleft; +pos = (20,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(525,690,l), +(525,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(580,306,l), +(580,402,l), +(125,402,l), +(125,306,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(525,690,l), +(525,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(580,306,l), +(580,402,l), +(125,402,l), +(125,306,l) +); +} +); +width = 705; +}, +{ +anchors = ( +{ +name = bottom; +pos = (353,0); +}, +{ +name = top; +pos = (353,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(525,690,l), +(525,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,306,l), +(580,306,l), +(580,402,l), +(125,402,l) +); +} +); +width = 705; +} +); +unicode = 72; +}, +{ +color = 6; +glyphname = Hbar; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(658,0,l), +(658,690,l), +(503,690,l), +(503,0,l) +); +}, +{ +closed = 1; +nodes = ( +(222,0,l), +(222,690,l), +(67,690,l), +(67,0,l) +); +}, +{ +closed = 1; +nodes = ( +(590,228,l), +(590,373,l), +(135,373,l), +(135,228,l) +); +}, +{ +closed = 1; +nodes = ( +(715,478,l), +(715,599,l), +(10,599,l), +(10,478,l) +); +} +); +width = 725; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(645,690,l), +(540,690,l), +(540,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(595,286,l), +(595,382,l), +(140,382,l), +(140,286,l) +); +}, +{ +closed = 1; +nodes = ( +(715,482,l), +(715,573,l), +(20,573,l), +(20,482,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(645,0,l), +(645,690,l), +(540,690,l), +(540,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(595,286,l), +(595,382,l), +(140,382,l), +(140,286,l) +); +}, +{ +closed = 1; +nodes = ( +(715,482,l), +(715,573,l), +(20,573,l), +(20,482,l) +); +} +); +width = 735; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,482,l), +(715,482,l), +(715,573,l), +(20,573,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(645,0,l), +(645,690,l), +(540,690,l), +(540,0,l) +); +}, +{ +closed = 1; +nodes = ( +(140,286,l), +(595,286,l), +(595,382,l), +(140,382,l) +); +} +); +width = 735; +} +); +unicode = 294; +}, +{ +color = 10; +glyphname = Hcircumflex; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = H; +}, +{ +pos = (108,0); +ref = circumflexcomb.case; +} +); +width = 715; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (353,0); +}, +{ +name = center; +pos = (353,518); +}, +{ +name = top; +pos = (353,690); +}, +{ +name = topleft; +pos = (20,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(525,690,l), +(525,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(580,306,l), +(580,402,l), +(125,402,l), +(125,306,l) +); +}, +{ +closed = 1; +nodes = ( +(536,735,l), +(422,845,l), +(288,845,l), +(437,735,l) +); +}, +{ +closed = 1; +nodes = ( +(269,735,l), +(418,845,l), +(284,845,l), +(170,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = H; +}, +{ +pos = (103,0); +ref = circumflexcomb.case; +} +); +width = 705; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = H; +}, +{ +pos = (103,0); +ref = circumflexcomb.case; +} +); +width = 705; +} +); +unicode = 292; +}, +{ +color = 6; +glyphname = I; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 13:35:24 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (139,0); +}, +{ +name = ogonek; +pos = (217,0); +}, +{ +name = top; +pos = (139,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +} +); +width = 279; +}, +{ +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = ogonek; +pos = (180,0); +}, +{ +name = top; +pos = (128,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 255; +}, +{ +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 255; +} +); +unicode = 73; +}, +{ +color = 10; +glyphname = IJ; +kernLeft = H; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (279,0); +ref = J; +} +); +width = 869; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(652,-10,o), +(745,86,o), +(745,237,c), +(745,690,l), +(640,690,l), +(640,244,l), +(640,138,o), +(589,87,o), +(511,87,c), +(436,87,o), +(392,136,o), +(379,230,c), +(276,209,l), +(296,67,o), +(383,-10,o), +(511,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (255,0); +ref = J; +} +); +width = 815; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(296,67,o), +(383,-10,o), +(511,-10,c), +(652,-10,o), +(745,86,o), +(745,237,c), +(745,690,l), +(640,690,l), +(640,244,l), +(640,138,o), +(589,87,o), +(511,87,c), +(436,87,o), +(392,136,o), +(379,230,c), +(276,209,l) +); +} +); +width = 815; +} +); +unicode = 306; +}, +{ +color = 10; +glyphname = Iacute; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = acutecomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(161,735,l), +(298,845,l), +(167,845,l), +(67,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = acutecomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = acutecomb.case; +} +); +width = 255; +} +); +unicode = 205; +}, +{ +color = 10; +glyphname = Ibreve; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = brevecomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(225,735,o), +(273,777,o), +(278,845,c), +(208,845,l), +(204,820,o), +(183,805,o), +(128,805,c), +(73,805,o), +(52,820,o), +(48,845,c), +(-22,845,l), +(-17,777,o), +(31,735,o), +(128,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = brevecomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = brevecomb.case; +} +); +width = 255; +} +); +unicode = 300; +}, +{ +color = 10; +glyphname = Icircumflex; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = circumflexcomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(311,735,l), +(197,845,l), +(63,845,l), +(212,735,l) +); +}, +{ +closed = 1; +nodes = ( +(44,735,l), +(193,845,l), +(59,845,l), +(-55,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = circumflexcomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = circumflexcomb.case; +} +); +width = 255; +} +); +unicode = 206; +}, +{ +color = 10; +glyphname = Idieresis; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = dieresiscomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(261,742,o), +(286,765,o), +(286,798,cs), +(286,832,o), +(261,855,o), +(229,855,cs), +(197,855,o), +(172,832,o), +(172,798,cs), +(172,765,o), +(197,742,o), +(229,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(59,742,o), +(84,765,o), +(84,798,cs), +(84,832,o), +(59,855,o), +(27,855,cs), +(-5,855,o), +(-30,832,o), +(-30,798,cs), +(-30,765,o), +(-5,742,o), +(27,742,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = dieresiscomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = dieresiscomb.case; +} +); +width = 255; +} +); +unicode = 207; +}, +{ +color = 10; +glyphname = Idotaccent; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = dotaccentcomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(163,735,o), +(190,760,o), +(190,796,cs), +(190,833,o), +(163,858,o), +(128,858,cs), +(93,858,o), +(66,833,o), +(66,796,cs), +(66,760,o), +(93,735,o), +(128,735,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = dotaccentcomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = dotaccentcomb.case; +} +); +width = 255; +} +); +unicode = 304; +}, +{ +color = 10; +glyphname = Idotbelow; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = dotbelow; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(163,-195,o), +(190,-170,o), +(190,-133,cs), +(190,-97,o), +(163,-72,o), +(128,-72,cs), +(93,-72,o), +(66,-97,o), +(66,-133,cs), +(66,-170,o), +(93,-195,o), +(128,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = dotbelow; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = dotbelow; +} +); +width = 255; +} +); +unicode = 7882; +}, +{ +color = 10; +glyphname = Igrave; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = gravecomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(189,735,l), +(89,845,l), +(-42,845,l), +(95,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = gravecomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = gravecomb.case; +} +); +width = 255; +} +); +unicode = 204; +}, +{ +color = 10; +glyphname = Imacron; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = macroncomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(286,753,l), +(286,837,l), +(-30,837,l), +(-30,753,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = macroncomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = macroncomb.case; +} +); +width = 255; +} +); +unicode = 298; +}, +{ +color = 10; +glyphname = Iogonek; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 13:35:24 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = ogonekcomb; +} +); +width = 279; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(117,-185,o), +(152,-176,o), +(180,-165,c), +(171,-84,l), +(148,-94,o), +(114,-106,o), +(94,-106,c), +(81,-106,o), +(73,-101,o), +(73,-89,c), +(73,-65,o), +(110,-34,o), +(180,0,c), +(75,0,l), +(12,-37,o), +(-11,-69,o), +(-11,-111,c), +(-11,-153,o), +(23,-185,o), +(88,-185,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-124,0); +ref = ogonekcomb; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(12,-37,o), +(-11,-69,o), +(-11,-111,c), +(-11,-153,o), +(23,-185,o), +(88,-185,cs), +(117,-185,o), +(152,-176,o), +(180,-165,c), +(171,-84,l), +(148,-94,o), +(114,-106,o), +(94,-106,c), +(81,-106,o), +(73,-101,o), +(73,-89,c), +(73,-65,o), +(110,-34,o), +(180,0,c), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 255; +} +); +unicode = 302; +}, +{ +color = 10; +glyphname = Itilde; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = I; +}, +{ +pos = (-111,0); +ref = tildecomb.case; +} +); +width = 279; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(36,735,l), +(37,757,o), +(49,773,o), +(70,773,c), +(101,773,o), +(131,735,o), +(188,735,c), +(245,735,o), +(281,777,o), +(288,845,c), +(220,845,l), +(219,823,o), +(207,807,o), +(186,807,c), +(156,807,o), +(125,845,o), +(68,845,c), +(11,845,o), +(-25,803,o), +(-32,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = tildecomb.case; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-122,0); +ref = tildecomb.case; +} +); +width = 255; +} +); +unicode = 296; +}, +{ +color = 6; +glyphname = J; +kernLeft = J; +kernRight = U; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (457,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(437,-14,o), +(535,91,o), +(535,253,c), +(535,690,l), +(380,690,l), +(380,261,l), +(380,180,o), +(341,132,o), +(270,132,c), +(210,132,o), +(169,169,o), +(162,240,c), +(12,202,l), +(35,66,o), +(130,-14,o), +(269,-14,c) +); +} +); +width = 590; +}, +{ +anchors = ( +{ +name = top; +pos = (436,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (436,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396.975,-10,o), +(490,86,o), +(490,237,c), +(490,690,l), +(385,690,l), +(385,244,l), +(385,138,o), +(333.957,87,o), +(256,87,c), +(180.704,87,o), +(137.014,136.375,o), +(124,230,c), +(21,209,l), +(41.143,67,o), +(128.429,-10,o), +(256,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(397,-10,o), +(490,86,o), +(490,237,c), +(490,690,l), +(385,690,l), +(385,244,l), +(385,138,o), +(334,87,o), +(256,87,c), +(181,87,o), +(137,136,o), +(124,230,c), +(21,209,l), +(41,67,o), +(128,-10,o), +(256,-10,c) +); +} +); +width = 560; +}, +{ +anchors = ( +{ +name = top; +pos = (436,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(41.143,67,o), +(128.429,-10,o), +(256,-10,c), +(396.975,-10,o), +(490,86,o), +(490,237,c), +(490,690,l), +(385,690,l), +(385,244,l), +(385,138,o), +(333.957,87,o), +(256,87,c), +(180.704,87,o), +(137.014,136.375,o), +(124,230,c), +(21,209,l) +); +} +); +width = 560; +} +); +unicode = 74; +}, +{ +color = 10; +glyphname = Jcircumflex; +kernLeft = J; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = J; +}, +{ +pos = (207,0); +ref = circumflexcomb.case; +} +); +width = 590; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (436,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396.975,-10,o), +(490,86,o), +(490,237,c), +(490,690,l), +(385,690,l), +(385,244,l), +(385,138,o), +(333.957,87,o), +(256,87,c), +(180.704,87,o), +(137.014,136.375,o), +(124,230,c), +(21,209,l), +(41.143,67,o), +(128.429,-10,o), +(256,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(619,735,l), +(505,845,l), +(371,845,l), +(520,735,l) +); +}, +{ +closed = 1; +nodes = ( +(352,735,l), +(501,845,l), +(367,845,l), +(253,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = J; +}, +{ +pos = (186,0); +ref = circumflexcomb.case; +} +); +width = 560; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = J; +}, +{ +pos = (186,0); +ref = circumflexcomb.case; +} +); +width = 560; +} +); +unicode = 308; +}, +{ +color = 6; +glyphname = K; +kernLeft = H; +kernRight = X; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(639,690,l), +(456,690,l), +(178,357,l), +(178,153,l) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(657,0,l), +(367,421,l), +(269,301,l), +(470,0,l) +); +} +); +width = 657; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(609,690,l), +(485,690,l), +(153,309,l), +(153,173,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(628,0,l), +(343,403,l), +(275,329,l), +(501,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(609,690,l), +(485,690,l), +(153,309,l), +(153,173,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(628,0,l), +(343,403,l), +(275,329,l), +(501,0,l) +); +} +); +width = 641; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(275,329,l), +(501,0,l), +(628,0,l), +(343,403,l) +); +}, +{ +closed = 1; +nodes = ( +(153,173,l), +(609,690,l), +(485,690,l), +(153,309,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 641; +} +); +unicode = 75; +}, +{ +color = 10; +glyphname = Kcommaaccent; +kernLeft = H; +kernRight = X; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = K; +}, +{ +pos = (187,0); +ref = commaaccentcomb; +} +); +width = 657; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(609,690,l), +(485,690,l), +(153,309,l), +(153,173,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(628,0,l), +(343,403,l), +(275,329,l), +(501,0,l) +); +}, +{ +closed = 1; +nodes = ( +(353,-275,l), +(394,-72,l), +(290,-72,l), +(290,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = K; +}, +{ +pos = (196,0); +ref = commaaccentcomb; +} +); +width = 641; +} +); +unicode = 310; +}, +{ +color = 6; +glyphname = L; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = top; +pos = (139,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(515,0,l), +(515,145,l), +(130,145,l), +(130,0,l) +); +} +); +width = 545; +}, +{ +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (128,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,96,l), +(125,96,l), +(125,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,96,l), +(125,96,l), +(125,0,l) +); +} +); +width = 539; +}, +{ +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (128,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,0,l), +(510,0,l), +(510,96,l), +(125,96,l) +); +} +); +width = 539; +} +); +unicode = 76; +}, +{ +color = 10; +glyphname = Lacute; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +pos = (-111,0); +ref = acutecomb.case; +} +); +width = 545; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(161,735,l), +(298,845,l), +(167,845,l), +(67,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = L; +}, +{ +pos = (-122,0); +ref = acutecomb.case; +} +); +width = 539; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = L; +}, +{ +pos = (-122,0); +ref = acutecomb.case; +} +); +width = 539; +} +); +unicode = 313; +}, +{ +color = 10; +glyphname = Lcaron; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 13:43:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +pos = (263,-26); +ref = caroncomb.alt; +} +); +width = 545; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(398,417,l), +(442,690,l), +(338,690,l), +(338,417,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = L; +}, +{ +pos = (251,-25); +ref = caroncomb.alt; +} +); +width = 539; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,417,l), +(398,417,l), +(442,690,l), +(338,690,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,0,l), +(510,0,l), +(510,96,l), +(125,96,l) +); +} +); +width = 540; +} +); +unicode = 317; +}, +{ +color = 10; +glyphname = Lcommaaccent; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +pos = (138,0); +ref = commaaccentcomb; +} +); +width = 545; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (302,0); +}, +{ +name = top; +pos = (128,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(318,-275,l), +(359,-72,l), +(255,-72,l), +(255,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = L; +}, +{ +pos = (161,0); +ref = commaaccentcomb; +} +); +width = 539; +} +); +unicode = 315; +}, +{ +color = 10; +glyphname = Ldot; +kernLeft = H; +lastChange = "2024-03-21 13:43:13 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = L; +}, +{ +pos = (254,0); +ref = periodcentered.loclCAT.case; +} +); +width = 545; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,96,l), +(125,96,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(431,271,o), +(458,299,o), +(458,337,cs), +(458,376,o), +(431,404,o), +(393,404,cs), +(355,404,o), +(328,376,o), +(328,337,cs), +(328,299,o), +(355,271,o), +(393,271,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = L; +}, +{ +pos = (283,-10); +ref = periodcentered.loclCAT.case; +} +); +width = 539; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(125,0,l), +(510,0,l), +(510,96,l), +(125,96,l) +); +}, +{ +closed = 1; +nodes = ( +(431,271,o), +(458,299,o), +(458,337,cs), +(458,376,o), +(431,404,o), +(393,404,cs), +(355,404,o), +(328,376,o), +(328,337,cs), +(328,299,o), +(355,271,o), +(393,271,cs) +); +} +); +width = 538; +} +); +unicode = 319; +}, +{ +color = 6; +glyphname = Lslash; +kernLeft = H; +kernRight = L; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(410,383,l), +(410,517,l), +(10,314,l), +(10,180,l) +); +}, +{ +closed = 1; +nodes = ( +(525,0,l), +(525,145,l), +(140,145,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(227,0,l), +(227,690,l), +(72,690,l), +(72,0,l) +); +} +); +width = 555; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(375,392,l), +(375,493,l), +(20,313,l), +(20,212,l) +); +}, +{ +closed = 1; +nodes = ( +(525,0,l), +(525,96,l), +(140,96,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(375,392,l), +(375,493,l), +(20,313,l), +(20,212,l) +); +}, +{ +closed = 1; +nodes = ( +(525,0,l), +(525,96,l), +(140,96,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +} +); +width = 553; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,212,l), +(375,392,l), +(375,493,l), +(20,313,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(195,690,l), +(90,690,l), +(90,0,l) +); +}, +{ +closed = 1; +nodes = ( +(140,0,l), +(525,0,l), +(525,96,l), +(140,96,l) +); +} +); +width = 553; +} +); +unicode = 321; +}, +{ +color = 6; +glyphname = M; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(476,0,l), +(333,690,l), +(179,690,l), +(334,0,l) +); +}, +{ +closed = 1; +nodes = ( +(209,0,l), +(209,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(555,0,l), +(707,690,l), +(559,690,l), +(418,0,l) +); +}, +{ +closed = 1; +nodes = ( +(832,0,l), +(832,690,l), +(677,690,l), +(677,0,l) +); +} +); +width = 894; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(471,0,l), +(241,690,l), +(139,690,l), +(368,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(501,0,l), +(714,690,l), +(615,690,l), +(408,0,l) +); +}, +{ +closed = 1; +nodes = ( +(787,0,l), +(787,690,l), +(682,690,l), +(682,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(471,0,l), +(241,690,l), +(139,690,l), +(368,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(501,0,l), +(714,690,l), +(615,690,l), +(408,0,l) +); +}, +{ +closed = 1; +nodes = ( +(787,0,l), +(787,690,l), +(682,690,l), +(682,0,l) +); +} +); +width = 862; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(139,690,l), +(368,0,l), +(471,0,l), +(241,690,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(408,0,l), +(501,0,l), +(714,690,l), +(615,690,l) +); +}, +{ +closed = 1; +nodes = ( +(787,0,l), +(787,690,l), +(682,690,l), +(682,0,l) +); +} +); +width = 862; +} +); +unicode = 77; +}, +{ +color = 6; +glyphname = N; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (358,0); +}, +{ +name = top; +pos = (358,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(319,690,l), +(161,690,l), +(401,0,l) +); +}, +{ +closed = 1; +nodes = ( +(209,0,l), +(209,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(658,0,l), +(658,690,l), +(511,690,l), +(511,0,l) +); +} +); +width = 720; +}, +{ +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +} +); +width = 705; +}, +{ +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,690,l), +(488,0,l), +(599,0,l), +(217,690,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +} +); +width = 705; +} +); +unicode = 78; +}, +{ +color = 10; +glyphname = Nacute; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (108,0); +ref = acutecomb.case; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +}, +{ +closed = 1; +nodes = ( +(388,735,l), +(525,845,l), +(394,845,l), +(294,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = N; +}, +{ +pos = (105,0); +ref = acutecomb.case; +} +); +width = 705; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = N; +}, +{ +pos = (105,0); +ref = acutecomb.case; +} +); +width = 705; +} +); +unicode = 323; +}, +{ +color = 10; +glyphname = Ncaron; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (108,0); +ref = caroncomb.case; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +}, +{ +closed = 1; +nodes = ( +(424,735,l), +(538,845,l), +(439,845,l), +(290,735,l) +); +}, +{ +closed = 1; +nodes = ( +(420,735,l), +(271,845,l), +(172,845,l), +(286,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = N; +}, +{ +pos = (105,0); +ref = caroncomb.case; +} +); +width = 705; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = N; +}, +{ +pos = (105,0); +ref = caroncomb.case; +} +); +width = 705; +} +); +unicode = 327; +}, +{ +color = 10; +glyphname = Ncommaaccent; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (214,0); +ref = commaaccentcomb; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +}, +{ +closed = 1; +nodes = ( +(371,-275,l), +(412,-72,l), +(308,-72,l), +(308,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = N; +}, +{ +pos = (214,0); +ref = commaaccentcomb; +} +); +width = 705; +} +); +unicode = 325; +}, +{ +color = 6; +glyphname = Nhookleft; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(170,690,l), +(70,690,l), +(70,-7,l), +(70,-70,o), +(45,-94,o), +(-12,-94,c), +(-29,-94,o), +(-50,-90,o), +(-68,-83,c), +(-68,-175,l), +(-45,-182,o), +(-22,-185,o), +(6,-185,c), +(112,-185,o), +(170,-123,o), +(170,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(101,690,l), +(483,0,l), +(594,0,l), +(212,690,l) +); +}, +{ +closed = 1; +nodes = ( +(625,0,l), +(625,690,l), +(525,690,l), +(525,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(319,690,l), +(161,690,l), +(401,0,l) +); +}, +{ +closed = 1; +nodes = ( +(140,-190,o), +(209,-125,o), +(209,4,c), +(209,690,l), +(62,690,l), +(62,9,l), +(62,-33,o), +(38,-54,o), +(-8,-54,c), +(-31,-54,o), +(-51,-49,o), +(-71,-42,c), +(-71,-175,l), +(-43,-184,o), +(-15,-190,o), +(23,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(658,0,l), +(658,690,l), +(511,690,l), +(511,0,l) +); +} +); +width = 720; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(117,-185,o), +(175,-123,o), +(175,-10,c), +(175,690,l), +(75,690,l), +(75,-7,l), +(75,-70,o), +(50,-94,o), +(-7,-94,c), +(-24,-94,o), +(-45,-90,o), +(-63,-83,c), +(-63,-175,l), +(-40,-182,o), +(-17,-185,o), +(11,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(117,-185,o), +(175,-123,o), +(175,-10,c), +(175,690,l), +(75,690,l), +(75,-7,l), +(75,-70,o), +(50,-94,o), +(-7,-94,c), +(-24,-94,o), +(-45,-90,o), +(-63,-83,c), +(-63,-175,l), +(-40,-182,o), +(-17,-185,o), +(11,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +} +); +width = 705; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(175,690,l), +(75,690,l), +(75,-7,l), +(75,-70,o), +(50,-94,o), +(-7,-94,c), +(-24,-94,o), +(-45,-90,o), +(-63,-83,c), +(-63,-175,l), +(-40,-182,o), +(-17,-185,o), +(11,-185,c), +(117,-185,o), +(175,-123,o), +(175,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(106,690,l), +(488,0,l), +(599,0,l), +(217,690,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +} +); +width = 705; +} +); +unicode = 413; +}, +{ +color = 10; +glyphname = Ntilde; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = N; +}, +{ +pos = (108,0); +ref = tildecomb.case; +} +); +width = 720; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,0,l), +(630,690,l), +(530,690,l), +(530,0,l) +); +}, +{ +closed = 1; +nodes = ( +(263,735,l), +(264,757,o), +(276,773,o), +(297,773,c), +(328,773,o), +(358,735,o), +(415,735,c), +(472,735,o), +(508,777,o), +(515,845,c), +(447,845,l), +(446,823,o), +(434,807,o), +(413,807,c), +(383,807,o), +(352,845,o), +(295,845,c), +(238,845,o), +(202,803,o), +(195,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = N; +}, +{ +pos = (105,0); +ref = tildecomb.case; +} +); +width = 705; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = N; +}, +{ +pos = (105,0); +ref = tildecomb.case; +} +); +width = 705; +} +); +unicode = 209; +}, +{ +color = 6; +glyphname = Eng; +kernLeft = H; +kernRight = H; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(525,-70,o), +(500,-94,o), +(443,-94,c), +(426,-94,o), +(405,-90,o), +(387,-83,c), +(387,-175,l), +(410,-182,o), +(433,-185,o), +(461,-185,c), +(567,-185,o), +(625,-123,o), +(625,-10,c), +(625,690,l), +(525,690,l), +(525,-7,l) +); +}, +{ +closed = 1; +nodes = ( +(101,690,l), +(531,-15,l), +(594,60,l), +(212,690,l) +); +}, +{ +closed = 1; +nodes = ( +(170,0,l), +(170,690,l), +(70,690,l), +(70,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(319,690,l), +(161,690,l), +(401,0,l) +); +}, +{ +closed = 1; +nodes = ( +(209,0,l), +(209,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,-190,o), +(658,-125,o), +(658,4,c), +(658,690,l), +(511,690,l), +(511,9,l), +(511,-33,o), +(487,-54,o), +(441,-54,c), +(418,-54,o), +(398,-49,o), +(378,-42,c), +(378,-175,l), +(406,-184,o), +(434,-190,o), +(472,-190,c) +); +} +); +width = 720; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(572,-185,o), +(630,-123,o), +(630,-10,c), +(630,690,l), +(530,690,l), +(530,-7,l), +(530,-70,o), +(505,-94,o), +(448,-94,c), +(431,-94,o), +(410,-90,o), +(392,-83,c), +(392,-175,l), +(415,-182,o), +(438,-185,o), +(466,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(599,0,l), +(217,690,l), +(106,690,l), +(488,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(572,-185,o), +(630,-123,o), +(630,-10,c), +(630,690,l), +(530,690,l), +(530,-7,l), +(530,-70,o), +(505,-94,o), +(448,-94,c), +(431,-94,o), +(410,-90,o), +(392,-83,c), +(392,-175,l), +(415,-182,o), +(438,-185,o), +(466,-185,c) +); +} +); +width = 705; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(525,-70,o), +(500,-94,o), +(443,-94,c), +(426,-94,o), +(405,-90,o), +(387,-83,c), +(387,-175,l), +(410,-182,o), +(433,-185,o), +(461,-185,c), +(567,-185,o), +(625,-123,o), +(625,-10,c), +(625,690,l), +(525,690,l), +(525,-7,l) +); +}, +{ +closed = 1; +nodes = ( +(101,690,l), +(531,-15,l), +(594,60,l), +(212,690,l) +); +}, +{ +closed = 1; +nodes = ( +(170,0,l), +(170,690,l), +(70,690,l), +(70,0,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,-70,o), +(505,-94,o), +(448,-94,c), +(431,-94,o), +(410,-90,o), +(392,-83,c), +(392,-175,l), +(415,-182,o), +(438,-185,o), +(466,-185,c), +(572,-185,o), +(630,-123,o), +(630,-10,c), +(630,690,l), +(530,690,l), +(530,-7,l) +); +}, +{ +closed = 1; +nodes = ( +(106,690,l), +(488,0,l), +(599,0,l), +(217,690,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 705; +} +); +unicode = 330; +}, +{ +color = 6; +glyphname = O; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 13:35:44 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (362,0); +}, +{ +name = ogonek; +pos = (465,0); +}, +{ +name = top; +pos = (363,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(557,-14,o), +(690,119,o), +(690,345,cs), +(690,571,o), +(557,704,o), +(363,704,c), +(169,704,o), +(36,571,o), +(36,345,cs), +(36,119,o), +(169,-14,o), +(363,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(260,132,o), +(194,204,o), +(194,345,cs), +(194,486,o), +(260,558,o), +(363,558,c), +(466,558,o), +(532,486,o), +(532,345,cs), +(532,204,o), +(466,132,o), +(363,132,c) +); +} +); +width = 726; +}, +{ +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = ogonek; +pos = (429,0); +}, +{ +name = top; +pos = (348,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +width = 697; +}, +{ +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +width = 697; +} +); +unicode = 79; +}, +{ +color = 10; +glyphname = Oacute; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = acutecomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(381,735,l), +(518,845,l), +(387,845,l), +(287,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = acutecomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = acutecomb.case; +} +); +width = 697; +} +); +unicode = 211; +}, +{ +color = 10; +glyphname = Obreve; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = brevecomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(445,735,o), +(493,777,o), +(498,845,c), +(428,845,l), +(424,820,o), +(403,805,o), +(348,805,c), +(293,805,o), +(272,820,o), +(268,845,c), +(198,845,l), +(203,777,o), +(251,735,o), +(348,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = brevecomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = brevecomb.case; +} +); +width = 697; +} +); +unicode = 334; +}, +{ +color = 10; +glyphname = Ocircumflex; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = circumflexcomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(531,735,l), +(417,845,l), +(283,845,l), +(432,735,l) +); +}, +{ +closed = 1; +nodes = ( +(264,735,l), +(413,845,l), +(279,845,l), +(165,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = circumflexcomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = circumflexcomb.case; +} +); +width = 697; +} +); +unicode = 212; +}, +{ +color = 10; +glyphname = Odieresis; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = dieresiscomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(481,742,o), +(506,765,o), +(506,798,cs), +(506,832,o), +(481,855,o), +(449,855,cs), +(417,855,o), +(392,832,o), +(392,798,cs), +(392,765,o), +(417,742,o), +(449,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,742,o), +(304,765,o), +(304,798,cs), +(304,832,o), +(279,855,o), +(247,855,cs), +(215,855,o), +(190,832,o), +(190,798,cs), +(190,765,o), +(215,742,o), +(247,742,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = dieresiscomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = dieresiscomb.case; +} +); +width = 697; +} +); +unicode = 214; +}, +{ +color = 10; +glyphname = Odotbelow; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (112,0); +ref = dotbelow; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,-195,o), +(410,-170,o), +(410,-133,cs), +(410,-97,o), +(383,-72,o), +(348,-72,cs), +(313,-72,o), +(286,-97,o), +(286,-133,cs), +(286,-170,o), +(313,-195,o), +(348,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = dotbelow; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = dotbelow; +} +); +width = 697; +} +); +unicode = 7884; +}, +{ +color = 10; +glyphname = Ograve; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = gravecomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,735,l), +(309,845,l), +(178,845,l), +(315,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = gravecomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = gravecomb.case; +} +); +width = 697; +} +); +unicode = 210; +}, +{ +color = 10; +glyphname = Ohungarumlaut; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = hungarumlautcomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(469,735,l), +(606,845,l), +(481,845,l), +(381,735,l) +); +}, +{ +closed = 1; +nodes = ( +(323,735,l), +(420,845,l), +(306,845,l), +(235,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = hungarumlautcomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = hungarumlautcomb.case; +} +); +width = 697; +} +); +unicode = 336; +}, +{ +color = 10; +glyphname = Omacron; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = macroncomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(506,753,l), +(506,837,l), +(190,837,l), +(190,753,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = macroncomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = macroncomb.case; +} +); +width = 697; +} +); +unicode = 332; +}, +{ +color = 10; +glyphname = Oogonek; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 13:35:44 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(607,46,o), +(690,166,o), +(690,345,cs), +(690,571,o), +(557,704,o), +(363,704,c), +(169,704,o), +(36,571,o), +(36,345,cs), +(36,119,o), +(169,-14,o), +(363,-14,c), +(374,-14,o), +(384,-14,o), +(394,-13,c), +(390,1,l), +(288,-32,o), +(260,-69,o), +(260,-111,c), +(260,-156,o), +(299,-190,o), +(371,-190,cs), +(402,-190,o), +(438,-183,o), +(468,-170,c), +(459,-75,l), +(439,-87,o), +(413,-96,o), +(394,-96,c), +(379,-96,o), +(371,-89,o), +(371,-79,c), +(371,-60,o), +(393,-29,o), +(476,3,c) +); +}, +{ +closed = 1; +nodes = ( +(260,132,o), +(194,204,o), +(194,345,cs), +(194,486,o), +(260,558,o), +(363,558,c), +(466,558,o), +(532,486,o), +(532,345,cs), +(532,204,o), +(466,132,o), +(363,132,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (126,0); +ref = ogonekcomb; +} +); +width = 726; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(378,-185,o), +(413,-176,o), +(441,-165,c), +(432,-84,l), +(409,-94,o), +(375,-106,o), +(355,-106,c), +(342,-106,o), +(334,-101,o), +(334,-89,c), +(334,-65,o), +(367,-27,o), +(459,9,cs), +(578,55,o), +(653,173,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs), +(355,-10,o), +(362,-10,o), +(368,-9,c), +(367,0,l), +(278,-37,o), +(250,-69,o), +(250,-111,c), +(250,-153,o), +(284,-185,o), +(349,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (125,0); +ref = ogonekcomb; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(278,-37,o), +(250,-69,o), +(250,-111,c), +(250,-153,o), +(284,-185,o), +(349,-185,cs), +(378,-185,o), +(413,-176,o), +(441,-165,c), +(432,-84,l), +(409,-94,o), +(375,-106,o), +(355,-106,c), +(342,-106,o), +(334,-101,o), +(334,-89,c), +(334,-65,o), +(367,-27,o), +(459,9,cs), +(578,55,o), +(653,173,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs), +(355,-10,o), +(362,-10,o), +(368,-9,c), +(367,0,l) +); +} +); +width = 697; +} +); +unicode = 490; +}, +{ +color = 6; +glyphname = Oslash; +kernLeft = C; +kernRight = D; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (363,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(163,0,l), +(726,690,l), +(563,690,l), +(0,0,l) +); +}, +{ +closed = 1; +nodes = ( +(557,-14,o), +(690,119,o), +(690,345,cs), +(690,571,o), +(557,704,o), +(363,704,c), +(169,704,o), +(36,571,o), +(36,345,cs), +(36,119,o), +(169,-14,o), +(363,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(260,132,o), +(194,204,o), +(194,345,cs), +(194,486,o), +(260,558,o), +(363,558,c), +(466,558,o), +(532,486,o), +(532,345,cs), +(532,204,o), +(466,132,o), +(363,132,c) +); +} +); +width = 726; +}, +{ +anchors = ( +{ +name = top; +pos = (348,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(113,0,l), +(693,690,l), +(584,690,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(113,0,l), +(693,690,l), +(584,690,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +width = 697; +}, +{ +anchors = ( +{ +name = top; +pos = (348,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(113,0,l), +(693,690,l), +(584,690,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +width = 697; +} +); +unicode = 216; +}, +{ +color = 10; +glyphname = Oslashacute; +kernLeft = C; +kernRight = D; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Oslash; +}, +{ +pos = (113,0); +ref = acutecomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(113,0,l), +(693,690,l), +(584,690,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(381,735,l), +(518,845,l), +(387,845,l), +(287,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Oslash; +}, +{ +pos = (98,0); +ref = acutecomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Oslash; +}, +{ +pos = (98,0); +ref = acutecomb.case; +} +); +width = 697; +} +); +unicode = 510; +}, +{ +color = 10; +glyphname = Otilde; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = O; +}, +{ +pos = (113,0); +ref = tildecomb.case; +} +); +width = 726; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (348,0); +}, +{ +name = top; +pos = (348,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,735,l), +(257,757,o), +(269,773,o), +(290,773,c), +(321,773,o), +(351,735,o), +(408,735,c), +(465,735,o), +(501,777,o), +(508,845,c), +(440,845,l), +(439,823,o), +(427,807,o), +(406,807,c), +(376,807,o), +(345,845,o), +(288,845,c), +(231,845,o), +(195,803,o), +(188,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = tildecomb.case; +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = O; +}, +{ +pos = (98,0); +ref = tildecomb.case; +} +); +width = 697; +} +); +unicode = 213; +}, +{ +color = 6; +glyphname = OE; +kernLeft = O; +kernRight = E; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(513,0,l), +(513,145,l), +(391,145,l), +(269,145,o), +(194,215,o), +(194,345,cs), +(194,476,o), +(269,545,o), +(391,545,c), +(513,545,l), +(513,690,l), +(381,690,l), +(175,690,o), +(36,563,o), +(36,345,cs), +(36,128,o), +(175,0,o), +(381,0,c) +); +}, +{ +closed = 1; +nodes = ( +(973,0,l), +(973,145,l), +(546,145,l), +(546,0,l) +); +}, +{ +closed = 1; +nodes = ( +(633,0,l), +(633,690,l), +(478,690,l), +(478,0,l) +); +}, +{ +closed = 1; +nodes = ( +(926,282,l), +(926,419,l), +(546,419,l), +(546,282,l) +); +}, +{ +closed = 1; +nodes = ( +(969,545,l), +(969,690,l), +(546,690,l), +(546,545,l) +); +} +); +width = 1009; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,96,l), +(365,96,l), +(233,96,o), +(153,185,o), +(153,345,cs), +(153,506,o), +(233,594,o), +(365,594,c), +(505,594,l), +(505,690,l), +(360,690,l), +(170,690,o), +(44,560,o), +(44,345,cs), +(44,131,o), +(170,0,o), +(360,0,c) +); +}, +{ +closed = 1; +nodes = ( +(954,0,l), +(954,96,l), +(534,96,l), +(534,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,0,l), +(589,690,l), +(484,690,l), +(484,0,l) +); +}, +{ +closed = 1; +nodes = ( +(889,306,l), +(889,402,l), +(534,402,l), +(534,306,l) +); +}, +{ +closed = 1; +nodes = ( +(949,594,l), +(949,690,l), +(534,690,l), +(534,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,96,l), +(365,96,l), +(233,96,o), +(153,185,o), +(153,345,cs), +(153,506,o), +(233,594,o), +(365,594,c), +(505,594,l), +(505,690,l), +(360,690,l), +(170,690,o), +(44,560,o), +(44,345,cs), +(44,131,o), +(170,0,o), +(360,0,c) +); +}, +{ +closed = 1; +nodes = ( +(954,0,l), +(954,96,l), +(534,96,l), +(534,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,0,l), +(589,690,l), +(484,690,l), +(484,0,l) +); +}, +{ +closed = 1; +nodes = ( +(889,306,l), +(889,402,l), +(534,402,l), +(534,306,l) +); +}, +{ +closed = 1; +nodes = ( +(949,594,l), +(949,690,l), +(534,690,l), +(534,594,l) +); +} +); +width = 1000; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(589,0,l), +(589,690,l), +(484,690,l), +(484,0,l) +); +}, +{ +closed = 1; +nodes = ( +(534,306,l), +(889,306,l), +(889,402,l), +(534,402,l) +); +}, +{ +closed = 1; +nodes = ( +(534,0,l), +(954,0,l), +(954,96,l), +(534,96,l) +); +}, +{ +closed = 1; +nodes = ( +(534,594,l), +(949,594,l), +(949,690,l), +(534,690,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,96,l), +(365,96,l), +(233,96,o), +(153,185,o), +(153,345,cs), +(153,506,o), +(233,594,o), +(365,594,c), +(505,594,l), +(505,690,l), +(360,690,l), +(170,690,o), +(44,560,o), +(44,345,cs), +(44,131,o), +(170,0,o), +(360,0,c) +); +} +); +width = 1000; +} +); +unicode = 338; +}, +{ +color = 6; +glyphname = P; +kernLeft = H; +kernRight = P; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(341,213,l), +(519,213,o), +(612,307,o), +(612,452,cs), +(612,596,o), +(519,690,o), +(341,690,c), +(130,690,l), +(130,545,l), +(332,545,l), +(419,545,o), +(454,512,o), +(454,452,cs), +(454,391,o), +(419,358,o), +(332,358,c), +(130,358,l), +(130,213,l) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +} +); +width = 632; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(329,240,l), +(483,240,o), +(584,325,o), +(584,465,cs), +(584,605,o), +(483,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(425,594,o), +(475,552.237,o), +(475,465,cs), +(475,378.691,o), +(425,336,o), +(319,336,c), +(125,336,l), +(125,240,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,240,l), +(483,240,o), +(584,325,o), +(584,465,cs), +(584,605,o), +(483,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(425,594,o), +(475,552,o), +(475,465,cs), +(475,379,o), +(425,336,o), +(319,336,c), +(125,336,l), +(125,240,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 613; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(483,240,o), +(584,325,o), +(584,465,cs), +(584,605,o), +(483,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(425,594,o), +(475,552.237,o), +(475,465,cs), +(475,378.691,o), +(425,336,o), +(319,336,c), +(125,336,l), +(125,240,l), +(329,240,l) +); +} +); +width = 613; +} +); +unicode = 80; +}, +{ +color = 6; +glyphname = Thorn; +kernLeft = H; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(341,110,l), +(519,110,o), +(612,204,o), +(612,348,cs), +(612,493,o), +(519,587,o), +(341,587,c), +(130,587,l), +(130,442,l), +(332,442,l), +(419,442,o), +(454,409,o), +(454,348,cs), +(454,287,o), +(419,254,o), +(332,254,c), +(130,254,l), +(130,110,l) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +} +); +width = 632; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(329,125,l), +(483,125,o), +(584,210,o), +(584,350,cs), +(584,490,o), +(483,575,o), +(329,575,c), +(125,575,l), +(125,479,l), +(319,479,l), +(425,479,o), +(475,437,o), +(475,350,cs), +(475,264,o), +(425,221,o), +(319,221,c), +(125,221,l), +(125,125,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,125,l), +(483,125,o), +(584,210,o), +(584,350,cs), +(584,490,o), +(483,575,o), +(329,575,c), +(125,575,l), +(125,479,l), +(319,479,l), +(425,479,o), +(475,437,o), +(475,350,cs), +(475,264,o), +(425,221,o), +(319,221,c), +(125,221,l), +(125,125,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +} +); +width = 614; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(483,125,o), +(584,210,o), +(584,350,cs), +(584,490,o), +(483,575,o), +(329,575,c), +(125,575,l), +(125,479,l), +(319,479,l), +(425,479,o), +(475,437,o), +(475,350,cs), +(475,264,o), +(425,221,o), +(319,221,c), +(125,221,l), +(125,125,l), +(329,125,l) +); +} +); +width = 614; +} +); +unicode = 222; +}, +{ +color = 6; +glyphname = Q; +kernLeft = O; +kernRight = O; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(557,-14,o), +(690,119,o), +(690,345,cs), +(690,571,o), +(557,704,o), +(363,704,c), +(169,704,o), +(36,571,o), +(36,345,cs), +(36,119,o), +(169,-14,o), +(363,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(643,-60,l), +(518,112,l), +(446,231,l), +(290,231,l), +(408,61,l), +(477,-60,l) +); +}, +{ +closed = 1; +nodes = ( +(260,132,o), +(194,204,o), +(194,345,cs), +(194,486,o), +(260,558,o), +(363,558,c), +(466,558,o), +(532,486,o), +(532,345,cs), +(532,204,o), +(466,132,o), +(363,132,c) +); +} +); +width = 726; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(620,-55,l), +(501,90,l), +(428,195,l), +(317,195,l), +(433,49,l), +(504,-55,l) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(620,-55,l), +(501,90,l), +(428,195,l), +(317,195,l), +(433,49,l), +(504,-55,l) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +width = 697; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(293,-105,o), +(356,-160,o), +(457,-160,c), +(491,-160,o), +(515,-157,o), +(540,-150,c), +(540,-58,l), +(521,-65,o), +(499,-69,o), +(472,-69,c), +(415,-69,o), +(391,-47,o), +(396,10,c), +(301,5,l) +); +}, +{ +closed = 1; +nodes = ( +(526,-10,o), +(649,125,o), +(649,345,cs), +(649,566,o), +(526,700,o), +(344,700,cs), +(163,700,o), +(40,566,o), +(40,345,cs), +(40,125,o), +(163,-10,o), +(344,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(224,87,o), +(149,179,o), +(149,345,cs), +(149,512,o), +(224,603,o), +(344,603,cs), +(465,603,o), +(540,512,o), +(540,345,cs), +(540,179,o), +(465,87,o), +(344,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(638,-85,l), +(402,225,l), +(291,225,l), +(522,-85,l) +); +}, +{ +closed = 1; +nodes = ( +(526,-10,o), +(649,125,o), +(649,345,cs), +(649,566,o), +(526,700,o), +(344,700,cs), +(163,700,o), +(40,566,o), +(40,345,cs), +(40,125,o), +(163,-10,o), +(344,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(224,87,o), +(149,179,o), +(149,345,cs), +(149,512,o), +(224,603,o), +(344,603,cs), +(465,603,o), +(540,512,o), +(540,345,cs), +(540,179,o), +(465,87,o), +(344,87,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(620,-55,l), +(501,90,l), +(428,195,l), +(317,195,l), +(433,49,l), +(504,-55,l) +); +}, +{ +closed = 1; +nodes = ( +(530,-10,o), +(653,125,o), +(653,345,cs), +(653,566,o), +(530,700,o), +(348,700,cs), +(167,700,o), +(44,566,o), +(44,345,cs), +(44,125,o), +(167,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,87,o), +(153,179,o), +(153,345,cs), +(153,512,o), +(228,603,o), +(348,603,cs), +(469,603,o), +(544,512,o), +(544,345,cs), +(544,179,o), +(469,87,o), +(348,87,cs) +); +} +); +width = 697; +} +); +unicode = 81; +}, +{ +color = 6; +glyphname = R; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (329,0); +}, +{ +name = top; +pos = (329,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(345,233,l), +(512,233,o), +(602,323,o), +(602,462,cs), +(602,600,o), +(512,690,o), +(345,690,c), +(130,690,l), +(130,545,l), +(336,545,l), +(412,545,o), +(444,516,o), +(444,462,cs), +(444,407,o), +(412,378,o), +(336,378,c), +(130,378,l), +(130,233,l) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(621,0,l), +(426,299,l), +(266,299,l), +(447,0,l) +); +} +); +width = 642; +}, +{ +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = top; +pos = (324,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = top; +pos = (324,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(329,260,l), +(476.961,260,o), +(574,341,o), +(574,475,cs), +(574,609,o), +(477,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(418.205,594,o), +(465,555.475,o), +(465,475,cs), +(465,395.381,o), +(418.205,356,o), +(319,356,c), +(125,356,l), +(125,260,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,0,l), +(394,299,l), +(279,299,l), +(466,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,260,l), +(477,260,o), +(574,341,o), +(574,475,cs), +(574,609,o), +(477,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(418,594,o), +(465,555,o), +(465,475,cs), +(465,395,o), +(418,356,o), +(319,356,c), +(125,356,l), +(125,260,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,0,l), +(394,299,l), +(279,299,l), +(466,0,l) +); +} +); +width = 619; +}, +{ +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = top; +pos = (324,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(589,0,l), +(394,299,l), +(279,299,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(476.961,260,o), +(574,341,o), +(574,475,cs), +(574,609,o), +(477,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(418.205,594,o), +(465,555.475,o), +(465,475,cs), +(465,395.381,o), +(418.205,356,o), +(319,356,c), +(125,356,l), +(125,260,l), +(329,260,l) +); +} +); +width = 619; +} +); +unicode = 82; +}, +{ +color = 10; +glyphname = Racute; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = R; +}, +{ +pos = (79,0); +ref = acutecomb.case; +} +); +width = 642; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = top; +pos = (324,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(329,260,l), +(476.961,260,o), +(574,341,o), +(574,475,cs), +(574,609,o), +(477,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(418.205,594,o), +(465,555.475,o), +(465,475,cs), +(465,395.381,o), +(418.205,356,o), +(319,356,c), +(125,356,l), +(125,260,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,0,l), +(394,299,l), +(279,299,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(357,735,l), +(494,845,l), +(363,845,l), +(263,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = R; +}, +{ +pos = (74,0); +ref = acutecomb.case; +} +); +width = 619; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = R; +}, +{ +pos = (74,0); +ref = acutecomb.case; +} +); +width = 619; +} +); +unicode = 340; +}, +{ +color = 10; +glyphname = Rcaron; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = R; +}, +{ +pos = (79,0); +ref = caroncomb.case; +} +); +width = 642; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = top; +pos = (324,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(329,260,l), +(476.961,260,o), +(574,341,o), +(574,475,cs), +(574,609,o), +(477,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(418.205,594,o), +(465,555.475,o), +(465,475,cs), +(465,395.381,o), +(418.205,356,o), +(319,356,c), +(125,356,l), +(125,260,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,0,l), +(394,299,l), +(279,299,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(393,735,l), +(507,845,l), +(408,845,l), +(259,735,l) +); +}, +{ +closed = 1; +nodes = ( +(389,735,l), +(240,845,l), +(141,845,l), +(255,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = R; +}, +{ +pos = (74,0); +ref = caroncomb.case; +} +); +width = 619; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = R; +}, +{ +pos = (74,0); +ref = caroncomb.case; +} +); +width = 619; +} +); +unicode = 344; +}, +{ +color = 10; +glyphname = Rcedilla; +kernLeft = H; +kernRight = R; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = R; +}, +{ +pos = (75,0); +ref = commaaccent; +} +); +width = 642; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = top; +pos = (324,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(329,260,l), +(476.961,260,o), +(574,341,o), +(574,475,cs), +(574,609,o), +(477,690,o), +(329,690,c), +(125,690,l), +(125,594,l), +(319,594,l), +(418.205,594,o), +(465,555.475,o), +(465,475,cs), +(465,395.381,o), +(418.205,356,o), +(319,356,c), +(125,356,l), +(125,260,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(589,0,l), +(394,299,l), +(279,299,l), +(466,0,l) +); +}, +{ +closed = 1; +nodes = ( +(340,-275,l), +(381,-72,l), +(277,-72,l), +(277,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = R; +}, +{ +pos = (69,0); +ref = commaaccent; +} +); +width = 619; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = R; +}, +{ +pos = (69,0); +ref = commaaccent; +} +); +width = 619; +} +); +unicode = 342; +}, +{ +color = 6; +glyphname = S; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = top; +pos = (315,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(485,-14,o), +(589,71,o), +(589,196,c), +(589,462,o), +(204,391,o), +(204,507,c), +(204,538,o), +(230,566,o), +(299,566,c), +(364,566,o), +(412,536,o), +(436,466,c), +(581,517,l), +(542,640,o), +(443,704,o), +(313,704,c), +(147,704,o), +(48,619,o), +(48,498,c), +(48,245,o), +(430,322,o), +(430,190,c), +(430,153,o), +(398,125,o), +(325,125,c), +(255,125,o), +(204,159,o), +(178,241,c), +(27,190,l), +(69,53,o), +(170,-14,o), +(316,-14,c) +); +} +); +width = 621; +}, +{ +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(553,74,o), +(553,184,c), +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572.333,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,119.64,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(553,74,o), +(553,184,c), +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,120,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c) +); +} +); +width = 592; +}, +{ +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572.333,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,119.64,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c), +(457,-10,o), +(553,74,o), +(553,184,c) +); +} +); +width = 592; +} +); +unicode = 83; +}, +{ +color = 10; +glyphname = Sacute; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (65,0); +ref = acutecomb.case; +} +); +width = 621; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(553,74,o), +(553,184,c), +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572.333,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,119.64,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(327,735,l), +(464,845,l), +(333,845,l), +(233,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = S; +}, +{ +pos = (44,0); +ref = acutecomb.case; +} +); +width = 592; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = S; +}, +{ +pos = (44,0); +ref = acutecomb.case; +} +); +width = 592; +} +); +unicode = 346; +}, +{ +color = 10; +glyphname = Scaron; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (65,0); +ref = caroncomb.case; +} +); +width = 621; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(553,74,o), +(553,184,c), +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572.333,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,119.64,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(363,735,l), +(477,845,l), +(378,845,l), +(229,735,l) +); +}, +{ +closed = 1; +nodes = ( +(359,735,l), +(210,845,l), +(111,845,l), +(225,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = S; +}, +{ +pos = (44,0); +ref = caroncomb.case; +} +); +width = 592; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = S; +}, +{ +pos = (44,0); +ref = caroncomb.case; +} +); +width = 592; +} +); +unicode = 352; +}, +{ +color = 10; +glyphname = Scedilla; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (64,0); +ref = cedillacomb; +} +); +width = 621; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(553,74,o), +(553,184,c), +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572.333,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,119.64,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(345,-185,o), +(381,-151,o), +(381,-106,cs), +(381,-57,o), +(344,-29,o), +(296,-29,c), +(308,-43,l), +(314,9,l), +(258,11,l), +(245,-73,l), +(256,-71,o), +(263,-70,o), +(274,-70,c), +(298,-70,o), +(312,-79,o), +(312,-96,c), +(312,-110,o), +(299,-119,o), +(278,-119,c), +(258,-119,o), +(242,-114,o), +(224,-105,c), +(211,-169,l), +(236,-180,o), +(261,-185,o), +(287,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = S; +}, +{ +pos = (42,0); +ref = cedillacomb; +} +); +width = 592; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = S; +}, +{ +pos = (42,0); +ref = cedilla; +} +); +width = 592; +} +); +unicode = 350; +}, +{ +color = 10; +glyphname = Scircumflex; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (65,0); +ref = circumflexcomb.case; +} +); +width = 621; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(553,74,o), +(553,184,c), +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572.333,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,119.64,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(477,735,l), +(363,845,l), +(229,845,l), +(378,735,l) +); +}, +{ +closed = 1; +nodes = ( +(210,735,l), +(359,845,l), +(225,845,l), +(111,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = S; +}, +{ +pos = (44,0); +ref = circumflexcomb.case; +} +); +width = 592; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = S; +}, +{ +pos = (44,0); +ref = circumflexcomb.case; +} +); +width = 592; +} +); +unicode = 348; +}, +{ +color = 10; +glyphname = Scommaaccent; +kernLeft = S; +kernRight = S; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = S; +}, +{ +pos = (173,0); +ref = commaaccentcomb; +} +); +width = 621; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (294,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(553,74,o), +(553,184,c), +(553,456,o), +(155,362,o), +(155,520,c), +(155,568,o), +(194,607,o), +(284,607,c), +(366,607,o), +(420,572.333,o), +(446,499,c), +(546,532,l), +(511,637,o), +(422,700,o), +(293,700,c), +(136,700,o), +(50,615,o), +(50,509,c), +(50,257,o), +(447,357,o), +(447,174,c), +(447,119,o), +(391,83,o), +(302,83,c), +(211,83,o), +(156,119.64,o), +(131,196,c), +(28,163,l), +(64,55,o), +(154,-10,o), +(294,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(310,-275,l), +(351,-72,l), +(247,-72,l), +(247,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = S; +}, +{ +pos = (153,0); +ref = commaaccentcomb; +} +); +width = 592; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = S; +}, +{ +pos = (39,0); +ref = commaaccent; +} +); +width = 592; +} +); +unicode = 536; +}, +{ +color = 6; +glyphname = Germandbls; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(385,493,o), +(353,442,o), +(353,390,c), +(353,258,o), +(536,249,o), +(536,146,c), +(536,105,o), +(496.833,80,o), +(442,80,c), +(398.396,80,o), +(365.694,94.143,o), +(321,125,c), +(286,35,l), +(327.727,8,o), +(376.944,-10,o), +(439,-10,c), +(566.505,-10,o), +(635,58,o), +(635,151,c), +(635,303,o), +(446,326,o), +(446,400,c), +(446,426,o), +(476,461,o), +(583,489,c), +(561,643,o), +(457,700,o), +(337,700,cs), +(172,700,o), +(70,596,o), +(70,426,c), +(70,0,l), +(175,0,l), +(175,416,l), +(175,539,o), +(231,603,o), +(338,603,cs), +(402,603,o), +(455,578,o), +(472,529,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(584,-14,o), +(664,58,o), +(664,159,c), +(664,313,o), +(497,333,o), +(497,394,c), +(497,419,o), +(518,439,o), +(612,471,c), +(589,622,o), +(491,704,o), +(336,704,cs), +(157,704,o), +(55,594,o), +(55,425,c), +(55,0,l), +(210,0,l), +(210,417,l), +(210,506,o), +(254,562,o), +(337,562,cs), +(389,562,o), +(425,544,o), +(445,511,c), +(384,482,o), +(350,434,o), +(350,381,c), +(350,247,o), +(515,244,o), +(515,166,c), +(515,129,o), +(487,106,o), +(440,106,c), +(406,106,o), +(372,120,o), +(338,144,c), +(288,29,l), +(334,1,o), +(385,-14,o), +(450,-14,c) +); +} +); +width = 692; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(566.505,-10,o), +(635,58,o), +(635,151,c), +(635,303,o), +(446,326,o), +(446,400,c), +(446,426,o), +(476,461,o), +(583,489,c), +(561,643,o), +(457,700,o), +(337,700,cs), +(172,700,o), +(70,596,o), +(70,426,c), +(70,0,l), +(175,0,l), +(175,416,l), +(175,539,o), +(231,603,o), +(338,603,cs), +(402,603,o), +(455,578,o), +(472,529,c), +(385,493,o), +(353,442,o), +(353,390,c), +(353,258,o), +(536,249,o), +(536,146,c), +(536,105,o), +(496.833,80,o), +(442,80,c), +(398.396,80,o), +(365.694,94.143,o), +(321,125,c), +(286,35,l), +(327.727,8,o), +(376.944,-10,o), +(439,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(567,-10,o), +(635,58,o), +(635,151,c), +(635,303,o), +(446,326,o), +(446,400,c), +(446,426,o), +(476,461,o), +(583,489,c), +(561,643,o), +(457,700,o), +(337,700,cs), +(172,700,o), +(70,596,o), +(70,426,c), +(70,0,l), +(175,0,l), +(175,416,l), +(175,539,o), +(231,603,o), +(338,603,cs), +(402,603,o), +(455,578,o), +(472,529,c), +(385,493,o), +(353,442,o), +(353,390,c), +(353,258,o), +(536,249,o), +(536,146,c), +(536,105,o), +(497,80,o), +(442,80,c), +(398,80,o), +(366,94,o), +(321,125,c), +(286,35,l), +(328,8,o), +(377,-10,o), +(439,-10,c) +); +} +); +width = 671; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,493,o), +(353,442,o), +(353,390,c), +(353,258,o), +(536,249,o), +(536,146,c), +(536,105,o), +(496.833,80,o), +(442,80,c), +(398.396,80,o), +(365.694,94.143,o), +(321,125,c), +(286,35,l), +(327.727,8,o), +(376.944,-10,o), +(439,-10,c), +(566.505,-10,o), +(635,58,o), +(635,151,c), +(635,303,o), +(446,326,o), +(446,400,c), +(446,426,o), +(476,461,o), +(583,489,c), +(561,643,o), +(457,700,o), +(337,700,cs), +(172,700,o), +(70,596,o), +(70,426,c), +(70,0,l), +(175,0,l), +(175,416,l), +(175,539,o), +(231,603,o), +(338,603,cs), +(402,603,o), +(455,578,o), +(472,529,c) +); +} +); +width = 671; +} +); +unicode = 7838; +}, +{ +color = 6; +glyphname = T; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (297,0); +}, +{ +name = top; +pos = (297,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(374,0,l), +(374,690,l), +(220,690,l), +(220,0,l) +); +}, +{ +closed = 1; +nodes = ( +(574,545,l), +(574,690,l), +(20,690,l), +(20,545,l) +); +} +); +width = 594; +}, +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(563,594,l), +(563,690,l), +(18,690,l), +(18,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(563,594,l), +(563,690,l), +(18,690,l), +(18,594,l) +); +} +); +width = 581; +}, +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(18,594,l), +(563,594,l), +(563,690,l), +(18,690,l) +); +} +); +width = 581; +} +); +unicode = 84; +}, +{ +color = 6; +glyphname = Tbar; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(85,261,l), +(490,261,l), +(490,352,l), +(85,352,l) +); +}, +{ +closed = 1; +nodes = ( +(340,0,l), +(340,690,l), +(235,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(15,594,l), +(560,594,l), +(560,690,l), +(15,690,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(374,0,l), +(374,690,l), +(220,690,l), +(220,0,l) +); +}, +{ +closed = 1; +nodes = ( +(534,246,l), +(534,367,l), +(60,367,l), +(60,246,l) +); +}, +{ +closed = 1; +nodes = ( +(574,545,l), +(574,690,l), +(20,690,l), +(20,545,l) +); +} +); +width = 594; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(493,261,l), +(493,352,l), +(88,352,l), +(88,261,l) +); +}, +{ +closed = 1; +nodes = ( +(563,594,l), +(563,690,l), +(18,690,l), +(18,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(493,261,l), +(493,352,l), +(88,352,l), +(88,261,l) +); +}, +{ +closed = 1; +nodes = ( +(563,594,l), +(563,690,l), +(18,690,l), +(18,594,l) +); +} +); +width = 581; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(88,261,l), +(493,261,l), +(493,352,l), +(88,352,l) +); +}, +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(18,594,l), +(563,594,l), +(563,690,l), +(18,690,l) +); +} +); +width = 581; +} +); +unicode = 358; +}, +{ +color = 10; +glyphname = Tcaron; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = T; +}, +{ +pos = (47,0); +ref = caroncomb.case; +} +); +width = 594; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(563,594,l), +(563,690,l), +(18,690,l), +(18,594,l) +); +}, +{ +closed = 1; +nodes = ( +(360,735,l), +(474,845,l), +(375,845,l), +(226,735,l) +); +}, +{ +closed = 1; +nodes = ( +(356,735,l), +(207,845,l), +(108,845,l), +(222,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = T; +}, +{ +pos = (41,0); +ref = caroncomb.case; +} +); +width = 581; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = T; +}, +{ +pos = (41,0); +ref = caroncomb.case; +} +); +width = 581; +} +); +unicode = 356; +}, +{ +color = 10; +glyphname = Tcedilla; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = T; +}, +{ +pos = (44,0); +ref = cedillacomb; +} +); +width = 594; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(563,594,l), +(563,690,l), +(18,690,l), +(18,594,l) +); +}, +{ +closed = 1; +nodes = ( +(342,-185,o), +(378,-151,o), +(378,-106,cs), +(378,-57,o), +(341,-29,o), +(293,-29,c), +(305,-43,l), +(311,9,l), +(255,11,l), +(242,-73,l), +(253,-71,o), +(260,-70,o), +(271,-70,c), +(295,-70,o), +(309,-79,o), +(309,-96,c), +(309,-110,o), +(296,-119,o), +(275,-119,c), +(255,-119,o), +(239,-114,o), +(221,-105,c), +(208,-169,l), +(233,-180,o), +(258,-185,o), +(284,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = T; +}, +{ +pos = (39,0); +ref = cedillacomb; +} +); +width = 581; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = T; +}, +{ +pos = (39,0); +ref = cedilla; +} +); +width = 581; +} +); +unicode = 354; +}, +{ +color = 10; +glyphname = Tcommaaccent; +kernLeft = T; +kernRight = T; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = T; +}, +{ +pos = (153,0); +ref = commaaccentcomb; +} +); +width = 594; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,l), +(343,690,l), +(238,690,l), +(238,0,l) +); +}, +{ +closed = 1; +nodes = ( +(563,594,l), +(563,690,l), +(18,690,l), +(18,594,l) +); +}, +{ +closed = 1; +nodes = ( +(307,-275,l), +(348,-72,l), +(244,-72,l), +(244,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = T; +}, +{ +pos = (150,0); +ref = commaaccentcomb; +} +); +width = 581; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = T; +}, +{ +pos = (36,0); +ref = commaaccent; +} +); +width = 581; +} +); +unicode = 538; +}, +{ +color = 6; +glyphname = U; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (346,0); +}, +{ +name = ogonek; +pos = (452,0); +}, +{ +name = top; +pos = (346,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(532,-14,o), +(638,96,o), +(638,265,c), +(638,690,l), +(486,690,l), +(486,273,l), +(486,184,o), +(437,132,o), +(347,132,cs), +(258,132,o), +(210,184,o), +(210,273,c), +(210,690,l), +(55,690,l), +(55,265,l), +(55,96,o), +(161,-14,o), +(346,-14,cs) +); +} +); +width = 693; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = ogonek; +pos = (418,0); +}, +{ +name = top; +pos = (337,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,151,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +} +); +width = 675; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs), +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l) +); +} +); +width = 675; +} +); +unicode = 85; +}, +{ +color = 10; +glyphname = Uacute; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = acutecomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(370,735,l), +(507,845,l), +(376,845,l), +(276,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = acutecomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = acutecomb.case; +} +); +width = 675; +} +); +unicode = 218; +}, +{ +color = 10; +glyphname = Ubreve; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = brevecomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(434,735,o), +(482,777,o), +(487,845,c), +(417,845,l), +(413,820,o), +(392,805,o), +(337,805,c), +(282,805,o), +(261,820,o), +(257,845,c), +(187,845,l), +(192,777,o), +(240,735,o), +(337,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = brevecomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = brevecomb.case; +} +); +width = 675; +} +); +unicode = 364; +}, +{ +color = 10; +glyphname = Ucircumflex; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = circumflexcomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(520,735,l), +(406,845,l), +(272,845,l), +(421,735,l) +); +}, +{ +closed = 1; +nodes = ( +(253,735,l), +(402,845,l), +(268,845,l), +(154,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = circumflexcomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = circumflexcomb.case; +} +); +width = 675; +} +); +unicode = 219; +}, +{ +color = 10; +glyphname = Udieresis; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = dieresiscomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(470,742,o), +(495,765,o), +(495,798,cs), +(495,832,o), +(470,855,o), +(438,855,cs), +(406,855,o), +(381,832,o), +(381,798,cs), +(381,765,o), +(406,742,o), +(438,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(268,742,o), +(293,765,o), +(293,798,cs), +(293,832,o), +(268,855,o), +(236,855,cs), +(204,855,o), +(179,832,o), +(179,798,cs), +(179,765,o), +(204,742,o), +(236,742,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = dieresiscomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = dieresiscomb.case; +} +); +width = 675; +} +); +unicode = 220; +}, +{ +color = 10; +glyphname = Udotbelow; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = dotbelow; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(372,-195,o), +(399,-170,o), +(399,-133,cs), +(399,-97,o), +(372,-72,o), +(337,-72,cs), +(302,-72,o), +(275,-97,o), +(275,-133,cs), +(275,-170,o), +(302,-195,o), +(337,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = dotbelow; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = dotbelow; +} +); +width = 675; +} +); +unicode = 7908; +}, +{ +color = 10; +glyphname = Ugrave; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = gravecomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(398,735,l), +(298,845,l), +(167,845,l), +(304,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = gravecomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = gravecomb.case; +} +); +width = 675; +} +); +unicode = 217; +}, +{ +color = 10; +glyphname = Uhungarumlaut; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = hungarumlautcomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(458,735,l), +(595,845,l), +(470,845,l), +(370,735,l) +); +}, +{ +closed = 1; +nodes = ( +(312,735,l), +(409,845,l), +(295,845,l), +(224,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = hungarumlautcomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = hungarumlautcomb.case; +} +); +width = 675; +} +); +unicode = 368; +}, +{ +color = 10; +glyphname = Umacron; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = macroncomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(495,753,l), +(495,837,l), +(179,837,l), +(179,753,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = macroncomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = macroncomb.case; +} +); +width = 675; +} +); +unicode = 362; +}, +{ +color = 10; +glyphname = Uogonek; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 13:35:59 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(374,-27,o), +(353,-60,o), +(353,-79,c), +(353,-89,o), +(361,-96,o), +(376,-96,c), +(395,-96,o), +(421,-87,o), +(441,-75,c), +(450,-170,l), +(420,-183,o), +(384,-190,o), +(353,-190,cs), +(281,-190,o), +(242,-156,o), +(242,-111,c), +(242,-69,o), +(270,-32,o), +(372,1,c), +(375,-13,l), +(366,-14,o), +(356,-14,o), +(346,-14,cs), +(161,-14,o), +(55,96,o), +(55,265,c), +(55,690,l), +(210,690,l), +(210,273,l), +(210,184,o), +(258,132,o), +(347,132,cs), +(437,132,o), +(486,184,o), +(486,273,c), +(486,690,l), +(638,690,l), +(638,265,l), +(638,134,o), +(574,38,o), +(458,2,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (113,0); +ref = ogonekcomb; +} +); +width = 693; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,-185,o), +(396,-176,o), +(424,-165,c), +(415,-84,l), +(392,-94,o), +(358,-106,o), +(338,-106,c), +(325,-106,o), +(317,-101,o), +(317,-89,c), +(317,-65,o), +(350,-27,o), +(444,7,cs), +(546,43,o), +(605,134,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,151,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs), +(342,-10,o), +(346,-10,o), +(351,-10,c), +(351,-2,l), +(261,-37,o), +(233,-69,o), +(233,-111,c), +(233,-153,o), +(267,-185,o), +(332,-185,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (114,0); +ref = ogonekcomb; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(350,-27,o), +(317,-65,o), +(317,-89,c), +(317,-101,o), +(325,-106,o), +(338,-106,c), +(358,-106,o), +(392,-94,o), +(415,-84,c), +(424,-165,l), +(396,-176,o), +(361,-185,o), +(332,-185,cs), +(267,-185,o), +(233,-153,o), +(233,-111,c), +(233,-69,o), +(261,-37,o), +(351,-2,c), +(351,-10,l), +(346,-10,o), +(342,-10,o), +(337,-10,cs), +(172,-10,o), +(70,94,o), +(70,264,c), +(70,690,l), +(175,690,l), +(175,274,l), +(175,151,o), +(231,87,o), +(338,87,cs), +(446,87,o), +(503,151,o), +(503,274,c), +(503,690,l), +(605,690,l), +(605,264,l), +(605,134,o), +(546,43,o), +(444,7,cs) +); +} +); +width = 675; +} +); +unicode = 370; +}, +{ +color = 10; +glyphname = Uring; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = ringcomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(393,735,o), +(434,769,o), +(434,821,cs), +(434,874,o), +(393,908,o), +(337,908,cs), +(281,908,o), +(240,874,o), +(240,821,cs), +(240,769,o), +(281,735,o), +(337,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(316,790,o), +(303,804,o), +(303,821,cs), +(303,839,o), +(316,853,o), +(337,853,cs), +(358,853,o), +(371,839,o), +(371,821,cs), +(371,804,o), +(358,790,o), +(337,790,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = ringcomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = ringcomb.case; +} +); +width = 675; +} +); +unicode = 366; +}, +{ +color = 10; +glyphname = Utilde; +kernLeft = U; +kernRight = U; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = U; +}, +{ +pos = (96,0); +ref = tildecomb.case; +} +); +width = 693; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (337,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(503,-10,o), +(605,94,o), +(605,264,c), +(605,690,l), +(503,690,l), +(503,274,l), +(503,151,o), +(446,87,o), +(338,87,cs), +(231,87,o), +(175,150.564,o), +(175,274,c), +(175,690,l), +(70,690,l), +(70,264,l), +(70,94,o), +(172,-10,o), +(337,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(245,735,l), +(246,757,o), +(258,773,o), +(279,773,c), +(310,773,o), +(340,735,o), +(397,735,c), +(454,735,o), +(490,777,o), +(497,845,c), +(429,845,l), +(428,823,o), +(416,807,o), +(395,807,c), +(365,807,o), +(334,845,o), +(277,845,c), +(220,845,o), +(184,803,o), +(177,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = tildecomb.case; +} +); +width = 675; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = U; +}, +{ +pos = (87,0); +ref = tildecomb.case; +} +); +width = 675; +} +); +unicode = 360; +}, +{ +color = 6; +glyphname = V; +kernLeft = V; +kernRight = V; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(377,0,l), +(165,690,l), +(0,690,l), +(221,0,l) +); +}, +{ +closed = 1; +nodes = ( +(454,0,l), +(675,690,l), +(512,690,l), +(306,0,l) +); +} +); +width = 675; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(357,0,l), +(125,690,l), +(15,690,l), +(254,0,l) +); +}, +{ +closed = 1; +nodes = ( +(406,0,l), +(645,690,l), +(538,690,l), +(311,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,0,l), +(125,690,l), +(15,690,l), +(254,0,l) +); +}, +{ +closed = 1; +nodes = ( +(406,0,l), +(645,690,l), +(538,690,l), +(311,0,l) +); +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,0,l), +(125,690,l), +(15,690,l), +(254,0,l) +); +}, +{ +closed = 1; +nodes = ( +(406,0,l), +(645,690,l), +(538,690,l), +(311,0,l) +); +} +); +width = 660; +} +); +unicode = 86; +}, +{ +color = 6; +glyphname = W; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (493,0); +}, +{ +name = top; +pos = (493,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(296,0,l), +(164,690,l), +(4,690,l), +(146,0,l) +); +}, +{ +closed = 1; +nodes = ( +(393,0,l), +(517,690,l), +(376,690,l), +(253,0,l) +); +}, +{ +closed = 1; +nodes = ( +(740,0,l), +(613,690,l), +(469,690,l), +(593,0,l) +); +}, +{ +closed = 1; +nodes = ( +(840,0,l), +(982,690,l), +(825,690,l), +(697,0,l) +); +} +); +width = 986; +}, +{ +anchors = ( +{ +name = bottom; +pos = (461,0); +}, +{ +name = top; +pos = (461,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (461,0); +}, +{ +name = top; +pos = (461,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(124,690,l), +(18,690,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(480,690,l), +(385,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(692,0,l), +(540,690,l), +(442,690,l), +(594,0,l) +); +}, +{ +closed = 1; +nodes = ( +(749,0,l), +(903,690,l), +(800,690,l), +(656,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(124,690,l), +(18,690,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(480,690,l), +(385,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(692,0,l), +(540,690,l), +(442,690,l), +(594,0,l) +); +}, +{ +closed = 1; +nodes = ( +(749,0,l), +(903,690,l), +(800,690,l), +(656,0,l) +); +} +); +width = 921; +}, +{ +anchors = ( +{ +name = bottom; +pos = (462,0); +}, +{ +name = top; +pos = (462,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(124,690,l), +(18,690,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(480,690,l), +(385,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(692,0,l), +(540,690,l), +(442,690,l), +(594,0,l) +); +}, +{ +closed = 1; +nodes = ( +(749,0,l), +(903,690,l), +(800,690,l), +(656,0,l) +); +} +); +width = 921; +} +); +unicode = 87; +}, +{ +color = 10; +glyphname = Wacute; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (243,0); +ref = acutecomb.case; +} +); +width = 986; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (461,0); +}, +{ +name = top; +pos = (461,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(124,690,l), +(18,690,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(480,690,l), +(385,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(692,0,l), +(540,690,l), +(442,690,l), +(594,0,l) +); +}, +{ +closed = 1; +nodes = ( +(749,0,l), +(903,690,l), +(800,690,l), +(656,0,l) +); +}, +{ +closed = 1; +nodes = ( +(494,735,l), +(631,845,l), +(500,845,l), +(400,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = acutecomb.case; +} +); +width = 921; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = acutecomb.case; +} +); +width = 921; +} +); +unicode = 7810; +}, +{ +color = 10; +glyphname = Wcircumflex; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (243,0); +ref = circumflexcomb.case; +} +); +width = 986; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (461,0); +}, +{ +name = top; +pos = (461,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(124,690,l), +(18,690,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(480,690,l), +(385,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(692,0,l), +(540,690,l), +(442,690,l), +(594,0,l) +); +}, +{ +closed = 1; +nodes = ( +(749,0,l), +(903,690,l), +(800,690,l), +(656,0,l) +); +}, +{ +closed = 1; +nodes = ( +(644,735,l), +(530,845,l), +(396,845,l), +(545,735,l) +); +}, +{ +closed = 1; +nodes = ( +(377,735,l), +(526,845,l), +(392,845,l), +(278,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = circumflexcomb.case; +} +); +width = 921; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = circumflexcomb.case; +} +); +width = 921; +} +); +unicode = 372; +}, +{ +color = 10; +glyphname = Wdieresis; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (243,0); +ref = dieresiscomb.case; +} +); +width = 986; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (461,0); +}, +{ +name = top; +pos = (461,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(124,690,l), +(18,690,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(480,690,l), +(385,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(692,0,l), +(540,690,l), +(442,690,l), +(594,0,l) +); +}, +{ +closed = 1; +nodes = ( +(749,0,l), +(903,690,l), +(800,690,l), +(656,0,l) +); +}, +{ +closed = 1; +nodes = ( +(594,742,o), +(619,765,o), +(619,798,cs), +(619,832,o), +(594,855,o), +(562,855,cs), +(530,855,o), +(505,832,o), +(505,798,cs), +(505,765,o), +(530,742,o), +(562,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(392,742,o), +(417,765,o), +(417,798,cs), +(417,832,o), +(392,855,o), +(360,855,cs), +(328,855,o), +(303,832,o), +(303,798,cs), +(303,765,o), +(328,742,o), +(360,742,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = dieresiscomb.case; +} +); +width = 921; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = dieresiscomb.case; +} +); +width = 921; +} +); +unicode = 7812; +}, +{ +color = 10; +glyphname = Wgrave; +kernLeft = W; +kernRight = W; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = W; +}, +{ +pos = (243,0); +ref = gravecomb.case; +} +); +width = 986; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (461,0); +}, +{ +name = top; +pos = (461,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(271,0,l), +(124,690,l), +(18,690,l), +(172,0,l) +); +}, +{ +closed = 1; +nodes = ( +(329,0,l), +(480,690,l), +(385,690,l), +(235,0,l) +); +}, +{ +closed = 1; +nodes = ( +(692,0,l), +(540,690,l), +(442,690,l), +(594,0,l) +); +}, +{ +closed = 1; +nodes = ( +(749,0,l), +(903,690,l), +(800,690,l), +(656,0,l) +); +}, +{ +closed = 1; +nodes = ( +(522,735,l), +(422,845,l), +(291,845,l), +(428,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = gravecomb.case; +} +); +width = 921; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = W; +}, +{ +pos = (211,0); +ref = gravecomb.case; +} +); +width = 921; +} +); +unicode = 7808; +}, +{ +color = 6; +glyphname = X; +kernLeft = X; +kernRight = X; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(635,0,l), +(190,690,l), +(10,690,l), +(455,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(329,251,l), +(391,330,l), +(625,690,l), +(450,690,l), +(306,456,l), +(244,376,l), +(0,0,l) +); +} +); +width = 635; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(597,0,l), +(145,690,l), +(23,690,l), +(475,0,l) +); +}, +{ +closed = 1; +nodes = ( +(132,0,l), +(311,284,l), +(351,336,l), +(587,690,l), +(468,690,l), +(300,424,l), +(259,370,l), +(13,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(597,0,l), +(145,690,l), +(23,690,l), +(475,0,l) +); +}, +{ +closed = 1; +nodes = ( +(132,0,l), +(311,284,l), +(351,336,l), +(587,690,l), +(468,690,l), +(300,424,l), +(259,370,l), +(13,0,l) +); +} +); +width = 610; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(597,0,l), +(145,690,l), +(23,690,l), +(475,0,l) +); +}, +{ +closed = 1; +nodes = ( +(311,284,l), +(351,336,l), +(587,690,l), +(468,690,l), +(300,424,l), +(259,370,l), +(13,0,l), +(132,0,l) +); +} +); +width = 610; +} +); +unicode = 88; +}, +{ +color = 6; +glyphname = Y; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (325,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(361,343,l), +(172,690,l), +(-2,690,l), +(261,220,l) +); +}, +{ +closed = 1; +nodes = ( +(396,0,l), +(396,381,l), +(242,381,l), +(242,0,l) +); +}, +{ +closed = 1; +nodes = ( +(642,690,l), +(474,690,l), +(289,343,l), +(378,221,l) +); +} +); +width = 640; +}, +{ +anchors = ( +{ +name = top; +pos = (305,690); +} +); +background = { +anchors = ( +{ +name = top; +pos = (305,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +} +); +width = 600; +}, +{ +anchors = ( +{ +name = top; +pos = (305,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(335,243,l), +(597,690,l), +(480,690,l), +(274,320,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +} +); +width = 600; +} +); +unicode = 89; +}, +{ +color = 10; +glyphname = Yacute; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (75,0); +ref = acutecomb.case; +} +); +width = 640; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (305,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +}, +{ +closed = 1; +nodes = ( +(338,735,l), +(475,845,l), +(344,845,l), +(244,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = acutecomb.case; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = acutecomb.case; +} +); +width = 600; +} +); +unicode = 221; +}, +{ +color = 10; +glyphname = Ycircumflex; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (75,0); +ref = circumflexcomb.case; +} +); +width = 640; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (305,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +}, +{ +closed = 1; +nodes = ( +(488,735,l), +(374,845,l), +(240,845,l), +(389,735,l) +); +}, +{ +closed = 1; +nodes = ( +(221,735,l), +(370,845,l), +(236,845,l), +(122,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = circumflexcomb.case; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = circumflexcomb.case; +} +); +width = 600; +} +); +unicode = 374; +}, +{ +color = 10; +glyphname = Ydieresis; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (75,0); +ref = dieresiscomb.case; +} +); +width = 640; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (305,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +}, +{ +closed = 1; +nodes = ( +(438,742,o), +(463,765,o), +(463,798,cs), +(463,832,o), +(438,855,o), +(406,855,cs), +(374,855,o), +(349,832,o), +(349,798,cs), +(349,765,o), +(374,742,o), +(406,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,742,o), +(261,765,o), +(261,798,cs), +(261,832,o), +(236,855,o), +(204,855,cs), +(172,855,o), +(147,832,o), +(147,798,cs), +(147,765,o), +(172,742,o), +(204,742,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = dieresiscomb.case; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = dieresiscomb.case; +} +); +width = 600; +} +); +unicode = 376; +}, +{ +color = 10; +glyphname = Ygrave; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (75,0); +ref = gravecomb.case; +} +); +width = 640; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (305,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +}, +{ +closed = 1; +nodes = ( +(366,735,l), +(266,845,l), +(135,845,l), +(272,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = gravecomb.case; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = gravecomb.case; +} +); +width = 600; +} +); +unicode = 7922; +}, +{ +color = 10; +glyphname = Ymacron; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (75,0); +ref = macroncomb.case; +} +); +width = 640; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (305,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +}, +{ +closed = 1; +nodes = ( +(463,753,l), +(463,837,l), +(147,837,l), +(147,753,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = macroncomb.case; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = macroncomb.case; +} +); +width = 600; +} +); +unicode = 562; +}, +{ +color = 10; +glyphname = Ytilde; +kernLeft = Y; +kernRight = Y; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Y; +}, +{ +pos = (75,0); +ref = tildecomb.case; +} +); +width = 640; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (305,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(332,320,l), +(123,690,l), +(3,690,l), +(265,243,l) +); +}, +{ +closed = 1; +nodes = ( +(352,0,l), +(352,350,l), +(247,350,l), +(247,0,l) +); +}, +{ +closed = 1; +nodes = ( +(597,690,l), +(480,690,l), +(274,320,l), +(335,243,l) +); +}, +{ +closed = 1; +nodes = ( +(213,735,l), +(214,757,o), +(226,773,o), +(247,773,c), +(278,773,o), +(308,735,o), +(365,735,c), +(422,735,o), +(458,777,o), +(465,845,c), +(397,845,l), +(396,823,o), +(384,807,o), +(363,807,c), +(333,807,o), +(302,845,o), +(245,845,c), +(188,845,o), +(152,803,o), +(145,735,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = tildecomb.case; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (55,0); +ref = tildecomb.case; +} +); +width = 600; +} +); +unicode = 7928; +}, +{ +color = 6; +glyphname = Z; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,345); +}, +{ +name = top; +pos = (309,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(592,0,l), +(592,140,l), +(238,140,l), +(580,587,l), +(580,690,l), +(40,690,l), +(40,550,l), +(366,550,l), +(25,103,l), +(25,0,l) +); +} +); +width = 617; +}, +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,345); +}, +{ +name = top; +pos = (309,690); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,345); +}, +{ +name = top; +pos = (309,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(161,52,l), +(572,638,l), +(445,638,l), +(34,52,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(584,96,l), +(74,96,l), +(34,52,l), +(34,0,l) +); +}, +{ +closed = 1; +nodes = ( +(532,594,l), +(572,638,l), +(572,690,l), +(49,690,l), +(49,594,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(584,0,l), +(584,96,l), +(192,96,l), +(572,638,l), +(572,690,l), +(49,690,l), +(49,594,l), +(414,594,l), +(34,52,l), +(34,0,l) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (314,0); +}, +{ +name = top; +pos = (314,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,594,l), +(532,594,l), +(572,638,l), +(572,690,l), +(49,690,l) +); +}, +{ +closed = 1; +nodes = ( +(34,0,l), +(584,0,l), +(584,96,l), +(74,96,l), +(34,52,l) +); +}, +{ +closed = 1; +nodes = ( +(161,52,l), +(572,638,l), +(445,638,l), +(34,52,l) +); +} +); +width = 618; +} +); +unicode = 90; +}, +{ +color = 10; +glyphname = Zacute; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = acutecomb.case; +} +); +width = 617; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,345); +}, +{ +name = top; +pos = (309,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(161,52,l), +(572,638,l), +(445,638,l), +(34,52,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(584,96,l), +(74,96,l), +(34,52,l), +(34,0,l) +); +}, +{ +closed = 1; +nodes = ( +(532,594,l), +(572,638,l), +(572,690,l), +(49,690,l), +(49,594,l) +); +}, +{ +closed = 1; +nodes = ( +(342,735,l), +(479,845,l), +(348,845,l), +(248,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = acutecomb.case; +} +); +width = 618; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = acutecomb.case; +} +); +width = 618; +} +); +unicode = 377; +}, +{ +color = 10; +glyphname = Zcaron; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = caroncomb.case; +} +); +width = 617; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,345); +}, +{ +name = top; +pos = (309,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(161,52,l), +(572,638,l), +(445,638,l), +(34,52,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(584,96,l), +(74,96,l), +(34,52,l), +(34,0,l) +); +}, +{ +closed = 1; +nodes = ( +(532,594,l), +(572,638,l), +(572,690,l), +(49,690,l), +(49,594,l) +); +}, +{ +closed = 1; +nodes = ( +(378,735,l), +(492,845,l), +(393,845,l), +(244,735,l) +); +}, +{ +closed = 1; +nodes = ( +(374,735,l), +(225,845,l), +(126,845,l), +(240,735,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = caroncomb.case; +} +); +width = 618; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = caroncomb.case; +} +); +width = 618; +} +); +unicode = 381; +}, +{ +color = 10; +glyphname = Zdotaccent; +kernLeft = Z; +kernRight = Z; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = dotaccentcomb.case; +} +); +width = 617; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = center; +pos = (309,345); +}, +{ +name = top; +pos = (309,690); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(161,52,l), +(572,638,l), +(445,638,l), +(34,52,l) +); +}, +{ +closed = 1; +nodes = ( +(584,0,l), +(584,96,l), +(74,96,l), +(34,52,l), +(34,0,l) +); +}, +{ +closed = 1; +nodes = ( +(532,594,l), +(572,638,l), +(572,690,l), +(49,690,l), +(49,594,l) +); +}, +{ +closed = 1; +nodes = ( +(344,735,o), +(371,760,o), +(371,796,cs), +(371,833,o), +(344,858,o), +(309,858,cs), +(274,858,o), +(247,833,o), +(247,796,cs), +(247,760,o), +(274,735,o), +(309,735,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = dotaccentcomb.case; +} +); +width = 618; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (59,0); +ref = dotaccentcomb.case; +} +); +width = 618; +} +); +unicode = 379; +}, +{ +color = 6; +glyphname = a; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-22 13:29:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (266,0); +}, +{ +name = ogonek; +pos = (507,0); +}, +{ +name = top; +pos = (266,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(512,0,l), +(502,39,o), +(497,78,o), +(497,118,cs), +(497,342,l), +(497,468,o), +(412,544,o), +(276,544,cs), +(152,544,o), +(64,489,o), +(36,378,c), +(179,347,l), +(191,402,o), +(224,424,o), +(267,424,c), +(311,424,o), +(348,399,o), +(348,330,c), +(348,106,ls), +(348,71,o), +(353,35,o), +(361,0,c) +); +}, +{ +closed = 1; +nodes = ( +(299,-14,o), +(382,76,o), +(382,221,c), +(348,221,l), +(348,144,o), +(286,104,o), +(228,104,c), +(194,104,o), +(178,123,o), +(178,148,c), +(178,172,o), +(193,195,o), +(244,206,cs), +(391,237,l), +(391,331,l), +(190,298,ls), +(79,280,o), +(28,214,o), +(28,135,c), +(28,45,o), +(83,-14,o), +(187,-14,c) +); +} +); +width = 550; +}, +{ +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = ogonek; +pos = (487,0); +}, +{ +name = top; +pos = (264,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(321,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +} +); +width = 537; +}, +{ +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(30,42,o), +(98,-10,o), +(187,-10,c), +(300,-10,o), +(402,79,o), +(402,221,c), +(369,221,l), +(369,124,o), +(290,69,o), +(214,69,c), +(160,69,o), +(130,96,o), +(130,135,c), +(130,177,o), +(158,206,o), +(225,222,cs), +(389,260,l), +(389,320,l), +(192,284,ls), +(87,265,o), +(30,207,o), +(30,128,c) +); +}, +{ +closed = 1; +nodes = ( +(469,463,o), +(396,540,o), +(266,540,cs), +(160,540,o), +(76.435,486,o), +(45,384,c), +(139,353,l), +(158,433,o), +(199,465,o), +(260,465,c), +(326,465,o), +(369,422,o), +(369,325,c), +(369,0,l), +(469,0,l), +(469,337,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(39,49,o), +(99,-10,o), +(191,-10,c), +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c) +); +}, +{ +closed = 1; +nodes = ( +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c), +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l) +); +} +); +width = 537; +} +); +unicode = 97; +}, +{ +color = 10; +glyphname = aacute; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (135,0); +ref = acutecomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(297,585,l), +(407,725,l), +(281,725,l), +(211,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (104,0); +ref = acutecomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (104,0); +ref = acute; +} +); +width = 537; +} +); +unicode = 225; +}, +{ +color = 10; +glyphname = abreve; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (16,0); +ref = brevecomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(357,585,o), +(402,639,o), +(404,725,c), +(334,725,l), +(333,684,o), +(309,660,o), +(264,660,c), +(219,660,o), +(195,684,o), +(194,725,c), +(124,725,l), +(126,639,o), +(171,585,o), +(264,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = brevecomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = breve; +} +); +width = 537; +} +); +unicode = 259; +}, +{ +color = 10; +glyphname = acircumflex; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (16,0); +ref = circumflexcomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(420,585,l), +(320,725,l), +(214,725,l), +(332,585,l) +); +}, +{ +closed = 1; +nodes = ( +(196,585,l), +(314,725,l), +(208,725,l), +(108,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = circumflexcomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = circumflex; +} +); +width = 537; +} +); +unicode = 226; +}, +{ +color = 10; +glyphname = adieresis; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (16,0); +ref = dieresiscomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(387,602,o), +(412,625,o), +(412,658,cs), +(412,692,o), +(387,715,o), +(355,715,cs), +(323,715,o), +(298,692,o), +(298,658,cs), +(298,625,o), +(323,602,o), +(355,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(205,602,o), +(230,625,o), +(230,658,cs), +(230,692,o), +(205,715,o), +(173,715,cs), +(141,715,o), +(116,692,o), +(116,658,cs), +(116,625,o), +(141,602,o), +(173,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = dieresiscomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = dieresis; +} +); +width = 537; +} +); +unicode = 228; +}, +{ +color = 10; +glyphname = adotbelow; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (16,0); +ref = dotbelow; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(299,-195,o), +(326,-170,o), +(326,-133,cs), +(326,-97,o), +(299,-72,o), +(264,-72,cs), +(229,-72,o), +(202,-97,o), +(202,-133,cs), +(202,-170,o), +(229,-195,o), +(264,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = dotbelow; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = dotbelow; +} +); +width = 537; +} +); +unicode = 7841; +}, +{ +color = 10; +glyphname = agrave; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (16,0); +ref = gravecomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(317,585,l), +(247,725,l), +(121,725,l), +(231,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = gravecomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = grave; +} +); +width = 537; +} +); +unicode = 224; +}, +{ +color = 10; +glyphname = amacron; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (16,0); +ref = macroncomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(402,621,l), +(402,705,l), +(126,705,l), +(126,621,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = macroncomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = macron; +} +); +width = 537; +} +); +unicode = 257; +}, +{ +color = 10; +glyphname = aogonek; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:36:12 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (168,0); +ref = ogonekcomb; +} +); +width = 550; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(321,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(424,-185,o), +(459,-176,o), +(487,-165,c), +(478,-84,l), +(455,-94,o), +(421,-106,o), +(401,-106,c), +(388,-106,o), +(380,-101,o), +(380,-89,c), +(380,-65,o), +(417,-34,o), +(487,0,c), +(385,0,l), +(319,-37,o), +(296,-69,o), +(296,-111,c), +(296,-153,o), +(330,-185,o), +(395,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (183,0); +ref = ogonekcomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,-37,o), +(296,-69,o), +(296,-111,c), +(296,-153,o), +(330,-185,o), +(395,-185,cs), +(424,-185,o), +(459,-176,o), +(487,-165,c), +(478,-84,l), +(455,-94,o), +(421,-106,o), +(401,-106,c), +(388,-106,o), +(380,-101,o), +(380,-89,c), +(380,-65,o), +(417,-34,o), +(487,0,c), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(39,49,o), +(99,-10,o), +(191,-10,c), +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c) +); +}, +{ +closed = 1; +nodes = ( +(472,465,o), +(396,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(321,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c), +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l) +); +} +); +width = 537; +} +); +unicode = 261; +}, +{ +color = 10; +glyphname = aring; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (116,0); +ref = ringcomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(320,575,o), +(361,611,o), +(361,666,cs), +(361,722,o), +(320,758,o), +(264,758,cs), +(208,758,o), +(167,722,o), +(167,666,cs), +(167,611,o), +(208,575,o), +(264,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,630,o), +(230,646,o), +(230,666,cs), +(230,687,o), +(243,703,o), +(264,703,cs), +(285,703,o), +(298,687,o), +(298,666,cs), +(298,646,o), +(285,630,o), +(264,630,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (114,0); +ref = ringcomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (114,0); +ref = ring; +} +); +width = 537; +} +); +unicode = 229; +}, +{ +color = 10; +glyphname = aringacute; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:42 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (116,0); +ref = ringcomb; +}, +{ +pos = (16,53); +ref = acutecomb.case; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(320,575,o), +(361,611,o), +(361,666,cs), +(361,722,o), +(320,758,o), +(264,758,cs), +(208,758,o), +(167,722,o), +(167,666,cs), +(167,611,o), +(208,575,o), +(264,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,630,o), +(230,646,o), +(230,666,cs), +(230,687,o), +(243,703,o), +(264,703,cs), +(285,703,o), +(298,687,o), +(298,666,cs), +(298,646,o), +(285,630,o), +(264,630,cs) +); +}, +{ +closed = 1; +nodes = ( +(309,775,l), +(409,875,l), +(298,875,l), +(228,775,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (114,0); +ref = ringcomb; +}, +{ +pos = (14,41); +ref = acutecomb.case; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +} +); +width = 537; +} +); +unicode = 507; +}, +{ +color = 10; +glyphname = atilde; +kernLeft = a; +kernRight = n; +lastChange = "2024-03-21 13:49:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = a; +}, +{ +pos = (16,0); +ref = tildecomb; +} +); +width = 550; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (264,0); +}, +{ +name = top; +pos = (264,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(487,0,l), +(477,39,o), +(472,78,o), +(472,118,cs), +(472,342,l), +(472,465,o), +(396.177,540,o), +(264,540,cs), +(160,540,o), +(78,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(320.752,452,o), +(372,417,o), +(372,330,c), +(372,106,ls), +(372,71,o), +(377,35,o), +(385,0,c) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(405,79,o), +(405,221,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(167,203,o), +(238,217,cs), +(392,248,l), +(392,325,l), +(205,293,ls), +(91,273,o), +(39,211,o), +(39,131,c), +(39,49,o), +(99,-10,o), +(191,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(182,585,l), +(183,624,o), +(192,642,o), +(211,642,c), +(243,642,o), +(263,585,o), +(322,585,c), +(375,585,o), +(408,639,o), +(414,725,c), +(346,725,l), +(345,686,o), +(336,668,o), +(317,668,c), +(286,668,o), +(265,725,o), +(206,725,c), +(153,725,o), +(120,671,o), +(114,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = tildecomb; +} +); +width = 537; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = a; +}, +{ +pos = (14,0); +ref = tilde; +} +); +width = 537; +} +); +unicode = 227; +}, +{ +color = 6; +glyphname = ae; +kernLeft = a; +kernRight = o; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (435,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(735,-14,o), +(814,48,o), +(837,140,c), +(695,176,l), +(681,133,o), +(647,113,o), +(603,113,c), +(535,113,o), +(494,161,o), +(494,265,c), +(494,376,o), +(533,419,o), +(596,419,c), +(662,419,o), +(699,377,o), +(699,265,c), +(740,323,l), +(424,323,l), +(424,223,l), +(849,223,l), +(850,237,o), +(851,250,o), +(851,265,c), +(851,434,o), +(750,544,o), +(605,544,c), +(470,544,o), +(374,433,o), +(374,265,c), +(374,98,o), +(472,-14,o), +(613,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(345,-14,o), +(439,72,o), +(439,210,c), +(344,221,l), +(344,144,o), +(286,104,o), +(228,104,c), +(194,104,o), +(178,123,o), +(178,148,c), +(178,172,o), +(192,195,o), +(244,206,cs), +(387,235,l), +(387,329,l), +(190,297,ls), +(78,279,o), +(28,214,o), +(28,135,c), +(28,46,o), +(90,-14,o), +(206,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(465,179,l), +(465,342,l), +(465,468,o), +(388,544,o), +(265,544,cs), +(146,544,o), +(63,489,o), +(36,378,c), +(179,347,l), +(191,402,o), +(222,424,o), +(265,424,c), +(309,424,o), +(344,399,o), +(344,330,c), +(344,167,l) +); +} +); +width = 879; +}, +{ +anchors = ( +{ +name = top; +pos = (435,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (435,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(718,-10,o), +(797,41,o), +(831,131,c), +(738,168,l), +(713,108,o), +(671,84,o), +(612,84,c), +(525,84,o), +(472,141,o), +(472,265,c), +(472,398,o), +(527,454,o), +(610,454,c), +(688,454,o), +(739,398,o), +(739,265,c), +(768,310,l), +(450,310,l), +(450,231,l), +(842,231,l), +(843,247,o), +(843,254,o), +(843,265,c), +(843,438,o), +(749,540,o), +(615,540,c), +(482,540,o), +(388,438,o), +(388,265,c), +(388,98,o), +(480,-10,o), +(617,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(339,-10,o), +(431,73,o), +(431,206,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(166,205,o), +(238,212,cs), +(392,228,l), +(392,305,l), +(205,288,ls), +(90,278,o), +(39,212,o), +(39,132,c), +(39,50,o), +(101,-10,o), +(207,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(452,192,l), +(452,342,l), +(452,465,o), +(381.481,540,o), +(259,540,cs), +(157.419,540,o), +(77.326,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(321,452,o), +(372,417,o), +(372,330,c), +(372,175,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(718,-10,o), +(797,41,o), +(831,131,c), +(738,168,l), +(713,108,o), +(671,84,o), +(612,84,c), +(525,84,o), +(472,141,o), +(472,265,c), +(472,398,o), +(527,454,o), +(610,454,c), +(688,454,o), +(739,398,o), +(739,265,c), +(768,310,l), +(450,310,l), +(450,231,l), +(842,231,l), +(843,247,o), +(843,254,o), +(843,265,c), +(843,438,o), +(749,540,o), +(615,540,c), +(482,540,o), +(388,438,o), +(388,265,c), +(388,98,o), +(480,-10,o), +(617,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(339,-10,o), +(431,73,o), +(431,206,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(166,205,o), +(238,212,cs), +(392,228,l), +(392,305,l), +(205,288,ls), +(90,278,o), +(39,212,o), +(39,132,c), +(39,50,o), +(101,-10,o), +(207,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(452,192,l), +(452,342,l), +(452,465,o), +(381,540,o), +(259,540,cs), +(157,540,o), +(77,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(321,452,o), +(372,417,o), +(372,330,c), +(372,175,l) +); +} +); +width = 881; +}, +{ +anchors = ( +{ +name = top; +pos = (435,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(843,247,o), +(843,254,o), +(843,265,c), +(843,438,o), +(749,540,o), +(615,540,c), +(482,540,o), +(388,438,o), +(388,265,c), +(388,98,o), +(480,-10,o), +(617,-10,c), +(718,-10,o), +(797,41,o), +(831,131,c), +(738,168,l), +(713,108,o), +(671,84,o), +(612,84,c), +(525,84,o), +(472,141,o), +(472,265,c), +(472,398,o), +(527,454,o), +(610,454,c), +(688,454,o), +(739,398,o), +(739,265,c), +(768,310,l), +(450,310,l), +(450,231,l), +(842,231,l) +); +}, +{ +closed = 1; +nodes = ( +(39,50,o), +(101,-10,o), +(207,-10,c), +(339,-10,o), +(431,73,o), +(431,206,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(166,205,o), +(238,212,cs), +(392,228,l), +(392,305,l), +(205,288,ls), +(90,278,o), +(39,212,o), +(39,132,c) +); +}, +{ +closed = 1; +nodes = ( +(452,342,l), +(452,465,o), +(381.481,540,o), +(259,540,cs), +(157.419,540,o), +(77.326,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(321,452,o), +(372,417,o), +(372,330,c), +(372,175,l), +(452,192,l) +); +} +); +width = 881; +} +); +unicode = 230; +}, +{ +color = 10; +glyphname = aeacute; +kernLeft = a; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = ae; +}, +{ +pos = (304,0); +ref = acutecomb; +} +); +width = 879; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (435,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(718,-10,o), +(797,41,o), +(831,131,c), +(738,168,l), +(713,108,o), +(671,84,o), +(612,84,c), +(525,84,o), +(472,141,o), +(472,265,c), +(472,398,o), +(527,454,o), +(610,454,c), +(688,454,o), +(739,398,o), +(739,265,c), +(768,310,l), +(450,310,l), +(450,231,l), +(842,231,l), +(843,247,o), +(843,254,o), +(843,265,c), +(843,438,o), +(749,540,o), +(615,540,c), +(482,540,o), +(388,438,o), +(388,265,c), +(388,98,o), +(480,-10,o), +(617,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(339,-10,o), +(431,73,o), +(431,206,c), +(372,221,l), +(372,130,o), +(292,76,o), +(219,76,c), +(163,76,o), +(139,107,o), +(139,138,c), +(139,175,o), +(166,205,o), +(238,212,cs), +(392,228,l), +(392,305,l), +(205,288,ls), +(90,278,o), +(39,212,o), +(39,132,c), +(39,50,o), +(101,-10,o), +(207,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(452,192,l), +(452,342,l), +(452,465,o), +(381.481,540,o), +(259,540,cs), +(157.419,540,o), +(77.326,486,o), +(49,389,c), +(143,358,l), +(160,420,o), +(200,452,o), +(258,452,c), +(321,452,o), +(372,417,o), +(372,330,c), +(372,175,l) +); +}, +{ +closed = 1; +nodes = ( +(468,585,l), +(578,725,l), +(452,725,l), +(382,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = ae; +}, +{ +pos = (275,0); +ref = acutecomb; +} +); +width = 881; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = ae; +}, +{ +pos = (275,0); +ref = acute; +} +); +width = 881; +} +); +unicode = 509; +}, +{ +color = 6; +glyphname = b; +kernLeft = l; +kernRight = o; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(476,-14,o), +(556,90,o), +(556,265,c), +(556,440,o), +(476,544,o), +(353,544,c), +(247,544,o), +(176,458,o), +(176,304,c), +(176,226,l), +(176,72,o), +(247,-14,o), +(353,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,139,l), +(183,265,l), +(202,383,l), +(202,715,l), +(53,715,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(234,120,o), +(192,169,o), +(192,265,c), +(192,361,o), +(234,410,o), +(297,410,c), +(361,410,o), +(403,361,o), +(403,265,c), +(403,169,o), +(361,120,o), +(297,120,c) +); +} +); +width = 588; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l), +(137,74,o), +(211,-10,o), +(323,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,123,l), +(150,265,l), +(165,408,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(215,78,o), +(160,134.005,o), +(160,265,c), +(160,395.995,o), +(215,452,o), +(295,452,c), +(375,452,o), +(430,395.995,o), +(430,265,c), +(430,134.005,o), +(375,78,o), +(295,78,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l), +(137,74,o), +(211,-10,o), +(323,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,123,l), +(150,265,l), +(165,408,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(215,78,o), +(160,134,o), +(160,265,c), +(160,396,o), +(215,452,o), +(295,452,c), +(375,452,o), +(430,396,o), +(430,265,c), +(430,134,o), +(375,78,o), +(295,78,c) +); +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,l), +(165,0,l), +(165,123,l), +(150,265,l), +(165,408,l), +(165,715,l), +(65,715,l) +); +}, +{ +closed = 1; +nodes = ( +(215,78,o), +(160,134.005,o), +(160,265,c), +(160,395.995,o), +(215,452,o), +(295,452,c), +(375,452,o), +(430,395.995,o), +(430,265,c), +(430,134.005,o), +(375,78,o), +(295,78,c) +); +}, +{ +closed = 1; +nodes = ( +(137,221,l), +(137,74,o), +(211,-10,o), +(323,-10,c), +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c) +); +} +); +width = 572; +} +); +unicode = 98; +}, +{ +color = 6; +glyphname = c; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = top; +pos = (286,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(412,-14,o), +(506,58,o), +(532,176,c), +(385,207,l), +(375,148,o), +(339,119,o), +(286,119,c), +(223,119,o), +(181,169,o), +(181,265,cs), +(181,361,o), +(223,411,o), +(286,411,c), +(339,411,o), +(373,381,o), +(381,322,c), +(529,355,l), +(504,472,o), +(412,544,o), +(286,544,cs), +(134,544,o), +(28,432,o), +(28,265,cs), +(28,98,o), +(134,-14,o), +(286,-14,c) +); +} +); +width = 556; +}, +{ +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c), +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c), +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c) +); +} +); +width = 520; +}, +{ +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(411.966,-10,o), +(509,98,o), +(509,265,cs), +(509,432,o), +(411.966,540,o), +(269,540,cs), +(127.043,540,o), +(30,432,o), +(30,265,cs), +(30,98,o), +(127.043,-10,o), +(269,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,65,o), +(134,127,o), +(134,265,cs), +(134,403,o), +(186,465,o), +(269,465,cs), +(353,465,o), +(405,403,o), +(405,265,cs), +(405,127,o), +(353,65,o), +(269,65,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c), +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c) +); +} +); +width = 520; +} +); +unicode = 99; +}, +{ +color = 10; +glyphname = cacute; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (155,0); +ref = acutecomb; +} +); +width = 556; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c), +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(306,585,l), +(416,725,l), +(290,725,l), +(220,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = c; +}, +{ +pos = (113,0); +ref = acutecomb; +} +); +width = 520; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = c; +}, +{ +pos = (113,0); +ref = acute; +} +); +width = 520; +} +); +unicode = 263; +}, +{ +color = 10; +glyphname = ccaron; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (36,0); +ref = caroncomb; +} +); +width = 556; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c), +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(329,585,l), +(429,725,l), +(341,725,l), +(223,585,l) +); +}, +{ +closed = 1; +nodes = ( +(323,585,l), +(205,725,l), +(117,725,l), +(217,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = c; +}, +{ +pos = (23,0); +ref = caroncomb; +} +); +width = 520; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = c; +}, +{ +pos = (23,0); +ref = caron; +} +); +width = 520; +} +); +unicode = 269; +}, +{ +color = 10; +glyphname = ccedilla; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (33,0); +ref = cedillacomb; +} +); +width = 556; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c), +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(324,-185,o), +(360,-151,o), +(360,-106,cs), +(360,-57,o), +(323,-29,o), +(275,-29,c), +(287,-43,l), +(293,9,l), +(237,11,l), +(224,-73,l), +(235,-71,o), +(242,-70,o), +(253,-70,c), +(277,-70,o), +(291,-79,o), +(291,-96,c), +(291,-110,o), +(278,-119,o), +(257,-119,c), +(237,-119,o), +(221,-114,o), +(203,-105,c), +(190,-169,l), +(215,-180,o), +(240,-185,o), +(266,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = c; +}, +{ +pos = (21,0); +ref = cedillacomb; +} +); +width = 520; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(283,-43,l), +(290,9,l), +(233,11,l), +(220,-73,l), +(231,-71,o), +(238,-70,o), +(250,-70,c), +(273,-70,o), +(287,-79,o), +(287,-96,c), +(287,-110,o), +(274,-119,o), +(256,-119,c), +(241,-119,o), +(225,-114,o), +(211,-99,c), +(170,-150,l), +(191,-170,o), +(223,-185,o), +(262,-185,c), +(320,-185,o), +(356,-151,o), +(356,-106,cs), +(356,-57,o), +(319,-29,o), +(271,-29,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = c; +}, +{ +pos = (21,0); +ref = cedilla; +} +); +width = 520; +} +); +unicode = 231; +}, +{ +color = 10; +glyphname = ccircumflex; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (36,0); +ref = circumflexcomb; +} +); +width = 556; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c), +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(429,585,l), +(329,725,l), +(223,725,l), +(341,585,l) +); +}, +{ +closed = 1; +nodes = ( +(205,585,l), +(323,725,l), +(217,725,l), +(117,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = c; +}, +{ +pos = (23,0); +ref = circumflexcomb; +} +); +width = 520; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = c; +}, +{ +pos = (23,0); +ref = circumflex; +} +); +width = 520; +} +); +unicode = 265; +}, +{ +color = 10; +glyphname = cdotaccent; +kernLeft = o; +kernRight = c; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = c; +}, +{ +pos = (36,0); +ref = dotaccentcomb; +} +); +width = 556; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = top; +pos = (273,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(378,-10,o), +(456,44,o), +(486,149,c), +(389,178,l), +(370,108,o), +(333,80,o), +(272,80,c), +(194,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(194,450,o), +(272,450,c), +(333,450,o), +(370,422,o), +(392,353,c), +(486,384,l), +(456,486,o), +(378,540,o), +(277,540,cs), +(135,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135,-10,o), +(277,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(308,602,o), +(335,627,o), +(335,663,cs), +(335,700,o), +(308,725,o), +(273,725,cs), +(238,725,o), +(211,700,o), +(211,663,cs), +(211,627,o), +(238,602,o), +(273,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = c; +}, +{ +pos = (23,0); +ref = dotaccentcomb; +} +); +width = 520; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = c; +}, +{ +pos = (23,0); +ref = dotaccent; +} +); +width = 520; +} +); +unicode = 267; +}, +{ +color = 6; +glyphname = d; +kernLeft = o; +kernRight = l; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = center; +pos = (440,572); +}, +{ +name = top; +pos = (294,530); +}, +{ +name = topright; +pos = (597,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(341,-14,o), +(411,72,o), +(411,226,c), +(411,304,l), +(411,458,o), +(341,544,o), +(234,544,c), +(111,544,o), +(32,440,o), +(32,265,c), +(32,90,o), +(111,-14,o), +(234,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(226,120,o), +(185,169,o), +(185,265,c), +(185,361,o), +(226,410,o), +(290,410,c), +(354,410,o), +(395,361,o), +(395,265,c), +(395,169,o), +(354,120,o), +(290,120,c) +); +}, +{ +closed = 1; +nodes = ( +(534,0,l), +(534,715,l), +(385,715,l), +(385,383,l), +(404,265,l), +(385,139,l), +(385,0,l) +); +} +); +width = 587; +}, +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = center; +pos = (429,572); +}, +{ +name = top; +pos = (286,530); +}, +{ +name = topright; +pos = (663,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134.005,o), +(142,265,c), +(142,395.995,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,395.995,o), +(412,265,c), +(412,134.005,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(507,715,l), +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134,o), +(142,265,c), +(142,396,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,396,o), +(412,265,c), +(412,134,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(507,715,l), +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l) +); +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l), +(507,0,l), +(507,715,l) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134.005,o), +(142,265,c), +(142,395.995,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,395.995,o), +(412,265,c), +(412,134.005,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c), +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l) +); +} +); +width = 572; +} +); +unicode = 100; +}, +{ +color = 10; +glyphname = dcaron; +kernLeft = o; +kernRight = dcaron; +lastChange = "2024-03-22 12:17:54 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = d; +}, +{ +pos = (510,0); +ref = caroncomb.alt; +} +); +width = 587; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134,o), +(142,265,c), +(142,396,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,396,o), +(412,265,c), +(412,134,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(507,715,l), +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l) +); +}, +{ +closed = 1; +nodes = ( +(617,442,l), +(661,715,l), +(557,715,l), +(557,442,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = d; +}, +{ +pos = (472,0); +ref = caroncomb.alt; +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(557,442,l), +(617,442,l), +(661,715,l), +(557,715,l) +); +}, +{ +closed = 1; +nodes = ( +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l), +(507,0,l), +(507,715,l) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134,o), +(142,265,c), +(142,396,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,396,o), +(412,265,c), +(412,134,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c), +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l) +); +} +); +width = 631; +} +); +unicode = 271; +}, +{ +color = 6; +glyphname = dcroat; +kernLeft = o; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,567,l), +(563,567,l), +(563,653,l), +(288,653,l) +); +}, +{ +closed = 1; +nodes = ( +(403,715,l), +(403,408,l), +(418,265,l), +(403,123,l), +(403,0,l), +(503,0,l), +(503,715,l) +); +}, +{ +closed = 1; +nodes = ( +(193,78,o), +(138,134,o), +(138,265,c), +(138,396,o), +(193,452,o), +(273,452,c), +(353,452,o), +(408,396,o), +(408,265,c), +(408,134,o), +(353,78,o), +(273,78,c) +); +}, +{ +closed = 1; +nodes = ( +(431,456,o), +(357,540,o), +(245,540,c), +(122,540,o), +(34,437,o), +(34,265,c), +(34,93,o), +(122,-10,o), +(245,-10,c), +(357,-10,o), +(431,74,o), +(431,221,c), +(431,309,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(341,-14,o), +(411,72,o), +(411,226,c), +(411,304,l), +(411,458,o), +(341,544,o), +(234,544,c), +(111,544,o), +(32,440,o), +(32,265,c), +(32,90,o), +(111,-14,o), +(234,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(226,120,o), +(185,169,o), +(185,265,c), +(185,361,o), +(226,410,o), +(290,410,c), +(354,410,o), +(395,361,o), +(395,265,c), +(395,169,o), +(354,120,o), +(290,120,c) +); +}, +{ +closed = 1; +nodes = ( +(534,0,l), +(534,715,l), +(385,715,l), +(385,383,l), +(404,265,l), +(385,139,l), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,560,l), +(585,675,l), +(265,675,l), +(265,560,l) +); +} +); +width = 595; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134,o), +(142,265,c), +(142,396,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,396,o), +(412,265,c), +(412,134,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(507,715,l), +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l) +); +}, +{ +closed = 1; +nodes = ( +(567,567,l), +(567,653,l), +(292,653,l), +(292,567,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134,o), +(142,265,c), +(142,396,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,396,o), +(412,265,c), +(412,134,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(507,715,l), +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l) +); +}, +{ +closed = 1; +nodes = ( +(567,567,l), +(567,653,l), +(292,653,l), +(292,567,l) +); +} +); +width = 587; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,567,l), +(567,567,l), +(567,653,l), +(292,653,l) +); +}, +{ +closed = 1; +nodes = ( +(407,715,l), +(407,408,l), +(422,265,l), +(407,123,l), +(407,0,l), +(507,0,l), +(507,715,l) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134,o), +(142,265,c), +(142,396,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,396,o), +(412,265,c), +(412,134,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c), +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l) +); +} +); +width = 587; +} +); +unicode = 273; +}, +{ +color = 6; +glyphname = eth; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(442,-14,o), +(545,89,o), +(545,272,c), +(545,394,o), +(475,573,o), +(314,715,c), +(103,715,l), +(290,563,o), +(376,432,o), +(407,260,c), +(415,260,l), +(395,385,o), +(331,461,o), +(227,461,c), +(115,461,o), +(28,366,o), +(28,227,cs), +(28,94,o), +(128,-14,o), +(287,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(224,120,o), +(182,161,o), +(182,227,cs), +(182,293,o), +(224,334,o), +(287,334,cs), +(351,334,o), +(393,293,o), +(393,227,cs), +(393,161,o), +(351,120,o), +(287,120,cs) +); +}, +{ +closed = 1; +nodes = ( +(469,636,l), +(411,730,l), +(160,575,l), +(218,481,l) +); +} +); +width = 573; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(423,-10,o), +(521,89,o), +(521,262,c), +(521,394,o), +(442,573,o), +(267,715,c), +(126,715,l), +(307,583,o), +(393,469,o), +(423,320,c), +(431,320,l), +(411,408,o), +(344,456,o), +(255,456,c), +(132,456,o), +(38,360,o), +(38,227,cs), +(38,94,o), +(133,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,227,cs), +(142,317,o), +(197,374,o), +(280,374,cs), +(364,374,o), +(419,317,o), +(419,227,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(448,658,l), +(394,725,l), +(183,555,l), +(237,488,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-10,o), +(521,89,o), +(521,262,c), +(521,394,o), +(442,573,o), +(267,715,c), +(126,715,l), +(307,583,o), +(393,469,o), +(423,320,c), +(431,320,l), +(411,408,o), +(344,456,o), +(255,456,c), +(132,456,o), +(38,360,o), +(38,227,cs), +(38,94,o), +(133,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,227,cs), +(142,317,o), +(197,374,o), +(280,374,cs), +(364,374,o), +(419,317,o), +(419,227,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(448,658,l), +(394,725,l), +(183,555,l), +(237,488,l) +); +} +); +width = 559; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,227,cs), +(142,317,o), +(197,374,o), +(280,374,cs), +(364,374,o), +(419,317,o), +(419,227,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(126,715,l), +(307,583,o), +(393,469,o), +(423,320,c), +(431,320,l), +(411,408,o), +(344,456,o), +(255,456,c), +(132,456,o), +(38,360,o), +(38,227,cs), +(38,94,o), +(133,-10,o), +(280,-10,cs), +(423,-10,o), +(521,89,o), +(521,262,c), +(521,394,o), +(442,573,o), +(267,715,c) +); +}, +{ +closed = 1; +nodes = ( +(237,488,l), +(448,658,l), +(394,725,l), +(183,555,l) +); +} +); +width = 559; +} +); +unicode = 240; +}, +{ +color = 6; +glyphname = e; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (283,0); +}, +{ +name = ogonek; +pos = (382,0); +}, +{ +name = top; +pos = (283,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(414,-14,o), +(499,48,o), +(524,140,c), +(382,176,l), +(368,133,o), +(334,113,o), +(290,113,c), +(222,113,o), +(181,161,o), +(181,265,c), +(181,376,o), +(221,419,o), +(283,419,c), +(349,419,o), +(386,377,o), +(386,265,c), +(427,323,l), +(111,323,l), +(111,223,l), +(537,223,l), +(537,237,o), +(538,250,o), +(538,265,c), +(538,434,o), +(433,544,o), +(283,544,c), +(134,544,o), +(28,433,o), +(28,265,c), +(28,98,o), +(132,-14,o), +(281,-14,c) +); +} +); +width = 566; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = ogonek; +pos = (382,0); +}, +{ +name = top; +pos = (280,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,141,o), +(142,265,c), +(142,398,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,247,o), +(513,254,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +} +); +width = 551; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(411.966,-10,o), +(509,98,o), +(509,265,cs), +(509,432,o), +(411.966,540,o), +(269,540,cs), +(127.043,540,o), +(30,432,o), +(30,265,cs), +(30,98,o), +(127.043,-10,o), +(269,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,65,o), +(134,127,o), +(134,265,cs), +(134,403,o), +(186,465,o), +(269,465,cs), +(353,465,o), +(405,403,o), +(405,265,cs), +(405,127,o), +(353,65,o), +(269,65,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c), +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l) +); +} +); +width = 551; +} +); +unicode = 101; +}, +{ +color = 10; +glyphname = eacute; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (152,0); +ref = acutecomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(313,585,l), +(423,725,l), +(297,725,l), +(227,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (120,0); +ref = acutecomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (120,0); +ref = acute; +} +); +width = 551; +} +); +unicode = 233; +}, +{ +color = 10; +glyphname = ebreve; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = brevecomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(373,585,o), +(418,639,o), +(420,725,c), +(350,725,l), +(349,684,o), +(325,660,o), +(280,660,c), +(235,660,o), +(211,684,o), +(210,725,c), +(140,725,l), +(142,639,o), +(187,585,o), +(280,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = brevecomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = breve; +} +); +width = 551; +} +); +unicode = 277; +}, +{ +color = 10; +glyphname = ecaron; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = caroncomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(336,585,l), +(436,725,l), +(348,725,l), +(230,585,l) +); +}, +{ +closed = 1; +nodes = ( +(330,585,l), +(212,725,l), +(124,725,l), +(224,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = caroncomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = caron; +} +); +width = 551; +} +); +unicode = 283; +}, +{ +color = 10; +glyphname = ecircumflex; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = circumflexcomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(436,585,l), +(336,725,l), +(230,725,l), +(348,585,l) +); +}, +{ +closed = 1; +nodes = ( +(212,585,l), +(330,725,l), +(224,725,l), +(124,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = circumflexcomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = circumflex; +} +); +width = 551; +} +); +unicode = 234; +}, +{ +color = 10; +glyphname = edieresis; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = dieresiscomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(403,602,o), +(428,625,o), +(428,658,cs), +(428,692,o), +(403,715,o), +(371,715,cs), +(339,715,o), +(314,692,o), +(314,658,cs), +(314,625,o), +(339,602,o), +(371,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(221,602,o), +(246,625,o), +(246,658,cs), +(246,692,o), +(221,715,o), +(189,715,cs), +(157,715,o), +(132,692,o), +(132,658,cs), +(132,625,o), +(157,602,o), +(189,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = dieresiscomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = dieresis; +} +); +width = 551; +} +); +unicode = 235; +}, +{ +color = 10; +glyphname = edotaccent; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = dotaccentcomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(315,602,o), +(342,627,o), +(342,663,cs), +(342,700,o), +(315,725,o), +(280,725,cs), +(245,725,o), +(218,700,o), +(218,663,cs), +(218,627,o), +(245,602,o), +(280,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = dotaccentcomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = dotaccent; +} +); +width = 551; +} +); +unicode = 279; +}, +{ +color = 10; +glyphname = edotbelow; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = dotbelow; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(315,-195,o), +(342,-170,o), +(342,-133,cs), +(342,-97,o), +(315,-72,o), +(280,-72,cs), +(245,-72,o), +(218,-97,o), +(218,-133,cs), +(218,-170,o), +(245,-195,o), +(280,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = dotbelow; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = dotbelow; +} +); +width = 551; +} +); +unicode = 7865; +}, +{ +color = 10; +glyphname = egrave; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 13:48:17 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = gravecomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(333,585,l), +(263,725,l), +(137,725,l), +(247,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = gravecomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = grave; +} +); +width = 551; +} +); +unicode = 232; +}, +{ +color = 10; +glyphname = emacron; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = macroncomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(418,621,l), +(418,705,l), +(142,705,l), +(142,621,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = macroncomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = macron; +} +); +width = 551; +} +); +unicode = 275; +}, +{ +color = 10; +glyphname = eogonek; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 13:38:17 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(291,-28,o), +(265,-59,o), +(265,-103,c), +(265,-149,o), +(302,-185,o), +(374,-185,cs), +(403,-185,o), +(438,-176,o), +(466,-165,c), +(457,-84,l), +(434,-94,o), +(400,-106,o), +(380,-106,c), +(361,-106,o), +(349,-97,o), +(349,-76,c), +(349,-48,o), +(375,-15,o), +(446,42,cs), +(474,65,o), +(495,95,o), +(509,131,c), +(416,168,l), +(391,108,o), +(349,84,o), +(290,84,c), +(203,84,o), +(150,141,o), +(150,265,c), +(150,398,o), +(205,454,o), +(288,454,c), +(366,454,o), +(417,398,o), +(417,265,c), +(446,310,l), +(128,310,l), +(128,231,l), +(520,231,l), +(521,247,o), +(521,254,o), +(521,265,c), +(521,438,o), +(425,540,o), +(288,540,c), +(146,540,o), +(46,438,o), +(46,265,c), +(46,98,o), +(144,-10,o), +(290,-10,c), +(317,-10,o), +(342,-7,o), +(365,0,c), +(366,6,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(398,-190,o), +(434,-183,o), +(464,-170,c), +(455,-75,l), +(435,-87,o), +(409,-96,o), +(390,-96,cs), +(375,-96,o), +(367,-89,o), +(367,-76,cs), +(367,-44,o), +(410,-1,o), +(457,38,cs), +(497,76,o), +(515,106,o), +(524,140,c), +(382,176,l), +(368,133,o), +(334,113,o), +(290,113,cs), +(232,113,o), +(194,148,o), +(184,223,c), +(537,223,l), +(538,265,ls), +(538,434,o), +(433,544,o), +(283,544,cs), +(134,544,o), +(28,433,o), +(28,265,cs), +(28,98,o), +(132,-14,o), +(281,-14,cs), +(292,-14,o), +(303,-13,o), +(314,-13,c), +(280,-43,o), +(256,-78,o), +(256,-111,cs), +(256,-156,o), +(295,-190,o), +(367,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(198,391,o), +(233,419,o), +(283,419,cs), +(336,419,o), +(370,392,o), +(382,323,c), +(186,323,l) +); +} +); +width = 566; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(395,-185,o), +(430,-176,o), +(458,-165,c), +(449,-84,l), +(426,-94,o), +(392,-106,o), +(372,-106,c), +(352.81,-106,o), +(341,-97,o), +(341,-76,c), +(341,-48,o), +(367,-15,o), +(438,42,cs), +(466,65,o), +(487,95,o), +(501,131,c), +(408,168,l), +(383,108,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,141,o), +(142,265,c), +(142,398,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,247,o), +(513,254,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c), +(309,-10,o), +(334,-7,o), +(357,0,c), +(358,6,l), +(283,-28,o), +(257,-59,o), +(257,-103,c), +(257,-149,o), +(294.434,-185,o), +(366,-185,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(395,-185,o), +(430,-176,o), +(458,-165,c), +(449,-84,l), +(426,-94,o), +(392,-106,o), +(372,-106,cs), +(353,-106,o), +(341,-97,o), +(341,-76,cs), +(341,-48,o), +(367,-15,o), +(438,42,cs), +(466,65,o), +(487,95,o), +(501,131,c), +(408,168,l), +(383,108,o), +(341,84,o), +(282,84,cs), +(203,84,o), +(153,131,o), +(143,231,c), +(512,231,l), +(513,265,ls), +(513,438,o), +(417,540,o), +(280,540,cs), +(138,540,o), +(38,438,o), +(38,265,cs), +(38,98,o), +(136,-10,o), +(282,-10,cs), +(300,-10,o), +(318,-9,o), +(334,-6,c), +(277,-35,o), +(257,-64,o), +(257,-103,cs), +(257,-149,o), +(294,-185,o), +(366,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,411,o), +(207,454,o), +(280,454,cs), +(349,454,o), +(396,411,o), +(407,310,c), +(144,310,l) +); +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(283,-28,o), +(257,-59,o), +(257,-103,c), +(257,-149,o), +(294.434,-185,o), +(366,-185,cs), +(395,-185,o), +(430,-176,o), +(458,-165,c), +(449,-84,l), +(426,-94,o), +(392,-106,o), +(372,-106,c), +(352.81,-106,o), +(341,-97,o), +(341,-76,c), +(341,-48,o), +(367,-15,o), +(438,42,cs), +(466,65,o), +(487,95,o), +(501,131,c), +(408,168,l), +(383,108,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,141,o), +(142,265,c), +(142,398,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,247,o), +(513,254,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c), +(309,-10,o), +(334,-7,o), +(357,0,c), +(358,6,l) +); +} +); +width = 551; +} +); +unicode = 281; +}, +{ +color = 10; +glyphname = etilde; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = e; +}, +{ +pos = (33,0); +ref = tildecomb; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(385,-10,o), +(466,41,o), +(501,131,c), +(408,168,l), +(383,108.369,o), +(341,84,o), +(282,84,c), +(195,84,o), +(142,140.8,o), +(142,265,c), +(142,398.2,o), +(197,454,o), +(280,454,c), +(358,454,o), +(409,398.2,o), +(409,265,c), +(438,310,l), +(120,310,l), +(120,231,l), +(512,231,l), +(513,246.583,o), +(513,253.667,o), +(513,265,c), +(513,438,o), +(417,540,o), +(280,540,c), +(138,540,o), +(38,438,o), +(38,265,c), +(38,98,o), +(136,-10,o), +(282,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,585,l), +(199,624,o), +(208,642,o), +(227,642,c), +(259,642,o), +(279,585,o), +(338,585,c), +(391,585,o), +(424,639,o), +(430,725,c), +(362,725,l), +(361,686,o), +(352,668,o), +(333,668,c), +(302,668,o), +(281,725,o), +(222,725,c), +(169,725,o), +(136,671,o), +(130,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = tildecomb; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = e; +}, +{ +pos = (30,0); +ref = tilde; +} +); +width = 551; +} +); +unicode = 7869; +}, +{ +color = 10; +glyphname = schwa; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +angle = 180; +pos = (566,530); +ref = e; +} +); +width = 566; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (271,0); +}, +{ +name = top; +pos = (271,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(166,540,o), +(85,489,o), +(50,399,c), +(143,362,l), +(168,422,o), +(210,446,o), +(269,446,c), +(356,446,o), +(409,389,o), +(409,265,c), +(409,132,o), +(354,76,o), +(271,76,c), +(193,76,o), +(142,132,o), +(142,265,c), +(113,220,l), +(431,220,l), +(431,299,l), +(39,299,l), +(38,283,o), +(38,276,o), +(38,265,c), +(38,92,o), +(134,-10,o), +(271,-10,c), +(413,-10,o), +(513,92,o), +(513,265,c), +(513,432,o), +(415,540,o), +(269,540,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +angle = 180; +pos = (551,530); +ref = e; +} +); +width = 551; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +angle = 180; +pos = (551,530); +ref = e; +} +); +width = 551; +} +); +unicode = 601; +}, +{ +color = 6; +glyphname = f; +kernLeft = f; +kernRight = f; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(343,598,o), +(367,592,c), +(367,715,l), +(335,724,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(361,407,l), +(361,530,l), +(8,530,l), +(8,407,l) +); +} +); +width = 357; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606.108,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,666.667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,443,l), +(323,530,l), +(10,530,l), +(10,443,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,443,l), +(323,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 343; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,606.108,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,666.667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(323,443,l), +(323,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 343; +} +); +unicode = 102; +}, +{ +color = 6; +glyphname = g; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (287,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(419,-190,o), +(534,-95,o), +(534,87,c), +(534,530,l), +(385,530,l), +(385,393,l), +(404,294,l), +(385,177,l), +(385,80,l), +(385,-8,o), +(325,-54,o), +(237,-54,c), +(186,-54,o), +(140,-38,o), +(95,-12,c), +(39,-135,l), +(94,-169,o), +(158,-190,o), +(249,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(341,44,o), +(411,121,o), +(411,255,c), +(411,334,l), +(411,468,o), +(341,544,o), +(234,544,c), +(111,544,o), +(32,450,o), +(32,294,c), +(32,139,o), +(111,44,o), +(234,44,c) +); +}, +{ +closed = 1; +nodes = ( +(226,179,o), +(185,219,o), +(185,294,c), +(185,370,o), +(226,410,o), +(290,410,c), +(354,410,o), +(395,370,o), +(395,294,c), +(395,219,o), +(354,179,o), +(290,179,c) +); +} +); +width = 587; +}, +{ +anchors = ( +{ +name = top; +pos = (280,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l), +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(361,40,o), +(431,119,o), +(431,246,c), +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(142,180.744,o), +(142,290,c), +(142,399.256,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,399.256,o), +(412,290,c), +(412,180.744,o), +(357,128,o), +(277,128,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l), +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(361,40,o), +(431,119,o), +(431,246,c), +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(142,181,o), +(142,290,c), +(142,399,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,399,o), +(412,290,c), +(412,181,o), +(357,128,o), +(277,128,c) +); +} +); +width = 572; +}, +{ +anchors = ( +{ +name = top; +pos = (280,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(427,334,l), +(427,461,o), +(357,540,o), +(245,540,c), +(122,540,o), +(34,442,o), +(34,290,c), +(34,138,o), +(122,40,o), +(245,40,c), +(357,40,o), +(427,119,o), +(427,246,c) +); +}, +{ +closed = 1; +nodes = ( +(353,452,o), +(408,399.256,o), +(408,290,c), +(408,180.744,o), +(353,128,o), +(273,128,c), +(193,128,o), +(138,180.744,o), +(138,290,c), +(138,399.256,o), +(193,452,o), +(273,452,c) +); +}, +{ +closed = 1; +nodes = ( +(503,530,l), +(403,530,l), +(403,432,l), +(418,290,l), +(403,147,l), +(403,68,l), +(403,-51,o), +(333,-80,o), +(269,-80,c), +(205,-80,o), +(165,-57.765,o), +(141,-10,c), +(48,-49,l), +(79,-121,o), +(154,-170,o), +(265,-170,c), +(391,-170,o), +(503,-105,o), +(503,43,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(357,452,o), +(412,399.256,o), +(412,290,c), +(412,180.744,o), +(357,128,o), +(277,128,c), +(197,128,o), +(142,180.744,o), +(142,290,c), +(142,399.256,o), +(197,452,o), +(277,452,c) +); +}, +{ +closed = 1; +nodes = ( +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c), +(361,40,o), +(431,119,o), +(431,246,c) +); +}, +{ +closed = 1; +nodes = ( +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c), +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l) +); +} +); +width = 572; +} +); +unicode = 103; +}, +{ +color = 10; +glyphname = gbreve; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (37,0); +ref = brevecomb; +} +); +width = 587; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l), +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(361,40,o), +(431,119,o), +(431,246,c), +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(142,180.744,o), +(142,290,c), +(142,399.256,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,399.256,o), +(412,290,c), +(412,180.744,o), +(357,128,o), +(277,128,c) +); +}, +{ +closed = 1; +nodes = ( +(373,585,o), +(418,639,o), +(420,725,c), +(350,725,l), +(349,684,o), +(325,660,o), +(280,660,c), +(235,660,o), +(211,684,o), +(210,725,c), +(140,725,l), +(142,639,o), +(187,585,o), +(280,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = brevecomb; +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = breve; +} +); +width = 572; +} +); +unicode = 287; +}, +{ +color = 10; +glyphname = gcaron; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (37,0); +ref = caroncomb; +} +); +width = 587; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l), +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(361,40,o), +(431,119,o), +(431,246,c), +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(142,180.744,o), +(142,290,c), +(142,399.256,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,399.256,o), +(412,290,c), +(412,180.744,o), +(357,128,o), +(277,128,c) +); +}, +{ +closed = 1; +nodes = ( +(336,585,l), +(436,725,l), +(348,725,l), +(230,585,l) +); +}, +{ +closed = 1; +nodes = ( +(330,585,l), +(212,725,l), +(124,725,l), +(224,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = caroncomb; +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = caron; +} +); +width = 572; +} +); +unicode = 487; +}, +{ +color = 10; +glyphname = gcircumflex; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (37,0); +ref = circumflexcomb; +} +); +width = 587; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l), +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(361,40,o), +(431,119,o), +(431,246,c), +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(142,180.744,o), +(142,290,c), +(142,399.256,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,399.256,o), +(412,290,c), +(412,180.744,o), +(357,128,o), +(277,128,c) +); +}, +{ +closed = 1; +nodes = ( +(436,585,l), +(336,725,l), +(230,725,l), +(348,585,l) +); +}, +{ +closed = 1; +nodes = ( +(212,585,l), +(330,725,l), +(224,725,l), +(124,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = circumflexcomb; +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = circumflex; +} +); +width = 572; +} +); +unicode = 285; +}, +{ +color = 10; +glyphname = gcommaaccent; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (38,0); +ref = commaaccent.alt; +} +); +width = 587; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l), +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(361,40,o), +(431,119,o), +(431,246,c), +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(142,180.744,o), +(142,290,c), +(142,399.256,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,399.256,o), +(412,290,c), +(412,180.744,o), +(357,128,o), +(277,128,c) +); +}, +{ +closed = 1; +nodes = ( +(327,602,l), +(327,805,l), +(264,805,l), +(223,602,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = commaaccent.alt; +} +); +width = 572; +} +); +unicode = 291; +}, +{ +color = 10; +glyphname = gdotaccent; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = g; +}, +{ +pos = (37,0); +ref = dotaccentcomb; +} +); +width = 587; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(507,-117,o), +(507,48,c), +(507,530,l), +(407,530,l), +(407,432,l), +(422,290,l), +(407,147,l), +(407,53,l), +(407,-57,o), +(338,-95,o), +(271,-95,c), +(207,-95,o), +(169,-73,o), +(145,-25,c), +(52,-64,l), +(83,-136,o), +(156,-185,o), +(267,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(361,40,o), +(431,119,o), +(431,246,c), +(431,334,l), +(431,461,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,442,o), +(38,290,c), +(38,138,o), +(126,40,o), +(249,40,c) +); +}, +{ +closed = 1; +nodes = ( +(197,128,o), +(142,180.744,o), +(142,290,c), +(142,399.256,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,399.256,o), +(412,290,c), +(412,180.744,o), +(357,128,o), +(277,128,c) +); +}, +{ +closed = 1; +nodes = ( +(315,602,o), +(342,627,o), +(342,663,cs), +(342,700,o), +(315,725,o), +(280,725,cs), +(245,725,o), +(218,700,o), +(218,663,cs), +(218,627,o), +(245,602,o), +(280,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = dotaccentcomb; +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = g; +}, +{ +pos = (30,0); +ref = dotaccent; +} +); +width = 572; +} +); +unicode = 289; +}, +{ +color = 6; +glyphname = h; +kernLeft = l; +kernRight = n; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (293,0); +}, +{ +name = center; +pos = (147,572); +}, +{ +name = top; +pos = (293,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(533,0,l), +(533,334,l), +(533,466,o), +(460,544,o), +(356,544,c), +(245,544,o), +(176,457,o), +(176,304,c), +(202,304,l), +(202,375,o), +(240,412,o), +(293,412,c), +(346,412,o), +(384,375,o), +(384,304,c), +(384,0,l) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,715,l), +(53,715,l), +(53,0,l) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (287,0); +}, +{ +name = center; +pos = (144,572); +}, +{ +name = top; +pos = (287,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (287,0); +}, +{ +name = center; +pos = (144,572); +}, +{ +name = top; +pos = (287,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +} +); +width = 574; +}, +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (115,715); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(409,0,l), +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c) +); +} +); +width = 574; +} +); +unicode = 104; +}, +{ +color = 6; +glyphname = hbar; +kernRight = n; +lastChange = "2024-03-21 13:50:10 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(15,653,l), +(15,567,l), +(290,567,l), +(290,653,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,715,l), +(75,715,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(419,0,l), +(519,0,l), +(519,332,l), +(519,460,o), +(442,540,o), +(335,540,c), +(226,540,o), +(142,451,o), +(142,309,c), +(175,309,l), +(175,403,o), +(230,452,o), +(297,452,c), +(364,452,o), +(419,403,o), +(419,309,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(541,0,l), +(541,334,l), +(541,466,o), +(468,544,o), +(364,544,c), +(253,544,o), +(184,457,o), +(184,304,c), +(210,304,l), +(210,375,o), +(248,412,o), +(301,412,c), +(354,412,o), +(392,375,o), +(392,304,c), +(392,0,l) +); +}, +{ +closed = 1; +nodes = ( +(210,0,l), +(210,715,l), +(61,715,l), +(61,0,l) +); +}, +{ +closed = 1; +nodes = ( +(330,580,l), +(330,675,l), +(10,675,l), +(10,580,l) +); +} +); +width = 594; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(519,0,l), +(519,332,l), +(519,460,o), +(442,540,o), +(335,540,c), +(226,540,o), +(142,451,o), +(142,309,c), +(175,309,l), +(175,403,o), +(230,452,o), +(297,452,c), +(364,452,o), +(419,403,o), +(419,309,c), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,715,l), +(75,715,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(290,567,l), +(290,653,l), +(15,653,l), +(15,567,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(519,0,l), +(519,332,l), +(519,460,o), +(442,540,o), +(335,540,c), +(226,540,o), +(142,451,o), +(142,309,c), +(175,309,l), +(175,403,o), +(230,452,o), +(297,452,c), +(364,452,o), +(419,403,o), +(419,309,c), +(419,0,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,715,l), +(75,715,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(290,582,l), +(290,653,l), +(15,653,l), +(15,582,l) +); +} +); +width = 579; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(15,653,l), +(15,567,l), +(290,567,l), +(290,653,l) +); +}, +{ +closed = 1; +nodes = ( +(175,0,l), +(175,715,l), +(75,715,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(419,0,l), +(519,0,l), +(519,332,l), +(519,460,o), +(442,540,o), +(335,540,c), +(226,540,o), +(142,451,o), +(142,309,c), +(175,309,l), +(175,403,o), +(230,452,o), +(297,452,c), +(364,452,o), +(419,403,o), +(419,309,c) +); +} +); +width = 579; +} +); +unicode = 295; +}, +{ +color = 10; +glyphname = hcircumflex; +kernLeft = l; +kernRight = n; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = h; +}, +{ +pos = (43,25); +ref = circumflexcomb.case; +} +); +width = 586; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (287,0); +}, +{ +name = center; +pos = (144,572); +}, +{ +name = top; +pos = (287,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(470,760,l), +(356,870,l), +(222,870,l), +(371,760,l) +); +}, +{ +closed = 1; +nodes = ( +(203,760,l), +(352,870,l), +(218,870,l), +(104,760,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = h; +}, +{ +pos = (37,25); +ref = circumflexcomb.case; +} +); +width = 574; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = h; +}, +{ +pos = (37,25); +ref = circumflexcomb.case; +} +); +width = 574; +} +); +unicode = 293; +}, +{ +color = 10; +glyphname = i; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (127,0); +} +); +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = dotaccentcomb; +} +); +width = 255; +}, +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = dotaccentcomb; +} +); +width = 230; +}, +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +} +); +width = 230; +} +); +unicode = 105; +}, +{ +color = 6; +glyphname = idotless; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 13:39:02 +0000"; +layers = ( +{ +anchors = ( +{ +name = ogonek; +pos = (202,0); +}, +{ +name = top; +pos = (128,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(202,0,l), +(202,530,l), +(53,530,l), +(53,0,l) +); +} +); +width = 255; +}, +{ +anchors = ( +{ +name = ogonek; +pos = (165,0); +}, +{ +name = top; +pos = (115,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +width = 230; +} +); +unicode = 305; +}, +{ +color = 10; +glyphname = iacute; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-3,0); +ref = acutecomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(148,585,l), +(258,725,l), +(132,725,l), +(62,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-45,0); +ref = acutecomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-45,0); +ref = acute; +} +); +width = 230; +} +); +unicode = 237; +}, +{ +color = 10; +glyphname = ibreve; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = brevecomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(208,585,o), +(253,639,o), +(255,725,c), +(185,725,l), +(184,684,o), +(160,660,o), +(115,660,c), +(70,660,o), +(46,684,o), +(45,725,c), +(-25,725,l), +(-23,639,o), +(22,585,o), +(115,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = brevecomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = breve; +} +); +width = 230; +} +); +unicode = 301; +}, +{ +color = 10; +glyphname = icircumflex; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = circumflexcomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(271,585,l), +(171,725,l), +(65,725,l), +(183,585,l) +); +}, +{ +closed = 1; +nodes = ( +(47,585,l), +(165,725,l), +(59,725,l), +(-41,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = circumflexcomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = circumflex; +} +); +width = 230; +} +); +unicode = 238; +}, +{ +color = 10; +glyphname = idieresis; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = dieresiscomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(238,602,o), +(263,625,o), +(263,658,cs), +(263,692,o), +(238,715,o), +(206,715,cs), +(174,715,o), +(149,692,o), +(149,658,cs), +(149,625,o), +(174,602,o), +(206,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(56,602,o), +(81,625,o), +(81,658,cs), +(81,692,o), +(56,715,o), +(24,715,cs), +(-8,715,o), +(-33,692,o), +(-33,658,cs), +(-33,625,o), +(-8,602,o), +(24,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = dieresiscomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = dieresis; +} +); +width = 230; +} +); +unicode = 239; +}, +{ +color = 10; +glyphname = idotaccent; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = dotaccentcomb; +} +); +width = 230; +}, +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = dotaccentcomb; +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 600; +} +); +}, +{ +color = 10; +glyphname = idotbelow; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = i; +}, +{ +pos = (-123,0); +ref = dotbelow; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,-195,o), +(177,-170,o), +(177,-133,cs), +(177,-97,o), +(150,-72,o), +(115,-72,cs), +(80,-72,o), +(53,-97,o), +(53,-133,cs), +(53,-170,o), +(80,-195,o), +(115,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = i; +}, +{ +pos = (-135,0); +ref = dotbelow; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = i; +}, +{ +pos = (-135,0); +ref = dotbelow; +} +); +width = 230; +} +); +unicode = 7883; +}, +{ +color = 10; +glyphname = igrave; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 13:48:17 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = gravecomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(168,585,l), +(98,725,l), +(-28,725,l), +(82,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = gravecomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = grave; +} +); +width = 230; +} +); +unicode = 236; +}, +{ +color = 10; +glyphname = imacron; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = macroncomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(253,621,l), +(253,705,l), +(-23,705,l), +(-23,621,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = macroncomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = macron; +} +); +width = 230; +} +); +unicode = 299; +}, +{ +color = 10; +glyphname = iogonek; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 13:39:02 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = dotaccentcomb; +}, +{ +pos = (-137,0); +ref = ogonekcomb; +} +); +width = 255; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(102,-185,o), +(137,-176,o), +(165,-165,c), +(156,-84,l), +(133,-94,o), +(99,-106,o), +(79,-106,c), +(66,-106,o), +(58,-101,o), +(58,-89,c), +(58,-65,o), +(95,-34,o), +(165,0,c), +(65,0,l), +(-3,-37,o), +(-26,-69,o), +(-26,-111,c), +(-26,-153,o), +(8,-185,o), +(73,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = dotaccentcomb; +}, +{ +pos = (-139,0); +ref = ogonekcomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(-3,-37,o), +(-26,-69,o), +(-26,-111,c), +(-26,-153,o), +(8,-185,o), +(73,-185,cs), +(102,-185,o), +(137,-176,o), +(165,-165,c), +(156,-84,l), +(133,-94,o), +(99,-106,o), +(79,-106,c), +(66,-106,o), +(58,-101,o), +(58,-89,c), +(58,-65,o), +(95,-34,o), +(165,0,c), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +} +); +width = 230; +} +); +unicode = 303; +}, +{ +color = 10; +glyphname = itilde; +kernLeft = n; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-122,0); +ref = tildecomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(33,585,l), +(34,624,o), +(43,642,o), +(62,642,c), +(94,642,o), +(114,585,o), +(173,585,c), +(226,585,o), +(259,639,o), +(265,725,c), +(197,725,l), +(196,686,o), +(187,668,o), +(168,668,c), +(137,668,o), +(116,725,o), +(57,725,c), +(4,725,o), +(-29,671,o), +(-35,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = tildecomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-135,0); +ref = tilde; +} +); +width = 230; +} +); +unicode = 297; +}, +{ +color = 10; +glyphname = ij; +kernLeft = n; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = i; +}, +{ +pos = (255,0); +ref = j; +} +); +width = 510; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(337,-185,o), +(395,-123,o), +(395,-10,c), +(395,530,l), +(295,530,l), +(295,-7,l), +(295,-70,o), +(270,-94,o), +(213,-94,c), +(196,-94,o), +(175,-90,o), +(157,-83,c), +(157,-175,l), +(180,-182,o), +(203,-185,o), +(231,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(380,602,o), +(407,627,o), +(407,663,cs), +(407,700,o), +(380,725,o), +(345,725,cs), +(310,725,o), +(283,700,o), +(283,663,cs), +(283,627,o), +(310,602,o), +(345,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = i; +}, +{ +pos = (230,0); +ref = j; +} +); +width = 460; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(380,602,o), +(407,627,o), +(407,663,cs), +(407,700,o), +(380,725,o), +(345,725,cs), +(310,725,o), +(283,700,o), +(283,663,cs), +(283,627,o), +(310,602,o), +(345,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(295,-70,o), +(270,-94,o), +(213,-94,c), +(196,-94,o), +(175,-90,o), +(157,-83,c), +(157,-175,l), +(180,-182,o), +(203,-185,o), +(231,-185,c), +(337,-185,o), +(395,-123,o), +(395,-10,c), +(395,530,l), +(295,530,l), +(295,-7,l) +); +} +); +width = 460; +} +); +unicode = 307; +}, +{ +color = 10; +glyphname = j; +kernLeft = j; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-122,0); +ref = dotaccentcomb; +} +); +width = 255; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(107,-185,o), +(165,-123,o), +(165,-10,c), +(165,530,l), +(65,530,l), +(65,-7,l), +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-135,0); +ref = dotaccentcomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c), +(107,-185,o), +(165,-123,o), +(165,-10,c), +(165,530,l), +(65,530,l), +(65,-7,l) +); +} +); +width = 230; +} +); +unicode = 106; +}, +{ +color = 6; +glyphname = jdotless; +kernLeft = j; +kernRight = q; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (128,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(131,-190,o), +(202,-125,o), +(202,4,c), +(202,530,l), +(53,530,l), +(53,9,l), +(53,-33,o), +(29,-54,o), +(-17,-54,c), +(-40,-54,o), +(-60,-49,o), +(-80,-42,c), +(-80,-175,l), +(-52,-184,o), +(-24,-190,o), +(14,-190,c) +); +} +); +width = 255; +}, +{ +anchors = ( +{ +name = top; +pos = (115,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(107,-185,o), +(165,-123,o), +(165,-10,c), +(165,530,l), +(65,530,l), +(65,-7,l), +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(107,-185,o), +(165,-123,o), +(165,-10,c), +(165,530,l), +(65,530,l), +(65,-7,l), +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c) +); +} +); +width = 230; +} +); +unicode = 567; +}, +{ +color = 10; +glyphname = jcircumflex; +kernLeft = j; +kernRight = q; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-122,0); +ref = circumflexcomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (115,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(107,-185,o), +(165,-123,o), +(165,-10,c), +(165,530,l), +(65,530,l), +(65,-7,l), +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(271,585,l), +(171,725,l), +(65,725,l), +(183,585,l) +); +}, +{ +closed = 1; +nodes = ( +(47,585,l), +(165,725,l), +(59,725,l), +(-41,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-135,0); +ref = circumflexcomb; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-135,0); +ref = circumflex; +} +); +width = 230; +} +); +unicode = 309; +}, +{ +color = 6; +glyphname = k; +kernLeft = l; +kernRight = x; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (287,0); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(533,530,l), +(357,530,l), +(191,324,l), +(191,142,l) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,715,l), +(53,715,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(547,0,l), +(310,343,l), +(219,238,l), +(374,0,l) +); +} +); +width = 547; +}, +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (276,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(491,530,l), +(373,530,l), +(158,265,l), +(158,139,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(283,310,l), +(218,238,l), +(385,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(491,530,l), +(373,530,l), +(158,265,l), +(158,139,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(283,310,l), +(218,238,l), +(385,0,l) +); +} +); +width = 515; +}, +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,0,l), +(507,0,l), +(283,310,l), +(218,238,l) +); +}, +{ +closed = 1; +nodes = ( +(491,530,l), +(373,530,l), +(158,265,l), +(158,139,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +} +); +width = 515; +} +); +unicode = 107; +}, +{ +color = 10; +glyphname = kcommaaccent; +kernLeft = l; +kernRight = x; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = k; +}, +{ +pos = (143,0); +ref = commaaccentcomb; +} +); +width = 547; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (276,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(491,530,l), +(373,530,l), +(158,265,l), +(158,139,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(283,310,l), +(218,238,l), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(292,-275,l), +(333,-72,l), +(229,-72,l), +(229,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = k; +}, +{ +pos = (135,0); +ref = commaaccentcomb; +} +); +width = 515; +} +); +unicode = 311; +}, +{ +color = 6; +glyphname = kra; +kernLeft = n; +kernRight = x; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(533,530,l), +(357,530,l), +(191,324,l), +(191,142,l) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,530,l), +(53,530,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(547,0,l), +(310,343,l), +(219,238,l), +(374,0,l) +); +} +); +width = 547; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(491,530,l), +(373,530,l), +(158,265,l), +(158,139,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(283,310,l), +(218,238,l), +(385,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(491,530,l), +(373,530,l), +(158,265,l), +(158,139,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(507,0,l), +(283,310,l), +(218,238,l), +(385,0,l) +); +} +); +width = 515; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,0,l), +(507,0,l), +(283,310,l), +(218,238,l) +); +}, +{ +closed = 1; +nodes = ( +(491,530,l), +(373,530,l), +(158,265,l), +(158,139,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +width = 515; +} +); +unicode = 312; +}, +{ +color = 6; +glyphname = l; +kernLeft = l; +kernRight = l; +lastChange = "2024-03-22 12:20:02 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = center; +pos = (128,265); +}, +{ +name = top; +pos = (128,715); +}, +{ +name = topright; +pos = (265,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(202,0,l), +(202,715,l), +(53,715,l), +(53,0,l) +); +} +); +width = 255; +}, +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = center; +pos = (115,265); +}, +{ +name = top; +pos = (115,715); +}, +{ +name = topright; +pos = (327,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (115,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +} +); +width = 230; +}, +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (115,715); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +} +); +width = 230; +} +); +unicode = 108; +}, +{ +color = 10; +glyphname = lacute; +kernLeft = l; +kernRight = l; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = l; +}, +{ +pos = (-122,25); +ref = acutecomb.case; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (115,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(148,770,l), +(258,910,l), +(132,910,l), +(62,770,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-135,25); +ref = acutecomb.case; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-45,185); +ref = acute; +} +); +width = 230; +} +); +unicode = 314; +}, +{ +color = 10; +glyphname = lcaron; +kernLeft = l; +kernRight = lcaron; +lastChange = "2024-03-22 12:23:18 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = l; +}, +{ +pos = (178,0); +ref = caroncomb.alt; +} +); +width = 255; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(280,442,l), +(324,715,l), +(220,715,l), +(220,442,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = l; +}, +{ +pos = (136,0); +ref = caroncomb.alt; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(220,442,l), +(280,442,l), +(324,715,l), +(220,715,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +} +); +width = 294; +} +); +unicode = 318; +}, +{ +color = 10; +glyphname = lcommaaccent; +kernLeft = l; +kernRight = l; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = l; +}, +{ +pos = (-16,0); +ref = commaaccentcomb; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (115,715); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(131,-275,l), +(172,-72,l), +(68,-72,l), +(68,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-26,0); +ref = commaaccentcomb; +} +); +width = 230; +} +); +unicode = 316; +}, +{ +color = 10; +glyphname = ldot; +kernLeft = l; +lastChange = "2024-03-21 13:51:13 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +alignment = -1; +pos = (210,0); +ref = periodcentered.loclCAT; +} +); +width = 424; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(328,231,o), +(355,259,o), +(355,297,cs), +(355,336,o), +(328,364,o), +(290,364,cs), +(252,364,o), +(225,336,o), +(225,297,cs), +(225,259,o), +(252,231,o), +(290,231,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +alignment = -1; +pos = (183,0); +ref = periodcentered.loclCAT; +} +); +width = 358; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,715,l), +(65,715,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(328,231,o), +(355,259,o), +(355,297,cs), +(355,336,o), +(328,364,o), +(290,364,cs), +(252,364,o), +(225,336,o), +(225,297,cs), +(225,259,o), +(252,231,o), +(290,231,cs) +); +} +); +width = 355; +} +); +unicode = 320; +}, +{ +color = 6; +glyphname = lslash; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(210,0,l), +(210,715,l), +(61,715,l), +(61,0,l) +); +}, +{ +closed = 1; +nodes = ( +(267,343,l), +(267,467,l), +(10,336,l), +(10,212,l) +); +} +); +width = 277; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,715,l), +(80,715,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(255,380,l), +(255,481,l), +(20,353,l), +(20,252,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,715,l), +(80,715,l), +(80,0,l) +); +}, +{ +closed = 1; +nodes = ( +(255,380,l), +(255,481,l), +(20,353,l), +(20,252,l) +); +} +); +width = 255; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,252,l), +(255,380,l), +(255,481,l), +(20,353,l) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,715,l), +(80,715,l), +(80,0,l) +); +} +); +width = 255; +} +); +unicode = 322; +}, +{ +color = 6; +glyphname = m; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(820,0,l), +(820,336,l), +(820,467,o), +(749,544,o), +(651,544,c), +(539,544,o), +(468,458,o), +(468,306,c), +(511,306,l), +(511,376,o), +(544,412,o), +(591,412,c), +(638,412,o), +(671,376,o), +(671,306,c), +(671,0,l) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,530,l), +(53,530,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(511,0,l), +(511,336,l), +(511,467,o), +(443,544,o), +(346,544,c), +(241,544,o), +(176,458,o), +(176,306,c), +(202,306,l), +(202,376,o), +(235,412,o), +(282,412,c), +(330,412,o), +(362,376,o), +(362,306,c), +(362,0,l) +); +} +); +width = 873; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(793,0,l), +(793,352,l), +(793,468,o), +(722,540,o), +(624,540,c), +(523,540,o), +(446,459,o), +(446,329,c), +(479,329,l), +(479,409.719,o), +(527,452,o), +(586,452,c), +(645,452,o), +(693,409.719,o), +(693,329,c), +(693,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(479,0,l), +(479,352,l), +(479,467.692,o), +(408.277,540,o), +(310,540,c), +(209.472,540,o), +(132,458.706,o), +(132,329,c), +(165,329,l), +(165,409.615,o), +(213.238,452,o), +(272,452,c), +(330.762,452,o), +(379,409.615,o), +(379,329,c), +(379,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(793,0,l), +(793,352,l), +(793,468,o), +(722,540,o), +(624,540,c), +(523,540,o), +(446,459,o), +(446,329,c), +(479,329,l), +(479,410,o), +(527,452,o), +(586,452,c), +(645,452,o), +(693,410,o), +(693,329,c), +(693,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(479,0,l), +(479,352,l), +(479,468,o), +(408,540,o), +(310,540,c), +(209,540,o), +(132,459,o), +(132,329,c), +(165,329,l), +(165,410,o), +(213,452,o), +(272,452,c), +(331,452,o), +(379,410,o), +(379,329,c), +(379,0,l) +); +} +); +width = 858; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(399,0,l), +(499,0,l), +(499,332,l), +(499,460,o), +(422,540,o), +(315,540,c), +(206,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(210,457,o), +(277,457,c), +(344,457,o), +(399,406,o), +(399,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(379,0,l), +(479,0,l), +(479,352,l), +(479,467.692,o), +(408.277,540,o), +(310,540,c), +(209.472,540,o), +(132,458.706,o), +(132,329,c), +(165,329,l), +(165,409.615,o), +(213.238,452,o), +(272,452,c), +(330.762,452,o), +(379,409.615,o), +(379,329,c) +); +}, +{ +closed = 1; +nodes = ( +(693,0,l), +(793,0,l), +(793,352,l), +(793,468,o), +(722,540,o), +(624,540,c), +(523,540,o), +(446,459,o), +(446,329,c), +(479,329,l), +(479,409.719,o), +(527,452,o), +(586,452,c), +(645,452,o), +(693,409.719,o), +(693,329,c) +); +} +); +width = 858; +} +); +unicode = 109; +}, +{ +color = 6; +glyphname = n; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (293,0); +}, +{ +name = top; +pos = (293,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(533,0,l), +(533,334,l), +(533,466,o), +(460,544,o), +(356,544,c), +(245,544,o), +(176,457,o), +(176,304,c), +(202,304,l), +(202,375,o), +(240,412,o), +(293,412,c), +(346,412,o), +(384,375,o), +(384,304,c), +(384,0,l) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,530,l), +(53,530,l), +(53,0,l) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +width = 574; +}, +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(409,0,l), +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c) +); +} +); +width = 574; +} +); +unicode = 110; +}, +{ +color = 10; +glyphname = nacute; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (162,0); +ref = acutecomb; +} +); +width = 586; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(324,585,l), +(434,725,l), +(308,725,l), +(238,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = n; +}, +{ +pos = (131,0); +ref = acutecomb; +} +); +width = 574; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = n; +}, +{ +pos = (131,0); +ref = acute; +} +); +width = 574; +} +); +unicode = 324; +}, +{ +color = 10; +glyphname = napostrophe; +kernRight = n; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +alignment = -1; +ref = quoteright; +}, +{ +alignment = -1; +pos = (200,0); +ref = n; +} +); +width = 786; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (465,0); +}, +{ +name = top; +pos = (465,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(114,417,l), +(158,690,l), +(44,690,l), +(44,417,l) +); +}, +{ +closed = 1; +nodes = ( +(683,0,l), +(683,332,l), +(683,460,o), +(606,540,o), +(499,540,c), +(390,540,o), +(306,451,o), +(306,309,c), +(339,309,l), +(339,403,o), +(394,452,o), +(461,452,c), +(528,452,o), +(583,403,o), +(583,309,c), +(583,0,l) +); +}, +{ +closed = 1; +nodes = ( +(339,0,l), +(339,530,l), +(239,530,l), +(239,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = quoteright; +}, +{ +pos = (174,0); +ref = n; +} +); +width = 738; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = quoteright; +}, +{ +pos = (174,0); +ref = n; +} +); +width = 738; +} +); +unicode = 329; +}, +{ +color = 10; +glyphname = ncaron; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (43,0); +ref = caroncomb; +} +); +width = 586; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(347,585,l), +(447,725,l), +(359,725,l), +(241,585,l) +); +}, +{ +closed = 1; +nodes = ( +(341,585,l), +(223,725,l), +(135,725,l), +(235,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = n; +}, +{ +pos = (41,0); +ref = caroncomb; +} +); +width = 574; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = n; +}, +{ +pos = (41,0); +ref = caron; +} +); +width = 574; +} +); +unicode = 328; +}, +{ +color = 10; +glyphname = ncommaaccent; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (149,0); +ref = commaaccentcomb; +} +); +width = 586; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(307,-275,l), +(348,-72,l), +(244,-72,l), +(244,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = n; +}, +{ +pos = (150,0); +ref = commaaccentcomb; +} +); +width = 574; +} +); +unicode = 326; +}, +{ +color = 6; +glyphname = nhookleft; +kernLeft = j; +kernRight = n; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(533,0,l), +(533,334,l), +(533,466,o), +(460,544,o), +(356,544,c), +(245,544,o), +(176,457,o), +(176,304,c), +(202,304,l), +(202,375,o), +(240,412,o), +(293,412,c), +(346,412,o), +(384,375,o), +(384,304,c), +(384,0,l) +); +}, +{ +closed = 1; +nodes = ( +(131,-190,o), +(202,-125,o), +(202,4,c), +(202,530,l), +(53,530,l), +(53,9,l), +(53,-33,o), +(29,-54,o), +(-17,-54,c), +(-40,-54,o), +(-60,-49,o), +(-80,-42,c), +(-80,-175,l), +(-52,-184,o), +(-24,-190,o), +(14,-190,c) +); +} +); +width = 586; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,-185,o), +(165,-123,o), +(165,-10,c), +(165,530,l), +(65,530,l), +(65,-7,l), +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(107,-185,o), +(165,-123,o), +(165,-10,c), +(165,530,l), +(65,530,l), +(65,-7,l), +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c) +); +} +); +width = 574; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,530,l), +(65,530,l), +(65,-7,l), +(65,-70,o), +(40,-94,o), +(-17,-94,c), +(-34,-94,o), +(-55,-90,o), +(-73,-83,c), +(-73,-175,l), +(-50,-182,o), +(-27,-185,o), +(1,-185,c), +(107,-185,o), +(165,-123,o), +(165,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(409,0,l), +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c) +); +} +); +width = 574; +} +); +unicode = 626; +}, +{ +color = 10; +glyphname = ntilde; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = n; +}, +{ +pos = (43,0); +ref = tildecomb; +} +); +width = 586; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(509,0,l), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,402.723,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,402.723,o), +(409,309,c), +(409,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(209,585,l), +(210,624,o), +(219,642,o), +(238,642,c), +(270,642,o), +(290,585,o), +(349,585,c), +(402,585,o), +(435,639,o), +(441,725,c), +(373,725,l), +(372,686,o), +(363,668,o), +(344,668,c), +(313,668,o), +(292,725,o), +(233,725,c), +(180,725,o), +(147,671,o), +(141,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = n; +}, +{ +pos = (41,0); +ref = tildecomb; +} +); +width = 574; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = n; +}, +{ +pos = (41,0); +ref = tilde; +} +); +width = 574; +} +); +unicode = 241; +}, +{ +color = 6; +glyphname = eng; +kernLeft = n; +kernRight = n; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(504,332,l), +(504,460,o), +(427,540,o), +(320,540,c), +(211,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,403,o), +(215,452,o), +(282,452,c), +(349,452,o), +(404,403,o), +(404,309,c), +(404,-7,l), +(404,-70,o), +(379,-94,o), +(322,-94,c), +(305,-94,o), +(284,-90,o), +(266,-83,c), +(266,-175,l), +(289,-182,o), +(312,-185,o), +(340,-185,c), +(446,-185,o), +(504,-123,o), +(504,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(462,-190,o), +(533,-125,o), +(533,4,c), +(533,334,l), +(533,466,o), +(460,544,o), +(356,544,c), +(245,544,o), +(176,457,o), +(176,304,c), +(202,304,l), +(202,375,o), +(240,412,o), +(293,412,c), +(346,412,o), +(384,375,o), +(384,304,c), +(384,9,l), +(384,-33,o), +(360,-54,o), +(314,-54,c), +(291,-54,o), +(271,-49,o), +(251,-42,c), +(251,-175,l), +(279,-184,o), +(307,-190,o), +(345,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,530,l), +(53,530,l), +(53,0,l) +); +} +); +width = 586; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(451,-185,o), +(509,-123,o), +(509,-10,c), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c), +(409,-7,l), +(409,-70,o), +(384,-94,o), +(327,-94,c), +(310,-94,o), +(289,-90,o), +(271,-83,c), +(271,-175,l), +(294,-182,o), +(317,-185,o), +(345,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,-185,o), +(509,-123,o), +(509,-10,c), +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c), +(409,-7,l), +(409,-70,o), +(384,-94,o), +(327,-94,c), +(310,-94,o), +(289,-90,o), +(271,-83,c), +(271,-175,l), +(294,-182,o), +(317,-185,o), +(345,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +width = 574; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(509,332,l), +(509,460,o), +(432,540,o), +(325,540,c), +(216,540,o), +(132,451,o), +(132,309,c), +(165,309,l), +(165,403,o), +(220,452,o), +(287,452,c), +(354,452,o), +(409,403,o), +(409,309,c), +(409,-7,l), +(409,-70,o), +(384,-94,o), +(327,-94,c), +(310,-94,o), +(289,-90,o), +(271,-83,c), +(271,-175,l), +(294,-182,o), +(317,-185,o), +(345,-185,c), +(451,-185,o), +(509,-123,o), +(509,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +} +); +width = 574; +} +); +unicode = 331; +}, +{ +color = 6; +glyphname = o; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (288,0); +}, +{ +name = ogonek; +pos = (377,0); +}, +{ +name = top; +pos = (288,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(441,-14,o), +(548,97,o), +(548,265,cs), +(548,433,o), +(441,544,o), +(288,544,cs), +(135,544,o), +(28,433,o), +(28,265,cs), +(28,97,o), +(135,-14,o), +(288,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(221,119,o), +(181,168,o), +(181,265,cs), +(181,362,o), +(221,411,o), +(288,411,cs), +(355,411,o), +(395,362,o), +(395,265,cs), +(395,168,o), +(355,119,o), +(288,119,cs) +); +} +); +width = 576; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = ogonek; +pos = (351,0); +}, +{ +name = top; +pos = (280,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(423,540,o), +(280,540,cs), +(138,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +} +); +width = 561; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +} +); +width = 561; +} +); +unicode = 111; +}, +{ +color = 10; +glyphname = oacute; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (157,0); +ref = acutecomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,585,l), +(423,725,l), +(297,725,l), +(227,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (120,0); +ref = acutecomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (120,0); +ref = acute; +} +); +width = 561; +} +); +unicode = 243; +}, +{ +color = 10; +glyphname = obreve; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = brevecomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(373,585,o), +(418,639,o), +(420,725,c), +(350,725,l), +(349,684,o), +(325,660,o), +(280,660,c), +(235,660,o), +(211,684,o), +(210,725,c), +(140,725,l), +(142,639,o), +(187,585,o), +(280,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = brevecomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = breve; +} +); +width = 561; +} +); +unicode = 335; +}, +{ +color = 10; +glyphname = ocircumflex; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = circumflexcomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(436,585,l), +(336,725,l), +(230,725,l), +(348,585,l) +); +}, +{ +closed = 1; +nodes = ( +(212,585,l), +(330,725,l), +(224,725,l), +(124,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = circumflexcomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = circumflex; +} +); +width = 561; +} +); +unicode = 244; +}, +{ +color = 10; +glyphname = odieresis; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = dieresiscomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(403,602,o), +(428,625,o), +(428,658,cs), +(428,692,o), +(403,715,o), +(371,715,cs), +(339,715,o), +(314,692,o), +(314,658,cs), +(314,625,o), +(339,602,o), +(371,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(221,602,o), +(246,625,o), +(246,658,cs), +(246,692,o), +(221,715,o), +(189,715,cs), +(157,715,o), +(132,692,o), +(132,658,cs), +(132,625,o), +(157,602,o), +(189,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = dieresiscomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = dieresis; +} +); +width = 561; +} +); +unicode = 246; +}, +{ +color = 10; +glyphname = odotbelow; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = dotbelow; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(315,-195,o), +(342,-170,o), +(342,-133,cs), +(342,-97,o), +(315,-72,o), +(280,-72,cs), +(245,-72,o), +(218,-97,o), +(218,-133,cs), +(218,-170,o), +(245,-195,o), +(280,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = dotbelow; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = dotbelow; +} +); +width = 561; +} +); +unicode = 7885; +}, +{ +color = 10; +glyphname = ograve; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 13:48:17 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = gravecomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(333,585,l), +(263,725,l), +(137,725,l), +(247,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = gravecomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = grave; +} +); +width = 561; +} +); +unicode = 242; +}, +{ +color = 10; +glyphname = ohungarumlaut; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 13:48:44 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (36,0); +ref = hungarumlautcomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(388,585,l), +(488,725,l), +(377,725,l), +(307,585,l) +); +}, +{ +closed = 1; +nodes = ( +(258,585,l), +(328,725,l), +(227,725,l), +(177,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = hungarumlautcomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = hungarumlaut; +} +); +width = 561; +} +); +unicode = 337; +}, +{ +color = 10; +glyphname = omacron; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = macroncomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(418,621,l), +(418,705,l), +(142,705,l), +(142,621,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = macroncomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = macron; +} +); +width = 561; +} +); +unicode = 333; +}, +{ +color = 10; +glyphname = oogonek; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 13:39:16 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(221,119,o), +(181,168,o), +(181,265,cs), +(181,362,o), +(221,411,o), +(288,411,cs), +(355,411,o), +(395,362,o), +(395,265,cs), +(395,168,o), +(355,119,o), +(288,119,cs) +); +}, +{ +closed = 1; +nodes = ( +(488,46,o), +(548,139,o), +(548,265,cs), +(548,433,o), +(441,544,o), +(288,544,cs), +(135,544,o), +(28,433,o), +(28,265,cs), +(28,97,o), +(135,-14,o), +(288,-14,cs), +(296,-14,o), +(304,-14,o), +(312,-13,c), +(309,1,l), +(207,-32,o), +(179,-69,o), +(179,-111,c), +(179,-156,o), +(218,-190,o), +(290,-190,cs), +(321,-190,o), +(357,-183,o), +(387,-170,c), +(378,-75,l), +(358,-87,o), +(332,-96,o), +(313,-96,c), +(298,-96,o), +(290,-89,o), +(290,-79,c), +(290,-60,o), +(318,-31,o), +(394,6,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = ogonekcomb; +} +); +width = 576; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(306,-185,o), +(341,-176,o), +(369,-165,c), +(360,-84,l), +(337,-94,o), +(303,-106,o), +(283,-106,c), +(270,-106,o), +(262,-101,o), +(262,-89,c), +(262,-65,o), +(297,-31,o), +(387,13,cs), +(471,54,o), +(523,144,o), +(523,265,cs), +(523,432,o), +(423,540,o), +(280,540,cs), +(138,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138,-10,o), +(280,-10,cs), +(286,-10,o), +(292,-10,o), +(298,-9,c), +(295,0,l), +(206,-37,o), +(178,-69,o), +(178,-111,c), +(178,-153,o), +(212,-185,o), +(277,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (47,0); +ref = ogonekcomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(206,-37,o), +(178,-69,o), +(178,-111,c), +(178,-153,o), +(212,-185,o), +(277,-185,cs), +(306,-185,o), +(341,-176,o), +(369,-165,c), +(360,-84,l), +(337,-94,o), +(303,-106,o), +(283,-106,c), +(270,-106,o), +(262,-101,o), +(262,-89,c), +(262,-65,o), +(297,-31,o), +(387,13,cs), +(471,54,o), +(523,144,o), +(523,265,cs), +(523,432,o), +(423,540,o), +(280,540,cs), +(138,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138,-10,o), +(280,-10,cs), +(286,-10,o), +(292,-10,o), +(298,-9,c), +(295,0,l) +); +} +); +width = 561; +} +); +unicode = 491; +}, +{ +color = 6; +glyphname = oslash; +kernLeft = G; +kernRight = M; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (288,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(141,0,l), +(574,530,l), +(435,530,l), +(2,0,l) +); +}, +{ +closed = 1; +nodes = ( +(441,-14,o), +(548,97,o), +(548,265,cs), +(548,433,o), +(441,544,o), +(288,544,cs), +(135,544,o), +(28,433,o), +(28,265,cs), +(28,97,o), +(135,-14,o), +(288,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(221,119,o), +(181,168,o), +(181,265,cs), +(181,362,o), +(221,411,o), +(288,411,cs), +(355,411,o), +(395,362,o), +(395,265,cs), +(395,168,o), +(355,119,o), +(288,119,cs) +); +} +); +width = 576; +}, +{ +anchors = ( +{ +name = top; +pos = (280,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(111,0,l), +(557,540,l), +(450,540,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(423,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(423,540,o), +(280,540,cs), +(138,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,0,l), +(557,540,l), +(450,540,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(423,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(423,540,o), +(280,540,cs), +(138,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +} +); +width = 561; +}, +{ +anchors = ( +{ +name = top; +pos = (280,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,0,l), +(557,540,l), +(450,540,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(423,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(423,540,o), +(280,540,cs), +(138,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +} +); +width = 561; +} +); +unicode = 248; +}, +{ +color = 10; +glyphname = oslashacute; +kernLeft = G; +kernRight = M; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = oslash; +}, +{ +pos = (157,0); +ref = acutecomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(111,0,l), +(557,540,l), +(450,540,l), +(4,0,l) +); +}, +{ +closed = 1; +nodes = ( +(423,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(423,540,o), +(280,540,cs), +(138,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,585,l), +(423,725,l), +(297,725,l), +(227,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = oslash; +}, +{ +pos = (120,0); +ref = acutecomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = oslash; +}, +{ +pos = (120,0); +ref = acute; +} +); +width = 561; +} +); +unicode = 511; +}, +{ +color = 10; +glyphname = otilde; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = o; +}, +{ +pos = (38,0); +ref = tildecomb; +} +); +width = 576; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = top; +pos = (280,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(422.966,-10,o), +(523,98,o), +(523,265,cs), +(523,432,o), +(422.966,540,o), +(280,540,cs), +(138.043,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(138.043,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(198,585,l), +(199,624,o), +(208,642,o), +(227,642,c), +(259,642,o), +(279,585,o), +(338,585,c), +(391,585,o), +(424,639,o), +(430,725,c), +(362,725,l), +(361,686,o), +(352,668,o), +(333,668,c), +(302,668,o), +(281,725,o), +(222,725,c), +(169,725,o), +(136,671,o), +(130,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = tildecomb; +} +); +width = 561; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = o; +}, +{ +pos = (30,0); +ref = tilde; +} +); +width = 561; +} +); +unicode = 245; +}, +{ +color = 6; +glyphname = oe; +kernLeft = o; +kernRight = o; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(418,-14,o), +(514,97,o), +(514,265,cs), +(514,433,o), +(418,544,o), +(278,544,cs), +(131,544,o), +(28,433,o), +(28,265,cs), +(28,97,o), +(131,-14,o), +(278,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(221,119,o), +(181,168,o), +(181,265,cs), +(181,362,o), +(221,411,o), +(288,411,cs), +(355,411,o), +(395,362,o), +(395,265,cs), +(395,168,o), +(355,119,o), +(288,119,cs) +); +}, +{ +closed = 1; +nodes = ( +(790,-14,o), +(869,48,o), +(891,140,c), +(750,176,l), +(736,133,o), +(702,113,o), +(658,113,c), +(590,113,o), +(548,161,o), +(548,265,c), +(548,376,o), +(588,419,o), +(650,419,c), +(717,419,o), +(753,377,o), +(753,265,c), +(795,323,l), +(479,323,l), +(479,223,l), +(904,223,l), +(905,237,o), +(906,250,o), +(906,265,c), +(906,434,o), +(805,544,o), +(660,544,c), +(525,544,o), +(428,433,o), +(428,265,c), +(428,98,o), +(527,-14,o), +(667,-14,c) +); +} +); +width = 934; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(409.141,-10,o), +(503,98,o), +(503,265,cs), +(503,432,o), +(409.141,540,o), +(275,540,cs), +(135.976,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135.976,-10,o), +(275,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(768.648,-10,o), +(847.799,41,o), +(882,131,c), +(789,168,l), +(764,108,o), +(722,84,o), +(663,84,c), +(576,84,o), +(523,141,o), +(523,265,c), +(523,398,o), +(578,454,o), +(661,454,c), +(739,454,o), +(790,398,o), +(790,265,c), +(819,310,l), +(501,310,l), +(501,231,l), +(893,231,l), +(894,247,o), +(894,254,o), +(894,265,c), +(894,438,o), +(800.06,540,o), +(666,540,c), +(532.802,540,o), +(439,438,o), +(439,265,c), +(439,98,o), +(530.975,-10,o), +(668,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(409,-10,o), +(503,98,o), +(503,265,cs), +(503,432,o), +(409,540,o), +(275,540,cs), +(136,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(136,-10,o), +(275,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137,o), +(142,265,cs), +(142,393,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,393,o), +(419,265,cs), +(419,137,o), +(364,80,o), +(280,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(769,-10,o), +(848,41,o), +(882,131,c), +(789,168,l), +(764,108,o), +(722,84,o), +(663,84,c), +(576,84,o), +(523,141,o), +(523,265,c), +(523,398,o), +(578,454,o), +(661,454,c), +(739,454,o), +(790,398,o), +(790,265,c), +(819,310,l), +(501,310,l), +(501,231,l), +(893,231,l), +(894,247,o), +(894,254,o), +(894,265,c), +(894,438,o), +(800,540,o), +(666,540,c), +(533,540,o), +(439,438,o), +(439,265,c), +(439,98,o), +(531,-10,o), +(668,-10,c) +); +} +); +width = 932; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(894,247,o), +(894,254,o), +(894,265,c), +(894,438,o), +(800.06,540,o), +(666,540,c), +(532.802,540,o), +(439,438,o), +(439,265,c), +(439,98,o), +(530.975,-10,o), +(668,-10,c), +(768.648,-10,o), +(847.799,41,o), +(882,131,c), +(789,168,l), +(764,108,o), +(722,84,o), +(663,84,c), +(576,84,o), +(523,141,o), +(523,265,c), +(523,398,o), +(578,454,o), +(661,454,c), +(739,454,o), +(790,398,o), +(790,265,c), +(819,310,l), +(501,310,l), +(501,231,l), +(893,231,l) +); +}, +{ +closed = 1; +nodes = ( +(409.141,-10,o), +(503,98,o), +(503,265,cs), +(503,432,o), +(409.141,540,o), +(275,540,cs), +(135.976,540,o), +(38,432,o), +(38,265,cs), +(38,98,o), +(135.976,-10,o), +(275,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,80,o), +(142,137.35,o), +(142,265,cs), +(142,392.65,o), +(197,450,o), +(280,450,cs), +(364,450,o), +(419,392.65,o), +(419,265,cs), +(419,137.35,o), +(364,80,o), +(280,80,cs) +); +} +); +width = 932; +} +); +unicode = 339; +}, +{ +color = 6; +glyphname = p; +kernLeft = p; +kernRight = o; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(476,-14,o), +(556,90,o), +(556,265,c), +(556,440,o), +(476,544,o), +(353,544,c), +(247,544,o), +(176,458,o), +(176,304,c), +(176,226,l), +(176,72,o), +(247,-14,o), +(353,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(202,-175,l), +(202,147,l), +(183,265,l), +(202,391,l), +(202,530,l), +(53,530,l), +(53,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(234,120,o), +(192,169,o), +(192,265,c), +(192,361,o), +(234,410,o), +(297,410,c), +(361,410,o), +(403,361,o), +(403,265,c), +(403,169,o), +(361,120,o), +(297,120,c) +); +} +); +width = 588; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l), +(137,74,o), +(211,-10,o), +(323,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,122,l), +(150,265,l), +(165,407,l), +(165,530,l), +(65,530,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(215,78,o), +(160,134.005,o), +(160,265,c), +(160,395.995,o), +(215,452,o), +(295,452,c), +(375,452,o), +(430,395.995,o), +(430,265,c), +(430,134.005,o), +(375,78,o), +(295,78,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l), +(137,74,o), +(211,-10,o), +(323,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,122,l), +(150,265,l), +(165,407,l), +(165,530,l), +(65,530,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(215,78,o), +(160,134,o), +(160,265,c), +(160,396,o), +(215,452,o), +(295,452,c), +(375,452,o), +(430,396,o), +(430,265,c), +(430,134,o), +(375,78,o), +(295,78,c) +); +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,122,l), +(150,265,l), +(165,407,l), +(165,530,l), +(65,530,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(375,452,o), +(430,395.995,o), +(430,265,c), +(430,134.005,o), +(375,78,o), +(295,78,c), +(215,78,o), +(160,134.005,o), +(160,265,c), +(160,395.995,o), +(215,452,o), +(295,452,c) +); +}, +{ +closed = 1; +nodes = ( +(137,74,o), +(211,-10,o), +(323,-10,c), +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l) +); +} +); +width = 572; +} +); +unicode = 112; +}, +{ +color = 6; +glyphname = thorn; +kernRight = o; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(476,-14,o), +(556,90,o), +(556,265,c), +(556,440,o), +(476,544,o), +(353,544,c), +(247,544,o), +(176,458,o), +(176,304,c), +(176,226,l), +(176,72,o), +(247,-14,o), +(353,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(202,-175,l), +(202,147,l), +(183,265,l), +(202,391,l), +(202,715,l), +(53,715,l), +(53,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(234,120,o), +(192,169,o), +(192,265,c), +(192,361,o), +(234,410,o), +(297,410,c), +(361,410,o), +(403,361,o), +(403,265,c), +(403,169,o), +(361,120,o), +(297,120,c) +); +} +); +width = 588; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l), +(137,74,o), +(211,-10,o), +(323,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,122,l), +(150,265,l), +(165,407,l), +(165,715,l), +(65,715,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(215,78,o), +(160,134.005,o), +(160,265,c), +(160,395.995,o), +(215,452,o), +(295,452,c), +(375,452,o), +(430,395.995,o), +(430,265,c), +(430,134.005,o), +(375,78,o), +(295,78,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l), +(137,74,o), +(211,-10,o), +(323,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,122,l), +(150,265,l), +(165,407,l), +(165,715,l), +(65,715,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(215,78,o), +(160,134,o), +(160,265,c), +(160,396,o), +(215,452,o), +(295,452,c), +(375,452,o), +(430,396,o), +(430,265,c), +(430,134,o), +(375,78,o), +(295,78,c) +); +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,122,l), +(150,265,l), +(165,407,l), +(165,715,l), +(65,715,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(375,452,o), +(430,395.995,o), +(430,265,c), +(430,134.005,o), +(375,78,o), +(295,78,c), +(215,78,o), +(160,134.005,o), +(160,265,c), +(160,395.995,o), +(215,452,o), +(295,452,c) +); +}, +{ +closed = 1; +nodes = ( +(137,74,o), +(211,-10,o), +(323,-10,c), +(446,-10,o), +(534,93,o), +(534,265,c), +(534,437,o), +(446,540,o), +(323,540,c), +(211,540,o), +(137,456,o), +(137,309,c), +(137,221,l) +); +} +); +width = 572; +} +); +unicode = 254; +}, +{ +color = 6; +glyphname = q; +kernLeft = o; +kernRight = q; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(341,-14,o), +(411,72,o), +(411,226,c), +(411,304,l), +(411,458,o), +(341,544,o), +(234,544,c), +(111,544,o), +(32,440,o), +(32,265,c), +(32,90,o), +(111,-14,o), +(234,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(226,120,o), +(185,169,o), +(185,265,c), +(185,361,o), +(226,410,o), +(290,410,c), +(354,410,o), +(395,361,o), +(395,265,c), +(395,169,o), +(354,120,o), +(290,120,c) +); +}, +{ +closed = 1; +nodes = ( +(534,-175,l), +(534,530,l), +(385,530,l), +(385,391,l), +(404,265,l), +(385,147,l), +(385,-175,l) +); +} +); +width = 587; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134.005,o), +(142,265,c), +(142,395.995,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,395.995,o), +(412,265,c), +(412,134.005,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(507,-175,l), +(507,530,l), +(407,530,l), +(407,407,l), +(422,265,l), +(407,122,l), +(407,-175,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,-10,o), +(435,74,o), +(435,221,c), +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(197,78,o), +(142,134,o), +(142,265,c), +(142,396,o), +(197,452,o), +(277,452,c), +(357,452,o), +(412,396,o), +(412,265,c), +(412,134,o), +(357,78,o), +(277,78,c) +); +}, +{ +closed = 1; +nodes = ( +(507,-175,l), +(507,530,l), +(407,530,l), +(407,407,l), +(422,265,l), +(407,122,l), +(407,-175,l) +); +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(507,530,l), +(407,530,l), +(407,407,l), +(422,265,l), +(407,122,l), +(407,-175,l), +(507,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(357,452,o), +(412,395.995,o), +(412,265,c), +(412,134.005,o), +(357,78,o), +(277,78,c), +(197,78,o), +(142,134.005,o), +(142,265,c), +(142,395.995,o), +(197,452,o), +(277,452,c) +); +}, +{ +closed = 1; +nodes = ( +(435,309,l), +(435,456,o), +(361,540,o), +(249,540,c), +(126,540,o), +(38,437,o), +(38,265,c), +(38,93,o), +(126,-10,o), +(249,-10,c), +(361,-10,o), +(435,74,o), +(435,221,c) +); +} +); +width = 572; +} +); +unicode = 113; +}, +{ +color = 6; +glyphname = r; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = top; +pos = (202,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(202,0,l), +(202,530,l), +(53,530,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(202,271,l), +(202,348,o), +(236,373,o), +(298,373,c), +(369,373,l), +(369,544,l), +(230,544,o), +(182,423,o), +(182,238,c) +); +} +); +width = 379; +}, +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (197,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (197,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,292,l), +(165,388.925,o), +(216.967,429,o), +(296,429,c), +(328,429,l), +(328,540,l), +(212,540,o), +(134,439,o), +(134,279,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,292,l), +(165,389,o), +(217,429,o), +(296,429,c), +(328,429,l), +(328,540,l), +(212,540,o), +(134,439,o), +(134,279,c) +); +} +); +width = 348; +}, +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (197,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(212,540,o), +(134,439,o), +(134,279,c), +(165,292,l), +(165,388.925,o), +(216.967,429,o), +(296,429,c), +(328,429,l), +(328,540,l) +); +} +); +width = 348; +} +); +unicode = 114; +}, +{ +color = 10; +glyphname = racute; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = r; +}, +{ +pos = (71,0); +ref = acutecomb; +} +); +width = 379; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (197,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,292,l), +(165,388.925,o), +(216.967,429,o), +(296,429,c), +(328,429,l), +(328,540,l), +(212,540,o), +(134,439,o), +(134,279,c) +); +}, +{ +closed = 1; +nodes = ( +(230,585,l), +(340,725,l), +(214,725,l), +(144,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = r; +}, +{ +pos = (37,0); +ref = acutecomb; +} +); +width = 348; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = r; +}, +{ +pos = (37,0); +ref = acute; +} +); +width = 348; +} +); +unicode = 341; +}, +{ +color = 10; +glyphname = rcaron; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = r; +}, +{ +pos = (-48,0); +ref = caroncomb; +} +); +width = 379; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (197,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,292,l), +(165,388.925,o), +(216.967,429,o), +(296,429,c), +(328,429,l), +(328,540,l), +(212,540,o), +(134,439,o), +(134,279,c) +); +}, +{ +closed = 1; +nodes = ( +(253,585,l), +(353,725,l), +(265,725,l), +(147,585,l) +); +}, +{ +closed = 1; +nodes = ( +(247,585,l), +(129,725,l), +(41,725,l), +(141,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-53,0); +ref = caroncomb; +} +); +width = 348; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-53,0); +ref = caron; +} +); +width = 348; +} +); +unicode = 345; +}, +{ +color = 10; +glyphname = rcedilla; +kernLeft = n; +kernRight = r; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = r; +}, +{ +pos = (-126,0); +ref = commaaccent; +} +); +width = 379; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = top; +pos = (197,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(165,292,l), +(165,388.925,o), +(216.967,429,o), +(296,429,c), +(328,429,l), +(328,540,l), +(212,540,o), +(134,439,o), +(134,279,c) +); +}, +{ +closed = 1; +nodes = ( +(131,-275,l), +(172,-72,l), +(68,-72,l), +(68,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-140,0); +ref = commaaccent; +} +); +width = 348; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-140,0); +ref = commaaccent; +} +); +width = 348; +} +); +unicode = 343; +}, +{ +color = 6; +glyphname = s; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (258,0); +}, +{ +name = top; +pos = (254,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(400,-14,o), +(485,54,o), +(485,158,c), +(485,373,o), +(180,316,o), +(180,393,c), +(180,412,o), +(198,429,o), +(246,429,c), +(299,429,o), +(326,408,o), +(341,362,c), +(476,404,l), +(446,494,o), +(372,544,o), +(254,544,c), +(117,544,o), +(38,475,o), +(38,375,c), +(38,171,o), +(334,232,o), +(334,142,c), +(334,117,o), +(315,102,o), +(263,102,c), +(207,102,o), +(173,127,o), +(158,183,c), +(20,140,l), +(40,36,o), +(121,-14,o), +(253,-14,c) +); +} +); +width = 510; +}, +{ +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(454,58,o), +(454,145,c), +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420.282,491,o), +(354,540,o), +(245,540,c), +(118.286,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(454,58,o), +(454,145,c), +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420,491,o), +(354,540,o), +(245,540,c), +(118,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c) +); +} +); +width = 492; +}, +{ +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(411.966,-10,o), +(509,98,o), +(509,265,cs), +(509,432,o), +(411.966,540,o), +(269,540,cs), +(127.043,540,o), +(30,432,o), +(30,265,cs), +(30,98,o), +(127.043,-10,o), +(269,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,65,o), +(134,127,o), +(134,265,cs), +(134,403,o), +(186,465,o), +(269,465,cs), +(353,465,o), +(405,403,o), +(405,265,cs), +(405,127,o), +(353,65,o), +(269,65,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420.282,491,o), +(354,540,o), +(245,540,c), +(118.286,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c), +(380,-10,o), +(454,58,o), +(454,145,c) +); +} +); +width = 492; +} +); +unicode = 115; +}, +{ +color = 10; +glyphname = sacute; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (123,0); +ref = acutecomb; +} +); +width = 510; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(454,58,o), +(454,145,c), +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420.282,491,o), +(354,540,o), +(245,540,c), +(118.286,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(279,585,l), +(389,725,l), +(263,725,l), +(193,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = s; +}, +{ +pos = (86,0); +ref = acutecomb; +} +); +width = 492; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = s; +}, +{ +pos = (86,0); +ref = acute; +} +); +width = 492; +} +); +unicode = 347; +}, +{ +color = 10; +glyphname = scaron; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (4,0); +ref = caroncomb; +} +); +width = 510; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(454,58,o), +(454,145,c), +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420.282,491,o), +(354,540,o), +(245,540,c), +(118.286,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(302,585,l), +(402,725,l), +(314,725,l), +(196,585,l) +); +}, +{ +closed = 1; +nodes = ( +(296,585,l), +(178,725,l), +(90,725,l), +(190,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-4,0); +ref = caroncomb; +} +); +width = 492; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-4,0); +ref = caron; +} +); +width = 492; +} +); +unicode = 353; +}, +{ +color = 10; +glyphname = scedilla; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (5,0); +ref = cedillacomb; +} +); +width = 510; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(454,58,o), +(454,145,c), +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420.282,491,o), +(354,540,o), +(245,540,c), +(118.286,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(297,-185,o), +(333,-151,o), +(333,-106,cs), +(333,-57,o), +(296,-29,o), +(248,-29,c), +(260,-43,l), +(266,9,l), +(210,11,l), +(197,-73,l), +(208,-71,o), +(215,-70,o), +(226,-70,c), +(250,-70,o), +(264,-79,o), +(264,-96,c), +(264,-110,o), +(251,-119,o), +(230,-119,c), +(210,-119,o), +(194,-114,o), +(176,-105,c), +(163,-169,l), +(188,-180,o), +(213,-185,o), +(239,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-6,0); +ref = cedillacomb; +} +); +width = 492; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-6,0); +ref = cedilla; +} +); +width = 492; +} +); +unicode = 351; +}, +{ +color = 10; +glyphname = scircumflex; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (4,0); +ref = circumflexcomb; +} +); +width = 510; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(454,58,o), +(454,145,c), +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420.282,491,o), +(354,540,o), +(245,540,c), +(118.286,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(402,585,l), +(302,725,l), +(196,725,l), +(314,585,l) +); +}, +{ +closed = 1; +nodes = ( +(178,585,l), +(296,725,l), +(190,725,l), +(90,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-4,0); +ref = circumflexcomb; +} +); +width = 492; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-4,0); +ref = circumflex; +} +); +width = 492; +} +); +unicode = 349; +}, +{ +color = 10; +glyphname = scommaaccent; +kernLeft = s; +kernRight = s; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = s; +}, +{ +pos = (114,0); +ref = commaaccentcomb; +} +); +width = 510; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(380,-10,o), +(454,58,o), +(454,145,c), +(454,350,o), +(147,293,o), +(147,400,c), +(147,435,o), +(179,459,o), +(237,459,c), +(295,459,o), +(334,433,o), +(358,368,c), +(449,399,l), +(420.282,491,o), +(354,540,o), +(245,540,c), +(118.286,540,o), +(48,474,o), +(48,391,c), +(48,199,o), +(355,261,o), +(355,138,c), +(355,95,o), +(315,71,o), +(255,71,c), +(188,71,o), +(145,97,o), +(122,164,c), +(28,134,l), +(57,39,o), +(128,-10,o), +(248,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(262,-275,l), +(303,-72,l), +(199,-72,l), +(199,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = s; +}, +{ +pos = (105,0); +ref = commaaccentcomb; +} +); +width = 492; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = s; +}, +{ +pos = (-9,0); +ref = commaaccent; +} +); +width = 492; +} +); +unicode = 537; +}, +{ +color = 6; +glyphname = germandbls; +lastChange = "2024-04-04 09:29:08 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(135,725,o), +(65,648,o), +(65,504,c), +(65,0,l), +(165,0,l), +(165,511,l), +(165,585,o), +(200,636,o), +(270,636,c), +(335,636,o), +(368,605,o), +(368,555,c), +(368,484,o), +(265,460,o), +(265,372,c), +(265,246,o), +(446,247,o), +(446,146,c), +(446,105,o), +(411,80,o), +(362,80,c), +(322,80,o), +(292,91,o), +(251,115,c), +(216,25,l), +(255,4,o), +(301,-10,o), +(359,-10,c), +(480,-10,o), +(545,58,o), +(545,151,c), +(545,304,o), +(360,325,o), +(360,381,c), +(360,428,o), +(468,439,o), +(468,566,c), +(468,654,o), +(389,725,o), +(271,725,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(500,-14,o), +(573,58,o), +(573,151,cs), +(573,315,o), +(407,336,o), +(407,381,cs), +(407,422,o), +(493,434,o), +(493,555,cs), +(493,658,o), +(411,730,o), +(286,730,cs), +(141,730,o), +(53,650,o), +(53,491,cs), +(53,0,l), +(202,0,l), +(202,501,ls), +(202,563,o), +(228,593,o), +(279,593,cs), +(325,593,o), +(350,569,o), +(350,537,cs), +(350,474,o), +(252,450,o), +(252,372,cs), +(252,254,o), +(427,250,o), +(427,159,cs), +(427,126,o), +(403,102,o), +(362,102,cs), +(331,102,o), +(299,115,o), +(268,136,c), +(219,29,l), +(262,4,o), +(311,-14,o), +(372,-14,cs) +); +} +); +width = 593; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(480,-10,o), +(545,58,o), +(545,151,c), +(545,304,o), +(360,325,o), +(360,381,c), +(360,428,o), +(468,439,o), +(468,566,c), +(468,654,o), +(389,725,o), +(271,725,c), +(135,725,o), +(65,648,o), +(65,504,c), +(65,0,l), +(165,0,l), +(165,511,l), +(165,585,o), +(200,636,o), +(270,636,c), +(335,636,o), +(368,605,o), +(368,555,c), +(368,484,o), +(265,460,o), +(265,372,c), +(265,246,o), +(446,247,o), +(446,146,c), +(446,105,o), +(411,80,o), +(362,80,c), +(322,80,o), +(292,91,o), +(251,115,c), +(216,25,l), +(255,4,o), +(301,-10,o), +(359,-10,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(480,-10,o), +(545,58,o), +(545,151,cs), +(545,304,o), +(360,325,o), +(360,381,cs), +(360,428,o), +(468,439,o), +(468,566,cs), +(468,654,o), +(389,725,o), +(271,725,cs), +(135,725,o), +(65,648,o), +(65,504,cs), +(65,0,l), +(165,0,l), +(165,511,ls), +(165,585,o), +(200,636,o), +(270,636,cs), +(335,636,o), +(368,605,o), +(368,555,cs), +(368,484,o), +(265,460,o), +(265,372,cs), +(265,246,o), +(446,247,o), +(446,146,cs), +(446,105,o), +(411,80,o), +(362,80,cs), +(322,80,o), +(292,91,o), +(251,115,c), +(216,25,l), +(255,4,o), +(301,-10,o), +(359,-10,cs) +); +} +); +width = 579; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(135,725,o), +(65,648,o), +(65,504,c), +(65,0,l), +(165,0,l), +(165,511,l), +(165,585,o), +(200,636,o), +(270,636,c), +(335,636,o), +(368,605,o), +(368,555,c), +(368,484,o), +(265,460,o), +(265,372,c), +(265,246,o), +(446,247,o), +(446,146,c), +(446,105,o), +(411,80,o), +(362,80,c), +(322,80,o), +(292,91,o), +(251,115,c), +(216,25,l), +(255,4,o), +(301,-10,o), +(359,-10,c), +(480,-10,o), +(545,58,o), +(545,151,c), +(545,304,o), +(360,325,o), +(360,381,c), +(360,428,o), +(468,439,o), +(468,566,c), +(468,654,o), +(389,725,o), +(271,725,c) +); +} +); +width = 579; +} +); +unicode = 223; +}, +{ +color = 6; +glyphname = t; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-22 13:30:23 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (241,0); +}, +{ +name = center; +pos = (191,265); +}, +{ +name = top; +pos = (191,669); +}, +{ +name = topright; +pos = (392,679); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(305,-14,o), +(337,-9,o), +(368,0,c), +(368,133,l), +(347,127,o), +(327,122,o), +(303,122,c), +(252,122,o), +(223,149,o), +(223,203,c), +(223,669,l), +(74,640,l), +(74,186,l), +(74,53,o), +(146,-14,o), +(262,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(363,407,l), +(363,530,l), +(8,530,l), +(8,407,l) +); +} +); +width = 382; +}, +{ +anchors = ( +{ +name = bottom; +pos = (220,0); +}, +{ +name = center; +pos = (184,265); +}, +{ +name = top; +pos = (184,660); +}, +{ +name = topright; +pos = (467,715); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (217,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(288.096,-10,o), +(314.988,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c), +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(145.844,-10,o), +(250,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(338,443,l), +(338,530,l), +(10,530,l), +(10,443,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(315,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c), +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(146,-10,o), +(250,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(338,443,l), +(338,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 367; +}, +{ +anchors = ( +{ +name = bottom; +pos = (217,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(145.844,-10,o), +(250,-10,c), +(288.096,-10,o), +(314.988,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c) +); +}, +{ +closed = 1; +nodes = ( +(10,443,l), +(338,443,l), +(338,530,l), +(10,530,l) +); +} +); +width = 367; +} +); +unicode = 116; +}, +{ +color = 6; +glyphname = tbar; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(5,277,l), +(333,277,l), +(333,363,l), +(5,363,l) +); +}, +{ +closed = 1; +nodes = ( +(180,660,l), +(80,640,l), +(80,155,l), +(80,45,o), +(141,-10,o), +(245,-10,c), +(283,-10,o), +(310,-7,o), +(338,0,c), +(338,94,l), +(315,88,o), +(293,84,o), +(266,84,c), +(210,84,o), +(180,112,o), +(180,173,c) +); +}, +{ +closed = 1; +nodes = ( +(5,443,l), +(333,443,l), +(333,530,l), +(5,530,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(305,-14,o), +(337,-9,o), +(368,0,c), +(368,133,l), +(347,127,o), +(327,122,o), +(303,122,c), +(252,122,o), +(223,149,o), +(223,203,c), +(223,669,l), +(74,640,l), +(74,186,l), +(74,53,o), +(146,-14,o), +(262,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(363,234,l), +(363,349,l), +(8,349,l), +(8,234,l) +); +}, +{ +closed = 1; +nodes = ( +(363,407,l), +(363,530,l), +(8,530,l), +(8,407,l) +); +} +); +width = 382; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(315,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c), +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(146,-10,o), +(250,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(338,277,l), +(338,363,l), +(10,363,l), +(10,277,l) +); +}, +{ +closed = 1; +nodes = ( +(338,443,l), +(338,530,l), +(10,530,l), +(10,443,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(315,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c), +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(146,-10,o), +(250,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(338,277,l), +(338,363,l), +(10,363,l), +(10,277,l) +); +}, +{ +closed = 1; +nodes = ( +(338,443,l), +(338,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 367; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(10,277,l), +(338,277,l), +(338,363,l), +(10,363,l) +); +}, +{ +closed = 1; +nodes = ( +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(146,-10,o), +(250,-10,c), +(288,-10,o), +(315,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c) +); +}, +{ +closed = 1; +nodes = ( +(10,443,l), +(338,443,l), +(338,530,l), +(10,530,l) +); +} +); +width = 367; +} +); +unicode = 359; +}, +{ +color = 10; +glyphname = tcaron; +kernLeft = t; +kernRight = tcaron; +lastChange = "2024-03-22 12:19:56 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = t; +}, +{ +pos = (305,-36); +ref = caroncomb.alt; +} +); +width = 382; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(288,-10,o), +(315,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c), +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(146,-10,o), +(250,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(268,443,l), +(268,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(378,417,l), +(422,690,l), +(318,690,l), +(318,417,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = t; +}, +{ +pos = (276,0); +ref = caroncomb.alt; +} +); +width = 367; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,417,l), +(378,417,l), +(422,690,l), +(318,690,l) +); +}, +{ +closed = 1; +nodes = ( +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(146,-10,o), +(250,-10,c), +(288,-10,o), +(315,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c) +); +}, +{ +closed = 1; +nodes = ( +(10,443,l), +(268,443,l), +(268,530,l), +(10,530,l) +); +} +); +width = 392; +} +); +unicode = 357; +}, +{ +color = 10; +glyphname = tcedilla; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-22 12:51:59 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = t; +}, +{ +pos = (-12,0); +ref = cedillacomb; +} +); +width = 382; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (217,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(288.096,-10,o), +(314.988,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c), +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(145.844,-10,o), +(250,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(338,443,l), +(338,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(268,-185,o), +(304,-151,o), +(304,-106,cs), +(304,-57,o), +(267,-29,o), +(219,-29,c), +(231,-43,l), +(237,9,l), +(181,11,l), +(168,-73,l), +(179,-71,o), +(186,-70,o), +(197,-70,c), +(221,-70,o), +(235,-79,o), +(235,-96,c), +(235,-110,o), +(222,-119,o), +(201,-119,c), +(181,-119,o), +(165,-114,o), +(147,-105,c), +(134,-169,l), +(159,-180,o), +(184,-185,o), +(210,-185,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-32,0); +ref = cedillacomb; +} +); +width = 367; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-32,0); +ref = cedilla; +} +); +width = 367; +} +); +unicode = 355; +}, +{ +color = 10; +glyphname = tcommaaccent; +kernLeft = t; +kernRight = t; +lastChange = "2024-03-22 12:51:59 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = t; +}, +{ +pos = (97,0); +ref = commaaccentcomb; +} +); +width = 382; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (217,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(288.096,-10,o), +(314.988,-7,o), +(343,0,c), +(343,94,l), +(320,88,o), +(298,84,o), +(271,84,c), +(215,84,o), +(185,112,o), +(185,173,c), +(185,660,l), +(85,640,l), +(85,155,l), +(85,45,o), +(145.844,-10,o), +(250,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(338,443,l), +(338,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(233,-275,l), +(274,-72,l), +(170,-72,l), +(170,-275,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = t; +}, +{ +pos = (79,0); +ref = commaaccentcomb; +} +); +width = 367; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = t; +}, +{ +pos = (-35,0); +ref = commaaccent; +} +); +width = 367; +} +); +unicode = 539; +}, +{ +color = 6; +glyphname = u; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (293,0); +}, +{ +name = ogonek; +pos = (532,0); +}, +{ +name = top; +pos = (293,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(340,-14,o), +(410,73,o), +(410,226,c), +(383,226,l), +(383,155,o), +(346,118,o), +(293,118,c), +(239,118,o), +(202,155,o), +(202,226,c), +(202,530,l), +(53,530,l), +(53,196,l), +(53,64,o), +(126,-14,o), +(230,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(532,0,l), +(532,530,l), +(383,530,l), +(383,0,l) +); +} +); +width = 585; +}, +{ +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = ogonek; +pos = (505,0); +}, +{ +name = top; +pos = (285,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +} +); +width = 570; +}, +{ +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,530,l), +(405,0,l), +(505,0,l), +(505,530,l) +); +}, +{ +closed = 1; +nodes = ( +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c), +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c) +); +} +); +width = 570; +} +); +unicode = 117; +}, +{ +color = 10; +glyphname = uacute; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (162,0); +ref = acutecomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(318,585,l), +(428,725,l), +(302,725,l), +(232,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (125,0); +ref = acutecomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (125,0); +ref = acute; +} +); +width = 570; +} +); +unicode = 250; +}, +{ +color = 10; +glyphname = ubreve; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = brevecomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(378,585,o), +(423,639,o), +(425,725,c), +(355,725,l), +(354,684,o), +(330,660,o), +(285,660,c), +(240,660,o), +(216,684,o), +(215,725,c), +(145,725,l), +(147,639,o), +(192,585,o), +(285,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = brevecomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = breve; +} +); +width = 570; +} +); +unicode = 365; +}, +{ +color = 10; +glyphname = ucircumflex; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = circumflexcomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(441,585,l), +(341,725,l), +(235,725,l), +(353,585,l) +); +}, +{ +closed = 1; +nodes = ( +(217,585,l), +(335,725,l), +(229,725,l), +(129,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = circumflexcomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = circumflex; +} +); +width = 570; +} +); +unicode = 251; +}, +{ +color = 10; +glyphname = udieresis; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = dieresiscomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(408,602,o), +(433,625,o), +(433,658,cs), +(433,692,o), +(408,715,o), +(376,715,cs), +(344,715,o), +(319,692,o), +(319,658,cs), +(319,625,o), +(344,602,o), +(376,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(226,602,o), +(251,625,o), +(251,658,cs), +(251,692,o), +(226,715,o), +(194,715,cs), +(162,715,o), +(137,692,o), +(137,658,cs), +(137,625,o), +(162,602,o), +(194,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = dieresiscomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = dieresis; +} +); +width = 570; +} +); +unicode = 252; +}, +{ +color = 10; +glyphname = udotbelow; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = dotbelow; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(320,-195,o), +(347,-170,o), +(347,-133,cs), +(347,-97,o), +(320,-72,o), +(285,-72,cs), +(250,-72,o), +(223,-97,o), +(223,-133,cs), +(223,-170,o), +(250,-195,o), +(285,-195,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = dotbelow; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = dotbelow; +} +); +width = 570; +} +); +unicode = 7909; +}, +{ +color = 10; +glyphname = ugrave; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 13:48:17 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = gravecomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(338,585,l), +(268,725,l), +(142,725,l), +(252,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = gravecomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = grave; +} +); +width = 570; +} +); +unicode = 249; +}, +{ +color = 10; +glyphname = uhungarumlaut; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 13:48:44 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (41,0); +ref = hungarumlautcomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(393,585,l), +(493,725,l), +(382,725,l), +(312,585,l) +); +}, +{ +closed = 1; +nodes = ( +(263,585,l), +(333,725,l), +(232,725,l), +(182,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = hungarumlautcomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = hungarumlaut; +} +); +width = 570; +} +); +unicode = 369; +}, +{ +color = 10; +glyphname = umacron; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = macroncomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(423,621,l), +(423,705,l), +(147,705,l), +(147,621,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = macroncomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = macron; +} +); +width = 570; +} +); +unicode = 363; +}, +{ +color = 10; +glyphname = uogonek; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 13:39:31 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (193,0); +ref = ogonekcomb; +} +); +width = 585; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(442,-185,o), +(477,-176,o), +(505,-165,c), +(496,-84,l), +(473,-94,o), +(439,-106,o), +(419,-106,c), +(406,-106,o), +(398,-101,o), +(398,-89,c), +(398,-65,o), +(435,-34,o), +(505,0,c), +(405,0,l), +(337,-37,o), +(314,-69,o), +(314,-111,c), +(314,-153,o), +(348,-185,o), +(413,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (201,0); +ref = ogonekcomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,-37,o), +(314,-69,o), +(314,-111,c), +(314,-153,o), +(348,-185,o), +(413,-185,cs), +(442,-185,o), +(477,-176,o), +(505,-165,c), +(496,-84,l), +(473,-94,o), +(439,-106,o), +(419,-106,c), +(406,-106,o), +(398,-101,o), +(398,-89,c), +(398,-65,o), +(435,-34,o), +(505,0,c), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(405,530,l), +(405,0,l), +(505,0,l), +(505,530,l) +); +}, +{ +closed = 1; +nodes = ( +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c), +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127,o), +(165,221,c) +); +} +); +width = 570; +} +); +unicode = 371; +}, +{ +color = 10; +glyphname = uring; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (143,0); +ref = ringcomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(341,575,o), +(382,611,o), +(382,666,cs), +(382,722,o), +(341,758,o), +(285,758,cs), +(229,758,o), +(188,722,o), +(188,666,cs), +(188,611,o), +(229,575,o), +(285,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(264,630,o), +(251,646,o), +(251,666,cs), +(251,687,o), +(264,703,o), +(285,703,cs), +(306,703,o), +(319,687,o), +(319,666,cs), +(319,646,o), +(306,630,o), +(285,630,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (135,0); +ref = ringcomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (135,0); +ref = ring; +} +); +width = 570; +} +); +unicode = 367; +}, +{ +color = 10; +glyphname = utilde; +kernLeft = u; +kernRight = i; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = u; +}, +{ +pos = (43,0); +ref = tildecomb; +} +); +width = 585; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(356,-10,o), +(438,79,o), +(438,221,c), +(405,221,l), +(405,127.277,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127.277,o), +(165,221,c), +(165,530,l), +(65,530,l), +(65,198,l), +(65,70,o), +(140,-10,o), +(247,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(203,585,l), +(204,624,o), +(213,642,o), +(232,642,c), +(264,642,o), +(284,585,o), +(343,585,c), +(396,585,o), +(429,639,o), +(435,725,c), +(367,725,l), +(366,686,o), +(357,668,o), +(338,668,c), +(307,668,o), +(286,725,o), +(227,725,c), +(174,725,o), +(141,671,o), +(135,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = tildecomb; +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = u; +}, +{ +pos = (35,0); +ref = tilde; +} +); +width = 570; +} +); +unicode = 361; +}, +{ +color = 6; +glyphname = v; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(300,0,l), +(166,530,l), +(5,530,l), +(154,0,l) +); +}, +{ +closed = 1; +nodes = ( +(388,0,l), +(537,530,l), +(380,530,l), +(251,0,l) +); +} +); +width = 542; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(331,0,l), +(500,530,l), +(399,530,l), +(238,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(331,0,l), +(500,530,l), +(399,530,l), +(238,0,l) +); +} +); +width = 508; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(331,0,l), +(500,530,l), +(399,530,l), +(238,0,l) +); +} +); +width = 508; +} +); +unicode = 118; +}, +{ +color = 6; +glyphname = w; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (426,0); +}, +{ +name = top; +pos = (426,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(257,0,l), +(161,530,l), +(10,530,l), +(122,0,l) +); +}, +{ +closed = 1; +nodes = ( +(350,0,l), +(445,530,l), +(319,530,l), +(222,0,l) +); +}, +{ +closed = 1; +nodes = ( +(637,0,l), +(537,530,l), +(405,530,l), +(502,0,l) +); +}, +{ +closed = 1; +nodes = ( +(729,0,l), +(841,530,l), +(694,530,l), +(602,0,l) +); +} +); +width = 851; +}, +{ +anchors = ( +{ +name = bottom; +pos = (384,0); +}, +{ +name = top; +pos = (384,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (384,0); +}, +{ +name = top; +pos = (384,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(111,530,l), +(10,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(407,530,l), +(322,530,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(451,530,l), +(361,530,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,0,l), +(758,530,l), +(661,530,l), +(541,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(111,530,l), +(10,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(407,530,l), +(322,530,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(451,530,l), +(361,530,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,0,l), +(758,530,l), +(661,530,l), +(541,0,l) +); +} +); +width = 768; +}, +{ +anchors = ( +{ +name = bottom; +pos = (385,0); +}, +{ +name = top; +pos = (385,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(111,530,l), +(10,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(407,530,l), +(322,530,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(451,530,l), +(361,530,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,0,l), +(758,530,l), +(661,530,l), +(541,0,l) +); +} +); +width = 768; +} +); +unicode = 119; +}, +{ +color = 10; +glyphname = wacute; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (295,0); +ref = acutecomb; +} +); +width = 851; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (384,0); +}, +{ +name = top; +pos = (384,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(111,530,l), +(10,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(407,530,l), +(322,530,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(451,530,l), +(361,530,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,0,l), +(758,530,l), +(661,530,l), +(541,0,l) +); +}, +{ +closed = 1; +nodes = ( +(417,585,l), +(527,725,l), +(401,725,l), +(331,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = w; +}, +{ +pos = (224,0); +ref = acutecomb; +} +); +width = 768; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = w; +}, +{ +pos = (224,0); +ref = acute; +} +); +width = 768; +} +); +unicode = 7811; +}, +{ +color = 10; +glyphname = wcircumflex; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (176,0); +ref = circumflexcomb; +} +); +width = 851; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (384,0); +}, +{ +name = top; +pos = (384,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(111,530,l), +(10,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(407,530,l), +(322,530,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(451,530,l), +(361,530,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,0,l), +(758,530,l), +(661,530,l), +(541,0,l) +); +}, +{ +closed = 1; +nodes = ( +(540,585,l), +(440,725,l), +(334,725,l), +(452,585,l) +); +}, +{ +closed = 1; +nodes = ( +(316,585,l), +(434,725,l), +(328,725,l), +(228,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = w; +}, +{ +pos = (134,0); +ref = circumflexcomb; +} +); +width = 768; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = w; +}, +{ +pos = (134,0); +ref = circumflex; +} +); +width = 768; +} +); +unicode = 373; +}, +{ +color = 10; +glyphname = wdieresis; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (176,0); +ref = dieresiscomb; +} +); +width = 851; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (384,0); +}, +{ +name = top; +pos = (384,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(111,530,l), +(10,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(407,530,l), +(322,530,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(451,530,l), +(361,530,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,0,l), +(758,530,l), +(661,530,l), +(541,0,l) +); +}, +{ +closed = 1; +nodes = ( +(507,602,o), +(532,625,o), +(532,658,cs), +(532,692,o), +(507,715,o), +(475,715,cs), +(443,715,o), +(418,692,o), +(418,658,cs), +(418,625,o), +(443,602,o), +(475,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(325,602,o), +(350,625,o), +(350,658,cs), +(350,692,o), +(325,715,o), +(293,715,cs), +(261,715,o), +(236,692,o), +(236,658,cs), +(236,625,o), +(261,602,o), +(293,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = w; +}, +{ +pos = (134,0); +ref = dieresiscomb; +} +); +width = 768; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = w; +}, +{ +pos = (134,0); +ref = dieresis; +} +); +width = 768; +} +); +unicode = 7813; +}, +{ +color = 10; +glyphname = wgrave; +kernLeft = w; +kernRight = w; +lastChange = "2024-03-21 13:48:17 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = w; +}, +{ +pos = (176,0); +ref = gravecomb; +} +); +width = 851; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (384,0); +}, +{ +name = top; +pos = (384,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(111,530,l), +(10,530,l), +(141,0,l) +); +}, +{ +closed = 1; +nodes = ( +(283,0,l), +(407,530,l), +(322,530,l), +(197,0,l) +); +}, +{ +closed = 1; +nodes = ( +(579,0,l), +(451,530,l), +(361,530,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(627,0,l), +(758,530,l), +(661,530,l), +(541,0,l) +); +}, +{ +closed = 1; +nodes = ( +(437,585,l), +(367,725,l), +(241,725,l), +(351,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = w; +}, +{ +pos = (134,0); +ref = gravecomb; +} +); +width = 768; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = w; +}, +{ +pos = (134,0); +ref = grave; +} +); +width = 768; +} +); +unicode = 7809; +}, +{ +color = 6; +glyphname = x; +kernLeft = x; +kernRight = x; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(517,0,l), +(183,530,l), +(15,530,l), +(349,0,l) +); +}, +{ +closed = 1; +nodes = ( +(168,0,l), +(285,209,l), +(326,253,l), +(507,530,l), +(344,530,l), +(237,337,l), +(195,292,l), +(5,0,l) +); +} +); +width = 522; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(491,0,l), +(141,530,l), +(25,530,l), +(375,0,l) +); +}, +{ +closed = 1; +nodes = ( +(126,0,l), +(261,218,l), +(296,253,l), +(481,530,l), +(370,530,l), +(245,328,l), +(210,292,l), +(15,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(491,0,l), +(141,530,l), +(25,530,l), +(375,0,l) +); +}, +{ +closed = 1; +nodes = ( +(126,0,l), +(261,218,l), +(296,253,l), +(481,530,l), +(370,530,l), +(245,328,l), +(210,292,l), +(15,0,l) +); +} +); +width = 506; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(491,0,l), +(141,530,l), +(25,530,l), +(375,0,l) +); +}, +{ +closed = 1; +nodes = ( +(261,218,l), +(296,253,l), +(481,530,l), +(370,530,l), +(245,328,l), +(210,292,l), +(15,0,l), +(126,0,l) +); +} +); +width = 506; +} +); +unicode = 120; +}, +{ +color = 6; +glyphname = y; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (275,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(268,-190,o), +(344,-154,o), +(388,0,cs), +(537,530,l), +(380,530,l), +(250,0,ls), +(241,-38,o), +(209,-58,o), +(148,-58,c), +(111,-58,o), +(77,-50,o), +(49,-42,c), +(49,-175,l), +(85,-185,o), +(121,-190,o), +(164,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(166,530,l), +(5,530,l), +(154,0,l) +); +} +); +width = 542; +}, +{ +anchors = ( +{ +name = top; +pos = (258,530); +} +); +background = { +anchors = ( +{ +name = top; +pos = (258,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +} +); +width = 508; +}, +{ +anchors = ( +{ +name = top; +pos = (258,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c), +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls) +); +} +); +width = 508; +} +); +unicode = 121; +}, +{ +color = 10; +glyphname = yacute; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (144,0); +ref = acutecomb; +} +); +width = 542; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (258,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(291,585,l), +(401,725,l), +(275,725,l), +(205,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = y; +}, +{ +pos = (98,0); +ref = acutecomb; +} +); +width = 508; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = y; +}, +{ +pos = (98,0); +ref = acute; +} +); +width = 508; +} +); +unicode = 253; +}, +{ +color = 10; +glyphname = ycircumflex; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (25,0); +ref = circumflexcomb; +} +); +width = 542; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (258,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(414,585,l), +(314,725,l), +(208,725,l), +(326,585,l) +); +}, +{ +closed = 1; +nodes = ( +(190,585,l), +(308,725,l), +(202,725,l), +(102,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = circumflexcomb; +} +); +width = 508; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = circumflex; +} +); +width = 508; +} +); +unicode = 375; +}, +{ +color = 10; +glyphname = ydieresis; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (25,0); +ref = dieresiscomb; +} +); +width = 542; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (258,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(381,602,o), +(406,625,o), +(406,658,cs), +(406,692,o), +(381,715,o), +(349,715,cs), +(317,715,o), +(292,692,o), +(292,658,cs), +(292,625,o), +(317,602,o), +(349,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,602,o), +(224,625,o), +(224,658,cs), +(224,692,o), +(199,715,o), +(167,715,cs), +(135,715,o), +(110,692,o), +(110,658,cs), +(110,625,o), +(135,602,o), +(167,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = dieresiscomb; +} +); +width = 508; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = dieresis; +} +); +width = 508; +} +); +unicode = 255; +}, +{ +color = 10; +glyphname = ygrave; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 13:48:17 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (25,0); +ref = gravecomb; +} +); +width = 542; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (258,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(311,585,l), +(241,725,l), +(115,725,l), +(225,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = gravecomb; +} +); +width = 508; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = grave; +} +); +width = 508; +} +); +unicode = 7923; +}, +{ +color = 10; +glyphname = ymacron; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (25,0); +ref = macroncomb; +} +); +width = 542; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (258,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(396,621,l), +(396,705,l), +(120,705,l), +(120,621,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = macroncomb; +} +); +width = 508; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = macron; +} +); +width = 508; +} +); +unicode = 563; +}, +{ +color = 10; +glyphname = ytilde; +kernLeft = v; +kernRight = v; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = y; +}, +{ +pos = (25,0); +ref = tildecomb; +} +); +width = 542; +}, +{ +background = { +anchors = ( +{ +name = top; +pos = (258,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(225,-185,o), +(285,-144,o), +(331,0,cs), +(500,530,l), +(399,530,l), +(238,0,ls), +(216,-72,o), +(182,-94,o), +(121,-94,c), +(98,-94,o), +(74,-90,o), +(50,-83,c), +(50,-175,l), +(73,-182,o), +(96,-185,o), +(125,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(278,0,l), +(113,530,l), +(8,530,l), +(177,0,l) +); +}, +{ +closed = 1; +nodes = ( +(176,585,l), +(177,624,o), +(186,642,o), +(205,642,c), +(237,642,o), +(257,585,o), +(316,585,c), +(369,585,o), +(402,639,o), +(408,725,c), +(340,725,l), +(339,686,o), +(330,668,o), +(311,668,c), +(280,668,o), +(259,725,o), +(200,725,c), +(147,725,o), +(114,671,o), +(108,585,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = tildecomb; +} +); +width = 508; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = y; +}, +{ +pos = (8,0); +ref = tilde; +} +); +width = 508; +} +); +unicode = 7929; +}, +{ +color = 6; +glyphname = z; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (250,0); +}, +{ +name = center; +pos = (250,265); +}, +{ +name = top; +pos = (250,530); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(471,0,l), +(471,123,l), +(223,123,l), +(461,433,l), +(461,530,l), +(38,530,l), +(38,407,l), +(266,407,l), +(28,97,l), +(28,0,l) +); +} +); +width = 499; +}, +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = center; +pos = (244,265); +}, +{ +name = top; +pos = (244,530); +} +); +background = { +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = center; +pos = (244,265); +}, +{ +name = top; +pos = (244,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(153,52,l), +(440,478,l), +(324,478,l), +(37,52,l) +); +}, +{ +closed = 1; +nodes = ( +(450,0,l), +(450,87,l), +(77,87,l), +(37,52,l), +(37,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,443,l), +(440,478,l), +(440,530,l), +(47,530,l), +(47,443,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,0,l), +(450,87,l), +(177,87,l), +(440,478,l), +(440,530,l), +(47,530,l), +(47,443,l), +(300,443,l), +(37,52,l), +(37,0,l) +); +} +); +width = 487; +}, +{ +anchors = ( +{ +name = bottom; +pos = (251,0); +}, +{ +name = top; +pos = (251,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(47,443,l), +(400,443,l), +(440,478,l), +(440,530,l), +(47,530,l) +); +}, +{ +closed = 1; +nodes = ( +(37,0,l), +(450,0,l), +(450,87,l), +(77,87,l), +(37,52,l) +); +}, +{ +closed = 1; +nodes = ( +(153,52,l), +(440,478,l), +(324,478,l), +(37,52,l) +); +} +); +width = 487; +} +); +unicode = 122; +}, +{ +color = 10; +glyphname = zacute; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = z; +}, +{ +pos = (119,0); +ref = acutecomb; +} +); +width = 499; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = center; +pos = (244,265); +}, +{ +name = top; +pos = (244,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(153,52,l), +(440,478,l), +(324,478,l), +(37,52,l) +); +}, +{ +closed = 1; +nodes = ( +(450,0,l), +(450,87,l), +(77,87,l), +(37,52,l), +(37,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,443,l), +(440,478,l), +(440,530,l), +(47,530,l), +(47,443,l) +); +}, +{ +closed = 1; +nodes = ( +(277,585,l), +(387,725,l), +(261,725,l), +(191,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = z; +}, +{ +pos = (84,0); +ref = acutecomb; +} +); +width = 487; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = z; +}, +{ +pos = (84,0); +ref = acute; +} +); +width = 487; +} +); +unicode = 378; +}, +{ +color = 10; +glyphname = zcaron; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = z; +}, +{ +ref = caroncomb; +} +); +width = 499; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = center; +pos = (244,265); +}, +{ +name = top; +pos = (244,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(153,52,l), +(440,478,l), +(324,478,l), +(37,52,l) +); +}, +{ +closed = 1; +nodes = ( +(450,0,l), +(450,87,l), +(77,87,l), +(37,52,l), +(37,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,443,l), +(440,478,l), +(440,530,l), +(47,530,l), +(47,443,l) +); +}, +{ +closed = 1; +nodes = ( +(300,585,l), +(400,725,l), +(312,725,l), +(194,585,l) +); +}, +{ +closed = 1; +nodes = ( +(294,585,l), +(176,725,l), +(88,725,l), +(188,585,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-6,0); +ref = caroncomb; +} +); +width = 487; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-6,0); +ref = caron; +} +); +width = 487; +} +); +unicode = 382; +}, +{ +color = 10; +glyphname = zdotaccent; +kernLeft = z; +kernRight = z; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = z; +}, +{ +ref = dotaccentcomb; +} +); +width = 499; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = center; +pos = (244,265); +}, +{ +name = top; +pos = (244,530); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(153,52,l), +(440,478,l), +(324,478,l), +(37,52,l) +); +}, +{ +closed = 1; +nodes = ( +(450,0,l), +(450,87,l), +(77,87,l), +(37,52,l), +(37,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,443,l), +(440,478,l), +(440,530,l), +(47,530,l), +(47,443,l) +); +}, +{ +closed = 1; +nodes = ( +(279,602,o), +(306,627,o), +(306,663,cs), +(306,700,o), +(279,725,o), +(244,725,cs), +(209,725,o), +(182,700,o), +(182,663,cs), +(182,627,o), +(209,602,o), +(244,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-6,0); +ref = dotaccentcomb; +} +); +width = 487; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = z; +}, +{ +pos = (-6,0); +ref = dotaccent; +} +); +width = 487; +} +); +unicode = 380; +}, +{ +color = 10; +glyphname = i.trk; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = i; +} +); +width = 255; +}, +{ +background = { +anchors = ( +{ +name = bottom; +pos = (115,0); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(150,602,o), +(177,627,o), +(177,663,cs), +(177,700,o), +(150,725,o), +(115,725,cs), +(80,725,o), +(53,700,o), +(53,663,cs), +(53,627,o), +(80,602,o), +(115,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = i; +} +); +width = 230; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +ref = i; +} +); +width = 230; +} +); +}, +{ +color = 6; +glyphname = f_f; +kernLeft = f; +kernRight = f; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (346.5,0); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(559,541,l), +(559,582,o), +(584,603,o), +(630,603,c), +(656,603,o), +(679,598,o), +(703,592,c), +(703,715,l), +(671,724,o), +(640,730,o), +(599,730,c), +(482,730,o), +(410,665,o), +(410,536,c), +(410,0,l) +); +}, +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(697,407,l), +(697,530,l), +(8,530,l), +(8,407,l) +); +} +); +width = 693; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (331.5,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,557,l), +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(643,443,l), +(643,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 663; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l), +(505,0,l), +(505,557,l) +); +}, +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(643,443,l), +(643,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 663; +} +); +unicode = 64256; +}, +{ +color = 6; +glyphname = f_f_i; +kernLeft = f; +kernRight = i; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (316,0); +}, +{ +name = caret_2; +pos = (632,0); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(559,541,l), +(559,582,o), +(584,603,o), +(630,603,c), +(656,603,o), +(677,599,o), +(697,594,c), +(697,717,l), +(669,725,o), +(640,730,o), +(599,730,c), +(482,730,o), +(410,665,o), +(410,536,c), +(410,0,l) +); +}, +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(767,407,l), +(767,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(895,0,l), +(895,530,l), +(746,530,l), +(746,0,l) +); +}, +{ +closed = 1; +nodes = ( +(871,580,o), +(909,614,o), +(909,667,cs), +(909,720,o), +(871,755,o), +(820,755,cs), +(770,755,o), +(732,720,o), +(732,667,cs), +(732,614,o), +(770,580,o), +(820,580,cs) +); +} +); +width = 948; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (296.667,0); +}, +{ +name = caret_2; +pos = (593.333,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,557,l), +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(773,443,l), +(773,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(825,0,l), +(825,530,l), +(725,530,l), +(725,0,l) +); +}, +{ +closed = 1; +nodes = ( +(810,602,o), +(837,627,o), +(837,663,cs), +(837,700,o), +(810,725,o), +(775,725,cs), +(740,725,o), +(713,700,o), +(713,663,cs), +(713,627,o), +(740,602,o), +(775,602,cs) +); +} +); +width = 890; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l), +(505,0,l), +(505,557,l) +); +}, +{ +closed = 1; +nodes = ( +(825,0,l), +(825,530,l), +(725,530,l), +(725,0,l) +); +}, +{ +closed = 1; +nodes = ( +(810,602,o), +(837,627,o), +(837,663,cs), +(837,700,o), +(810,725,o), +(775,725,cs), +(740,725,o), +(713,700,o), +(713,663,cs), +(713,627,o), +(740,602,o), +(775,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(773,443,l), +(773,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 890; +} +); +unicode = 64259; +}, +{ +color = 6; +glyphname = f_f_ij; +kernLeft = f; +kernRight = q; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (201,0); +}, +{ +name = bottom_2; +pos = (602,0); +}, +{ +name = bottom_3; +pos = (1003,0); +}, +{ +name = caret_1; +pos = (401,0); +}, +{ +name = caret_2; +pos = (802,0); +}, +{ +name = top_1; +pos = (201,715); +}, +{ +name = top_2; +pos = (602,715); +}, +{ +name = top_3; +pos = (1003,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(559,541,l), +(559,582,o), +(584,603,o), +(630,603,c), +(656,603,o), +(677,599,o), +(697,594,c), +(697,717,l), +(669,725,o), +(640,730,o), +(599,730,c), +(482,730,o), +(410,665,o), +(410,536,c), +(410,0,l) +); +}, +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(767,407,l), +(767,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(895,0,l), +(895,530,l), +(746,530,l), +(746,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1079,-190,o), +(1150,-125,o), +(1150,4,c), +(1150,530,l), +(1001,530,l), +(1001,9,l), +(1001,-33,o), +(977,-54,o), +(931,-54,c), +(908,-54,o), +(888,-49,o), +(868,-42,c), +(868,-175,l), +(896,-184,o), +(924,-190,o), +(962,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(871,580,o), +(909,614,o), +(909,667,cs), +(909,720,o), +(871,755,o), +(820,755,cs), +(770,755,o), +(732,720,o), +(732,667,cs), +(732,614,o), +(770,580,o), +(820,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(1126,580,o), +(1164,614,o), +(1164,667,cs), +(1164,720,o), +(1126,755,o), +(1075,755,cs), +(1025,755,o), +(987,720,o), +(987,667,cs), +(987,614,o), +(1025,580,o), +(1075,580,cs) +); +} +); +width = 1203; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (187,0); +}, +{ +name = bottom_2; +pos = (560,0); +}, +{ +name = bottom_3; +pos = (933,0); +}, +{ +name = caret_1; +pos = (373.333,0); +}, +{ +name = caret_2; +pos = (746.667,0); +}, +{ +name = top_1; +pos = (187,715); +}, +{ +name = top_2; +pos = (560,715); +}, +{ +name = top_3; +pos = (933,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,557,l), +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(773,443,l), +(773,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(825,0,l), +(825,530,l), +(725,530,l), +(725,0,l) +); +}, +{ +closed = 1; +nodes = ( +(997,-185,o), +(1055,-123,o), +(1055,-10,c), +(1055,530,l), +(955,530,l), +(955,-7,l), +(955,-70,o), +(930,-94,o), +(873,-94,c), +(856,-94,o), +(835,-90,o), +(817,-83,c), +(817,-175,l), +(840,-182,o), +(863,-185,o), +(891,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(810,602,o), +(837,627,o), +(837,663,cs), +(837,700,o), +(810,725,o), +(775,725,cs), +(740,725,o), +(713,700,o), +(713,663,cs), +(713,627,o), +(740,602,o), +(775,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(1040,602,o), +(1067,627,o), +(1067,663,cs), +(1067,700,o), +(1040,725,o), +(1005,725,cs), +(970,725,o), +(943,700,o), +(943,663,cs), +(943,627,o), +(970,602,o), +(1005,602,cs) +); +} +); +width = 1120; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l), +(505,0,l), +(505,557,l) +); +}, +{ +closed = 1; +nodes = ( +(825,0,l), +(825,530,l), +(725,530,l), +(725,0,l) +); +}, +{ +closed = 1; +nodes = ( +(810,602,o), +(837,627,o), +(837,663,cs), +(837,700,o), +(810,725,o), +(775,725,cs), +(740,725,o), +(713,700,o), +(713,663,cs), +(713,627,o), +(740,602,o), +(775,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(1040,602,o), +(1067,627,o), +(1067,663,cs), +(1067,700,o), +(1040,725,o), +(1005,725,cs), +(970,725,o), +(943,700,o), +(943,663,cs), +(943,627,o), +(970,602,o), +(1005,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(955,-70,o), +(930,-94,o), +(873,-94,c), +(856,-94,o), +(835,-90,o), +(817,-83,c), +(817,-175,l), +(840,-182,o), +(863,-185,o), +(891,-185,c), +(997,-185,o), +(1055,-123,o), +(1055,-10,c), +(1055,530,l), +(955,530,l), +(955,-7,l) +); +}, +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(773,443,l), +(773,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 1120; +} +); +}, +{ +color = 6; +glyphname = f_f_l; +kernLeft = f; +kernRight = l; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (316,0); +}, +{ +name = caret_2; +pos = (632,0); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(559,0,l), +(559,541,l), +(559,582,o), +(584,603,o), +(630,603,c), +(656,603,o), +(677,599,o), +(697,594,c), +(697,717,l), +(669,725,o), +(640,730,o), +(599,730,c), +(482,730,o), +(410,665,o), +(410,536,c), +(410,0,l) +); +}, +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(697,407,l), +(697,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(895,0,l), +(895,715,l), +(746,715,l), +(746,0,l) +); +} +); +width = 948; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (296.667,0); +}, +{ +name = caret_2; +pos = (593.333,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,557,l), +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(643,443,l), +(643,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(825,0,l), +(825,715,l), +(725,715,l), +(725,0,l) +); +} +); +width = 890; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(825,0,l), +(825,715,l), +(725,715,l), +(725,0,l) +); +}, +{ +closed = 1; +nodes = ( +(505,606,o), +(533,636,o), +(586,636,c), +(609,636,o), +(628,632,o), +(648,625,c), +(648,715,l), +(623,722,o), +(603,725,o), +(576,725,c), +(468,725,o), +(405,667,o), +(405,550,c), +(405,0,l), +(505,0,l), +(505,557,l) +); +}, +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(643,443,l), +(643,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 890; +} +); +unicode = 64260; +}, +{ +color = 6; +glyphname = f_i; +kernLeft = f; +kernRight = i; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (153,0); +}, +{ +name = bottom_2; +pos = (459,0); +}, +{ +name = caret_1; +pos = (306,0); +}, +{ +name = top_1; +pos = (153,715); +}, +{ +name = top_2; +pos = (459,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(551,0,l), +(551,530,l), +(402,530,l), +(402,0,l) +); +}, +{ +closed = 1; +nodes = ( +(527,580,o), +(565,614,o), +(565,667,cs), +(565,720,o), +(527,755,o), +(476,755,cs), +(426,755,o), +(388,720,o), +(388,667,cs), +(388,614,o), +(426,580,o), +(476,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(312,603,o), +(333,601,o), +(353,598,c), +(353,721,l), +(325,727,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(458,407,l), +(458,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(431,407,l), +(431,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,530,l), +(410,530,l), +(410,0,l) +); +}, +{ +closed = 1; +nodes = ( +(535,580,o), +(573,614,o), +(573,667,cs), +(573,720,o), +(535,755,o), +(484,755,cs), +(434,755,o), +(396,720,o), +(396,667,cs), +(396,614,o), +(434,580,o), +(484,580,cs) +); +} +); +width = 612; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (143,0); +}, +{ +name = bottom_2; +pos = (428,0); +}, +{ +name = caret_1; +pos = (285,0); +}, +{ +name = top_1; +pos = (143,715); +}, +{ +name = top_2; +pos = (428,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +} +); +width = 570; +} +); +}, +{ +color = 6; +glyphname = f_ij; +kernLeft = f; +kernRight = q; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (217,0); +}, +{ +name = bottom_2; +pos = (650,0); +}, +{ +name = caret_1; +pos = (433.5,0); +}, +{ +name = top_1; +pos = (217,715); +}, +{ +name = top_2; +pos = (650,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(551,0,l), +(551,530,l), +(402,530,l), +(402,0,l) +); +}, +{ +closed = 1; +nodes = ( +(527,580,o), +(565,614,o), +(565,667,cs), +(565,720,o), +(527,755,o), +(476,755,cs), +(426,755,o), +(388,720,o), +(388,667,cs), +(388,614,o), +(426,580,o), +(476,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(312,603,o), +(333,601,o), +(353,598,c), +(353,721,l), +(325,727,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(458,407,l), +(458,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(431,407,l), +(431,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,530,l), +(410,530,l), +(410,0,l) +); +}, +{ +closed = 1; +nodes = ( +(743,-190,o), +(814,-125,o), +(814,4,c), +(814,530,l), +(665,530,l), +(665,9,l), +(665,-33,o), +(641,-54,o), +(595,-54,c), +(572,-54,o), +(552,-49,o), +(532,-42,c), +(532,-175,l), +(560,-184,o), +(588,-190,o), +(626,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(535,580,o), +(573,614,o), +(573,667,cs), +(573,720,o), +(535,755,o), +(484,755,cs), +(434,755,o), +(396,720,o), +(396,667,cs), +(396,614,o), +(434,580,o), +(484,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(790,580,o), +(828,614,o), +(828,667,cs), +(828,720,o), +(790,755,o), +(739,755,cs), +(689,755,o), +(651,720,o), +(651,667,cs), +(651,614,o), +(689,580,o), +(739,580,cs) +); +} +); +width = 867; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (200,0); +}, +{ +name = bottom_2; +pos = (600,0); +}, +{ +name = caret_1; +pos = (400,0); +}, +{ +name = top_1; +pos = (200,715); +}, +{ +name = top_2; +pos = (600,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(677,-185,o), +(735,-123,o), +(735,-10,c), +(735,530,l), +(635,530,l), +(635,-7,l), +(635,-70,o), +(610,-94,o), +(553,-94,c), +(536,-94,o), +(515,-90,o), +(497,-83,c), +(497,-175,l), +(520,-182,o), +(543,-185,o), +(571,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(720,602,o), +(747,627,o), +(747,663,cs), +(747,700,o), +(720,725,o), +(685,725,cs), +(650,725,o), +(623,700,o), +(623,663,cs), +(623,627,o), +(650,602,o), +(685,602,cs) +); +} +); +width = 800; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(720,602,o), +(747,627,o), +(747,663,cs), +(747,700,o), +(720,725,o), +(685,725,cs), +(650,725,o), +(623,700,o), +(623,663,cs), +(623,627,o), +(650,602,o), +(685,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(635,-70,o), +(610,-94,o), +(553,-94,c), +(536,-94,o), +(515,-90,o), +(497,-83,c), +(497,-175,l), +(520,-182,o), +(543,-185,o), +(571,-185,c), +(677,-185,o), +(735,-123,o), +(735,-10,c), +(735,530,l), +(635,530,l), +(635,-7,l) +); +} +); +width = 800; +} +); +}, +{ +color = 6; +glyphname = f_l; +kernLeft = f; +kernRight = l; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom_1; +pos = (153,0); +}, +{ +name = bottom_2; +pos = (459,0); +}, +{ +name = caret_1; +pos = (306,0); +}, +{ +name = top_1; +pos = (153,715); +}, +{ +name = top_2; +pos = (459,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(361,407,l), +(361,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,715,l), +(410,715,l), +(410,0,l) +); +} +); +width = 612; +}, +{ +anchors = ( +{ +name = bottom_1; +pos = (143,0); +}, +{ +name = bottom_2; +pos = (428,0); +}, +{ +name = caret_1; +pos = (285,0); +}, +{ +name = top_1; +pos = (143,715); +}, +{ +name = top_2; +pos = (428,715); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,443,l), +(323,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,715,l), +(405,715,l), +(405,0,l) +); +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,715,l), +(405,715,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(323,443,l), +(323,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 570; +} +); +}, +{ +color = 6; +glyphname = fi; +kernLeft = f; +kernRight = i; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (306,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(551,0,l), +(551,530,l), +(402,530,l), +(402,0,l) +); +}, +{ +closed = 1; +nodes = ( +(527,580,o), +(565,614,o), +(565,667,cs), +(565,720,o), +(527,755,o), +(476,755,cs), +(426,755,o), +(388,720,o), +(388,667,cs), +(388,614,o), +(426,580,o), +(476,580,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(312,603,o), +(333,601,o), +(353,598,c), +(353,721,l), +(325,727,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(458,407,l), +(458,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(431,407,l), +(431,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,530,l), +(410,530,l), +(410,0,l) +); +}, +{ +closed = 1; +nodes = ( +(535,580,o), +(573,614,o), +(573,667,cs), +(573,720,o), +(535,755,o), +(484,755,cs), +(434,755,o), +(396,720,o), +(396,667,cs), +(396,614,o), +(434,580,o), +(484,580,cs) +); +} +); +width = 612; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (285,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(408,443,l), +(408,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,0,l), +(493,530,l), +(393,530,l), +(393,0,l) +); +}, +{ +closed = 1; +nodes = ( +(478,602,o), +(505,627,o), +(505,663,cs), +(505,700,o), +(478,725,o), +(443,725,cs), +(408,725,o), +(381,700,o), +(381,663,cs), +(381,627,o), +(408,602,o), +(443,602,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(453,443,l), +(453,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,602,o), +(517,627,o), +(517,663,cs), +(517,700,o), +(490,725,o), +(455,725,cs), +(420,725,o), +(393,700,o), +(393,663,cs), +(393,627,o), +(420,602,o), +(455,602,cs) +); +} +); +width = 570; +} +); +unicode = 64257; +}, +{ +color = 6; +glyphname = fl; +kernLeft = f; +kernRight = l; +lastChange = "2024-03-21 11:24:28 +0000"; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (306,0); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,l), +(223,541,l), +(223,582,o), +(248,603,o), +(294,603,c), +(320,603,o), +(341,599,o), +(361,594,c), +(361,717,l), +(333,725,o), +(304,730,o), +(263,730,c), +(146,730,o), +(74,665,o), +(74,536,c), +(74,0,l) +); +}, +{ +closed = 1; +nodes = ( +(361,407,l), +(361,530,l), +(8,530,l), +(8,407,l) +); +}, +{ +closed = 1; +nodes = ( +(559,0,l), +(559,715,l), +(410,715,l), +(410,0,l) +); +} +); +width = 612; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (285,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,l), +(185,557,l), +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l) +); +}, +{ +closed = 1; +nodes = ( +(323,443,l), +(323,530,l), +(10,530,l), +(10,443,l) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,715,l), +(405,715,l), +(405,0,l) +); +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(180,606,o), +(208,636,o), +(261,636,c), +(284,636,o), +(303,632,o), +(323,625,c), +(323,715,l), +(298,722,o), +(278,725,o), +(251,725,c), +(143,725,o), +(80,667,o), +(80,550,c), +(80,0,l), +(180,0,l), +(180,557,l) +); +}, +{ +closed = 1; +nodes = ( +(631,443,l), +(631,530,l), +(5,530,l), +(5,443,l) +); +}, +{ +closed = 1; +nodes = ( +(493,606,o), +(521,636,o), +(574,636,c), +(597,636,o), +(616,632,o), +(636,625,c), +(636,715,l), +(611,722,o), +(591,725,o), +(564,725,c), +(456,725,o), +(393,667,o), +(393,550,c), +(393,0,l), +(493,0,l), +(493,557,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,0,l), +(505,715,l), +(405,715,l), +(405,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,606,o), +(213,636,o), +(266,636,c), +(289,636,o), +(308,632,o), +(328,625,c), +(328,715,l), +(303,722,o), +(283,725,o), +(256,725,c), +(148,725,o), +(85,667,o), +(85,550,c), +(85,0,l), +(185,0,l), +(185,557,l) +); +}, +{ +closed = 1; +nodes = ( +(323,443,l), +(323,530,l), +(10,530,l), +(10,443,l) +); +} +); +width = 570; +} +); +unicode = 64258; +}, +{ +color = 6; +glyphname = ordfeminine; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(298,384,l), +(292,407,o), +(289,429,o), +(289,452,cs), +(289,581,l), +(289,656,o), +(239,700,o), +(159,700,cs), +(79,700,o), +(29,668,o), +(13,598,c), +(112,580,l), +(117,608,o), +(132,618,o), +(151,618,c), +(168,618,o), +(184,607,o), +(184,575,c), +(184,445,ls), +(184,425,o), +(187,404,o), +(192,384,c) +); +}, +{ +closed = 1; +nodes = ( +(166,374,o), +(204,427,o), +(204,512,c), +(184,512,l), +(184,473,o), +(158,452,o), +(133,452,c), +(117,452,o), +(110,461,o), +(110,473,c), +(110,484,o), +(119,495,o), +(140,500,cs), +(219,518,l), +(219,578,l), +(105,556,ls), +(42,544,o), +(10,509,o), +(10,464,c), +(10,408,o), +(47,374,o), +(95,374,c) +); +} +); +width = 317; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(30,42,o), +(98,-10,o), +(187,-10,c), +(300,-10,o), +(402,79,o), +(402,221,c), +(369,221,l), +(369,124,o), +(290,69,o), +(214,69,c), +(160,69,o), +(130,96,o), +(130,135,c), +(130,177,o), +(158,206,o), +(225,222,cs), +(389,260,l), +(389,320,l), +(192,284,ls), +(87,265,o), +(30,207,o), +(30,128,c) +); +}, +{ +closed = 1; +nodes = ( +(469,463,o), +(396,540,o), +(266,540,cs), +(160,540,o), +(76.435,486,o), +(45,384,c), +(139,353,l), +(158,433,o), +(199,465,o), +(260,465,c), +(326,465,o), +(369,422,o), +(369,325,c), +(369,0,l), +(469,0,l), +(469,337,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,384,l), +(282,407,o), +(279,429,o), +(279,452,cs), +(279,581,l), +(279,654,o), +(233,698,o), +(154,698,cs), +(85,698,o), +(37,666,o), +(20,603,c), +(97,585,l), +(104,618,o), +(123,632,o), +(150,632,c), +(177,632,o), +(199,616,o), +(199,575,c), +(199,445,ls), +(199,425,o), +(202,404,o), +(206,384,c) +); +}, +{ +closed = 1; +nodes = ( +(171,376,o), +(218,428,o), +(218,512,c), +(199,512,l), +(199,466,o), +(163,441,o), +(128,441,c), +(106,441,o), +(95,453,o), +(95,468,c), +(95,484,o), +(106,499,o), +(137,506,cs), +(221,524,l), +(221,575,l), +(108,556,ls), +(44,544,o), +(16,507,o), +(16,462,c), +(16,410,o), +(47,376,o), +(106,376,c) +); +} +); +width = 311; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(30,42,o), +(98,-10,o), +(187,-10,c), +(300,-10,o), +(402,79,o), +(402,221,c), +(369,221,l), +(369,124,o), +(290,69,o), +(214,69,c), +(160,69,o), +(130,96,o), +(130,135,c), +(130,177,o), +(158,206,o), +(225,222,cs), +(389,260,l), +(389,320,l), +(192,284,ls), +(87,265,o), +(30,207,o), +(30,128,c) +); +}, +{ +closed = 1; +nodes = ( +(469,463,o), +(396,540,o), +(266,540,cs), +(160,540,o), +(76.435,486,o), +(45,384,c), +(139,353,l), +(158,433,o), +(199,465,o), +(260,465,c), +(326,465,o), +(369,422,o), +(369,325,c), +(369,0,l), +(469,0,l), +(469,337,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(16,410,o), +(47,376,o), +(106,376,c), +(171,376,o), +(218,428,o), +(218,512,c), +(199,512,l), +(199,466,o), +(163,441,o), +(128,441,c), +(106,441,o), +(95,453,o), +(95,468,c), +(95,484,o), +(106,499,o), +(137,506,cs), +(221,524,l), +(221,575,l), +(108,556,ls), +(44,544,o), +(16,507,o), +(16,462,c) +); +}, +{ +closed = 1; +nodes = ( +(279,654,o), +(233,698,o), +(154,698,cs), +(85,698,o), +(37,666,o), +(20,603,c), +(97,585,l), +(104,618,o), +(123,632,o), +(150,632,c), +(177,632,o), +(199,616,o), +(199,575,c), +(199,445,ls), +(199,425,o), +(202,404,o), +(206,384,c), +(288,384,l), +(282,407,o), +(279,429,o), +(279,452,cs), +(279,581,l) +); +} +); +width = 311; +} +); +unicode = 170; +}, +{ +color = 6; +glyphname = ordmasculine; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(262,374,o), +(327,440,o), +(327,537,cs), +(327,634,o), +(262,700,o), +(169,700,cs), +(76,700,o), +(12,634,o), +(12,537,cs), +(12,440,o), +(76,374,o), +(169,374,cs) +); +}, +{ +closed = 1; +nodes = ( +(138,467,o), +(119,494,o), +(119,537,cs), +(119,580,o), +(138,607,o), +(169,607,cs), +(201,607,o), +(220,580,o), +(220,537,cs), +(220,494,o), +(201,467,o), +(169,467,cs) +); +} +); +width = 338; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,376,o), +(313,440,o), +(313,537,cs), +(313,634,o), +(251,698,o), +(164,698,cs), +(77,698,o), +(16,634,o), +(16,537,cs), +(16,440,o), +(77,376,o), +(164,376,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,449,o), +(98,478,o), +(98,537,cs), +(98,596,o), +(124,625,o), +(164,625,cs), +(205,625,o), +(230,596,o), +(230,537,cs), +(230,478,o), +(205,449,o), +(164,449,cs) +); +} +); +width = 328; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,376,o), +(313,440,o), +(313,537,cs), +(313,634,o), +(251,698,o), +(164,698,cs), +(77,698,o), +(16,634,o), +(16,537,cs), +(16,440,o), +(77,376,o), +(164,376,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,449,o), +(98,478,o), +(98,537,cs), +(98,596,o), +(124,625,o), +(164,625,cs), +(205,625,o), +(230,596,o), +(230,537,cs), +(230,478,o), +(205,449,o), +(164,449,cs) +); +} +); +width = 328; +} +); +unicode = 186; +}, +{ +color = 6; +glyphname = Delta; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(672,0,l), +(451,690,l), +(296,690,l), +(506,0,l) +); +}, +{ +closed = 1; +nodes = ( +(543,0,l), +(543,141,l), +(125,141,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(160,0,l), +(364,690,l), +(218,690,l), +(-3,0,l) +); +} +); +width = 668; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(642,0,l), +(403,690,l), +(301,690,l), +(532,0,l) +); +}, +{ +closed = 1; +nodes = ( +(561,0,l), +(561,96,l), +(93,96,l), +(93,0,l) +); +}, +{ +closed = 1; +nodes = ( +(119,0,l), +(345,690,l), +(251,690,l), +(12,0,l) +); +} +); +width = 654; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(561,0,l), +(561,96,l), +(93,96,l) +); +}, +{ +closed = 1; +nodes = ( +(301,690,l), +(532,0,l), +(642,0,l), +(403,690,l) +); +}, +{ +closed = 1; +nodes = ( +(251,690,l), +(12,0,l), +(119,0,l), +(345,690,l) +); +} +); +width = 654; +} +); +unicode = 916; +}, +{ +color = 6; +glyphname = Omega; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(325,294,l), +(253,301,o), +(198,347,o), +(198,422,cs), +(198,504,o), +(261,558,o), +(355,558,c), +(449,558,o), +(512,504,o), +(512,422,cs), +(512,347,o), +(457,301,o), +(385,294,c), +(385,173,l), +(572,185,o), +(670,286,o), +(670,425,cs), +(670,589,o), +(543,704,o), +(355,704,c), +(167,704,o), +(40,589,o), +(40,425,cs), +(40,286,o), +(138,185,o), +(325,173,c) +); +}, +{ +closed = 1; +nodes = ( +(325,0,l), +(325,147,l), +(40,147,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(325,0,l), +(325,225,l), +(200,225,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,225,l), +(385,225,l), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(670,0,l), +(670,147,l), +(385,147,l), +(385,0,l) +); +} +); +width = 710; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,205,l), +(210,228,o), +(146,298,o), +(146,412,cs), +(146,521,o), +(224,593,o), +(345,593,c), +(466,593,o), +(544,521,o), +(544,412,cs), +(544,298,o), +(480,228,o), +(390,205,c), +(390,128,l), +(536,153,o), +(650,256,o), +(650,415,cs), +(650,585,o), +(527,700,o), +(345,700,c), +(163,700,o), +(40,585,o), +(40,415,cs), +(40,256,o), +(154,153,o), +(300,128,c) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,96,l), +(40,96,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,180,l), +(200,180,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,0,l), +(490,180,l), +(390,180,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(650,0,l), +(650,96,l), +(390,96,l), +(390,0,l) +); +} +); +width = 690; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(650,0,l), +(650,96,l), +(390,96,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,180,l), +(390,180,l), +(390,0,l), +(490,0,l) +); +}, +{ +closed = 1; +nodes = ( +(466,593,o), +(544,521,o), +(544,412,cs), +(544,298,o), +(480,228.1,o), +(390,205,c), +(390,128,l), +(536,152.866,o), +(650,256.477,o), +(650,415,cs), +(650,585,o), +(527,700,o), +(345,700,c), +(163,700,o), +(40,585,o), +(40,415,cs), +(40,256.477,o), +(154,152.866,o), +(300,128,c), +(300,205,l), +(210,228.1,o), +(146,298,o), +(146,412,cs), +(146,521,o), +(224,593,o), +(345,593,c) +); +}, +{ +closed = 1; +nodes = ( +(300,96,l), +(40,96,l), +(40,0,l), +(300,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,180,l), +(200,180,l), +(200,0,l) +); +} +); +width = 690; +} +); +unicode = 937; +}, +{ +color = 6; +glyphname = mu; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(400,530,l), +(400,0,l), +(500,0,l), +(500,530,l) +); +}, +{ +closed = 1; +nodes = ( +(160,530,l), +(60,530,l), +(60,-175,l), +(160,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(134,70,o), +(191,-10,o), +(278,-10,c), +(366,-10,o), +(429,79,o), +(429,221,c), +(400,221,l), +(400,127,o), +(347,78,o), +(280,78,c), +(213,78,o), +(160,127,o), +(160,221,c), +(134,198,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(202,-175,l), +(202,530,l), +(53,530,l), +(53,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(355,-14,o), +(400,73,o), +(400,226,c), +(384,226,l), +(384,155,o), +(346,118,o), +(293,118,c), +(240,118,o), +(202,155,o), +(202,226,c), +(183,196,l), +(183,64,o), +(224,-14,o), +(289,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(533,0,l), +(533,530,l), +(384,530,l), +(384,0,l) +); +} +); +width = 586; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,530,l), +(65,530,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(371,-10,o), +(434,79,o), +(434,221,c), +(405,221,l), +(405,127,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127,o), +(165,221,c), +(139,198,l), +(139,70,o), +(196,-10,o), +(283,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,530,l), +(405,0,l), +(505,0,l), +(505,530,l) +); +}, +{ +closed = 1; +nodes = ( +(165,530,l), +(65,530,l), +(65,-175,l), +(165,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(139,70,o), +(196,-10,o), +(283,-10,c), +(371,-10,o), +(434,79,o), +(434,221,c), +(405,221,l), +(405,127,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127,o), +(165,221,c), +(139,198,l) +); +} +); +width = 570; +} +); +unicode = 956; +}, +{ +color = 6; +glyphname = pi; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(15,443,l), +(593,443,l), +(593,530,l), +(15,530,l) +); +}, +{ +closed = 1; +nodes = ( +(485,530,l), +(385,530,l), +(385,140,l), +(385,44,o), +(436,-10,o), +(527,-10,c), +(551,-10,o), +(571,-7,o), +(593,0,c), +(593,89,l), +(576,83,o), +(561,80,o), +(545,80,c), +(508,80,o), +(485,96,o), +(485,143,c) +); +}, +{ +closed = 1; +nodes = ( +(215,530,l), +(115,530,l), +(115,0,l), +(215,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(581,-14,o), +(605,-9,o), +(630,0,c), +(630,126,l), +(612,120,o), +(596,117,o), +(579,117,c), +(542,117,o), +(525,136,o), +(525,178,c), +(525,530,l), +(376,530,l), +(376,164,l), +(376,51,o), +(442,-14,o), +(552,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(251,0,l), +(251,530,l), +(102,530,l), +(102,0,l) +); +}, +{ +closed = 1; +nodes = ( +(630,402,l), +(630,530,l), +(10,530,l), +(10,402,l) +); +} +); +width = 645; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(551,-10,o), +(571,-7,o), +(593,0,c), +(593,89,l), +(576,83,o), +(561,80,o), +(545,80,c), +(508,80,o), +(485,96,o), +(485,143,c), +(485,530,l), +(385,530,l), +(385,140,l), +(385,44,o), +(436,-10,o), +(527,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(215,0,l), +(215,530,l), +(115,530,l), +(115,0,l) +); +}, +{ +closed = 1; +nodes = ( +(593,443,l), +(593,530,l), +(15,530,l), +(15,443,l) +); +} +); +width = 613; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(485,530,l), +(385,530,l), +(385,140,l), +(385,44,o), +(436,-10,o), +(527,-10,c), +(551,-10,o), +(571.022,-7,o), +(593,0,c), +(593,89,l), +(576,83,o), +(561,80,o), +(545,80,c), +(508,80,o), +(485,96,o), +(485,143,c) +); +}, +{ +closed = 1; +nodes = ( +(15,443,l), +(593,443,l), +(593,530,l), +(15,530,l) +); +}, +{ +closed = 1; +nodes = ( +(215,530,l), +(115,530,l), +(115,0,l), +(215,0,l) +); +} +); +width = 613; +} +); +unicode = 960; +}, +{ +color = 6; +glyphname = zero; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(479,-14,o), +(586,109,o), +(586,345,cs), +(586,581,o), +(479,704,o), +(313,704,cs), +(147,704,o), +(40,581,o), +(40,345,cs), +(40,109,o), +(147,-14,o), +(313,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,132,o), +(198,194,o), +(198,345,cs), +(198,496,o), +(240,558,o), +(313,558,cs), +(386,558,o), +(428,496,o), +(428,345,cs), +(428,194,o), +(386,132,o), +(313,132,cs) +); +} +); +width = 626; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(463,-10,o), +(566,113,o), +(566,345,cs), +(566,578,o), +(463,700,o), +(305,700,cs), +(148,700,o), +(45,578,o), +(45,345,cs), +(45,113,o), +(148,-10,o), +(305,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(210,87,o), +(154,163,o), +(154,345,cs), +(154,528,o), +(210,603,o), +(305,603,cs), +(401,603,o), +(457,528,o), +(457,345,cs), +(457,163,o), +(401,87,o), +(305,87,cs) +); +} +); +width = 611; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(463.019,-10,o), +(566,113,o), +(566,345,cs), +(566,578,o), +(463.019,700,o), +(305,700,cs), +(147.974,700,o), +(45,578,o), +(45,345,cs), +(45,113,o), +(147.974,-10,o), +(305,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(210.062,87,o), +(154,163,o), +(154,345,cs), +(154,528,o), +(210.062,603,o), +(305,603,cs), +(400.925,603,o), +(457,528,o), +(457,345,cs), +(457,163,o), +(400.925,87,o), +(305,87,cs) +); +} +); +width = 611; +} +); +unicode = 48; +}, +{ +color = 6; +glyphname = one; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(297,0,l), +(297,690,l), +(142,690,l), +(142,0,l) +); +}, +{ +closed = 1; +nodes = ( +(120,488,o), +(187,569,o), +(228,690,c), +(110,690,l), +(86,658,o), +(51,630,o), +(6,612,c), +(6,460,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(295,0,l), +(295,690,l), +(174,690,l), +(140,520,l), +(140,0,l) +); +}, +{ +closed = 1; +nodes = ( +(196,463,l), +(174,690,l), +(156,608,o), +(115,576,o), +(12,567,c), +(12,463,l) +); +} +); +width = 377; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,690,l), +(156,690,l), +(156,0,l) +); +}, +{ +closed = 1; +nodes = ( +(104,517,o), +(170,590.954,o), +(212,690,c), +(124,690,l), +(103,653.943,o), +(66,621.321,o), +(15,599,c), +(15,492,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,0,l), +(250,690,l), +(170,690,l), +(145,572,l), +(145,0,l) +); +}, +{ +closed = 1; +nodes = ( +(196,499,l), +(170,690,l), +(152,608,o), +(115,584,o), +(22,575,c), +(22,499,l) +); +} +); +width = 350; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,l), +(261,690,l), +(156,690,l), +(156,0,l) +); +}, +{ +closed = 1; +nodes = ( +(104,517,o), +(170,590.954,o), +(212,690,c), +(124,690,l), +(103,653.943,o), +(66,621.321,o), +(15,599,c), +(15,492,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,0,l), +(250,690,l), +(170,690,l), +(145,572,l), +(145,0,l) +); +}, +{ +closed = 1; +nodes = ( +(196,499,l), +(170,690,l), +(152,608,o), +(115,584,o), +(22,575,c), +(22,499,l) +); +} +); +width = 350; +} +); +unicode = 49; +}, +{ +color = 6; +glyphname = two; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(402,261,ls), +(486,336,o), +(528,402,o), +(528,486,c), +(528,617,o), +(428,704,o), +(297,704,c), +(162,704,o), +(57,629,o), +(38,459,c), +(192,439,l), +(201,531,o), +(238,563,o), +(287,563,c), +(333,563,o), +(369,534,o), +(369,483,c), +(369,435,o), +(332,386,o), +(271,331,cs), +(38,104,l), +(213,89,l) +); +}, +{ +closed = 1; +nodes = ( +(550,0,l), +(550,140,l), +(109,140,l), +(38,104,l), +(38,0,l) +); +} +); +width = 584; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(378,267,ls), +(461,350,o), +(508,403,o), +(508,499,c), +(508,620,o), +(410,700,o), +(286,700,c), +(158,700,o), +(63,623,o), +(45,473,c), +(148,453,l), +(160,557,o), +(208,608,o), +(281,608,c), +(352,608,o), +(399,566,o), +(399,493,c), +(399,443,o), +(372,391,o), +(312,331,cs), +(48,67,l), +(161,52,l) +); +}, +{ +closed = 1; +nodes = ( +(527,0,l), +(527,100,l), +(128,100,l), +(48,67,l), +(48,0,l) +); +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(508,620,o), +(410,700,o), +(286,700,c), +(158,700,o), +(62.885,623,o), +(45,473,c), +(148,453,l), +(160.071,557,o), +(208,608,o), +(281,608,c), +(352,608,o), +(399,566,o), +(399,493,c), +(399,443,o), +(372,391,o), +(312,331,cs), +(48,67,l), +(161,52,l), +(378,267,ls), +(461,350,o), +(508,403,o), +(508,499,c) +); +}, +{ +closed = 1; +nodes = ( +(527,100,l), +(128,100,l), +(48,67,l), +(48,0,l), +(527,0,l) +); +} +); +width = 570; +} +); +unicode = 50; +}, +{ +color = 6; +glyphname = three; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(442,-14,o), +(550,79,o), +(550,233,c), +(550,350,o), +(470,438,o), +(369,438,c), +(338,438,o), +(310,435,o), +(284,429,c), +(295,372,l), +(536,586,l), +(402,638,l), +(183,411,l), +(183,332,l), +(267,332,l), +(355,332,o), +(395,292,o), +(395,227,c), +(395,164,o), +(352,126,o), +(287,126,c), +(230,126,o), +(181,154,o), +(174,242,c), +(22,210,l), +(40,60,o), +(143,-14,o), +(286,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(465,550,l), +(536,586,l), +(536,690,l), +(40,690,l), +(40,550,l) +); +} +); +width = 584; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(437,-10,o), +(527,90,o), +(527,223,c), +(527,348,o), +(439,428,o), +(338,428,c), +(316,428,o), +(302,425,o), +(284,414,c), +(271,381,l), +(513,623,l), +(398,638,l), +(189,417,l), +(189,352,l), +(266,352,l), +(371,352,o), +(418,300,o), +(418,217,c), +(418,144,o), +(370,85,o), +(282,85,c), +(202,85,o), +(148,129,o), +(139,224,c), +(35,201,l), +(56,63,o), +(151,-10,o), +(283,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(433,590,l), +(513,623,l), +(513,690,l), +(54,690,l), +(54,590,l) +); +} +); +width = 572; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(54,590,l), +(433,590,l), +(513,623,l), +(513,690,l), +(54,690,l) +); +}, +{ +closed = 1; +nodes = ( +(271,381,l), +(513,623,l), +(398,638,l), +(189,417,l), +(189,352,l), +(266,352,l), +(371,352,o), +(418,300,o), +(418,217,c), +(418,143.563,o), +(370,85,o), +(282,85,c), +(202,85,o), +(148.333,129.227,o), +(139,224,c), +(35,201,l), +(56.151,63,o), +(151,-10,o), +(283,-10,c), +(437,-10,o), +(527,90.149,o), +(527,223,c), +(527,347.963,o), +(439,428,o), +(338,428,c), +(316,428,o), +(302,425,o), +(284,414,c) +); +} +); +width = 572; +} +); +unicode = 51; +}, +{ +color = 6; +glyphname = four; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(149,204,l), +(404,690,l), +(266,690,l), +(6,204,l) +); +}, +{ +closed = 1; +nodes = ( +(564,118,l), +(564,248,l), +(46,248,l), +(6,204,l), +(6,118,l) +); +}, +{ +closed = 1; +nodes = ( +(475,0,l), +(475,690,l), +(320,690,l), +(320,0,l) +); +} +); +width = 570; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,193,l), +(384,690,l), +(282,690,l), +(12,193,l) +); +}, +{ +closed = 1; +nodes = ( +(547,141,l), +(547,237,l), +(52,237,l), +(12,193,l), +(12,141,l) +); +}, +{ +closed = 1; +nodes = ( +(447,0,l), +(447,690,l), +(342,690,l), +(342,0,l) +); +} +); +width = 562; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(12,141,l), +(547,141,l), +(547,237,l), +(52,237,l), +(12,193,l) +); +}, +{ +closed = 1; +nodes = ( +(447,0,l), +(447,690,l), +(342,690,l), +(342,0,l) +); +}, +{ +closed = 1; +nodes = ( +(114,193,l), +(384,690,l), +(282,690,l), +(12,193,l) +); +} +); +width = 562; +} +); +unicode = 52; +}, +{ +color = 6; +glyphname = five; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(447,-14,o), +(555,81,o), +(555,238,c), +(555,369,o), +(464,468,o), +(344,468,c), +(255,468,o), +(195,417,o), +(178,334,c), +(195,334,l), +(227,638,l), +(141,550,l), +(523,550,l), +(523,690,l), +(88,690,l), +(54,277,l), +(186,277,l), +(201,312,o), +(238,344,o), +(291,344,c), +(358,344,o), +(400,296,o), +(400,232,c), +(400,166,o), +(358,126,o), +(293,126,c), +(240,126,o), +(201,154,o), +(190,213,c), +(37,181,l), +(59,60,o), +(153,-14,o), +(286,-14,c) +); +} +); +width = 595; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(434,-10,o), +(532,90,o), +(532,229,c), +(532,366,o), +(436,464,o), +(306,464,c), +(222,464,o), +(158,416,o), +(130,338,c), +(147,338,l), +(179,638,l), +(134,590,l), +(502,590,l), +(502,690,l), +(94,690,l), +(60,304,l), +(138,304,l), +(161,342,o), +(211,375,o), +(277,375,c), +(372,375,o), +(423,309,o), +(423,223,c), +(423,144,o), +(367,85,o), +(282,85,c), +(209,85,o), +(158,129,o), +(149,204,c), +(45,181,l), +(66,63,o), +(159,-10,o), +(281,-10,c) +); +} +); +width = 582; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(138,304,l), +(161.322,342,o), +(210.765,375,o), +(277,375,c), +(371.755,375,o), +(423,309,o), +(423,223,c), +(423,143.627,o), +(366.974,85,o), +(282,85,c), +(208.754,85,o), +(158.283,128.515,o), +(149,204,c), +(45,181,l), +(66.104,63,o), +(158.593,-10,o), +(281,-10,c), +(433.908,-10,o), +(532,90,o), +(532,229,c), +(532,365.913,o), +(436.121,464,o), +(306,464,c), +(221.785,464,o), +(158.387,416.099,o), +(130,338,c), +(147,338,l), +(179,638,l), +(134,590,l), +(502,590,l), +(502,690,l), +(94,690,l), +(60,304,l) +); +} +); +width = 582; +} +); +unicode = 53; +}, +{ +color = 6; +glyphname = six; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(474,-14,o), +(574,87,o), +(574,220,c), +(574,358,o), +(480,445,o), +(365,445,c), +(275,445,o), +(189,391,o), +(188,261,c), +(202,286,l), +(200,307,o), +(199,331,o), +(199,365,c), +(199,505,o), +(248,564,o), +(328,564,c), +(376,564,o), +(415,542,o), +(443,497,c), +(562,582,l), +(505,668,o), +(430,704,o), +(333,704,c), +(148,704,o), +(41,577,o), +(41,325,c), +(41,93,o), +(153,-14,o), +(315,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(254,121,o), +(212,161,o), +(212,214,c), +(212,268,o), +(253,312,o), +(316,312,c), +(380,312,o), +(417,271,o), +(417,212,c), +(417,163,o), +(378,121,o), +(317,121,c) +); +} +); +width = 605; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(618,113,o), +(618,345,cs), +(618,578,o), +(509,700,o), +(348,700,cs), +(188,700,o), +(79,578,o), +(79,345,cs), +(79,113,o), +(188,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,70,o), +(188,149,o), +(188,345,cs), +(188,542,o), +(250,620,o), +(348,620,cs), +(447,620,o), +(509,542,o), +(509,345,cs), +(509,149,o), +(447,70,o), +(348,70,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(457,-10,o), +(552,88,o), +(552,218,c), +(552,352,o), +(453,437,o), +(336,437,c), +(236,437,o), +(150,379,o), +(143,261,c), +(157,286,l), +(155,307,o), +(154,331,o), +(154,365,c), +(154,530,o), +(216,604,o), +(314,604,c), +(377,604,o), +(425,573,o), +(447,515,c), +(539,559,l), +(505,651,o), +(423,700,o), +(323,700,c), +(149,700,o), +(45,570,o), +(45,325,c), +(45,96,o), +(152,-10,o), +(306,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(224,85,o), +(163,143,o), +(163,218,c), +(163,287,o), +(222,344,o), +(303,344,c), +(394,344,o), +(444,289,o), +(444,212,c), +(444,144,o), +(392,85,o), +(308,85,c) +); +} +); +width = 587; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(618,113,o), +(618,345,cs), +(618,578,o), +(509,700,o), +(348,700,cs), +(188,700,o), +(79,578,o), +(79,345,cs), +(79,113,o), +(188,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,70,o), +(188,149,o), +(188,345,cs), +(188,542,o), +(250,620,o), +(348,620,cs), +(447,620,o), +(509,542,o), +(509,345,cs), +(509,149,o), +(447,70,o), +(348,70,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(155,307,o), +(154,331,o), +(154,365,c), +(154,530,o), +(216,604,o), +(314,604,c), +(377,604,o), +(424.833,573,o), +(447,515,c), +(539,559,l), +(504.792,651,o), +(422.692,700,o), +(323,700,c), +(149.127,700,o), +(45,570,o), +(45,325,c), +(45,96,o), +(152,-10,o), +(306,-10,c), +(456.932,-10,o), +(552,88,o), +(552,218,c), +(552,352,o), +(453,437,o), +(336,437,c), +(236,437,o), +(150,379,o), +(143,261,c), +(157,286,l) +); +}, +{ +closed = 1; +nodes = ( +(394,344,o), +(444,289,o), +(444,212,c), +(444,144,o), +(392,85,o), +(308,85,c), +(224,85,o), +(163,143,o), +(163,218,c), +(163,287,o), +(222,344,o), +(303,344,c) +); +} +); +width = 587; +} +); +unicode = 54; +}, +{ +color = 6; +glyphname = seven; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(321,0,l), +(322,230,o), +(375,392,o), +(524,588,c), +(384,598,l), +(227,404,o), +(166,230,o), +(156,0,c) +); +}, +{ +closed = 1; +nodes = ( +(454,550,l), +(524,588,l), +(524,690,l), +(11,690,l), +(11,550,l) +); +} +); +width = 539; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,0,l), +(285,212,o), +(344,415,o), +(510,638,c), +(397,638,l), +(249,426,o), +(176,212,o), +(165,0,c) +); +}, +{ +closed = 1; +nodes = ( +(440,590,l), +(510,638,l), +(510,690,l), +(20,690,l), +(20,590,l) +); +} +); +width = 535; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,590,l), +(440,590,l), +(510,638,l), +(510,690,l), +(20,690,l) +); +}, +{ +closed = 1; +nodes = ( +(284,0,l), +(285,212,o), +(343.665,415,o), +(510,638,c), +(397,638,l), +(248.652,426,o), +(176,212,o), +(165,0,c) +); +} +); +width = 535; +} +); +unicode = 55; +}, +{ +color = 6; +glyphname = eight; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(459,-14,o), +(557,72,o), +(557,196,c), +(557,311,o), +(454,394,o), +(294,394,cs), +(133,394,o), +(31,311,o), +(31,196,c), +(31,72,o), +(128,-14,o), +(294,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(218,117,o), +(182,154,o), +(182,202,c), +(182,258,o), +(223,296,o), +(294,296,c), +(365,296,o), +(406,258,o), +(406,202,c), +(406,154,o), +(370,117,o), +(294,117,c) +); +}, +{ +closed = 1; +nodes = ( +(442,332,o), +(542,404,o), +(542,508,cs), +(542,627,o), +(442,704,o), +(294,704,cs), +(145,704,o), +(46,627,o), +(46,508,cs), +(46,404,o), +(145,332,o), +(294,332,cs) +); +}, +{ +closed = 1; +nodes = ( +(234,418,o), +(197,451,o), +(197,499,cs), +(197,544,o), +(234,573,o), +(294,573,cs), +(354,573,o), +(391,544,o), +(391,499,cs), +(391,451,o), +(354,418,o), +(294,418,cs) +); +} +); +width = 588; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(442,-10,o), +(534,73,o), +(534,191,c), +(534,304,o), +(437,385,o), +(284,385,cs), +(132,385,o), +(35,304,o), +(35,191,c), +(35,73,o), +(127,-10,o), +(284,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,81,o), +(141,130,o), +(141,196,c), +(141,271,o), +(192,319,o), +(284,319,cs), +(377,319,o), +(428,271,o), +(428,196,c), +(428,130,o), +(383,81,o), +(284,81,cs) +); +}, +{ +closed = 1; +nodes = ( +(425,350,o), +(519,418,o), +(519,517,cs), +(519,628,o), +(425,700,o), +(284,700,cs), +(144,700,o), +(50,628,o), +(50,517,cs), +(50,418,o), +(144,350,o), +(284,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,407,o), +(156,450,o), +(156,512,cs), +(156,570,o), +(204,609,o), +(284,609,cs), +(365,609,o), +(413,570,o), +(413,512,cs), +(413,450,o), +(365,407,o), +(284,407,cs) +); +} +); +width = 569; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(442.007,-10,o), +(534,73,o), +(534,191,c), +(534,304,o), +(437.248,385,o), +(284,385,cs), +(131.732,385,o), +(35,304,o), +(35,191,c), +(35,73,o), +(126.974,-10,o), +(284,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,81,o), +(141,130,o), +(141,196,c), +(141,271,o), +(192.125,319,o), +(284,319,cs), +(376.851,319,o), +(428,271,o), +(428,196,c), +(428,130,o), +(383,81,o), +(284,81,cs) +); +}, +{ +closed = 1; +nodes = ( +(425.252,350,o), +(519,418,o), +(519,517,cs), +(519,628,o), +(425.252,700,o), +(284,700,cs), +(143.727,700,o), +(50,628,o), +(50,517,cs), +(50,418,o), +(143.727,350,o), +(284,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(204.143,407,o), +(156,450,o), +(156,512,cs), +(156,570,o), +(204,609,o), +(284,609,cs), +(365,609,o), +(413,570,o), +(413,512,cs), +(413,450,o), +(364.83,407,o), +(284,407,cs) +); +} +); +width = 569; +} +); +unicode = 56; +}, +{ +color = 6; +glyphname = nine; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(457,-14,o), +(563,113,o), +(563,365,c), +(563,597,o), +(452,704,o), +(290,704,c), +(131,704,o), +(30,603,o), +(30,470,c), +(30,332,o), +(125,245,o), +(240,245,c), +(330,245,o), +(416,299,o), +(417,429,c), +(403,404,l), +(405,383,o), +(406,359,o), +(406,325,c), +(406,185,o), +(358,126,o), +(278,126,c), +(229,126,o), +(190,148,o), +(162,193,c), +(43,108,l), +(100,22,o), +(175,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(224,378,o), +(188,419,o), +(188,478,c), +(188,527,o), +(226,569,o), +(288,569,c), +(351,569,o), +(393,529,o), +(393,476,c), +(393,422,o), +(352,378,o), +(288,378,c) +); +} +); +width = 605; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,383,o), +(443,359,o), +(443,325,c), +(443,146,o), +(379,70,o), +(278,70,c), +(213,70,o), +(163,103,o), +(140,175,c), +(48,131,l), +(83,39,o), +(167,-10,o), +(269,-10,c), +(446,-10,o), +(552,120,o), +(552,365,c), +(552,594,o), +(449,700,o), +(291,700,c), +(134,700,o), +(35,602,o), +(35,472,c), +(35,341,o), +(126,255,o), +(256,255,c), +(356,255,o), +(440,314,o), +(454,429,c), +(440,404,l) +); +}, +{ +closed = 1; +nodes = ( +(195,338,o), +(144,395,o), +(144,478,c), +(144,557,o), +(199,620,o), +(289,620,c), +(373,620,o), +(434,559,o), +(434,472,c), +(434,397,o), +(373,338,o), +(289,338,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(542,120,o), +(542,365,c), +(542,594,o), +(435,700,o), +(281,700,c), +(130,700,o), +(35,602,o), +(35,472,c), +(35,338,o), +(134,253,o), +(251,253,c), +(353,253,o), +(437,311,o), +(444,429,c), +(430,404,l), +(432,383,o), +(433,359,o), +(433,325,c), +(433,160,o), +(371,85,o), +(273,85,c), +(210,85,o), +(162,117,o), +(140,175,c), +(48,131,l), +(82,39,o), +(164,-10,o), +(264,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(193,346,o), +(144,401,o), +(144,478,c), +(144,546,o), +(195,605,o), +(279,605,c), +(363,605,o), +(424,547,o), +(424,472,c), +(424,403,o), +(365,346,o), +(284,346,c) +); +} +); +width = 587; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,383,o), +(443,359,o), +(443,325,c), +(443,146,o), +(379,70,o), +(278,70,c), +(213,70,o), +(163,103,o), +(140,175,c), +(48,131,l), +(83,39,o), +(167,-10,o), +(269,-10,c), +(446,-10,o), +(552,120,o), +(552,365,c), +(552,594,o), +(449,700,o), +(291,700,c), +(134,700,o), +(35,602,o), +(35,472,c), +(35,341,o), +(126,255,o), +(256,255,c), +(356,255,o), +(440,314,o), +(454,429,c), +(440,404,l) +); +}, +{ +closed = 1; +nodes = ( +(195,338,o), +(144,395,o), +(144,478,c), +(144,557,o), +(199,620,o), +(289,620,c), +(373,620,o), +(434,559,o), +(434,472,c), +(434,397,o), +(373,338,o), +(289,338,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(432,383,o), +(433,359,o), +(433,325,c), +(433,160,o), +(371,85,o), +(273,85,c), +(210,85,o), +(162.167,117,o), +(140,175,c), +(48,131,l), +(82.208,39,o), +(164.308,-10,o), +(264,-10,c), +(437.873,-10,o), +(542,120,o), +(542,365,c), +(542,594,o), +(435,700,o), +(281,700,c), +(130.068,700,o), +(35,602,o), +(35,472,c), +(35,338,o), +(134,253,o), +(251,253,c), +(353,253,o), +(437,311,o), +(444,429,c), +(430,404,l) +); +}, +{ +closed = 1; +nodes = ( +(193,346,o), +(144,401,o), +(144,478,c), +(144,546,o), +(195,605,o), +(279,605,c), +(363,605,o), +(424,547,o), +(424,472,c), +(424,403,o), +(365,346,o), +(284,346,c) +); +} +); +width = 587; +} +); +unicode = 57; +}, +{ +color = 6; +glyphname = zero.tf; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(463,-14,o), +(568,109,o), +(568,345,cs), +(568,581,o), +(463,704,o), +(300,704,cs), +(137,704,o), +(32,581,o), +(32,345,cs), +(32,109,o), +(137,-14,o), +(300,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(230,132,o), +(190,194,o), +(190,345,cs), +(190,496,o), +(230,558,o), +(300,558,cs), +(370,558,o), +(410,496,o), +(410,345,cs), +(410,194,o), +(370,132,o), +(300,132,cs) +); +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(455,-10,o), +(555,113,o), +(555,345,cs), +(555,578,o), +(455,700,o), +(300,700,cs), +(146,700,o), +(45,578,o), +(45,345,cs), +(45,113,o), +(146,-10,o), +(300,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(208,87,o), +(154,163,o), +(154,345,cs), +(154,528,o), +(208,603,o), +(300,603,cs), +(393,603,o), +(446,528,o), +(446,345,cs), +(446,163,o), +(393,87,o), +(300,87,cs) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(455,-10,o), +(555,113,o), +(555,345,cs), +(555,578,o), +(455,700,o), +(300,700,cs), +(146,700,o), +(45,578,o), +(45,345,cs), +(45,113,o), +(146,-10,o), +(300,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(208,87,o), +(154,163,o), +(154,345,cs), +(154,528,o), +(208,603,o), +(300,603,cs), +(393,603,o), +(446,528,o), +(446,345,cs), +(446,163,o), +(393,87,o), +(300,87,cs) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = one.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(297,0,l), +(297,690,l), +(142,690,l), +(142,0,l) +); +}, +{ +closed = 1; +nodes = ( +(120,488,o), +(187,569,o), +(228,690,c), +(110,690,l), +(86,658,o), +(51,630,o), +(6,612,c), +(6,460,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(388,0,l), +(388,690,l), +(267,690,l), +(233,520,l), +(233,0,l) +); +}, +{ +closed = 1; +nodes = ( +(535,0,l), +(535,140,l), +(75,140,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(289,463,l), +(267,690,l), +(248,605,o), +(202,573,o), +(85,567,c), +(85,463,l) +); +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(366,0,l), +(366,690,l), +(261,690,l), +(261,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,512,o), +(265,586,o), +(317,690,c), +(229,690,l), +(199,650,o), +(147,613,o), +(75,589,c), +(75,486,l) +); +}, +{ +closed = 1; +nodes = ( +(75,0,l), +(530,0,l), +(530,96,l), +(75,96,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(366,0,l), +(366,690,l), +(286,690,l), +(261,572,l), +(261,0,l) +); +}, +{ +closed = 1; +nodes = ( +(530,0,l), +(530,96,l), +(75,96,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(312,499,l), +(286,690,l), +(268,608,o), +(231,584,o), +(88,575,c), +(88,499,l) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(366,0,l), +(366,690,l), +(261,690,l), +(261,0,l) +); +}, +{ +closed = 1; +nodes = ( +(185,512,o), +(265,586,o), +(317,690,c), +(229,690,l), +(199,650,o), +(147,613,o), +(75,589,c), +(75,486,l) +); +}, +{ +closed = 1; +nodes = ( +(75,0,l), +(530,0,l), +(530,96,l), +(75,96,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(75,0,l), +(530,0,l), +(530,96,l), +(75,96,l) +); +}, +{ +closed = 1; +nodes = ( +(366,0,l), +(366,690,l), +(286,690,l), +(261,572,l), +(261,0,l) +); +}, +{ +closed = 1; +nodes = ( +(312,499,l), +(286,690,l), +(268,608,o), +(231,584,o), +(88,575,c), +(88,499,l) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = two.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(408,261,ls), +(492,336,o), +(534,402,o), +(534,486,c), +(534,617,o), +(434,704,o), +(303,704,c), +(168,704,o), +(63,629,o), +(44,459,c), +(198,439,l), +(207,531,o), +(244,563,o), +(293,563,c), +(339,563,o), +(375,534,o), +(375,483,c), +(375,435,o), +(338,386,o), +(277,331,cs), +(44,104,l), +(219,89,l) +); +}, +{ +closed = 1; +nodes = ( +(556,0,l), +(556,140,l), +(115,140,l), +(44,104,l), +(44,0,l) +); +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(392,267,ls), +(475,350,o), +(522,403,o), +(522,499,c), +(522,620,o), +(424,700,o), +(300,700,c), +(172,700,o), +(77,623,o), +(59,473,c), +(162,453,l), +(174,557,o), +(222,608,o), +(295,608,c), +(366,608,o), +(413,566,o), +(413,493,c), +(413,443,o), +(386,391,o), +(326,331,cs), +(62,67,l), +(175,52,l) +); +}, +{ +closed = 1; +nodes = ( +(541,0,l), +(541,100,l), +(142,100,l), +(62,67,l), +(62,0,l) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(522,620,o), +(424,700,o), +(300,700,c), +(172,700,o), +(77,623,o), +(59,473,c), +(162,453,l), +(174,557,o), +(222,608,o), +(295,608,c), +(366,608,o), +(413,566,o), +(413,493,c), +(413,443,o), +(386,391,o), +(326,331,cs), +(62,67,l), +(175,52,l), +(392,267,ls), +(475,350,o), +(522,403,o), +(522,499,c) +); +}, +{ +closed = 1; +nodes = ( +(541,100,l), +(142,100,l), +(62,67,l), +(62,0,l), +(541,0,l) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = three.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(445,-14,o), +(553,79,o), +(553,233,c), +(553,350,o), +(473,438,o), +(372,438,c), +(341,438,o), +(313,435,o), +(287,429,c), +(298,372,l), +(539,586,l), +(405,638,l), +(186,411,l), +(186,332,l), +(270,332,l), +(358,332,o), +(398,292,o), +(398,227,c), +(398,164,o), +(355,126,o), +(290,126,c), +(233,126,o), +(184,154,o), +(177,242,c), +(25,210,l), +(43,60,o), +(146,-14,o), +(289,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(468,550,l), +(539,586,l), +(539,690,l), +(43,690,l), +(43,550,l) +); +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,-10,o), +(540,90,o), +(540,223,c), +(540,348,o), +(452,428,o), +(351,428,c), +(329,428,o), +(315,425,o), +(297,414,c), +(284,381,l), +(526,623,l), +(411,638,l), +(202,417,l), +(202,352,l), +(279,352,l), +(384,352,o), +(431,300,o), +(431,217,c), +(431,144,o), +(383,85,o), +(295,85,c), +(215,85,o), +(161,129,o), +(152,224,c), +(48,201,l), +(69,63,o), +(164,-10,o), +(296,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(446,590,l), +(526,623,l), +(526,690,l), +(67,690,l), +(67,590,l) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(67,590,l), +(446,590,l), +(526,623,l), +(526,690,l), +(67,690,l) +); +}, +{ +closed = 1; +nodes = ( +(284,381,l), +(526,623,l), +(411,638,l), +(202,417,l), +(202,352,l), +(279,352,l), +(384,352,o), +(431,300,o), +(431,217,c), +(431,144,o), +(383,85,o), +(295,85,c), +(215,85,o), +(161,129,o), +(152,224,c), +(48,201,l), +(69,63,o), +(164,-10,o), +(296,-10,c), +(450,-10,o), +(540,90,o), +(540,223,c), +(540,348,o), +(452,428,o), +(351,428,c), +(329,428,o), +(315,425,o), +(297,414,c) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = four.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(161,204,l), +(416,690,l), +(278,690,l), +(18,204,l) +); +}, +{ +closed = 1; +nodes = ( +(576,118,l), +(576,248,l), +(58,248,l), +(18,204,l), +(18,118,l) +); +}, +{ +closed = 1; +nodes = ( +(487,0,l), +(487,690,l), +(332,690,l), +(332,0,l) +); +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(133,193,l), +(403,690,l), +(301,690,l), +(31,193,l) +); +}, +{ +closed = 1; +nodes = ( +(566,141,l), +(566,237,l), +(71,237,l), +(31,193,l), +(31,141,l) +); +}, +{ +closed = 1; +nodes = ( +(466,0,l), +(466,690,l), +(361,690,l), +(361,0,l) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(31,141,l), +(566,141,l), +(566,237,l), +(71,237,l), +(31,193,l) +); +}, +{ +closed = 1; +nodes = ( +(466,0,l), +(466,690,l), +(361,690,l), +(361,0,l) +); +}, +{ +closed = 1; +nodes = ( +(133,193,l), +(403,690,l), +(301,690,l), +(31,193,l) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = five.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(448,-14,o), +(556,81,o), +(556,238,c), +(556,369,o), +(465,468,o), +(345,468,c), +(256,468,o), +(196,417,o), +(179,334,c), +(196,334,l), +(228,638,l), +(142,550,l), +(524,550,l), +(524,690,l), +(89,690,l), +(55,277,l), +(187,277,l), +(202,312,o), +(239,344,o), +(292,344,c), +(359,344,o), +(401,296,o), +(401,232,c), +(401,166,o), +(359,126,o), +(294,126,c), +(241,126,o), +(202,154,o), +(191,213,c), +(38,181,l), +(60,60,o), +(154,-14,o), +(287,-14,c) +); +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(442,-10,o), +(540,90,o), +(540,229,c), +(540,366,o), +(444,464,o), +(314,464,c), +(230,464,o), +(166,416,o), +(138,338,c), +(155,338,l), +(187,638,l), +(142,590,l), +(510,590,l), +(510,690,l), +(102,690,l), +(68,304,l), +(146,304,l), +(169,342,o), +(219,375,o), +(285,375,c), +(380,375,o), +(431,309,o), +(431,223,c), +(431,144,o), +(375,85,o), +(290,85,c), +(217,85,o), +(166,129,o), +(157,204,c), +(53,181,l), +(74,63,o), +(167,-10,o), +(289,-10,c) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,304,l), +(169,342,o), +(219,375,o), +(285,375,c), +(380,375,o), +(431,309,o), +(431,223,c), +(431,144,o), +(375,85,o), +(290,85,c), +(217,85,o), +(166,129,o), +(157,204,c), +(53,181,l), +(74,63,o), +(167,-10,o), +(289,-10,c), +(442,-10,o), +(540,90,o), +(540,229,c), +(540,366,o), +(444,464,o), +(314,464,c), +(230,464,o), +(166,416,o), +(138,338,c), +(155,338,l), +(187,638,l), +(142,590,l), +(510,590,l), +(510,690,l), +(102,690,l), +(68,304,l) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = six.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(618,113,o), +(618,345,cs), +(618,578,o), +(509,700,o), +(348,700,cs), +(188,700,o), +(79,578,o), +(79,345,cs), +(79,113,o), +(188,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,70,o), +(188,149,o), +(188,345,cs), +(188,542,o), +(250,620,o), +(348,620,cs), +(447,620,o), +(509,542,o), +(509,345,cs), +(509,149,o), +(447,70,o), +(348,70,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(470,-14,o), +(570,87,o), +(570,220,c), +(570,358,o), +(476,445,o), +(361,445,c), +(271,445,o), +(185,391,o), +(184,261,c), +(198,286,l), +(196,307,o), +(195,331,o), +(195,365,c), +(195,505,o), +(244,564,o), +(324,564,c), +(372,564,o), +(411,542,o), +(439,497,c), +(558,582,l), +(501,668,o), +(426,704,o), +(329,704,c), +(144,704,o), +(37,577,o), +(37,325,c), +(37,93,o), +(149,-14,o), +(311,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(250,121,o), +(208,161,o), +(208,214,c), +(208,268,o), +(249,312,o), +(312,312,c), +(376,312,o), +(413,271,o), +(413,212,c), +(413,163,o), +(374,121,o), +(313,121,c) +); +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(618,113,o), +(618,345,cs), +(618,578,o), +(509,700,o), +(348,700,cs), +(188,700,o), +(79,578,o), +(79,345,cs), +(79,113,o), +(188,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,70,o), +(188,149,o), +(188,345,cs), +(188,542,o), +(250,620,o), +(348,620,cs), +(447,620,o), +(509,542,o), +(509,345,cs), +(509,149,o), +(447,70,o), +(348,70,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(463,-10,o), +(558,88,o), +(558,218,c), +(558,352,o), +(459,437,o), +(342,437,c), +(242,437,o), +(156,379,o), +(149,261,c), +(163,286,l), +(161,307,o), +(160,331,o), +(160,365,c), +(160,530,o), +(222,604,o), +(320,604,c), +(383,604,o), +(431,573,o), +(453,515,c), +(545,559,l), +(511,651,o), +(429,700,o), +(329,700,c), +(155,700,o), +(51,570,o), +(51,325,c), +(51,96,o), +(158,-10,o), +(312,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(230,85,o), +(169,143,o), +(169,218,c), +(169,287,o), +(228,344,o), +(309,344,c), +(400,344,o), +(450,289,o), +(450,212,c), +(450,144,o), +(398,85,o), +(314,85,c) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(618,113,o), +(618,345,cs), +(618,578,o), +(509,700,o), +(348,700,cs), +(188,700,o), +(79,578,o), +(79,345,cs), +(79,113,o), +(188,-10,o), +(348,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,70,o), +(188,149,o), +(188,345,cs), +(188,542,o), +(250,620,o), +(348,620,cs), +(447,620,o), +(509,542,o), +(509,345,cs), +(509,149,o), +(447,70,o), +(348,70,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,307,o), +(160,331,o), +(160,365,c), +(160,530,o), +(222,604,o), +(320,604,c), +(383,604,o), +(431,573,o), +(453,515,c), +(545,559,l), +(511,651,o), +(429,700,o), +(329,700,c), +(155,700,o), +(51,570,o), +(51,325,c), +(51,96,o), +(158,-10,o), +(312,-10,c), +(463,-10,o), +(558,88,o), +(558,218,c), +(558,352,o), +(459,437,o), +(342,437,c), +(242,437,o), +(156,379,o), +(149,261,c), +(163,286,l) +); +}, +{ +closed = 1; +nodes = ( +(400,344,o), +(450,289,o), +(450,212,c), +(450,144,o), +(398,85,o), +(314,85,c), +(230,85,o), +(169,143,o), +(169,218,c), +(169,287,o), +(228,344,o), +(309,344,c) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = seven.tf; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(321,0,l), +(322,230,o), +(374,392,o), +(519,588,c), +(379,598,l), +(225,404,o), +(166,230,o), +(156,0,c) +); +}, +{ +closed = 1; +nodes = ( +(449,550,l), +(519,588,l), +(519,690,l), +(16,690,l), +(16,550,l) +); +} +); +width = 539; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,0,l), +(317,212,o), +(382,415,o), +(553,638,c), +(440,638,l), +(288,426,o), +(208,212,o), +(197,0,c) +); +}, +{ +closed = 1; +nodes = ( +(483,590,l), +(553,638,l), +(553,690,l), +(46,690,l), +(46,590,l) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(155,530,l), +(55,530,l), +(55,0,l) +); +}, +{ +closed = 1; +nodes = ( +(395,0,l), +(495,0,l), +(495,332,l), +(495,460,o), +(420,540,o), +(313,540,c), +(204,540,o), +(122,451,o), +(122,309,c), +(155,309,l), +(155,406,o), +(208,457,o), +(275,457,c), +(342,457,o), +(395,406,o), +(395,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(46,590,l), +(483,590,l), +(553,638,l), +(553,690,l), +(46,690,l) +); +}, +{ +closed = 1; +nodes = ( +(316,0,l), +(317,212,o), +(382,415,o), +(553,638,c), +(440,638,l), +(288,426,o), +(208,212,o), +(197,0,c) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = eight.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(458,-14,o), +(556,72,o), +(556,196,c), +(556,311,o), +(453,394,o), +(293,394,cs), +(132,394,o), +(30,311,o), +(30,196,c), +(30,72,o), +(127,-14,o), +(293,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(217,117,o), +(181,154,o), +(181,202,c), +(181,258,o), +(222,296,o), +(293,296,c), +(364,296,o), +(405,258,o), +(405,202,c), +(405,154,o), +(369,117,o), +(293,117,c) +); +}, +{ +closed = 1; +nodes = ( +(441,332,o), +(541,404,o), +(541,508,cs), +(541,627,o), +(441,704,o), +(293,704,cs), +(144,704,o), +(45,627,o), +(45,508,cs), +(45,404,o), +(144,332,o), +(293,332,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,418,o), +(196,451,o), +(196,499,cs), +(196,544,o), +(233,573,o), +(293,573,cs), +(353,573,o), +(390,544,o), +(390,499,cs), +(390,451,o), +(353,418,o), +(293,418,cs) +); +} +); +width = 587; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(458,-10,o), +(550,73,o), +(550,191,c), +(550,304,o), +(453,385,o), +(300,385,cs), +(148,385,o), +(51,304,o), +(51,191,c), +(51,73,o), +(143,-10,o), +(300,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(202,81,o), +(157,130,o), +(157,196,c), +(157,271,o), +(208,319,o), +(300,319,cs), +(393,319,o), +(444,271,o), +(444,196,c), +(444,130,o), +(399,81,o), +(300,81,cs) +); +}, +{ +closed = 1; +nodes = ( +(441,350,o), +(535,418,o), +(535,517,cs), +(535,628,o), +(441,700,o), +(300,700,cs), +(160,700,o), +(66,628,o), +(66,517,cs), +(66,418,o), +(160,350,o), +(300,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,407,o), +(172,450,o), +(172,512,cs), +(172,570,o), +(220,609,o), +(300,609,cs), +(381,609,o), +(429,570,o), +(429,512,cs), +(429,450,o), +(381,407,o), +(300,407,cs) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(458,-10,o), +(550,73,o), +(550,191,c), +(550,304,o), +(453,385,o), +(300,385,cs), +(148,385,o), +(51,304,o), +(51,191,c), +(51,73,o), +(143,-10,o), +(300,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(202,81,o), +(157,130,o), +(157,196,c), +(157,271,o), +(208,319,o), +(300,319,cs), +(393,319,o), +(444,271,o), +(444,196,c), +(444,130,o), +(399,81,o), +(300,81,cs) +); +}, +{ +closed = 1; +nodes = ( +(441,350,o), +(535,418,o), +(535,517,cs), +(535,628,o), +(441,700,o), +(300,700,cs), +(160,700,o), +(66,628,o), +(66,517,cs), +(66,418,o), +(160,350,o), +(300,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,407,o), +(172,450,o), +(172,512,cs), +(172,570,o), +(220,609,o), +(300,609,cs), +(381,609,o), +(429,570,o), +(429,512,cs), +(429,450,o), +(381,407,o), +(300,407,cs) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = nine.tf; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,383,o), +(443,359,o), +(443,325,c), +(443,146,o), +(379,70,o), +(278,70,c), +(213,70,o), +(163,103,o), +(140,175,c), +(48,131,l), +(83,39,o), +(167,-10,o), +(269,-10,c), +(446,-10,o), +(552,120,o), +(552,365,c), +(552,594,o), +(449,700,o), +(291,700,c), +(134,700,o), +(35,602,o), +(35,472,c), +(35,341,o), +(126,255,o), +(256,255,c), +(356,255,o), +(440,314,o), +(454,429,c), +(440,404,l) +); +}, +{ +closed = 1; +nodes = ( +(195,338,o), +(144,395,o), +(144,478,c), +(144,557,o), +(199,620,o), +(289,620,c), +(373,620,o), +(434,559,o), +(434,472,c), +(434,397,o), +(373,338,o), +(289,338,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(457,-14,o), +(563,113,o), +(563,365,c), +(563,597,o), +(452,704,o), +(290,704,c), +(131,704,o), +(30,603,o), +(30,470,c), +(30,332,o), +(125,245,o), +(240,245,c), +(330,245,o), +(416,299,o), +(417,429,c), +(403,404,l), +(405,383,o), +(406,359,o), +(406,325,c), +(406,185,o), +(358,126,o), +(278,126,c), +(229,126,o), +(190,148,o), +(162,193,c), +(43,108,l), +(100,22,o), +(175,-14,o), +(272,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(224,378,o), +(188,419,o), +(188,478,c), +(188,527,o), +(226,569,o), +(288,569,c), +(351,569,o), +(393,529,o), +(393,476,c), +(393,422,o), +(352,378,o), +(288,378,c) +); +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,383,o), +(443,359,o), +(443,325,c), +(443,146,o), +(379,70,o), +(278,70,c), +(213,70,o), +(163,103,o), +(140,175,c), +(48,131,l), +(83,39,o), +(167,-10,o), +(269,-10,c), +(446,-10,o), +(552,120,o), +(552,365,c), +(552,594,o), +(449,700,o), +(291,700,c), +(134,700,o), +(35,602,o), +(35,472,c), +(35,341,o), +(126,255,o), +(256,255,c), +(356,255,o), +(440,314,o), +(454,429,c), +(440,404,l) +); +}, +{ +closed = 1; +nodes = ( +(195,338,o), +(144,395,o), +(144,478,c), +(144,557,o), +(199,620,o), +(289,620,c), +(373,620,o), +(434,559,o), +(434,472,c), +(434,397,o), +(373,338,o), +(289,338,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(445,-10,o), +(549,120,o), +(549,365,c), +(549,594,o), +(442,700,o), +(288,700,c), +(137,700,o), +(42,602,o), +(42,472,c), +(42,338,o), +(141,253,o), +(258,253,c), +(360,253,o), +(444,311,o), +(451,429,c), +(437,404,l), +(439,383,o), +(440,359,o), +(440,325,c), +(440,160,o), +(378,85,o), +(280,85,c), +(217,85,o), +(169,117,o), +(147,175,c), +(55,131,l), +(89,39,o), +(171,-10,o), +(271,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(200,346,o), +(151,401,o), +(151,478,c), +(151,546,o), +(202,605,o), +(286,605,c), +(370,605,o), +(431,547,o), +(431,472,c), +(431,403,o), +(372,346,o), +(291,346,c) +); +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(442,383,o), +(443,359,o), +(443,325,c), +(443,146,o), +(379,70,o), +(278,70,c), +(213,70,o), +(163,103,o), +(140,175,c), +(48,131,l), +(83,39,o), +(167,-10,o), +(269,-10,c), +(446,-10,o), +(552,120,o), +(552,365,c), +(552,594,o), +(449,700,o), +(291,700,c), +(134,700,o), +(35,602,o), +(35,472,c), +(35,341,o), +(126,255,o), +(256,255,c), +(356,255,o), +(440,314,o), +(454,429,c), +(440,404,l) +); +}, +{ +closed = 1; +nodes = ( +(195,338,o), +(144,395,o), +(144,478,c), +(144,557,o), +(199,620,o), +(289,620,c), +(373,620,o), +(434,559,o), +(434,472,c), +(434,397,o), +(373,338,o), +(289,338,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(439,383,o), +(440,359,o), +(440,325,c), +(440,160,o), +(378,85,o), +(280,85,c), +(217,85,o), +(169.167,117,o), +(147,175,c), +(55,131,l), +(89.208,39,o), +(171.308,-10,o), +(271,-10,c), +(444.873,-10,o), +(549,120,o), +(549,365,c), +(549,594,o), +(442,700,o), +(288,700,c), +(137.068,700,o), +(42,602,o), +(42,472,c), +(42,338,o), +(141,253,o), +(258,253,c), +(360,253,o), +(444,311,o), +(451,429,c), +(437,404,l) +); +}, +{ +closed = 1; +nodes = ( +(200,346,o), +(151,401,o), +(151,478,c), +(151,546,o), +(202,605,o), +(286,605,c), +(370,605,o), +(431,547,o), +(431,472,c), +(431,403,o), +(372,346,o), +(291,346,c) +); +} +); +width = 600; +} +); +}, +{ +color = 6; +glyphname = fraction; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(103,0,l), +(529,690,l), +(406,690,l), +(-20,0,l) +); +} +); +width = 509; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(83,0,l), +(519,690,l), +(416,690,l), +(-20,0,l) +); +} +); +width = 499; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(83,0,l), +(519,690,l), +(416,690,l), +(-20,0,l) +); +} +); +width = 499; +} +); +unicode = 8260; +}, +{ +color = 6; +glyphname = onehalf; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(175,0,l), +(601,690,l), +(478,690,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(179,384,l), +(179,690,l), +(103,690,l), +(96,647,o), +(76,634,o), +(30,631,c), +(30,574,l), +(88,574,l), +(88,384,l) +); +}, +{ +closed = 1; +nodes = ( +(657,0,l), +(657,80,l), +(545,80,l), +(592,118,ls), +(630,149,o), +(647,179,o), +(647,215,cs), +(647,273,o), +(600,314,o), +(536,314,cs), +(474,314,o), +(424,282,o), +(417,197,c), +(508,189,l), +(509,224,o), +(521,231,o), +(533,231,cs), +(545,231,o), +(554,223,o), +(554,208,cs), +(554,189,o), +(538,169,o), +(511,146,cs), +(415,63,l), +(415,0,l) +); +} +); +width = 697; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(110,690,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(105,599,o), +(123,633,o), +(141,690,c), +(95,690,l), +(84,677,o), +(69,665,o), +(50,658,c), +(50,586,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,0,l), +(597,690,l), +(494,690,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(120,690,l), +(114,651,o), +(95,639,o), +(52,635,c), +(52,589,l), +(110,589,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(659,0,l), +(659,66,l), +(533,66,l), +(591,115,ls), +(628,147,o), +(648,179,o), +(648,219,cs), +(648,274,o), +(603,313,o), +(545,313,cs), +(485,313,o), +(436,280,o), +(427,204,c), +(498,190,l), +(505,234,o), +(522,244,o), +(540,244,cs), +(557,244,o), +(572,232,o), +(572,212,cs), +(572,192,o), +(556,171,o), +(529,147,cs), +(426,53,l), +(426,0,l) +); +} +); +width = 709; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(110,690,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(105,599,o), +(123,633,o), +(141,690,c), +(95,690,l), +(84,677,o), +(69,665,o), +(50,658,c), +(50,586,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,0,l), +(597,690,l), +(494,690,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(648,274,o), +(603,313,o), +(545,313,c), +(485,313,o), +(436,280,o), +(427,204,c), +(498,190,l), +(505,234,o), +(522,244,o), +(540,244,c), +(557,244,o), +(572,232,o), +(572,212,c), +(572,192,o), +(556,171,o), +(529,147,cs), +(426,53,l), +(510,46,l), +(591,115,ls), +(628,147,o), +(648,179,o), +(648,219,c) +); +}, +{ +closed = 1; +nodes = ( +(659,66,l), +(456,66,l), +(426,53,l), +(426,0,l), +(659,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(120,690,l), +(110,610,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(146,589,l), +(120,690,l), +(114,651,o), +(95,639,o), +(52,635,c), +(52,589,l) +); +} +); +width = 709; +} +); +unicode = 189; +}, +{ +color = 6; +glyphname = onequarter; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(175,0,l), +(601,690,l), +(478,690,l), +(52,0,l) +); +}, +{ +closed = 1; +nodes = ( +(179,384,l), +(179,690,l), +(103,690,l), +(96,647,o), +(76,634,o), +(30,631,c), +(30,574,l), +(88,574,l), +(88,384,l) +); +}, +{ +closed = 1; +nodes = ( +(606,0,l), +(606,42,l), +(642,42,l), +(642,112,l), +(606,112,l), +(606,306,l), +(495,306,l), +(384,95,l), +(384,42,l), +(516,42,l), +(516,0,l) +); +}, +{ +closed = 1; +nodes = ( +(516,206,l), +(516,112,l), +(474,112,l) +); +} +); +width = 687; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,0,l), +(597,690,l), +(494,690,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(120,690,l), +(114,651,o), +(95,639,o), +(52,635,c), +(52,589,l), +(110,589,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(598,0,l), +(598,48,l), +(636,48,l), +(636,109,l), +(598,109,l), +(598,306,l), +(498,306,l), +(385,92,l), +(385,48,l), +(523,48,l), +(523,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,233,l), +(523,109,l), +(459,109,l) +); +} +); +width = 666; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,48,l), +(636,48,l), +(636,109,l), +(402,109,l), +(385,92,l) +); +}, +{ +closed = 1; +nodes = ( +(598,0,l), +(598,306,l), +(523,306,l), +(523,0,l) +); +}, +{ +closed = 1; +nodes = ( +(450,92,l), +(561,306,l), +(498,306,l), +(385,92,l) +); +}, +{ +closed = 1; +nodes = ( +(161,0,l), +(597,690,l), +(494,690,l), +(58,0,l) +); +}, +{ +closed = 1; +nodes = ( +(187,384,l), +(187,690,l), +(120,690,l), +(110,610,l), +(110,384,l) +); +}, +{ +closed = 1; +nodes = ( +(146,589,l), +(120,690,l), +(114,651,o), +(95,639,o), +(52,635,c), +(52,589,l) +); +} +); +width = 666; +} +); +unicode = 188; +}, +{ +color = 6; +glyphname = threequarters; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,l), +(661,690,l), +(538,690,l), +(112,0,l) +); +}, +{ +closed = 1; +nodes = ( +(702,42,l), +(702,112,l), +(462,112,l), +(444,95,l), +(444,42,l) +); +}, +{ +closed = 1; +nodes = ( +(234,376,o), +(289,411,o), +(289,482,c), +(289,529,o), +(260,568,o), +(213,568,c), +(196,568,o), +(178,565,o), +(162,561,c), +(177,545,l), +(284,628,l), +(226,667,l), +(115,564,l), +(115,522,l), +(160,522,l), +(188,522,o), +(201,510,o), +(201,489,c), +(201,468,o), +(189,456,o), +(168,456,c), +(146,456,o), +(133,468,o), +(129,499,c), +(40,481,l), +(50,409,o), +(99,376,o), +(164,376,c) +); +}, +{ +closed = 1; +nodes = ( +(526,95,l), +(621,306,l), +(555,306,l), +(444,95,l) +); +}, +{ +closed = 1; +nodes = ( +(666,0,l), +(666,306,l), +(576,306,l), +(576,0,l) +); +}, +{ +closed = 1; +nodes = ( +(256,610,l), +(284,628,l), +(284,690,l), +(48,690,l), +(48,610,l) +); +} +); +width = 747; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,0,l), +(631,690,l), +(528,690,l), +(92,0,l) +); +}, +{ +closed = 1; +nodes = ( +(670,48,l), +(670,109,l), +(436,109,l), +(419,92,l), +(419,48,l) +); +}, +{ +closed = 1; +nodes = ( +(219,377,o), +(274,417,o), +(274,489,c), +(274,539,o), +(241,576,o), +(191,576,c), +(181,576,o), +(166,575,o), +(153,573,c), +(162,547,l), +(269,637,l), +(211,667,l), +(107,565,l), +(107,528,l), +(150,528,l), +(185,528,o), +(203,511,o), +(203,485,c), +(203,458,o), +(182,442,o), +(156,442,c), +(134,442,o), +(109,454,o), +(106,488,c), +(35,473,l), +(43,408,o), +(90,377,o), +(156,377,c) +); +}, +{ +closed = 1; +nodes = ( +(484,92,l), +(595,306,l), +(532,306,l), +(419,92,l) +); +}, +{ +closed = 1; +nodes = ( +(632,0,l), +(632,306,l), +(557,306,l), +(557,0,l) +); +}, +{ +closed = 1; +nodes = ( +(239,624,l), +(269,637,l), +(269,690,l), +(43,690,l), +(43,624,l) +); +} +); +width = 700; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(419,48,l), +(670,48,l), +(670,109,l), +(436,109,l), +(419,92,l) +); +}, +{ +closed = 1; +nodes = ( +(632,0,l), +(632,306,l), +(557,306,l), +(557,0,l) +); +}, +{ +closed = 1; +nodes = ( +(484,92,l), +(595,306,l), +(532,306,l), +(419,92,l) +); +}, +{ +closed = 1; +nodes = ( +(195,0,l), +(631,690,l), +(528,690,l), +(92,0,l) +); +}, +{ +closed = 1; +nodes = ( +(43,624,l), +(239,624,l), +(269,637,l), +(269,690,l), +(43,690,l) +); +}, +{ +closed = 1; +nodes = ( +(162,547,l), +(269,637,l), +(211,667,l), +(107,565,l), +(107,528,l), +(150,528,l), +(185,528,o), +(203,511,o), +(203,485,c), +(203,458,o), +(182,442,o), +(156,442,c), +(134,442,o), +(109,454,o), +(106,488,c), +(35,473,l), +(43,408,o), +(90,377,o), +(156,377,c), +(219,377,o), +(274,417,o), +(274,489,c), +(274,539,o), +(241,576,o), +(191,576,c), +(181,576,o), +(166,575,o), +(153,573,c) +); +} +); +width = 700; +} +); +unicode = 190; +}, +{ +color = 6; +glyphname = onesuperior; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,384,l), +(148,690,l), +(57,690,l), +(57,384,l) +); +}, +{ +closed = 1; +nodes = ( +(60,590,o), +(90,628,o), +(108,690,c), +(43,690,l), +(31,678,o), +(16,667,o), +(-1,661,c), +(-1,577,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(148,384,l), +(148,690,l), +(72,690,l), +(57,593,l), +(57,384,l) +); +}, +{ +closed = 1; +nodes = ( +(93,574,l), +(72,690,l), +(65,647,o), +(45,634,o), +(-1,631,c), +(-1,574,l) +); +} +); +userData = { +ufoStretch.beamYPositionForStretchedGlyph = 114.20507; +}; +width = 176; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(56,599,o), +(74,633,o), +(92,690,c), +(46,690,l), +(35,677,o), +(20,665,o), +(1,658,c), +(1,586,l) +); +}, +{ +closed = 1; +nodes = ( +(138,384,l), +(138,690,l), +(61,690,l), +(61,384,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(138,384,l), +(138,690,l), +(71,690,l), +(61,610,l), +(61,384,l) +); +}, +{ +closed = 1; +nodes = ( +(97,589,l), +(71,690,l), +(65,651,o), +(46,639,o), +(3,635,c), +(3,589,l) +); +} +); +width = 171; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(56,599,o), +(74,633,o), +(92,690,c), +(46,690,l), +(35,677,o), +(20,665,o), +(1,658,c), +(1,586,l) +); +}, +{ +closed = 1; +nodes = ( +(138,384,l), +(138,690,l), +(61,690,l), +(61,384,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(138,384,l), +(138,690,l), +(71,690,l), +(61,610,l), +(61,384,l) +); +}, +{ +closed = 1; +nodes = ( +(97,589,l), +(71,690,l), +(65,651,o), +(45.73,639.304,o), +(3,635,c), +(3,589,l) +); +} +); +width = 171; +} +); +unicode = 185; +}, +{ +color = 6; +glyphname = twosuperior; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(189,502,ls), +(227,533,o), +(244,563,o), +(244,599,c), +(244,657,o), +(197,698,o), +(133,698,c), +(71,698,o), +(21,666,o), +(14,581,c), +(105,573,l), +(106,608,o), +(118,615,o), +(130,615,c), +(142,615,o), +(151,607,o), +(151,592,c), +(151,573,o), +(135,553,o), +(108,530,cs), +(12,447,l), +(113,440,l) +); +}, +{ +closed = 1; +nodes = ( +(254,384,l), +(254,464,l), +(40,464,l), +(12,447,l), +(12,384,l) +); +} +); +width = 265; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,499,ls), +(217,531,o), +(237,563,o), +(237,603,c), +(237,658,o), +(192,697,o), +(134,697,c), +(74,697,o), +(25,664,o), +(16,588,c), +(87,574,l), +(94,618,o), +(111,628,o), +(129,628,c), +(146,628,o), +(161,616,o), +(161,596,c), +(161,576,o), +(145,555,o), +(118,531,cs), +(15,437,l), +(99,430,l) +); +}, +{ +closed = 1; +nodes = ( +(248,384,l), +(248,450,l), +(45,450,l), +(15,437,l), +(15,384,l) +); +} +); +width = 261; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(237,658,o), +(192,697,o), +(134,697,c), +(74,697,o), +(25,664,o), +(16,588,c), +(87,574,l), +(94,618,o), +(111,628,o), +(129,628,c), +(146,628,o), +(161,616,o), +(161,596,c), +(161,576,o), +(145,555,o), +(118,531,cs), +(15,437,l), +(99,430,l), +(180,499,ls), +(217,531,o), +(237,563,o), +(237,603,c) +); +}, +{ +closed = 1; +nodes = ( +(248,450,l), +(45,450,l), +(15,437,l), +(15,384,l), +(248,384,l) +); +} +); +width = 261; +} +); +unicode = 178; +}, +{ +color = 6; +glyphname = threesuperior; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(198,376,o), +(253,411,o), +(253,482,c), +(253,529,o), +(224,568,o), +(177,568,c), +(160,568,o), +(142,565,o), +(126,561,c), +(141,545,l), +(248,628,l), +(190,667,l), +(79,564,l), +(79,522,l), +(124,522,l), +(152,522,o), +(165,510,o), +(165,489,c), +(165,468,o), +(153,456,o), +(132,456,c), +(110,456,o), +(97,468,o), +(93,499,c), +(4,481,l), +(14,409,o), +(63,376,o), +(128,376,c) +); +}, +{ +closed = 1; +nodes = ( +(220,610,l), +(248,628,l), +(248,690,l), +(12,690,l), +(12,610,l) +); +} +); +width = 264; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(192,377,o), +(247,417,o), +(247,489,c), +(247,539,o), +(214,576,o), +(164,576,c), +(154,576,o), +(139,575,o), +(126,573,c), +(135,547,l), +(242,637,l), +(184,667,l), +(80,565,l), +(80,528,l), +(123,528,l), +(158,528,o), +(176,511,o), +(176,485,c), +(176,458,o), +(155,442,o), +(129,442,c), +(107,442,o), +(82,454,o), +(79,488,c), +(8,473,l), +(16,408,o), +(63,377,o), +(129,377,c) +); +}, +{ +closed = 1; +nodes = ( +(212,624,l), +(242,637,l), +(242,690,l), +(16,690,l), +(16,624,l) +); +} +); +width = 261; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(16,624,l), +(212,624,l), +(242,637,l), +(242,690,l), +(16,690,l) +); +}, +{ +closed = 1; +nodes = ( +(135,547,l), +(242,637,l), +(184,667,l), +(80,565,l), +(80,528,l), +(123,528,l), +(158,528,o), +(176,511,o), +(176,485,c), +(176,458,o), +(155,442,o), +(129,442,c), +(107,442,o), +(82,454,o), +(79,488,c), +(8,473,l), +(16,408,o), +(63,377,o), +(129,377,c), +(192,377,o), +(247,417,o), +(247,489,c), +(247,539,o), +(214,576,o), +(164,576,c), +(154,576,o), +(139,575,o), +(126,573,c) +); +} +); +width = 261; +} +); +unicode = 179; +}, +{ +color = 6; +glyphname = space; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +width = 182; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +width = 220; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 220; +} +); +unicode = 32; +}, +{ +color = 6; +glyphname = nbspace; +lastChange = "2024-03-21 11:22:45 +0000"; +layers = ( +{ +layerId = m001; +width = 182; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +width = 220; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 200; +} +); +unicode = 160; +}, +{ +color = 6; +glyphname = CR; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +width = 500; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 500; +} +); +}, +{ +color = 6; +glyphname = NULL; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +width = 500; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 500; +} +); +}, +{ +color = 6; +glyphname = .notdef; +lastChange = "2024-03-21 11:24:13 +0000"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (472,0); +}, +{ +name = top; +pos = (298,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(525,-100,l), +(525,690,l), +(75,690,l), +(75,-100,l) +); +}, +{ +closed = 1; +nodes = ( +(180,594,l), +(420,594,l), +(420,-4,l), +(180,-4,l) +); +} +); +width = 600; +}, +{ +anchors = ( +{ +name = bottom; +pos = (499,0); +}, +{ +name = top; +pos = (356,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(576,-100,l), +(576,690,l), +(100,690,l), +(100,-100,l) +); +}, +{ +closed = 1; +nodes = ( +(255,545,l), +(421,545,l), +(421,45,l), +(255,45,l) +); +} +); +width = 676; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 600; +} +); +}, +{ +color = 6; +glyphname = space.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 600; +} +); +}, +{ +color = 6; +glyphname = period; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(175,-14,o), +(214,21,o), +(214,73,cs), +(214,126,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,cs) +); +} +); +width = 250; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,-10,o), +(175,18,o), +(175,56,cs), +(175,95,o), +(148,123,o), +(110,123,cs), +(72,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72,-10,o), +(110,-10,cs) +); +} +); +width = 220; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(147.823,-10,o), +(175,18,o), +(175,56,cs), +(175,95,o), +(147.823,123,o), +(110,123,cs), +(72.177,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72.177,-10,o), +(110,-10,cs) +); +} +); +width = 220; +} +); +unicode = 46; +}, +{ +color = 6; +glyphname = comma; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,127,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,c), +(104,6,l), +(61,-160,l), +(142,-160,l), +(186,-51,ls), +(204,-6,o), +(214,30,o), +(214,67,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(146,-159,l), +(208,148,l), +(48,148,l), +(48,-159,l) +); +} +); +width = 246; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,-160,l), +(158,113,l), +(44,113,l), +(44,-160,l) +); +} +); +width = 192; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(44,-160,l), +(114,-160,l), +(158,113,l), +(44,113,l) +); +} +); +width = 192; +} +); +unicode = 44; +}, +{ +color = 6; +glyphname = colon; +kernLeft = D; +kernRight = I; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(175,368,o), +(214,404,o), +(214,456,cs), +(214,509,o), +(175,544,o), +(124,544,cs), +(74,544,o), +(36,509,o), +(36,456,cs), +(36,404,o), +(74,368,o), +(124,368,cs) +); +}, +{ +closed = 1; +nodes = ( +(175,-14,o), +(214,21,o), +(214,73,cs), +(214,126,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,cs) +); +} +); +width = 250; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,407,o), +(175,435,o), +(175,473,cs), +(175,512,o), +(148,540,o), +(110,540,cs), +(72,540,o), +(45,512,o), +(45,473,cs), +(45,435,o), +(72,407,o), +(110,407,cs) +); +}, +{ +closed = 1; +nodes = ( +(148,-10,o), +(175,18,o), +(175,56,cs), +(175,95,o), +(148,123,o), +(110,123,cs), +(72,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72,-10,o), +(110,-10,cs) +); +} +); +width = 220; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(147.823,-10,o), +(175,18,o), +(175,56,cs), +(175,95,o), +(147.823,123,o), +(110,123,cs), +(72.177,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72.177,-10,o), +(110,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(148,407,o), +(175,435,o), +(175,473,cs), +(175,512,o), +(148,540,o), +(110,540,cs), +(72,540,o), +(45,512,o), +(45,473,cs), +(45,435,o), +(72,407,o), +(110,407,cs) +); +} +); +width = 220; +} +); +unicode = 58; +}, +{ +color = 6; +glyphname = semicolon; +kernLeft = D; +kernRight = I; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(146,-159,l), +(208,148,l), +(48,148,l), +(48,-159,l) +); +}, +{ +closed = 1; +nodes = ( +(175,368,o), +(214,404,o), +(214,456,cs), +(214,509,o), +(175,544,o), +(124,544,cs), +(74,544,o), +(36,509,o), +(36,456,cs), +(36,404,o), +(74,368,o), +(124,368,cs) +); +} +); +width = 250; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(124,-160,l), +(168,113,l), +(54,113,l), +(54,-160,l) +); +}, +{ +closed = 1; +nodes = ( +(148,407,o), +(175,435,o), +(175,473,cs), +(175,512,o), +(148,540,o), +(110,540,cs), +(72,540,o), +(45,512,o), +(45,473,cs), +(45,435,o), +(72,407,o), +(110,407,cs) +); +} +); +width = 220; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,407,o), +(175,435,o), +(175,473,cs), +(175,512,o), +(148,540,o), +(110,540,cs), +(72,540,o), +(45,512,o), +(45,473,cs), +(45,435,o), +(72,407,o), +(110,407,cs) +); +}, +{ +closed = 1; +nodes = ( +(54,-160,l), +(124,-160,l), +(168,113,l), +(54,113,l) +); +} +); +width = 220; +} +); +unicode = 59; +}, +{ +color = 6; +glyphname = ellipsis; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(655,-14,o), +(694,21,o), +(694,73,cs), +(694,126,o), +(655,162,o), +(604,162,cs), +(554,162,o), +(516,126,o), +(516,73,cs), +(516,21,o), +(554,-14,o), +(604,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(175,-14,o), +(214,21,o), +(214,73,cs), +(214,126,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(415,-14,o), +(454,21,o), +(454,73,cs), +(454,126,o), +(415,162,o), +(364,162,cs), +(314,162,o), +(276,126,o), +(276,73,cs), +(276,21,o), +(314,-14,o), +(364,-14,cs) +); +} +); +width = 730; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(588,-10,o), +(615,18,o), +(615,56,cs), +(615,95,o), +(588,123,o), +(550,123,cs), +(512,123,o), +(485,95,o), +(485,56,cs), +(485,18,o), +(512,-10,o), +(550,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(148,-10,o), +(175,18,o), +(175,56,cs), +(175,95,o), +(148,123,o), +(110,123,cs), +(72,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72,-10,o), +(110,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(368,-10,o), +(395,18,o), +(395,56,cs), +(395,95,o), +(368,123,o), +(330,123,cs), +(292,123,o), +(265,95,o), +(265,56,cs), +(265,18,o), +(292,-10,o), +(330,-10,cs) +); +} +); +width = 660; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,-10,o), +(175,18,o), +(175,56,cs), +(175,95,o), +(148,123,o), +(110,123,cs), +(72,123,o), +(45,95,o), +(45,56,cs), +(45,18,o), +(72,-10,o), +(110,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(368,-10,o), +(395,18,o), +(395,56,cs), +(395,95,o), +(368,123,o), +(330,123,cs), +(292,123,o), +(265,95,o), +(265,56,cs), +(265,18,o), +(292,-10,o), +(330,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(588,-10,o), +(615,18,o), +(615,56,cs), +(615,95,o), +(588,123,o), +(550,123,cs), +(512,123,o), +(485,95,o), +(485,56,cs), +(485,18,o), +(512,-10,o), +(550,-10,cs) +); +} +); +width = 660; +} +); +unicode = 8230; +}, +{ +color = 6; +glyphname = exclam; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(188,247,l), +(215,502,l), +(215,690,l), +(59,690,l), +(59,502,l), +(86,247,l) +); +}, +{ +closed = 1; +nodes = ( +(187,-14,o), +(226,21,o), +(226,73,cs), +(226,126,o), +(187,162,o), +(136,162,cs), +(86,162,o), +(48,126,o), +(48,73,cs), +(48,21,o), +(86,-14,o), +(136,-14,cs) +); +} +); +width = 274; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(188,478,l), +(188,690,l), +(83,690,l), +(83,478,l), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +width = 270; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(83,478,l), +(104,227,l), +(166,227,l), +(188,478,l), +(188,690,l), +(83,690,l) +); +} +); +width = 270; +} +); +unicode = 33; +}, +{ +color = 6; +glyphname = exclamdown; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(215,-175,l), +(215,28,l), +(188,283,l), +(86,283,l), +(59,28,l), +(59,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(188,368,o), +(226,404,o), +(226,457,cs), +(226,509,o), +(188,544,o), +(138,544,cs), +(87,544,o), +(48,509,o), +(48,457,cs), +(48,404,o), +(87,368,o), +(138,368,cs) +); +} +); +width = 274; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(188,-175,l), +(188,52,l), +(166,303,l), +(104,303,l), +(83,52,l), +(83,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(173,407,o), +(200,435,o), +(200,474,cs), +(200,512,o), +(173,540,o), +(135,540,cs), +(97,540,o), +(70,512,o), +(70,474,cs), +(70,435,o), +(97,407,o), +(135,407,cs) +); +} +); +width = 270; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,540,o), +(70,512,o), +(70,474,cs), +(70,435,o), +(97,407,o), +(135,407,cs), +(173,407,o), +(200,435,o), +(200,474,cs), +(200,512,o), +(173,540,o), +(135,540,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,-175,l), +(188,52,l), +(166,303,l), +(104,303,l), +(83,52,l), +(83,-175,l) +); +} +); +width = 270; +} +); +unicode = 161; +}, +{ +color = 6; +glyphname = question; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(229,269,ls), +(218,438,o), +(409,395,o), +(409,514,c), +(409,569,o), +(364,607,o), +(286,607,c), +(207,607,o), +(160,566,o), +(144,484,c), +(45,508,l), +(67,631,o), +(157,700,o), +(288,700,c), +(434,700,o), +(515,626,o), +(515,524,c), +(515,332,o), +(311,383,o), +(304,260,cs), +(302,227,l), +(232,227,l) +); +}, +{ +closed = 1; +nodes = ( +(311,-14,o), +(350,21,o), +(350,73,cs), +(350,126,o), +(311,162,o), +(260,162,cs), +(210,162,o), +(172,126,o), +(172,73,cs), +(172,21,o), +(210,-14,o), +(260,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(522,629,o), +(422,704,o), +(291,704,c), +(156,704,o), +(51,638.184,o), +(32,489,c), +(186,469,l), +(195,538.742,o), +(232,563,o), +(281,563,c), +(327,563,o), +(362,541,o), +(362,503,c), +(362,414,o), +(171,431,o), +(203,264,cs), +(210,227,l), +(312,227,l), +(315,255,ls), +(327,363,o), +(522,332,o), +(522,514,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(322,227,l), +(322,243,ls), +(322,338,o), +(520,340,o), +(520,514,c), +(520,629,o), +(420,704,o), +(289,704,c), +(154,704,o), +(49,638,o), +(30,489,c), +(184,469,l), +(193,539,o), +(231,563,o), +(280,563,c), +(326,563,o), +(360,541,o), +(360,504,c), +(360,414,o), +(185,416,o), +(191,254,cs), +(192,227,l) +); +}, +{ +closed = 1; +nodes = ( +(309,-14,o), +(348,21,o), +(348,73,cs), +(348,126,o), +(309,162,o), +(258,162,cs), +(208,162,o), +(170,126,o), +(170,73,cs), +(170,21,o), +(208,-14,o), +(258,-14,cs) +); +} +); +width = 550; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(229,269,ls), +(217,438,o), +(409,395,o), +(409,514,c), +(409,569,o), +(364.435,607,o), +(286,607,c), +(207.111,607,o), +(159.778,566.308,o), +(144,484,c), +(45,508,l), +(67.175,630.614,o), +(156.798,700,o), +(288,700,c), +(434.331,700,o), +(515,626,o), +(515,524,c), +(515,332,o), +(310.535,383,o), +(304,260,cs), +(302,227,l), +(232,227,l) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(333,18,o), +(333,56,cs), +(333,95,o), +(306,123,o), +(268,123,cs), +(230,123,o), +(203,95,o), +(203,56,cs), +(203,18,o), +(230,-10,o), +(268,-10,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(312,227,l), +(312,255,ls), +(312,378,o), +(515,338,o), +(515,524,c), +(515,626,o), +(436,700,o), +(290,700,c), +(159,700,o), +(67,631,o), +(45,508,c), +(144,484,l), +(160,566,o), +(209,607,o), +(288,607,c), +(366,607,o), +(409,569,o), +(409,514,c), +(409,401,o), +(221,433,o), +(221,264,cs), +(221,227,l) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(333,18,o), +(333,56,cs), +(333,95,o), +(306,123,o), +(268,123,cs), +(230,123,o), +(203,95,o), +(203,56,cs), +(203,18,o), +(230,-10,o), +(268,-10,cs) +); +} +); +width = 555; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(229,269,ls), +(217,438,o), +(409,395,o), +(409,514,c), +(409,569,o), +(364.435,607,o), +(286,607,c), +(207.111,607,o), +(159.778,566.308,o), +(144,484,c), +(45,508,l), +(67.175,630.614,o), +(156.798,700,o), +(288,700,c), +(434.331,700,o), +(515,626,o), +(515,524,c), +(515,332,o), +(310.535,383,o), +(304,260,cs), +(302,227,l), +(232,227,l) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(333,18,o), +(333,56,cs), +(333,95,o), +(306,123,o), +(268,123,cs), +(230,123,o), +(203,95,o), +(203,56,cs), +(203,18,o), +(230,-10,o), +(268,-10,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,264,ls), +(221,433,o), +(409,401,o), +(409,514,c), +(409,569,o), +(366,607,o), +(288,607,c), +(209,607,o), +(159.778,566.308,o), +(144,484,c), +(45,508,l), +(67.175,630.614,o), +(159,700,o), +(290,700,c), +(436,700,o), +(515,626,o), +(515,524,c), +(515,338,o), +(312,378,o), +(312,255,cs), +(312,227,l), +(221,227,l) +); +}, +{ +closed = 1; +nodes = ( +(306,-10,o), +(333,18,o), +(333,56,cs), +(333,95,o), +(306,123,o), +(268,123,cs), +(230,123,o), +(203,95,o), +(203,56,cs), +(203,18,o), +(230,-10,o), +(268,-10,cs) +); +} +); +width = 555; +} +); +unicode = 63; +}, +{ +color = 6; +glyphname = questiondown; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(229,269,ls), +(218,438,o), +(409,395,o), +(409,514,c), +(409,569,o), +(364,607,o), +(286,607,c), +(207,607,o), +(160,566,o), +(144,484,c), +(45,508,l), +(67,631,o), +(157,700,o), +(288,700,c), +(434,700,o), +(515,626,o), +(515,524,c), +(515,332,o), +(311,383,o), +(304,260,cs), +(302,227,l), +(232,227,l) +); +}, +{ +closed = 1; +nodes = ( +(241,544,o), +(202,509,o), +(202,457,cs), +(202,404,o), +(241,368,o), +(292,368,cs), +(342,368,o), +(380,404,o), +(380,457,cs), +(380,509,o), +(342,544,o), +(292,544,cs) +); +}, +{ +closed = 1; +nodes = ( +(30,-115.053,o), +(130,-189,o), +(261,-189,c), +(396,-189,o), +(501,-124.93,o), +(520,31,c), +(366,51,l), +(357,-26.447,o), +(320,-48,o), +(271,-48,c), +(225,-48,o), +(190,-27.333,o), +(190,17,c), +(190,109.724,o), +(381,92.013,o), +(349,266,cs), +(342,303,l), +(240,303,l), +(237,275,ls), +(225,162.83,o), +(30,195.027,o), +(30,6,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(396,-189,o), +(501,-123,o), +(520,26,c), +(366,46,l), +(357,-24,o), +(319,-48,o), +(270,-48,c), +(224,-48,o), +(190,-24,o), +(190,16,c), +(190,110,o), +(365,108,o), +(359,276,cs), +(358,303,l), +(228,303,l), +(228,287,ls), +(228,188,o), +(30,186,o), +(30,6,c), +(30,-112,o), +(130,-189,o), +(261,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(342,368,o), +(380,404,o), +(380,457,cs), +(380,509,o), +(342,544,o), +(292,544,cs), +(241,544,o), +(202,509,o), +(202,457,cs), +(202,404,o), +(241,368,o), +(292,368,cs) +); +} +); +width = 550; +}, +{ +background = { +shapes = ( +{ +closed = 0; +nodes = ( +(227,550,l), +(255,227,l), +(317,227,l), +(345,550,l) +); +}, +{ +closed = 1; +nodes = ( +(326,261,ls), +(337,92,o), +(146,120,o), +(146,1,c), +(146,-54,o), +(191,-92,o), +(269,-92,c), +(348,-92,o), +(395,-51,o), +(411,31,c), +(510,7,l), +(488,-116,o), +(398,-185,o), +(267,-185,c), +(121,-185,o), +(40,-111,o), +(40,-9,c), +(40,183,o), +(244,147,o), +(251,270,cs), +(253,303,l), +(323,303,l) +); +}, +{ +closed = 1; +nodes = ( +(249,540,o), +(222,512,o), +(222,474,cs), +(222,435,o), +(249,407,o), +(287,407,cs), +(325,407,o), +(352,435,o), +(352,474,cs), +(352,512,o), +(325,540,o), +(287,540,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(396,-185,o), +(488,-114,o), +(510,12,c), +(411,36,l), +(395,-49,o), +(346,-92,o), +(267,-92,c), +(189,-92,o), +(146,-52,o), +(146,6,c), +(146,124,o), +(334,90,o), +(334,266,cs), +(334,303,l), +(243,303,l), +(243,275,ls), +(243,147,o), +(40,189,o), +(40,-4,c), +(40,-109,o), +(119,-185,o), +(265,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(325,407,o), +(352,435,o), +(352,474,cs), +(352,512,o), +(325,540,o), +(287,540,cs), +(249,540,o), +(222,512,o), +(222,474,cs), +(222,435,o), +(249,407,o), +(287,407,cs) +); +} +); +width = 555; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 0; +nodes = ( +(227,550,l), +(255,227,l), +(317,227,l), +(345,550,l) +); +}, +{ +closed = 1; +nodes = ( +(326,261,ls), +(337,92,o), +(146,120,o), +(146,1,c), +(146,-54,o), +(191,-92,o), +(269,-92,c), +(348,-92,o), +(395,-51,o), +(411,31,c), +(510,7,l), +(488,-116,o), +(398,-185,o), +(267,-185,c), +(121,-185,o), +(40,-111,o), +(40,-9,c), +(40,183,o), +(244,147,o), +(251,270,cs), +(253,303,l), +(323,303,l) +); +}, +{ +closed = 1; +nodes = ( +(249,540,o), +(222,512,o), +(222,474,cs), +(222,435,o), +(249,407,o), +(287,407,cs), +(325,407,o), +(352,435,o), +(352,474,cs), +(352,512,o), +(325,540,o), +(287,540,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,266,ls), +(334,90.24,o), +(146,123.52,o), +(146,6,c), +(146,-51.957,o), +(189,-92,o), +(267,-92,c), +(346,-92,o), +(395,-49.333,o), +(411,36,c), +(510,12,l), +(488,-114.203,o), +(396,-185,o), +(265,-185,c), +(119,-185,o), +(40,-108.898,o), +(40,-4,c), +(40,188.914,o), +(243,147.428,o), +(243,275,cs), +(243,303,l), +(334,303,l) +); +}, +{ +closed = 1; +nodes = ( +(249,540,o), +(222,512,o), +(222,474,cs), +(222,435,o), +(249,407,o), +(287,407,cs), +(325,407,o), +(352,435,o), +(352,474,cs), +(352,512,o), +(325,540,o), +(287,540,cs) +); +} +); +width = 555; +} +); +unicode = 191; +}, +{ +color = 6; +glyphname = periodcentered; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(175,213,o), +(214,248,o), +(214,300,cs), +(214,353,o), +(175,389,o), +(124,389,cs), +(74,389,o), +(36,353,o), +(36,300,cs), +(36,248,o), +(74,213,o), +(124,213,cs) +); +} +); +width = 250; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +width = 220; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +width = 220; +} +); +unicode = 183; +}, +{ +color = 6; +glyphname = bullet; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(206,188,o), +(255,232,o), +(255,298,cs), +(255,365,o), +(206,411,o), +(141,411,cs), +(79,411,o), +(30,365,o), +(30,298,cs), +(30,232,o), +(79,188,o), +(141,188,cs) +); +} +); +width = 285; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,203,o), +(235,243,o), +(235,296,cs), +(235,352,o), +(197,392,o), +(143,392,cs), +(89,392,o), +(50,352,o), +(50,296,cs), +(50,243,o), +(89,203,o), +(143,203,cs) +); +} +); +width = 285; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,203,o), +(235,243,o), +(235,296,cs), +(235,352,o), +(197,392,o), +(143,392,cs), +(89,392,o), +(50,352,o), +(50,296,cs), +(50,243,o), +(89,203,o), +(143,203,cs) +); +} +); +width = 285; +} +); +unicode = 8226; +}, +{ +color = 6; +glyphname = asterisk; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(222,704,o), +(196,675,o), +(196,636,c), +(196,613,o), +(202,595,o), +(208,580,cs), +(246,477,l), +(275,477,l), +(314,580,ls), +(320,595,o), +(326,613,o), +(326,636,c), +(326,675,o), +(300,704,o), +(261,704,cs) +); +}, +{ +closed = 1; +nodes = ( +(470,476,o), +(489,511,o), +(478,548,cs), +(466,585,o), +(430,600,o), +(392,588,c), +(371,581,o), +(355,570,o), +(343,560,cs), +(257,491,l), +(266,464,l), +(375,458,ls), +(391,458,o), +(411,457,o), +(433,465,c) +); +}, +{ +closed = 1; +nodes = ( +(325,279,o), +(364,271,o), +(396,293,cs), +(428,316,o), +(431,356,o), +(407,387,c), +(395,405,o), +(379,417,o), +(365,425,cs), +(273,486,l), +(249,469,l), +(279,363,ls), +(283,347,o), +(288,329,o), +(303,311,c) +); +}, +{ +closed = 1; +nodes = ( +(111,457,o), +(131,458,o), +(147,458,cs), +(256,464,l), +(265,491,l), +(179,560,ls), +(167,570,o), +(151,581,o), +(129,588,c), +(92,600,o), +(56,585,o), +(44,548,cs), +(33,511,o), +(52,476,o), +(89,465,c) +); +}, +{ +closed = 1; +nodes = ( +(272,469,l), +(249,486,l), +(156,425,ls), +(143,417,o), +(127,405,o), +(115,387,c), +(91,356,o), +(94,316,o), +(126,293,cs), +(158,271,o), +(197,279,o), +(219,311,c), +(233,329,o), +(239,347,o), +(243,363,cs) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(444,347,l), +(282,493,l), +(232,456,l), +(320,258,l) +); +}, +{ +closed = 1; +nodes = ( +(286,456,l), +(236,493,l), +(74,347,l), +(198,258,l) +); +}, +{ +closed = 1; +nodes = ( +(271,507,l), +(82,616,l), +(35,471,l), +(251,448,l) +); +}, +{ +closed = 1; +nodes = ( +(290,477,l), +(335,690,l), +(183,690,l), +(228,477,l) +); +}, +{ +closed = 1; +nodes = ( +(482,471,l), +(435,616,l), +(246,507,l), +(266,448,l) +); +} +); +width = 517; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,700,o), +(214,676,o), +(214,646,c), +(214,633,o), +(216,620,o), +(220,602,cs), +(246,477,l), +(284,477,l), +(310,602,ls), +(314,620,o), +(316,633,o), +(316,646,c), +(316,676,o), +(295,700,o), +(265,700,cs) +); +}, +{ +closed = 1; +nodes = ( +(470,490,o), +(487,517,o), +(478,546,cs), +(468,574,o), +(439,587,o), +(410,577,c), +(398,573,o), +(386,567,o), +(370,558,cs), +(260,495,l), +(271,459,l), +(398,471,ls), +(417,473,o), +(430,476,o), +(442,480,c) +); +}, +{ +closed = 1; +nodes = ( +(340,286,o), +(371,278,o), +(396,295,cs), +(420,313,o), +(423,345,o), +(404,369,c), +(397,380,o), +(388,389,o), +(374,402,cs), +(280,487,l), +(249,465,l), +(300,349,ls), +(308,331,o), +(315,319,o), +(322,309,c) +); +}, +{ +closed = 1; +nodes = ( +(100,476,o), +(113,473,o), +(132,471,cs), +(259,459,l), +(270,495,l), +(160,558,ls), +(144,567,o), +(132,573,o), +(120,577,c), +(91,587,o), +(62,574,o), +(52,546,cs), +(43,517,o), +(60,490,o), +(88,480,c) +); +}, +{ +closed = 1; +nodes = ( +(281,465,l), +(250,487,l), +(156,402,ls), +(142,389,o), +(133,380,o), +(126,369,c), +(107,345,o), +(110,313,o), +(134,295,cs), +(159,278,o), +(190,286,o), +(208,309,c), +(215,319,o), +(222,331,o), +(230,349,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(429,333,l), +(281,490,l), +(243,462,l), +(347,274,l) +); +}, +{ +closed = 1; +nodes = ( +(284,462,l), +(246,490,l), +(98,333,l), +(180,274,l) +); +}, +{ +closed = 1; +nodes = ( +(271,500,l), +(76,592,l), +(45,495,l), +(256,455,l) +); +}, +{ +closed = 1; +nodes = ( +(288,477,l), +(315,690,l), +(213,690,l), +(240,477,l) +); +}, +{ +closed = 1; +nodes = ( +(482,495,l), +(451,592,l), +(256,500,l), +(271,455,l) +); +} +); +width = 527; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(235,700,o), +(214,676,o), +(214,646,c), +(214,633,o), +(216,620,o), +(220,602,cs), +(246,477,l), +(284,477,l), +(310,602,ls), +(314,620,o), +(316,633,o), +(316,646,c), +(316,676,o), +(295,700,o), +(265,700,cs) +); +}, +{ +closed = 1; +nodes = ( +(470,490,o), +(487,517,o), +(478,546,cs), +(468,574,o), +(439,587,o), +(410,577,c), +(398,573,o), +(386,567,o), +(370,558,cs), +(260,495,l), +(271,459,l), +(398,471,ls), +(417,473,o), +(430,476,o), +(442,480,c) +); +}, +{ +closed = 1; +nodes = ( +(340,286,o), +(371,278,o), +(396,295,cs), +(420,313,o), +(423,345,o), +(404,369,c), +(397,380,o), +(388,389,o), +(374,402,cs), +(280,487,l), +(249,465,l), +(300,349,ls), +(308,331,o), +(315,319,o), +(322,309,c) +); +}, +{ +closed = 1; +nodes = ( +(100,476,o), +(113,473,o), +(132,471,cs), +(259,459,l), +(270,495,l), +(160,558,ls), +(144,567,o), +(132,573,o), +(120,577,c), +(91,587,o), +(62,574,o), +(52,546,cs), +(43,517,o), +(60,490,o), +(88,480,c) +); +}, +{ +closed = 1; +nodes = ( +(281,465,l), +(250,487,l), +(156,402,ls), +(142,389,o), +(133,380,o), +(126,369,c), +(107,345,o), +(110,313,o), +(134,295,cs), +(159,278,o), +(190,286,o), +(208,309,c), +(215,319,o), +(222,331,o), +(230,349,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,477,l), +(288,477,l), +(315,690,l), +(213,690,l) +); +}, +{ +closed = 1; +nodes = ( +(256,455,l), +(271,500,l), +(76,592,l), +(45,495,l) +); +}, +{ +closed = 1; +nodes = ( +(284,462,l), +(246,490,l), +(98,333,l), +(180,274,l) +); +}, +{ +closed = 1; +nodes = ( +(451,592,l), +(256,500,l), +(271,455,l), +(482,495,l) +); +}, +{ +closed = 1; +nodes = ( +(429,333,l), +(281,490,l), +(243,462,l), +(347,274,l) +); +} +); +width = 527; +} +); +unicode = 42; +}, +{ +color = 6; +glyphname = numbersign; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(408,0,l), +(564,690,l), +(429,690,l), +(273,0,l) +); +}, +{ +closed = 1; +nodes = ( +(541,176,l), +(541,300,l), +(15,300,l), +(15,176,l) +); +}, +{ +closed = 1; +nodes = ( +(171,0,l), +(327,690,l), +(192,690,l), +(36,0,l) +); +}, +{ +closed = 1; +nodes = ( +(588,406,l), +(588,530,l), +(62,530,l), +(62,406,l) +); +} +); +width = 603; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(398,0,l), +(554,690,l), +(462,690,l), +(306,0,l) +); +}, +{ +closed = 1; +nodes = ( +(551,192,l), +(551,278,l), +(20,278,l), +(20,192,l) +); +}, +{ +closed = 1; +nodes = ( +(158,0,l), +(314,690,l), +(222,690,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(604,428,l), +(604,514,l), +(73,514,l), +(73,428,l) +); +} +); +width = 624; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,0,l), +(314,690,l), +(222,690,l), +(66,0,l) +); +}, +{ +closed = 1; +nodes = ( +(398,0,l), +(554,690,l), +(462,690,l), +(306,0,l) +); +}, +{ +closed = 1; +nodes = ( +(73,428,l), +(604,428,l), +(604,514,l), +(73,514,l) +); +}, +{ +closed = 1; +nodes = ( +(20,192,l), +(551,192,l), +(551,278,l), +(20,278,l) +); +} +); +width = 624; +} +); +unicode = 35; +}, +{ +color = 6; +glyphname = slash; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(143,-120,l), +(343,770,l), +(200,770,l), +(0,-120,l) +); +} +); +width = 343; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,-120,l), +(292,770,l), +(200,770,l), +(0,-120,l) +); +} +); +width = 292; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,-120,l), +(292,770,l), +(200,770,l), +(0,-120,l) +); +} +); +width = 292; +} +); +unicode = 47; +}, +{ +color = 6; +glyphname = backslash; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(343,-120,l), +(143,770,l), +(0,770,l), +(200,-120,l) +); +} +); +width = 343; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,-120,l), +(92,770,l), +(0,770,l), +(200,-120,l) +); +} +); +width = 292; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,770,l), +(0,770,l), +(200,-120,l), +(292,-120,l) +); +} +); +width = 292; +} +); +unicode = 92; +}, +{ +color = 10; +glyphname = periodcentered.loclCAT; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = periodcentered; +} +); +width = 220; +}, +{ +layerId = m001; +shapes = ( +{ +ref = periodcentered; +} +); +width = 250; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 600; +} +); +}, +{ +color = 10; +glyphname = period.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +pos = (175,0); +ref = period; +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +pos = (190,0); +ref = period; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +pos = (190,0); +ref = period; +} +); +width = 600; +} +); +}, +{ +color = 10; +glyphname = comma.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,127,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,c), +(104,6,l), +(61,-160,l), +(142,-160,l), +(186,-51,ls), +(204,-6,o), +(214,30,o), +(214,67,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +pos = (177,0); +ref = comma; +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +pos = (190,0); +ref = comma; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +pos = (190,0); +ref = comma; +} +); +width = 600; +} +); +}, +{ +color = 10; +glyphname = colon.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +pos = (175,0); +ref = colon; +} +); +width = 600; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +pos = (190,0); +ref = colon; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +pos = (190,0); +ref = colon; +} +); +width = 600; +} +); +}, +{ +color = 10; +glyphname = semicolon.tf; +lastChange = "2024-03-21 11:23:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +pos = (175,0); +ref = semicolon; +} +); +width = 600; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(162,0,l), +(162,690,l), +(58,690,l), +(58,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +pos = (190,0); +ref = semicolon; +} +); +width = 600; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(162,0,l), +(162,690,l), +(58,690,l), +(58,0,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +pos = (190,0); +ref = semicolon; +} +); +width = 600; +} +); +}, +{ +color = 10; +glyphname = periodcentered.loclCAT.case; +lastChange = "2024-03-21 11:17:30 +0000"; +layers = ( +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +pos = (0,50); +ref = periodcentered; +} +); +width = 220; +}, +{ +layerId = m001; +shapes = ( +{ +pos = (0,70); +ref = periodcentered; +} +); +width = 250; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 600; +} +); +}, +{ +color = 6; +glyphname = hyphen; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(320,239,l), +(320,368,l), +(46,368,l), +(46,239,l) +); +} +); +width = 366; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,261,l), +(315,346,l), +(60,346,l), +(60,261,l) +); +} +); +width = 375; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,261,l), +(315,261,l), +(315,346,l), +(60,346,l) +); +} +); +width = 375; +} +); +unicode = 45; +}, +{ +color = 6; +glyphname = endash; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(440,239,l), +(440,368,l), +(46,368,l), +(46,239,l) +); +} +); +width = 486; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(435,261,l), +(435,346,l), +(60,346,l), +(60,261,l) +); +} +); +width = 495; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,261,l), +(435,261,l), +(435,346,l), +(60,346,l) +); +} +); +width = 495; +} +); +unicode = 8211; +}, +{ +color = 6; +glyphname = emdash; +kernLeft = L; +kernRight = a; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(794,239,l), +(794,368,l), +(21,368,l), +(21,239,l) +); +} +); +width = 815; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(785,261,l), +(785,346,l), +(30,346,l), +(30,261,l) +); +} +); +width = 815; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(30,261,l), +(785,261,l), +(785,346,l), +(30,346,l) +); +} +); +width = 815; +} +); +unicode = 8212; +}, +{ +color = 6; +glyphname = underscore; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(471,-130,l), +(471,0,l), +(0,0,l), +(0,-130,l) +); +} +); +width = 471; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(435,-85,l), +(435,0,l), +(0,0,l), +(0,-85,l) +); +} +); +width = 435; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(0,-85,l), +(435,-85,l), +(435,0,l), +(0,0,l) +); +} +); +width = 435; +} +); +unicode = 95; +}, +{ +color = 6; +glyphname = parenleft; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(376,-56,l), +(285,-9,o), +(200,106,o), +(200,325,c), +(200,543,o), +(285,659,o), +(376,706,c), +(332,802,l), +(163,746,o), +(56,586,o), +(56,325,c), +(56,64,o), +(163,-96,o), +(332,-152,c) +); +} +); +width = 351; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(344,-65,l), +(249,-8,o), +(169,111,o), +(169,325,c), +(169,540,o), +(249,658,o), +(344,715,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c) +); +} +); +width = 324; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,539.5,o), +(249,658.45,o), +(344,715,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-65,l), +(249,-8.45,o), +(169,110.5,o), +(169,325,c) +); +} +); +width = 324; +} +); +unicode = 40; +}, +{ +color = 6; +glyphname = parenright; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(188,-96,o), +(294,64,o), +(294,325,c), +(294,586,o), +(188,746,o), +(18,802,c), +(-24,706,l), +(66,659,o), +(150,543,o), +(150,325,c), +(150,106,o), +(66,-9,o), +(-24,-56,c), +(18,-152,l) +); +} +); +width = 351; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(162,-63,o), +(254,86,o), +(254,325,c), +(254,564,o), +(162,713,o), +(14,780,c), +(-20,715,l), +(75,658,o), +(155,540,o), +(155,325,c), +(155,111,o), +(75,-8,o), +(-20,-65,c), +(14,-130,l) +); +} +); +width = 324; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(400,0,l), +(500,0,l), +(500,332,l), +(500,460,o), +(425,540,o), +(318,540,c), +(209,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,406,o), +(213,457,o), +(280,457,c), +(347,457,o), +(400,406,o), +(400,309,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(155,110.5,o), +(75,-8.45,o), +(-20,-65,c), +(14,-130,l), +(162,-63,o), +(254,86,o), +(254,325,c), +(254,564,o), +(162,713,o), +(14,780,c), +(-20,715,l), +(75,658.45,o), +(155,539.5,o), +(155,325,c) +); +} +); +width = 324; +} +); +unicode = 41; +}, +{ +color = 6; +glyphname = braceleft; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(354,-46,l), +(243,-32,o), +(195,4,o), +(195,51,c), +(195,120,o), +(266,156,o), +(266,234,c), +(266,284,o), +(217,325,o), +(135,329,c), +(135,321,l), +(217,325,o), +(266,366,o), +(266,416,c), +(266,494,o), +(195,530,o), +(195,599,c), +(195,646,o), +(243,682,o), +(354,696,c), +(340,802,l), +(143,788,o), +(61,713,o), +(61,615,c), +(61,516,o), +(140,477,o), +(140,421,c), +(140,396,o), +(124,378,o), +(92,378,c), +(50,378,l), +(50,272,l), +(92,272,l), +(124,272,o), +(140,254,o), +(140,229,c), +(140,173,o), +(61,134,o), +(61,35,c), +(61,-63,o), +(143,-138,o), +(340,-152,c) +); +} +); +width = 346; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,-58,l), +(235,-50,o), +(185,-6,o), +(185,51,c), +(185,128,o), +(263,150,o), +(263,234,c), +(263,292,o), +(216,335,o), +(140,339,c), +(140,311,l), +(216,315,o), +(263,358,o), +(263,416,c), +(263,500,o), +(185,522,o), +(185,599,c), +(185,656,o), +(235,700,o), +(343,708,c), +(335,785,l), +(159,772,o), +(86,698,o), +(86,605,c), +(86,511,o), +(174,472,o), +(174,419,c), +(174,388,o), +(155,366,o), +(116,366,c), +(75,366,l), +(75,284,l), +(116,284,l), +(155,284,o), +(174,262,o), +(174,231,c), +(174,178,o), +(86,139,o), +(86,45,c), +(86,-48,o), +(159,-122,o), +(335,-135,c) +); +} +); +width = 338; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(216,335,o), +(263,292,o), +(263,234,c), +(263,150,o), +(185,128,o), +(185,51,c), +(185,-6.368,o), +(235,-50.351,o), +(343,-58,c), +(335,-135,l), +(159,-121.629,o), +(86,-47.571,o), +(86,45,c), +(86,139,o), +(174,178,o), +(174,231,c), +(174,262,o), +(155,284,o), +(116,284,c), +(75,284,l), +(75,366,l), +(116,366,l), +(155,366,o), +(174,388,o), +(174,419,c), +(174,472,o), +(86,511,o), +(86,605,c), +(86,697.571,o), +(159,771.629,o), +(335,785,c), +(343,708,l), +(235,700.351,o), +(185,656.368,o), +(185,599,c), +(185,522,o), +(263,500,o), +(263,416,c), +(263,358,o), +(216,315,o), +(140,311,c), +(140,339,l) +); +} +); +width = 338; +} +); +unicode = 123; +}, +{ +color = 6; +glyphname = braceright; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(203,-138,o), +(285,-63,o), +(285,35,c), +(285,134,o), +(206,173,o), +(206,229,c), +(206,254,o), +(222,272,o), +(254,272,c), +(296,272,l), +(296,378,l), +(254,378,l), +(222,378,o), +(206,396,o), +(206,421,c), +(206,477,o), +(285,516,o), +(285,615,c), +(285,713,o), +(203,788,o), +(6,802,c), +(-8,696,l), +(103,682,o), +(151,646,o), +(151,599,c), +(151,530,o), +(80,494,o), +(80,416,c), +(80,366,o), +(129,325,o), +(211,321,c), +(211,329,l), +(129,325,o), +(80,284,o), +(80,234,c), +(80,156,o), +(151,120,o), +(151,51,c), +(151,4,o), +(103,-32,o), +(-8,-46,c), +(6,-152,l) +); +} +); +width = 346; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(179,-122,o), +(252,-48,o), +(252,45,c), +(252,139,o), +(164,178,o), +(164,231,c), +(164,262,o), +(183,284,o), +(222,284,c), +(263,284,l), +(263,366,l), +(222,366,l), +(183,366,o), +(164,388,o), +(164,419,c), +(164,472,o), +(252,511,o), +(252,605,c), +(252,698,o), +(179,772,o), +(3,785,c), +(-5,708,l), +(103,700,o), +(153,656,o), +(153,599,c), +(153,522,o), +(75,500,o), +(75,416,c), +(75,358,o), +(122,315,o), +(198,311,c), +(198,339,l), +(122,335,o), +(75,292,o), +(75,234,c), +(75,150,o), +(153,128,o), +(153,51,c), +(153,-6,o), +(103,-50,o), +(-5,-58,c), +(3,-135,l) +); +} +); +width = 338; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,311,l), +(122,315,o), +(75,358,o), +(75,416,c), +(75,500,o), +(153,522,o), +(153,599,c), +(153,656.368,o), +(103,700.351,o), +(-5,708,c), +(3,785,l), +(179,771.629,o), +(252,697.571,o), +(252,605,c), +(252,511,o), +(164,472,o), +(164,419,c), +(164,388,o), +(183,366,o), +(222,366,c), +(263,366,l), +(263,284,l), +(222,284,l), +(183,284,o), +(164,262,o), +(164,231,c), +(164,178,o), +(252,139,o), +(252,45,c), +(252,-47.571,o), +(179,-121.629,o), +(3,-135,c), +(-5,-58,l), +(103,-50.351,o), +(153,-6.368,o), +(153,51,c), +(153,128,o), +(75,150,o), +(75,234,c), +(75,292,o), +(122,335,o), +(198,339,c) +); +} +); +width = 338; +} +); +unicode = 125; +}, +{ +color = 6; +glyphname = bracketleft; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(209,-120,l), +(209,770,l), +(70,770,l), +(70,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(312,-120,l), +(312,10,l), +(118,10,l), +(118,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(312,640,l), +(312,770,l), +(118,770,l), +(118,640,l) +); +} +); +width = 322; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,-120,l), +(170,770,l), +(80,770,l), +(80,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(316,-120,l), +(316,-40,l), +(110,-40,l), +(110,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(316,690,l), +(316,770,l), +(110,770,l), +(110,690,l) +); +} +); +width = 311; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,-120,l), +(170,770,l), +(80,770,l), +(80,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(110,690,l), +(316,690,l), +(316,770,l), +(110,770,l) +); +}, +{ +closed = 1; +nodes = ( +(110,-120,l), +(316,-120,l), +(316,-40,l), +(110,-40,l) +); +} +); +width = 311; +} +); +unicode = 91; +}, +{ +color = 6; +glyphname = bracketright; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(252,-120,l), +(252,770,l), +(113,770,l), +(113,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(204,-120,l), +(204,10,l), +(10,10,l), +(10,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(204,640,l), +(204,770,l), +(10,770,l), +(10,640,l) +); +} +); +width = 322; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,-120,l), +(231,770,l), +(141,770,l), +(141,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(201,-120,l), +(201,-40,l), +(-5,-40,l), +(-5,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(201,690,l), +(201,770,l), +(-5,770,l), +(-5,690,l) +); +} +); +width = 311; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(169,545,o), +(249,667,o), +(344,725,c), +(310,780,l), +(162,713,o), +(70,564,o), +(70,325,c), +(70,86,o), +(162,-63,o), +(310,-130,c), +(344,-75,l), +(249,-17,o), +(169,105,o), +(169,325,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,770,l), +(141,770,l), +(141,-120,l), +(231,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(-5,770,l), +(-5,690,l), +(201,690,l), +(201,770,l) +); +}, +{ +closed = 1; +nodes = ( +(-5,-40,l), +(-5,-120,l), +(201,-120,l), +(201,-40,l) +); +} +); +width = 311; +} +); +unicode = 93; +}, +{ +color = 6; +glyphname = quotesinglbase; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(214,127,o), +(175,162,o), +(124,162,cs), +(74,162,o), +(36,126,o), +(36,73,cs), +(36,21,o), +(74,-14,o), +(124,-14,c), +(104,6,l), +(61,-160,l), +(142,-160,l), +(186,-51,ls), +(204,-6,o), +(214,30,o), +(214,67,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(146,-159,l), +(208,148,l), +(48,148,l), +(48,-159,l) +); +} +); +width = 246; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,-160,l), +(158,113,l), +(44,113,l), +(44,-160,l) +); +} +); +width = 192; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(44,-160,l), +(114,-160,l), +(158,113,l), +(44,113,l) +); +} +); +width = 192; +} +); +unicode = 8218; +}, +{ +color = 6; +glyphname = quotedblbase; +kernLeft = K; +kernRight = Q; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(346,-159,l), +(408,148,l), +(248,148,l), +(248,-159,l) +); +}, +{ +closed = 1; +nodes = ( +(146,-159,l), +(208,148,l), +(48,148,l), +(48,-159,l) +); +} +); +width = 446; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,-160,l), +(318,113,l), +(204,113,l), +(204,-160,l) +); +}, +{ +closed = 1; +nodes = ( +(114,-160,l), +(158,113,l), +(44,113,l), +(44,-160,l) +); +} +); +width = 352; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(44,-160,l), +(114,-160,l), +(158,113,l), +(44,113,l) +); +}, +{ +closed = 1; +nodes = ( +(204,-160,l), +(274,-160,l), +(318,113,l), +(204,113,l) +); +} +); +width = 352; +} +); +unicode = 8222; +}, +{ +color = 6; +glyphname = quotedblleft; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(398,383,l), +(398,690,l), +(300,690,l), +(238,383,l) +); +}, +{ +closed = 1; +nodes = ( +(198,383,l), +(198,690,l), +(100,690,l), +(38,383,l) +); +} +); +width = 446; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,417,l), +(308,690,l), +(238,690,l), +(194,417,l) +); +}, +{ +closed = 1; +nodes = ( +(148,417,l), +(148,690,l), +(78,690,l), +(34,417,l) +); +} +); +width = 352; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,690,l), +(238,690,l), +(194,417,l), +(308,417,l) +); +}, +{ +closed = 1; +nodes = ( +(148,690,l), +(78,690,l), +(34,417,l), +(148,417,l) +); +} +); +width = 352; +} +); +unicode = 8220; +}, +{ +color = 6; +glyphname = quotedblright; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(346,383,l), +(408,690,l), +(248,690,l), +(248,383,l) +); +}, +{ +closed = 1; +nodes = ( +(146,383,l), +(208,690,l), +(48,690,l), +(48,383,l) +); +} +); +width = 446; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,417,l), +(318,690,l), +(204,690,l), +(204,417,l) +); +}, +{ +closed = 1; +nodes = ( +(114,417,l), +(158,690,l), +(44,690,l), +(44,417,l) +); +} +); +width = 352; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(44,417,l), +(114,417,l), +(158,690,l), +(44,690,l) +); +}, +{ +closed = 1; +nodes = ( +(204,417,l), +(274,417,l), +(318,690,l), +(204,690,l) +); +} +); +width = 352; +} +); +unicode = 8221; +}, +{ +color = 6; +glyphname = quoteleft; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(198,383,l), +(198,690,l), +(100,690,l), +(38,383,l) +); +} +); +width = 246; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,417,l), +(148,690,l), +(78,690,l), +(34,417,l) +); +} +); +width = 192; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,690,l), +(78,690,l), +(34,417,l), +(148,417,l) +); +} +); +width = 192; +} +); +unicode = 8216; +}, +{ +color = 6; +glyphname = quoteright; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(146,383,l), +(208,690,l), +(48,690,l), +(48,383,l) +); +} +); +width = 246; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,417,l), +(158,690,l), +(44,690,l), +(44,417,l) +); +} +); +width = 192; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(44,417,l), +(114,417,l), +(158,690,l), +(44,690,l) +); +} +); +width = 192; +} +); +unicode = 8217; +}, +{ +color = 6; +glyphname = guillemetleft; +kernLeft = F; +kernRight = K; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(351,76,l), +(507,76,l), +(372,290,l), +(507,504,l), +(351,504,l), +(238,327,l), +(238,253,l) +); +}, +{ +closed = 1; +nodes = ( +(285,76,l), +(149,290,l), +(285,504,l), +(128,504,l), +(16,327,l), +(16,253,l), +(128,76,l) +); +} +); +width = 508; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,80,l), +(447,80,l), +(304,290,l), +(447,500,l), +(340,500,l), +(220,323,l), +(220,257,l) +); +}, +{ +closed = 1; +nodes = ( +(247,80,l), +(104,290,l), +(247,500,l), +(140,500,l), +(20,323,l), +(20,257,l), +(140,80,l) +); +} +); +width = 452; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,257,l), +(104,290,l), +(247,500,l), +(140,500,l), +(20,323,l) +); +}, +{ +closed = 1; +nodes = ( +(247,80,l), +(104,290,l), +(20,323,l), +(20,257,l), +(140,80,l) +); +}, +{ +closed = 1; +nodes = ( +(220,257,l), +(304,290,l), +(447,500,l), +(340,500,l), +(220,323,l) +); +}, +{ +closed = 1; +nodes = ( +(447,80,l), +(304,290,l), +(220,323,l), +(220,257,l), +(340,80,l) +); +} +); +width = 452; +} +); +unicode = 171; +}, +{ +color = 6; +glyphname = guillemetright; +kernLeft = E; +kernRight = J; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(380,76,l), +(492,253,l), +(492,327,l), +(380,504,l), +(223,504,l), +(359,290,l), +(223,76,l) +); +}, +{ +closed = 1; +nodes = ( +(157,76,l), +(270,253,l), +(270,327,l), +(157,504,l), +(0,504,l), +(136,290,l), +(0,76,l) +); +} +); +width = 508; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(312,80,l), +(432,257,l), +(432,323,l), +(312,500,l), +(205,500,l), +(348,290,l), +(205,80,l) +); +}, +{ +closed = 1; +nodes = ( +(112,80,l), +(232,257,l), +(232,323,l), +(112,500,l), +(5,500,l), +(148,290,l), +(5,80,l) +); +} +); +width = 452; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(432,323,l), +(348,290,l), +(205,80,l), +(312,80,l), +(432,257,l) +); +}, +{ +closed = 1; +nodes = ( +(205,500,l), +(348,290,l), +(432,257,l), +(432,323,l), +(312,500,l) +); +}, +{ +closed = 1; +nodes = ( +(232,323,l), +(148,290,l), +(5,80,l), +(112,80,l), +(232,257,l) +); +}, +{ +closed = 1; +nodes = ( +(5,500,l), +(148,290,l), +(232,257,l), +(232,323,l), +(112,500,l) +); +} +); +width = 452; +} +); +unicode = 187; +}, +{ +color = 6; +glyphname = guilsinglleft; +kernLeft = F; +kernRight = K; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(285,76,l), +(149,290,l), +(285,504,l), +(128,504,l), +(16,327,l), +(16,253,l), +(128,76,l) +); +} +); +width = 285; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,80,l), +(104,290,l), +(247,500,l), +(140,500,l), +(20,323,l), +(20,257,l), +(140,80,l) +); +} +); +width = 252; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(20,257,l), +(104,290,l), +(247,500,l), +(140,500,l), +(20,323,l) +); +}, +{ +closed = 1; +nodes = ( +(247,80,l), +(104,290,l), +(20,323,l), +(20,257,l), +(140,80,l) +); +} +); +width = 252; +} +); +unicode = 8249; +}, +{ +color = 6; +glyphname = guilsinglright; +kernLeft = E; +kernRight = J; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(157,76,l), +(270,253,l), +(270,327,l), +(157,504,l), +(0,504,l), +(136,290,l), +(0,76,l) +); +} +); +width = 285; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(112,80,l), +(232,257,l), +(232,323,l), +(112,500,l), +(5,500,l), +(148,290,l), +(5,80,l) +); +} +); +width = 252; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(112,500,l), +(5,500,l), +(148,290,l), +(232,257,l), +(232,323,l) +); +}, +{ +closed = 1; +nodes = ( +(232,257,l), +(232,323,l), +(148,290,l), +(5,80,l), +(112,80,l) +); +} +); +width = 252; +} +); +unicode = 8250; +}, +{ +color = 6; +glyphname = quotedbl; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(190,670,o), +(157,704,o), +(113,704,cs), +(68,704,o), +(36,670,o), +(36,622,c), +(36,597,o), +(39,579,o), +(44,554,cs), +(75,383,l), +(150,383,l), +(182,554,ls), +(187,579,o), +(190,597,o), +(190,622,c) +); +}, +{ +closed = 1; +nodes = ( +(374,670,o), +(341,704,o), +(296,704,cs), +(251,704,o), +(219,670,o), +(219,622,c), +(219,597,o), +(222,579,o), +(227,554,cs), +(258,383,l), +(334,383,l), +(365,554,ls), +(370,579,o), +(374,597,o), +(374,622,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(354,383,l), +(389,690,l), +(225,690,l), +(260,383,l) +); +}, +{ +closed = 1; +nodes = ( +(160,383,l), +(195,690,l), +(31,690,l), +(66,383,l) +); +} +); +width = 420; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(296,417,l), +(318,690,l), +(204,690,l), +(226,417,l) +); +}, +{ +closed = 1; +nodes = ( +(136,417,l), +(158,690,l), +(44,690,l), +(66,417,l) +); +} +); +width = 362; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,417,l), +(136,417,l), +(158,690,l), +(44,690,l) +); +}, +{ +closed = 1; +nodes = ( +(226,417,l), +(296,417,l), +(318,690,l), +(204,690,l) +); +} +); +width = 362; +} +); +unicode = 34; +}, +{ +color = 6; +glyphname = quotesingle; +kernLeft = I; +kernRight = N; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(160,383,l), +(195,690,l), +(31,690,l), +(66,383,l) +); +} +); +width = 226; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,417,l), +(158,690,l), +(44,690,l), +(66,417,l) +); +} +); +width = 202; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(157,674,o), +(134,700,o), +(101,700,cs), +(68,700,o), +(45,674,o), +(45,641,c), +(45,628,o), +(46,615,o), +(49,597,cs), +(76,417,l), +(126,417,l), +(153,597,ls), +(156,615,o), +(157,628,o), +(157,641,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(66,417,l), +(136,417,l), +(158,690,l), +(44,690,l) +); +} +); +width = 202; +} +); +unicode = 39; +}, +{ +color = 6; +glyphname = florin; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(317,603,o), +(340,598,o), +(364,592,c), +(364,715,l), +(332,724,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(358,407,l), +(358,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,-189,o), +(194,-143,o), +(221,-14,cs), +(339,541,ls), +(348,582,o), +(374,603,o), +(415,603,c), +(443,603,o), +(467,597,o), +(488,589,c), +(514,712,l), +(485,723,o), +(445,729,o), +(405,729,c), +(302,729,o), +(220,683,o), +(193,554,cs), +(75,-1,ls), +(66,-42,o), +(40,-63,o), +(-1,-63,c), +(-29,-63,o), +(-53,-57,o), +(-74,-49,c), +(-100,-172,l), +(-71,-183,o), +(-31,-189,o), +(9,-189,c) +); +}, +{ +closed = 1; +nodes = ( +(444,407,l), +(470,530,l), +(122,530,l), +(96,407,l) +); +} +); +width = 504; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,-185,o), +(165,-138,o), +(190,-21,c), +(313,557,ls), +(324,610,o), +(355,636,o), +(403,636,c), +(426,636,o), +(446,630,o), +(466,621,c), +(484,708,l), +(458,718,o), +(430,725,o), +(398,725,c), +(304,725,o), +(239,678,o), +(214,561,cs), +(91,-17,l), +(80,-70,o), +(49,-96,o), +(1,-96,c), +(-22,-96,o), +(-42,-90,o), +(-62,-81,c), +(-80,-168,l), +(-54,-178,o), +(-26,-185,o), +(6,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(423,443,l), +(442,530,l), +(133,530,l), +(114,443,l) +); +} +); +width = 484; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,443,l), +(442,530,l), +(133,530,l), +(114,443,l) +); +}, +{ +closed = 1; +nodes = ( +(313,557,ls), +(324,610,o), +(355,636,o), +(403,636,c), +(426,636,o), +(446,630,o), +(466,621,c), +(484,708,l), +(458,718,o), +(430,725,o), +(398,725,c), +(304,725,o), +(239,678,o), +(214,561,cs), +(91,-17,l), +(80,-70,o), +(49,-96,o), +(1,-96,c), +(-22,-96,o), +(-42,-90,o), +(-62,-81,c), +(-80,-168,l), +(-54,-178,o), +(-26,-185,o), +(6,-185,c), +(100,-185,o), +(165,-138,o), +(190,-21,c) +); +} +); +width = 484; +} +); +}, +{ +color = 6; +glyphname = at; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +}, +{ +closed = 1; +nodes = ( +(514,381,o), +(555,341,o), +(555,265,c), +(555,190,o), +(514,150,o), +(450,150,c), +(386,150,o), +(345,190,o), +(345,265,c), +(345,341,o), +(386,381,o), +(450,381,c) +); +}, +{ +closed = 1; +nodes = ( +(571,305,l), +(571,439,o), +(501,515,o), +(394,515,c), +(271,515,o), +(192,421,o), +(192,265,c), +(192,110,o), +(271,15,o), +(394,15,c), +(501,15,o), +(571,92,o), +(571,226,c) +); +}, +{ +closed = 1; +nodes = ( +(545,-37,o), +(485,-83,o), +(397,-83,c), +(346,-83,o), +(300,-67,o), +(255,-41,c), +(199,-164,l), +(254,-198,o), +(318,-219,o), +(409,-219,c), +(579,-219,o), +(694,-124,o), +(694,58,c), +(694,501,l), +(545,501,l), +(545,364,l), +(564,265,l), +(545,148,l), +(545,51,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(487,-153,o), +(556,-133,o), +(611,-99,c), +(572,-25,l), +(527,-53,o), +(480,-68,o), +(413,-68,c), +(250,-68,o), +(135,66,o), +(135,265,cs), +(135,479,o), +(272,619,o), +(456,619,c), +(644,619,o), +(759,487,o), +(759,285,c), +(759,136,o), +(732,91,o), +(706,91,c), +(686,91,o), +(674,101,o), +(674,157,c), +(674,505,l), +(529,505,l), +(529,367,l), +(544,265,l), +(529,162,l), +(531,128,ls), +(536,54,o), +(579,-10,o), +(675,-10,c), +(777,-10,o), +(854,84,o), +(854,285,c), +(854,534,o), +(697,704,o), +(456,704,c), +(219,704,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(197,-153,o), +(413,-153,c) +); +}, +{ +closed = 1; +nodes = ( +(497,15,o), +(557,89,o), +(557,221,c), +(557,309,l), +(557,441,o), +(497,515,o), +(406,515,c), +(289,515,o), +(205,421,o), +(205,265,c), +(205,109,o), +(289,15,o), +(406,15,c) +); +}, +{ +closed = 1; +nodes = ( +(391,143,o), +(354,180,o), +(354,265,c), +(354,350,o), +(391,387,o), +(444,387,c), +(497,387,o), +(534,350,o), +(534,265,c), +(534,180,o), +(497,143,o), +(444,143,c) +); +} +); +width = 894; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(247,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,490,o), +(764,285,c), +(764,125,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,84,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(197,-149,o), +(413,-149,c) +); +}, +{ +closed = 1; +nodes = ( +(513,30,o), +(577,99,o), +(577,221,c), +(577,309,l), +(577,431,o), +(513,500,o), +(416,500,c), +(308,500,o), +(230,412,o), +(230,265,c), +(230,118,o), +(308,30,o), +(416,30,c) +); +}, +{ +closed = 1; +nodes = ( +(379,118,o), +(334,162,o), +(334,265,c), +(334,368,o), +(379,412,o), +(444,412,c), +(509,412,o), +(554,368,o), +(554,265,c), +(554,162,o), +(509,118,o), +(444,118,c) +); +} +); +width = 894; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(160,530,l), +(60,530,l), +(60,0,l) +); +}, +{ +closed = 1; +nodes = ( +(523,432,o), +(435,540,o), +(314,540,c), +(206,540,o), +(127,451,o), +(127,309,c), +(160,309,l), +(160,409.277,o), +(213,462,o), +(280,462,c), +(368,462,o), +(419,403,o), +(419,265,c), +(419,127,o), +(368,68,o), +(280,68,c), +(213,68,o), +(160,121,o), +(160,221,c), +(127,221,l), +(127,79,o), +(206,-10,o), +(314,-10,c), +(435,-10,o), +(523,98,o), +(523,265,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +} +); +width = 894; +} +); +unicode = 64; +}, +{ +color = 6; +glyphname = ampersand; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(435,-14,o), +(586,112,o), +(634,323,c), +(496,362,l), +(467,208,o), +(381,116,o), +(259,116,c), +(193,116,o), +(166,148,o), +(166,192,c), +(166,342,o), +(482,305,o), +(481,525,c), +(481,623,o), +(406,704,o), +(280,704,c), +(148,704,o), +(70,615,o), +(70,516,c), +(70,450,o), +(97,397,o), +(168,319,cs), +(460,0,l), +(650,0,l), +(264,413,ls), +(233,446,o), +(215,477,o), +(215,514,c), +(215,549,o), +(240,579,o), +(279,579,c), +(317,579,o), +(342,550,o), +(342,515,c), +(343,367,o), +(17,411,o), +(17,167,c), +(17,72,o), +(86,-14,o), +(249,-14,c) +); +} +); +width = 647; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(429,74,o), +(333,-10,o), +(170,-10,c), +(30,-10,o), +(-60,55,o), +(-96,163,c), +(7,196,l), +(32,119.64,o), +(87,83,o), +(178,83,c), +(267,83,o), +(323,119,o), +(323,176,c), +(323,362,o), +(-74,252,o), +(-74,509,c), +(-74,615,o), +(12,700,o), +(169,700,c), +(298,700,o), +(387,637,o), +(422,532,c), +(322,499,l), +(296,572.333,o), +(242,607,o), +(160,607,c), +(70,607,o), +(31,568,o), +(31,520,c), +(31,352,o), +(429,456,o), +(429,186,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-10,o), +(538,115,o), +(570,323,c), +(476,339,l), +(457,180,o), +(367,80,o), +(243,80,c), +(164,80,o), +(125,118,o), +(125,171,c), +(125,347,o), +(444,337,o), +(444,539,c), +(444,624,o), +(370,700,o), +(264,700,c), +(147,700,o), +(75,616,o), +(75,525,c), +(75,463,o), +(108,411,o), +(175,331,cs), +(453,0,l), +(581,0,l), +(228,417,ls), +(190,461,o), +(175,488,o), +(175,530,c), +(175,578,o), +(210,613,o), +(262,613,c), +(310,613,o), +(345,578,o), +(345,534,c), +(345,378,o), +(22,384,o), +(22,159,c), +(22,68,o), +(97,-10,o), +(238,-10,c) +); +} +); +width = 591; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(429,74,o), +(333,-10,o), +(170,-10,c), +(30,-10,o), +(-60,55,o), +(-96,163,c), +(7,196,l), +(32,119.64,o), +(87,83,o), +(178,83,c), +(267,83,o), +(323,119,o), +(323,176,c), +(323,362,o), +(-74,252,o), +(-74,509,c), +(-74,615,o), +(12,700,o), +(169,700,c), +(298,700,o), +(387,637,o), +(422,532,c), +(322,499,l), +(296,572.333,o), +(242,607,o), +(160,607,c), +(70,607,o), +(31,568,o), +(31,520,c), +(31,352,o), +(429,456,o), +(429,186,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(175,331,ls), +(108,411,o), +(75,463,o), +(75,525,c), +(75,616,o), +(147,700,o), +(264,700,c), +(370,700,o), +(444,624,o), +(444,539,c), +(444,337,o), +(125,347,o), +(125,171,c), +(125,118,o), +(164,80,o), +(243,80,c), +(367,80,o), +(457,180,o), +(476,339,c), +(570,323,l), +(538,115,o), +(405,-10,o), +(238,-10,c), +(97,-10,o), +(22,68,o), +(22,159,c), +(22,384,o), +(345,378,o), +(345,534,c), +(345,578,o), +(310,613,o), +(262,613,c), +(210,613,o), +(175,578,o), +(175,530,c), +(175,488,o), +(190,461,o), +(228,417,cs), +(581,0,l), +(453,0,l) +); +} +); +width = 591; +} +); +unicode = 38; +}, +{ +color = 6; +glyphname = paragraph; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(349,230,l), +(349,690,l), +(269,690,l), +(130,690,o), +(35,600,o), +(35,460,cs), +(35,320,o), +(130,230,o), +(269,230,c) +); +}, +{ +closed = 1; +nodes = ( +(425,-120,l), +(425,690,l), +(286,690,l), +(286,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(625,-120,l), +(625,690,l), +(486,690,l), +(486,-120,l) +); +} +); +width = 697; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,240,l), +(329,690,l), +(269,690,l), +(133,690,o), +(40,602,o), +(40,465,cs), +(40,328,o), +(133,240,o), +(269,240,c) +); +}, +{ +closed = 1; +nodes = ( +(376,-120,l), +(376,690,l), +(286,690,l), +(286,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(556,-120,l), +(556,690,l), +(466,690,l), +(466,-120,l) +); +} +); +width = 636; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(376,-120,l), +(376,690,l), +(286,690,l), +(286,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(556,-120,l), +(556,690,l), +(466,690,l), +(466,-120,l) +); +}, +{ +closed = 1; +nodes = ( +(133,690,o), +(40,602,o), +(40,465,cs), +(40,328,o), +(133,240,o), +(269,240,c), +(329,240,l), +(329,690,l), +(269,690,l) +); +} +); +width = 636; +} +); +unicode = 182; +}, +{ +color = 6; +glyphname = section; +lastChange = "2024-03-22 10:57:57 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(528,533,o), +(223,476,o), +(223,553,c), +(223,572,o), +(241,589,o), +(289,589,c), +(342,589,o), +(369,568,o), +(384,522,c), +(519,564,l), +(489,654,o), +(415,704,o), +(297,704,c), +(160,704,o), +(81,635,o), +(81,535,c), +(81,331,o), +(377,392,o), +(377,302,c), +(377,277,o), +(358,262,o), +(306,262,c), +(250,262,o), +(216,287,o), +(201,343,c), +(63,300,l), +(83,196,o), +(164,146,o), +(296,146,c), +(443,146,o), +(528,214,o), +(528,318,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(455,-190,o), +(538,-109,o), +(538,-15,cs), +(538,50,o), +(502,99,o), +(445,124,c), +(526,144,o), +(580,198,o), +(580,282,cs), +(580,510,o), +(222,443,o), +(222,545,cs), +(222,570,o), +(247,589,o), +(290,589,cs), +(344,589,o), +(381,558,o), +(398,499,c), +(538,547,l), +(506,643,o), +(422,704,o), +(303,704,cs), +(160,704,o), +(77,624,o), +(77,530,cs), +(77,465,o), +(113,416,o), +(170,391,c), +(89,371,o), +(35,317,o), +(35,233,cs), +(35,5,o), +(393,72,o), +(393,-30,cs), +(393,-55,o), +(368,-74,o), +(325,-74,cs), +(271,-74,o), +(234,-43,o), +(217,16,c), +(77,-32,l), +(109,-128,o), +(193,-190,o), +(312,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,173,o), +(162,206,o), +(162,280,cs), +(162,315,o), +(192,342,o), +(251,342,cs), +(321,342,o), +(442,309,o), +(442,235,cs), +(442,200,o), +(412,173,o), +(353,173,cs) +); +} +); +width = 615; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-185,o), +(503,-107,o), +(503,-19,cs), +(503,57,o), +(462,97,o), +(408,122,c), +(499,133,o), +(556,192,o), +(556,265,cs), +(556,483,o), +(198,397,o), +(198,535,cs), +(198,575,o), +(233,607,o), +(290,607,cs), +(349,607,o), +(389,577,o), +(409,514,c), +(509,547,l), +(480,643,o), +(405,700,o), +(299,700,cs), +(173,700,o), +(93,622,o), +(93,534,cs), +(93,458,o), +(134,418,o), +(188,393,c), +(97,382,o), +(40,323,o), +(40,250,cs), +(40,32,o), +(398,118,o), +(398,-20,cs), +(398,-60,o), +(363,-92,o), +(306,-92,cs), +(247,-92,o), +(207,-63,o), +(187,0,c), +(87,-32,l), +(116,-128,o), +(191,-185,o), +(297,-185,cs) +); +}, +{ +closed = 1; +nodes = ( +(265,160,o), +(138,196,o), +(138,271,cs), +(138,320,o), +(179,355,o), +(241,355,cs), +(331,355,o), +(458,319,o), +(458,244,cs), +(458,195,o), +(417,160,o), +(355,160,cs) +); +} +); +width = 596; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(493,126,o), +(556,188,o), +(556,265,c), +(556,483,o), +(198,397,o), +(198,535,c), +(198,575,o), +(233,607,o), +(290,607,c), +(349,607,o), +(389,577,o), +(409,514,c), +(509,547,l), +(480,643,o), +(405,700,o), +(299,700,c), +(173,700,o), +(93,622,o), +(93,534,c), +(93,451,o), +(142,411,o), +(204,386,c), +(204,394,l), +(103,389,o), +(40,327,o), +(40,250,c), +(40,32,o), +(398,118,o), +(398,-20,c), +(398,-60,o), +(363,-92,o), +(306,-92,c), +(247,-92,o), +(207,-62,o), +(187,1,c), +(87,-32,l), +(116,-128,o), +(191,-185,o), +(297,-185,c), +(423,-185,o), +(503,-107,o), +(503,-19,c), +(503,64,o), +(454,104,o), +(392,129,c), +(392,121,l) +); +}, +{ +closed = 1; +nodes = ( +(138,320,o), +(179,355,o), +(241,355,c), +(331,355,o), +(458,319,o), +(458,244,c), +(458,195,o), +(417,160,o), +(355,160,c), +(265,160,o), +(138,196,o), +(138,271,c) +); +} +); +width = 596; +} +); +unicode = 167; +}, +{ +color = 6; +glyphname = copyright; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,80,o), +(145,199,o), +(145,345,cs), +(145,491,o), +(255,610,o), +(401,610,cs), +(547,610,o), +(657,491,o), +(657,345,cs), +(657,199,o), +(547,80,o), +(401,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(484,137,o), +(545,177,o), +(571,254,c), +(475,286,l), +(463,243,o), +(440,226,o), +(403,226,c), +(355,226,o), +(322,261,o), +(322,340,cs), +(322,419,o), +(355,454,o), +(403,454,c), +(440,454,o), +(464,437,o), +(477,395,c), +(571,428,l), +(545,503,o), +(484,543,o), +(407,543,cs), +(296,543,o), +(218,463,o), +(218,340,cs), +(218,216,o), +(296,137,o), +(407,137,c) +); +} +); +width = 802; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,65,o), +(130,191,o), +(130,345,cs), +(130,499,o), +(246,625,o), +(401,625,cs), +(556,625,o), +(672,499,o), +(672,345,cs), +(672,191,o), +(556,65,o), +(401,65,cs) +); +}, +{ +closed = 1; +nodes = ( +(482,137,o), +(541,177,o), +(564,254,c), +(483,276,l), +(470,230,o), +(443,211,o), +(401,211,c), +(347,211,o), +(310,251,o), +(310,340,cs), +(310,429,o), +(347,469,o), +(401,469,c), +(443,469,o), +(470,450,o), +(485,405,c), +(564,428,l), +(541,503,o), +(482,543,o), +(405,543,cs), +(297,543,o), +(223,463,o), +(223,340,cs), +(223,216,o), +(297,137,o), +(405,137,c) +); +} +); +width = 802; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(509.185,412,o), +(554,367.975,o), +(554,265,c), +(554,162.025,o), +(509.185,118,o), +(444,118,c), +(378.815,118,o), +(334,162.025,o), +(334,265,c), +(334,367.975,o), +(378.815,412,o), +(444,412,c) +); +}, +{ +closed = 1; +nodes = ( +(577,309,l), +(577,430.545,o), +(512.946,500,o), +(416,500,c), +(307.573,500,o), +(230,411.982,o), +(230,265,c), +(230,118.018,o), +(307.573,30,o), +(416,30,c), +(512.946,30,o), +(577,99.455,o), +(577,221,c) +); +}, +{ +closed = 1; +nodes = ( +(764,124.825,o), +(731,70,o), +(695,70,c), +(667,70,o), +(649,89,o), +(649,157,c), +(649,490,l), +(549,490,l), +(549,367,l), +(564,265,l), +(549,162,l), +(551,128,ls), +(555,54,o), +(603,-10,o), +(687,-10,c), +(789,-10,o), +(854,83.768,o), +(854,285,c), +(854,534,o), +(697,700,o), +(456,700,c), +(219,700,o), +(40,526,o), +(40,265,cs), +(40,19,o), +(196.796,-149,o), +(413,-149,c), +(487,-149,o), +(556,-129,o), +(611,-95,c), +(572,-26,l), +(527,-54,o), +(480,-69,o), +(413,-69,c), +(246.87,-69,o), +(130,63,o), +(130,265,cs), +(130,482,o), +(269,620,o), +(456,620,c), +(647,620,o), +(764,489.829,o), +(764,285,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,65,o), +(130,190.705,o), +(130,345,cs), +(130,499.295,o), +(246,625,o), +(401,625,cs), +(556,625,o), +(672,499.295,o), +(672,345,cs), +(672,190.705,o), +(556,65,o), +(401,65,cs) +); +}, +{ +closed = 1; +nodes = ( +(346.969,211,o), +(310,250.547,o), +(310,340,cs), +(310,429.453,o), +(346.969,469,o), +(401,469,c), +(443.472,469,o), +(469.899,450.333,o), +(485,405,c), +(564,428,l), +(541.286,503,o), +(482.435,543,o), +(405,543,cs), +(297.034,543,o), +(223,463,o), +(223,340,cs), +(223,216,o), +(297.034,137,o), +(405,137,c), +(482.435,137,o), +(541.286,177,o), +(564,254,c), +(483,276,l), +(469.805,229.699,o), +(443.414,211,o), +(401,211,c) +); +} +); +width = 802; +} +); +unicode = 169; +}, +{ +color = 6; +glyphname = registered; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(355,226,o), +(322,261,o), +(322,340,cs), +(322,419,o), +(355,454,o), +(403,454,c), +(440,454,o), +(464,437,o), +(477,395,c), +(571,428,l), +(545,503,o), +(484,543,o), +(407,543,cs), +(296,543,o), +(218,463,o), +(218,340,cs), +(218,216,o), +(296,137,o), +(407,137,c), +(484,137,o), +(545,177,o), +(571,254,c), +(475,286,l), +(463,243,o), +(440,226,o), +(403,226,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,80,o), +(145,199,o), +(145,345,cs), +(145,491,o), +(255,610,o), +(401,610,cs), +(547,610,o), +(657,491,o), +(657,345,cs), +(657,199,o), +(547,80,o), +(401,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(358,147,l), +(358,540,l), +(259,540,l), +(259,147,l) +); +}, +{ +closed = 1; +nodes = ( +(566,147,l), +(468,309,l), +(365,309,l), +(455,147,l) +); +}, +{ +closed = 1; +nodes = ( +(416,269,l), +(513,269,o), +(566,320,o), +(566,404,cs), +(566,486,o), +(513,540,o), +(416,540,c), +(303,540,l), +(303,447,l), +(409,447,l), +(448,447,o), +(464,432,o), +(464,404,cs), +(464,375,o), +(448,360,o), +(409,360,c), +(303,360,l), +(303,269,l) +); +} +); +width = 802; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(347,211,o), +(310,251,o), +(310,340,cs), +(310,429,o), +(347,469,o), +(401,469,c), +(443,469,o), +(470,450,o), +(485,405,c), +(564,428,l), +(541,503,o), +(482,543,o), +(405,543,cs), +(297,543,o), +(223,463,o), +(223,340,cs), +(223,216,o), +(297,137,o), +(405,137,c), +(482,137,o), +(541,177,o), +(564,254,c), +(483,276,l), +(470,230,o), +(443,211,o), +(401,211,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,65,o), +(130,191,o), +(130,345,cs), +(130,499,o), +(246,625,o), +(401,625,cs), +(556,625,o), +(672,499,o), +(672,345,cs), +(672,191,o), +(556,65,o), +(401,65,cs) +); +}, +{ +closed = 1; +nodes = ( +(338,142,l), +(338,540,l), +(254,540,l), +(254,142,l) +); +}, +{ +closed = 1; +nodes = ( +(571,142,l), +(462,304,l), +(369,304,l), +(472,142,l) +); +}, +{ +closed = 1; +nodes = ( +(409,272,l), +(505,272,o), +(567,323,o), +(567,406,cs), +(567,489,o), +(505,540,o), +(409,540,c), +(294,540,l), +(294,462,l), +(401,462,l), +(454,462,o), +(479,444,o), +(479,406,cs), +(479,369,o), +(454,350,o), +(401,350,c), +(294,350,l), +(294,272,l) +); +} +); +width = 802; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(347,211,o), +(310,251,o), +(310,340,cs), +(310,429,o), +(347,469,o), +(401,469,c), +(443,469,o), +(470,450,o), +(485,405,c), +(564,428,l), +(541,503,o), +(482,543,o), +(405,543,cs), +(297,543,o), +(223,463,o), +(223,340,cs), +(223,216,o), +(297,137,o), +(405,137,c), +(482,137,o), +(541,177,o), +(564,254,c), +(483,276,l), +(470,230,o), +(443,211,o), +(401,211,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(752,150,o), +(752,345,cs), +(752,540,o), +(602,700,o), +(401,700,cs), +(200,700,o), +(50,540,o), +(50,345,cs), +(50,150,o), +(200,-10,o), +(401,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,65,o), +(130,191,o), +(130,345,cs), +(130,499,o), +(246,625,o), +(401,625,cs), +(556,625,o), +(672,499,o), +(672,345,cs), +(672,191,o), +(556,65,o), +(401,65,cs) +); +}, +{ +closed = 1; +nodes = ( +(571,142,l), +(462,304,l), +(369,304,l), +(472,142,l) +); +}, +{ +closed = 1; +nodes = ( +(338,142,l), +(338,540,l), +(254,540,l), +(254,142,l) +); +}, +{ +closed = 1; +nodes = ( +(505,272,o), +(567,323,o), +(567,406,cs), +(567,489,o), +(505,540,o), +(409,540,c), +(294,540,l), +(294,462,l), +(401,462,l), +(454,462,o), +(479,444,o), +(479,406,cs), +(479,369,o), +(454,350,o), +(401,350,c), +(294,350,l), +(294,272,l), +(409,272,l) +); +} +); +width = 802; +} +); +unicode = 174; +}, +{ +color = 6; +glyphname = trademark; +kernLeft = M; +kernRight = b; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(487,384,l), +(454,690,l), +(365,690,l), +(417,384,l) +); +}, +{ +closed = 1; +nodes = ( +(180,384,l), +(180,690,l), +(90,690,l), +(90,384,l) +); +}, +{ +closed = 1; +nodes = ( +(260,604,l), +(260,690,l), +(10,690,l), +(10,604,l) +); +}, +{ +closed = 1; +nodes = ( +(376,384,l), +(376,690,l), +(290,690,l), +(290,384,l) +); +}, +{ +closed = 1; +nodes = ( +(542,384,l), +(598,690,l), +(513,690,l), +(471,384,l) +); +}, +{ +closed = 1; +nodes = ( +(672,384,l), +(672,690,l), +(585,690,l), +(585,384,l) +); +} +); +width = 716; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(476,384,l), +(430,690,l), +(358,690,l), +(411,384,l) +); +}, +{ +closed = 1; +nodes = ( +(177,384,l), +(177,690,l), +(100,690,l), +(100,384,l) +); +}, +{ +closed = 1; +nodes = ( +(262,617,l), +(262,690,l), +(15,690,l), +(15,617,l) +); +}, +{ +closed = 1; +nodes = ( +(366,384,l), +(366,690,l), +(293,690,l), +(293,384,l) +); +}, +{ +closed = 1; +nodes = ( +(523,384,l), +(576,690,l), +(508,690,l), +(459,384,l) +); +}, +{ +closed = 1; +nodes = ( +(645,384,l), +(645,690,l), +(568,690,l), +(568,384,l) +); +} +); +width = 690; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,384,l), +(177,690,l), +(100,690,l), +(100,384,l) +); +}, +{ +closed = 1; +nodes = ( +(15,617,l), +(262,617,l), +(262,690,l), +(15,690,l) +); +}, +{ +closed = 1; +nodes = ( +(358,690,l), +(411,384,l), +(476,384,l), +(430,690,l) +); +}, +{ +closed = 1; +nodes = ( +(366,384,l), +(366,690,l), +(293,690,l), +(293,384,l) +); +}, +{ +closed = 1; +nodes = ( +(459,384,l), +(523,384,l), +(576,690,l), +(508,690,l) +); +}, +{ +closed = 1; +nodes = ( +(645,384,l), +(645,690,l), +(568,690,l), +(568,384,l) +); +} +); +width = 690; +} +); +unicode = 8482; +}, +{ +color = 6; +glyphname = degree; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(302,370,o), +(373,438,o), +(373,537,c), +(373,636,o), +(302,704,o), +(201,704,cs), +(101,704,o), +(30,636,o), +(30,537,c), +(30,438,o), +(101,370,o), +(201,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,475,o), +(146,498,o), +(146,537,c), +(146,576,o), +(170,599,o), +(201,599,cs), +(233,599,o), +(257,576,o), +(257,537,c), +(257,498,o), +(233,475,o), +(201,475,cs) +); +} +); +width = 403; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,374,o), +(359,441,o), +(359,537,c), +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs) +); +}, +{ +closed = 1; +nodes = ( +(158,450,o), +(127,482,o), +(127,537,c), +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs) +); +} +); +width = 399; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +} +); +width = 399; +} +); +unicode = 176; +}, +{ +color = 6; +glyphname = bar; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(210,-120,l), +(210,770,l), +(71,770,l), +(71,-120,l) +); +} +); +width = 282; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,-120,l), +(170,770,l), +(80,770,l), +(80,-120,l) +); +} +); +width = 250; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,-120,l), +(170,770,l), +(80,770,l), +(80,-120,l) +); +} +); +width = 250; +} +); +unicode = 124; +}, +{ +color = 6; +glyphname = brokenbar; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(210,425,l), +(210,770,l), +(71,770,l), +(71,425,l) +); +}, +{ +closed = 1; +nodes = ( +(210,-120,l), +(210,225,l), +(71,225,l), +(71,-120,l) +); +} +); +width = 282; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,425,l), +(170,770,l), +(80,770,l), +(80,425,l) +); +}, +{ +closed = 1; +nodes = ( +(170,-120,l), +(170,225,l), +(80,225,l), +(80,-120,l) +); +} +); +width = 250; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,770,l), +(80,770,l), +(80,425,l), +(170,425,l) +); +}, +{ +closed = 1; +nodes = ( +(170,-120,l), +(170,225,l), +(80,225,l), +(80,-120,l) +); +} +); +width = 250; +} +); +unicode = 166; +}, +{ +color = 6; +glyphname = dagger; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(256,0,l), +(283,291,l), +(283,690,l), +(128,690,l), +(128,291,l), +(154,0,l) +); +}, +{ +closed = 1; +nodes = ( +(390,410,l), +(390,550,l), +(20,550,l), +(20,410,l) +); +} +); +width = 410; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,0,l), +(248,311,l), +(248,690,l), +(143,690,l), +(143,311,l), +(164,0,l) +); +}, +{ +closed = 1; +nodes = ( +(360,443,l), +(360,530,l), +(30,530,l), +(30,443,l) +); +} +); +width = 390; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,311,l), +(164,0,l), +(226,0,l), +(248,311,l), +(248,690,l), +(143,690,l) +); +}, +{ +closed = 1; +nodes = ( +(30,443,l), +(360,443,l), +(360,530,l), +(30,530,l) +); +} +); +width = 390; +} +); +unicode = 8224; +}, +{ +color = 6; +glyphname = litre; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(264,211,o), +(442,424,o), +(442,552,c), +(442,585,o), +(428,605,o), +(401,605,c), +(297,605,o), +(190,374,o), +(190,224,c), +(190,137,o), +(231,87,o), +(306,87,c), +(345,87,o), +(390,102,o), +(432,133,c), +(477,49,l), +(420,11,o), +(358,-10,o), +(297,-10,c), +(159,-10,o), +(86,72,o), +(86,227,c), +(86,452,o), +(231,700,o), +(412,700,c), +(495,700,o), +(540,644,o), +(540,559,c), +(540,381,o), +(311,145,o), +(25,-10,c), +(-10,66,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(347,139,o), +(586,354,o), +(586,549,c), +(586,640,o), +(528,704,o), +(425,704,c), +(234,704,o), +(80,471,o), +(80,227,c), +(80,72,o), +(177,-14,o), +(316,-14,c), +(393,-14,o), +(464,9,o), +(521,50,c), +(461,174,l), +(408,134,o), +(359,117,o), +(325,117,c), +(263,117,o), +(229,157,o), +(229,235,c), +(229,359,o), +(316,571,o), +(400,571,c), +(427,571,o), +(441,551,o), +(441,518,c), +(441,413,o), +(270,232,o), +(-10,108,c), +(47,-14,l) +); +} +); +width = 586; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,344,o), +(492,417,o), +(492,501,c), +(492,559,o), +(455,605,o), +(379,605,c), +(293,605,o), +(210,530,o), +(210,447,cs), +(210,390,o), +(258,344,o), +(334,344,c) +); +}, +{ +closed = 1; +nodes = ( +(179,359,o), +(160,278,o), +(160,224,c), +(160,137,o), +(201,87,o), +(276,87,c), +(315,87,o), +(360,102,o), +(402,133,c), +(447,49,l), +(390,11,o), +(328,-10,o), +(267,-10,c), +(129,-10,o), +(56,72,o), +(56,227,c), +(56,498,o), +(186,700,o), +(390,700,c), +(519,700,o), +(597,618,o), +(597,512,c), +(597,367,o), +(478,253,o), +(345,253,c), +(246,253,o), +(180,307,o), +(180,396,cs), +(180,408,o), +(183,416,o), +(185,429,c), +(192,404,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(311,145,o), +(540,381,o), +(540,559,c), +(540,644,o), +(495,700,o), +(412,700,c), +(231,700,o), +(86,452,o), +(86,227,c), +(86,72,o), +(159,-10,o), +(297,-10,c), +(358,-10,o), +(420,11,o), +(477,49,c), +(432,133,l), +(390,102,o), +(345,87,o), +(306,87,c), +(231,87,o), +(190,137,o), +(190,224,c), +(190,374,o), +(297,605,o), +(401,605,c), +(428,605,o), +(442,585,o), +(442,552,c), +(442,424,o), +(264,211,o), +(-10,66,c), +(25,-10,l) +); +} +); +width = 545; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(431,344,o), +(492,417,o), +(492,501,c), +(492,559,o), +(455,605,o), +(379,605,c), +(293,605,o), +(210,530,o), +(210,447,cs), +(210,390,o), +(258,344,o), +(334,344,c) +); +}, +{ +closed = 1; +nodes = ( +(179,359,o), +(160,278,o), +(160,224,c), +(160,137,o), +(201,87,o), +(276,87,c), +(315,87,o), +(360,102,o), +(402,133,c), +(447,49,l), +(390,11,o), +(328,-10,o), +(267,-10,c), +(129,-10,o), +(56,72,o), +(56,227,c), +(56,498,o), +(186,700,o), +(390,700,c), +(519,700,o), +(597,618,o), +(597,512,c), +(597,367,o), +(478,253,o), +(345,253,c), +(246,253,o), +(180,307,o), +(180,396,cs), +(180,408,o), +(183,416,o), +(185,429,c), +(192,404,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,211,o), +(442,424,o), +(442,552,c), +(442,585,o), +(428,605,o), +(401,605,c), +(297,605,o), +(190,374,o), +(190,224,c), +(190,137,o), +(231,87,o), +(306,87,c), +(345,87,o), +(390,102,o), +(432,133,c), +(477,49,l), +(420,11,o), +(358,-10,o), +(297,-10,c), +(159,-10,o), +(86,72,o), +(86,227,c), +(86,452,o), +(231,700,o), +(412,700,c), +(495,700,o), +(540,644,o), +(540,559,c), +(540,381,o), +(311,145,o), +(25,-10,c), +(-10,66,l) +); +} +); +width = 545; +} +); +unicode = 8467; +}, +{ +color = 6; +glyphname = daggerdbl; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(283,0,l), +(283,690,l), +(128,690,l), +(128,0,l) +); +}, +{ +closed = 1; +nodes = ( +(390,140,l), +(390,280,l), +(20,280,l), +(20,140,l) +); +}, +{ +closed = 1; +nodes = ( +(390,410,l), +(390,550,l), +(20,550,l), +(20,410,l) +); +} +); +width = 410; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(248,0,l), +(248,690,l), +(143,690,l), +(143,0,l) +); +}, +{ +closed = 1; +nodes = ( +(360,160,l), +(360,247,l), +(30,247,l), +(30,160,l) +); +}, +{ +closed = 1; +nodes = ( +(360,443,l), +(360,530,l), +(30,530,l), +(30,443,l) +); +} +); +width = 390; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(166,227,l), +(194,550,ls), +(198,598,o), +(199,619,o), +(199,632,c), +(199,670,o), +(175,700,o), +(135,700,cs), +(95,700,o), +(71,670,o), +(71,632,c), +(71,619,o), +(72,598,o), +(76,550,cs), +(104,227,l) +); +}, +{ +closed = 1; +nodes = ( +(173,-10,o), +(200,18,o), +(200,56,cs), +(200,95,o), +(173,123,o), +(135,123,cs), +(97,123,o), +(70,95,o), +(70,56,cs), +(70,18,o), +(97,-10,o), +(135,-10,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(30,443,l), +(360,443,l), +(360,530,l), +(30,530,l) +); +}, +{ +closed = 1; +nodes = ( +(248,0,l), +(248,690,l), +(143,690,l), +(143,0,l) +); +}, +{ +closed = 1; +nodes = ( +(360,160,l), +(360,247,l), +(30,247,l), +(30,160,l) +); +} +); +width = 390; +} +); +unicode = 8225; +}, +{ +color = 6; +glyphname = estimated; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(568,-10,o), +(684,67,o), +(743,180,c), +(708,201,l), +(657,99,o), +(553,30,o), +(434,30,cs), +(256,30,o), +(110,171,o), +(110,345,cs), +(110,519,o), +(249,660,o), +(419,660,cs), +(589,660,o), +(728,519,o), +(728,345,c), +(768,345,l), +(768,540,o), +(611,700,o), +(419,700,cs), +(227,700,o), +(70,540,o), +(70,345,cs), +(70,150,o), +(234,-10,o), +(434,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(230,627,l), +(95,457,l), +(95,230,l), +(230,60,l) +); +}, +{ +closed = 1; +nodes = ( +(768,327,l), +(768,345,l), +(737,372,l), +(126,372,l), +(126,327,l) +); +}, +{ +closed = 1; +nodes = ( +(743,341,l), +(743,457,l), +(608,627,l), +(608,341,l) +); +} +); +width = 838; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(568,-10,o), +(684,67,o), +(743,180,c), +(708,201,l), +(657,99,o), +(553,30,o), +(434,30,cs), +(256,30,o), +(110,171,o), +(110,345,cs), +(110,519,o), +(249,660,o), +(419,660,cs), +(589,660,o), +(728,519,o), +(728,345,c), +(768,345,l), +(768,540,o), +(611,700,o), +(419,700,cs), +(227,700,o), +(70,540,o), +(70,345,cs), +(70,150,o), +(234,-10,o), +(434,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(230,627,l), +(95,457,l), +(95,230,l), +(230,60,l) +); +}, +{ +closed = 1; +nodes = ( +(768,327,l), +(768,345,l), +(737,372,l), +(126,372,l), +(126,327,l) +); +}, +{ +closed = 1; +nodes = ( +(743,341,l), +(743,457,l), +(608,627,l), +(608,341,l) +); +} +); +width = 838; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,60,l), +(230,627,l), +(95,457,l), +(95,230,l) +); +}, +{ +closed = 1; +nodes = ( +(743,457,l), +(608,627,l), +(608,341,l), +(743,341,l) +); +}, +{ +closed = 1; +nodes = ( +(768,327,l), +(768,345,l), +(737,372,l), +(126,372,l), +(126,327,l) +); +}, +{ +closed = 1; +nodes = ( +(768,540,o), +(611,700,o), +(419,700,cs), +(227,700,o), +(70,540,o), +(70,345,cs), +(70,150,o), +(233.748,-10,o), +(434,-10,cs), +(568,-10,o), +(684,67,o), +(743,180,c), +(708,201,l), +(657,99,o), +(553,30,o), +(434,30,cs), +(255.748,30,o), +(110,171,o), +(110,345,cs), +(110,519,o), +(249,660,o), +(419,660,cs), +(589,660,o), +(728,519,o), +(728,345,c), +(768,345,l) +); +} +); +width = 838; +} +); +unicode = 8494; +}, +{ +color = 6; +glyphname = numero; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(496,0,l), +(321,690,l), +(170,690,l), +(345,0,l) +); +}, +{ +closed = 1; +nodes = ( +(206,0,l), +(206,690,l), +(59,690,l), +(59,0,l) +); +}, +{ +closed = 1; +nodes = ( +(607,0,l), +(607,690,l), +(460,690,l), +(460,0,l) +); +}, +{ +closed = 1; +nodes = ( +(892,144,o), +(931,179,o), +(931,231,cs), +(931,284,o), +(892,320,o), +(841,320,cs), +(791,320,o), +(753,284,o), +(753,231,cs), +(753,179,o), +(791,144,o), +(841,144,cs) +); +}, +{ +closed = 1; +nodes = ( +(942,370,o), +(1013,438,o), +(1013,537,c), +(1013,636,o), +(942,704,o), +(841,704,cs), +(741,704,o), +(670,636,o), +(670,537,c), +(670,438,o), +(741,370,o), +(841,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(810,475,o), +(786,498,o), +(786,537,c), +(786,576,o), +(810,599,o), +(841,599,cs), +(873,599,o), +(897,576,o), +(897,537,c), +(897,498,o), +(873,475,o), +(841,475,cs) +); +} +); +width = 1043; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(554,0,l), +(210,690,l), +(101,690,l), +(445,0,l) +); +}, +{ +closed = 1; +nodes = ( +(170,0,l), +(170,690,l), +(70,690,l), +(70,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,0,l), +(585,690,l), +(485,690,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(857,191,o), +(884,219,o), +(884,257,cs), +(884,296,o), +(857,324,o), +(819,324,cs), +(781,324,o), +(754,296,o), +(754,257,cs), +(754,219,o), +(781,191,o), +(819,191,cs) +); +}, +{ +closed = 1; +nodes = ( +(914,374,o), +(979,441,o), +(979,537,c), +(979,633,o), +(914,700,o), +(819,700,cs), +(725,700,o), +(660,633,o), +(660,537,c), +(660,441,o), +(725,374,o), +(819,374,cs) +); +}, +{ +closed = 1; +nodes = ( +(778,450,o), +(747,482,o), +(747,537,c), +(747,592,o), +(778,624,o), +(819,624,cs), +(861,624,o), +(892,592,o), +(892,537,c), +(892,482,o), +(861,450,o), +(819,450,cs) +); +} +); +width = 1019; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(101,690,l), +(445,0,l), +(554,0,l), +(210,690,l) +); +}, +{ +closed = 1; +nodes = ( +(170,0,l), +(170,690,l), +(70,690,l), +(70,0,l) +); +}, +{ +closed = 1; +nodes = ( +(585,0,l), +(585,690,l), +(485,690,l), +(485,0,l) +); +}, +{ +closed = 1; +nodes = ( +(979,633,o), +(914,700,o), +(819,700,cs), +(725,700,o), +(660,633,o), +(660,537,c), +(660,441,o), +(725,374,o), +(819,374,cs), +(914,374,o), +(979,441,o), +(979,537,c) +); +}, +{ +closed = 1; +nodes = ( +(747,592,o), +(778,624,o), +(819,624,cs), +(861,624,o), +(892,592,o), +(892,537,c), +(892,482,o), +(861,450,o), +(819,450,cs), +(778,450,o), +(747,482,o), +(747,537,c) +); +}, +{ +closed = 1; +nodes = ( +(857,191,o), +(884,219,o), +(884,257,cs), +(884,296,o), +(857,324,o), +(819,324,cs), +(781,324,o), +(754,296,o), +(754,257,cs), +(754,219,o), +(781,191,o), +(819,191,cs) +); +} +); +width = 1019; +} +); +unicode = 8470; +}, +{ +color = 6; +glyphname = cent; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(396,166,o), +(486,236,o), +(511,349,c), +(364,380,l), +(355,326,o), +(323,299,o), +(275,299,c), +(218,299,o), +(180,346,o), +(180,435,cs), +(180,524,o), +(218,571,o), +(275,571,c), +(322,571,o), +(353,543,o), +(360,489,c), +(508,522,l), +(484,634,o), +(396,704,o), +(275,704,cs), +(129,704,o), +(26,596,o), +(26,435,cs), +(26,274,o), +(129,166,o), +(275,166,c) +); +}, +{ +closed = 1; +nodes = ( +(333,-110,l), +(333,254,l), +(214,254,l), +(214,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(333,604,l), +(333,800,l), +(214,800,l), +(214,604,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(360,170,o), +(434,222,o), +(463,324,c), +(366,353,l), +(349,287,o), +(315,260,o), +(259,260,c), +(187,260,o), +(139,314,o), +(139,435,cs), +(139,556,o), +(187,610,o), +(259,610,c), +(315,610,o), +(349,583,o), +(369,518,c), +(463,549,l), +(434,648,o), +(360,700,o), +(264,700,cs), +(128,700,o), +(35,596,o), +(35,435,cs), +(35,274,o), +(128,170,o), +(264,170,c) +); +}, +{ +closed = 1; +nodes = ( +(308,-110,l), +(308,222,l), +(218,222,l), +(218,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(308,652,l), +(308,800,l), +(218,800,l), +(218,652,l) +); +} +); +width = 493; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,800,l), +(218,800,l), +(218,652,l), +(308,652,l) +); +}, +{ +closed = 1; +nodes = ( +(308,-110,l), +(308,222,l), +(218,222,l), +(218,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(187,260,o), +(139,313.919,o), +(139,435,cs), +(139,556.081,o), +(187,610,o), +(259,610,c), +(314.917,610,o), +(348.833,583.443,o), +(369,518,c), +(463,549,l), +(434.435,647.731,o), +(360.167,700,o), +(264,700,cs), +(127.941,700,o), +(35,595.927,o), +(35,435,cs), +(35,274.073,o), +(127.941,170,o), +(264,170,c), +(360.167,170,o), +(434.435,222.302,o), +(463,324,c), +(366,353,l), +(348.624,286.571,o), +(314.786,260,o), +(259,260,c) +); +} +); +width = 493; +} +); +unicode = 162; +}, +{ +color = 6; +glyphname = currency; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(452,405,o), +(376.844,486,o), +(267,486,cs), +(158.22,486,o), +(83,405,o), +(83,303,c), +(83,201,o), +(158.22,120,o), +(267,120,cs), +(376.844,120,o), +(452,201,o), +(452,303,c) +); +}, +{ +closed = 1; +nodes = ( +(169,364,o), +(211.829,410,o), +(267,410,cs), +(323.319,410,o), +(366,364,o), +(366,303,c), +(366,242,o), +(323.319,196,o), +(267,196,cs), +(211.829,196,o), +(169,242,o), +(169,303,c) +); +}, +{ +closed = 1; +nodes = ( +(71,51,l), +(519,499,l), +(462,556,l), +(14,108,l) +); +}, +{ +closed = 1; +nodes = ( +(13,498,l), +(461,50,l), +(520,109,l), +(72,557,l) +); +}, +{ +closed = 1; +nodes = ( +(464,405,o), +(389,486,o), +(279,486,cs), +(170,486,o), +(95,405,o), +(95,303,c), +(95,201,o), +(170,120,o), +(279,120,cs), +(389,120,o), +(464,201,o), +(464,303,c) +); +}, +{ +closed = 1; +nodes = ( +(181,364,o), +(224,410,o), +(279,410,cs), +(335,410,o), +(378,364,o), +(378,303,c), +(378,242,o), +(335,196,o), +(279,196,cs), +(224,196,o), +(181,242,o), +(181,303,c) +); +}, +{ +closed = 1; +nodes = ( +(25,498,l), +(153,370,l), +(212,429,l), +(84,557,l) +); +}, +{ +closed = 1; +nodes = ( +(531,499,l), +(474,556,l), +(344,426,l), +(401,369,l) +); +}, +{ +closed = 1; +nodes = ( +(473,50,l), +(532,109,l), +(402,239,l), +(343,180,l) +); +}, +{ +closed = 1; +nodes = ( +(83,51,l), +(210,178,l), +(153,235,l), +(26,108,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(411,100,o), +(494,190,o), +(494,303,c), +(494,416,o), +(411,506,o), +(289,506,cs), +(168,506,o), +(85,416,o), +(85,303,c), +(85,190,o), +(168,100,o), +(289,100,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,169,l), +(154,265,l), +(10,121,l), +(106,25,l) +); +}, +{ +closed = 1; +nodes = ( +(251,438,l), +(107,582,l), +(10,485,l), +(154,341,l) +); +}, +{ +closed = 1; +nodes = ( +(567,122,l), +(431,258,l), +(334,161,l), +(470,25,l) +); +}, +{ +closed = 1; +nodes = ( +(242,215,o), +(209,251,o), +(209,303,c), +(209,355,o), +(242,391,o), +(289,391,cs), +(337,391,o), +(370,355,o), +(370,303,c), +(370,251,o), +(337,215,o), +(289,215,cs) +); +}, +{ +closed = 1; +nodes = ( +(567,486,l), +(471,582,l), +(322,433,l), +(418,337,l) +); +} +); +width = 577; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(452,405,o), +(376.844,486,o), +(267,486,cs), +(158.22,486,o), +(83,405,o), +(83,303,c), +(83,201,o), +(158.22,120,o), +(267,120,cs), +(376.844,120,o), +(452,201,o), +(452,303,c) +); +}, +{ +closed = 1; +nodes = ( +(169,364,o), +(211.829,410,o), +(267,410,cs), +(323.319,410,o), +(366,364,o), +(366,303,c), +(366,242,o), +(323.319,196,o), +(267,196,cs), +(211.829,196,o), +(169,242,o), +(169,303,c) +); +}, +{ +closed = 1; +nodes = ( +(71,51,l), +(519,499,l), +(462,556,l), +(14,108,l) +); +}, +{ +closed = 1; +nodes = ( +(13,498,l), +(461,50,l), +(520,109,l), +(72,557,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(389,120,o), +(464,201,o), +(464,303,c), +(464,405,o), +(389,486,o), +(279,486,cs), +(170,486,o), +(95,405,o), +(95,303,c), +(95,201,o), +(170,120,o), +(279,120,cs) +); +}, +{ +closed = 1; +nodes = ( +(210,178,l), +(153,235,l), +(26,108,l), +(83,51,l) +); +}, +{ +closed = 1; +nodes = ( +(212,429,l), +(84,557,l), +(25,498,l), +(153,370,l) +); +}, +{ +closed = 1; +nodes = ( +(532,109,l), +(402,239,l), +(343,180,l), +(473,50,l) +); +}, +{ +closed = 1; +nodes = ( +(224,196,o), +(181,242,o), +(181,303,c), +(181,364,o), +(224,410,o), +(279,410,cs), +(335,410,o), +(378,364,o), +(378,303,c), +(378,242,o), +(335,196,o), +(279,196,cs) +); +}, +{ +closed = 1; +nodes = ( +(531,499,l), +(474,556,l), +(344,426,l), +(401,369,l) +); +} +); +width = 557; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(452,405,o), +(376.844,486,o), +(267,486,cs), +(158.22,486,o), +(83,405,o), +(83,303,c), +(83,201,o), +(158.22,120,o), +(267,120,cs), +(376.844,120,o), +(452,201,o), +(452,303,c) +); +}, +{ +closed = 1; +nodes = ( +(169,364,o), +(211.829,410,o), +(267,410,cs), +(323.319,410,o), +(366,364,o), +(366,303,c), +(366,242,o), +(323.319,196,o), +(267,196,cs), +(211.829,196,o), +(169,242,o), +(169,303,c) +); +}, +{ +closed = 1; +nodes = ( +(71,51,l), +(519,499,l), +(462,556,l), +(14,108,l) +); +}, +{ +closed = 1; +nodes = ( +(13,498,l), +(461,50,l), +(520,109,l), +(72,557,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(464,405,o), +(388.844,486,o), +(279,486,cs), +(170.22,486,o), +(95,405,o), +(95,303,c), +(95,201,o), +(170.22,120,o), +(279,120,cs), +(388.844,120,o), +(464,201,o), +(464,303,c) +); +}, +{ +closed = 1; +nodes = ( +(181,364,o), +(223.829,410,o), +(279,410,cs), +(335.319,410,o), +(378,364,o), +(378,303,c), +(378,242,o), +(335.319,196,o), +(279,196,cs), +(223.829,196,o), +(181,242,o), +(181,303,c) +); +}, +{ +closed = 1; +nodes = ( +(25,498,l), +(153,370,l), +(212,429,l), +(84,557,l) +); +}, +{ +closed = 1; +nodes = ( +(531,499,l), +(474,556,l), +(344,426,l), +(401,369,l) +); +}, +{ +closed = 1; +nodes = ( +(473,50,l), +(532,109,l), +(402,239,l), +(343,180,l) +); +}, +{ +closed = 1; +nodes = ( +(83,51,l), +(210,178,l), +(153,235,l), +(26,108,l) +); +} +); +width = 557; +} +); +unicode = 164; +}, +{ +color = 6; +glyphname = dollar; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(480,-14,o), +(584,71,o), +(584,196,c), +(584,462,o), +(199,391,o), +(199,507,c), +(199,538,o), +(225,566,o), +(294,566,c), +(359,566,o), +(407,536,o), +(431,466,c), +(576,517,l), +(537,640,o), +(438,704,o), +(308,704,c), +(142,704,o), +(43,619,o), +(43,498,c), +(43,245,o), +(425,322,o), +(425,190,c), +(425,153,o), +(393,125,o), +(320,125,c), +(250,125,o), +(199,159,o), +(173,241,c), +(22,190,l), +(64,53,o), +(165,-14,o), +(311,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(368,-110,l), +(368,64,l), +(249,64,l), +(249,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(368,604,l), +(368,800,l), +(249,800,l), +(249,604,l) +); +} +); +width = 612; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(430,-10,o), +(515,72,o), +(515,180,c), +(515,443,o), +(153,363,o), +(153,522,c), +(153,570,o), +(186,612,o), +(266,612,c), +(340,612,o), +(384,572,o), +(408,499,c), +(508,532,l), +(475,637,o), +(396,700,o), +(275,700,c), +(128,700,o), +(52,617,o), +(52,515,c), +(52,266,o), +(413,351,o), +(413,174,c), +(413,117,o), +(364,78,o), +(284,78,c), +(201,78,o), +(156,120,o), +(133,196,c), +(30,163,l), +(64,55,o), +(144,-10,o), +(276,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(322,-110,l), +(322,42,l), +(232,42,l), +(232,-110,l) +); +}, +{ +closed = 1; +nodes = ( +(322,652,l), +(322,800,l), +(232,800,l), +(232,652,l) +); +} +); +width = 560; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(515,443,o), +(153,363,o), +(153,522,c), +(153,570,o), +(186,612,o), +(266,612,c), +(340,612,o), +(384,572,o), +(408,499,c), +(508,532,l), +(475,637,o), +(396,700,o), +(275,700,c), +(128,700,o), +(52,617,o), +(52,515,c), +(52,266,o), +(413,351,o), +(413,174,c), +(413,117,o), +(364,78,o), +(284,78,c), +(201,78,o), +(156,120,o), +(133,196,c), +(30,163,l), +(64,55,o), +(144,-10,o), +(276,-10,c), +(430,-10,o), +(515,72,o), +(515,180,c) +); +}, +{ +closed = 1; +nodes = ( +(322,800,l), +(232,800,l), +(232,652,l), +(322,652,l) +); +}, +{ +closed = 1; +nodes = ( +(322,-110,l), +(322,42,l), +(232,42,l), +(232,-110,l) +); +} +); +width = 560; +} +); +unicode = 36; +}, +{ +color = 6; +glyphname = euro; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(238,84,o), +(186,179,o), +(186,345,cs), +(186,512,o), +(238,606,o), +(322,606,c), +(384,606,o), +(421,563,o), +(436,487,c), +(537,511,l), +(511,634,o), +(436,700,o), +(325,700,c), +(177,700,o), +(83,576,o), +(83,345,cs), +(83,115,o), +(177,-10,o), +(325,-10,c), +(436,-10,o), +(512,56,o), +(541,181,c), +(440,205,l), +(421,127,o), +(385,84,o), +(322,84,c) +); +}, +{ +closed = 1; +nodes = ( +(20,223,l), +(367,223,l), +(377,310,l), +(20,310,l) +); +}, +{ +closed = 1; +nodes = ( +(20,365,l), +(383,365,l), +(393,452,l), +(20,452,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(469,-14,o), +(557,51,o), +(587,176,c), +(436,215,l), +(423,156,o), +(392,124,o), +(337,124,c), +(262,124,o), +(216,204,o), +(216,345,cs), +(216,486,o), +(262,566,o), +(337,566,c), +(391,566,o), +(424,534,o), +(429,482,c), +(580,516,l), +(557,639,o), +(469,704,o), +(340,704,c), +(168,704,o), +(58,579,o), +(58,345,cs), +(58,112,o), +(168,-14,o), +(340,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(406,217,l), +(417,316,l), +(10,316,l), +(10,217,l) +); +}, +{ +closed = 1; +nodes = ( +(422,359,l), +(433,458,l), +(10,458,l), +(10,359,l) +); +} +); +width = 602; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(436,-10,o), +(512,56,o), +(541,181,c), +(440,205,l), +(421,127,o), +(385,84,o), +(322,84,c), +(238,84,o), +(186,179,o), +(186,345,cs), +(186,512,o), +(238,606,o), +(322,606,c), +(384,606,o), +(421,563,o), +(436,487,c), +(537,511,l), +(511,634,o), +(436,700,o), +(325,700,c), +(177,700,o), +(83,576,o), +(83,345,cs), +(83,115,o), +(177,-10,o), +(325,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(367,223,l), +(377,310,l), +(20,310,l), +(20,223,l) +); +}, +{ +closed = 1; +nodes = ( +(383,365,l), +(393,452,l), +(20,452,l), +(20,365,l) +); +} +); +width = 577; +} +); +unicode = 8364; +}, +{ +color = 6; +glyphname = sterling; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(504,96,l), +(130,96,l), +(50,67,l), +(50,0,l), +(504,0,l) +); +}, +{ +closed = 1; +nodes = ( +(253,342,o), +(175,413,o), +(175,501,c), +(175,566,o), +(221,608,o), +(283,608,c), +(353,608,o), +(390,557,o), +(401,493,c), +(504,513,l), +(487,623,o), +(412,700,o), +(287,700,c), +(163,700,o), +(69,620,o), +(69,501,c), +(69,392,o), +(160,341,o), +(160,241,c), +(160,193,o), +(130,135,o), +(50,67,c), +(132,52,l), +(232,135,o), +(253,189,o), +(253,253,c) +); +}, +{ +closed = 1; +nodes = ( +(50,275,l), +(438,275,l), +(438,362,l), +(50,362,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(231,133,o), +(279,205,o), +(279,278,c), +(279,353,o), +(217,409,o), +(217,485,c), +(217,534,o), +(252,563,o), +(295,563,c), +(341,563,o), +(380,531,o), +(386,469,c), +(540,489,l), +(524,629,o), +(431,704,o), +(296,704,c), +(160,704,o), +(57,618,o), +(57,497,c), +(57,395,o), +(133,346,o), +(133,272,c), +(133,214,o), +(101,158,o), +(35,104,c), +(107,97,l) +); +}, +{ +closed = 1; +nodes = ( +(547,0,l), +(547,140,l), +(106,140,l), +(35,104,l), +(35,0,l) +); +}, +{ +closed = 1; +nodes = ( +(449,251,l), +(449,371,l), +(35,371,l), +(35,251,l) +); +} +); +width = 584; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(158,52,l), +(45,67,l), +(194,267,l), +(111,350,o), +(64,403,o), +(64,499,c), +(64,620,o), +(162,700,o), +(286,700,c), +(414,700,o), +(509,623,o), +(527,473,c), +(424,453,l), +(412,557,o), +(364,608,o), +(291,608,c), +(220,608,o), +(173,566,o), +(173,493,c), +(173,443,o), +(200,391,o), +(260,331,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,135,o), +(253,189,o), +(253,253,c), +(253,342,o), +(175,413,o), +(175,501,c), +(175,566,o), +(221,608,o), +(283,608,c), +(353,608,o), +(390,557,o), +(401,493,c), +(504,513,l), +(487,623,o), +(412,700,o), +(287,700,c), +(163,700,o), +(69,620,o), +(69,501,c), +(69,392,o), +(160,341,o), +(160,241,c), +(160,193,o), +(130,135,o), +(50,67,c), +(132,52,l) +); +}, +{ +closed = 1; +nodes = ( +(504,0,l), +(504,96,l), +(130,96,l), +(50,67,l), +(50,0,l) +); +}, +{ +closed = 1; +nodes = ( +(438,275,l), +(438,362,l), +(50,362,l), +(50,275,l) +); +} +); +width = 564; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(158,52,l), +(45,67,l), +(194,267,l), +(111,350,o), +(64,403,o), +(64,499,c), +(64,620,o), +(162,700,o), +(286,700,c), +(414,700,o), +(509,623,o), +(527,473,c), +(424,453,l), +(412,557,o), +(364,608,o), +(291,608,c), +(220,608,o), +(173,566,o), +(173,493,c), +(173,443,o), +(200,391,o), +(260,331,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(504,96,l), +(130,96,l), +(50,67,l), +(50,0,l), +(504,0,l) +); +}, +{ +closed = 1; +nodes = ( +(253,342,o), +(175,413,o), +(175,501,c), +(175,566,o), +(221,608,o), +(283,608,c), +(353,608,o), +(390.44,557,o), +(401,493,c), +(504,513,l), +(487.365,623,o), +(412,700,o), +(287,700,c), +(163,700,o), +(69,620,o), +(69,501,c), +(69,392,o), +(160,341,o), +(160,241,c), +(160,193,o), +(130,135,o), +(50,67,c), +(132,52,l), +(232,135,o), +(253,189,o), +(253,253,c) +); +}, +{ +closed = 1; +nodes = ( +(50,275,l), +(438,275,l), +(438,362,l), +(50,362,l) +); +} +); +width = 564; +} +); +unicode = 163; +}, +{ +color = 6; +glyphname = yen; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(351,415,l), +(201,690,l), +(28,690,l), +(251,292,l) +); +}, +{ +closed = 1; +nodes = ( +(386,0,l), +(386,453,l), +(232,453,l), +(232,0,l) +); +}, +{ +closed = 1; +nodes = ( +(547,183,l), +(547,290,l), +(71,290,l), +(71,183,l) +); +}, +{ +closed = 1; +nodes = ( +(547,325,l), +(547,432,l), +(71,432,l), +(71,325,l) +); +}, +{ +closed = 1; +nodes = ( +(592,690,l), +(426,690,l), +(279,415,l), +(368,293,l) +); +} +); +width = 620; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,363,l), +(138,690,l), +(20,690,l), +(262,303,l) +); +}, +{ +closed = 1; +nodes = ( +(349,0,l), +(349,410,l), +(244,410,l), +(244,0,l) +); +}, +{ +closed = 1; +nodes = ( +(503,161,l), +(503,248,l), +(90,248,l), +(90,161,l) +); +}, +{ +closed = 1; +nodes = ( +(504,303,l), +(504,390,l), +(90,390,l), +(90,303,l) +); +}, +{ +closed = 1; +nodes = ( +(574,690,l), +(459,690,l), +(271,363,l), +(332,303,l) +); +} +); +width = 594; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,363,l), +(138,690,l), +(20,690,l), +(262,303,l) +); +}, +{ +closed = 1; +nodes = ( +(332,303,l), +(574,690,l), +(459,690,l), +(271,363,l) +); +}, +{ +closed = 1; +nodes = ( +(349,0,l), +(349,410,l), +(244,410,l), +(244,0,l) +); +}, +{ +closed = 1; +nodes = ( +(90,161,l), +(503,161,l), +(503,248,l), +(90,248,l) +); +}, +{ +closed = 1; +nodes = ( +(90,303,l), +(504,303,l), +(504,390,l), +(90,390,l) +); +} +); +width = 594; +} +); +unicode = 165; +}, +{ +color = 6; +glyphname = bulletoperator; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(206,188,o), +(255,232,o), +(255,298,cs), +(255,365,o), +(206,411,o), +(141,411,cs), +(79,411,o), +(30,365,o), +(30,298,cs), +(30,232,o), +(79,188,o), +(141,188,cs) +); +} +); +width = 285; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,203,o), +(235,243,o), +(235,296,cs), +(235,352,o), +(197,392,o), +(143,392,cs), +(89,392,o), +(50,352,o), +(50,296,cs), +(50,243,o), +(89,203,o), +(143,203,cs) +); +} +); +width = 285; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(148,231,o), +(175,259,o), +(175,297,cs), +(175,336,o), +(148,364,o), +(110,364,cs), +(72,364,o), +(45,336,o), +(45,297,cs), +(45,259,o), +(72,231,o), +(110,231,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,203,o), +(235,243,o), +(235,296,cs), +(235,352,o), +(197,392,o), +(143,392,cs), +(89,392,o), +(50,352,o), +(50,296,cs), +(50,243,o), +(89,203,o), +(143,203,cs) +); +} +); +width = 285; +} +); +unicode = 8729; +}, +{ +color = 6; +glyphname = divisionslash; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(143,-120,l), +(343,770,l), +(200,770,l), +(0,-120,l) +); +} +); +width = 343; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,-120,l), +(292,770,l), +(200,770,l), +(0,-120,l) +); +} +); +width = 292; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,-120,l), +(292,770,l), +(200,770,l), +(0,-120,l) +); +} +); +width = 292; +} +); +unicode = 8725; +}, +{ +color = 6; +glyphname = plus; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(336,74,l), +(336,533,l), +(197,533,l), +(197,74,l) +); +}, +{ +closed = 1; +nodes = ( +(491,236,l), +(491,371,l), +(42,371,l), +(42,236,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,92,l), +(309,515,l), +(224,515,l), +(224,92,l) +); +}, +{ +closed = 1; +nodes = ( +(473,263,l), +(473,344,l), +(60,344,l), +(60,263,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,263,l), +(473,263,l), +(473,344,l), +(60,344,l) +); +}, +{ +closed = 1; +nodes = ( +(224,515,l), +(224,92,l), +(309,92,l), +(309,515,l) +); +} +); +width = 533; +} +); +unicode = 43; +}, +{ +color = 6; +glyphname = minus; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(491,236,l), +(491,371,l), +(42,371,l), +(42,236,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,263,l), +(473,344,l), +(60,344,l), +(60,263,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,263,l), +(473,263,l), +(473,344,l), +(60,344,l) +); +} +); +width = 533; +} +); +unicode = 8722; +}, +{ +color = 6; +glyphname = multiply; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(495,172,l), +(363,304,l), +(495,436,l), +(399,532,l), +(267,400,l), +(135,532,l), +(38,435,l), +(170,303,l), +(38,171,l), +(134,75,l), +(266,207,l), +(398,75,l) +); +} +); +width = 533; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(60,263,l), +(473,263,l), +(473,344,l), +(60,344,l) +); +}, +{ +closed = 1; +nodes = ( +(224,515,l), +(224,92,l), +(309,92,l), +(309,515,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(470,159,l), +(325,305,l), +(469,449,l), +(412,506,l), +(268,362,l), +(122,507,l), +(63,448,l), +(209,303,l), +(64,158,l), +(121,101,l), +(266,246,l), +(411,100,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(60,263,l), +(473,263,l), +(473,344,l), +(60,344,l) +); +}, +{ +closed = 1; +nodes = ( +(224,515,l), +(224,92,l), +(309,92,l), +(309,515,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,101,l), +(469,449,l), +(412,506,l), +(64,158,l) +); +}, +{ +closed = 1; +nodes = ( +(63,448,l), +(411,100,l), +(470,159,l), +(122,507,l) +); +} +); +width = 533; +} +); +unicode = 215; +}, +{ +color = 6; +glyphname = divide; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(491,236,l), +(491,371,l), +(42,371,l), +(42,236,l) +); +}, +{ +closed = 1; +nodes = ( +(315,55,o), +(346,85,o), +(346,129,cs), +(346,174,o), +(315,204,o), +(266,204,cs), +(217,204,o), +(186,174,o), +(186,129,cs), +(186,85,o), +(217,55,o), +(266,55,cs) +); +}, +{ +closed = 1; +nodes = ( +(315,403,o), +(346,433,o), +(346,477,cs), +(346,522,o), +(315,552,o), +(266,552,cs), +(217,552,o), +(186,522,o), +(186,477,cs), +(186,433,o), +(217,403,o), +(266,403,cs) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,263,l), +(473,344,l), +(60,344,l), +(60,263,l) +); +}, +{ +closed = 1; +nodes = ( +(298,82,o), +(323,105,o), +(323,138,cs), +(323,172,o), +(298,195,o), +(266,195,cs), +(234,195,o), +(209,172,o), +(209,138,cs), +(209,105,o), +(234,82,o), +(266,82,cs) +); +}, +{ +closed = 1; +nodes = ( +(298,412,o), +(323,435,o), +(323,468,cs), +(323,502,o), +(298,525,o), +(266,525,cs), +(234,525,o), +(209,502,o), +(209,468,cs), +(209,435,o), +(234,412,o), +(266,412,cs) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,263,l), +(473,263,l), +(473,344,l), +(60,344,l) +); +}, +{ +closed = 1; +nodes = ( +(298,412,o), +(323,435,o), +(323,468,cs), +(323,502,o), +(298,525,o), +(266,525,cs), +(234,525,o), +(209,502,o), +(209,468,cs), +(209,435,o), +(234,412,o), +(266,412,cs) +); +}, +{ +closed = 1; +nodes = ( +(298,82,o), +(323,105,o), +(323,138,cs), +(323,172,o), +(298,195,o), +(266,195,cs), +(234,195,o), +(209,172,o), +(209,138,cs), +(209,105,o), +(234,82,o), +(266,82,cs) +); +} +); +width = 533; +} +); +unicode = 247; +}, +{ +color = 6; +glyphname = equal; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(491,350,l), +(491,484,l), +(42,484,l), +(42,350,l) +); +}, +{ +closed = 1; +nodes = ( +(491,122,l), +(491,258,l), +(42,258,l), +(42,122,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,363,l), +(473,444,l), +(60,444,l), +(60,363,l) +); +}, +{ +closed = 1; +nodes = ( +(473,163,l), +(473,244,l), +(60,244,l), +(60,163,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,363,l), +(473,363,l), +(473,444,l), +(60,444,l) +); +}, +{ +closed = 1; +nodes = ( +(60,163,l), +(473,163,l), +(473,244,l), +(60,244,l) +); +} +); +width = 533; +} +); +unicode = 61; +}, +{ +color = 6; +glyphname = notequal; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(222,52,l), +(442,555,l), +(311,555,l), +(91,52,l) +); +}, +{ +closed = 1; +nodes = ( +(491,122,l), +(491,258,l), +(42,258,l), +(42,122,l) +); +}, +{ +closed = 1; +nodes = ( +(491,350,l), +(491,484,l), +(42,484,l), +(42,350,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(212,92,l), +(412,515,l), +(321,515,l), +(121,92,l) +); +}, +{ +closed = 1; +nodes = ( +(473,163,l), +(473,244,l), +(60,244,l), +(60,163,l) +); +}, +{ +closed = 1; +nodes = ( +(473,363,l), +(473,444,l), +(60,444,l), +(60,363,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,363,l), +(473,363,l), +(473,444,l), +(60,444,l) +); +}, +{ +closed = 1; +nodes = ( +(60,163,l), +(473,163,l), +(473,244,l), +(60,244,l) +); +}, +{ +closed = 1; +nodes = ( +(321,515,l), +(121,92,l), +(212,92,l), +(412,515,l) +); +} +); +width = 533; +} +); +unicode = 8800; +}, +{ +color = 6; +glyphname = greater; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(498,385,l), +(45,523,l), +(45,381,l), +(362,302,l), +(498,221,l) +); +}, +{ +closed = 1; +nodes = ( +(498,221,l), +(498,385,l), +(362,302,l), +(45,223,l), +(45,83,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(478,345,l), +(65,513,l), +(65,421,l), +(372,302,l), +(478,261,l) +); +}, +{ +closed = 1; +nodes = ( +(478,261,l), +(478,345,l), +(372,302,l), +(65,183,l), +(65,93,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(478,345,l), +(372,302,l), +(65,183,l), +(65,93,l), +(478,261,l) +); +}, +{ +closed = 1; +nodes = ( +(65,421,l), +(372,302,l), +(478,261,l), +(478,345,l), +(65,513,l) +); +} +); +width = 533; +} +); +unicode = 62; +}, +{ +color = 6; +glyphname = less; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(171,304,l), +(488,383,l), +(488,523,l), +(35,385,l), +(35,221,l) +); +}, +{ +closed = 1; +nodes = ( +(488,225,l), +(171,304,l), +(35,385,l), +(35,221,l), +(488,83,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,304,l), +(468,423,l), +(468,513,l), +(55,345,l), +(55,261,l) +); +}, +{ +closed = 1; +nodes = ( +(468,185,l), +(161,304,l), +(55,345,l), +(55,261,l), +(468,93,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(55,261,l), +(161,304,l), +(468,423,l), +(468,513,l), +(55,345,l) +); +}, +{ +closed = 1; +nodes = ( +(468,185,l), +(161,304,l), +(55,345,l), +(55,261,l), +(468,93,l) +); +} +); +width = 533; +} +); +unicode = 60; +}, +{ +color = 6; +glyphname = greaterequal; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(491,465,l), +(42,543,l), +(42,410,l), +(367,372,l), +(491,281,l) +); +}, +{ +closed = 1; +nodes = ( +(491,63,l), +(491,199,l), +(42,199,l), +(42,63,l) +); +}, +{ +closed = 1; +nodes = ( +(491,281,l), +(491,465,l), +(367,372,l), +(42,335,l), +(42,203,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,404,l), +(60,513,l), +(60,427,l), +(374,352,l), +(473,302,l) +); +}, +{ +closed = 1; +nodes = ( +(473,93,l), +(473,174,l), +(60,174,l), +(60,93,l) +); +}, +{ +closed = 1; +nodes = ( +(473,302,l), +(473,404,l), +(374,352,l), +(60,277,l), +(60,193,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,404,l), +(374,352,l), +(60,277,l), +(60,193,l), +(473,302,l) +); +}, +{ +closed = 1; +nodes = ( +(60,427,l), +(374,352,l), +(473,302,l), +(473,404,l), +(60,513,l) +); +}, +{ +closed = 1; +nodes = ( +(60,93,l), +(473,93,l), +(473,174,l), +(60,174,l) +); +} +); +width = 533; +} +); +unicode = 8805; +}, +{ +color = 6; +glyphname = lessequal; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(166,374,l), +(491,411,l), +(491,543,l), +(42,465,l), +(42,281,l) +); +}, +{ +closed = 1; +nodes = ( +(491,63,l), +(491,199,l), +(42,199,l), +(42,63,l) +); +}, +{ +closed = 1; +nodes = ( +(491,336,l), +(166,374,l), +(42,465,l), +(42,281,l), +(491,203,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(159,354,l), +(473,429,l), +(473,513,l), +(60,404,l), +(60,302,l) +); +}, +{ +closed = 1; +nodes = ( +(473,93,l), +(473,174,l), +(60,174,l), +(60,93,l) +); +}, +{ +closed = 1; +nodes = ( +(473,279,l), +(159,354,l), +(60,404,l), +(60,302,l), +(473,193,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,302,l), +(159,354,l), +(473,429,l), +(473,513,l), +(60,404,l) +); +}, +{ +closed = 1; +nodes = ( +(473,279,l), +(159,354,l), +(60,404,l), +(60,302,l), +(473,193,l) +); +}, +{ +closed = 1; +nodes = ( +(60,93,l), +(473,93,l), +(473,174,l), +(60,174,l) +); +} +); +width = 533; +} +); +unicode = 8804; +}, +{ +color = 6; +glyphname = plusminus; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(491,322,l), +(491,458,l), +(42,458,l), +(42,322,l) +); +}, +{ +closed = 1; +nodes = ( +(491,44,l), +(491,179,l), +(42,179,l), +(42,44,l) +); +}, +{ +closed = 1; +nodes = ( +(336,220,l), +(336,560,l), +(197,560,l), +(197,220,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,318,l), +(473,399,l), +(60,399,l), +(60,318,l) +); +}, +{ +closed = 1; +nodes = ( +(473,62,l), +(473,143,l), +(60,143,l), +(60,62,l) +); +}, +{ +closed = 1; +nodes = ( +(309,202,l), +(309,515,l), +(224,515,l), +(224,202,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,318,l), +(473,318,l), +(473,399,l), +(60,399,l) +); +}, +{ +closed = 1; +nodes = ( +(224,515,l), +(224,202,l), +(309,202,l), +(309,515,l) +); +}, +{ +closed = 1; +nodes = ( +(60,62,l), +(473,62,l), +(473,143,l), +(60,143,l) +); +} +); +width = 533; +} +); +unicode = 177; +}, +{ +color = 6; +glyphname = approxequal; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(412,333,o), +(450,341,o), +(491,353,c), +(491,484,l), +(450,472,o), +(412,464,o), +(371,464,c), +(291,464,o), +(242,504,o), +(162,504,c), +(121,504,o), +(83,496,o), +(42,484,c), +(42,353,l), +(83,365,o), +(121,373,o), +(162,373,c), +(242,373,o), +(291,333,o), +(371,333,c) +); +}, +{ +closed = 1; +nodes = ( +(412,103,o), +(450,111,o), +(491,123,c), +(491,254,l), +(450,242,o), +(412,234,o), +(371,234,c), +(291,234,o), +(242,274,o), +(162,274,c), +(121,274,o), +(83,266,o), +(42,254,c), +(42,123,l), +(83,135,o), +(121,143,o), +(162,143,c), +(242,143,o), +(291,103,o), +(371,103,c) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,343,o), +(439,351,o), +(473,363,c), +(473,444,l), +(439,432,o), +(405,424,o), +(371,424,c), +(291,424,o), +(242,464,o), +(162,464,c), +(128,464,o), +(94,456,o), +(60,444,c), +(60,363,l), +(94,375,o), +(128,383,o), +(162,383,c), +(242,383,o), +(291,343,o), +(371,343,c) +); +}, +{ +closed = 1; +nodes = ( +(405,143,o), +(439,151,o), +(473,163,c), +(473,244,l), +(439,232,o), +(405,224,o), +(371,224,c), +(291,224,o), +(242,264,o), +(162,264,c), +(128,264,o), +(94,256,o), +(60,244,c), +(60,163,l), +(94,175,o), +(128,183,o), +(162,183,c), +(242,183,o), +(291,143,o), +(371,143,c) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,363,l), +(94,375,o), +(128,383,o), +(162,383,c), +(242,383,o), +(291,343,o), +(371,343,c), +(405,343,o), +(439,351,o), +(473,363,c), +(473,444,l), +(439,432,o), +(405,424,o), +(371,424,c), +(291,424,o), +(242,464,o), +(162,464,c), +(128,464,o), +(94,456,o), +(60,444,c) +); +}, +{ +closed = 1; +nodes = ( +(60,163,l), +(94,175,o), +(128,183,o), +(162,183,c), +(242,183,o), +(291,143,o), +(371,143,c), +(405,143,o), +(439,151,o), +(473,163,c), +(473,244,l), +(439,232,o), +(405,224,o), +(371,224,c), +(291,224,o), +(242,264,o), +(162,264,c), +(128,264,o), +(94,256,o), +(60,244,c) +); +} +); +width = 533; +} +); +unicode = 8776; +}, +{ +color = 6; +glyphname = asciitilde; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(129,277,l), +(131,320,o), +(141,336,o), +(173,336,c), +(223,336,o), +(260,277,o), +(340,277,c), +(428,277,o), +(483,356,o), +(481,475,c), +(367,475,l), +(365,432,o), +(355,416,o), +(323,416,c), +(276,416,o), +(238,475,o), +(156,475,c), +(67,475,o), +(13,396,o), +(15,277,c) +); +} +); +width = 496; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,295,l), +(123,348,o), +(138,372,o), +(173,372,c), +(221,372,o), +(254,295,o), +(332,295,c), +(408,295,o), +(455,357,o), +(453,455,c), +(379,455,l), +(377,402,o), +(362,378,o), +(327,378,c), +(281,378,o), +(247,455,o), +(168,455,c), +(92,455,o), +(45,393,o), +(47,295,c) +); +} +); +width = 500; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(408,295,o), +(455,357,o), +(453,455,c), +(379,455,l), +(377,402,o), +(362,378,o), +(327,378,c), +(281,378,o), +(247,455,o), +(168,455,c), +(92,455,o), +(45,393,o), +(47,295,c), +(121,295,l), +(123,348,o), +(138,372,o), +(173,372,c), +(221,372,o), +(254,295,o), +(332,295,c) +); +} +); +width = 500; +} +); +unicode = 126; +}, +{ +color = 6; +glyphname = logicalnot; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(491,236,l), +(491,371,l), +(42,371,l), +(42,236,l) +); +}, +{ +closed = 1; +nodes = ( +(491,74,l), +(491,371,l), +(352,371,l), +(352,74,l) +); +} +); +width = 533; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,263,l), +(473,344,l), +(60,344,l), +(60,263,l) +); +}, +{ +closed = 1; +nodes = ( +(473,92,l), +(473,344,l), +(388,344,l), +(388,92,l) +); +} +); +width = 533; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,263,l), +(473,263,l), +(473,344,l), +(60,344,l) +); +}, +{ +closed = 1; +nodes = ( +(388,344,l), +(388,92,l), +(473,92,l), +(473,344,l) +); +} +); +width = 533; +} +); +unicode = 172; +}, +{ +color = 6; +glyphname = asciicircum; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(480,277,l), +(326,690,l), +(174,690,l), +(251,537,l), +(336,277,l) +); +}, +{ +closed = 1; +nodes = ( +(166,278,l), +(251,537,l), +(326,690,l), +(174,690,l), +(20,278,l) +); +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,277,l), +(282,690,l), +(198,690,l), +(241,584,l), +(360,277,l) +); +}, +{ +closed = 1; +nodes = ( +(122,278,l), +(241,584,l), +(282,690,l), +(198,690,l), +(30,278,l) +); +} +); +width = 480; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,690,l), +(241,584,l), +(360,277,l), +(450,277,l), +(282,690,l) +); +}, +{ +closed = 1; +nodes = ( +(122,278,l), +(241,584,l), +(282,690,l), +(198,690,l), +(30,278,l) +); +} +); +width = 480; +} +); +unicode = 94; +}, +{ +color = 6; +glyphname = infinity; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(699,120,o), +(774,201,o), +(774,303,c), +(774,405,o), +(699,486,o), +(594,486,c), +(390,486,o), +(395,196,o), +(249,196,cs), +(194,196,o), +(151,242,o), +(151,303,c), +(151,364,o), +(193.829,410,o), +(249,410,c), +(395,410,o), +(380,120,o), +(594,120,c) +); +}, +{ +closed = 1; +nodes = ( +(140,486,o), +(65,405,o), +(65,303,c), +(65,201,o), +(140,120,o), +(244,120,c), +(449,120,o), +(444,410,o), +(589,410,cs), +(645,410,o), +(688,364,o), +(688,303,c), +(688,242,o), +(645,196,o), +(589,196,c), +(444,196,o), +(459,486,o), +(244,486,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(730,100,o), +(814,190,o), +(814,303,c), +(814,416,o), +(730,506,o), +(611,506,c), +(386,506,o), +(398,226,o), +(255,226,cs), +(214,226,o), +(181,259,o), +(181,303,c), +(181,347,o), +(214,380,o), +(255,380,c), +(398,380,o), +(376,100,o), +(611,100,c) +); +}, +{ +closed = 1; +nodes = ( +(473,100,o), +(461,380,o), +(603,380,cs), +(645,380,o), +(678,347,o), +(678,303,c), +(678,259,o), +(645,226,o), +(603,226,c), +(461,226,o), +(483,506,o), +(247,506,c), +(129,506,o), +(45,416,o), +(45,303,c), +(45,190,o), +(129,100,o), +(247,100,c) +); +} +); +width = 859; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(464,405,o), +(388.844,486,o), +(279,486,cs), +(170.22,486,o), +(95,405,o), +(95,303,c), +(95,201,o), +(170.22,120,o), +(279,120,cs), +(388.844,120,o), +(464,201,o), +(464,303,c) +); +}, +{ +closed = 1; +nodes = ( +(181,364,o), +(223.829,410,o), +(279,410,cs), +(335.319,410,o), +(378,364,o), +(378,303,c), +(378,242,o), +(335.319,196,o), +(279,196,cs), +(223.829,196,o), +(181,242,o), +(181,303,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(699,120,o), +(774,201,o), +(774,303,c), +(774,405,o), +(699,486,o), +(594,486,c), +(390,486,o), +(395,196,o), +(249,196,cs), +(194,196,o), +(151,242,o), +(151,303,c), +(151,364,o), +(194,410,o), +(249,410,c), +(395,410,o), +(380,120,o), +(594,120,c) +); +}, +{ +closed = 1; +nodes = ( +(449,120,o), +(444,410,o), +(589,410,cs), +(645,410,o), +(688,364,o), +(688,303,c), +(688,242,o), +(645,196,o), +(589,196,c), +(444,196,o), +(459,486,o), +(244,486,c), +(140,486,o), +(65,405,o), +(65,303,c), +(65,201,o), +(140,120,o), +(244,120,c) +); +} +); +width = 839; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(464,405,o), +(388.844,486,o), +(279,486,cs), +(170.22,486,o), +(95,405,o), +(95,303,c), +(95,201,o), +(170.22,120,o), +(279,120,cs), +(388.844,120,o), +(464,201,o), +(464,303,c) +); +}, +{ +closed = 1; +nodes = ( +(181,364,o), +(223.829,410,o), +(279,410,cs), +(335.319,410,o), +(378,364,o), +(378,303,c), +(378,242,o), +(335.319,196,o), +(279,196,cs), +(223.829,196,o), +(181,242,o), +(181,303,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(699,120,o), +(774,201,o), +(774,303,c), +(774,405,o), +(699,486,o), +(594,486,c), +(390,486,o), +(395,196,o), +(249,196,cs), +(194,196,o), +(151,242,o), +(151,303,c), +(151,364,o), +(193.829,410,o), +(249,410,c), +(395,410,o), +(380,120,o), +(594,120,c) +); +}, +{ +closed = 1; +nodes = ( +(140,486,o), +(65,405,o), +(65,303,c), +(65,201,o), +(140,120,o), +(244,120,c), +(449,120,o), +(444,410,o), +(589,410,cs), +(645,410,o), +(688,364,o), +(688,303,c), +(688,242,o), +(645,196,o), +(589,196,c), +(444,196,o), +(459,486,o), +(244,486,c) +); +} +); +width = 839; +} +); +unicode = 8734; +}, +{ +color = 6; +glyphname = integral; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(220,582,o), +(245,603,o), +(291,603,c), +(317,603,o), +(340,598,o), +(364,592,c), +(364,715,l), +(332,724,o), +(301,730,o), +(260,730,c), +(143,730,o), +(71,665,o), +(71,536,c), +(71,0,l), +(220,0,l), +(220,541,l) +); +}, +{ +closed = 1; +nodes = ( +(358,407,l), +(358,530,l), +(5,530,l), +(5,407,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(112,-189,o), +(194,-143,o), +(221,-14,cs), +(339,541,ls), +(348,582,o), +(374,603,o), +(415,603,c), +(443,603,o), +(467,597,o), +(488,589,c), +(514,712,l), +(485,723,o), +(445,729,o), +(405,729,c), +(302,729,o), +(220,683,o), +(193,554,cs), +(75,-1,ls), +(66,-42,o), +(40,-63,o), +(-1,-63,c), +(-29,-63,o), +(-53,-57,o), +(-74,-49,c), +(-100,-172,l), +(-71,-183,o), +(-31,-189,o), +(9,-189,c) +); +} +); +width = 504; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,-185,o), +(165,-138,o), +(190,-21,c), +(313,557,ls), +(324,610,o), +(355,636,o), +(403,636,c), +(426,636,o), +(446,630,o), +(466,621,c), +(484,708,l), +(458,718,o), +(430,725,o), +(398,725,c), +(304,725,o), +(239,678,o), +(214,561,cs), +(91,-17,l), +(80,-70,o), +(49,-96,o), +(1,-96,c), +(-22,-96,o), +(-42,-90,o), +(-62,-81,c), +(-80,-168,l), +(-54,-178,o), +(-26,-185,o), +(6,-185,c) +); +} +); +width = 484; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,557,ls), +(324,610,o), +(355,636,o), +(403,636,c), +(426,636,o), +(446,630,o), +(466,621,c), +(484,708,l), +(458,718,o), +(430,725,o), +(398,725,c), +(304,725,o), +(239,678,o), +(214,561,cs), +(91,-17,l), +(80,-70,o), +(49,-96,o), +(1,-96,c), +(-22,-96,o), +(-42,-90,o), +(-62,-81,c), +(-80,-168,l), +(-54,-178,o), +(-26,-185,o), +(6,-185,c), +(100,-185,o), +(165,-138,o), +(190,-21,c) +); +} +); +width = 484; +} +); +unicode = 8747; +}, +{ +color = 6; +glyphname = ohm; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(325,294,l), +(253,301,o), +(198,347,o), +(198,422,cs), +(198,504,o), +(261,558,o), +(355,558,c), +(449,558,o), +(512,504,o), +(512,422,cs), +(512,347,o), +(457,301,o), +(385,294,c), +(385,173,l), +(572,185,o), +(670,286,o), +(670,425,cs), +(670,589,o), +(543,704,o), +(355,704,c), +(167,704,o), +(40,589,o), +(40,425,cs), +(40,286,o), +(138,185,o), +(325,173,c) +); +}, +{ +closed = 1; +nodes = ( +(325,0,l), +(325,147,l), +(40,147,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(325,0,l), +(325,225,l), +(200,225,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(510,0,l), +(510,225,l), +(385,225,l), +(385,0,l) +); +}, +{ +closed = 1; +nodes = ( +(670,0,l), +(670,147,l), +(385,147,l), +(385,0,l) +); +} +); +width = 710; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,205,l), +(210,228,o), +(146,298,o), +(146,412,cs), +(146,521,o), +(224,593,o), +(345,593,c), +(466,593,o), +(544,521,o), +(544,412,cs), +(544,298,o), +(480,228,o), +(390,205,c), +(390,128,l), +(536,153,o), +(650,256,o), +(650,415,cs), +(650,585,o), +(527,700,o), +(345,700,c), +(163,700,o), +(40,585,o), +(40,415,cs), +(40,256,o), +(154,153,o), +(300,128,c) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,96,l), +(40,96,l), +(40,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,180,l), +(200,180,l), +(200,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,0,l), +(490,180,l), +(390,180,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(650,0,l), +(650,96,l), +(390,96,l), +(390,0,l) +); +} +); +width = 690; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(650,0,l), +(650,96,l), +(390,96,l), +(390,0,l) +); +}, +{ +closed = 1; +nodes = ( +(490,180,l), +(390,180,l), +(390,0,l), +(490,0,l) +); +}, +{ +closed = 1; +nodes = ( +(466,593,o), +(544,521,o), +(544,412,cs), +(544,298,o), +(480,228.1,o), +(390,205,c), +(390,128,l), +(536,152.866,o), +(650,256.477,o), +(650,415,cs), +(650,585,o), +(527,700,o), +(345,700,c), +(163,700,o), +(40,585,o), +(40,415,cs), +(40,256.477,o), +(154,152.866,o), +(300,128,c), +(300,205,l), +(210,228.1,o), +(146,298,o), +(146,412,cs), +(146,521,o), +(224,593,o), +(345,593,c) +); +}, +{ +closed = 1; +nodes = ( +(300,96,l), +(40,96,l), +(40,0,l), +(300,0,l) +); +}, +{ +closed = 1; +nodes = ( +(300,0,l), +(300,180,l), +(200,180,l), +(200,0,l) +); +} +); +width = 690; +} +); +unicode = 8486; +}, +{ +color = 6; +glyphname = increment; +kernLeft = A; +kernRight = A; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(672,0,l), +(451,690,l), +(296,690,l), +(506,0,l) +); +}, +{ +closed = 1; +nodes = ( +(543,0,l), +(543,141,l), +(125,141,l), +(125,0,l) +); +}, +{ +closed = 1; +nodes = ( +(160,0,l), +(364,690,l), +(218,690,l), +(-3,0,l) +); +} +); +width = 668; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(642,0,l), +(403,690,l), +(301,690,l), +(532,0,l) +); +}, +{ +closed = 1; +nodes = ( +(561,0,l), +(561,96,l), +(93,96,l), +(93,0,l) +); +}, +{ +closed = 1; +nodes = ( +(119,0,l), +(345,690,l), +(251,690,l), +(12,0,l) +); +} +); +width = 654; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,0,l), +(561,0,l), +(561,96,l), +(93,96,l) +); +}, +{ +closed = 1; +nodes = ( +(301,690,l), +(532,0,l), +(642,0,l), +(403,690,l) +); +}, +{ +closed = 1; +nodes = ( +(251,690,l), +(12,0,l), +(119,0,l), +(345,690,l) +); +} +); +width = 654; +} +); +unicode = 8710; +}, +{ +color = 6; +glyphname = product; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(588,-175,l), +(588,690,l), +(434,690,l), +(434,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(252,-175,l), +(252,690,l), +(97,690,l), +(97,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(670,545,l), +(670,690,l), +(15,690,l), +(15,545,l) +); +} +); +width = 685; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(560,-175,l), +(560,690,l), +(455,690,l), +(455,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(230,-175,l), +(230,690,l), +(125,690,l), +(125,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(660,594,l), +(660,690,l), +(25,690,l), +(25,594,l) +); +} +); +width = 685; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,-175,l), +(230,690,l), +(125,690,l), +(125,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(25,594,l), +(660,594,l), +(660,690,l), +(25,690,l) +); +}, +{ +closed = 1; +nodes = ( +(560,-175,l), +(560,690,l), +(455,690,l), +(455,-175,l) +); +} +); +width = 685; +} +); +unicode = 8719; +}, +{ +color = 6; +glyphname = summation; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(202,-72,l), +(440,209,l), +(440,312,l), +(208,587,l), +(23,587,l), +(333,220,l), +(333,295,l), +(23,-72,l) +); +}, +{ +closed = 1; +nodes = ( +(590,-175,l), +(590,-35,l), +(81,-35,l), +(23,-72,l), +(23,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(590,550,l), +(590,690,l), +(23,690,l), +(23,587,l), +(81,550,l) +); +} +); +width = 613; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(152,-123,l), +(415,235,l), +(415,287,l), +(157,638,l), +(30,638,l), +(324,238,l), +(324,277,l), +(30,-123,l) +); +}, +{ +closed = 1; +nodes = ( +(580,-175,l), +(580,-79,l), +(70,-79,l), +(30,-123,l), +(30,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(580,594,l), +(580,690,l), +(30,690,l), +(30,638,l), +(70,594,l) +); +} +); +width = 610; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(30,-175,l), +(580,-175,l), +(580,-79,l), +(70,-79,l), +(30,-123,l) +); +}, +{ +closed = 1; +nodes = ( +(70,594,l), +(580,594,l), +(580,690,l), +(30,690,l), +(30,638,l) +); +}, +{ +closed = 1; +nodes = ( +(415,287,l), +(157,638,l), +(30,638,l), +(324,238,l), +(324,277,l), +(30,-123,l), +(152,-123,l), +(415,235,l) +); +} +); +width = 610; +} +); +unicode = 8721; +}, +{ +color = 6; +glyphname = radical; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(446,0,l), +(637,690,l), +(480,690,l), +(309,0,l) +); +}, +{ +closed = 1; +nodes = ( +(358,0,l), +(224,530,l), +(63,530,l), +(212,0,l) +); +}, +{ +closed = 1; +nodes = ( +(160,407,l), +(160,530,l), +(5,530,l), +(5,407,l) +); +} +); +width = 637; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,0,l), +(597,690,l), +(496,690,l), +(286,0,l) +); +}, +{ +closed = 1; +nodes = ( +(326,0,l), +(161,530,l), +(56,530,l), +(225,0,l) +); +}, +{ +closed = 1; +nodes = ( +(133,443,l), +(133,530,l), +(5,530,l), +(5,443,l) +); +} +); +width = 602; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(326,0,l), +(161,530,l), +(56,530,l), +(225,0,l) +); +}, +{ +closed = 1; +nodes = ( +(379,0,l), +(597,690,l), +(496,690,l), +(286,0,l) +); +}, +{ +closed = 1; +nodes = ( +(5,443,l), +(133,443,l), +(133,530,l), +(5,530,l) +); +} +); +width = 602; +} +); +unicode = 8730; +}, +{ +color = 6; +glyphname = mu.math; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(400,530,l), +(400,0,l), +(500,0,l), +(500,530,l) +); +}, +{ +closed = 1; +nodes = ( +(160,530,l), +(60,530,l), +(60,-175,l), +(160,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(134,70,o), +(191,-10,o), +(278,-10,c), +(366,-10,o), +(429,79,o), +(429,221,c), +(400,221,l), +(400,127,o), +(347,78,o), +(280,78,c), +(213,78,o), +(160,127,o), +(160,221,c), +(134,198,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(202,-175,l), +(202,530,l), +(53,530,l), +(53,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(355,-14,o), +(400,73,o), +(400,226,c), +(384,226,l), +(384,155,o), +(346,118,o), +(293,118,c), +(240,118,o), +(202,155,o), +(202,226,c), +(183,196,l), +(183,64,o), +(224,-14,o), +(289,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(533,0,l), +(533,530,l), +(384,530,l), +(384,0,l) +); +} +); +width = 586; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,-175,l), +(165,530,l), +(65,530,l), +(65,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(371,-10,o), +(434,79,o), +(434,221,c), +(405,221,l), +(405,127,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127,o), +(165,221,c), +(139,198,l), +(139,70,o), +(196,-10,o), +(283,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(505,0,l), +(505,530,l), +(405,530,l), +(405,0,l) +); +} +); +width = 570; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,530,l), +(405,0,l), +(505,0,l), +(505,530,l) +); +}, +{ +closed = 1; +nodes = ( +(165,530,l), +(65,530,l), +(65,-175,l), +(165,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(139,70,o), +(196,-10,o), +(283,-10,c), +(371,-10,o), +(434,79,o), +(434,221,c), +(405,221,l), +(405,127,o), +(352,78,o), +(285,78,c), +(218,78,o), +(165,127,o), +(165,221,c), +(139,198,l) +); +} +); +width = 570; +} +); +unicode = 181; +}, +{ +color = 6; +glyphname = partialdiff; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(222,346,o), +(161,273,o), +(161,189,c), +(161,131,o), +(198,85,o), +(274,85,c), +(360,85,o), +(443,160,o), +(443,243,cs), +(443,300,o), +(395,346,o), +(319,346,c) +); +}, +{ +closed = 1; +nodes = ( +(473.839,330.936,o), +(493,412,o), +(493,466,c), +(493,553,o), +(452,603,o), +(377,603,c), +(338,603,o), +(293,588,o), +(251,557,c), +(206,641,l), +(263,679,o), +(325,700,o), +(386,700,c), +(524,700,o), +(597,618,o), +(597,463,c), +(597,192,o), +(467,-10,o), +(263,-10,c), +(134,-10,o), +(56,72,o), +(56,178,c), +(56,323,o), +(175,437,o), +(308,437,c), +(407,437,o), +(473,383,o), +(473,294,cs), +(473,282,o), +(470,274,o), +(468,261,c), +(461,286,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(475,-14,o), +(616,179,o), +(616,450,c), +(616,615,o), +(512,704,o), +(374,704,c), +(295,704,o), +(223,679,o), +(164,641,c), +(229,522,l), +(274,549,o), +(321,563,o), +(356,563,c), +(418,563,o), +(461,523,o), +(461,450,c), +(461,412,o), +(448,340,o), +(429,286,c), +(448,263,l), +(450,276,o), +(451,282,o), +(451,294,cs), +(451,366,o), +(378,441,o), +(272,441,c), +(121,441,o), +(20,328,o), +(20,191,c), +(20,77,o), +(108,-14,o), +(256,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(207,115,o), +(174,152,o), +(174,207,c), +(174,262,o), +(216,316,o), +(302,316,c), +(369,316,o), +(411,279,o), +(411,228,c), +(411,163,o), +(350,115,o), +(272,115,c) +); +} +); +width = 636; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(225.332,344,o), +(155,270.772,o), +(155,185,cs), +(155,129,o), +(194,85,o), +(267,85,c), +(351,85,o), +(424,143,o), +(440,218,c), +(442,227,o), +(443,235,o), +(443,243,cs), +(443,300,o), +(398,344,o), +(327,344,c) +); +}, +{ +closed = 1; +nodes = ( +(467,307,o), +(473,331,o), +(481,365,c), +(489,404,o), +(493,438,o), +(493,467,cs), +(493,561,o), +(452,604,o), +(377,604,c), +(335,604,o), +(290,587,o), +(256,556,c), +(206,641,l), +(263,679,o), +(322,700,o), +(383,700,c), +(521,700,o), +(597,618,o), +(597,463,cs), +(597,422,o), +(592,376,o), +(581,325,c), +(532,96,o), +(409,-10,o), +(255,-10,c), +(125,-10,o), +(50,70,o), +(50,174,cs), +(50,321,o), +(177,437,o), +(315,437,c), +(404,437,o), +(472,391,o), +(472,297,cs), +(472,285,o), +(471,274,o), +(469,261,c), +(461,286,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(467,-10,o), +(597,192,o), +(597,463,c), +(597,618,o), +(524,700,o), +(386,700,c), +(325,700,o), +(263,679,o), +(206,641,c), +(251,557,l), +(293,588,o), +(338,603,o), +(377,603,c), +(452,603,o), +(493,553,o), +(493,466,c), +(493,412,o), +(474,331,o), +(461,286,c), +(468,261,l), +(470,274,o), +(473,282,o), +(473,294,cs), +(473,383,o), +(407,437,o), +(308,437,c), +(175,437,o), +(56,323,o), +(56,178,c), +(56,72,o), +(134,-10,o), +(263,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(198,85,o), +(161,131,o), +(161,189,c), +(161,273,o), +(222,346,o), +(319,346,c), +(395,346,o), +(443,300,o), +(443,243,cs), +(443,160,o), +(360,85,o), +(274,85,c) +); +} +); +width = 587; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(225.332,344,o), +(155,270.772,o), +(155,185,cs), +(155,129,o), +(194,85,o), +(267,85,c), +(351,85,o), +(424,143,o), +(440,218,c), +(442,227,o), +(443,235,o), +(443,243,cs), +(443,300,o), +(398,344,o), +(327,344,c) +); +}, +{ +closed = 1; +nodes = ( +(467,307,o), +(473,331,o), +(481,365,c), +(489,404,o), +(493,438,o), +(493,467,cs), +(493,561,o), +(452,604,o), +(377,604,c), +(335,604,o), +(290,587,o), +(256,556,c), +(206,641,l), +(263,679,o), +(322,700,o), +(383,700,c), +(521,700,o), +(597,618,o), +(597,463,cs), +(597,422,o), +(592,376,o), +(581,325,c), +(532,96,o), +(409,-10,o), +(255,-10,c), +(125,-10,o), +(50,70,o), +(50,174,cs), +(50,321,o), +(177,437,o), +(315,437,c), +(404,437,o), +(472,391,o), +(472,297,cs), +(472,285,o), +(471,274,o), +(469,261,c), +(461,286,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(222,346,o), +(161,273,o), +(161,189,c), +(161,131,o), +(198,85,o), +(274,85,c), +(360,85,o), +(443,160,o), +(443,243,cs), +(443,300,o), +(395,346,o), +(319,346,c) +); +}, +{ +closed = 1; +nodes = ( +(473.839,330.936,o), +(493,412,o), +(493,466,c), +(493,553,o), +(452,603,o), +(377,603,c), +(338,603,o), +(293,588,o), +(251,557,c), +(206,641,l), +(263,679,o), +(325,700,o), +(386,700,c), +(524,700,o), +(597,618,o), +(597,463,c), +(597,192,o), +(467,-10,o), +(263,-10,c), +(134,-10,o), +(56,72,o), +(56,178,c), +(56,323,o), +(175,437,o), +(308,437,c), +(407,437,o), +(473,383,o), +(473,294,cs), +(473,282,o), +(470,274,o), +(468,261,c), +(461,286,l) +); +} +); +width = 587; +} +); +unicode = 8706; +}, +{ +color = 6; +glyphname = percent; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +}, +{ +closed = 1; +nodes = ( +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,c), +(380,57,o), +(445,-10,o), +(539,-10,cs), +(634,-10,o), +(699,57,o), +(699,153,c) +); +}, +{ +closed = 1; +nodes = ( +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,c), +(612,98,o), +(581,66,o), +(539,66,cs), +(498,66,o), +(467,98,o), +(467,153,c) +); +}, +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(256,0,l), +(682,690,l), +(538,690,l), +(112,0,l) +); +}, +{ +closed = 1; +nodes = ( +(693,-14,o), +(764,54,o), +(764,153,c), +(764,252,o), +(693,320,o), +(592,320,cs), +(492,320,o), +(421,252,o), +(421,153,c), +(421,54,o), +(492,-14,o), +(592,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(561,91,o), +(537,114,o), +(537,153,c), +(537,192,o), +(561,215,o), +(592,215,cs), +(624,215,o), +(648,192,o), +(648,153,c), +(648,114,o), +(624,91,o), +(592,91,cs) +); +}, +{ +closed = 1; +nodes = ( +(302,370,o), +(373,438,o), +(373,537,c), +(373,636,o), +(302,704,o), +(201,704,cs), +(101,704,o), +(30,636,o), +(30,537,c), +(30,438,o), +(101,370,o), +(201,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,475,o), +(146,498,o), +(146,537,c), +(146,576,o), +(170,599,o), +(201,599,cs), +(233,599,o), +(257,576,o), +(257,537,c), +(257,498,o), +(233,475,o), +(201,475,cs) +); +} +); +width = 794; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +}, +{ +closed = 1; +nodes = ( +(634,-10,o), +(699,57,o), +(699,153,cs), +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,cs), +(380,57,o), +(445,-10,o), +(539,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(498,66,o), +(467,98,o), +(467,153,cs), +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,cs), +(612,98,o), +(581,66,o), +(539,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,374,o), +(359,441,o), +(359,537,cs), +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,cs), +(40,441,o), +(105,374,o), +(199,374,cs) +); +}, +{ +closed = 1; +nodes = ( +(158,450,o), +(127,482,o), +(127,537,cs), +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,cs), +(272,482,o), +(241,450,o), +(199,450,cs) +); +} +); +width = 739; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +}, +{ +closed = 1; +nodes = ( +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,c), +(380,57,o), +(445,-10,o), +(539,-10,cs), +(634,-10,o), +(699,57,o), +(699,153,c) +); +}, +{ +closed = 1; +nodes = ( +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,c), +(612,98,o), +(581,66,o), +(539,66,cs), +(498,66,o), +(467,98,o), +(467,153,c) +); +}, +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +} +); +width = 739; +} +); +unicode = 37; +}, +{ +color = 6; +glyphname = perthousand; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +}, +{ +closed = 1; +nodes = ( +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,c), +(380,57,o), +(445,-10,o), +(539,-10,cs), +(634,-10,o), +(699,57,o), +(699,153,c) +); +}, +{ +closed = 1; +nodes = ( +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,c), +(612,98,o), +(581,66,o), +(539,66,cs), +(498,66,o), +(467,98,o), +(467,153,c) +); +}, +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1049,249,o), +(984,316,o), +(889,316,cs), +(795,316,o), +(730,249,o), +(730,153,c), +(730,57,o), +(795,-10,o), +(889,-10,cs), +(984,-10,o), +(1049,57,o), +(1049,153,c) +); +}, +{ +closed = 1; +nodes = ( +(817,208,o), +(848,240,o), +(889,240,cs), +(931,240,o), +(962,208,o), +(962,153,c), +(962,98,o), +(931,66,o), +(889,66,cs), +(848,66,o), +(817,98,o), +(817,153,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(256,0,l), +(682,690,l), +(538,690,l), +(112,0,l) +); +}, +{ +closed = 1; +nodes = ( +(693,-14,o), +(764,54,o), +(764,153,c), +(764,252,o), +(693,320,o), +(592,320,cs), +(492,320,o), +(421,252,o), +(421,153,c), +(421,54,o), +(492,-14,o), +(592,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(561,91,o), +(537,114,o), +(537,153,c), +(537,192,o), +(561,215,o), +(592,215,cs), +(624,215,o), +(648,192,o), +(648,153,c), +(648,114,o), +(624,91,o), +(592,91,cs) +); +}, +{ +closed = 1; +nodes = ( +(302,370,o), +(373,438,o), +(373,537,c), +(373,636,o), +(302,704,o), +(201,704,cs), +(101,704,o), +(30,636,o), +(30,537,c), +(30,438,o), +(101,370,o), +(201,370,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,475,o), +(146,498,o), +(146,537,c), +(146,576,o), +(170,599,o), +(201,599,cs), +(233,599,o), +(257,576,o), +(257,537,c), +(257,498,o), +(233,475,o), +(201,475,cs) +); +}, +{ +closed = 1; +nodes = ( +(1061,-14,o), +(1132,54,o), +(1132,153,c), +(1132,252,o), +(1061,320,o), +(960,320,cs), +(860,320,o), +(789,252,o), +(789,153,c), +(789,54,o), +(860,-14,o), +(960,-14,cs) +); +}, +{ +closed = 1; +nodes = ( +(929,91,o), +(905,114,o), +(905,153,c), +(905,192,o), +(929,215,o), +(960,215,cs), +(992,215,o), +(1016,192,o), +(1016,153,c), +(1016,114,o), +(992,91,o), +(960,91,cs) +); +} +); +width = 1162; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +}, +{ +closed = 1; +nodes = ( +(634,-10,o), +(699,57,o), +(699,153,cs), +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,cs), +(380,57,o), +(445,-10,o), +(539,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(498,66,o), +(467,98,o), +(467,153,cs), +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,cs), +(612,98,o), +(581,66,o), +(539,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,374,o), +(359,441,o), +(359,537,cs), +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,cs), +(40,441,o), +(105,374,o), +(199,374,cs) +); +}, +{ +closed = 1; +nodes = ( +(158,450,o), +(127,482,o), +(127,537,cs), +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,cs), +(272,482,o), +(241,450,o), +(199,450,cs) +); +}, +{ +closed = 1; +nodes = ( +(984,-10,o), +(1049,57,o), +(1049,153,cs), +(1049,249,o), +(984,316,o), +(889,316,cs), +(795,316,o), +(730,249,o), +(730,153,cs), +(730,57,o), +(795,-10,o), +(889,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(848,66,o), +(817,98,o), +(817,153,cs), +(817,208,o), +(848,240,o), +(889,240,cs), +(931,240,o), +(962,208,o), +(962,153,cs), +(962,98,o), +(931,66,o), +(889,66,cs) +); +} +); +width = 1089; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,633,o), +(294,700,o), +(199,700,cs), +(105,700,o), +(40,633,o), +(40,537,c), +(40,441,o), +(105,374,o), +(199,374,cs), +(294,374,o), +(359,441,o), +(359,537,c) +); +}, +{ +closed = 1; +nodes = ( +(127,592,o), +(158,624,o), +(199,624,cs), +(241,624,o), +(272,592,o), +(272,537,c), +(272,482,o), +(241,450,o), +(199,450,cs), +(158,450,o), +(127,482,o), +(127,537,c) +); +}, +{ +closed = 1; +nodes = ( +(699,249,o), +(634,316,o), +(539,316,cs), +(445,316,o), +(380,249,o), +(380,153,c), +(380,57,o), +(445,-10,o), +(539,-10,cs), +(634,-10,o), +(699,57,o), +(699,153,c) +); +}, +{ +closed = 1; +nodes = ( +(467,208,o), +(498,240,o), +(539,240,cs), +(581,240,o), +(612,208,o), +(612,153,c), +(612,98,o), +(581,66,o), +(539,66,cs), +(498,66,o), +(467,98,o), +(467,153,c) +); +}, +{ +closed = 1; +nodes = ( +(203,0,l), +(639,690,l), +(536,690,l), +(100,0,l) +); +}, +{ +closed = 1; +nodes = ( +(1049,249,o), +(984,316,o), +(889,316,cs), +(795,316,o), +(730,249,o), +(730,153,c), +(730,57,o), +(795,-10,o), +(889,-10,cs), +(984,-10,o), +(1049,57,o), +(1049,153,c) +); +}, +{ +closed = 1; +nodes = ( +(817,208,o), +(848,240,o), +(889,240,cs), +(931,240,o), +(962,208,o), +(962,153,c), +(962,98,o), +(931,66,o), +(889,66,cs), +(848,66,o), +(817,98,o), +(817,153,c) +); +} +); +width = 1089; +} +); +unicode = 8240; +}, +{ +color = 6; +glyphname = lozenge; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(387,-175,l), +(526,258,l), +(387,690,l), +(232,690,l), +(366,249,l), +(241,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(309,-175,l), +(175,266,l), +(300,690,l), +(154,690,l), +(15,257,l), +(154,-175,l) +); +} +); +width = 541; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,-175,l), +(472,257,l), +(322,690,l), +(220,690,l), +(367,250,l), +(228,-175,l) +); +}, +{ +closed = 1; +nodes = ( +(272,-175,l), +(125,265,l), +(264,690,l), +(170,690,l), +(20,257,l), +(170,-175,l) +); +} +); +width = 492; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,690,l), +(220,690,l), +(367,250,l), +(228,-175,l), +(322,-175,l), +(472,257,l) +); +}, +{ +closed = 1; +nodes = ( +(170,-175,l), +(272,-175,l), +(125,265,l), +(264,690,l), +(170,690,l), +(20,257,l) +); +} +); +width = 492; +} +); +unicode = 9674; +}, +{ +color = 6; +glyphname = dieresiscomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,728); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(388,588,o), +(420,617,o), +(420,658,cs), +(420,700,o), +(388,728,o), +(349,728,cs), +(310,728,o), +(279,700,o), +(279,658,cs), +(279,617,o), +(310,588,o), +(349,588,cs) +); +}, +{ +closed = 1; +nodes = ( +(190,588,o), +(221,617,o), +(221,658,cs), +(221,700,o), +(190,728,o), +(151,728,cs), +(112,728,o), +(80,700,o), +(80,658,cs), +(80,617,o), +(112,588,o), +(151,588,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,715); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(373,602,o), +(398,625,o), +(398,658,cs), +(398,692,o), +(373,715,o), +(341,715,cs), +(309,715,o), +(284,692,o), +(284,658,cs), +(284,625,o), +(309,602,o), +(341,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,602,o), +(216,625,o), +(216,658,cs), +(216,692,o), +(191,715,o), +(159,715,cs), +(127,715,o), +(102,692,o), +(102,658,cs), +(102,625,o), +(127,602,o), +(159,602,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,602,o), +(216,625,o), +(216,658,cs), +(216,692,o), +(191,715,o), +(159,715,cs), +(127,715,o), +(102,692,o), +(102,658,cs), +(102,625,o), +(127,602,o), +(159,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(373,602,o), +(398,625,o), +(398,658,cs), +(398,692,o), +(373,715,o), +(341,715,cs), +(309,715,o), +(284,692,o), +(284,658,cs), +(284,625,o), +(309,602,o), +(341,602,cs) +); +} +); +width = 500; +} +); +unicode = 776; +}, +{ +color = 6; +glyphname = dotaccentcomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,738); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(293,588,o), +(326,619,o), +(326,664,cs), +(326,710,o), +(293,738,o), +(250,738,cs), +(206,738,o), +(174,710,o), +(174,664,cs), +(174,619,o), +(206,588,o), +(250,588,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,725); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,602,o), +(312,627,o), +(312,663,cs), +(312,700,o), +(285,725,o), +(250,725,cs), +(215,725,o), +(188,700,o), +(188,663,cs), +(188,627,o), +(215,602,o), +(250,602,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,602,o), +(312,627,o), +(312,663,cs), +(312,700,o), +(285,725,o), +(250,725,cs), +(215,725,o), +(188,700,o), +(188,663,cs), +(188,627,o), +(215,602,o), +(250,602,cs) +); +} +); +width = 500; +} +); +unicode = 775; +}, +{ +color = 6; +glyphname = gravecomb; +lastChange = "2024-03-21 13:48:26 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (200,730); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(318,585,l), +(238,730,l), +(81,730,l), +(206,585,l) +); +} +); +width = 398; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (205,725); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,585,l), +(233,725,l), +(107,725,l), +(217,585,l) +); +} +); +width = 403; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,725,l), +(107,725,l), +(217,585,l), +(303,585,l) +); +} +); +width = 500; +} +); +unicode = 768; +}, +{ +color = 6; +glyphname = acutecomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (131,530); +}, +{ +name = top; +pos = (199,730); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(318,730,l), +(161,730,l), +(81,585,l), +(193,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (160,530); +}, +{ +name = top; +pos = (205,725); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,725,l), +(177,725,l), +(107,585,l), +(193,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,725,l), +(107,725,l), +(217,585,l), +(303,585,l) +); +} +); +width = 500; +} +); +unicode = 769; +}, +{ +color = 6; +glyphname = hungarumlautcomb; +lastChange = "2024-03-21 13:48:44 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (252,530); +}, +{ +name = top; +pos = (316,730); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(375,585,l), +(500,730,l), +(353,730,l), +(269,585,l) +); +}, +{ +closed = 1; +nodes = ( +(238,585,l), +(322,730,l), +(182,730,l), +(131,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (303,725); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,585,l), +(458,725,l), +(347,725,l), +(277,585,l) +); +}, +{ +closed = 1; +nodes = ( +(228,585,l), +(298,725,l), +(197,725,l), +(147,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,585,l), +(298,725,l), +(197,725,l), +(147,585,l) +); +}, +{ +closed = 1; +nodes = ( +(358,585,l), +(458,725,l), +(347,725,l), +(277,585,l) +); +} +); +width = 500; +} +); +unicode = 779; +}, +{ +color = 6; +glyphname = caroncomb.alt; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _topright; +pos = (191,715); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(147,442,l), +(191,715,l), +(87,715,l), +(87,442,l) +); +} +); +width = 300; +}, +{ +anchors = ( +{ +name = _topright; +pos = (87,715); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(187,442,l), +(231,715,l), +(87,715,l), +(87,442,l) +); +} +); +width = 300; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 300; +} +); +}, +{ +color = 6; +glyphname = circumflexcomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,730); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(422,585,l), +(320,730,l), +(184,730,l), +(312,585,l) +); +}, +{ +closed = 1; +nodes = ( +(188,585,l), +(316,730,l), +(180,730,l), +(78,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,725); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(406,585,l), +(306,725,l), +(200,725,l), +(318,585,l) +); +}, +{ +closed = 1; +nodes = ( +(182,585,l), +(300,725,l), +(194,725,l), +(94,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,725,l), +(200,725,l), +(318,585,l), +(406,585,l) +); +}, +{ +closed = 1; +nodes = ( +(182,585,l), +(300,725,l), +(194,725,l), +(94,585,l) +); +} +); +width = 500; +} +); +unicode = 770; +}, +{ +color = 6; +glyphname = caroncomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,730); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(320,585,l), +(422,730,l), +(312,730,l), +(184,585,l) +); +}, +{ +closed = 1; +nodes = ( +(316,585,l), +(188,730,l), +(78,730,l), +(180,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,725); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,585,l), +(406,725,l), +(318,725,l), +(200,585,l) +); +}, +{ +closed = 1; +nodes = ( +(300,585,l), +(182,725,l), +(94,725,l), +(194,585,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(300,585,l), +(182,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(318,725,l), +(200,585,l), +(306,585,l), +(406,725,l) +); +} +); +width = 500; +} +); +unicode = 780; +}, +{ +color = 6; +glyphname = brevecomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,730); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(349,585,o), +(397,639,o), +(399,730,c), +(308,730,l), +(307,693,o), +(287,671,o), +(250,671,c), +(213,671,o), +(193,693,o), +(192,730,c), +(101,730,l), +(103,639,o), +(151,585,o), +(250,585,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,585,o), +(388,639,o), +(390,725,c), +(320,725,l), +(319,684,o), +(295,660,o), +(250,660,c), +(205,660,o), +(181,684,o), +(180,725,c), +(110,725,l), +(112,639,o), +(157,585,o), +(250,585,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,660,o), +(181,684,o), +(180,725,c), +(110,725,l), +(112,639,o), +(157,585,o), +(250,585,c), +(343,585,o), +(388,639,o), +(390,725,c), +(320,725,l), +(319,684,o), +(295,660,o), +(250,660,c) +); +} +); +width = 500; +} +); +unicode = 774; +}, +{ +color = 6; +glyphname = ringcomb; +lastChange = "2024-03-21 13:49:42 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (150,530); +}, +{ +name = top; +pos = (150,731); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,575,o), +(247,611,o), +(247,666,cs), +(247,722,o), +(206,758,o), +(150,758,cs), +(94,758,o), +(53,722,o), +(53,666,cs), +(53,611,o), +(94,575,o), +(150,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(129,630,o), +(116,646,o), +(116,666,cs), +(116,687,o), +(129,703,o), +(150,703,cs), +(171,703,o), +(184,687,o), +(184,666,cs), +(184,646,o), +(171,630,o), +(150,630,cs) +); +} +); +width = 300; +}, +{ +anchors = ( +{ +name = _top; +pos = (150,530); +}, +{ +name = top; +pos = (150,743); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(213,575,o), +(253,614,o), +(253,670,cs), +(253,728,o), +(213,767,o), +(150,767,cs), +(87,767,o), +(47,728,o), +(47,670,cs), +(47,614,o), +(87,575,o), +(150,575,cs) +); +}, +{ +closed = 1; +nodes = ( +(132,640,o), +(120,653,o), +(120,670,cs), +(120,689,o), +(132,702,o), +(150,702,cs), +(168,702,o), +(180,689,o), +(180,670,cs), +(180,653,o), +(168,640,o), +(150,640,cs) +); +} +); +width = 300; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +width = 300; +} +); +unicode = 778; +}, +{ +color = 6; +glyphname = tildecomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,730); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(175,585,l), +(178,612,o), +(190,624,o), +(205,624,c), +(235,624,o), +(254,585,o), +(312,585,c), +(366,585,o), +(406,641,o), +(409,730,c), +(325,730,l), +(322,702,o), +(310,690,o), +(295,690,c), +(267,690,o), +(246,730,o), +(188,730,c), +(133,730,o), +(93,674,o), +(91,585,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,725); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(168,585,l), +(169,624,o), +(178,642,o), +(197,642,c), +(229,642,o), +(249,585,o), +(308,585,c), +(361,585,o), +(394,639,o), +(400,725,c), +(332,725,l), +(331,686,o), +(322,668,o), +(303,668,c), +(272,668,o), +(251,725,o), +(192,725,c), +(139,725,o), +(106,671,o), +(100,585,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,585,o), +(394,639,o), +(400,725,c), +(332,725,l), +(331,686,o), +(322,668,o), +(303,668,c), +(272,668,o), +(251,725,o), +(192,725,c), +(139,725,o), +(106,671,o), +(100,585,c), +(168,585,l), +(169,624,o), +(178,642,o), +(197,642,c), +(229,642,o), +(249,585,o), +(308,585,c) +); +} +); +width = 500; +} +); +unicode = 771; +}, +{ +color = 6; +glyphname = macroncomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,718); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(397,603,l), +(397,718,l), +(103,718,l), +(103,603,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +}, +{ +name = top; +pos = (250,705); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,621,l), +(388,705,l), +(112,705,l), +(112,621,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,621,l), +(388,705,l), +(112,705,l), +(112,621,l) +); +} +); +width = 500; +} +); +unicode = 772; +}, +{ +color = 6; +glyphname = commaaccent; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (254,0); +}, +{ +name = bottom; +pos = (254,-270); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(326,-73,o), +(292,-43,o), +(249,-43,cs), +(206,-43,o), +(174,-73,o), +(174,-119,cs), +(174,-164,o), +(206,-193,o), +(249,-193,c), +(231,-175,l), +(193,-270,l), +(266,-270,l), +(298,-215,ls), +(318,-181,o), +(326,-156,o), +(326,-124,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(278,-270,l), +(320,-54,l), +(188,-54,l), +(188,-270,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (255,0); +}, +{ +name = bottom; +pos = (255,-275); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(215,-72,o), +(188,-97,o), +(188,-133,cs), +(188,-170,o), +(215,-195,o), +(250,-195,cs), +(285,-195,o), +(312,-170,o), +(312,-133,cs), +(312,-97,o), +(285,-72,o), +(250,-72,cs) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(266,-275,l), +(307,-72,l), +(203,-72,l), +(203,-275,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(215,-72,o), +(188,-97,o), +(188,-133,cs), +(188,-170,o), +(215,-195,o), +(250,-195,cs), +(285,-195,o), +(312,-170,o), +(312,-133,cs), +(312,-97,o), +(285,-72,o), +(250,-72,cs) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,-275,l), +(266,-275,l), +(307,-72,l), +(203,-72,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = commaaccentcomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (141,0); +}, +{ +name = bottom; +pos = (145,-275); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(156,-275,l), +(197,-72,l), +(93,-72,l), +(93,-275,l) +); +} +); +width = 300; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (144,0); +}, +{ +name = bottom; +pos = (144,-270); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(168,-270,l), +(210,-54,l), +(78,-54,l), +(78,-270,l) +); +} +); +width = 300; +} +); +unicode = 806; +}, +{ +color = 6; +glyphname = cedillacomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (253,0); +}, +{ +name = bottom; +pos = (253,-190); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(318,-190,o), +(352,-154,o), +(352,-106,cs), +(352,-57,o), +(316,-29,o), +(258,-29,c), +(270,-43,l), +(276,9,l), +(208,11,l), +(194,-80,l), +(205,-76,o), +(215,-74,o), +(227,-74,c), +(250,-74,o), +(260,-82,o), +(260,-92,c), +(260,-103,o), +(250,-109,o), +(230,-109,c), +(210,-109,o), +(187,-105,o), +(166,-94,c), +(154,-174,l), +(181,-185,o), +(212,-190,o), +(240,-190,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (252,0); +}, +{ +name = bottom; +pos = (252,-185); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(283,-43,l), +(290,9,l), +(233,11,l), +(220,-73,l), +(231,-71,o), +(238,-70,o), +(250,-70,c), +(273,-70,o), +(287,-79,o), +(287,-96,c), +(287,-110,o), +(274,-119,o), +(256,-119,c), +(241,-119,o), +(225,-114,o), +(211,-99,c), +(170,-150,l), +(191,-170,o), +(223,-185,o), +(262,-185,c), +(320,-185,o), +(356,-151,o), +(356,-106,cs), +(356,-57,o), +(319,-29,o), +(271,-29,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(301,-185,o), +(337,-151,o), +(337,-106,cs), +(337,-57,o), +(300,-29,o), +(252,-29,c), +(264,-43,l), +(270,9,l), +(214,11,l), +(201,-73,l), +(212,-71,o), +(219,-70,o), +(230,-70,c), +(254,-70,o), +(268,-79,o), +(268,-96,c), +(268,-110,o), +(255,-119,o), +(234,-119,c), +(214,-119,o), +(198,-114,o), +(180,-105,c), +(167,-169,l), +(192,-180,o), +(217,-185,o), +(243,-185,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(283,-43,l), +(290,9,l), +(233,11,l), +(220,-73,l), +(231,-71,o), +(238,-70,o), +(250,-70,c), +(273,-70,o), +(287,-79,o), +(287,-96,c), +(287,-110,o), +(274,-119,o), +(256,-119,c), +(241,-119,o), +(225,-114,o), +(211,-99,c), +(170,-150,l), +(191,-170,o), +(223,-185,o), +(262,-185,c), +(320,-185,o), +(356,-151,o), +(356,-106,cs), +(356,-57,o), +(319,-29,o), +(271,-29,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-43,l), +(270,9,l), +(214,11,l), +(201,-73,l), +(212,-71,o), +(219,-70,o), +(230,-70,c), +(254,-70,o), +(268,-79,o), +(268,-96,c), +(268,-110,o), +(255,-119,o), +(234,-119,c), +(214,-119,o), +(198,-114,o), +(180,-105,c), +(167,-169,l), +(192,-180,o), +(217,-185,o), +(243,-185,c), +(301,-185,o), +(337,-151,o), +(337,-106,cs), +(337,-57,o), +(300,-29,o), +(252,-29,c) +); +} +); +width = 500; +} +); +unicode = 807; +}, +{ +color = 6; +glyphname = ogonekcomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +pos = (339,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,-56,l), +(299,-95,l), +(298,-141,l), +(343,-176,l), +(389,-186,l), +(461,-178,l), +(498,-155,l), +(498,-82,l), +(451,-100,l), +(394,-99,l), +(371,-92,l), +(393,-63,l), +(439,-30,l), +(493,-2,l), +(401,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(273,-190,o), +(309,-183,o), +(339,-170,c), +(330,-75,l), +(310,-87,o), +(284,-96,o), +(265,-96,c), +(250,-96,o), +(242,-89,o), +(242,-79,c), +(242,-60,o), +(270,-31,o), +(339,0,c), +(234,0,l), +(159,-37,o), +(131,-69,o), +(131,-111,c), +(131,-156,o), +(170,-190,o), +(242,-190,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (304,0); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,-56,l), +(299,-95,l), +(298,-141,l), +(343,-176,l), +(389,-186,l), +(461,-178,l), +(498,-155,l), +(498,-82,l), +(451,-100,l), +(394,-99,l), +(371,-92,l), +(393,-63,l), +(439,-30,l), +(493,-2,l), +(401,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(241,-185,o), +(276,-176,o), +(304,-165,c), +(295,-84,l), +(272,-94,o), +(238,-106,o), +(218,-106,c), +(205,-106,o), +(197,-101,o), +(197,-89,c), +(197,-65,o), +(234,-34,o), +(304,0,c), +(204,0,l), +(136,-37,o), +(113,-69,o), +(113,-111,c), +(113,-153,o), +(147,-185,o), +(212,-185,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,-56,l), +(299,-95,l), +(298,-141,l), +(343,-176,l), +(389,-186,l), +(461,-178,l), +(498,-155,l), +(498,-82,l), +(451,-100,l), +(394,-99,l), +(371,-92,l), +(393,-63,l), +(439,-30,l), +(493,-2,l), +(401,0,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,-37,o), +(113,-69,o), +(113,-111,c), +(113,-153,o), +(147,-185,o), +(212,-185,cs), +(241,-185,o), +(276,-176,o), +(304,-165,c), +(295,-84,l), +(272,-94,o), +(238,-106,o), +(218,-106,c), +(205,-106,o), +(197,-101,o), +(197,-89,c), +(197,-65,o), +(234,-34,o), +(304,0,c), +(204,0,l) +); +} +); +width = 500; +} +); +unicode = 808; +}, +{ +color = 6; +glyphname = commaaccent.alt; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (249,530); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(174,603,o), +(207,573,o), +(250,573,cs), +(293,573,o), +(326,603,o), +(326,649,cs), +(326,694,o), +(293,723,o), +(250,723,c), +(268,705,l), +(306,800,l), +(233,800,l), +(201,745,ls), +(181,711,o), +(174,686,o), +(174,654,c) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(311,584,l), +(311,800,l), +(221,800,l), +(179,584,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,602,l), +(297,805,l), +(234,805,l), +(193,602,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,805,l), +(234,805,l), +(193,602,l), +(297,602,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = dieresiscomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(398,742,o), +(430,769,o), +(430,807,cs), +(430,846,o), +(398,873,o), +(359,873,cs), +(320,873,o), +(289,846,o), +(289,807,cs), +(289,769,o), +(320,742,o), +(359,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(180,742,o), +(211,769,o), +(211,807,cs), +(211,846,o), +(180,873,o), +(141,873,cs), +(102,873,o), +(70,846,o), +(70,807,cs), +(70,769,o), +(102,742,o), +(141,742,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(383,742,o), +(408,765,o), +(408,798,cs), +(408,832,o), +(383,855,o), +(351,855,cs), +(319,855,o), +(294,832,o), +(294,798,cs), +(294,765,o), +(319,742,o), +(351,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(181,742,o), +(206,765,o), +(206,798,cs), +(206,832,o), +(181,855,o), +(149,855,cs), +(117,855,o), +(92,832,o), +(92,798,cs), +(92,765,o), +(117,742,o), +(149,742,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,742,o), +(206,765,o), +(206,798,cs), +(206,832,o), +(181,855,o), +(149,855,cs), +(117,855,o), +(92,832,o), +(92,798,cs), +(92,765,o), +(117,742,o), +(149,742,cs) +); +}, +{ +closed = 1; +nodes = ( +(383,742,o), +(408,765,o), +(408,798,cs), +(408,832,o), +(383,855,o), +(351,855,cs), +(319,855,o), +(294,832,o), +(294,798,cs), +(294,765,o), +(319,742,o), +(351,742,cs) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = dotaccentcomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(293,741,o), +(326,770,o), +(326,812,cs), +(326,855,o), +(293,882,o), +(250,882,cs), +(206,882,o), +(174,855,o), +(174,812,cs), +(174,770,o), +(206,741,o), +(250,741,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,735,o), +(312,760,o), +(312,796,cs), +(312,833,o), +(285,858,o), +(250,858,cs), +(215,858,o), +(188,833,o), +(188,796,cs), +(188,760,o), +(215,735,o), +(250,735,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,735,o), +(312,760,o), +(312,796,cs), +(312,833,o), +(285,858,o), +(250,858,cs), +(215,858,o), +(188,833,o), +(188,796,cs), +(188,760,o), +(215,735,o), +(250,735,cs) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = gravecomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(321,735,l), +(218,850,l), +(49,850,l), +(200,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(311,735,l), +(211,845,l), +(80,845,l), +(217,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,845,l), +(80,845,l), +(217,735,l), +(311,735,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = acutecomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(300,735,l), +(451,850,l), +(282,850,l), +(179,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(283,735,l), +(420,845,l), +(289,845,l), +(189,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(283,735,l), +(420,845,l), +(289,845,l), +(189,735,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = hungarumlautcomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(386,735,l), +(537,850,l), +(384,850,l), +(275,735,l) +); +}, +{ +closed = 1; +nodes = ( +(235,735,l), +(343,850,l), +(200,850,l), +(129,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,735,l), +(508,845,l), +(383,845,l), +(283,735,l) +); +}, +{ +closed = 1; +nodes = ( +(225,735,l), +(322,845,l), +(208,845,l), +(137,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,735,l), +(508,845,l), +(383,845,l), +(283,735,l) +); +}, +{ +closed = 1; +nodes = ( +(225,735,l), +(322,845,l), +(208,845,l), +(137,735,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = circumflexcomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(444,735,l), +(334,850,l), +(175,850,l), +(322,735,l) +); +}, +{ +closed = 1; +nodes = ( +(178,735,l), +(325,850,l), +(166,850,l), +(56,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(433,735,l), +(319,845,l), +(185,845,l), +(334,735,l) +); +}, +{ +closed = 1; +nodes = ( +(166,735,l), +(315,845,l), +(181,845,l), +(67,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(166,735,l), +(315,845,l), +(181,845,l), +(67,735,l) +); +}, +{ +closed = 1; +nodes = ( +(319,845,l), +(185,845,l), +(334,735,l), +(433,735,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = caroncomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(334,735,l), +(444,850,l), +(322,850,l), +(175,735,l) +); +}, +{ +closed = 1; +nodes = ( +(325,735,l), +(178,850,l), +(56,850,l), +(166,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,735,l), +(433,845,l), +(334,845,l), +(185,735,l) +); +}, +{ +closed = 1; +nodes = ( +(315,735,l), +(166,845,l), +(67,845,l), +(181,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,845,l), +(185,735,l), +(319,735,l), +(433,845,l) +); +}, +{ +closed = 1; +nodes = ( +(181,735,l), +(315,735,l), +(166,845,l), +(67,845,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = brevecomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(354,730,o), +(406,779,o), +(409,850,c), +(312,850,l), +(307,827,o), +(291,814,o), +(250,814,c), +(209,814,o), +(193,827,o), +(188,850,c), +(91,850,l), +(94,779,o), +(146,730,o), +(250,730,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(333,845,l), +(184,735,l), +(319,735,l), +(433,845,l) +); +}, +{ +closed = 1; +nodes = ( +(181,735,l), +(316,735,l), +(167,845,l), +(67,845,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(347,735,o), +(395,777,o), +(400,845,c), +(330,845,l), +(326,820,o), +(305,805,o), +(250,805,c), +(195,805,o), +(174,820,o), +(170,845,c), +(100,845,l), +(105,777,o), +(153,735,o), +(250,735,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(333,845,l), +(184,735,l), +(319,735,l), +(433,845,l) +); +}, +{ +closed = 1; +nodes = ( +(181,735,l), +(316,735,l), +(167,845,l), +(67,845,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,805,o), +(174,820,o), +(170,845,c), +(100,845,l), +(105,777,o), +(153,735,o), +(250,735,c), +(347,735,o), +(395,777,o), +(400,845,c), +(330,845,l), +(326,820,o), +(305,805,o), +(250,805,c) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = ringcomb.case; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +}, +{ +name = top; +pos = (250,917); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(313,735,o), +(353,772,o), +(353,826,cs), +(353,880,o), +(313,917,o), +(250,917,cs), +(187,917,o), +(147,880,o), +(147,826,cs), +(147,772,o), +(187,735,o), +(250,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,800,o), +(220,811,o), +(220,826,cs), +(220,841,o), +(232,852,o), +(250,852,cs), +(268,852,o), +(280,841,o), +(280,826,cs), +(280,811,o), +(268,800,o), +(250,800,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +}, +{ +name = top; +pos = (250,880); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,735,o), +(347,769,o), +(347,821,cs), +(347,874,o), +(306,908,o), +(250,908,cs), +(194,908,o), +(153,874,o), +(153,821,cs), +(153,769,o), +(194,735,o), +(250,735,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,790,o), +(216,804,o), +(216,821,cs), +(216,839,o), +(229,853,o), +(250,853,cs), +(271,853,o), +(284,839,o), +(284,821,cs), +(284,804,o), +(271,790,o), +(250,790,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,790,o), +(216,803.778,o), +(216,821,cs), +(216,839.162,o), +(229,853,o), +(250,853,cs), +(271,853,o), +(284,839.162,o), +(284,821,cs), +(284,803.778,o), +(271,790,o), +(250,790,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,735,o), +(347,769.022,o), +(347,821,cs), +(347,873.957,o), +(306,908,o), +(250,908,cs), +(194,908,o), +(153,873.957,o), +(153,821,cs), +(153,769.022,o), +(194,735,o), +(250,735,cs) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = tildecomb.case; +lastChange = "2024-03-22 12:26:09 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(165,735,l), +(168,761,o), +(180,772,o), +(196,772,c), +(226,772,o), +(248,735,o), +(313,735,c), +(372,735,o), +(415,781,o), +(419,854,c), +(335,854,l), +(332,828,o), +(320,817,o), +(304,817,c), +(276,817,o), +(252,854,o), +(187,854,c), +(127,854,o), +(84,808,o), +(81,735,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(158,735,l), +(159,757,o), +(171,773,o), +(192,773,c), +(223,773,o), +(253,735,o), +(310,735,c), +(367,735,o), +(403,777,o), +(410,845,c), +(342,845,l), +(341,823,o), +(329,807,o), +(308,807,c), +(278,807,o), +(247,845,o), +(190,845,c), +(133,845,o), +(97,803,o), +(90,735,c) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(367,735,o), +(403.348,777.429,o), +(410,845,c), +(342,845,l), +(340.655,823.105,o), +(329,807,o), +(308,807,c), +(278,807,o), +(247,845,o), +(190,845,c), +(133,845,o), +(96.652,802.571,o), +(90,735,c), +(158,735,l), +(159.345,756.895,o), +(171,773,o), +(192,773,c), +(223,773,o), +(253,735,o), +(310,735,c) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = macroncomb.case; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(415,735,l), +(415,850,l), +(85,850,l), +(85,735,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(408,753,l), +(408,837,l), +(92,837,l), +(92,753,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,690); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(408,753,l), +(408,837,l), +(92,837,l), +(92,753,l) +); +} +); +width = 500; +} +); +}, +{ +color = 10; +glyphname = dieresis; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = dieresiscomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = dieresiscomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,602,o), +(216,625,o), +(216,658,cs), +(216,692,o), +(191,715,o), +(159,715,cs), +(127,715,o), +(102,692,o), +(102,658,cs), +(102,625,o), +(127,602,o), +(159,602,cs) +); +}, +{ +closed = 1; +nodes = ( +(373,602,o), +(398,625,o), +(398,658,cs), +(398,692,o), +(373,715,o), +(341,715,cs), +(309,715,o), +(284,692,o), +(284,658,cs), +(284,625,o), +(309,602,o), +(341,602,cs) +); +} +); +width = 500; +} +); +unicode = 168; +}, +{ +color = 10; +glyphname = dotaccent; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = dotaccentcomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = dotaccentcomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,602,o), +(312,627,o), +(312,663,cs), +(312,700,o), +(285,725,o), +(250,725,cs), +(215,725,o), +(188,700,o), +(188,663,cs), +(188,627,o), +(215,602,o), +(250,602,cs) +); +} +); +width = 500; +} +); +unicode = 729; +}, +{ +color = 10; +glyphname = grave; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = gravecomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = gravecomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,725,l), +(107,725,l), +(217,585,l), +(303,585,l) +); +} +); +width = 500; +} +); +unicode = 96; +}, +{ +color = 10; +glyphname = acute; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = acutecomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = acutecomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(283,585,l), +(393,725,l), +(267,725,l), +(197,585,l) +); +} +); +width = 500; +} +); +unicode = 180; +}, +{ +color = 10; +glyphname = hungarumlaut; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = hungarumlautcomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = hungarumlautcomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,585,l), +(298,725,l), +(197,725,l), +(147,585,l) +); +}, +{ +closed = 1; +nodes = ( +(358,585,l), +(458,725,l), +(347,725,l), +(277,585,l) +); +} +); +width = 500; +} +); +unicode = 733; +}, +{ +color = 10; +glyphname = circumflex; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = circumflexcomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = circumflexcomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(306,725,l), +(200,725,l), +(318,585,l), +(406,585,l) +); +}, +{ +closed = 1; +nodes = ( +(182,585,l), +(300,725,l), +(194,725,l), +(94,585,l) +); +} +); +width = 500; +} +); +unicode = 710; +}, +{ +color = 6; +glyphname = macronmod; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(397,603,l), +(397,718,l), +(103,718,l), +(103,603,l) +); +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,621,l), +(388,705,l), +(112,705,l), +(112,621,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,621,l), +(388,705,l), +(112,705,l), +(112,621,l) +); +} +); +width = 500; +} +); +unicode = 713; +}, +{ +color = 10; +glyphname = caron; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = caroncomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = caroncomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(300,585,l), +(182,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(318,725,l), +(200,585,l), +(306,585,l), +(406,725,l) +); +} +); +width = 500; +} +); +unicode = 711; +}, +{ +color = 10; +glyphname = breve; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = brevecomb; +} +); +width = 500; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = brevecomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,660,o), +(181,684,o), +(180,725,c), +(110,725,l), +(112,639,o), +(157,585,o), +(250,585,c), +(343,585,o), +(388,639,o), +(390,725,c), +(320,725,l), +(319,684,o), +(295,660,o), +(250,660,c) +); +} +); +width = 500; +} +); +unicode = 728; +}, +{ +color = 10; +glyphname = ring; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = ringcomb; +} +); +width = 300; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = ringcomb; +} +); +width = 300; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,630,o), +(216,646,o), +(216,666,cs), +(216,687,o), +(229,703,o), +(250,703,cs), +(271,703,o), +(284,687,o), +(284,666,cs), +(284,646,o), +(271,630,o), +(250,630,cs) +); +}, +{ +closed = 1; +nodes = ( +(305.88,575,o), +(347,610.977,o), +(347,666,cs), +(347,722.046,o), +(305.88,758,o), +(250,758,cs), +(194.12,758,o), +(153,722.046,o), +(153,666,cs), +(153,610.977,o), +(194.12,575,o), +(250,575,cs) +); +} +); +width = 500; +} +); +unicode = 730; +}, +{ +color = 10; +glyphname = tilde; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = tildecomb; +} +); +width = 500; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = tildecomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(194,585,l), +(302,585,l), +(184,725,l), +(94,725,l) +); +}, +{ +closed = 1; +nodes = ( +(316,725,l), +(198,585,l), +(306,585,l), +(406,725,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,585,o), +(394,639,o), +(400,725,c), +(332,725,l), +(331,686,o), +(322,668,o), +(303,668,c), +(272,668,o), +(251,725,o), +(192,725,c), +(139,725,o), +(106,671,o), +(100,585,c), +(168,585,l), +(169,624,o), +(178,642,o), +(197,642,c), +(229,642,o), +(249,585,o), +(308,585,c) +); +} +); +width = 500; +} +); +unicode = 732; +}, +{ +color = 10; +glyphname = macron; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = macroncomb; +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = macroncomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,621,l), +(388,705,l), +(112,705,l), +(112,621,l) +); +} +); +width = 500; +} +); +unicode = 175; +}, +{ +color = 10; +glyphname = cedilla; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +ref = cedillacomb; +} +); +width = 500; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(283,-43,l), +(290,9,l), +(233,11,l), +(220,-73,l), +(231,-71,o), +(238,-70,o), +(250,-70,c), +(273,-70,o), +(287,-79,o), +(287,-96,c), +(287,-110,o), +(274,-119,o), +(256,-119,c), +(241,-119,o), +(225,-114,o), +(211,-99,c), +(170,-150,l), +(191,-170,o), +(223,-185,o), +(262,-185,c), +(320,-185,o), +(356,-151,o), +(356,-106,cs), +(356,-57,o), +(319,-29,o), +(271,-29,c) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = cedillacomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(283,-43,l), +(290,9,l), +(233,11,l), +(220,-73,l), +(231,-71,o), +(238,-70,o), +(250,-70,c), +(273,-70,o), +(287,-79,o), +(287,-96,c), +(287,-110,o), +(274,-119,o), +(256,-119,c), +(241,-119,o), +(225,-114,o), +(211,-99,c), +(170,-150,l), +(191,-170,o), +(223,-185,o), +(262,-185,c), +(320,-185,o), +(356,-151,o), +(356,-106,cs), +(356,-57,o), +(319,-29,o), +(271,-29,c) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,-43,l), +(270,9,l), +(214,11,l), +(201,-73,l), +(212,-71,o), +(219,-70,o), +(230,-70,c), +(254,-70,o), +(268,-79,o), +(268,-96,c), +(268,-110,o), +(255,-119,o), +(234,-119,c), +(214,-119,o), +(198,-114,o), +(180,-105,c), +(167,-169,l), +(192,-180,o), +(217,-185,o), +(243,-185,c), +(301,-185,o), +(337,-151,o), +(337,-106,cs), +(337,-57,o), +(300,-29,o), +(252,-29,c) +); +} +); +width = 500; +} +); +unicode = 184; +}, +{ +color = 10; +glyphname = ogonek; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,-56,l), +(299,-95,l), +(298,-141,l), +(343,-176,l), +(389,-186,l), +(461,-178,l), +(498,-155,l), +(498,-82,l), +(451,-100,l), +(394,-99,l), +(371,-92,l), +(393,-63,l), +(439,-30,l), +(493,-2,l), +(401,0,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +ref = ogonekcomb; +} +); +width = 500; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,-56,l), +(299,-95,l), +(298,-141,l), +(343,-176,l), +(389,-186,l), +(461,-178,l), +(498,-155,l), +(498,-82,l), +(451,-100,l), +(394,-99,l), +(371,-92,l), +(393,-63,l), +(439,-30,l), +(493,-2,l), +(401,0,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +ref = ogonekcomb; +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(314,-56,l), +(299,-95,l), +(298,-141,l), +(343,-176,l), +(389,-186,l), +(461,-178,l), +(498,-155,l), +(498,-82,l), +(451,-100,l), +(394,-99,l), +(371,-92,l), +(393,-63,l), +(439,-30,l), +(493,-2,l), +(401,0,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,-37,o), +(113,-69,o), +(113,-111,c), +(113,-153,o), +(147,-185,o), +(212,-185,cs), +(241,-185,o), +(276,-176,o), +(304,-165,c), +(295,-84,l), +(272,-94,o), +(238,-106,o), +(218,-106,c), +(205,-106,o), +(197,-101,o), +(197,-89,c), +(197,-65,o), +(234,-34,o), +(304,0,c), +(204,0,l) +); +} +); +width = 500; +} +); +unicode = 731; +}, +{ +color = 6; +glyphname = caron.alt; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(277,408,l), +(339,715,l), +(189,715,l), +(189,408,l) +); +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(263,442,l), +(307,715,l), +(203,715,l), +(203,442,l) +); +} +); +width = 500; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,442,l), +(263,442,l), +(307,715,l), +(203,715,l) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = IJacute; +kernLeft = H; +kernRight = U; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(716,-14,o), +(814,91,o), +(814,253,c), +(814,690,l), +(659,690,l), +(659,261,l), +(659,180,o), +(620,132,o), +(549,132,c), +(489,132,o), +(448,169,o), +(441,240,c), +(291,202,l), +(314,66,o), +(409,-14,o), +(548,-14,c) +); +}, +{ +closed = 1; +nodes = ( +(217,0,l), +(217,690,l), +(62,690,l), +(62,0,l) +); +}, +{ +closed = 1; +nodes = ( +(189,735,l), +(340,850,l), +(171,850,l), +(68,735,l) +); +}, +{ +closed = 1; +nodes = ( +(786,735,l), +(937,850,l), +(768,850,l), +(665,735,l) +); +} +); +width = 869; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(652,-10,o), +(745,86,o), +(745,237,c), +(745,690,l), +(640,690,l), +(640,244,l), +(640,138,o), +(589,87,o), +(511,87,c), +(436,87,o), +(392,136,o), +(379,230,c), +(276,209,l), +(296,67,o), +(383,-10,o), +(511,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(161,735,l), +(298,845,l), +(167,845,l), +(67,735,l) +); +}, +{ +closed = 1; +nodes = ( +(726,735,l), +(863,845,l), +(732,845,l), +(632,735,l) +); +} +); +width = 815; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,0,l), +(180,690,l), +(75,690,l), +(75,0,l) +); +}, +{ +closed = 1; +nodes = ( +(296,67,o), +(383,-10,o), +(511,-10,c), +(652,-10,o), +(745,86,o), +(745,237,c), +(745,690,l), +(640,690,l), +(640,244,l), +(640,138,o), +(589,87,o), +(511,87,c), +(436,87,o), +(392,136,o), +(379,230,c), +(276,209,l) +); +}, +{ +closed = 1; +nodes = ( +(726,735,l), +(863,845,l), +(732,845,l), +(632,735,l) +); +}, +{ +closed = 1; +nodes = ( +(161,735,l), +(298,845,l), +(167,845,l), +(67,735,l) +); +} +); +width = 815; +} +); +}, +{ +color = 6; +glyphname = dotbelow; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(293,-198,o), +(326,-167,o), +(326,-122,cs), +(326,-76,o), +(293,-48,o), +(250,-48,cs), +(206,-48,o), +(174,-76,o), +(174,-122,cs), +(174,-167,o), +(206,-198,o), +(250,-198,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,-195,o), +(312,-170,o), +(312,-133,cs), +(312,-97,o), +(285,-72,o), +(250,-72,cs), +(215,-72,o), +(188,-97,o), +(188,-133,cs), +(188,-170,o), +(215,-195,o), +(250,-195,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (250,0); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(285,-195,o), +(312,-170,o), +(312,-133,cs), +(312,-97,o), +(285,-72,o), +(250,-72,cs), +(215,-72,o), +(188,-97,o), +(188,-133,cs), +(188,-170,o), +(215,-195,o), +(250,-195,cs) +); +} +); +width = 500; +} +); +}, +{ +color = 6; +glyphname = gem; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,256,o), +(76,198,o), +(127,167,c), +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,221,o), +(236,141,o), +(334,141,c), +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,20,o), +(240,-56,o), +(334,-56,c), +(334,114,l), +(164,114,l) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(361,16,o), +(441,-64,o), +(540,-64,cs), +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l) +); +}, +{ +closed = 1; +nodes = ( +(361,221,o), +(441,141,o), +(540,141,cs), +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(418,-144,o), +(476,-180,o), +(540,-180,cs), +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +} +); +}; +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs), +(361,221,o), +(441,141,o), +(540,141,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,114,l), +(164,114,l), +(164,20,o), +(240,-56,o), +(334,-56,c) +); +}, +{ +closed = 1; +nodes = ( +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs), +(40,256,o), +(76,198,o), +(127,167,c) +); +}, +{ +closed = 1; +nodes = ( +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l), +(418,-144,o), +(476,-180,o), +(540,-180,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs), +(156,221,o), +(236,141,o), +(334,141,c) +); +}, +{ +closed = 1; +nodes = ( +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l), +(361,16,o), +(441,-64,o), +(540,-64,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +} +); +width = 1080; +}, +{ +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,256,o), +(76,198,o), +(127,167,c), +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,221,o), +(236,141,o), +(334,141,c), +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,20,o), +(240,-56,o), +(334,-56,c), +(334,114,l), +(164,114,l) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(361,16,o), +(441,-64,o), +(540,-64,cs), +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l) +); +}, +{ +closed = 1; +nodes = ( +(361,221,o), +(441,141,o), +(540,141,cs), +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(418,-144,o), +(476,-180,o), +(540,-180,cs), +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +} +); +}; +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs), +(361,221,o), +(441,141,o), +(540,141,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,114,l), +(164,114,l), +(164,20,o), +(240,-56,o), +(334,-56,c) +); +}, +{ +closed = 1; +nodes = ( +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs), +(40,256,o), +(76,198,o), +(127,167,c) +); +}, +{ +closed = 1; +nodes = ( +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l), +(418,-144,o), +(476,-180,o), +(540,-180,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs), +(156,221,o), +(236,141,o), +(334,141,c) +); +}, +{ +closed = 1; +nodes = ( +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l), +(361,16,o), +(441,-64,o), +(540,-64,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +} +); +width = 1080; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(40,256,o), +(76,198,o), +(127,167,c), +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,221,o), +(236,141,o), +(334,141,c), +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,20,o), +(240,-56,o), +(334,-56,c), +(334,114,l), +(164,114,l) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(361,16,o), +(441,-64,o), +(540,-64,cs), +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l) +); +}, +{ +closed = 1; +nodes = ( +(361,221,o), +(441,141,o), +(540,141,cs), +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(418,-144,o), +(476,-180,o), +(540,-180,cs), +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +} +); +}; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(40,256,o), +(76,198,o), +(127,167,c), +(127,473,l), +(76,442,o), +(40,384,o), +(40,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,221,o), +(236,141,o), +(334,141,c), +(334,499,l), +(236,499,o), +(156,419,o), +(156,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,20,o), +(240,-56,o), +(334,-56,c), +(334,114,l), +(164,114,l) +); +}, +{ +closed = 1; +nodes = ( +(334,526,l), +(334,696,l), +(240,696,o), +(164,620,o), +(164,526,c) +); +}, +{ +closed = 1; +nodes = ( +(361,16,o), +(441,-64,o), +(540,-64,cs), +(639,-64,o), +(719,16,o), +(719,114,c), +(361,114,l) +); +}, +{ +closed = 1; +nodes = ( +(361,221,o), +(441,141,o), +(540,141,cs), +(639,141,o), +(719,221,o), +(719,320,cs), +(719,419,o), +(639,499,o), +(540,499,cs), +(441,499,o), +(361,419,o), +(361,320,cs) +); +}, +{ +closed = 1; +nodes = ( +(719,526,l), +(719,624,o), +(639,704,o), +(540,704,cs), +(441,704,o), +(361,624,o), +(361,526,c) +); +}, +{ +closed = 1; +nodes = ( +(418,-144,o), +(476,-180,o), +(540,-180,cs), +(604,-180,o), +(662,-144,o), +(693,-93,c), +(387,-93,l) +); +}, +{ +closed = 1; +nodes = ( +(693,733,l), +(662,784,o), +(604,820,o), +(540,820,cs), +(476,820,o), +(418,784,o), +(387,733,c) +); +}, +{ +closed = 1; +nodes = ( +(840,-56,o), +(916,20,o), +(916,114,c), +(746,114,l), +(746,-56,l) +); +}, +{ +closed = 1; +nodes = ( +(844,141,o), +(924,221,o), +(924,320,cs), +(924,419,o), +(844,499,o), +(746,499,c), +(746,141,l) +); +}, +{ +closed = 1; +nodes = ( +(916,526,l), +(916,620,o), +(840,696,o), +(746,696,c), +(746,526,l) +); +}, +{ +closed = 1; +nodes = ( +(1004,198,o), +(1040,256,o), +(1040,320,cs), +(1040,384,o), +(1004,442,o), +(953,473,c), +(953,167,l) +); +} +); +width = 1080; +} +); +}, +{ +color = 6; +glyphname = ijacute; +kernLeft = n; +kernRight = q; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(386,-190,o), +(457,-125,o), +(457,4,c), +(457,530,l), +(308,530,l), +(308,9,l), +(308,-33,o), +(284,-54,o), +(238,-54,c), +(215,-54,o), +(195,-49,o), +(175,-42,c), +(175,-175,l), +(203,-184,o), +(231,-190,o), +(269,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(202,0,l), +(202,530,l), +(53,530,l), +(53,0,l) +); +}, +{ +closed = 1; +nodes = ( +(172,585,l), +(297,730,l), +(140,730,l), +(60,585,l) +); +}, +{ +closed = 1; +nodes = ( +(427,585,l), +(552,730,l), +(395,730,l), +(315,585,l) +); +} +); +width = 510; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,-185,o), +(395,-123,o), +(395,-10,c), +(395,530,l), +(295,530,l), +(295,-7,l), +(295,-70,o), +(270,-94,o), +(213,-94,c), +(196,-94,o), +(175,-90,o), +(157,-83,c), +(157,-175,l), +(180,-182,o), +(203,-185,o), +(231,-185,c) +); +}, +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(148,585,l), +(258,725,l), +(132,725,l), +(62,585,l) +); +}, +{ +closed = 1; +nodes = ( +(378,585,l), +(488,725,l), +(362,725,l), +(292,585,l) +); +} +); +width = 460; +}, +{ +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,0,l), +(165,530,l), +(65,530,l), +(65,0,l) +); +}, +{ +closed = 1; +nodes = ( +(295,-70,o), +(270,-94,o), +(213,-94,c), +(196,-94,o), +(175,-90,o), +(157,-83,c), +(157,-175,l), +(180,-182,o), +(203,-185,o), +(231,-185,c), +(337,-185,o), +(395,-123,o), +(395,-10,c), +(395,530,l), +(295,530,l), +(295,-7,l) +); +}, +{ +closed = 1; +nodes = ( +(378,585,l), +(488,725,l), +(362,725,l), +(292,585,l) +); +}, +{ +closed = 1; +nodes = ( +(148,585,l), +(258,725,l), +(132,725,l), +(62,585,l) +); +} +); +width = 460; +} +); +}, +{ +color = 6; +glyphname = macronmodcomb; +lastChange = "2024-03-21 11:17:29 +0000"; +layers = ( +{ +layerId = m001; +shapes = ( +{ +closed = 1; +nodes = ( +(397,603,l), +(397,718,l), +(103,718,l), +(103,603,l) +); +} +); +width = 500; +}, +{ +layerId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,621,l), +(388,705,l), +(112,705,l), +(112,621,l) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = _top; +pos = (250,530); +} +); +associatedMasterId = "0EB46722-B91C-41F5-AE00-C58F8D8E3AB4"; +layerId = "89946EFA-3063-4597-8F39-C29AA3B0B012"; +shapes = ( +{ +closed = 1; +nodes = ( +(388,621,l), +(388,705,l), +(112,705,l), +(112,621,l) +); +} +); +width = 500; +} +); +} +); +instances = ( +{ +axesValues = ( +400 +); +instanceInterpolations = { +"0EB46722-B91C-41F5-AE00-C58F8D8E3AB4" = 1; +}; +name = Regular; +}, +{ +axesValues = ( +500 +); +instanceInterpolations = { +"0EB46722-B91C-41F5-AE00-C58F8D8E3AB4" = 0.66667; +m001 = 0.33333; +}; +name = Medium; +weightClass = 500; +}, +{ +axesValues = ( +600 +); +instanceInterpolations = { +"0EB46722-B91C-41F5-AE00-C58F8D8E3AB4" = 0.33333; +m001 = 0.66667; +}; +name = SemiBold; +weightClass = 600; +}, +{ +axesValues = ( +700 +); +instanceInterpolations = { +m001 = 1; +}; +isBold = 1; +name = Bold; +weightClass = 700; +} +); +kerningLTR = { +"0EB46722-B91C-41F5-AE00-C58F8D8E3AB4" = { +"@MMK_L_A" = { +"@MMK_R_I" = -80; +"@MMK_R_K" = 10; +"@MMK_R_L" = -20; +"@MMK_R_M" = -80; +"@MMK_R_O" = -20; +"@MMK_R_T" = -50; +"@MMK_R_U" = -10; +"@MMK_R_V" = -50; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -50; +"@MMK_R_a" = -10; +"@MMK_R_f" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_t" = -10; +"@MMK_R_u" = -5; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -10; +backslash = -40; +question = -60; +}; +"@MMK_L_B" = { +"@MMK_R_B" = -20; +"@MMK_R_I" = -10; +"@MMK_R_M" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -30; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +backslash = -10; +}; +"@MMK_L_C" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -30; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_D" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -40; +}; +"@MMK_L_E" = { +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_x" = -10; +}; +"@MMK_L_F" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_E" = -20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -20; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -10; +"@MMK_R_n" = -10; +"@MMK_R_o" = -20; +"@MMK_R_p" = -10; +"@MMK_R_s" = -20; +"@MMK_R_u" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +ibreve = 10; +icircumflex = 20; +idieresis = 20; +igrave = 0; +imacron = 20; +itilde = 20; +slash = -20; +}; +"@MMK_L_G" = { +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -10; +}; +"@MMK_L_I" = { +"@MMK_R_V" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_J" = { +"@MMK_R_B" = -50; +"@MMK_R_T" = -40; +"@MMK_R_V" = -30; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -40; +"@MMK_R_Z" = -20; +"@MMK_R_o" = 10; +}; +"@MMK_L_K" = { +"@MMK_R_T" = -40; +"@MMK_R_f" = 10; +"@MMK_R_t" = 10; +}; +"@MMK_L_L" = { +"@MMK_R_F" = -20; +"@MMK_R_I" = -80; +"@MMK_R_K" = 10; +"@MMK_R_L" = -60; +"@MMK_R_M" = -100; +"@MMK_R_O" = -20; +"@MMK_R_T" = -70; +"@MMK_R_U" = -10; +"@MMK_R_V" = -50; +"@MMK_R_W" = -30; +"@MMK_R_X" = -10; +"@MMK_R_Y" = -80; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_t" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +backslash = -50; +periodcentered.loclCAT.case = -180; +question = -40; +}; +"@MMK_L_N" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_K" = -80; +"@MMK_R_O" = -10; +"@MMK_R_T" = 20; +"@MMK_R_V" = 10; +"@MMK_R_W" = 10; +"@MMK_R_X" = 10; +"@MMK_R_Y" = 10; +"@MMK_R_a" = -10; +"@MMK_R_f" = 20; +"@MMK_R_o" = -10; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -30; +}; +"@MMK_L_O" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -50; +"@MMK_R_I" = -10; +"@MMK_R_K" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -10; +backslash = -10; +slash = -10; +}; +"@MMK_L_P" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -80; +"@MMK_R_J" = -70; +"@MMK_R_K" = -80; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -30; +"@MMK_R_Y" = -30; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -10; +"@MMK_R_x" = -10; +slash = -40; +}; +"@MMK_L_Q" = { +"@MMK_R_A" = 10; +"@MMK_R_B" = 20; +"@MMK_R_I" = -80; +"@MMK_R_J" = 10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -80; +"@MMK_R_V" = -60; +"@MMK_R_W" = -30; +"@MMK_R_X" = 10; +"@MMK_R_Y" = -50; +"@MMK_R_f" = -20; +"@MMK_R_j" = 50; +"@MMK_R_t" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = 10; +}; +"@MMK_L_R" = { +"@MMK_R_B" = -20; +"@MMK_R_J" = -20; +"@MMK_R_L" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_W" = -5; +"@MMK_R_Y" = -15; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_v" = -5; +}; +"@MMK_L_S" = { +"@MMK_R_B" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -20; +}; +"@MMK_L_T" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -100; +"@MMK_R_C" = -20; +"@MMK_R_E" = -40; +"@MMK_R_F" = -40; +"@MMK_R_I" = 20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_L" = -60; +"@MMK_R_O" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_W" = -5; +"@MMK_R_X" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -40; +"@MMK_R_n" = -20; +"@MMK_R_o" = -40; +"@MMK_R_p" = -20; +"@MMK_R_s" = -40; +"@MMK_R_u" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +Germandbls = -10; +ibreve = 20; +icircumflex = 40; +idieresis = 40; +igrave = 20; +imacron = 30; +itilde = 40; +slash = -30; +}; +"@MMK_L_U" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -40; +}; +"@MMK_L_V" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_C" = -20; +"@MMK_R_D" = -20; +"@MMK_R_F" = -30; +"@MMK_R_I" = 10; +"@MMK_R_J" = -50; +"@MMK_R_K" = -60; +"@MMK_R_L" = -20; +"@MMK_R_O" = -20; +"@MMK_R_S" = -5; +"@MMK_R_T" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -30; +"@MMK_R_p" = -20; +"@MMK_R_s" = -20; +"@MMK_R_u" = -20; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 30; +icircumflex = 20; +idieresis = 30; +igrave = 20; +imacron = 30; +itilde = 20; +slash = -40; +}; +"@MMK_L_W" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -60; +"@MMK_R_C" = -10; +"@MMK_R_F" = -10; +"@MMK_R_I" = 10; +"@MMK_R_J" = -30; +"@MMK_R_K" = -30; +"@MMK_R_L" = -10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -5; +"@MMK_R_a" = -15; +"@MMK_R_n" = -10; +"@MMK_R_o" = -15; +"@MMK_R_p" = -10; +"@MMK_R_s" = -15; +"@MMK_R_u" = -10; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +"@MMK_R_z" = -10; +Germandbls = -10; +ibreve = 20; +icircumflex = 20; +idieresis = 30; +igrave = 10; +imacron = 30; +itilde = 30; +slash = -30; +}; +"@MMK_L_X" = { +"@MMK_R_B" = -20; +"@MMK_R_F" = -20; +"@MMK_R_I" = 10; +"@MMK_R_J" = -20; +"@MMK_R_K" = 10; +"@MMK_R_L" = -30; +"@MMK_R_O" = -20; +"@MMK_R_T" = -10; +"@MMK_R_a" = -10; +"@MMK_R_o" = -15; +"@MMK_R_s" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +ibreve = 10; +idieresis = 20; +imacron = 20; +}; +"@MMK_L_Y" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -80; +"@MMK_R_C" = -30; +"@MMK_R_D" = -20; +"@MMK_R_F" = -40; +"@MMK_R_I" = 10; +"@MMK_R_J" = -80; +"@MMK_R_K" = -50; +"@MMK_R_L" = -40; +"@MMK_R_O" = -30; +"@MMK_R_S" = -20; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -30; +"@MMK_R_p" = -20; +"@MMK_R_s" = -25; +"@MMK_R_u" = -20; +"@MMK_R_v" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 30; +icircumflex = 10; +idieresis = 40; +igrave = 20; +imacron = 30; +itilde = 20; +slash = -30; +}; +"@MMK_L_Z" = { +"@MMK_R_F" = -30; +"@MMK_R_L" = -30; +"@MMK_R_O" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +}; +"@MMK_L_a" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -80; +"@MMK_R_J" = -20; +"@MMK_R_T" = -60; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -30; +"@MMK_R_Y" = -40; +"@MMK_R_Z" = -30; +"@MMK_R_f" = -10; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +Dcroat = 20; +eth = 10; +}; +"@MMK_L_b" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -20; +}; +"@MMK_L_c" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_dcaron" = { +"@MMK_R_H" = 60; +"@MMK_R_l" = 80; +"@MMK_R_n" = 60; +}; +"@MMK_L_f" = { +"@MMK_R_F" = -10; +"@MMK_R_I" = 30; +"@MMK_R_K" = -40; +"@MMK_R_L" = -40; +"@MMK_R_M" = 10; +ibreve = 30; +icircumflex = 20; +idieresis = 40; +igrave = 30; +imacron = 30; +itilde = 30; +slash = -30; +}; +"@MMK_L_lcaron" = { +"@MMK_R_H" = 60; +"@MMK_R_l" = 80; +"@MMK_R_n" = 60; +}; +"@MMK_L_n" = { +"@MMK_R_I" = -10; +backslash = -10; +}; +"@MMK_L_o" = { +"@MMK_R_F" = 10; +"@MMK_R_I" = -10; +"@MMK_R_x" = -10; +}; +"@MMK_L_q" = { +"@MMK_R_j" = 20; +}; +"@MMK_L_r" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -40; +"@MMK_R_L" = -20; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_s" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_t" = { +"@MMK_R_L" = -10; +"@MMK_R_M" = 10; +}; +"@MMK_L_tcaron" = { +"@MMK_R_H" = 60; +"@MMK_R_l" = 100; +"@MMK_R_n" = 60; +}; +"@MMK_L_v" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -30; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_w" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -20; +"@MMK_R_M" = 10; +}; +"@MMK_L_x" = { +"@MMK_R_K" = 10; +"@MMK_R_L" = -30; +"@MMK_R_o" = -10; +backslash = -20; +}; +"@MMK_L_z" = { +"@MMK_R_L" = -20; +backslash = -20; +}; +Germandbls = { +"@MMK_R_I" = -20; +"@MMK_R_M" = -20; +"@MMK_R_T" = -20; +"@MMK_R_U" = -10; +"@MMK_R_V" = -40; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -40; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -10; +backslash = -30; +question = -20; +}; +Thorn = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -10; +"@MMK_R_K" = -50; +"@MMK_R_L" = 10; +"@MMK_R_S" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -40; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -20; +}; +backslash = { +"@MMK_R_O" = -10; +"@MMK_R_T" = -30; +"@MMK_R_V" = -40; +"@MMK_R_W" = -30; +"@MMK_R_Y" = -30; +"@MMK_R_j" = 90; +"@MMK_R_v" = -10; +}; +dcaron = { +"@MMK_R_E" = 10; +"@MMK_R_K" = -20; +"@MMK_R_L" = -30; +"@MMK_R_M" = 30; +backslash = 30; +}; +eth = { +"@MMK_R_I" = -20; +"@MMK_R_L" = 10; +backslash = -20; +}; +four = { +seven = -10; +}; +germandbls = { +"@MMK_R_I" = -40; +"@MMK_R_M" = -40; +backslash = -30; +question = -40; +}; +iacute = { +"@MMK_R_Y" = 10; +}; +ibreve = { +"@MMK_R_T" = 20; +"@MMK_R_V" = 30; +"@MMK_R_W" = 20; +"@MMK_R_X" = 10; +"@MMK_R_Y" = 30; +}; +icircumflex = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 20; +"@MMK_R_W" = 20; +"@MMK_R_Y" = 10; +}; +idieresis = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 30; +"@MMK_R_W" = 30; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 40; +}; +imacron = { +"@MMK_R_T" = 30; +"@MMK_R_V" = 30; +"@MMK_R_W" = 30; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 30; +}; +itilde = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 40; +"@MMK_R_W" = 30; +"@MMK_R_X" = 30; +"@MMK_R_Y" = 40; +}; +questiondown = { +"@MMK_R_J" = -50; +"@MMK_R_O" = -60; +"@MMK_R_T" = -100; +"@MMK_R_U" = -70; +"@MMK_R_V" = -80; +"@MMK_R_W" = -50; +"@MMK_R_Y" = -100; +"@MMK_R_j" = 30; +}; +seven = { +eight = -10; +four = -40; +seven = -10; +six = -10; +three = -10; +two = -10; +zero = -10; +}; +slash = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -40; +"@MMK_R_O" = -10; +"@MMK_R_x" = -20; +"@MMK_R_z" = -20; +eth = -30; +}; +two = { +four = -20; +seven = -10; +}; +}; +m001 = { +"@MMK_L_A" = { +"@MMK_R_I" = -80; +"@MMK_R_K" = 10; +"@MMK_R_L" = -20; +"@MMK_R_M" = -80; +"@MMK_R_O" = -20; +"@MMK_R_T" = -50; +"@MMK_R_U" = -10; +"@MMK_R_V" = -40; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -50; +"@MMK_R_f" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_t" = -10; +"@MMK_R_u" = -5; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -10; +backslash = -40; +question = -60; +}; +"@MMK_L_B" = { +"@MMK_R_B" = -20; +"@MMK_R_I" = -10; +"@MMK_R_M" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -30; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +backslash = -10; +}; +"@MMK_L_C" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -30; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_D" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -40; +}; +"@MMK_L_E" = { +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_x" = -10; +icircumflex = 20; +idieresis = 20; +itilde = 10; +}; +"@MMK_L_F" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_E" = -20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_V" = -10; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -20; +"@MMK_R_n" = -10; +"@MMK_R_o" = -20; +"@MMK_R_p" = -10; +"@MMK_R_s" = -20; +"@MMK_R_u" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +ibreve = 10; +icircumflex = 30; +idieresis = 40; +igrave = 10; +imacron = 20; +itilde = 30; +slash = -20; +}; +"@MMK_L_G" = { +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -20; +}; +"@MMK_L_I" = { +"@MMK_R_V" = -20; +"@MMK_R_Y" = -20; +}; +"@MMK_L_J" = { +"@MMK_R_B" = -50; +"@MMK_R_T" = -40; +"@MMK_R_V" = -30; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -40; +"@MMK_R_Z" = -20; +"@MMK_R_o" = 10; +}; +"@MMK_L_K" = { +"@MMK_R_T" = -40; +"@MMK_R_f" = 20; +"@MMK_R_t" = 20; +}; +"@MMK_L_L" = { +"@MMK_R_F" = -20; +"@MMK_R_I" = -80; +"@MMK_R_K" = 10; +"@MMK_R_L" = -60; +"@MMK_R_M" = -100; +"@MMK_R_O" = -20; +"@MMK_R_T" = -80; +"@MMK_R_U" = -10; +"@MMK_R_V" = -50; +"@MMK_R_W" = -30; +"@MMK_R_X" = -10; +"@MMK_R_Y" = -90; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_t" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -30; +"@MMK_R_w" = -10; +backslash = -50; +periodcentered.loclCAT.case = -180; +question = -40; +}; +"@MMK_L_N" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_K" = -100; +"@MMK_R_O" = -10; +"@MMK_R_T" = 20; +"@MMK_R_V" = 10; +"@MMK_R_W" = 10; +"@MMK_R_X" = 10; +"@MMK_R_Y" = 10; +"@MMK_R_a" = -10; +"@MMK_R_f" = 20; +"@MMK_R_o" = -10; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -30; +}; +"@MMK_L_O" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -50; +"@MMK_R_I" = -10; +"@MMK_R_K" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -20; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -10; +backslash = -10; +slash = -10; +}; +"@MMK_L_P" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -90; +"@MMK_R_J" = -70; +"@MMK_R_K" = -80; +"@MMK_R_T" = -10; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -30; +"@MMK_R_Y" = -40; +"@MMK_R_a" = -10; +"@MMK_R_o" = -10; +"@MMK_R_s" = -10; +"@MMK_R_x" = -10; +slash = -40; +}; +"@MMK_L_Q" = { +"@MMK_R_A" = 10; +"@MMK_R_B" = 20; +"@MMK_R_I" = -100; +"@MMK_R_J" = 10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -80; +"@MMK_R_V" = -60; +"@MMK_R_W" = -30; +"@MMK_R_X" = 10; +"@MMK_R_Y" = -50; +"@MMK_R_f" = -20; +"@MMK_R_j" = 50; +"@MMK_R_t" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = 10; +}; +"@MMK_L_R" = { +"@MMK_R_B" = -20; +"@MMK_R_J" = -20; +"@MMK_R_L" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_W" = -5; +"@MMK_R_Y" = -20; +"@MMK_R_o" = -10; +"@MMK_R_s" = -5; +"@MMK_R_v" = -5; +}; +"@MMK_L_S" = { +"@MMK_R_B" = -20; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_Y" = -20; +}; +"@MMK_L_T" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -100; +"@MMK_R_C" = -20; +"@MMK_R_E" = -40; +"@MMK_R_F" = -40; +"@MMK_R_I" = 20; +"@MMK_R_J" = -60; +"@MMK_R_K" = -80; +"@MMK_R_L" = -60; +"@MMK_R_O" = -20; +"@MMK_R_T" = -10; +"@MMK_R_W" = -5; +"@MMK_R_X" = -10; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -35; +"@MMK_R_n" = -20; +"@MMK_R_o" = -40; +"@MMK_R_p" = -20; +"@MMK_R_s" = -40; +"@MMK_R_u" = -20; +"@MMK_R_v" = -30; +"@MMK_R_w" = -20; +"@MMK_R_x" = -30; +"@MMK_R_z" = -20; +Germandbls = -10; +ibreve = 10; +icircumflex = 40; +idieresis = 40; +igrave = 10; +imacron = 20; +itilde = 30; +slash = -30; +}; +"@MMK_L_U" = { +"@MMK_R_A" = -10; +"@MMK_R_B" = -40; +}; +"@MMK_L_V" = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -90; +"@MMK_R_C" = -20; +"@MMK_R_D" = -20; +"@MMK_R_F" = -30; +"@MMK_R_I" = 10; +"@MMK_R_J" = -50; +"@MMK_R_K" = -60; +"@MMK_R_L" = -30; +"@MMK_R_O" = -20; +"@MMK_R_S" = -5; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -35; +"@MMK_R_p" = -20; +"@MMK_R_s" = -20; +"@MMK_R_u" = -20; +"@MMK_R_v" = -20; +"@MMK_R_w" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 30; +icircumflex = 30; +idieresis = 50; +igrave = 30; +imacron = 30; +itilde = 30; +slash = -40; +}; +"@MMK_L_W" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -60; +"@MMK_R_C" = -10; +"@MMK_R_F" = -10; +"@MMK_R_I" = 10; +"@MMK_R_J" = -30; +"@MMK_R_K" = -30; +"@MMK_R_L" = -10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -5; +"@MMK_R_a" = -15; +"@MMK_R_n" = -10; +"@MMK_R_o" = -15; +"@MMK_R_p" = -10; +"@MMK_R_s" = -15; +"@MMK_R_u" = -10; +"@MMK_R_v" = -5; +"@MMK_R_x" = -10; +"@MMK_R_z" = -10; +Germandbls = -10; +ibreve = 30; +icircumflex = 40; +idieresis = 50; +igrave = 20; +imacron = 30; +itilde = 30; +slash = -30; +}; +"@MMK_L_X" = { +"@MMK_R_B" = -20; +"@MMK_R_F" = -20; +"@MMK_R_I" = 10; +"@MMK_R_J" = -20; +"@MMK_R_K" = 10; +"@MMK_R_L" = -40; +"@MMK_R_O" = -20; +"@MMK_R_T" = -10; +"@MMK_R_a" = -10; +"@MMK_R_o" = -25; +"@MMK_R_s" = -10; +"@MMK_R_u" = -10; +"@MMK_R_v" = -20; +"@MMK_R_w" = -5; +ibreve = 20; +idieresis = 40; +igrave = 20; +imacron = 20; +itilde = 10; +}; +"@MMK_L_Y" = { +"@MMK_R_A" = -50; +"@MMK_R_B" = -80; +"@MMK_R_C" = -30; +"@MMK_R_D" = -20; +"@MMK_R_F" = -40; +"@MMK_R_I" = 10; +"@MMK_R_J" = -80; +"@MMK_R_K" = -50; +"@MMK_R_L" = -70; +"@MMK_R_O" = -30; +"@MMK_R_S" = -20; +"@MMK_R_a" = -30; +"@MMK_R_n" = -20; +"@MMK_R_o" = -30; +"@MMK_R_p" = -20; +"@MMK_R_s" = -25; +"@MMK_R_u" = -20; +"@MMK_R_v" = -10; +"@MMK_R_x" = -25; +"@MMK_R_z" = -20; +Germandbls = -20; +ibreve = 30; +icircumflex = 10; +idieresis = 50; +igrave = 20; +imacron = 30; +itilde = 20; +slash = -30; +}; +"@MMK_L_Z" = { +"@MMK_R_F" = -30; +"@MMK_R_L" = -30; +"@MMK_R_O" = -10; +"@MMK_R_T" = -10; +"@MMK_R_V" = -10; +"@MMK_R_o" = -10; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +icircumflex = 20; +idieresis = 20; +imacron = 10; +itilde = 10; +}; +"@MMK_L_a" = { +"@MMK_R_A" = -20; +"@MMK_R_B" = -80; +"@MMK_R_J" = -20; +"@MMK_R_T" = -60; +"@MMK_R_V" = -30; +"@MMK_R_W" = -10; +"@MMK_R_X" = -40; +"@MMK_R_Y" = -70; +"@MMK_R_Z" = -30; +"@MMK_R_f" = -10; +"@MMK_R_x" = -40; +"@MMK_R_z" = -20; +Dcroat = 20; +eth = 10; +}; +"@MMK_L_b" = { +"@MMK_R_A" = -80; +"@MMK_R_B" = -100; +"@MMK_R_J" = -100; +"@MMK_R_t" = 10; +"@MMK_R_v" = 10; +"@MMK_R_w" = 10; +eth = -20; +}; +"@MMK_L_c" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_dcaron" = { +"@MMK_R_l" = 140; +}; +"@MMK_L_f" = { +"@MMK_R_I" = 40; +"@MMK_R_K" = -40; +"@MMK_R_L" = -30; +"@MMK_R_M" = 20; +ibreve = 40; +icircumflex = 60; +idieresis = 70; +igrave = 50; +imacron = 50; +itilde = 60; +slash = -30; +}; +"@MMK_L_lcaron" = { +"@MMK_R_l" = 140; +}; +"@MMK_L_n" = { +"@MMK_R_I" = -10; +backslash = -10; +}; +"@MMK_L_o" = { +"@MMK_R_F" = 10; +"@MMK_R_I" = -10; +"@MMK_R_x" = -10; +}; +"@MMK_L_q" = { +"@MMK_R_j" = 20; +idieresis = 20; +}; +"@MMK_L_r" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -40; +"@MMK_R_L" = -10; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_s" = { +"@MMK_R_I" = -10; +}; +"@MMK_L_t" = { +"@MMK_R_L" = -10; +"@MMK_R_M" = 10; +}; +"@MMK_L_tcaron" = { +"@MMK_R_H" = 120; +"@MMK_R_a" = 120; +"@MMK_R_l" = 140; +"@MMK_R_n" = 120; +"@MMK_R_o" = 80; +}; +"@MMK_L_v" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -30; +"@MMK_R_M" = 10; +slash = -10; +}; +"@MMK_L_w" = { +"@MMK_R_I" = 10; +"@MMK_R_K" = -20; +"@MMK_R_M" = 10; +}; +"@MMK_L_x" = { +"@MMK_R_K" = 10; +"@MMK_R_L" = -50; +"@MMK_R_o" = -20; +backslash = -20; +}; +"@MMK_L_z" = { +"@MMK_R_L" = -20; +backslash = -20; +}; +Germandbls = { +"@MMK_R_I" = -20; +"@MMK_R_M" = -30; +"@MMK_R_T" = -20; +"@MMK_R_U" = -10; +"@MMK_R_V" = -40; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -40; +"@MMK_R_v" = -10; +"@MMK_R_w" = -5; +"@MMK_R_x" = -10; +backslash = -30; +question = -20; +}; +Thorn = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -10; +"@MMK_R_K" = -50; +"@MMK_R_L" = 10; +"@MMK_R_S" = -10; +"@MMK_R_T" = -20; +"@MMK_R_V" = -20; +"@MMK_R_W" = -10; +"@MMK_R_X" = -40; +"@MMK_R_Y" = -30; +"@MMK_R_Z" = -20; +}; +backslash = { +"@MMK_R_O" = -10; +"@MMK_R_T" = -30; +"@MMK_R_V" = -40; +"@MMK_R_W" = -30; +"@MMK_R_Y" = -30; +"@MMK_R_j" = 90; +"@MMK_R_v" = -10; +}; +dcaron = { +"@MMK_R_E" = 10; +"@MMK_R_H" = 140; +"@MMK_R_K" = -20; +"@MMK_R_L" = -30; +"@MMK_R_M" = 30; +"@MMK_R_a" = 80; +"@MMK_R_n" = 120; +"@MMK_R_o" = 80; +backslash = 30; +}; +eth = { +"@MMK_R_I" = -20; +"@MMK_R_L" = 10; +backslash = -20; +}; +four = { +seven = -10; +}; +germandbls = { +"@MMK_R_I" = -40; +"@MMK_R_M" = -40; +backslash = -30; +question = -40; +}; +iacute = { +"@MMK_R_T" = 10; +"@MMK_R_V" = 20; +"@MMK_R_W" = 20; +"@MMK_R_X" = 10; +"@MMK_R_Y" = 20; +}; +ibreve = { +"@MMK_R_T" = 10; +"@MMK_R_V" = 30; +"@MMK_R_W" = 30; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 30; +}; +icircumflex = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 30; +"@MMK_R_W" = 40; +"@MMK_R_Y" = 10; +"@MMK_R_Z" = 20; +}; +idieresis = { +"@MMK_R_T" = 40; +"@MMK_R_V" = 50; +"@MMK_R_W" = 50; +"@MMK_R_X" = 40; +"@MMK_R_Y" = 50; +"@MMK_R_Z" = 20; +"@MMK_R_j" = 20; +}; +imacron = { +"@MMK_R_T" = 20; +"@MMK_R_V" = 30; +"@MMK_R_W" = 30; +"@MMK_R_X" = 20; +"@MMK_R_Y" = 30; +"@MMK_R_Z" = 10; +}; +itilde = { +"@MMK_R_T" = 30; +"@MMK_R_V" = 40; +"@MMK_R_W" = 40; +"@MMK_R_X" = 30; +"@MMK_R_Y" = 40; +"@MMK_R_Z" = 10; +}; +lcaron = { +"@MMK_R_H" = 140; +"@MMK_R_a" = 100; +"@MMK_R_n" = 120; +"@MMK_R_o" = 80; +}; +questiondown = { +"@MMK_R_J" = -50; +"@MMK_R_O" = -60; +"@MMK_R_T" = -100; +"@MMK_R_U" = -70; +"@MMK_R_V" = -80; +"@MMK_R_W" = -50; +"@MMK_R_Y" = -100; +"@MMK_R_j" = 50; +}; +seven = { +eight = -10; +four = -40; +seven = -10; +six = -10; +three = -10; +two = -10; +zero = -10; +}; +slash = { +"@MMK_R_A" = -40; +"@MMK_R_B" = -80; +"@MMK_R_J" = -40; +"@MMK_R_O" = -10; +"@MMK_R_x" = -20; +"@MMK_R_z" = -20; +eth = -30; +}; +two = { +four = -20; +seven = -10; +}; +}; +}; +metrics = ( +{ +type = ascender; +}, +{ +type = "cap height"; +}, +{ +type = "x-height"; +}, +{ +type = baseline; +}, +{ +type = descender; +} +); +properties = ( +{ +key = copyrights; +values = ( +{ +language = dflt; +value = "Copyright 2022 The Radio Canada Display Project Authors (https://github.com/googlefonts/radiocanadadisplay)"; +} +); +}, +{ +key = designers; +values = ( +{ +language = dflt; +value = "Étienne Aubert Bonn"; +} +); +}, +{ +key = designerURL; +value = "http://www.coppersandbrasses.com"; +}, +{ +key = licenses; +values = ( +{ +language = dflt; +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 = "Coppers and Brasses"; +} +); +}, +{ +key = manufacturerURL; +value = "http://www.coppersandbrasses.com"; +}, +{ +key = vendorID; +value = "C&B "; +} +); +stems = ( +{ +name = vStem0; +}, +{ +name = vStem0; +}, +{ +name = vStem0; +}, +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem0; +}, +{ +name = vStem0; +}, +{ +name = vStem0; +}, +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem0; +} +); +unitsPerEm = 1000; +userData = { +UFO.lib = { +com.defcon.sortDescriptor = ( +{ +allowPseudoUnicode = 0; +ascending = "Radio-Canada Display"; +type = characterSet; +} +); +com.typemytype.robofont.compileSettings.autohint = 1; +com.typemytype.robofont.compileSettings.checkOutlines = 1; +com.typemytype.robofont.compileSettings.createDummyDSIG = 1; +com.typemytype.robofont.compileSettings.decompose = 1; +com.typemytype.robofont.compileSettings.generateFormat = 0; +com.typemytype.robofont.compileSettings.releaseMode = 1; +com.typemytype.robofont.generateFeaturesWithFontTools = 0; +com.typemytype.robofont.italicSlantOffset = 0; +com.typemytype.robofont.shouldAddPointsInSplineConversion = 1; +com.typesupply.metricsMachine4.groupColors = { +public.kern1.A = ( +1, +0, +0, +0.25 +); +public.kern1.B = ( +1, +0.5, +0, +0.25 +); +public.kern1.C = ( +1, +1, +0, +0.25 +); +public.kern1.D = ( +0, +1, +0, +0.25 +); +public.kern1.E = ( +0, +1, +1, +0.25 +); +public.kern1.F = ( +0, +0.5, +1, +0.25 +); +public.kern1.G = ( +0, +0, +1, +0.25 +); +public.kern1.H = ( +0.5, +0, +1, +0.25 +); +public.kern1.I = ( +1, +0, +0.5, +0.25 +); +public.kern1.J = ( +1, +0.5, +0, +0.25 +); +public.kern1.K = ( +1, +0, +0, +0.25 +); +public.kern1.L = ( +1, +0, +0, +0.25 +); +public.kern1.M = ( +0, +1, +1, +0.25 +); +public.kern1.N = ( +0, +0.5, +1, +0.25 +); +public.kern1.O = ( +0, +1, +0, +0.25 +); +public.kern1.P = ( +1, +0.5, +0, +0.25 +); +public.kern1.Q = ( +0.5, +0, +1, +0.25 +); +public.kern1.R = ( +1, +1, +0, +0.25 +); +public.kern1.S = ( +0, +1, +0, +0.25 +); +public.kern1.T = ( +0, +1, +1, +0.25 +); +public.kern1.U = ( +1, +0, +1, +0.25 +); +public.kern1.V = ( +0, +0.5, +1, +0.25 +); +public.kern1.W = ( +0, +0, +1, +0.25 +); +public.kern1.X = ( +1, +0, +0.5, +0.25 +); +public.kern1.Y = ( +0.5, +0, +1, +0.25 +); +public.kern1.Z = ( +1, +0, +1, +0.25 +); +public.kern1.a = ( +0, +0, +1, +0.25 +); +public.kern1.b = ( +1, +0, +1, +0.25 +); +public.kern1.c = ( +1, +0.5, +0, +0.25 +); +public.kern1.f = ( +0, +1, +0, +0.25 +); +public.kern1.i = ( +0, +0.5, +1, +0.25 +); +public.kern1.l = ( +1, +1, +0, +0.25 +); +public.kern1.n = ( +1, +0, +0.5, +0.25 +); +public.kern1.o = ( +1, +0, +0, +0.25 +); +public.kern1.q = ( +0, +1, +1, +0.25 +); +public.kern1.r = ( +0.5, +0, +1, +0.25 +); +public.kern1.s = ( +1, +0, +1, +0.25 +); +public.kern1.t = ( +1, +0, +0.5, +0.25 +); +public.kern1.v = ( +1, +0, +0, +0.25 +); +public.kern1.w = ( +1, +0.5, +0, +0.25 +); +public.kern1.x = ( +0, +0, +1, +0.25 +); +public.kern1.z = ( +1, +1, +0, +0.25 +); +public.kern2.A = ( +1, +0, +0, +0.25 +); +public.kern2.B = ( +0, +0, +1, +0.25 +); +public.kern2.C = ( +0.5, +0, +1, +0.25 +); +public.kern2.D = ( +0, +1, +0, +0.25 +); +public.kern2.E = ( +0, +0.5, +1, +0.25 +); +public.kern2.F = ( +0, +1, +1, +0.25 +); +public.kern2.G = ( +1, +0, +1, +0.25 +); +public.kern2.H = ( +1, +0.5, +0, +0.25 +); +public.kern2.I = ( +1, +0, +0, +0.25 +); +public.kern2.J = ( +0, +1, +0, +0.25 +); +public.kern2.K = ( +1, +0.5, +0, +0.25 +); +public.kern2.L = ( +1, +1, +0, +0.25 +); +public.kern2.M = ( +1, +0, +0.5, +0.25 +); +public.kern2.O = ( +1, +1, +0, +0.25 +); +public.kern2.S = ( +0, +1, +1, +0.25 +); +public.kern2.T = ( +0, +0.5, +1, +0.25 +); +public.kern2.U = ( +0, +0, +1, +0.25 +); +public.kern2.V = ( +0.5, +0, +1, +0.25 +); +public.kern2.W = ( +1, +0, +1, +0.25 +); +public.kern2.X = ( +1, +0, +0.5, +0.25 +); +public.kern2.Y = ( +1, +0, +0, +0.25 +); +public.kern2.Z = ( +1, +0.5, +0, +0.25 +); +public.kern2.a = ( +1, +1, +0, +0.25 +); +public.kern2.f = ( +0, +0.5, +1, +0.25 +); +public.kern2.j = ( +0.5, +0, +1, +0.25 +); +public.kern2.l = ( +0, +1, +0, +0.25 +); +public.kern2.n = ( +0, +0, +1, +0.25 +); +public.kern2.o = ( +0, +1, +1, +0.25 +); +public.kern2.p = ( +1, +0, +1, +0.25 +); +public.kern2.s = ( +1, +0, +0.5, +0.25 +); +public.kern2.t = ( +1, +0, +0, +0.25 +); +public.kern2.u = ( +1, +0.5, +0, +0.25 +); +public.kern2.v = ( +1, +1, +0, +0.25 +); +public.kern2.w = ( +0, +1, +0, +0.25 +); +public.kern2.x = ( +0, +1, +1, +0.25 +); +public.kern2.z = ( +0, +0.5, +1, +0.25 +); +}; +designspace.location = ( +( +newAxis0, +900 +) +); +}; +UFOFormat = 3; +UFOLayerName = foreground; +}; +versionMajor = 1; +versionMinor = 1; +} diff --git a/sources/config.yaml b/sources/config.yaml new file mode 100644 index 00000000..785b82e8 --- /dev/null +++ b/sources/config.yaml @@ -0,0 +1,105 @@ +# The configuration for the builder is in YAML format. You can use +# https://www.yamllint.com/ to make sure that your configuration +# file is correctly formatted. + +# First we need to define the source files to build. Please list +# all sources in the same family. These are expected to be in the +# sources/ directory, so all paths should be relative to that +# directory. +sources: + - RadioCanadaDisplay.glyphs + - RadioCanadaDisplay-Italic.glyphs +# You don't have to supply the family name, but builds are slightly +# faster if you do. +familyName: "Radio Canada Display" + +# Next you can supply alternative paths for where you want the +# binaries to live. But we'd recommend you stick to the defaults +# especially if you are planning to upload your font to Google Fonts. + +# outputDir: ../fonts +# vfDir: $outputDir/variable +# ttDir: $outputDir/ttf +# otDir: $outputDir/otf +# woffDir: $outputDir/webfonts + +# The following entries, which are either "true" or "false" +# determine which targets to build. We turn off OTFs for this demo. + +# buildVariable: true +# buildStatic: true +# buildTTF: true +buildOTF: false +# buildSmallCap: false + +# The next flags control autohinting. +# autohintTTF: true +# autohintOTF: false +# ttfaUseScript: false # Set this to true if your font is not Latin + +# The "fix" operation can optionally fix some problems which +# are better dealt with in the font sources. Set this to true if you +# want gftools-fix to automatically fix source problems. +# includeSourceFixes: false + +# These options give fine-grained control over how fontmake builds +# the fonts. +# flattenComponents: true +# decomposeTransformedComponents: true +# checkCompatibility: true +# overlaps: booleanOperations +# expandFeaturesToInstances: false +# reverseOutlineDirection: true +# removeOutlineOverlaps: true +# extraFontmakeArgs: "" +# extraVariableFontmakeArgs: "" +# extraStaticFontmakeArgs: "" +# glyphData: GlyphData.xml + +# This control how STAT tables are generated. The STAT table is +# specified here as a list of axis names, tags and values. You +# can either map a list to each output VF, or provide a single +# list which is used for all VFs. Note that the build will fail +# if you specify a dictionary which does not contain an entry +# for each VF file built. +stat: + RadioCanadaDisplay[wght].ttf: + - name: Weight + tag: wght + values: + - 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 + RadioCanadaDisplay-Italic[wght].ttf: + - name: Weight + tag: wght + values: + - 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