From 258b719b3cc4e98248466aff99ecf528ab912031 Mon Sep 17 00:00:00 2001 From: Dr Anirban Mitra Date: Mon, 7 Oct 2024 20:32:30 +0530 Subject: [PATCH] Initialize better-release --- .github/workflows/build.yaml | 116 + .gitignore | 38 + .templaterc.json | 3 + AUTHORS.txt | 7 + CONTRIBUTORS.txt | 10 + Makefile | 59 + OFL.txt | 93 + README.md | 103 + documentation/DESCRIPTION.en_us.html | 12 + documentation/image1.png | Bin 0 -> 132018 bytes documentation/image1.py | 137 + documentation/image2.png | Bin 0 -> 212518 bytes documentation/image2.py | 145 + requirements-test.txt | 2 + requirements.txt | 7 + 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/Rubik-Italic.glyphs | 87852 +++++++++++++++++++++ sources/Rubik.glyphs | 88516 ++++++++++++++++++++++ sources/config.yaml | 7 + 23 files changed, 178599 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 requirements-test.txt 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/Rubik-Italic.glyphs create mode 100644 sources/Rubik.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..87a41c32 --- /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@v3 + 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..149a8bbb --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +*~ +venv +venv-test +build.stamp +proof +fonts +node_modules +package-lock.json +package.json +master_ufo +instance_ufo + +# 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..94606a48 --- /dev/null +++ b/Makefile @@ -0,0 +1,59 @@ +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 + . 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 $(shell find fonts/ttf -type f) || echo '::warning file=sources/config.yaml,title=Fontbakery failures::The fontbakery QA check reported errors in your font. Please check the generated report.' + +proof: venv build.stamp + . venv/bin/activate; mkdir -p out/ out/proof; diffenator2 proof $(shell find fonts/ttf -type f) -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: + pip install --upgrade $(dependency); pip freeze > requirements.txt 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..4458a89d --- /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 [Rubik](https://github.com/googlefonts/rubik/) by Philipp Hubert, Sebastian Fischer, 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..fb0a609d83be753ea96698bf9a758831387747ed GIT binary patch literal 132018 zcmeFaWn5L+`#yX)f}o&)q_iRm(n?69Al==KfRuEX4xywCESO^}Nyfs9VlHYp=c5o!5QcYo5wT312u*bRGtST@V!!l!L+0z$G#a?JW4q z4z*km{DovACwvc<+d;Aj{vl(iBKkm55_S_@qru=vmtbe0Tfl!XUlZ^}=o$vQ4t~R6 zXA+QpewqOP{wW$P;mr4I=nF8|_+Irn@I_S<1r=KrNeNDUOLGQY14}(a21oNpr+08W za)L{9Lt9-6M{_d^8%{@_tEYExf@|o<=G$w5 z7i5G!VPs}tV*D{S_$oK_Q%-4X6GQN1XnbB~?$bN}@w0Ew;bw#${-4| z&&~K_*?7-i)|y6z!T4dKf_D`hkygf0Bd^^bzcckw1TM^tCF&uw+r04nr69^R(M#9- zMLOPMhEOEnHyVFOy;p4wQ5L$!E*|Zc?|f*+N5j8$oTC-uFBFv-R+$Da-&pv zyRA{yLL1H6%qWT!g%8J~$Y@v;{GKo*`0p<2nD7Z%16p$zes{x<@78%BBg4|q|JQv9 zXTWW?b&|H{{_9SDm?!7I&JB7rCqF-oA9YMH;y>>MlRNWYkNh*aUkSpWmHVfL{E@j| zDBB-x{ikvHV@m#*l0WY2Z^6YMh4`Zoe-z@6Li|V=etq#L*!&Z0{z(o0<|_Uu#2*zOmXn}SO={rSHuVOa_-%!CySnEE>dR`$9tnQRxwH5`f$yg?sM(Q zv2E8~RJ;Mzh3LBVCi3_P@ow8Sq+{=7txg!qrXJ&O7l~)V3p+SXIoIFgsE=1qyRX%r zxH}(h4ffLJRlOkdI9zA37%THRP#xy=$|;@T%&FcU(Y&#{Q+pE2He#HVYiRj<*zODs z1x$yc*mt2kaouCwZje6IqF+&2l6}HazhW-R^!)Nc!IzErld9aibVMKAcPb~hsJNO~ zuvDC8!+P(b)A#9!pJY2vd7hPB;%}73)fneeA^xM{Z&g3t_i2C(vzdH3755MyT+sPkNNc%iLrM~ zTWHd<&E7QNdwbY)@;IpH9{Fn@>Um5gR#YAD57sIvsTzirgpM1n)y7xjNZom@6Cc=8 z=Zbv7vo*ZCX7mIF-HxAB2DK0A7k~L!lKRcZsn*-izLe&r;XW}d`Z5=7sU*d@n0#ej zgJro*g<8*}?`?LW=In~ieJ=KRKY8kyg+-fQYbx6u$LC^t~Ts2>DJVG2u5e{z*LI!INlRuJKS@eT^3K> zEysh&Y%Z7{`JLUc=KNB3W>ijjloW#zh5UKdvBJnsHqy~p>L z^Lm?gMx4G_fr>L?iwa1brnxz6Ekld0bj&);Y;*Bmw+m-#<*GkjfygZR$*%B~+Bp2H zSUR0NJ7(h1?XXlkuP1yaa`jho3j)+Yh*(ip2wRFY}1^W;RfTzPcNp$*F17Pl-WDpsnxzPM`M=%n>Rx~ru@>XeO#bBa{_Ev z$mg<|pv^vc>6C0=mng$<)yxC>{5rTv>Z=DgcO_Z-75aVFye`80=4Y1kYTaMc%@jWR zKo!x)dMu1O=u7T?XB;TWV)=ZW_;Bbulak>F;^GYD2Cp^EKR&%71(eO^*>?Wq(PxJl z`GBQ2!y@A*tHpz4Ypw=N2;`Alxc3{WCv}YI^EGV8P_|9wGL-Mf0qcsomyv`=hNVEPL&qB-J);8jdvgn?+)h`0|G#KvLl{3zB9)77`Mm#$#Bs;p0M?-SFna0;oy3r+o$vRfcZm8zE z-jF4KG+=lfkCzG~B#Y0R7~41=DIMbBYE>i}hC@q{)h+Ji4fLCv)Oq3cp5k~-=bWl2 zu|=8gI4}0P9WZ$PIi-(bUdPye(_tTPYe?C2a2U0?{}rmNe*HH)YEr#5kR^X-@6*d( zhnkJpimhTi=G7I*=yvezjE!XG4z{yTayKj#9lg?fzeH+3bj9#3%3^8lk$DSeUrO!q zR-OrXY>rgesP_Db!Ar^Ws&0qtO*BG;yC0<8F(;Y)XhGOcyJTnFL3>0$ zm`9Ccj29U#z?UDRcN3T=d~3gqJ0DT~1pgW8{qS-Kcy~Up{mRf`=EIqNEtgeAl|eJz zX!DYci-GZzyzMN#3Qx`;mK%4D-ZYU#OL5GGF4>kcUptPd*-T+sOn%AM&bEAQ(pJ6j zLU#>o6NwEjo3>3mYySqm5}S&jKHvUA(z|f8zKM6%miSU!t3^dadj58#F9J8C3!bA@ zgwIH7=e`N?@(#j_OxMqA^WIXWn7j7D$6OTqwW4^pXW4RYWh(GLnI)Oi%NCWZ;o+M0 z!|zHkd3O_Lv5_Hvy~Itw(RN$f?l_btHS+4w!Q_e5TGfV>^Y*Y&mQAYQdwD^H;;4_9 zciS4|#F@1v*+|6A-!u&()}?v(42nqtF9tAfP}|UtJI%+^)P$Ov^h&ZzX64m5vm)rX zE0;2}dX5j)v`4vDv}YzP%V)#;$8Fow*(fqUKz!S%1iUuy%vESq;7ebcci-UE5q=N{iZR=b=4q_xH!j; zPjS2B!Aj`R4sVuqdZCg<;%hv5yL9Al+%g~U!OL^JJF^Jn>V?xuAz&G{tORG4jglW$p_b~FZ12h5A{iZvYtf$_zsYQ;!Q*=W7_1&@eU1f zOUCTR`yEYpsdQ<+BNoj^Z&AEwC=+Pmm5HC5b`G$GNxDl+>0*Z9zp8Z7pUW%Da?WBm%cHet<1q@|dv6vd2xokgX)pV~?DEkny&_lIp-o`dh?PFclj9+^r z{OdouMb66?NjDVsD#-i$gWht=VLcZo!3k>Ppho$ zW=Cb}Xqn-vO6h*Zzig-YR;+E0XjryaQGRt*2nxAE2iU4y{fA8hT6tw3pCPV{GkBaF zOj<@M(|0Oq>02aPxA@R4MO0aqP5W36gk`@iO{q$n&;a3D7@cP#L-66Vvf$w_VqrNY zBbh0#t=HFIH52vI=G7iM^NzkdpzBI|5oj#)!RJ|K9Hr^|+;G|!{F5lRQUd{IJj7FP zMJ3ggS!*)4&2I0R85?y55A(ghaHObLh#88_$E$^$K2|2*m~TD=p;d;#Tl}z@Ag?ZU7&XAKL`&wyNtE=vXROLJJ&mS z4^}GXy;PgZb6pFr9HNiTTsE>CB`A2khwk+L9==YOUC?p5^g4GrJIyj-|MEse{NOQ& zF_#s|0$YYgjq+55-&EM=I9??6QEhqyzZ;XsXEw{c8^3d0gDM1T7EEb`GslZ=B4Ujb zPn2Fpc2b#oN)Bp!xQ*X6im?*fKb+^&Rw1vR-Kb7OCq5|*al5PNawL6c`maE?!5sgI zDb*x>Ry}hlOj6ai9_JM>xi2_)zi7;Lqn$nUS-+*>hsPwD8y)k)ybBB)ovw4Y7frPf z)YKkkr1VVtl26Q}UkXID5Owx4y07~$Veti)%n#l#XPa=G!R47E(6sG7Obv1)=lRe| zgMNu7FH?O2sC^ct91GF8*Ht!SP1&zGVu7XTpO{;JWmfF#7O;t3&)R;gm2TDyy_I?Y z-GgXzCDJ)#kmTeEy`B?hi-dBh1I!5T1-BERRQaRR8HmA4JexBIl*c(mJz_Mb?=6Qp za5`7vGUSZxh=8n%!L2OJ7ktMZl zUpFLOl?#~Qev6D_OBzl-TxvS&Shcs6=b=exRUV_bIl(AxC^L~(IqTRM>v2qSP=e6l zi8mUMy=4w0cu&zJkaa)=xD5$iO$YSuZCT>tJKL?Cwu-{fS3eVuqOn}UBJJ_2-YFy= zXWU^WPOQO_#6@SHbhXi(=#D-B`PbHpWvwP?PB5y%P#8{j8g*T{Om}qWUXw}UL z*>eFqPBKfTIj!G&qk}6iH+NG3wbcpJ7aOJ*8sPdcMS1@&Drw(pb<6zVf*Tv_y;$>A zvN`QSa@jEJJ)&7*-!_=LL_tKb~Inrrkhcxk*x`APIX3y zPqGss>CA>H=T_~0^xu=mo7iDHU+gN?dbGhFK`H!;?B;vW<>gA+oGQe?-Q;f{p(H#Q z==!l-hpoZnN-*E?da(DrKXZ>MZ^Oop>t!{kc)Ni%BU!h2yMPrt-kg}MVctPa2hGA}q^VmsZO@8^sxRew|y=bju+cb z3D>(A?U(s%M&H&`ggM@>%?S~f=bF;x!aDaVxH%)zzpC`PN_$Ix{BrGne_pCLfmRtq z>jF(IYfEZmsbN{FrQ5Q4e|q858*yci&SCN$K58L)lC{GeeJgQ9o@1{3!?8?izmj?m zlb9e$B@`_Ple-m-+%6B1ed%pCpn3yJg-uP_BwQ=D2Gr%-RB(OQfOU6i=uZ%1UgyusfSG$Uraw|VCIrHI89!{b1iL945r@4GC zzfr5Q!+Vt&^UjoK1=(UJ--+wiMm&nH!kUrmc0Fr=K5yD#Iw^C-J(b*wrA)iMd1XNZ z6Ar`%$l^sD#;k-{oo^r9jRq=PvgCJx`Jq4n9LprPeD0Hj2h}aBmqgH+Ki;FK2T2M|bZP=8LdaZGI*&O~+{wUix2FAZ zy4<$F9mBVGcno#9e&vqO&|$6KW-c(IZ}4je!`Zc@a^~hNZEuZE9@|fISgg2CdlTRX zJvDlvN@+J(;n*=T3I%Naq%Tk|_2m$^(9Xp=Ox#;9(DBEm)ZSq;Bz<$RSE(XOk zdE8-=r@=4(c>%xYlFd~1OA||f9S^voS8nrjvkxw3?d+zeo?zw*CM)pX&)ZjXd)l09 zjjSq2Wf|u2sh+rKQYP{SMMn*zsbh&6q!?b9?p`g1&AN$Fal2}Vm==GQF9 z#*h!0c6Q<29Z`IPZkEYN=>>qV+zh4SU0Z+ELi9SCjKJn%7~hVShATNs;hot~`SbHn zy(33?=Tan{JZ-kvZENmY3bB;=}qEZb{*WJyEXA?)P8@N z3<%}n1!3}bPP>Z>8%^t^NEFLsD*4X9*6b@BJ03?#=ghsd`_xLV^t2=t!E*~<*R`t= zzSfGR>BA~$DKU=f!qj^CLglP2h>8?icL5HB$97*pegM6E6k)WH&_`;sl#yodBC)!k zB+Eq9yFo+Ll(=3}B7JPfbO!d&uuX_HUGRxzjmFVljVz3xWhtn$c2|EeJK#o~quy#y zg%+{oh3=KzFVtz2L3a|T_o7f>1~#wQ$M`%t(tT%f`QV6yPm`E~Fwg8XM?1&E$XiJ< zdPKp8tl^VQq337&milm;NF6k&d}3PCcCF-jh3SNu-h!Y#YO+Sg83%a<`*-@W{6=}q<9-N zBQ?&PMoFv8-oO~MdUPn?@qLrAGj~VdO3iz|gDcHoG>VHP1SP`X2Y~9_}ico9Jvt zJmsXZaO>l%L=OneX(tco*egpKLd&~Lp2xS8nI^F#tKsg}KE0+kHf%wuJe3-4A*Q<4 z59ep$v;e@2x1B2Hr_Jg$x4it^s{CFlE<7T4eU~=UiD=vAE56AP-ttI;65@jD706MHb+4v?1E8f2f%#ZRXjjn7nm<- zWiTyq8p`$nnY4V{u;KwbFOvAI%LL9nLb6A7NIa_#e(7KYB&K#}f~9907vkcM8mS;O z&71aVhtY6ombaaoW^-y%PRY6Kl97jYss@y8sURuq&mmu;MUdhrWn(jSN8qj+%t9_F zOj$94l8J(|Qs~B@8Yf8UmqunDj#gbVRs=XmmfUvMb}|F|NI3Cp_pL1L6tmA?EQ%4& zAHJCZPA$xRx1JnWr=-B){2lN9?irrw&Z>Nid;$oheaJZfmO;vDOx2++lxBqgLR#WQV=5OP+l4DbKxNix9p+uB8}lj z^G=btt_#PlTd6qy)|x%aj0tnMLnw?-qfcS`g~G?b9_{?M+1^zHG|+6dd#` zYmaA*VtJ7;F9|ylrfM19YO@bAVa5k(Q4ykrR{6=<#H-u?A4D*>O6Yg_r#ErGITb zZMfTx{1M$1q*~Gtpr{*ROcyl$UR`w0sZRf7P|GDJtbS=5)O(bd1^{#>VF$vN`vEW} zmBqRX3xy)|hH7F}y5C(}g`zLs??@-U@so$_ibhMx!a z9p+B%jbwmpB|b9Vd>`x?>zW|p?rSaJCU|Gt5G|cqzwuLH&ho1E=W4P^0s?JUtLaE3 z{Ew(zG6w;ra-TnMt6G%L$^~Fx3Gg%+(bkXyL~&%v&3sefO=VTZ=yo$@ux;ru+uw?R zKOjM$eEy=^m70UkG$#@c!-f&&Y9AX2w5#%SWPPjNT^y$qbm?+GSdGBfa-6;=b9Xfa z)I&HMSWueCT+Gb-^IhFQqJ=K7zEgZ#&Hc`ar{9zx!mrshxBLNXWFo!+R__V~UM=n~ z=aGlopXb>GoOO(9ms_92aRsa*&cG50JTUfpe%qUN= z5w^O;Qa)g68Cl|J_1H|5En%d&I-y4$bC}QB?(_D;{N&Tr;${DGud9!e7-^jS z79YA+$)+{x2XS17QWx4v$ZjkGSkry5fE~F}IpHYh;*9#eCQJ@5;8P28CDu`s!!}bG z-7+jnk5{O)p{jYrZQS776RlWpB<@u+ z%?Wz|kVrD(lbK3Z=QUtJR*zIMoUnhTm~F@qniXp4|1={?pUBhtro&XgVyJ%0)I@S1 z+X(fz{ir!qt;jV!49@U9K}6IhUtk+b&?h>nPaUi20|B75a1%(+^Y}eJm(ME+Z|3B< zf{UJ#Q44kTO|b-R-rc1k6-YFl{djfktVzE9LoZjTe2eh! zH_<)WF0I8IU{$B)s|}=vsU!pRe3-ATUaZXz28(4g} zEl4otQdf?Kd>QPv=a_ZnYc&Tw0FjcPu&at_#SVhP!*~SUN!g2kp z+^NUW1oaS)6yOvXPV3zuEXf(QK>3w^AwPseXwMaxPR-t27Qib>R*0vgFNbL4#3&H+nFz!1aK24y|lNU z@zAghXo-?$E-)XyU0dCK5b5mD7Rl@_2@2N^y2EfUFDxc_9X~af@Lh_l4G4jl&Ejt6 ztD}ev5|xn2a1ZUcc<$PqL-(wlk|nF4&j{w&8V#~kzQn1IWZ`GdI9sa#Z1a4jAmcjW zm3u^dUWB)J-9u-6$2)fro%6>Z{TWkTEq4%@FAr;GHhAYEZ>FKajJJG^NGbv3kAGFU zb#JR^%(yJ`L6hq=y0&piM(6Uzq|@^cAjnYVc8z7F! z{e@o*C|@Om0jSL^JCk4N+QX#`E_uN=r1PW*Aa?|Dv`uIQP2?V~BS!IVY9I85)^G&o zEkUSGGwHJllCd|+gT=tA5d@t89qR!#R`up2HWV{mLx1#cW;Q;0n*cQ#GOto@Dt>>} z(VTk7-srO1-qDcac(&wmJnzv1_HZyO(GpY=Oh9nXK(evfD@_n?ioR!DrV>GZoLVAX zI9RhOXA!QPmYsKjN})2&ScM00TTK1wtA(T&-sm^sZwEFSXLulg^i}0$MThOq^PRk! zq;KdF#NOL1gryH#L7%@}~3~;@FuMQt}y9 z2Z_M(2#?vIeAzi`UYC_O!j{j>CNJV)!Ma|v+f!=~XgZ85Qfmp)HdL`xi(&_cOLtEV zn~_C>x;{U7C2`!K;*cJ|Vrbd~UKE!aVko?`mPQA`vgPY}rxlOA*@zw6 z$W{9Dp-;2`WH9D96X;Enq`Y^LYehz7u=ky;FsUMGH>J=e5ISL5uQw17T=XZuGYbpG zQ&M?7YXZCa7?5j}=|2sRzXM^tYN-=o6XdB68sEq0j}J~TE0VSxY;X{ja0!t%3_dJD z8~|96o*r{i2hP&m z4mf^GXIql~08|L*3Cjaa8oSP_H6U!^LB%*;$M|5GCKD0MvQr69E{Z`2r*5s^Gc}Mz zpf5+!uN3u4(eNcpt`OLm2s6$IWpIyu0O5PoHb}08D)9%7KHcEUFimDyVY)|<$h?E; zu`4jWG#{xSgv-aNCfbctIo8UZif23G{ycQ!WOfc3mG>99~jEn8JR|H&6 zD&&o8GZzmCuOyAVf#*tGZ0 zOs|tF#LZ+jJy9FFGUs^H1GB*>H4L}clmwWi3{@;)TBjl3UkP0Ywx3k+Y*2Xj^i4i` z{($Cvh%1reKLG+Fbb*svppgBGFg4CHOfLG$l>*53P#>y;nED_@{)8OS8-HAsd&VHt z4uk@qw+-GLftMA9P>(@(=ED0{mL#-K4$l~8K`o4`w&fs(fAd8UIno~P z2CRX+>9gD+b^tl)>~x#QM)ahu!;q)B%ff5l^INy1#(K%Ok!Up-r4%m0sCRffjkcDx zPdIB;R*#MW?}6@qf~3Qu`sBV+aoWj3cT%Ojf9EE^x`&EmJaFEg1_ui~_Fh2k(%iK$sjwku<32gu@J{+T za`k3uC9Zsu27tIsAZIyBFJv0>Bc%V^1>q}rw*X)KN2eJeTcgD{QxSn2tLmb&&qI<3 z4go^Y*YetJO+4v-`62zu3z3Nd@d%JZ)~(#`y8jQZPkEh*J(8~Y>{=B zP+)o_?DYon&0(s&ri59}kgfOakDH!B)o#nZT{X8#fVMt+WgxD4Mwbd5Io-eurn%R! zXAj6sV%trb2oMwukiOg!SsN)0cQ|G}kjpi|wz6xg2AN;jig-C9iTo)21js?yuf)_2sI)iE zQRr9FqNuE?SbX@7pr*_2INPe&dVeuZxnN@2uIVpThe2{X+IWyFgm-3fDL$e{3b+lL*}T>P#$heO6>IBXajJa(yLC65A2!@k{+?}2*(`wQ3j<8 zk^(y1o0>~IG|P+H!7^_YCwt8zJ%n&`vPUrZl3ygPT}lS57g%Lsc-Z3_)?YL;3! zqIwv-5AAU9%DXLgM9>jYEG_Y?*RGi@C&z0iY-6R}>jQg|$rsblEO~M!{Q579BhD{v zw>$fIP_uLH00*V!OcrSulW9O&`OsHUTfdy|xZ(DM&=$3+1Y-;%{wctHz{XiKTmb^U z+z?9*fkL-R^?19BIR>N@=uQpyis)mY61ds5VX-2vhQbv`Ax#T{XKoNyD~2E1ownhi zTw?ZcxVeV5!RE{7?NajvkDyVtF>-r2$)y{0Wb&mR&p_4PU>N<9$J z!n0ovhIulXJRr%%HV(btuXKj-{EbfhM2TTPj0+yNLRfeEhO5e9o+s|Yvzk@&iND^6 z(@p9UwVMLr76YGHHiK}q7`KPTtQr(1`Z#SiwJdzJGH1vh1tcc9fsNAq+%#`OXYN#_$Vczaxs2Gox4?`?Ji5ag@br2V zHH3hefKowj&dsU^7a|}+uZXJU+PnR?TE=!N$!{5q9OfCNJFyNR^pwVw(85s#1GN~? zZj^jSEsF%&)N$*HXXhDP)(Cpd1dmk(?A(EuRktWNY!Si}vFcEg+g_$=2$6?i+TQm# z(i(TJ5vL^N$7nah&q8JQxB~LZz5el=9W6eS2_p<=v z560$uFmAVnTnAi?d)ulZ@<5QPh&I|H zt&?X{@MyU@B*%8>Q8>Od(8SGVrQt+|Km-jlG0@D> zYTI_-&x#fbL@?73_lFl^6ZHV9usj5YGf+}ksM%!d#zrEq<}hy83#gkD=1w24Sz#7r;P(KE zw8D{VLj{^~b1L=I(o4Sz{V6r3fX9#;ZqBwludL-{I9~C9R?pof;|)I>ifKz~nnlKK zb+&PS)&)I4g3adbwTMY7Mm{U0^LRy}UH$&qT#^n!ikvD$%PG?f@~=du6oI7Syws6BTA|bGFhI+Q#0F9-trv)OgL-@#g*e}xLvYmouZ*Pi1jjctvuX)YNJucZ zzibGhUBrmt$FL*s^%i6jqF)6yrG9Mmhpk$_imJaphElU`XpXY_Y?(Xsnw0S5&frSVbIP7?f+P!A6A1)u32nw~TUkw)7C`x-7*4nmZ) zJhxR-Z?_XbTgMNl|3#MYec6()!T9N+e|VLkgW#Ff+vb#a4T2+as9QnT%}KYNbx;Bd zScrI>Z3j~UvyUQ>m_65YnE1Ev3iCR_iKKAJsQdbqReVQaY**UHVf#%ScH4LWG~q($4uq(KE(2;wwqXMrAvEJqi`t{@qCPos))52J->$FDdvuA& zb0oJu;=!O*;~zyKbNcjr6J#|hVM=NlBhA{p(}11b1I+qZ{yN{|GYlXVC<3k_9J5g3 zJM#a3IZI#2ktn|%l){wowGRYj+r1F-1fiA|okt)nO+zJfqyS{3y+u&jUbWXI{x?Ac zh?z(pQf@p*WS&sxLkttAxmPz%J)6(v2O?17;S83z7kG^DIPj4zXl_V`AO|e*g}z_; zi&G)-nx+J;B)em@RKM)%_0u6O3QEBSpfn9Lv`Jz6~_;kQryHbz1@@H=yC zCI2F>Uni*xO>$`LCdz+KvK?p(OX(Z$zfb&E)4(7GR-t}QiH7>W-p81M0+vu7NdK!* z{yuS?AvB=xY^7p%f4_@g$KbaC&u%w2yYhd<=AS>Q7Xq7}U#@umS9RupykQhNfVC|2 z(f{jZ2-)Cpm`{6-oXqca`Rf>68vHPR8)EfeTi)+`4NO};Hb`*IEW#fDswDRJ_wkwo z&yE@$y7%+T|9FQVPx1)_Vxeo3g&X?o&wt#A#zFuvi?K%h|9Tl9lGlmYs1&>0@j#N! z(F3Z>FG1HslzY4KgMZyujNCflM|wby0CSo5qwTxckrZ5}hB6&1$xp6h1)f0W_U!7R z)V~-4U{Vf{0lzY^=*v5Fbht73dPw^)E=*v1peRoVDn}mNin#r++xFxpR+6VF4oROn zlkp7#7?bhl69>KeW6Zef+c;nC?QdQoK@*+|Gmcon>KFtM+?}H)`j_W;t>ZdE<^zOp zl1NN(LG|m8fP$>&ZV9}iM5FLIVj|+_(`kA9FFR6)b!iv$XXLJXpp6H6(LIBCdiB{e z{MXiWUH6hTZ&5D!%{%;*l{(mYpkMrEX~3WU%Phc0tCxUOFsSbRr$8b>*o^0p)cyY$ z5P5_O*Z|D}#DAKfGt|IP!QRCF3gi68;unbn^{Oh{-zqWYa%=;e;`R`uo|AWhB>W0O&{)?wk^vXz$ zx*2%+_H{|nDQ^PuDiXPyr``O3GtvVHziMuza^CWUr}Eqd1+Ny5%zhiC>5WOy% zm0cjFW?8+}GYFb8A!g*JbfbC4EFiB-Dr?#)R(yIP-UAx9o&y2e3MN}dscwu+jAnCDSH8L_N87Z?CGfxVXy+XEwCCy zjrp6UT)^@IC4Tl;(8U8)l|P5j?$@?D0zzjGD0PM~fG+2t3I+lJC;+L~)_J#b>Eh+% zi0Sjc^VwdnuQEOCOSgskr9nIW6-m&;DUhOaq!a|TOqv&U3uVYq$fy_UW7m zwLuykke4v?yVv!4TnE}dqH93Q2L6EE(mNfaakSd5#cCCvu#r;dil{ zfa(-zKokRM^R^6wUTwJf%Fvrdz!R1LwRH8`IojJ_x0L`)Wb=MI^Y45fe{3D-yNeCt z-CwBKimmww;B6^T!?LXacqP}7oaQNi0K*De@x!w;WMIVvbU@)y3Z1@4W@{2ud14;K zST(ZrE66L(v-@*&q=HiSwAB^*Py}c$5`#8yOS{Sg6q9>_h{T?rKe1N5lj?E25l{a~ zkKm^*eZt5DY9UJGeT?OwUYI<;k1q-;=WbCCqD*=~nJroM(3m>fnFJN^ zEdT>oe#z^ufWVV#Q049?E9e&A25rEi;0aoT*4bG{E}(s|Vgl0&-ayHpa1G*{B!m7I z7Rfuh7`)sFIc{=)qrbkwq=XXS6`y3Rje$VZ)Cu{Nh22TiV%(NU{Hr6?_d1_Ix26P7ks$x#!;jnqzbTJ=(LGp=E0eJr?RjMA#(0J z5>L-z5gK?w@Cm8=?z9QuP?CRofpOFuOw7&zHSsTkf+*p>x8l9;tLha*KnUPjPKde; zdab+G2bbXI0&u<1u>7Vx(J&lAMY;!Sd9nrP1tC_ocGhpYjFKV&9~bK_9PGp@_8oBUNG|}Z zdg9uARdbm&7r-eDx7x&V${-2uq5<(W=d4u4ML6=vO)SiFNl08i=fn1|Va2qQY~%mloa!8L>;BQI4E4{Toe<4ymz12xGcDSp!s||~4Hg9x2Fe7Wzifh5FsgBg z%jD?^P7dL@pWrFz$-fMTq~94(Hq`kN>UW?TbuVDck4!5sB2Hx@9m*;*9fZmOx_SxD z>@d7Fs2#7DD+8D?dPDuJ11bVo{3nlEegH}d#9mNE>At|kRe!pkb}cqAwFK%fpvhlB z7|pL6>ET@@2%@#RA&!iOi>##Wwq*;*9(V(RpS+=#tw2&P`)fF5_K;)|3VO*takNMS zz5aC}_>n*!S&vJnFXjMt=ptAQ6M>F`YdR>%45T(PW=z3fSDDx`jWuw45 z^n%|J5R-LtAt^W&z|0I#U4iDY|1~)BGx+U}JNi})XxdS_K9_~cJX>!-EB_Wsd?WWe zB%xzl{7zONs$Ty_t)zo7fB>YK38H@X=qJR&!Mu&Q3M1H&;FKa1si2Cei06|U!nJ^78$-lIK+@abOAT>cy)ADn7< zJdNviVf<bPfc-P^S~z075Kwox(FyT?)4Vud z75)h70;s*H0R2`_GtZxjU&k0tFzqo!w&eko%|+1iE{z?KjQz-Xj5y_c77>68EGy-# zRHYO!8khWZPk=sdg>M(jpP-#~1@=nZmOL@I{x?_fs!k9`G87*Wvhg8tWAWN0+XskM z9OSuA5pJkeh{f@VJ$p>#_pq`6oqaC# zy&u{bpyPG2b8;L{R!X^hTxkmzkkkQu25Hc|<5B_mvb~eX+oeUILX!f>b{6S)@=lP- zo$fTJAizI-$3!CTde-ft2Y}cr2NVQm;-8Z^)8_*jPVG(--r2u{`u%=1EaPifwX0M> zZ!qqA0lHdhJUEY|Uls{EQ3q6aZ(nH8yNUDNP=W)^fq(~C#wFrVbk)K^r8Y(D-jVo- zwS~MChvDhj6cdv{KMh<3j^9KHw0}MYbr7k^9z-!;XPUmGAQ zn~EJ)$Y{0!{B4z`4fyJ|ZCe=g=%=0+oZ#fMK}G#P%{hdYUb0C-DQm9tT>TkH7dbwK zunZf#40MRQ^84k*b@^)gLAbRG5x=)^H5T!vz^YnAV7BDv-#JDV=$c`{D0bNalszj^vR*wfz zK!_Yy1blp{yC=^-`2R+y`Br~VZvF$CF@H=k!@;m`+K4Ef*AVe=u0h1)ic#A!W2FSDuKqR`z0aC4RU{> zVc$o``=FrzVf&=Ic8BklO-EbIs!NB1lN))kQ(Md$Vy|klvr~62X5-kM7p+W;KdsaM z*)wa!4ttSs)ypePV(_>>`UjDU<_zr1SJ4p`q7exg0tUkc0jZDp}pA$gBAqT8ET;bb@U|0~ z!vsfDQA~K)pD9=PKr+imSY!TND1)Y26uYJS1ev?w>B{~64{el>Gc$%`WmdP`_HDc4 zhkveL3?tZvjiyKpY<`Lem_yh+{LQYw1JnFn7&h5ISIu)4#d&k#3NgDyC}Or%omUC| z^Eqfzo^a2p!!jZyWV7p7I5?Em&RYeleV;Fu%BM-a2nm_8KrRse`-C8=67kB)tq^0g zoS*{&bg_Vn;pZLs1>ilE$Vl}BU|u2U3;tut$;lz5;!ozzE#P`DE-ud5@wfimt*=*Q zf)vcmvU44=wDrE24x)|8Ki0KO+7k}j3FNp;IrR`J^=0Y&m)jQGBOwk1y_D3+Z}Q6b)&!=!xWzUyl@~H%fPS^=u1{P9!K^Tj_P8SX~IRZ$PuiRwbJ6Zbq#KG8E{AfY~wi|gq7 z3u)Qv%0D*|2A@E=sgzAk%w`s{)Su^PvEctZV#g(F#mvxb)j}a4f1k78H=q4J{YS6CHZqXd$_dp4!pDx* z0%SXzn;!{X1eCg6917KBpYTR7>?+e}eIjdtd8Q4@X{`^%>PkNM16tnq` zSo6zVcjs}9M@w>W8MV0QrO1A6*0*)x7eUt3(=+%yR^F2;868q23`%6*H*}gH0Y-5+ zw+T$DE`C?>4ER+)MmzrM3Kl6T{n7r`?Ie?tpQ8Oue*u4@>#FD8#(W_Otn=)5%UG8R zEaQ;v6dExSvMYhkzQ<(F%A@NuCcd&)g}&eOO~|;=aTzpJ@afeAu{~o^pAUUA40Xj| zgfjaDQ4%BvwB(c&(O6EqvFF+11=%WZ68o~0JE?|WT>s}{!QjuayM}R#(Gqm)eV(85 z)cR>-;9v(S!2inU9t^1x4TFq(h~f36G;(+wdS37+^!bea_kpa-e~ zrapD+$Bexm0RhFbu-XUemw#>{%I@;z%eu?KLGNyKRl7Jm_4h~D_TBtxmA;PaDUJf| z;T~dE?)5#Ci1Q(A->0p^hy*MhtCpZY4DOCrWI3tz;>C-@vd8kPS3@ErsY@rEvozmP zN&R^IH}Nr}hwQm(iP$j(e~~O((jM_ zHl6N%?_yT%!H@-gOEfsjeZ zvseBa-~YZA9aUGMku=l=MTdv;_J>rW9a7b$>3gVt0mIx8nF1^u2N|~H7ZI>l*e9xb z_x~NG4Tq3f@2@f7jQ?p1k)WMpA|(LYqKHDoW=5TnkpY>fd(<)&wk9V1nTlxY$u$2v z8Wyz(zmX<%MA2+!R_@IOg&@iw!t$3YurEwcdcoR8GIr%@^KEdwMr}pgTpb;}^#%*= zpDPZ7TVR)gI=bQXJMT*b1oPpcA8@`~gM4pb4N3^FKL*OB4arKfdZ|TCT!+&|tc9UB zNx1ZCeMqlD{*QUtzC^8@8xugp+M;zAhyMHHrXB&ABH^t|_VpY^hWyg{`nrYqX#ZYg zW24yGM75?lKjQlieK$6OVme(3cdbGEBADs2fB%Q|Z>9pCnE{IotXVZmS3Urg0|5OcR3a}tBV~xi!_yEqr zXldTolWlT=Tl{rf zaOXh>Tic>#a3*XwyYto_li3i{ou86&dPPSa^6C{0C%U(LZ0+LmK2+{l8pttq?axw{ zzNwgL08WWK;dU?a^~9e)0i7lqj3^2U=95X_Rv{a;yIzS>GK`b^rd)>8OM3RgpcC8M4R8Ua2VAk(C=IBb#%IkgRN3 z5gL+JHm4v}2vn@`2f0Zo;K zIzcU=&(x)W@@&CMqf5yQjg0c3?i{39i~e(5f32#u5ov~qHDr}VDEFJ9WJZnv77=&Y z=L6FwzQAWKbuykKSCE!A2HyNzX2`$TsW=>#k@+CzC6)wFKzmkuOQYQ>7iybCUfTY< zUEwRjHp;OxGZ8pJ^_%+-as!-eyhAGAz6pJR4m;y)X(w8fMDi?au2Hu~m;YUPXNuD# z*6mlhj-qK7PH>8f8dQ7F&%H`b|16Ea{IOa`RrUH%5C4U~e+R!Kmd!yAm=gDc?D>^Z z(N{OA;$b(nB7-5I1wIRSt9>1(h8+$@Lzr`*V-WrGZmh2$sZ%LPJqGufZ0Xg`>(}b% zSz~Lx@vEyox72ETi~sH#w@~cavk5|rygF#wRXrjU$H{R#TDtN4Cwb-M29NBQ^_=Ru zAh2Nc8r_m8B(P`i{&15W&)a|2y7DBvm5M0YHE!4q`M%y=)@iX6oiq%mo#_8;%iTCp zj3+?Rbfj7en<`;{|3X6$Kw)N9^>4GZ9KPdpf>1=3#q%os`P>90mP}1?05*7?I@gf=fub*wC~`OtAew zW&ep_I_7zix(pjZ&v)N-=(){Y;@toJE@;T{W!&sVBZ@bKKNOc1g}Vz^8TYj zdk8s0Er;9M$nD$vlPP1B|E$|@kR*dIbL?z^Ma{eT=GG$6GrA5A`4znbEUI`4rlSWm zSh!s79+dwBNY9i+)=#K7hPhOB(xI@RC3Mo@%T+E$ilkERtrfqVA3 zHrL>;^hsD?{;|fWA3@h!R~Bopt})=2{=0cN&_SEuwVXz3s}L^3eQ{ieqllP*MHkht z|Krs6;0$N7JJsJ$kE4Ozxr%!&2%qFI9=~UwnZN-`4Fult9NH=}I#BwBk?0%WdqeAg zLf{D5((#|+bUgRrq?bB&vd;^Y$XvohU!dfa^rhe12R<~R2HwMn_b>i@g6S%5(oQg1Op72ksj+*pqC#3aoIZ?1lq`=t z*AWcc7L8S8m`kMCd#a%nvXQU;eXeZ?t;DAXCV6mJb#%4oG-}h6PQ#l<-`pa0o084yW_p_hIzW* zpy1%0P9U$yZGvT!O6S)1qK-{lI{+q3-`MxyCG!E z`QnuRUFlz6tsa38qM{9TryZmvWvdrXYvfCF9~By2vHklB7mVOTsl1RqOp1OfmQ69*n>phzjec}a7SB6fYCqyv>7+e`oGY5}T?Ae{)K6nOLYE#(!_N~hQV^LND06JerKB4{;f zLlHO3fl6=9yY}q^bw_O9pKy;~fCZyfcJ_n3s6w{BGCx1bG$;FU)M-l#;1=}(l`=bD z@?ZPn&yOG znwT35PhShBJO4M?Vtf#;;KWO6G;Q&95^qO;j?f4O0Y8<~gc0mhp={G34t80$>~9{N z|9u4{q%#Xr4+&Q@@j_~mCsEc&(|8IyQLG3WCf}%YRn<(_vDg0ilL)uXGZ`I!F{j*a^ z(H$(=B*Xx!AWaf{I3=%u0A+8TFSVMnaZ+2_@zx(W4u5zUet--sV-()$AD+9K3tH7y zD%|1I`=948CRf~Cc(n-aG9gb?1Uwm8SOlPIyQ+G0{BOWf*N1X2yu0@p3gg3ourKNw z8omnSUjqT&BrymWpk2j%7ss=Q+|2fXr0}wk!GQJL;(w1hw^(-T_oze1k1pZ|gi%SP z#e+DyKUmxZIBt?wDsoaT;$_l&+ZE;QdujE-;6)ly0BBVoxKVBKziy!}d; zB4m*wF+LM=h;scCd_3NJ!|utNgu^xsNq^fEE}Gx%U0{jgnH5PYIKV z)vxA+a+d}j@%q|V5)`Zc_i&q>h1HIv-fzQ2l*W(L`RfG))DHECijUg2CN%?AqfqS3 zVu)r}Itsbx`y~DO^t-?$eysNL&?w^lOZ@*%4OVzM9!+sd9LG4s9Q>Pyf07SY6h4bP zegU*2Zct=qMn1Nu6^#~Nt8=u;s#B!-CTXmG>ra8S`>O_Yh|p&l2dL+R;COhWE-6-h zZTe5*clpb>xLwDZnWgm=Sq_mu43P@s(TZ-W_5Gpx!Qq-MN8nN%loB!At=3ckbK=gk*3sruJ`uHG)Jdo|xQ7hb6G!U)a0IZ^B*`Se6-m8i|!f>&=fwD@$=QMu5GejY9s*G zp@bZb$Pa>c7yo4!cT;+C1h&%Z$504Qr??pCpbt;qQ_XxU_wOepTEcdp7oF8Ww4N!m zneOgQnS{H3FRqi_Nli`luMmtml_AfkuQH{>%E~GPcmUMM8~@pxAWp@i;ss7omy)em zSb^@k!mF46cc+J=SI0%vW2N9{wkh`?5GU+JTDWOc7JQ-c4!(9!6(U`$Hl4tK;=8pN z9_*=B^_z=&{$z*mT@oY-r&av;J2l~+z#c6Axj?6gT4uV`_aN?me*Om;(s*tapM`8_ z+g0FyHdkkA8SDmX%?M4k&z0XCs3?Eum+63%qL#M5+9Sap)Xr5S&mju)-;US7p`pNk&+NrNUcQ1f7re|QV z{X!e@Z}1~gcK6;QA;FU9sGm5CL}J2C1ja~Tf`2AnoBmmC!Ww)x{ppKN2)WF7K#AG` z0Rg)kWc_n6Y*9LLIY~()W>Jd+arIAzoqlnt-7Q@7tp9ldI2;uj+_u66O|o~XcxbLP zK^J?Ty4DZoYd-I$|2)*JDB;4XYaAy&Yr(TX1ryk{B)X}6Ic`qnPSs?;OlSY5r|iu? zpZ|9}d_aIS$~Ki(R8<7~(D1p7Y5%xh&Y!2p9zlwtP;TH~0i^*QX86=fDXY`FH3EQ5 zGWZ_Ur9QriWNC%K!*l2clfspEj}jrVn;(<9_=i0C{f3K6K)hI$_7UDgyvyMD_xugQ z>e%TmAf*JixHSP+ykuKpFwvIE1CTQ6(g3gKN1?INXlA!AWUR9f`kP`dk@ z`!T?0zB^vEH~tdvFW0Nmo&Rp8et^HkYAyjAG`D~o$Rm_u9~8HCQ?&7uMMYY?Qq8q* zcOWWgWIH;0r>21k{m}8!Yq9EK|6OuxAw1Bd&49FBm^^r|*8%0v-7OOM7w0`k^r+`* zT13pisq8DG^~;p<`{_=l%O2Zbw>lE~?(=sgcaP5THRmF+Cx1(s-S>5waiGjGhP8KD z$ni4&_sGcjzfXP-R)Q2(LL=Mf`{$k_%bMaP`vQZGOeLYQw=orGn_zL0;Vbi_{6gs7 zC+0Fb+SuooJOoS`*0-Gm$B=COcQHEXt@q-t zzm4Z3p^*N(|IeQx2H;bEa4bl|*|NTg1$2whTnPvZ0Nfmt6K^Qzzp zd1e<7N1>b5Dkvye3NJ!C6pOfOaIR>$=Ivs4&9kK$@S@*=Ag>$8t#NyP-DCOuva+QE z7;6kDSVYsu{FjxL<~K!zg!BOV3qt)ZQC}L|F;kPd1G{y6RX$*~m`%~=bP!mYJvM^D z;`F2D6XdSnb>CT7REi0E_!LovZZ}0env;x3;?vpV{O&*1^78#Kd|^H99OdoOl^JKl zK&7j5^T4QoO^}DR#)lXsCC0$}5Dq28_ z38N98=CURuol9F*rT~Ti4&Y)Rl}q?K$Q(%!6^2o9CPE=_v|GUnQOLyDjf4yv<_Bia z9wFj%mHU@*a5X8coIu8B9bG^7=&WEbkFLJH)RUO3;O)U9m@XOnC8~oWw>F@A{tM#r zUC9d#_^Z5Pi&5*|d(F2|>v(e)m%=lfsXM7`kSb*;c=`AaK0OIkyYq0{{n4kO+IG*c zSHHV`a_2&e=w8h8Ett=%q=jfGQ_g1sx2gg+t_?nSz5698mP*>O2%IB75KuIl!cOb< z3^(%3d*(?+^#{(U<4=^^x1nR!eyZyplHSi#6b(OZHC0^dQd4EB5DLoz3uhv(-qi4+ zAzu~D3_!4!AtX;*%`6G~7TFQ5n%EN_ozA^7P90*HrtLMDqXz}c^Cphq&A9%&*}smJ z4s!851i4!Q!CeYo!QikA=={V9OKy&gAV~tko%N~FPshNFM;g;+B-WEB9cy~UM9i9; zdr_W&8CAA#sdG88k*KA}9hM*Twkjw{UIY(7A^J>HaAs0`!!jSfxI3`gk)dD@`azykI8h^#S?-7sLSD#F!W~a!hEL3nKeVc={+_2Y zlWfr4nN)$RKaqPye){~}$;j7Bmz4u=Xf`PCYj&JTOF|w1y#vO*pZRp z)lm7G64TON2B31?!eDWOVgAGcj^&ws+k+hIH9Y?Fre7uYLg16A?@&=oW@^ghvjz!o z5$Ng`WQ6RtAd+xJnTTR~$<&HYJhY;u`8zA3N|%Ra=l2Oe_wKo`!${(DFdm>L1xamX zF_4b4T&JPne`sD&Bz38a;A5mQKkG>O1lN(7>wRVFJQPNq$BSl8e7!5-SD*>Pn)3TW z^dJ3{P=~6vl6sT87SmAF-0t8?>JYoc#-Xoxvi4im=UYPeP0Jh_&%@)rp(^X}^}yI& z`2P7#9vCSa&oBQ}*G`Lb zQ|G^Zc&0JG>KJ(&3pLF#YI)|tyB*Bg-Y$h^&stX3fq%dKlf5kF2js`yu#hh1Hal<( z;=%z32a+Qs;jb_Q+Sp_Z=kA=)sj#i}7Y(8+Z<*y0a#IHkN4LdX&pD=S>Iu8lr=DX!E`{Mf6ADR2e@Tw>!-NEi2*rLFypzA##TY z%HItPnCP53g~&)Br1rc7*|~sXiZvH8NB~&Y0U|W&A$>;LW242Mn(L*>^pybnqRKsQ zl2D-1C0>sI^7vq1pv*`JNrlF1^-68` zYR~J^(o)0*wD{iq%0bEWZLmQ^w0_q!D_leRg|m<8IIMkF4*Uets)= zs)hX%ostHrdio`R1xy1{F-OsC{M-|~wUDK-`ATK)y}4uFCkShj=u0*P2ybd1`M&)I zBv>>=jw1)MerJtBem5|oAL3Y@3EN(;PHaDf0{*$D%ENI?&k^MV`R(>a#0E4pk$>D- zo1P5yo*9<)!UX22Nxm_je%h|SPyJB7t)@r7b*ylMO0o;iW60B#`t$7z0ARIk6( zDCij}woxnM*%d|GSh@tafWmWa)6DTUES59JzBOrp(M#0be0#t~C;;Vc9BkQ$qWPvj zFm4(CVm9%+Es`Z<_u#cD8IPWAI-=W8v#H=Y#R&v)gs1k>1ssm~{4=NC#?>BsYuMMe zxd({QGnD|4z8?2j4i2O-bNF+2x7YAnmzfYvJ@AIiu|>G&>Z8xt$ZJu3CqGaR^2?o9 zG<`FN0?`p1r2gbn8Cy#J%L!jvlUrf>Bqz+S+HbTufORf07FjWu~{1;=I@Q-FX9(x~Mj@^QBFv;M8>8QNB2@a&suXePlG-bzK|^r`_BuhN5OZ0#wm3bQ@52h%fZPv>n#f zH*~ci`ZT)(n#5>Yw-@dp-VsuW0-7 zNo{SnJTjdP(d;+eaEyWfBKptoZy8KD)Qxi?(G~JZ2C&H5f+S7zKiW7n$>Q4vu0D?pd zz^ii$vWOx1>z5(ne2zBsD>EfL`L! za~2PFuW)-bl%p!+e$}D1VPtYlXZ+0z*l~y=~qm)4uY)XFR z#CTayjP)71t}lUELA`!!+1wWzgiND5q@0{(Eb{da+RCX~Cb>Zgs7O<&WT8Ikj>P9} zG-n`MRRlS|x)1==J{Eo(QV80tY)hBxeeWx5R<2FWu6SvNtqoJ}`(r}?s>5DkS8gIV zY2Dq2Aloj&WtvTp1fyu2y>8M;qgAx;}BG~9M>M5Ll~1?zk}cMtW)S|VU`<4`JMd_GX@kPh%QLk(4a8mBH7;7GZ_Ow z>Lvs47H+W7c@ry3=DDRQ^0oIT>(3&p{KM1*%7MSaFA)L*u0Ur_iIHTSxnyJv_Mn;A z1B{m4`FI#tc@9S43LR9qRydU~?}Az7K3(VMl}n4XMIy@BhCBHrVDkuA$&_%tUQFf5 zY`tXBmyyPuXZmS;j0;UZ`4VpWgQCF)cGqH?@rj!jhzIU{VQN)ImplqHV3qCAp4J#? zQ@6)_{`Gso9|N@E_i@|XJ)i3VQHR$zzfFjWW20K%HC(xsk<8~YDy}njBaqYX>ED_-%zcZlX4V zeUu9s`1Kcp2>Jd%V%zmLwNu@lY^bU)NBj#%&ld?-Gq!>1n@Zi;v1gh%@H46&7{^66 zuZ08ghY*GU_YBEcJ^^rVXUz3eNTq|(#_rJgLARq zX$iun5-T?BJUCo4vS9o5e_$##IQjTA%By4AjR;O;BuGgJb$}oL*F~juttUlK+mMuF zM`;)Q02EJSa80N!U#{n|HpPPyd7$iUp=FIR^t>EuZPc;;waH|`MuNMpm2mJ^1%{%7 z0k&aNx3hNO(nLOKY3W%0%DrGp@T`)vls}i8#i|@o3AR6}P7j0%y9Y%uXL)8hqNl*} zy)7@X(!5a6{-NSZRx;1>$3!qWL3GLwWDtj|2UdLmn#er#N`vY_fqd$01PETo-|P1| zz01vAiytx=(<MKSI;$r_Erz{ z)=+$0+^12pbcm7B^x6gn((jG>YXsnoOg|XbZp_#nRcOp=)HmaZvc zZqS~WHX70HPn-+BOT+oeTsK=gj$7iNz9Wc*H{&@#B>cV<_j?o7yHrZGwh9}C_uP2jn27@pFjiv>0u>i>)WZ4R_X_o{zT}(2= z&Ef)q14-UEF;t!Ziu4?z9)|3y?{qk-aT=n4u8#XQRG|kYB{vgli<{^J0hvwZHE%d> z4e=u!Z(v|u7WbIYm%I8ogofBE1a36BjuP{`Bdm1IHAgO`nk(sm()1X7#w#C#5-mtXyo7^;yh@rlp0z# zTm=jqXy~q$FfF+lTD#Pvhe)ljn9{*R_QXNBrvud0?6Y3Ujeg0jCZy0Ai`dF~5SDpIQ7^8)e+`$(XnoV0AwrjElo6Iss`u3SjIS);K{S?|pcAoxs z0L4Od15WKg9MpwcPl={@A9Se*W_#ODXLN`)Y?d+#8oo}Fqm@EAkiUNO=Ag5*C?EwS zftOX^v;0+qu?ZpYRc!-Wk6C^_A(AZ@p&h&lf}#c`=>TnUF81fwcVB*Vs<2$HFCLqs zD@#PLidg4$b3!f2pY7aG>Pvx`?V;Kl_a)%{4bo+~AlY5Bc6gC@U#xU>g)W`zJP%Ma zTNRtI%bMVE)#p7Oz=2;&R=(;AalKF^O@jIO zo%?~J82Q2JPg|UdV@`f*QliQZ7pvdZFsQ_s0FWh_xlId9ohi;fI;#WM>`M9~HcOaBUF;C69tv$5pn}-L=UfEc*ZpnW zo5q`NyAM<-m|dm^`>rkRh3S!_4kX20*0i^P7*sL~{8$Zgli-=0kT0KkIMFDkuDcT8 z0_3M;5w(+U#L`uDyn}R9>9?xGjwg`8Xj5h#U0sS=(l9IE@g_Q?3Gi@Q#!C58)HXyN zKb5J^b?|2rz+7Erg6pFzeo6rJZU-!gVXh|C2LFk1jJh_q-!%ZPyubZW%ZtMBkN>R6 z9Gh%xCuD;Am7BaN5(JGjp~7-(vtVIj`eJ}Cy;h3_HrEcg0mCYH`?r(2*D)c65MxjO z)5DAsr6#VobC-j~{>Mb8IkIi-uA|;|ONJ9P3EZm3rNC;>e#xT0l60Ufvb< zx$REy$yQLlZftA;pY)MP7BPow#uX|DEs`2UJ7xWsU3_7rf<=2WT8m` zRxz2?Pbl5Li-S4gR{QR5B*q~?0b&8~A}NeEp=S1h&}YBBxz=`jjChRy_--KBLBmb0 zN4NL>#LvPpTmB?$0Gt9!{@o7Tqb>@T9q*u0yKpQiYCY(2$MqMBQDoSw1An(S=?)n* zNQugylrT5I1I}uJUy?HwH8T-~Vyvic5e?P^~0ot{2>NhB-Fqd=FB zgB*2>c?!IVSRb-~-WLkqmAR4xZzQC`*6)`?jBpY4bEdz-ME(8#u!AIpa-!-?%82fD zz+3+9+qYp)jr>#z{3v*8>7+N6(7@(Gf6Rs(`cf%KUOJvUh2Zc@-8nrEjRb}!Z8TB( z!8Xr$D*O< zTl(IIKBLP!+gqic(}taUM2E|u_OVrxV9C$C(vqi_j4)nb{HgbWf1^hRXEBi<2#gA9_0 z=symOpj64eG);mZ>e#Vk5{?~g2Nivae_rR|Mhgp{zOPN^3(+VK3S{Q!J6*JxEI8et z%JK!!E+W~9)7AOZcMAvrCnu_U-}skveg?;fDDy(5-`nWJ8p++(kggUekv@`47)i9? ztsevBZ8l;T1p{9QH}3BO>7Wp=hM|1^m(r_an!O+LZP0~BvdKz?j0J)4GlyBU6&IBGAYOCL;e{kmZEUm(S6)Fh%?8esCp=nLj)dOXa&3l z#+%EZFi#jhKtw8J*bj-a6kBrfjUA}h!g2PclI;o?u*r9OzxX|^nUkLs(7TBl=K*A( zEXxLF>mBl`J|k!wa`U0HuJ#u@vQt6HGA|0^=f}`GObVa4%}aFtNh!+YYjl_r=)9|i zHsYRpYGJe$`X0Z4wuv5cSy7oWmN|L?O56%J&ybtgsb3(rA*c=*F&@vT9(t50GicZ1 z4!sY~Jx+>b(*F1jNuXN?vD=tc&g?6%`T6+P-12J-**o#T2opI z3y!5+L}pUucOI?U@d7AP3b2N75`;1W2ccykJ;OS@)HVq{A1nO$6S9ZVJZ?Z5wnD5s zsLx=5_}UpB7(YoXVIz6-fSL8c%U$CPMmzgdmU2#+a4C~;Y+|B)VT9E}DpZYI=%p(| zaGrJHEPZ29q~o!+Mf$QVU?!K6An=k=Wt^VSLksxBTc|^w;DrJ~>Eb_ZV!1^#Lq;S- zvc}dT@E$aMAA4KJc6CM6()fl<(C`);=SCL=+{G%g2=l;0pPw;cgy!;MtrOYZ%aZRokle3$Jpb8BC$-qTmGINu zm$S;_2G=#S8VNMMe!c2(5NVgDB13>SpowVXhw>bJc-f&lVV1@EG}e%G#eGhkFG68@Ngs$p)dSO(al#U$51#$=H>ujkooDt&Ko=G^X znif{%6b!xhvCpS(HUbwtbyI4qBhH>=lYb0_-j4?Yy}RbRZjx{W7>+Bov!PcrM}q{8 zGs0$ohY#-IsmOR4cBlEZ6TP7<`L;AtoyQdNTMK}$K3&<=nfgBHx*;b##sn3P;M zHCA#OxPjwC-(nKtM{+yduiHicofeI{$7ubcZ?`s~rn7c+pWjpEF=;SZY;yzIpy!ET zs#}D!6;bchxtxp>E$fC#AQf`Z1%)+oQuHE|58Os|AGYgS=BpF_aZI?9mwU?JPH+-pc9GHon@kF;-+L-~2>G8-CGhulJsZpft>sGC zfa8f>Zw<^^;)9ETo`Iv!e0g?|2cqb4BY?7a%5Vy&9 zn@;F`9iQPVl0Bu;rLUtySJ#V&?Xt++wWDCNp>QQjn*&jM5D5vH_^<}AM#HhaTVeT0 zDRN(K&V@BskXGoossT$z%|pJGt}i>Q7xYh@f-yAS`@%S`ap*pcw4h!3b>^|`DEV(Y zaI;?G+cVev8M>y&AeGE~quuxwkHjsl!5mTQ_DOZH+$nxKu$vV13GsuowJhOrQD|Ud z9dj?eV)^>{O{B)WogJkG5wLG#nD>pnR1~#zVODZJ3)TlE?84Q`ctp^uJmL^jKg~sS znd}{Efdcuqy(J=JLLdPt6aDmC+%Up@-(zC3LnjOHhktf^ggFsL%I-%5)EmRu%+nS6@1@I z))BVF%df1^XNhp_2Xn@~n~J(QrNMi4rM5gzBj2VE4H%XE;&v z$IA^U+mnotXvR1?&ijcDHHm(7{;4RC1)r ztJhcMxjD*@1JSH91~3A1C#2{^Sb0KRoJ~OSM69Rw9(*hYF{rTjmW186In->l>#UaZ zm}r7VM1*1T&3ub*KrhdaUTNE#Er~+L+kgn+5CHqwD>&ozseFpt2ac&uwBHq2-?aZ# zh5`=_6%Aq?h}foToyfv%f16(BHrjbz=qo*+Vd`O#&i)SYXVe$9Ah76ojQ(`AytM?O z+p58_^I|gi$FE+!YSjS!*?e4FFMOiBp~$=y{lXp0qdBy0i!L)Aw_yXl|N+y z=zvY3ocAU!7%6^}AwI8r$LV#vrzsp%704!If?I{y%1(}Rznd=iI!LWt+eG$C?L6gv z4rL4Ib+&Y+jUN9=6;DRVe1KzJ40u6<40)#L%ZCTUnD;>a)U(=?N(w#2qQLnu)#+ul zE0S6!sYX&hONsu)f#bEw5mMV7v`)=O{^l#KOFPfmm9J|NJnc3X@8}FUVqv!if~%jMv|RXAmZ@kco%~ZwEMmfZ6p;_6Z(_lXk9l zH97gl(V*~{OJ~yRE5)Gcoio`ZiUt)%!=daw>F3~(PjlW)Hyd^Cv2h|&!!}A?7p`D@ zaPdXI(}@}2$tacMBrUkIo!w%f8=9$V@11d^PZ|thfxr4UedxNTuRj~efL0b*o~vrN zc3hHbRVgKqGif3reZ3S~-3w;?OR8(r>N&DG)~^hfzF~in#gfO2n({xio)>CEbx0}} zii!;Hy(%9xh+tG=u9E|CL4iVi5ALv5R0>j|88~`^iR@*0}(|Jj>nnAj~Oj5=s3aWv(q!1%JAB*;HT zAkiB6od7 zed!78#2hi70a~{*EKowXSxhcVi}S1i`+7*Pcxpbtk|quUB$yr+p|!;buJF0m?InP0 zdA+Y7u^;iI>bc`emO{$8a}OLUn}M>oa8FTwS_LB+Ezaf_-neHLaBNTeeb{tO>wQxc zlR`=;;$a!7RDnc?K+CB`53?iR-ai2iET^~Cdv>7PMB0F(%+v@Qc^0ObTxutVQ{V&8 zIX~nYxxgI}fhgyecOC{i{o}>KvAy9qF*E3=^&WuC+{|>5d`xgm(V@$CesX7fYe?Fc zv7~TbgZOvF9jX}C8Tzl5JGCzkp&i0S-udV^Gk9>$lh1kS@B9|%xB<|WgNaM1aqkH!0a&S^GD{qft(HA z)0~FaAgKcZ)XSUTpEA)|;{a2Ed0~3n#t9&=P`qIy)d$zTeDFfx$=>;Nq=yixVTb92_mre*oVFy!U($*kI4H2#toW_8)N$>uhA z51<&jYIZJwszDH)K(Ko`u7249q%)WzWa7CjS=YM-Gk0Ub-D564r%mP!t<|{)vc2a= zG|!~gXChvOGrY79Q>J7JaPdb8x;?Be)=}S?b47k)eJS?NO-t z%o{H!XM26S53zHIZ@Bo)!(jbu&`RX8)lG*oraxkoe|u{EAD0)DQ+_w9?}v9BbqA0_ zWW7&jLb+e7c8eIvfp3unxWTvi z<4!&HDm6-)zN`N@#O3reeNT6^q7O=H25ql7vf9(Goql$}8c=S}Z@lU4CbTr6E)4+a&rqfHf%YIAlP2d}fp zLYvkZ^{X(#RtExplqu8oD~Ze~CWMJcZV$s-b$DSypt}TD91nw1-qTe=9@lu>4?Q?` zr&7~B#A4cLQ{+7Ip*wK+cE0OJ2f*=Bf;}!7=odW10xa~;0{bZ%Wc6lxl5*PAYtf7GbH728L=9<{VR{k95WvRt%Y=e=ETV>2-l?=CY#=l zp0GXV7*p<1I+pr1y@Zzmy~*6=gopKpP|63=*bhZQW-O&05P(Rd)kx7t);^UZ$Vl#* zf)ksVRlWs~tJb}g1tu8>>ijD#V9cyU(B^9TJ|8=CJhL92xEL5@n75ROT(esW2Gi?e#M`kHXP=n8^O*}PKXXWpz>5$J*YkjS5ItS% zbF~U)uokjAsDJL&ReruePW<*UZMP@LD<3x^()G;wydyu$%|c|r9ViWxH$ID-gw;?6 z-msulSh`Fjy+bxvJtMj!_L<@>W-7xFsdk~0;})af#o@Kiu$_BdjJ}J_0#zF-QVHeP zu>-rOC`NHHJOL^ptAOtsyD*V`&*AM;)_}eY!G3G&gahv26}={DhHDW*cg@BX(PEG$ zOTus^1?dnabcvf^w6%53(t5zq)Y5VX;$TR%>4#P=BFuqEgitZ*aZ`aN5gAN)+U-JbUox!hM1iqHmDpt?-M+Yo{9+30N*Z05LG zZeo#4Hue6=-Pz%)UU|Hn>>WzcN?iXWHTwmDJWbMHm~}x7R})!h+YSzcr9Di~7bq6? z;=HdUO)t#7v~na*IC@SO$j>i@_g}_>e=>jvRE#8;V-RvrraHVFH`1&KHjyg0xVW;l zG3G@V4Q|cy>%IfOX046Wc9}BBTpm7x2=38aiWm!|(n8FM1XiLh@I^HQK#jK_ZvX7q zfjPAzvs=A3FHq}#XRcg&Y?yaT@n@fraPw(#(=NxU4U^44S}7i?6k#kWu9+YegJUA| zJUR$JZg#9Z{OxPcrMQDAa8K8GgX0HAYt?etfkTq6ONI_4H?}(`eR@p5je7R6ag^ZB zt5>cMt;$b-hifAzs1B=W=D`@3p!D|NZIR)?fM{<6gt)ccp69(*5~^tpaRtoq30+c} zLQwctV*$WTjrM>IJ^>~mrHpVKMvJ+DVa*o=vpi%b29y90sY4aXa&mK1$v96PrZ&+4 zrt|S_^i@t;P13oL#pox!yiY7^-a|G^JDMGwPz2WJKIPc~pMU^GZ_S~r#PC5!JmgJE z$)43V`*c~biUY)~L#mZ+%cj9-Iun=*H)UwxQcpg0M;`R4jtp7IMHn^*j+Y*feXlpMr{)3P>oTuB+S>1@16$hdsobLS-R4{g)9F z^YSwIN3-J%o1?8LQ&PT zA0USbfx-2m1>9;W$|x@L1-j5rAog4jg?nCl7_iHja#LT&=p&`vvHa*@z`7`B++$(E zVkko)sx#|h(xl`81jWmHeNE|;Z|8=NWHOQ$Ygdn>o-X1L0MW1qd+Q3GU7rcSPoD29;}5u%|H zU63g3&F--7>wH^bj2Ot))7u-W>o+ew`|K%B`RO19XiF?V=e_``#S$RlSZRnIJv$0y zi;%~Pz%<~ZH4pj8U1NZ(1>&LIzgZ=yYKR)HD5$Al--RDLnu{e210jjZ#MQ#;)*_ZSXHyO>NJ%H>0=@`9!o z&grxl1XEmkuj~;WZEd)atU}6`6!g@pF6H7g+_A0M zvd-HS?w0JKRQT)Ya-V30VM;@K8^J=vDvzAKM_8n9%WJA(d)?U=rf%iAeR^qd@|}dQ z65PJB2vmtVKRfCK2~ZD9mlt5-sSdmUY)Qkl#dv2lj2u7w@B(zpXob1G_KFCFMxdL; z8fmJWh}Z49%zZMn3s={pb3%fa)#V}=sk~!h);+a%@=|gP0o0U~TP=~NAd=<*9c~p3 zO)eYc;#fgzP_{YHlm*v)GXFQ%x?xG)#sLB9eG(~N?{WuN(Kua z>Uw#Y$O|KUJ`?xr?9vvT=0p&oVj&;CS+%wWTSJcC>5@<_gazBIr=mGt2WCv1sN{LD z`3}|x?vCyGf%fFDLI&;tjq#;+oICam1Wt|QOmJx)g(o+$=MCRO%0LE=@}pqd1!a3f zTIuR%^^Lvr#HNER^EX=i-oOwhXE9RcfY#tz&8S0sLg$Oxc6g(?p;V~qtTm5F(2eKAW}2A&r6ZmZEomqDO)@ zT%mb9{3j~XP5rm6Nkf*RT8mQ_4=mo^e%y_xBhclBBo|~V%S*0e-yaU$s`S$HC@|GA zWkmd%%s`OaH4-#zeY;ZX(0-`9p#Y>LLEyqVbh^~g2sHy=*OR?I8>zA%} z08srHCvLjVm#x8t1P-`drs?U7?4S{LXKxiyONdbpkAYS+T2jwyb`Un^<)U1(~ z4j?W4W*zsTpbT+wN3aJpYb;*_y15%`5Qb3Q#$rY8~!r7x?v=$!>JT22# zG^VhFE;D0_FcWuj{SN0%X!= z)MluQgm^m-trO{X(+_17Vxxx=%ul7sN)H3cK?88HU4%&?qxx?zl`a<@B}$o6e5=9x zXdr_>GLVF(lm$;hhDQSG7H(93q?*&-UFcu2_d_7K2Ty0 zNWOu7p_}&9BGQcr>lm1Y*li1WiUZc%$F_12W4^!szYmg7S zH4W+n1q=&C+D%??nqQsxA|KxY)XQ%-D{XPf?g%A#6ogK(rT7dGx&6p+Frr(*@W6nn zE8QiB!9ZRMIFC6hx|r6jfB<#IZBsdeEah(oB&F24hzO=hhwBi2%bY^;^vxcRu}57n zU5wW3l$jdA5LI1|^xo%PEY%esc5+ILYf_1Z{-=ze#dWmP8Ie#%?8a$lO2j?>o?5)E zdphI5dX1UT>>#bUnl+ce`ZCGySpZ-Y%ek@*+rD@|t^jdYk>K6PrxLahauw_>O>jLe z7Zlc#Nvb_gG!m{p_%M8fnNW)2`r`Dcd>V8@9L$FZY4?9?<0Ip{B2uGJwlUNh7SlXC+x8JSMwPmYmaAZJ#nI+7PuBA#D%%z9f z9k!R=?!COO`DS9KWApHGkgp8j=k;LGQ_0gB^is{}Rpg-)Mxdw2omv8jdq zm|}RU_9`c_oB)HGc#*N`fL&#k63>juK&xcA5wn8ZfoCpgFhhv$&WNR87Cx{ZpPrsR z*6?Uc-&|MsRytfCF1L+Le(js*0nqf>uv~vElmPcJ2^^O9jD=3(?#Ss>7?>iA?o$|g z7aa%6|mToW?ScdjJi;E5M3Jsm*cxW zn(n*OuJS_!EsX4u1@KTbLl`6y_fJqg*$%#+sT~LucpGJAxGVVskw!Up7HFl`niG&i zobKaX#lUKIwFjR=6QI}A5A&cQ89*ew3&*yeV#hq5P6i_H%}_<{IuHlnZGwZVYBi zOx7DaWzM;o+dE?%J3i0xF|=+b)-4Hw?l4g=%<fgX_2&0 ziAjo5(V_^MN{dn{LZU`gqD3N6_+4l8JfF|!`}?QY^Sp}p%=?^kpZmV<>$>h-#W0!~pvPk<@?8u6jlbaVcAMRwg#hUC5vPf#Az zS=z0?(@~v$0Q#91Cn}D~^Yoy;F_)aS;=WY+pv~jkvkaNgtS!)SOaFYwC2;O@MBJ-1 z9WR1`QR$X)=3rrg@;aCJsEj`Cw+7kSVo}GT=TgKddYYVj@ztLlb#66c(yBj2hTXV} zuf$QUWM=d6xx~u@^ynL9_*W{UwXcUXO$3|hy0ueoEe)Au%Wmbp^7EEDNspUR^G<3m zvrU(uK1Y~THTv;r%T9_Mv(T{fM%lpJUt3ZS4G?A)ne{VWrB8}v>-cDQ=rz(Au&sKO zIdkuwr_V{NQv8B<(L7A9i~UCP`@j*;i4z+S3IOMQT71C#`SZt2mRiAP72s2O9NIvo zMN8&n^Inc#soG3~iGbAltb0n-bnk0E6D49VEL-)`%@5FgKjXcv1B{_sKgEr1JT{Mz z1iEme+HXkYfMWJ+b@M;=isp+s1C7(yzbOen(Fa2%yta*P?ro6*G$6W+CC-jIEKC zhzj7x7hw3_mMBnbr1zyI$#mY}-aJ%ge&VldR`-jd}Y2ddPE8V7XT)@1r^hV-hszXsj$q4owuE&VdwiR_aOrzQz%!&B9ToX) zx+FjS{;D@6ebX<-4BKOI@)Y>kk9w3=Vs3CJ!Z`>g-M=dB;&!gp+ zH6ZUl13gcD88@A&#la_{v!~E$H<_JJGJ58SC@9DUmu6(W)Z?KOnb2>$TQi#jI$su2 zXVK1;X4JfG=8s3QF~x0Y(~_cUdzv$j)YQIAf?iJ{x-0w}3=p znh>~dhoW1R;pZ+=e_9x9`($K>!y|(7%94ITUQUcu`G24ucfo*xb&I@Pr zw-Yq56~iQ7sLN^k6C-Y!4YFBrklb`W^GbFSFc$P=M@yt?dUJzY?#^`y@nBGFOL$7F zpAeH&R1f=V_WxjRp2&~r{6#oMtEGHgE`$4q+aGfT8?Wmmd1X>6H`@g}`jm2Q%5G{Yb!U#85jpyUM4=v^ZTu(E+=lSDSYU zz37?5o@t`t3{8F>W$9PXy#4*u2q4F`x~r$o^CMa*B=lpIix1i6Ud*az2%MJRcReg1 zquLy#SC*USF1nZucxNn#XCr2D>nN?>9iWuQ_eUNkWjgXFz63-AE?(DGsY5g@HIW*n z$uAHfToK8t*Mr%ix8>?lA^z#fi<1uQ@(4V6_;C5#7QH8J<1;8_@8h2x$d#$G<5>0N zrVqYnDw2_?cT`qS_TerYcOfOTJYJ?&chyXeCJ&i4q2XWhaCo{iGeZBA@q_8Uj)}{J zXc{F9_^bJV5*Az3mbo`3Re8eS7q-L?-m@^&u^_~k)~DUrac=aQ`L)EvFd#%{COcVR zKiWzQQj$GbkRgRa&~!F%1XHoCyiW&e(9_1ayAA!QnOFD?-+zb7y=KGMRmY~TJ(?4_ zCcIUS5Gt=ho*kr_q0T?W?T=gwiriSoqlHOVu3jZVfUdl_0sRfzr^wR8Wj#TH-R9W! z%(!HPz-FzJj;N~oNv}Ej1mwYF9M`@51LE+fZ<|0I;t8uR{Wd`j70hAH(};-bS-!9NI><6Wlf-*^+z`2Ng2HgXFa ztB|x1&Tfm^J{eZ1yAX2J?Cqydn04P%^j+sugq)a|F^PRJaF@LZ}d~_FdbE9yw`1U2uERF3Cep znQ)W$@Zfwtt|Y?K_^__kgl;PT3oN57biKMh+6+yzkxcvO4E+1}q+JSj1gSNh=U)iZ1OT2}_86!5SY)sQiCUXdP1*YVuC3zx8U?tE4?| z8AS2`u~E;K;~PHKp}>Uf%Av8v7}|d#K-MacqMItXyY+!pZ_oVo3HwXo?QG^kJX8`4$QfUKa%w$vmoZ9By2wA3#vTNPjTTO+( z#LZIy!nArv!bmZ?bC@k&Mz85@Bt8+Ou*I$&IHLNBEu7DTYsOe)i1I-9lc_7jZw11MlHX59#_jz zP`AC(PKi^uGHOC7?IWUr>1AOrX1-DD#hUK$kwI!28%!I*D|Hws3&Q1pDm$B43u4}$ zv_{Ip%KGnEWOKc0*n zn@(*W>A|r&d;@eg_Sx|ZpSJh2dPfs-2Hb zTvc2JhmSA0C9(%Afpn2MTnS2hCX<~H&cK+S-3WPz3QLCuA?zf>b3W=!UPtVlwu1p>$g?A-p80X3-|w+hPVU`EZNcIcq$rdiYM*=9T>Vh<5w6$uG2ti$ei z83QI1d&FpolKEoXmU0&^*Mznvw-sH}=_ZBEr_ax^PZToq-_))>2}-MzlM{kBek-<` z@GZ$O?=~-{m5dNBR*Dh%a{65p5G#}O`TI`{IT~r+9=U+i#2J9>O0DX%)9cYRh}u~_ z?aGOb3|wS7Yep_6`7MFUm)&<1*z({bGsFC5k$rCDEVmQWo;1?qE!R*B_BX@b^YpE! z-xQG<%m$18Pr6Q@DAbm#BOtk2{@2cmq7iS2?(XiY-18s{toEUivx`>lW{FLGGmJ65 z^q}US*f;kjB0jyi=V)}3%_1J`mtSwtrlpJLWJjX}`S9w`3^&WQwUa#F287aQ3DKV+ z2XBOKv)+{VQ`J5Eo)a%-CSL&7s#xl#uM_4|l8U8+L>Y6pqGw^~shqgSPz+?nQUYQ5rntvxqF}=*LwK0xgjms0+J4Rqjg1Wi*q#p^|vtU*e*qiYT@1YHdKfCN;gi zz^4+3N(Er~bz74c`HFhxSgn|oD<)NF>*_uR8GJ?2;kBX%)7V&mr!z0%N|Kx8X-uvp z!k}jJ&k2z0&TQ%~15CIQMdfivCr?{hcMH?7aznz5kAnKrUyZ9TQ{^IrPuPn|8l`tU ziY;O2yfBX+e}6GT#;-NgabMBeSHA%-ZKV3kobWW`<#si7p}aVH{lM*LgIW8>uH3q9 zkti1sNOnqaJB@gteC{@T0R=ZX4UROVs0RsYhm^=`UdN3>q2z9M)!bi^Otw^o3*ApD zT6a&Nx;dfKUZ9{_L_FrOnC}!3XkzUhIf8{eP~R$24wT*en3+3q1)M||ir0RGmB5h| z4-y&rt5sgro?qw;R4MSZ?lRFk*`^~HMQPUe$#h6SSlTD|@afZOQ$n_ZpF!`Eh1Z%| zD<&HpBwg;jkTiS27-|G1{=muXGc7+_)(p@S)ocvspLKa|WV~Nvo<(0MTX>ifDRVM; zr8iwwmc$Ovf*wNDyXf{}ER#o!W6^vX7w>&~Zt~E22YtslybiV!t;E+f=Hvtl(`<6V z&dk;G7bh0NM%ai4FzF$Rxd33a@N6tCxfwQ!TF1b4is(Yg^B6&Mcu^JzNs?(g#p=#^ z3>kyN7UzIp{GCX$Dj`lz51-N2Y%%LGHJVjOd0n>q1pV^PJh6_2YNo4_h|y5L)Bb?yVac03cS-kb52%%!yozG{fRiJf8 zJ971809<9Xfp8U6AF&pF4C)wni?+}-d3XW+dgb=(uRrpBMoo3?`Fac3Y}P!vi*bc( zRSix-zZgPm|NR|}gsC^GuW9;~2)2AH4T>4%s#A46c&YC0pwARCJxh2`chglmX((Vy zin0Exl+2T8$poxiS!AkG-DYTv?n0A&x0ba;yyfzsc~}w77M!p!Lm3N7Yq!vZ>{#jm z148Ndn5mnLl(_=Lfl2G`UK%*^>M#Xkg^`r{(=^DI_%|e8IZ=P2|qhoF=^=jDoQ*H z_x%I{nG-sK;ok(xbbrKbwxhYBy&#yH{-!_yGy9TIUU+6?O-&-V!XY5g2Z>%uphWAl3}0fU)d!;88SuFRb!=;xbdC@c zQ>8gav*NkTJnF;WxqKMsMMVlH(IyipL2PUaTX8PMQ1Vl{JQU60X5Iu=Uj7vVg`0tRd;6D0rPPQTDWUrjybuH&r1Y5aD-g#QPIF)BLYLL!U;pCj=H@1hA5>n0(+oz1 z^^lf>j<|?s0~wUoI!hbr@(zbT*N(T6a9B9=bivBNFLC-UvPiQkB*U@mR zre)06Hltrtcvx9^SXyP;s&SgP)st3Hdmb%9j?#bz{BNhHY}R(1x5@ks;)g zs}oH+j5LZZO{!tEBI}+v^*x8ZiU!!{D2PKN41!#_$;{K0t?bBc8S-4oYp4-WZ%vC|iw?|gEX)OWc3!~;21 zbb#@#xbPGT3`|Dz>A^h}b^4+!3%SMTm)(_nx!E)_rXc%Ahh@~Qn7%A1+h^>ay>1s7 z!BM|WCM1+zGv+3$LkZVA9s&K2^z$5^pSWbJDD1e`uh02noEiJ-uIS6L){zMhBUOZH zpI=dhsw`_!ipty}Ao2^610cSS)bLGq5IFN7Fubz#Op2tSFZSS1ce@2e2YCT zq(!^ywk%(1(#L2;2*mz_p0IdOAnbng#2bk#H^AjMbF-$v^~jq-licw%_%Iws+-#HC zx61?R_pZJEp|j;EN+p|jeD$UF?0tax{I}U{^C??EhJ24s)rNh7Gq#8kp03BHXs=rR z`cW_9){U13Tt$!n&mV(|gaen8Z9-g9hlmJyvsNdhUQwnd)f)WW0tm7$&0>#rygiCC z)^N{lbq|VP=R293ab$dl5#%aA)^FPoa6jVf1|j3u3%Kq~7QFhHjsm6WjCWC3QKazy zjCtVjMRy^fTQZ}7^M39XW}$jM=4HMDl~QH?!;*VR|`(=Rg1N!}=h zaedg8mPghal&q~Y^!Qfsj>Goi!QQM7g|G6LmAAfS0CQ^|GP~s)C@U(waBqq(Pe4oV zdCcQDa%AlM`HnUu`B9QN@5YXzZ!-j!D3d>?^?2FDJGm&aFMXWO47mNUzKMAgn>WPet}2z}DU`h~djiE_;&(zmfA4c_vFG<* zr9N6uBY7k8`dy;xn+gddXC)TDbW5avLBPtoHx zm+Xt8#S32NGqM&NHqYKKHUoE(@X$^z=^Mb>^Ue0#MV}pzy@bjc zAEovV?(w4#(~82q9^LwvP>i&#Nt z$I?v|J+B7t{~#kfp7vD&5{QRQ;?l=20yY^j(>doR@)CZ>Bi3Reok$8Ho8Ucu?Rsb3 z>yTLq))5Riw)ovx%kRhK;EF6~Y)+cfUsI%ip2?2pq1#Pn`J66G(q}Pq2>lYwuSxt@ zho&Km0C?9hv%m)va*HxrrD)U8oXQuUX+}>|z!1{#XbH^+Zy_e^e8N5GoE=<+^li+W z;=oc%*xM5b^xvH_eD;KkY3;U0aU}W|8<3j6NW8NaUoH`_R3U3%@bh)>r>r7hFGkg~gu;#vIvoj60|z)GdQyJ~~1 z*lh}Q){1B%x<1fI?0k8{W=T3?R#gktp_iwW)K~Z@2M8WEai0hrVBG#&S zwTyB9rf&(;mYD6oI@?j{67SppfVBT^Omp>4;%S!SaXL-u_+**R{kZFIEtwoJOtiv@s*NdD8;DDW<&mz28Xi8s`4qLe{;n0!e)S^rbz#Q#32SYw&XD5Twi#kgG}AI7x~w z`-8NZd*oyacKV@LIM|yFe)6dUxeLzu2e{JVKqm?}{Y>IJhBi_wnFNW9eL;pGo=%mf zL%_u9FFs|fw}Z=#puLUxv47*YH_M6(OGeGMGWCM-5r`?-b*GHWZsVwkF00Yh>q9qu z9>CvwN#L{eV88}wrsr?|?oU*zpcETWPxl4IV~UybjEy;#y^Z06PJ3K%Sa=lXVHlLv zOyjld3>`c1J1FGWVw5u!T2?&Am0an_Rj;bj+^l-!7#Y(Yew8P3C+g|@loZP8FZvu8 z7dy~*>;SX}!9nKzzg*aeU&O0~NJYW(@1JDx!j>Ju1Jw2)cJg8kVK@ryhg*3spY;Nc z#3as#g z?$jXSgd|Ah%$YN%{>gxeS>Ma)7#wA;&rf%J|8SYGLO0_u6aa?3qta~It~|Jn>}go} z0ot$8zvp9+ooeuTqun<21-9=X`(h*GJdEEJmz)i3Vn{rxG+cxfel8MR1PF{J@0%IsT#$3}#;!t}w{lpgT>g`mm#>L?b18_3- zbjC-i;Z~rz0YBt$TG6?&hk-41*bP-` zJ>7-&-MBvXhYAs-8=`xb{Q2{`((T$aaEanNXwHne29b?*3Hh_W=)GL?C#!(I%Qv9LK1^!)( zzH(TkB6#xoIPOzg?q0KF4**QK*0ns!8DwGdfm>U_0&VA`-Lve(E4S6v>aa}s_8t^g z)lS{uZ;YDSA@FaytXa~UM0RJoZ%@*niTqn{Fx|qp2^n_<$P7{Pv&^MQ6~}R)_Ka!- zMDn4qA}{1??ukEyO-H)PG7tD-!)MA?{^3PEKAdsFh}s5q6oK(=-%r+Azi`2&kQmsg z|F~c7!e=7rVAkG@$&+yURe0D2v(fN~Ipmfpdkz^^<}Uv4l!m5z95dYOsho@gS#m$t?cIB zE6s-2>J@RYZpnk%kt#snIV1n_AJe4sdrrc3B4eJ0qCI_4o{z!#hHHT5cR74^O>M7O zR3IsUl;QK!9hIcaH`n6(tepps&HNL8NWBig&)ii1?mv`(*R=M9RQT#i4HOBtNw)4% z31RgZ_WyWl@$8Fx>bJ!-1FvgI#83Gv2K4wAbg9z@75#AY5b7rGP4W0{qMs;sUKr~No_-S z+s__#w94#_w(Ntn_K~im*78u(JSTNXA)D_b)(Q5eGiqzetH(@cqS_?mb+6#^3g4y! z?5^_+w_(sVxFYT=qJ2h+p2wY(s6%ppPZ6$r*kBx+9v;|sAe!9*0P_%*=AN0};s;vB zp#PkMoj;UCCTBZ}nAB=gSq9&Wuao28|6JlXrxkn>T)WfPH<{fNs9$hn9jaHQS0eHiSQcYSiSd}?&CID_Kz$;60u8x_&` zqRu;#?<)`CBK?{>bpE==%sq6;9qU9&PQb#aXze}gQFA10{L(P>TJ;k2jmONe-u~Wz zB*37@iuS3r)t6(D>z``)-J;}CjN_y$1mk$XV&_x*Z0AzB42ikdN&Yx@<}CU<#Ws+h zaw4n1!^+9d!wvL-eVcn9zp+8Kh@epFl#wH_)HL4ALFe^KV zyU}sFM$_LaR-(I+BjB+VMyvZKWsRNqw&WEjQ<9dz$^o*z@zV=!8T-BvsU9&iH-+CJOZL0W9-z(sLK8I;mCFv< zB7;Py2%AaMFNfQ3zW|v&>8}zy^0t<}hBs#$Vpy2HiN zJXj&Y!(qOiMMe`^`9Ndd{YtaV5Mlrpz!_IFGCZeEChDzyO2Pp- z9QEXuA0fMpHG2m)xK^v;LP)VtYW&nvp4?imh>o@;2}H>Zuh3oQij4WBLv8e{*mCfxh+`G-jVmbH3%! zYp&l1wTM?fy}{UbQqBu&O=5z>!W0skc{le@!tzOl@Z5on-yI>H1F3u zVzAx3{~GS7Q~{>&-f39H@+dY8W3zIRv0Z+&VI0kad5u(V&^FzZzy0Y^_0a7lYY$CX z=$iuVO`a#F0Oou#?mK1OxJv=TvxgZrWxz;`yN8OM4U4q8--7Xynkq5*-zi4oBAgL# zPPYq0C}(nlt*yo8tjewg7>OZ(m%kE3DDWhoT~f*#jel<3o2~n|E@dVOP(6{c16@`2 zqn#omBDhl`jb4&H3x0!juTH@5oTo3qXE|S;GhRH2`eGsK^iNTxjH-_OwqxQjY?~ zk2DQ_-%Ob>U#IsFGWyX}A8OLbQQ4w1k$DNpUxL!3$QAhmW#5k0EEYeP=hoAk0!kW5 z{gBCB0sl2km*Cx&iaEYzw}{*NrNVc6s-y=In>UXiL;aiLAXyVB7IVJcAS6IET7Ect zd9`}*IaCje?-LeBcvbm3iLA;(7jg#DJ-#SZ<~rPYMLK+^?xmv^t`E;tq)nFWymnz~ z6VA2$x93-_o%LyNBx4|nyaIUbo7nS7w4MduK?uxVvS7z{jxhtS&uSAFM1y!@H&oV- zj@07L#pwbC*8`0nr z$BQ1xB$ezW_f=OgNq}phGeezqLgcy(qR-`JpMT^M!3<{KNk6mp8{4n)W&+nPAg@j4NoU&}ESZfy1pyw>6hJxT6eFy|+*6hOqGENK2a1B%y zdu)D9atNWcbE+9d`LA8w&uj#5JTrFMyV9P7rDF4- z_)r=u&&7DD#Jo`(YKFr5Z32g{Fg8>EkDW>a*gTm6#amC)h(@Ug^o zytPT(z<}Q!jEr~ zJW@v~40_@+C`0-(go1d4@LiF9ypJsVeUjK34LT(e2tvX9F3`8Og? zEnH8%6>_mI8=23%%lq$-LD}bJcyZeq3McnHTd9oM7(XbOgke(( zvL1rT)Pj~VdC7Y-dNImQl+oL;G(}Heg))fSBMTnP(hR;l8l=FGDDO;Z&m}rtKR4b( z-#mkK4EaUeXlV|x$PXSj)zYIgi-7Wcb*tRRT&3j>3Ao2SV@M1SPhDF(8wmjBTP!%u z6#v_{BhL>e?Y_&B{m%N4#_n@Lso>IHEaulW3@S39ndJI=&tXTO5{Mc7Eegewt zf$cRO!EtFQfU*u(ybPkj^5PJ1h`vd=9u}$&VcaDtq;V0X*M8E((lD|TxGSu zIdlHA;@>5}pm4&N_V*xZeIF%X-|@2d?PnUR{=F{d95D&$p?2^83Fqr1a}46ZnX36| zWfEA)w6T?>?GndG$;Ft6u-3EY>F(U?Hf6BANXv*X) z9OXbpNJi~k?;mlonj{@aB5j>d#B9|Ig`kAE-;6fdYoqNW#wt_SY@0yTfy5Ic0D(*7 z3BG5}813{LCx|@H*`rYP=HGXAb-iwFt51_5 z4HHWFYWio1oHYTX)>5y}ML2lr!o%S2ib}z_#GA;&fD6ps9khHiy>W~l-1hgucMX}l z4q=HcxZwG`w1ULPzcEP=Nn4}x8(*l;(CCKjO_(Az9p4ir`b$ev7mPiLQ@Cu^ez;9= z0yLx9EDugFwesgstqW+)$zV5C5gL$^9-$Qj+nQn=_R)SkW(fT_WGqG-B}q&(#%~t# zs`d{Nyn)Q0=-ekI0wzWG2#ZceQxW~7>Wqzg%uhO&51^`gxH4tg(asIZBDFq;g9_IN+3vzOzJaPtH5g?*tA1=Pq}U6E@Wq zjqwn%$13Ght+(EUjPp(-U3HJQyxlonFLRc$6Cd~JDTBe6`{N4Umo@Yg_0iwAjlp?z z1Wrwa#GCW){*LzU`JuD(<}DxpWP5<*NErM|fBm2D>Bb|LP74<=I}((^PbVxt`=xp# zr^a>t%p)K{EAYjiq>bxnyFhibcl&uFm3;3O*MEpy0>sbUBP0Aj!JjSM#qA&bfrA&~ z@;-NZ*T-i@AVC%6g=r|0&&V4Bxa&7?1UdFP!l%(7ST8lcn&}{`1g3AN&GNO{*PY0Y zQ=`RfU7B|~T6@pLeeXD&AToX2nH+f#sR+C0q`fu)(ElDbHHjDqp-RpiF&S_3)(R2^!_&x&iAc3`(r;@~-d&eB_z)kS)&oXuK)3$J%1>_Owks z@vkpYiYcDXXU?2ig1dowfR4Ju66VW$Ft%|{OpmGYu4SwQK=YMoCqEBLMe)KX~yT&}KtCjResToWc^ptgvX-$(} zsI;jGC?l9eDRnv&owI+J`Y97LMh-WPS-}VObcCrPQJzS# zh({FFdBDdif-<&#=rvvO z$Y|=+sb@P1nLG#aZiv*Nq*@yVk|XgjNEmx`!@ny{XU)zLfK)hfR-&p?TWYM@zBm^wO&huhyczw+&(w zq9lSGs&JzT78K|e{Qt#|TtGs)JKIjWeOv^Y{sM}jOy?4Q|KZ0LoVe+N_yl&=Z{Z5?C#{dUPr0?Xvijw9omxMvs@OlV| zr{|?GlViSg!eB%8+Uq<+{7DNci6n3swKuwqu*VrfD17rO^)c=HSgyC2ok0QD;zklDrZb7_^W?0Nq-5{`$2QDzw7_+!}TRI9B?VNYs53gNU zWqU`1HJPqHC1*tckWshevTeaOY9mL7;gF%QHq1v)pG;%j# zI;q#7hsDd#zej>QNNbOr2v)}7r6EN#hy11{bfOeaLGrX(R(iSUAC>DPYir)TyR)h1 zGeuaey~#j*SgKRT1eCgP;==Q-DH~;vKfu%joj=ELfc??H=H2h2>6Y^DuYY?5*A0PT`4Cr%)&BhzfAdzs7V1JzS1Px3le>jBDTs*y z-s@tnkLbfUNOX3W^}N9C_1_imkT`K!t*PFPCKcgGZPqkk(p@+MR>-Skp1-tcSV)yO zyM8Bl)n#2WE0Xvle%^Fekv5hI%W9*c;)=ZVH^iPN=VE^uR79_eBlAYcq)RuW?g+AJ z*1Wylh$gz^@)%@1Az`=rhdh>}{PhCJ$$mXuLlPXMbYzb%L>@-Jrih#>Isq-d<^OZP z{_!H?e*W}i$NT{!>_8QE*shT@o?@!img_mX7HEEt+q~CTEa%QS2tOXd5u>*w(Ap76 z5Nr!9VJeSut}uSsHW4R`` z0I0u`yvc11;SO&9u61BfhJgoRF}dXVin9d8_Uo3osa6u5@)2sJ31qlOTv(uku#5)b z(BmGRvglbx|1>Ar_zevM?O=6p@?Z6KKRgBOCjj{+NzSdu`*+}D@z~;M0radvTjIah zHHjO&dnyh=YsI09qC)^R=t#8m6mNloaw_sh?w3i^L0xn&ShKJX{e>(LOAg))8_z3b zfOkK>A@gm!(;&L{i3ZIr3V{^S5(2JXsxp&WyF=T28Iwb4#We#Y7sWY zubC*vJC0=iZ&{RiJ;URh+J}6FLQKJH#U!^Y)=q>a+38Cp1w}ozOTTm2Zae}^0+VQ} znr|5u(W(W!IHyiNxasE0u;M{nv;;SmJ1vr&h~j3b52thl9=GKw98U1W@$#i)m4X?Y z8QlN7&8fHxMw@AL{hF}~D>Xi7I;k%H%<@BLDGZE4$+v}F@&`|F8?0K+Wv3@YaIY}c zOtT?e(R@?;;hYnFi`=^4i#xL>N(6I<~nE26zza#?;s(*6clbEavtLN zi}K=wZ%=y_SD`R^d&!ZIEAIRpijg7l?7JxEC+IP{lY8Qf9XpS3V2ZKwU3o$>YV+KZ z**f28?M_<@v@gA!I|y6Bz0oiJlOcC*Ct;FJ8D#v%t>y;{Xw!t zl^i+pqSqKwQ1APE0(LToc*r429<-k3ofL4;(sn z;N{VQY`2WW^`V#ktxlyBH{(#fhl{sj!3u?0Z)j^2xuB4?HYHsB8}G=u_}_SkkD=+f zk6B3hM39_>F%MIWd{>?5#h?*$$V8LT6#Xy+Vt7&C`quWDYS(TaD}%P21TC;PKEw^3 zQPPWczBGJmQ+PrqIfewPECLj`?a;=3$I$ZAR81jC*KtxNl(PP(RAJ_G&<4tanKD&@ zy$QRB{hf9`e-DjYUVPlt9~ZQp*$~un!Sm|N*UT3}Wk{?rRnb4%KLpg|l`1df?=6Ji zA4EqtbPiRZyw7qlSAt?L3Q(2uB4}jRe*?V-D3Upm3x^9FtwnsGOD|CBR!IxX6DwEg zfOkHGtt1;Vcp~5Hr+*{DcaE=%(UL1#-9eE2LCn1Jn}76wvdGp6{9Dh)T7bN^)qH{- zmEy}Fd+rqti(QH_7-&BJg9LzlhrEoK%2A)BUn4hE5Mu%FNW!tll=wSN3^iPcFXbeT zw;CJ$?ej6+KQH567O$EvdWE7t8fEIs;>yTW`x@6ZkU{|y@OX68K%dM8|9aA#IC=n; zp!E7*NZIv2#Xo%k5@xZRommKmmzX*0+ZW1^2)yjr0jCmqJphhvAL5|PD3RXrDp(w@ zM`lxC2u`L;+gnU?4-VP8|6l$xcLnV{^AK*u5|9_55}9&ng;h<+a@FY!;|ikMXw~M& zMwUa{`z_$kTwKl^D%VOkn&H9;p4$lS5_jd?n`C8*Y3HkuNkl#=O`SVH>BT)FZZ=d} zb;B&XA;JF3Q+`PQGYnM2h6wy-7u{!vCQGbV_dUC0Sij(>^BCw`=>Yfc+LV|u+w}`g z(0r2Ir;&%&&M?tAZYZ^U^#u1@F;NCBT{H9wOf*M=$=dlk-Lt0felHEI$y?73(#gu_ zF^KF84CMELr|Tq}g@4)yg4;jD0r44^w)4~q8RAgWCLXt`nvAtPa^b=S&t1)9)tLED zGDj;MloKsUj1l32#s34c-~cby-~8zQtins)*d6&6nD$ro(^Z^kg_aPUQA~ zxCM#xsoun56V0oI>Y`!na2{<+-7|d>olO3~4U`Nz@groWc5Zu@Y&BsQK^? zR8wEfqs^OZ89R#Tmze{l9&XbIzDAa{d??FMeBIoLJm#+8FA~VvMqo{;iYK)ISwj~K zL8FX}vozuUS0)g zchKU67&V2iH)n(R@zwhjNvbaXvSU1k6%dK+zi8NP8R4gD;f1NkG`QSY8fx@pP`p1W zD#^T(b$2_JdvPdgf1<&q9E+7fLAzsAOjogy1RnxFb(Yl#MRw8&yzrumszma5F4qTN zs($GKxa!t-%r^R$aoM>O|El(JAtti_<&%h*P2bBz@E#cU-$4^1-(c0Gq~piWZ`iow z=m}Aph2m}ACGVofn^oga6Q7g!gakq$RoI6c_-^f4xK9(K+=?XOXu>9)?!N#XZjZTK zm`kl0bKnxsy)mcb5#7Ylhsvtlq}$O(h(Oa;K$EKI^@T`wo+bELD=J~oOXuMH45KNe z_4bptedOq)c!jIgbg3WYlyHZxa_&#N7^852w9CkVig^(EDPwvHW^k69sMcvD<#I5D zH{9xh_;5gCRk;!FXg}l35{EyrZdV!No6SE{Se-_c7dH%W0Zf$#6Z}8)pROXx>!IH< zJSQMa`&fDl&mSfRq4A#LT{h4X@4^ODOQcKWG|8>0$x+8QI||T6H#A_E9ow7ho3#5x z)nD=OQ(D=duDws2SIeO6S#?>8{{3%7D@Z3x;0n)?YXo`!2d;{fB=Re->+3#!)2bMS zBWLWu-8RWyp}lPR;CrJunVzxZ5`QrOHL9$}vbP;^c#B5lAF(Mk{DxnQB0^?Cl*J8u zP=NmZ)IE;R+*@r;?zk4g5 zoO+EDm&HgEqYyKkx#YR&;5(I}RrG=J)ehBeA@_631bFOxf0yhPKz%cH9O>TUjJ~EJ z+K|ycg;oYXUdfTYX4&6%dfJxiFWx-VUc0aV_JtQtQT8uYsH};xTYs91D7;{$FNuF3iX@xFvd9T%7OC0EVFSKPQn{M~Q{kL~+*mSe;_ zdCI~4ZOxZBNE@0?Cc&@Jg%q(2GHe(}IoLke3K8)0^yiOvlbj~mNG*;LQ+O>4G$3mh zF|0X*tH=6bx$lG=wMQW(-yP$$-`hY+5|WHtv)tW+ z$@C1-b1h-Vi!lcp}DIUl!P#xsobS622bv$QHCxV9DA=Wn0v-D z)ST4qt2D@LxaQrIxe6_Bmp5*BFs@|AgAZY(<&Nq`J7eq5V^8$kc5%&UfK^YKjWH1^ zGVz1uTJ9G-FQ;CTd@&O+hUC1Pt!v^r$Zn+)4japaF6PKTBohakoTQKKr%~(`=Cl}3 zpj2(%zDpQs zOrU1vS31?1lByQ*fxCJ++_-U4K*k}-Tvu1n%9S&}f`#L)u&O@))MJw=<7k0Q^xt3a z<5)SR5t^)B5ekem`NA;7m3e z;L;He&hgCn1?T25M*NK^#x9&MmG=(bz=n$Y9a^h`2X@{+xugf1irqUE`81?-^<(f2 z)5ny?Xz<_YR)e^Z5nw+S-w@UwaM#&>Fz4(N^si6o?$o^S1aq2N2_6lwUE9vhRg-@J zo2%`rg2Uf?3Q>R(Kk1(S->=tG8i|s+F(Xx3ri!pcIvBX*594lyIA5N6f?OLrGEdmh z9S@BEa=_ss$qhl&LmN>WgFKKqMV~=${zkieQsDE?Z;`7Ntks3q`sJi4cWl|~@u-Kd zcMk&%%r-r=ep?qV$BB0A?sVis>F~y-@&YmsMA4piq>hBO4}2>2aEW2sI=kmjVyFc> zH-Pc*SM$L#=Ed}NiRZ2V9{3!xXd^OD%N)SvXb@n=6QAYC8ZahCI-9w6%y1 z!x7L)Zk8v@5Ji#w5H5>eumZ6P?ip2ex~+cjt>)&8xj0MD6b^3;Q*?JrIv?pY3l8SC$6QUpum$|{it`z}hh)BxtZ%0XiW+4xYtsw}+dRq$e( zwath{s2YoYHmn^;^|A{iJ@u7n%8D!RwFOqgT5N9@U0<+wS+Viyyy`~w{87oAz z9rH;X^_07Uk5V>B{Bb4)@Z>vB2eCfxA)MI7M$qm{ki3OV0a^ElKAaG6Sd5x)*Fln1 zF0VQLC<=@WkDhE3!sr^Qvfz{zP})CGrgIz1WTC7Gv#C&~uOn6Im^~qZqUmKd7Folv zLZ!UYUr&%my3}6p;PuaB3`OHm(4oHTR<(_5OGCLaP0!2jADN-HJF-FcIx@(nj@a`E z_Y*2*$+6TWGF9$;XaL4Ko|!fKGll=5$uOIcRBJbPQYy# zfH{!Mz!H8ZUpKH>8+kCUrk`Zj{eefvkzHdvu&G$uN=;8>-M{Tw^ljhpHQb5#S8QH< zw0+zfX+U_KIo34+s$$f!Ox-QHKdPBnng+z z394YPsk?4C>~GU|&-b(4voUy*O`fQG{ftpl{OsjhkfF9sBn~GNybD9!tDl*CgY*N? zYB0%~|1mImW=`!%Y(p{RHCVD~FMY2-pp6`fHcr^D5#sxE*6uexxNG@63B}&x^kN@=R zrB6^ay(V?3r2-QQwELp5}gbar8Qq(WV2z6n)FzmA&ha2*N>AgP8w!5U!8 zxKBH|q+r=xLUH+aj$#3WMK>surllqLASSgvDZE1=^7O6{Q?c3v77hk)Gkvo($1=LM z&Iee3tuC!$26SoMK-Y#?dC)(%`_9)i8eYU0gV4VBDZgiwIcVPiO6wqf&zxxvx6Jow z@E$%LZfs7QApxM?9{H9F{TroEYiQB^6${(X=lYkW>i-h}U`T4>hCpL=>~)qCjIgvH z98fcx5a2Ie$Zg;q5aaR1^MB8Lqdy3crnQN8^*>8$&j}80z*sW4abjc;zHlKO?u;!r z)Axo;c*lIdH(iDH=M|`&gi%c(cpHgMt1D`YkEG$>Vg|7xHuld&sb7Y^On>gI#l0J(&Mh-BLrpzo=IW7VX1w$k+JA|<-zid1d zrz{wXSd_cy3G5Y8{b9==NS||Q#e_u{ zQmx5A=TVY!5a=LrY3-c!VN@A<4dL5$!we8@tHPErCywWVl=mQfdYvdMRnp?WIaXI3 zxqiDwt=R&f?4M4Tl5zd_Gtew_PkBU6?>2b~5RbIVVoR z!>QA96pbS=pf2oAhPwmIT|&}vwW}zaP&)|3@TS9lqlbhk#!W#{CjWlnM$z#zUP1~2 zv*|Ix{&^U5G41l^aSzF43@8bFcHjQP)LI}spL=Oe+h(cZnZXp=Q(}PO{?ukD=A&-c zZ7EcCellXIcRoMSrmR7vfJ- z$5Ebc!%V35zuy~!P`_@UGtkP{~$v6#~7HLU9)sAg?)-C5tyFOeQQFq6IX3@}X>X&HRy5*VJ_S z`cDqLhNM*~uXPH&dyIQ=7R(#o-ek!PUu_3T#iDdh^5c+xzW+UmNi5?<9C_jcUsL}} zT$O4;gS+JZlOen>SHX`Gd~kjD6u6l%%|NqQkN;+%5w4wzL8js7F*jw`^|*y*(Z9A+ zeZ>N|N)vCaz`+9#?&VCN?;Tf+R3tM*HY`3Ta`$+P2q_7Aj3)n$KAdnp-nQCn{N3v_ zxpm$RzN;lRe_8r`z8kOO|FQR`;Z*i*+xS|mC9@2b6h-DpiZVs3NFszvGFD28D3p+B zq@oOkj19;YAu3~5lSZ@5p;8tKl{v$^|I~Fo_xo(`^W5A2+yBG;<=(FQ>S{Ti>pYL& zaqP!F+$}UAde}fZ2YCo_?r0*bz=|Y@k7g!WNGuc;*Pc+gIGYAS5i_6 zYDRPdZo2+$u|U{&lmBx>>u#-H5&$c6jQhqns?;t*PuH_RGz_@rQtFZKL2sXdE4aXF zP!4&J*flmoHr{dX*QzeOA2}-L-7KS?{jRV}lDJ|Km(^WAAea!U1K5NW*>>q3{g zgS&{BmO~AZv3o!>4-K0Uz^G!rr+K6D6!k*K+0&M=KiLizbjkdT5TEh;grmv0gZ<2< z<=JRI0N}Z~ZL6~L{U z>H6?}X`jk~?ZU+u%n39H8Q~qdOs;LiNMoie?7Zi-6^EB)evD!jD#ju!Papxr3HJ9_ zqtAguR~Q*M&U)!~Y%z%c!tecazmH^RGOG1GGm3lN$xCnNY%cWSnXmd1Ca2ijl1mBT zf;Xr(wQTi+T#`L?r08Nu=pEHLw-NL=06X3q76&&pvapsGde27vilrGv`2F)pd5XJ0 zY?`3LW+cVI33uZz_Q4PP2yL;SPic{oqCDGs4vS%yC6w{z1`Zx- zAq{sT5{vrAZwp`g6F0WZM`KGa=SSpf(Z^d!BCz24LzC$yCTJ zT8vmn%-Aq!cq&GvEncx8yY(}49^wjT~v+X-)h zIUPP?Y|ukWxi;liEmz&Oj`;w-KQl&(ZRi=;DXwQdcBX#>up$nb&X7S8G}K!zH)c&C z?u+DHukxwJetnamx_5sPVV239`RbDnubn4Klp)CI)DNtuGC_n|VUYwHr}<5NUX@d_ zNMaxz5^YH(wAu$p*5?nQC7U`i)JwNZ-H$wz-5fExwz}(PNC)#=xhTKbB3#03?-lFG z`CA?qI2V*%o4q3Swn2>imL*bx^13TbHCC94#Z4U>Dt@7H?q|7gNnexiR9&ZsPV3RW z`}O__eVXMOeXR#FrD3CWpys}D8Y7NzOu@9TJ3X#ZYNk>*_Genqcqs0M zSC5Fz$%B^W7O?8jgs0pgJp)s-Az4phf|*hr6CGkT*!#Y@w65s=Y$M98VK<-+HEsP| zRAH|EoQgB?`Y)#|^`mJ@$#FM+c_w_UqeYgPt9BRaGcu1`-roFp<#$0jnh4vHZRv7e z-LKq)X0q*as5s9HIy!ji7fmTU;TlZhYa_~hZ+t_ecA>oAa4jb2nH2Rjqvp_QQyDxd z9R|&I`v;&|jKUanOkVmhQrl|iGiNRIYnt1dpj3&Dqekt!4tF3Z@q4o0CB{ZmnTZp< zSJLghKd@CvZ7;bHofwhfC7LKS*j)mdQi$Q^?!ePM|+9o(fm`ef-SPZ~XX za*gU3q-c8xgIK{FJ-p4*EFc;&;1u5RaMv8cx^5$m-FTglp5`^kjOp>nQlKg^o1`~t zeV^+Mc<|$K!}4>}?Ii`4m{@~v?1lBgydC|0*9j%}M1-t|J!fr(wIx{$*ni%1ua~&5 z=CSUrifpHWnl6Zlcw+sAXLv{Skn0>Gjg4GtU01iNxM7~@lyA1>E6%`lwvnlX`$nZm z0X6lM4^Bb^mK^0vugMutuJ&!{WceBN6CJ06feHmZL-VHT$`l=*a*r zHaj?M9-V1Y`$)(eBmilr^0-HDw5m_bVkgxlQM*BW2_750=cQ|d1>0pz_KkMHrAXVy zlXbopPogP@AKcW)mLb?C&hQ56ojFLwsn>?}3VA37eWeibD%;v>vS->XX4WPtb;&*X zz0d+1mvrfHRQ)7yhKYM3kC8L@qXFMqW;_jSS83C&g*iQbbMEU*v|)0y|19cykB1Vp zE%ejkISv%YtzEUI(G1vn5*?#a!|40NyC&G6CH8-K+6Vw4|4k-3kWW zdQ}&S>BESN%eAgj4A|c$Xcv+M&aMUCX95tq`22>6#HPPDx<@%86|Kzee7~(cN@s(Ml;C&cR;DnU zCwkJp4t(4T>~!^&2%%Rb03&#>GXjcu=6b_jk~g&cV&wqm0z(JtUdl_Cr(3#Xw7s3~ z2AE`yBuW5gJVNXscaB_13l7*o$A}|C0t+|Xli`20B-+Q!$%Ct>8?zE!+kz zH7md9>!#ay!wxA*Mg;G)Tpy*mSr z2pc1GrT*5(ycDklL#V4h)BfzzqKjKdS01)--EsPA$)rRx$SC9sT*TO@7W9EvQvfKU z1w*S2u?D8#=&7cufAZ&5O3BiqcZmsQDVCXb31ww>pLtH?kOTXj=r=UAS({JPTw5zqJ) z_j!%0_Em~s+_7b?_;MPt`bUU>!gATp^gmx8e;5O{BOQpMjesg>gQw^fm1%?6x=j1T zW0HORkaEDcW0|J45?i1iH_tp}1_Io}SjsjY{wY&OjV+JKY@SK+PEjb1HNa7vyghqY zt8rz@+vv$=8G~zUna^qCq8#s!DbBcjUtk8M+%q3-cty+0xkN+*d#5v9ZoDjxblAJX}}t!d{1TxsL8?uUe*jpLVtcQJsG z+TaxJcPaiH)w6WT8BS6QW=Nc7029`&?Qc6MW{~p6U~@Ga(Un28S zeH+Yo1Yl+`U*OMQoAKW1eDzdIZh>3=PAMza!UZcF4OoVxh}(0pf~ry0?K|eXhGXQD zH9g`K_(GB5bOUw_qi;i8){3vCK^!JvyF2W^E(L`NJ5>=2&*s{#ZpDLFjh9yO&{_p5 z8y`dDy9_R}Lnh{qyNVd#i^hztd15z)A1GB1`D+CKjK89yyS_=n`YzHf4L-n%rxbq?rYFecyNzuyoNu!ap!^v(DUWsUGU z6@bwzJ*5-hjUYtC@9H6zr^n~l(zCP&Hj{Iaxsw|IjTn{jC7${62k8;t7KpCe6folp zq5SN1d(|gFEGp{{jp7h@FCZj?J&;|cx_!~6JwQCCBJ8xnzJ2q_UmKr1h;wZC@cE9t zS-3QwUeS_srDZXdZB(?8_fmYgY$LE4ZI=y%SKLc9LKBgPpXIN@BLw&L`QH!O>EMgE z0zC+tH|$m_d}OT!f=)5ey?jPwOwiL9^=S?oS%WW5I-yb?qq2eQwTx6mW7oEW2N@36 z);$eRj9@cq*ba)K(ABIrhG$)maKgQNZFGjl;W8AT*Pv4@UUONJKZ}(2RpQmBCuo{w z&X_8`xi#!w+I=nwCCgV)p&I?=b~Z@vPFqn+|g~k!P15BZ&J>6|1~n5|9a@-={vh* zw$lZrmEjG8j#K}JNyRa3MIvJ$J98veP!xxRE)xwBKY=FPx|%$iD4d%sG>MB)zA9n13yJ{wi)8 z(Bw#5L=fM_WK19(wDdCz@LeoLryYo(C1Mu%N;9UusI3n-^FWuw<8|y?r(qG z<>pPu8IBT3Ih4&OxwCi}dly}$zWf^Y{k<+Co)F#p5+f7*LED zL1r`34|={#trxa+w2oDcRO$!8F}38w6$N_qnaYa?tGk+HjjuWCE9-sOABY8)X?I;l zPq(O`$m(G?!L*9}t+;u9i{{C~BKLZsl!ivkV6iUgecHImVM{FG+qCF2@~~%)DOH@o zKZCNuA#TXrtyE`XpeEJz^HSOn7i;V>Z13lY@f-c!A9}EnL@gw#X0Vvr=O<`m&$=)x zd~=JQD>kPx^^E*p4pQ#t)0yE0dk4-fxLLV&drNBYqfSr#68jSqE5~N43sM*0ZaK_Y zY}_E5bVBZj>fU{(6XLlf3UW>wir=HTL~Y9Qw1{L9{5b+V?3s7lbF{~(X9TymgRFf8 z;tL&jwjmg=2i$E;tMNik?Um)ZPp<#IZ;09qP~uIl--GSKr-3xT=1HWYer#^pC`v7) z6D|z#6jxS$s$@2mTZ8Vps%KFoi;V!Y6OToM1B@|tWO0V?{VK2zPNA@Bd7DtWy5%({ zX6-n!G+=x2H1tLHb2LmJJZI(%0BiM9kc_O+DECelHX(#v*!8nSel-NZtZ1w_Ip+bo zxHVVzs{ifED>}QftsZE|Uu2!tve~233NHV}KKD;KB{|c_B?%K114ix%L7AFpva)rX zNVt$Mu}F;s9>l;t?-HBA``I}AqpO9U?c{V9k{M8Yf;V{&D1E=DHGYFRI55s2SeSl6 zoaXa11G#={_m3Q?he{3o(dou+#(FV2V=dDpP(V^Yi0?Gs-sxd2Aclqq|IypTHTKA` za@rfP@cj8y6YbiVTf0t^dD{_K9FNV48)|R)K0N#HD=TWsFR!TUTrGudZ0XUkOyo^}&!%(Cca))qca}c>fuTwpryLPA06bV6Mk%o$>027Mo7}N_n_ZHGw9kb!2wD ztt3Xa@2i(~9u5m=9Z!Uy6Eoh^^=7fc-O#z8{-yS1@PfVME=qvCZ!5EC@JXs2J()h& zVB^Lx=mgpCG8dvB5$C2B=X;{ZQ5?#WHx3ZlS1qMSEa7m*7`8F*D6%CSAF?8a_3E#N zAcp!hxCIQ&T=QtJsEJqipZmv%WApryiXFuTzT0(e&9gh%CgJR&aYC>>Ai$Ij)K7UL z>_oiR*p`6Y8JsM0fw5mofCU5p%F^CMUf@dyvUct;D?3K*eW2;~R^-WS&=@yFubi+p zUMASrko~lT;s^$Y8K*D z&2v>D#7_F~i0o*$+Sg=E)0F&@cj!~J*pss+H9gMc8RlJDMW+pMVCY-8VMnmpw1+qT z`)3X3hi5GUX?Hk6N*A7KdI5VV>vC3bGYSOWU_Ph&CLefQ4na05hj9A*U;Hnn++m3N z3SfIO%4f`jpED7WJ*Se}oivN$=7DI`-=GPWLwkD_V~3uP`rvMUZ;}zDeoYrPWj29W zyuBhqZfNNa=AGMIag#<2ZCFA*XncO|JNw<(D5|mHfvdHj>FY**j>Sw$fVleC^NAES z+jZ7`%@0inHtOPp73U9OBEWemRzg8vHn)iq?p4arxV@WcwDQ`#LxQaj{lV2q-y?+M zn!lA=`{O=y>BE-AWI4@>e1eO0-xl!sbKGFE7rjV^j5nCh63L*6AoKS70~aft(B-V2 zaPwOxkQ7BHpczRYKy-GCk#m?4okkkT)j!{=2#BtIx0yCpc=2SwMwBDvG&R5Z7w#_g zfGY2o>aYHqg)8?*A|HMA_>9|xTN@{%?D+C>&4d0`H*O+8fh%c{?L@@MBspQ>WmZh;#LE&vp@Mzd#JB z+fPwEo3?WSP(1wQtvq30qaY=u%~5&MKmRufPUmL5U9GS!o!?gJ+evOE19#O)?FnM- z1$XO#Wt14n%Z$L>*vDg1>NQN+EXj|a-Gpz7CmiN5+bmyga_wzF`uU2%5n4HvH><5+dhb_tFQ*=-M zfY7nM{FF99XBv2MISGGt!PvD)X7Ufz6iAmg8L?Buc=KG&rcL{Soj$x;Yw)&FLxC2^Hjl#Ja8~;eKS4li zaa!>?9UhkVRMjMEuq@qxMA_?eaK#G?!e{Mg-Bal+nR+y9#eKE)wz_8QR5%CKww`q^ z^P-LA=p`0K#2Obcq9L@tJAB#O$n=Gs0*#SpFR2xEb&6IzzznJic?8Fz%b$i_rTXi zmGRd)8OIRiC8BjC-84tm6_;zxm};+IIafZA4F<9%Rq}=Mi_v$yKN`qK+g{+AhLncc zQ^a)OSwY^7H+MVUL{*%iIR4I71Ql%T)+g}7_Moj^ak#^vDs>9I29`6=<|{hutLp7M zN3nR>d_B5h6`muhH4_67t4G>Tg==d)3>9o%kez7jlwT!3g^0~XzPocTCo_o+0TJd* zSM(cfBk~EXh5g@02QRG?J8sOWq>M;74NN`#hF{5d`eb&c!01~Vzvvx6>15l}e#P&e zrQ5E|9rs_$Ha5kk+?Bjz8ckd@hgNMmpwDdsLH`d}FbA7t8vN;;0-te^X&E|0Ya%Qq z)G1HfR*!NG+2xPj>lE2M)3RZ8BlYIEiykHL8COSnyfuL)M`0bY-l;D+&y>OL#=6I+ z8T|=CC!Y2+rQi{;g?a9}Z?qp>xoIY4ig3bLj7{K1V9?l;T7PD*IfTjcuT zs93Q4YhGy!Vgm9KDmo&%ge)Ri^noX@wEBu96a9V!cYqd9ps)UV4ox$o-`cHMnwT?V zWUH97TuAEoacn0fXIqd<{Mqjv`?+@%Mda4nQ#0|@sF0QA1~eg^F@6Sg>M}0YMR{Ui z<=dP8;zHN4RjH`+ZwP<80(M#*udlqxId<)GbosUXolj>9t&^BZzc(B6@Kr^Zi{~h6 zmg^LH47_YNM3Y&&K|bryCw*k7K8iQ?xtl@k%Yy}_S4UZ@a&~P=gI&Y^S@ z{@8W>)Tx`#WRiL+y2H5;;~tbD5xPpB5ygG%)BKdMKFS|2fDpBG|96xBbZ9?mJ|6Z{ zCiSx8sO=qveUEZdG|0jvYclWWWOl+@_POXMH0t)MV}1EiF)4>iY&db(UfiP`dN8Zg z6L{EzgX2@kPZ5X@zWlL>#ANQlG+dq-q(X9xF#Iz=RkGMfAaH@q0_m)PyAmq9o&_=I zG!T8~Gw~$hw-7YU*5z(plj~HG&}zEkEss}Y5TyO5tz!2F(#v&zxs1Zr;xiDQPrAp% zrG#B7VpLLz>EI8%a@(hVsAX_#h7jTv_6pNJS5-0j3y%+&#lY`zu<$4rxHnX`+;?r> zR<6-0YWd}JXA*L&<$!n$s!;PK+xL^Pl_b%1K;s+*Qc<3!@G^QE!cMA0+~G|qNBrJ} z%@42V8}t1Nze@M@>GUo)RHl)_DWR(q00QE(JPJQQBdr7`!$N7BkHF-kI1z}ksWeoq z=icp43l5@bAnBdowbQOUX_1W}9DvU1cRtDjkK|xRGTCtyEb~s>&;sTjC}H;LvQvX8 z^uM3BuL9~YMY~1HCfguryRQIDrXN_0<}df4YFC>vIWamNbHn+GHuohEz_80692xT9@OqO zzo8zg%OA9ZaYDZ9rK+JjwV1gYOVIW!r1!>m#;o{M={@FY2AojWa$s!;j5(}?cMZxP zIe(m{8S)X|lmgn2>`b#A_iU5!hjrr7XL%PiwXWj5CQU+ItL~e~_X>~Tp?TGQU;I5v zwKHyz(dGGH*D?L4P2-5kaF0<5JKThK7eD%VUg4Hru;5VQ<+&jOL@m1Iu8q~eu;TMV z8tEC~15{DS8E$ozMzXFTIJNdndj(m$lhwJ9Y;M*jPtAFEK{qhR+ug9>)|uP%fhOKl zN;htNN}{9D6sNNM*L)^b>n(+UywCwhy7^yQ1X0DKeU)6w4ko%cuC0A9VzlD zQi@12l{|F4yF@#^=an`zA$H$-Pk&A>>BFve8GdRM>Yl73pNU^e0H5D6;4AB$Tw!zd zB4$p*M-4nS-l;|+6#k-RUSpoN7h+E`q-X_SjiHoFmlji*jD6QbHh);4dv~8b0dk(C z#vCv0X^9T;seW;9aeNIG8HW8cBp8cwMf+DklG>cbYn*Q_@v-VtXfEp_N1Zad6&Upi-VIJs4pZ?tFp-| zHzO@wQm0auon?_!Q2HL$JbvMa`c)JC$DF(BGGgOUh94{3Q(H`si;Wm*IZpxeAlniZ1N6es(pCQb3)KdEUSs;-_-J0#?w+05BvMSj}L>DZPN{@pX= zTgGQmg;U?7@?0invxhVnq^@Ny#N*KL$v|Nzm%EU(YApsiN0ZRsr@wj-ScEBv94 z_H}~#B|ethwe(I6ctRpjS$_VBV)qJGQF0`rYxP-97EfToTQ)YT8V)O_aq;IL+Xsaw zNqqee#kg7ash?8Fjr%^kz0+i$YkX;FxDpO0vpC_(*hyk-&B_hNUCU9Tv)U==wP~6P z@8F-TNM7MtIwOp~EHe+9KF$3bALkgcVL0*C#P0AN`uaVe4r2+%wE!h)l2uER%E$3j z>pE?U)BZZ}*RMUy!uha?GACPw1O1~2^Ciij#9@0BjGi$4=Ot%3{RZDzl9b-3gyyx5 zn{`u9{`wuW8PEk1zsk|!k|{A?-Gv8tf@o8>>=#+*s~ed^4kE-hFmpSKl`&6QP&A2~ z1Gi)Mw*sEx<>BWnHC;@JXSiHw2R~gr-bYVtFtjD0g^Wk%Sd?lZC2`r@o} zF2otF%DuT{|L@ZLpiHgi?w$;OzaCUV66x?*VbrA$5Ueb5Gp@L|O65Ja{lVq0lT3GX zwb^J|1SE2+O-!`>%Klu=1NuUYr>Y7ix^}@cJcs@Qm9pN0^BoMigv!T~D^$L`;-QGF z^!^sfL^rwzGuJ(jPLm$ZtNwHA>P1RC^{Iu1z?rQ;c!o}ZRbrf z4>}?|6p+NCDl5Ktt@t{W0zD4>K^EQfuO>7k8;)j~hVH-&gEXTu*~V}gp!ISj;h`t^ zpwMm=i4^RYs$wWZeQj>*)b*bwnNIbn4iG()z<2&ZD! zgNAvkiCE7a>{{w-gbDua)6~%!fF4bhVZ1p41OxunsTfY$xL88r#75$0xLe5#y?K=O zPvvULUK2LyD&M;6yE12qX*z1hCu$u%$T@HY>!KMsi*I>z5=4J~%k^1CX8i7VC`OdL z`<*tkkD__~jD#33vuDAaUhn}5)>!UD=ATK~q&4R}4UZbu(VXJFuCDx6aJSfGG?N)D zB%4n4NB6LEzt*Wo@<3cA!4l4Sbe2zS2}<%D+r{m`ZL%Kuk9En8LR-yyUj4^r5=I4$ zoN#etrrP9S8h46lNK2UHZ)OiFo)(>N;c7YKYpNfS!ac%l zf&1vlt=(6qEKrs$dMZGkz$3}Bt3@{ujiuW)>@8Sw#GZcUA7qaYbE7-lIR+zrMNK+i zTMYERw+2?9-{Uz}jC;Ke^&{=AmbcSIrgW6e;xR7>zqT*$Dw_f+L!%}s00Y20?X3s! zewk{&&r};H9nQsNf&Uya{&Oo!h@0Y)v0g$Rs&&E6VQ$>}kwAk9z`@NF3lAa6_63Av9p!>vkMGQ_}&3Prk=9ng@y^pK;@m zjA}F%Y~$7YgG%3_dun7s`tuU_wapy0$C|QC#%s@J^le56i>grrVU2Dx4KwxZIHzz@ z+JL@}^oex-!rejyKy~3AX=mZheTg0T=Tnx65%_M20I1PFzK@%kE!nO>otP?cXf44?L9*UGeofn1vRx;zF~{i*;$1r) zF~u&bTR(8&dtg%Y`>XWUO~O3(16yWaNs)UDrbOVmg+2yw)bHNhqlyFL2p1q5D?2zj zXvN-IN*7cD1bX^t;L#bCv64O!r?FW9ngC$s<)2Ycis8_bcjz##jvm*jo%*#p`GW7s z5RY30vjb`ll)liAHaQm{%SJ*qK!G20JSg?IHE}s70Ru2Vd}-m_*La`Cb8Ayyf$D|k zgN4Rdm)R#gI%SD1a$JCtQ<}w;1%LlF)U%?xn=?P(JRoIpl6zC4jxDm*1d0TG@h}Fe zbF=2REy8pdSJ8d9<~OKRvRrl8h^^}Cw9HP?>2{gd+8tj7Y15--~ z_YMux0qy+;IzAS9Q+e0v!Vb?o2}vga?!F_Vvs>&o{2XRgNqS2!>YD)BXrA`BPm{7< zKiND}LO~k5wn$E3T6%)1Ux220Y7ctuyiqqjH~!Pj^dr43&bG4kkADCyR^Gs1F9rL5 z3n)apOg8JC3# z^Dz4FR$3iQ06+Zqymv_0yE`p)dyZOfciglOGKD(Kh2i$?HH{#vk1fsT^b))S(c}av zu_viGZ${t3LoL2LjNjs#0FRk?`|tB5d82?Bg#j20%E?IN z5}O;63H?=ENc27asuK1GhVHZDaFkaARGI+qwz~DlA8j|jm@V!2n}lHX1`W!|y4|ug zj?;51r#4{znq?bC7WjG7Jrk(JfuA}*&^e^cQFwxDhgtc9dxKhM;~Vfs{?JKF2lAPh z9Rktq2AiB)GmK#Qr>xSQ7#$4$JVO&&k*^p)btkklMp^Y=*3&#{4+gkYw0C4kz~ zG!rrC<8<3GyI+Nx_^esP5?n+i6Q~?XBtG)jv8MIRc{t?f)y!$-JRK`>{nuf*(cJ?b z;P;Y}LuxZ)*+|xwjs1Ku&kG^wnYVOe-@CO^IJm-4kl%L--nxXx<*K69t_)Xi_|rZE z*7Uo;GMFoAkfTQ-g>MI-=`Yu!IcHNJa*(_V;<+@<;`26SL}?Yn1u!P2(W2OJMId&j z{03*gnQ^j=`HMx?;k)r0>2IGiJ>$U-i-zRP0W}2q^LwL~K!xD4z)<$^XnQ?$_V17-_O$oO%KxXK|AtoLo6?Y9v})&fR?|K$?sB6q4f$!W1`uTX=jU9;^U;_ zOA7TA8v-ZA)mpu8!Z!UyyBsGkwU2{!zYH(Pk6&e4wuUl0NxA2d`s?&E=D^hT44^m) zK#{noAFO}?38FqzkrGsSTA8-|4Gf9)x}RM?h@Fc8G`XMAXP#ZJug>9Z%1D%}<`%Wt zGGNyh{ztB3!chcravkq0Ff%l&R=X|^U^>$ZR=Xg;NH5C%7T!h=8jifE!A5WVjPm%? zR|S*_(`e?A^VYi6v5Pd<&y&uh)Ht&b@5FN(jUMVD*dK4X-zEk541IOpth)EybRs35 z+^o6zjT3sFy>quCQO_$-QeOVm`(Q-A|1R$8N=Yi7IO|Eyus~JXE37K`*O0gPB}uT> z+`SOb`B&k}wXT{92}*9dYhh%;L+Q7^q!sPV_7kh?+h_tl8E+XjLKPt3)o z@#6nD818r$JW`+C=Im4!j~xnImT5bHMe@R5;LE)(-o63P%t&^<*h>xUYOC`-oY;2^ zZHpilYTMR10$6+`;4l>4ZflDuC1*?~cz(;Il=r-zeSn{dS1I0E%MEKlpFkiQuL`_h zmQAsEHGV6zsU;l5*qN9kk7aS;E(j_l^+fcD2Vg5IwTizy6hu)nv8lDVpMtM-t)xiU zOj;O7s^W)LLSL?9xcRWkX5l6fR`1IFTiUt4611LY?g(-vPTv8(}OlY9*E}%Kp0@Y+pvTZFPm{fGBk|kjY#UE^CbsGq6te zL-CloVdFlI=w(Uu(L{7(mAfx&^s%4>jgJe5&03o^E6a>8RTfWxQ1u$78oHLZX5!0t zND44{r-QuP8ImfpxA3ZN#O*2Ld?_8qirApZL4rS&f}@oMluaEVA+07TXsYPnyz~Hu zcpw@HLp-h>aPSlq<6z*o%b`~%>_`9tVHGIAOH&f4?1{oREI6||@77a}8Z&%T>aTk) zl@9Jb7dk(MEMFI%SUEvMlHa5NxSROuE|b|c8PHi;G zs;_7pRQk_W2bqePr~JUiWNi8I!}|EDF>+471c-JQSoDU<;k`AW@PXa8M)fbyre&%p zl*Oll`FKlf#v!A!Vb{=UoNwbaER+hru0ZyjdD0RW^f0H`K%ZZDpfdBZgy4J{=X7wY*U~Pm zMoqjG=>dPQh;8N>;ekvB$ftC1wZBA9jTNA^kTy;YAv{R!NlYYPZNH;^+Ks@#wGKy> z1LL)h?zs6NMng7Q@YlE^QO+HBa1q{LzhVMg{v1@|K}@hD)-P(PlGYkbGr;mT4_o31 zVo3XT>~pJ<)M3yBQmVm)ehK(NbTzlJWV;DDAadF+1{c7MsPx&c{o)08zeB>XiT6?- z9*Dpo`aoI@94Do2>>l4XikPw}>`s3zb+!Jfjj4t-VW11|JW!~5HlUdeB})<9%P^n? z1=@4|D1RtO3w<;-=?jkGidi?+JB)HTq}DlrZdDB-&M4SHf`@#{g9E~7$o$|x&hP@w zRKIk?X5gu$tLUW)C$4d8EvkNW+*jC%Kd~}KNlT|Z4#nf6EC_U2Bk^y~IKjCtG1s-Z z?o3$hoFBL+>)GcM#>HMXeN_%A0|vW2BK^EpKaUbWVM0K590gr8pBZ|o-1V^%z{J$F zZ9XEJfrHI+<0Uu*tn<7)i;Y^s&6*)O-Lj$`>zmziiNV0FqTkxNK`szW6$7w0)@}Vc zIEij=6tW~gSH=%~aoT}|gaPlI_TpzQZ-e$wzCQK)65~XI(+;;YslVnYOVe$n`hhLK z0aMbASJBYK3?|G{FTYFgbq#?%!G5aNoe6L&+X%i{}~?3cPNQ257?z=NvC{9)Q9B8n3@ z1x4z~=^ITkG|aGTJS446I2AEd*4?%B?bcpKYTq(WR*f_iqJ!p!4?3%1Q{CJ=;Crgz zK{Mf_Vnq{%H*_@q)VTJNB#Zg2*pXFZq4cOiyXnQP-{Tbc2!yS+<@RO*p7GAy^Mdv& zo5PzS?z%AmRF_a`>gvkGTka_VI)17SOo}ri$fWzQvr~?hb;NhYg zhv|1d{yGjW>TofYf^W~2>R-;**M{{VdnU8>HrwCZGwclIx>u?513e|PaN4$vYei^8 zWzKHc^rry;$pZeEJB(&{fhdk~EsSZPj++%Nm1IOCTI9NL3br>ZeQch#LwE_mPNY?~ zT|rVgXKw7b<%H~MhV?7q8DD0-rOc+cC|-toGP8K-8gP#F{-d9T)l%1e{d0{DIZWW* zJKvAEA>(5lnChyBCLZ{$=LF_TQ%Rehc}s7h&RoJ^PM4n={B;eOVHH{9YO1v@+6wc! zwgvPV^Vawmfo-L}ea;XO3f~p3T(AuXk;n0cCNi60mnj=Ne7sq6P74t(5~e;-qsHNd zlspRuVCClU)H~K5$gY<<^!_ln`u3+My$snXdrFkd4}-E$CiSC9Q-roxd2j?Z(5OgJIBC4tPyo4|m$}b@RHfI3Y3#7So`R zrXGGyDMt5@9XV?1B5F)me?R?G_7e|BgPbyw=?-XI00+9cVSk75@_zC67e&@rFKwAT z|H#vKmf#xNBpP(E0FQ zyM;~NLCzR;0cBEK^^ac4f4qDKqy14;EI;N{4x2!2QX9`fO)`WsR;nw~7|S(-@^z5s zT@w@-3eY+wr`r{4ZrM5{d3kdn8Cq}&$#`YRj`MWs4cWG0-=j}7rm#FZ(~#(RzXHVRFq*kGRmEY=vyHR*z@V9Qvr zc^-LzDMFW!1a`hYVc{E`*CNNHP}GL5QI}&%Y7UTl%d-=DoxL;lw~&k0rGcC>ZwR7W z-l7QYP!8n8wCs@W4coAgytW#L`2eTQC5Vg>SgL!_^JS~VpTJUrHy(f10YD zGyN(;-;~#%AR%f;3X|1z7&IihyNw6!0q!1Xno?A_CqNbE=r2?&j@UFBYaX>{o~GyR z!O>4x%L-j}Ht3VIi;>7W@@>a~2j_`xAEwo}9Ovcu`-AW_tga6GZgR@(l+^`US=l#e z26I|pZ6nRiO&U6*S_ALm^VjBp)t<{^S zJ74XfVv4QkJ9$G9<)3YLRWsb4OwPRdQG_<|SwzYOrR)@a;Oq;sOp-Q?yo{M4B5jhl zd%-%msq0Q+RyL+JP|0udibxUi}x1Jps~|md>qU=84ZYb#{2lN60>LW zYLg_ONnF>y*bnN!4kUn|@iV@b?_i|Xzq@ZG*G1FZp8*at5!Im~7%^zSc}eGo*@F+M zujRhARd3IbJ^ZRRBoRwuHi zoqVJgRO8O8aTBk!nLP8vfh}D{!}E>zKvyxmyPN6(nqT7jL`G_~ggZ>Ij^Ql-4At&c5Nxjr%r^7h zL5%+ncO^%iSBm&}cEy1@MYYpi`!4#N(m!#;qDYb%z}Gh*9V6bpiW;v$wvtx>558s- zwh=eg9*hL5_^GQi|1z2YcYk5M_6$QWCPoPD?Q_LH_8sO6+QNv6sN3T<;B(R6DqQpRk({ zE)br82-NH>CWQ-lC`;%CCg|J*mxdgtOYz29O?60|)~lBs@;C;bgS&w?E`j|%| z`PgT=47dJSsK@i+%S$M?gxgebq%<`2&-J6_=wJtIo1>(g*VkZ;69t`Kw zbpRkzHx;b>m(RV|h{=%!3)bEC;FuNZtcfM^NWqj%{h^uc>20ROLz3h#64B`?NoiGj zk;3JrEAP+lOWCm3g!>|TL{Ou@4me*tSb}P>Vt=jN&D~OXZ5ZNq(;V}3n|yPk7tFMn ze{7-c+%HI)S+Qc($=5rGo5By2+>HoExObPi4Q(ciO(&lE8Ks9~^HbYcuep@?YgKOR z6TPc1Y?zx6h{^X;5t%tz`kzGtL?=lZWbwb?c>Rl5P z->PSGETC2py0eOHOtfCP_OMM=YP@G;&LV=!J5DU`c+v8T1m1E;CH2^J@2Do<=a%O+ z%~1$xueUuK&pLPF{4cs^_mSetD!92+#p=(-$j8z=tGQ1vHDtJY%UP)C!+hvC`C+C>Qs0qbw~{Z{4y4N-h8*MDG%iN}xP*kuj{>gLJ7LK(K4H5;RzpMM?sE4P zVEhrct*QlqjrY2~v7d;<3Nct|O-J&L`pHG!?bLj9_|hjP$L$P5Y+PnnK0bsOC5)Vn z+cNE3cfV0Z0m~+s+Fb3>`_sWwkhlJLzy1fbPKH>Vjw(%$^?*;D&Q)3M8sA2?07SLi z!|R*$>4NYwC6tX467EDOT(cbYxQ=kL1||z0WtLNtg*A(|cB|i=o|K;InRZHq(v1ikDiba>1u51QWR)sCahP^YT+19{YFg zd+_2`4uy3*0H#|8=;2-55@)`bP{s!RfJ_k{-8@N$8+y!Cg7rDS&N3GJ#;nS*vjmrkw@0?bOtHP7Sp3dkJ6qKOUYpmcQQV&iCpcy#6BzxsoK; zYTLjrVpjQWU+5~dAJQ}*-VILQt70dd?LoyAG950wHN{c$o(AstWnk#Re0PV;HK6jj z@7aPts-nnk4fzE0Mf{7ahS2<3?_imi(ME~pX2p!McK1s{Dp@a1Vvp?ghb(~9sw1a@ChaGE$s zWJ^8l=f$*rwqX6YpO>d*@TNSv`w}mJ&hluaqHxZQ2|t+;1GZt~j%q_Uo}Q^ghI^^U z_wQhT+KL@p%+b7#c%5WYhpkLA@}wM}Ts+0V8aE?WK=bwm9EV@H$5Av%Z1{n$xy4;q zk9gR-4fTYac)x)FjMEzL-&8s__uVAhbY+k`{`x_lw(rr{Q7^$Xf0ZnBA*1ge8C4Hd zq4~rcWga_@n)?H!B6SbJ9UvXN0CTQgJ-fs-$#fe*h2ViKPsp8Mx#3+{At>$YndiTc zP>J?{wlIED4K$#FZ?cRLj6!=#;X7N0g4O@R}KeMP;x*rFzyVG=NtCv(<3F zXYj4!X6^XslYJAE-Azkfb22Q-x~4vZ(ZnpsI@I3|gU(NBM=DUp4(JO{*wqKxj_G`R z6R8K5t#jFH;`2Gpz{*VrbjcRTplP~(Lq&0%;HkgxZcJmFlkZLkOY!9oB>8u=gQr&~ zGz?1_iK%yuN5Mr(Uohe$WM48++}dA%V$dk+^L3p2N9hCC7)_n2sB-OhqcTt4Ti_i*&`an_Yz*Z#pAdkwK z>mn2DX8-*c$lq$Wr5;7dH^T1REim+yDb8IMFU^Q*x=ANnpoz2v zlVg!nK%;1uduO4sCBofDti9pCEkp>2?S3JEk5(B&g<+q|gfEDrh9Jkc2tLXr6z0j>G_tn^@^u!A_kG9>lkq4LW5G$RK2@cM2pafX^hUWc&iSc26k|eqM0E0nf zxHm2+2~Joho+JTVJ-nnnKyiGLwygL=rsIqK)`j{p4X9K zko`2w=O-9VmAnw32)TkHX4e$xG_~1^09&O%D8K&*Jb|O#_YXD~`#uy^cWXdwgms&s{V)5{2(%cVT}>&KiA|}b;aAUu{e+NSGg5R8Q5c9XuVx8@@>F= zqPpVEn8tRu-qiQ)^(Rm%ggd*DHeiM4ww(@wy&Wy+r;yGxGC};GK(>D_ z|G$2bfBtC~|I39>v;VQ{`0qdFUtdfL?JW6Z;<5Cv_vD|C`j`7e{@pGC2MR;cNAx!^ z{!cadZ(sMHY9xWTSoxMD$A5b<{-0MKxScG)FD!gP+L{0Tg7G*JfP|-uF&pz3VaA;o`t!T9L^+~$9||Npto z|MCw0=V|_zS00>>{}hdX9*+MMjsFylf4KwyJQx2t0{^eO^8dAH94Qe<`$d2`(Ja6Hek5Eo!wLyd9RK&GM%|X-MD0vy?^-hHT|uFo z81P6@j2T)Z#10hF4ISIkrZ-{;%)u|9z+Y1z+~2 zI==c_DD}VoYMF#(bw}Iick1{5{^5@VG2LVq#5(@hbn`!ccF_{_f|)~#$Npj|56k~gp5Vh{ORWFh3n$JK z2+K!%;&=ybb_Dzr4B?CB2*Nl)_=x`*;q`!#EU0e;=?fu>0d^R%@<^HDRCTV_1FjnL z>J!##;rSk&dz?E^` z2D^EZvl-X48s2TdN}JM#ixU z{?~hNh@vrqn3NsvEME#r<%0(?{EL=5&Yg#JUnn|WG~J%KRU#zcE5K^He@E4=b$kmG z7$ix%CZ7VP<52_b)rnrauHrPvlSYPy=LzqGNb-f&NzJ71nhVvQS_jNl)Zdj8+BT$k z4Y){>mPgirMF{(gsb08z*J&)TrE6BTlA`pOJ}?&Fy2VHVyOl7gWVF96ogza!r%@ zQWB+MQF7_Vl@U?%>|N`tDlC0$E!IqRx0U!DKM0aaU4VD-2T=Cszc^VHds1`6?hS~p z9iT8h_-r$FEF0{ox`;Bu_5z9)|JoUTlSFSh3dC%;j^&MsT_)nXGc*kf?TUSFlyH0X z=UfG(`wGuOdMtBH`~|e^Dxw0-Z=lsF(@f;kUkXvC*UfF2qwuGAso4fRQ$D-JJ#?vN zpIC<41W|_PBcN3pI;5S_(JD?RJx-@4{qjH+`wZg+elbS+EN%TAz#wHzj$hR|_QUb& zhZfKPV;1UH_c<9BFhSJx->*DE?2keGF==yVD%5;Z33&NX0%!F@+rETngHe02=`dwW zzuEP5T(W!1Q#^H_X=AfPCl6iQ2KVph0~XHn#t&Q|^y2l)I7aeWL9Ci(N0#l#eObk= zo$dV)oW+_C_yNaKhKtsMtpmcsib};f{je{~ReF|e)qTbxA;7q%-TooB)W=`Vt|bTF zx4y8ukl2^l;4{0VVO+h*Dp2qEiEiE>kTGs2&N7fcZevP$rQFA>P&Z%IZFti~^gm^) zS=LK;Ev?Y`l}`4a@Ft#{D_>ldK04kuHDSM{K6+C>_caH)7TD~^N&4u^9^!MKwfDw5 zk*Zz!%QF)@7a^pxDsY9*DUCZfRQ9nhx&6AWHOn44*8t@G3T>L!O}+&!5=k>k2CuW*4y}CyR$mBL%fQIRCqJB(<MGii&RH+4t=N?sulPYGj<4+C;frl-KsBQKE582@iP1oiN(%* zfz+C*6NAIAx}?1v^Rn|(@2)?(q^0(L*Ts;UE`JY?UumWdiQT%#!+faa(f*r`Kasa^ zadtCb=AC@YBry8_F!kQ?Y`<^VcdA-dEm}oub||&0_Ev4Fy+^GSRWo*sB8sZER$H}q z&DeXzC?&qA*n7l^5hHdaBA$=mbKkGm{l6f|^|`L|I*#{woIi;*VIq|>1o`hDM0f{(m)w7ZC4{7HV(tT0RNwF>TEaYyHN~$Wbr*wG22bwO`nT&eg&;qc^1_v zEYVg%F0T-5*Z?v|(l+eXur(u>f@6ReiXN>(dM|nkc#*np`u1Du{s3D|v3jc?{}NjT zPu4yK5UH1QFzmh!FT5}Jy_0a7$i z6Kj77gsh1^ef!ZH2(W%4`Q|;<8pgxw55_^wzz(IUm9K!wuxlxaIU?3wIO}m**uQX< zsU(ifi8e*e0pZPTTezOV|LVNi$GQN(Zg6RnWvD4Z?h24`2q1$+qA4i=;$MrbpVN^{ z^LQxn@^O~v`g)a=OO=j68qZ_$nv7m;}YLA_K{dLC44&?;=zJZVPzBJq!G%f%t^Q>H=% zh#r7BrJO`TFU+G0lHr1-78AX+EA8aycyh!wfWmdoe% zE^P!*_xICC)@n-c^gmIXV*qT~R|5Kq9HWqV@?`n8Rtn%PdaVHFrYF>jG8SmU0C)~N zmdT&QJEmDh7eN0-g#_5OhxlSxohCnAXP}@(bG;3iclT>VQO8k!F=x6FD zUbM=j%!3Q+#_edmOa0G=S$_khqM{Ml%|UVZ&*k5J3wbDIcc;@0VRBoG=%u>+CpdgV z2+ggVEFM=L@loEomT+C~OChD?tjQgMJ2TLA-0&bZRD<%l1^w*Ow3n&`MPXsNT2RW-06m~MX=q;QXu#{4o+hc54#TER5? zOnXR?V3N(=GUs{2;P1?sJgJrMFTPp&Oy%7!`9!6u;ZXjFmG2Vd2NgToXYe_dVBmH+ z5Z$p9#z}g+H(H=jTVY9{X``Z{9$VL0EvZKFaU2z@8euO_@w>gg_O|WpxcH`qYm3M> zYhJM1zyX%JdD9ZdX9$}ZD+wTt$Ilo?PME<C2CZ!Z4Z~x2Jp3FKchRRd? zLG7olmAfD8C$DS1Plx@4%l||tLIzb3QB1+*PdEj5Jm8?WQBmag1=_0H63w(!)!|$y}vH4t)9I~G&lm>ni zoG-ofHC09TkbWB?JCUC{D?xo>B( zXadRxh_+)yoIJ-7s})bHmjHZ)e}s$VQ;(Pvob@byu)D&e*!WvoPa9&ZZB2peT2sI` zvSbo6bJ>@l(|yo|%l}DSrjlE@)D^S?FpD{22P7oJgUPknV$Ac zdVE9I@9ae`_nr{}h2!nn@Ta@aflqB6@Y)O1oz}62l~7tXI{Mf2gMXN-TPZmXlDhBc z58RF7zVejbR6GPtT9qt@U0Hnb|9;YWlrb{cLiH1w19HQ1Oz|X!BbU#js1qut^c3GT z(b54qCWg=jW;LLoWpQV7=WkPWTa1>y*m$JL!-=hih!akVKwJRYoFgLZO8;A*N$Ut@ zTa-x~aje}5mL7^GVKkbDL{fnOiQvbb1F+-j+Q{=t+r6Qo>o$!4I0CkAxiXhYBBuJU zQ-^k{bgz#KlBw!%cb@D2JBd zIu-H$wJk1|S;>zn7)&0=(kB;XE&=b-hycM(7A?;qUweustc+w`BvQL9*Lp9X@zVxz zfyUGVQC=Aao+J1|(QLI7FlmW7uM;jKh9-{Jn{_+Cq16(6=kZUZ`wkVGyHbyTLAnoL z=YONucd8k1ghX&s&FnRD0ixrsT#|q_oS)&q8TeWtqBns&3jYO8e-MDY zXK#p#k3JKhQv~*(lC(wco`X7-jYsge@oqQOy~{>pVTUM7$#g;jNI0jRb}O9I2@t zLsQKtIrMV{iICJh%UJRFs?^bOmJmLm@@?>wx)aaukb8 zm&)3m&((X%mbv={AC&DA3Vehp&wJYt+jZsyzcAL>`=$fsMZrrxJ)>d?YX|-84Xj#R zayuTe{Es7zVxRoe^*sYFhW2m3#e!IVNZCXe!oU!v&mbyfhRKSyp0TJd5BeoqgUIIs{cZ$K@?NjM&F zNL6fgXAPKlvSxSBK{h-2x@?^R@kpc(Mbj#H4$O{54AvVo8nbikHxW~@vV|AZ3Tdv# zx69--X=04I=WpiOPjy3;Q_1P@U4B}CVBdF9P3J7~d2?nE|9lKBV{ddOZSbhrMANl~ zRntD^GdXbyPRjKR0D`~kW6;3wKYf)vda9rlw;_RN$Que#F zr?uoSoo#$qf&8{(II(ED{o!YsK9gmNydT65Ksdji^n>I`V%34~j(p`=)y%Y%ivid| z2w7-3QYPalqTe`dx&rKLmV3Y-lJ%MQD;Le~5=(LmTxN}bdMN0$HbyRta)tlo6LmHPNbeLWsG{f7arqAraqIZ+X z9Te-6gw@<_J3noUO*h`j1m@l*t_2ncI^4)ZOD5Vk_)8M4`PjLXB49R^BG-n6a> ze|0tVJ-yPd6NELW-MHf~ys6vITO>%UVjo<5{_I^Ka|bqHO#ApL9Ye?ZFqwCtivo20 zQ3m3sbs0@tcF=>MSTXLxX5=a$>_l=poLy@6Mi|u5w}Wae&#P{jF&UruhE7)leBGn!C9sD^qo{S{ zH`zQ5_X4pBwTWIFxt)8Z&&%1x+Ga=i1l%>oboV{y>16kNiR6`>s@)PVcxfE)-xQ8} z#F=C2^Ks*S-sBXNX26y$=L{dokX%XoVPk^HsIQ`AxpJ3%58c#2DXK`L;RL4lREMD;iT1$;}d80|EUIV>~7e|eK-J}uqU&TUjwha2}f3?>9 z!ee7JM8Q$&rWAK`h+lCpuwj{`bKafeGM)N7R;xjzJ?e3}6%2f9bQ3b?8Re*z8)TA^ zy+bj(+lYPDtIlMtCj+PR3MF>({0bg2#U&9H5avG3vpE@Cm&sP zV`M`Q)3G#}8lU`a5FUy0(dv3&SHD%2^dVv^1K+&Xulc>YL*OWD-!U{p)I3)k_P1)^ zS15z`)ULMnfy)tkEJDAn7FDQS8;+X-#s;LnyVVg{4!iMNH2w(DTaDGnjHKxy-qVD{ z`#NrU1AU|u<74U!n8y6QG@`EuA$qgzDHEzo>zMnCRKV#B+UhHqw7u8TI>8!!&qfj+ z(9c<@nA`L_T94Df)~ZFAF=I)X)j*P=^R?RHxPgN^y;zQ%qLOSzAs3rMi12!S4&A{($WWwBOkVN zyF{GS)@X|$o5}ENI_}rTUk!S}E(H=@tg=_LByOPV{LaaQxJ=SJh@VHGclopBej4ye z$GG+6XC_?G`&20=l1`U!Ag+q2d|k(jx>AoN9ADE?)W(?FPTdyFNr%ZI`#5n-Np#wcASo~Nc|^{{XYch8Bo`-p zWlvYyEG8|tk6Pv(v|F8}u*=;l2k)?SC+?&)n=Kw_IqVB?hzx9Uv>CxFpi4O9ApxF(`iZ-|j6Z7f8Lu zKC3cEnm$O0M$QJ^(! zDCO^~J7#y>Y&+lBDF=d&icH3|DTuo@rt{*KokB_Z+S%MuT=YZZ4#T?X0wa|Ad%v3} z?&yeY%6u8qsG%QwzyB20#x1VTj#bZPpi7C`sQM#wRk7_OS_Sk66@atgycVGrI#A<& zulff5HfY`E4sKxrY?7|fDk^XZH1-1qnmd%=duT$s*_Y(4KZhBq<5eJ99-*o;&$a|+ zq%s!gbqptW&dtuv1O`6^n?JfF+@e8~Tj`i`*T9kw85FhsVTwZXRJ&lOml+$@>4czo@9N;6o6tld?KDsv_mnIAqYeVE?;sMqawh2tYO?B*?M zP$7D>E9^|wxH&k`ondv)U~Y|@xJg3PlIjbb&tXtwGM8hjX(PG~J3 zSKLcVV!@4*#jcK9nCzxDxz?N{OJw!p1*!uJPW)sAM*~KnaiP<<(Fqb5lMxra7=FXp z(>4Qb=`K~raU;;e5KxdR--RoDT)UNFq}?LDksHV7__*F+Zv>Gz#jNkwy5%7BY}X;+ zC=_@5Nk73Tm7VoS!_&2rvsGeg?XYXUCaC07<0q+>p;NDo_3kfPUM-F8O_SwuppU`< zHWTk%#mH9uXd;2W{}$4^W;e>-XLt)P9%@E=3XiTx4f8r=6z+%QNZJ-5m7G7J66l5jwqL)PwN#<}sTG@=HuG((r8<@VBt4H&(luuCss7S0bSppt=|~W@~QAfSH2o3%kifkjcMy6 zrigMi)9_o}ioR&E2U%*Sv^YK?snvhPmnOSG0lp=DBM{U7`VsR-W#P?(hc^{m+MZ;muQ#SErqmd;Z18+pdit31Z4rrSDW0EU z?;)Z$<*EYkmS_tDeA!}8tRSuSY35JH5VfXy1=%l->Za>to^!P5&~!JtQ6JmZFfLl! z?jF$OLMTDGL%+)eqeh-Vh5O|eS(i7TQG$^FT^vYgRfu|Kvn$_+xX8Db9qNvt@87>= zPEtE&OK4!Sg>F8k9L$&N+?Y6?$8S6aW%X1jsC39eaYqDm3ea?8y!o|WYLM92NZ&fm zNnL(4=uc7aZ+kuzG{20ltl6b|#cooOM3ivKkts$r%%zkmYiX z-}i_DgynHgG-S?cO~r;NgpNQd{-%^fMH3tO>@A1IP7)=)HYvO`xdaN2-=y0}FFG|8 z9>dQ@ zXweV)*(4qPKp^klKPHQGEaONf z(6zn)EGOh)jefS7<(UaRtKY)-1z+BveEG-cpbpFFMFQ)EbvAo1_b>=o(VCXYF##dkPse$cTSmG}l**iX6M=dZ7&Y zAA3nDnz&w+P9IMGa+Y;}tE7(YFuY=dYD&DE>cX#S)+$$S1&h~#C^!3&mN~&0A!TA? zjVA5ua)z5ViS`y$i2Pz|&>h*WiWeK2B~aRO!Q8~P&(q2(_uMeqlj~^@rmh4N`(=DF zgsg8lOSzsoqCIE#z%rb@Ou|bGRrtCSb3%Wn_}y~{>|&oM>&(>KT)9|7dtS4MDme!2 zHNknTaXsGvXS{hjGbHqCW&L!(OpoEZ%g~97p+CJSD{#k+O?DdEFX7LN-Tufo@OZ?( zp#8t{yOYXF+xKc^IA;x0t^jrU2S1GLp%(W$QAHm0HU627w;p%|y5(o=VUP@`Ws1(>iD%v8U z`^3eO^@b7FCY=!hM34-eZTN<>N5P$L)E{gnZHNZL=L#)4*H}M)Q1&N9D3YvuUO<2J z7Gg&x|0~~e`6FIm*Aq|hZ;-jHyY{0C$<)^?Di@YMT{)Sgq>Qo9jhAJ(&F8I>skI-E z8=f!m)x%vCNo*M0FN;%I9CG)lJr^(ea?oDCq zTaQZnB$SV(Mc@l8Q8oaXEEQgl0SgR(_}^_>-jv z{9`!QR3K4;p$P*{xG~kpX!ZevCzfG)r(6A|{tsZ~`=!0Q>t2PzPnc|MXf`l}3BCZQ zk!5mx$E01N<#qG#LYhzbXsi5YX6B78ww+A)w`mnl7OJ8sskrIQCRgnJ1O~`yij&dQ zSK_y|Ep*_))(oK-|2RInXT1Y_&e)N!Pz&&ei`mTAc+Jh>gWKm{BT*Py6@n_7=QH;m z{o~C}91z?O{!hc^5v&fx&^%$)Wk?W$Wy(G2H9zv zw3j?>pWdG}JtB-T6$Z@!p`X{yy~}Du_?WSqe1dSYk97Q%OsEx;djnN})G*TV34nnhOV-MqrLmfp`uJ0D6@X%*ws zg6hl{?78mZsG3IyeA{V6ewG=he_60GSH!k4aYS6gi3*xuPUO^5If|lo9B9+qZbI6r zyD`}C&VVWh@2U|VDYzLe!$#7obSETRMDYm0FUG_dp7s>Z6jUK`U^YO5+4LH&^e2LB%sU#aRjdF8( z4?d6opnZnnk>5}YN3ucwHFXaJ|9#e5PglJ&g%@8EgCDE~N1pl<1v$b3>TTuu=`IYh zg9*o0-Lq?$78%>ncXp?D5qbgfDZweBXg;Dc(RienKG<_D;3#C7@Veh9Sr_t*EtshV z@{L#XvQk&6BZ&Xhi$$Zbw5Fd8Gx@LP^Sf?RJjkz*UN`fhL@&b0*~D5*axFTz?L3HI zu{gH4(W}Fx%$52xHeRzJ4OvIa`!RdSD z>B7>smuug(?jx#J6bqF!F|W$scgZC6xQC$)Paecf*ILv^?gK&~_&cg(Wc?IA zCcbDFW#PV;d@aqR%}^(&$DNn^geHE;JgOWi+pv)0jlMKpY0Ex!MKPnc)$;atEk1W0 z+3lJuy!P8dJ?UXaiNP+nh5MRZC%$q?=KYlIYUjq=|71HvazBmR3A(#C)c|FA;vG{t zEH5!VW@>W$%eOgmLD59$mk%8GL*o=VCTK6uhGL@&lvRzckP~_ufpDKVAjFlNuwTd-jeYe}1!M=XF@+^!1=MQxb`G zL*^z(2C25~;8HWv{VDLLBg60}&~o*y`4Tf)wdy`;unei3I1hW~p!~ zLb1>I2V0u?H~4+rL8zATXww7=Gg%npFb(;=Y&Lp~R5_zby#o(QJa3g4u)3_|SK#v$ zQ}g1J` z;N%zD{Vo$E_PaM4eIU+9LP3e>v)^*XZbref%$%6#*cno z9?lT4RLkW+iurfE`DgzLA&$xo|i?6 z)9D?>T3c*tesA5h8@j9;%>`kWL3IWvW{e?ENLeuR-qMRgs`={269n-WZZbGEfPoYn z_q*8*yG(R9z#fa!VdiRsjA6$}%11I01^!PneMhe*SG?W-!iX_w=^mijke0L;muM3q zDnmwieS85~;gl;CJ{LLHiHB($EiddMYJNHeE}rr)Ua6Y6tE&2nQqf{_qDf46H5$V7 z=AL4$|DF_2v#jL&JeCFYEBI_E!6t#V{Df52)EE0>lq0|wl6iL57SX?4eE1X&EYRu%5+M_ zrJmR(lxE3o3y&JhSE7QeU5j};wONTQ?^Y;5`Wx^NO}?#P>8M=13PV0`J?w{y0G3I1 z`RQoSv3;eZQby_mTV&?aq%r7^kDAFacve3SyyqJcK&{M6*QvrF*w`LHf--{ciUxU7 zfb?_jwMzSrHHObS{FYy9-OP<+DznLX{yMepwc{eQXKGBCZWYOIuBD68f&b zASQ8pR=ulhhF7q~A8_VoddumGccghhS)yMzN#SUHvRCMLh2RL>$gOK|FT2089njvo zd~ML%lBy@xa&Duzn}MDtf(gZPo!k=<>nUwsxGfuWZK=_u47od%MyMg{M>t9SRUvp* z*E})OOC6Nunl1NfxjXqmD>TTDU^KJYeNVc!ztJOyxC0?_Ug%KDHLE5gH-5YudIfy4 ziKxFL(M(y>F&L7~PfA|wD(|@b`6tpKrfG-N6sY088JlF#I%xWoWaWDVZR^b(K-Ha5*i%6A}LM0tl^fi(bJGx=xwgugVIXbV7KX`_tSrV2GAXw zl$55qcTjW82~5qu(x0pSTY;0>zmy6HkB*s)zjOI&ho{tfT_f( zLq0b&??B7VU!yHp?~z6=CxSwP=9W#m6VS%>^Q@KZn8&q@ns@HazOi?_&H+=(`iiP! z%#i_nWpM453?P4mO&i-tj=e4vO;k_hy#lKFVmRS{xMyT9Dq$wjAC!onIoy(7mrs#% z+GmF0Jq~UMk#C5EpNBFxXF*Rs#Ag1Rpip;OdQ$6f-x$I@d6w+(tw097D7#q(%Px0Z z3+s3$p8TO}cEyLyaZO3!$$dJvpiOi0E)CoeXfQPm^l_~Ohkf?n*vsF;+!Ao#yxCey zCF+gu*xdqbsR)7B6&4~;zrIP;RK!qopSiVs1MB-OvJoDKBH|u`p1vop%NkICdLy-N zbl_lF20Zu2p!!pzw~$kfauc%6^}tVGs!6^RT`QZE(kO6wK$GRUKGcRU#!0q$_oKqI z+QBqFdkFKbzX$_}64sK}x7djvxx{l779z$2x^FF)DU@=bj%~)mw)C0$h>W0san?o0b#GJp<2a2G5~Is;F>ZTu_8@LdXh2&M654M&5o(cF_AZhN)PoPIRMo4a$76 ztddS(g_R?U$Op=@uzHf|vVPadKml)C5qk*(#|?C%8GY5Gcoyl`qDhj{g6~-cVFomy zCy>C?X`chF*CuUAtiwgPj;&``KzCHf;$VTCOQycHkDzA#(a~LQC9S%zO@iaEmUHKH z1;~CVsMPs=)4EdcTq7lbcy|xaS{yiAPpoDZx?>N?H+{@3yX5#lI&=S50T+7X3W!PW zxI*{5Z0D5JJPACN--N)t90a-`o3JfL$d`)Q*0(%-EXK`i$ah}S#neo z$Sl!EP;PHl+h~3N)_1Ic6#{+V4lnVOaCtzJNrU+&e6 zIyvc9Yz6oVc0RqQHznfNnyALQ>f%1^ytHSSp_nH5Kbo8T?VByf#2S>TWq~xV#q()M z=t=nkQiRr^BiX{&HqxjIOvZr6rFnx#?)I=A1sT0hiNXh@Z(0=e^pSkWg7d>|$+Of=s5{2oXKCiigurtf;z%O^$wYrIZvg=kdQF!4s6C1el zh~J0&9D^+9&qdbRwi*~qXS)I zbX*ve&JzqN#xc{39v;x97RKCKU3sJZ>dZ}ji*w>cd9zvipb*k$n$gGglq8%%Kdjux zNnYeM4n?f|)ZiO{aEQUzsQ6k%(`i)0awL#+^O$a*&6>R?dPy_^AL8&_g=V>Z(sk4w z;eJGz@Og2EHXX9-Lwpm}jx5+hTgn4!zxx6V31e@! z7Se~lf0Hu)Ci=Yu0e2eUl$|XkfU}Ad_h2_#t1neTk3zI|Sdn~@FdL0C3j^x($nnq? zqECK^_58UpcvkqCu%DSh=U;~cZ*Fw^e zdRr({XYS5~gFWg1Siv}BlS3bBmVSDHxr93=6iMwx*2Z(1%Q>_zWQEbDoG0ghWNIyQ z_e7u0*VoP{&=#N+Axq6D(sU;pAq^0a%|_WUH|CsY90Ly~X}25kBHeihiA}7EC~w69 z&NI0b%5T%7Jn*I$UICE)rtb1>-;&;RiL}nhWo);Dc7F^-VNf1cN746Iz`7Y{H!Kl) z5!8{0*}g>Q_b2qe^@uE&sjb=N$o$G>Q<8)-_%%(xkASju_lvRX4aD#TzYL>Dl26IY zYy#hiwxQew(Rab3ECI}#WwyvS?2Dryn;iervY_nA^Y?8NfnOyn?-!m!?hU}UUs>m4 z_wAaUt3PG?%cB+DrW+1(dF0{Gz(q~7HS%suT!B=SG7JqL>^c1=y(vdG5X73@hgMSTk!ZQwg09WSv^T9%t}epgKHl{P z(qU1->Nj7nD*80s6AjWIQdes)n7tyaxW|-Ox{!|>LrDsT8!R2`9aZ?G!r3(3moIo$ z>!PsJR-2sx!)pV$#|^)n`+#^bhL@?J;xx2&WT+8jli2gMt<%SP!pG2mAiE{dDk$pFK92fQDzCcx=x$vG6ud3Zt?l)rX zY&!4fkL&6!-4m<6Fnj2?QOSatOs1Hx;ar+x-Y}homh=W%20vxQ3q@A&p3l275(e5H z9W{4z1Q?dYm!BTeV1$_{k04r@$3tNgg?G*j8;{}+hgMyJ*$p}R&M*I9vkf27yU6`!_i zc_Q9m2E2JnhbjIO%?mgc<5}g!1_~8Ykt4V7B4*}xj5~uE zFq?iBaEbfk6O~xEuYV`X++`n@rs2PAGfGB}j3$0Z@?bO|QhMj!7Yy;gM|_!T)rn&C ztDj`Mmn5NJ2Vg#B9=H15Pi}?&g7pu}tmuZ{$yz0L!jN~p3QQaYv8Vs`V$~Tu z%4UAqI<55im{aiWHHV4iG@o<{3$1Z1J#7@ePHpZ#QionUs}0ibuOG{EW-BA61g#~$ zkea?J>y9vo%oxx0bl-7?n6_NHp4VXdIoiQ}Z3z9_swthF{;#X&1=xVu)bw*slJ=Mj{r| zf!TrN)zk-?+k>%JKsMH27Pz6?)n9(Q*L)e~N!Rz-^{Hgh4oVz7EQsR%Z5zMfIbwH< z>(j<#p|GI9BUy}r>ch?*FFZVbi_A*;9XRvVT48qwMrngu^sIEL7pDFG(>4%+sR_uL2Y{Y)fk?SVjd6Mna<>iL$N}!wuA2? zxvgsMaylzJGU&+8)L&@jtJ<4}F+@@vAJxIfXOb*RU%lko7t)bOh9~{F6}n?B6GbIF z1D9#0tKCPWUDg{&-@FSme{gk}|v0j$zY z+TX>V-K1HgI?_jMT?f1U_~iF1NNwbB!l-eU5se~5D^)=|Q$`t@N#yZ(bA%CNRMk>) z=J8<_g__5GTTZeYs$aAOZv1=T&vR7=;8ZDsNc6sCCQ;Z`^=N+dC4^7m#bj|*`Ly@Y zjay4gGjnz|R~~G+8!4K1e4lQA(oVBy(mL+i(?ou?+g7qUN+`hjme8~*?8RPztbidZ zGgmewa0div{PM72;AjGdiCcfi7V#_p`w8A|wmg88uovBTZF$l*RuE`*2)E8-*XWiI zXP?XU=cgV=s=n2dS241vQQ8VO%WF44xa1K;?8u~n^Ja^NaU0J-(l<&DZ|^~%(=21( zII7(Z+xi{3&HJ2qiasZIF=Xt1(*Giu(WgI?|41P>dvu`jq%tk5sKjYmDfN|2UiR?I zprN;7YYVlrpU`zgaq)=t(~!P*xe_zZjze-*bIn>LnB$@RYLcx@v7lFZWj40_{!0D_ zQ!fX&kMYqMz?yGfXAS1^#He!IuefsUKB(f#?Zyp;md;!g{KSePDZ@$bubTmQW@jNo zCIf;-oAAvR{K%AooRTLkv24Y&jU$z9b$D{1hG5ZYjOR?nilhYO3aE+g!L5ikz9YTq zA$r`Gi8qan;Wwe=G3jqwD99EPUC;Xh_PY$X5`I;(C}QbVSVK-pOtnccT1BZnI4;AW zSKniNS*HfN3 zA@YutgNF@sh%YdzaWC~-rhTfOF#4Ft27fX%Ki_B8$*mod!_@KuJU%T%i_aCfLkp@D zZpUgB(%B+PJ#jM+k1$JQ3ovblhftbA&?fzO(WyY&*|uBt@+bO;(XrUnrK&VfbeHz@ zkK9)~O!W<2%9*ViQhlDXQ1S+meG^&kOv22I;$~1Q^V@%MGgJ;h4L`4#t1#ZNR|J$H zZewV)L}2t+XxgV57AL(PfRyVP`kmqPCjj4vT5H6wZH*-!9$YgcCDI$G4_##oItNDV zn!XNmc}i5E23-uaJrH?wqBUW3V7}J+-N$JYClc$gnH;=SS%iFLHmXQm&#|?@{9xE) zOM;EwdS7%f!{WI0lU_*<%q>Wp^ojx=O$`^>{5=4Z7+#`hs(5kj1?B4(cg+|19;)#VRE2jMNi-@pXyUk@Fyxtlm9GV`tSWGtxdyuZ8WTwz6; zLkWM={-PpSmN~v+gp36u!j(fmYXv>iT2W)iKLR+By zantk8;APH}Kl-9ZY@d-OsvQ3BT#OpQkK3XLnTJsrlh*xsnzKM^L%%qzhWA`l?(s0q z?5T9{`Fts{M2o34Hut7$V>l)|jWi^7y?kJHYtYZd@SNow`5r&#E8Hw0f5yS-QM3k+ zwbWyKN}rShVgcoAhlu;NB`P_meEj!HdOkbVD=aAfBe?UxQ4bn~iQ^o!B50hYgD1_A z6s2GX^SaKa%s?mETZs=BneR{ESkPb8gfJJUj@*Ba?egLlf3r3suqIjOCYrs?Lp;?+ z7X97k3AfppHEgO)R*GulneE1sLM;Q2caumRr!y8o@}-_tQTrvn1+9%*X`!jWs%iGh zvB)#l3r_jy|35$h!hiIx)itI~6*_;3icNQi?K^kOC`bi6P@^Grm;I5h{dAo;)OuYK z{n;N6Qz}K`^?S>6QOV3C#KhSf z*^h@jwV!32jWL$?W#dOjhR0%y+3BVpnfC*oSxe>HA*tzotwD6K)UwuQVXvhC%bAqQ zUYjD#y!p9bD#a&3Q-pHf7+xl`QB!274Y<@<%Y)+p-%9Afg>Ld+yVH8qP6u<(PXF52 z8aAvayEy8jRy_d>0zOl=Z*3*?y9sd+2O|=ce>@Pd3<67$OZ(1LdK5Q%%V{{}(_AdWn6T)}_8l75Bm91i}vnzB4;dpqak#?e~v9PN=-4!tO9JPXFqE{ay-N z{l_K#ZqyxA+n-W+M&y!W%&1iyu^MjA{%;llv$K*RxYE^DbGMt3A~hXE0ZNq*HxJB2 zx3BSRno;V>JO^b7!ujVg+)8EMKUz08-56;WU_W)jt_v;*75`oF^&+^vW>B9Y%BAR^ zXB;;w)J<>KUxej8%B8inED))6&$0BnfZf-uYZ|{&@k`@VqGIzRPdP*$Fs{#c>i_#m z8hxnTygZTFvwgOfakis&^Wie>N)pM_Lv!l%gZbW8-+e|hJwjx}{wz=nmAa<|Ld53aM{FP$%%TAwcLJrjMw9U<(oilZv(K`B zuX+c1buqDxWal<_vbDT^#R};HD9jVr9(ykMuk&m>`R&JLvNfjcNYn<{8Tnf`m9rhc zPq)5{5-|*ZPoci4w74cPM6YV5%;Fgl`f^1NW$zOV|i^#*-?&b z-B5@#aK%60r90Ox6#B+S>uBw8%9$(Nefi-MSIfo0=L)-I%wMno6iWPO~QwT zs`5p0pZUq3fdL`ax`?4Mhk3D`0=V1unpO)pkDwLyZb%uD2457MEB#4fZ-=-Oy=rw3 zWd&NWrVB8AkR5HuLQU(a$;_JPCWpU!jy!vKsZ?bBzuS(k*HsRvE2Xi8Iee@sb#7=Y zRCbqZL&P6rF88t0lc7Mb_>XAzTTJf7Wht4iet%gdWIJAke*}LoBbgoyPGoYL3fo?i z6L&Dp@6F{T??y1*PLUeknJQD!{|KWn*PmwXKk=GLx%vYxnpg9EaLjMx=vT1f;4Y01 zuOctPkkopZCv22Pq&{vvicS1{OhdNaFAjYBH!Snh7#9TnA$!rN1;)W2^x>83O?gLa z@Y>~_dNd5vF{fd*|5Jav4L!%bnE5NE+K)b$S|{D$jXlZrtAgFp1s$%OjztrCbYPy= z5mt%Rzoq2RFhZ5||1QEOr>Q#z+l@YtOC#@z3YYXr(tV9!(z^hJ8E@|l>4_DwS^-UK zf`x~pvRsrEPRpk{kof|chYDq{VKpyYli#z?q=@wWE~h$+*|w{)!dEoEHEynG*zo{E zNx4SFbadz)+M$I#fPnI`4z)z=)D&9=YXJ>w?%jNTr2*tOzObO-&WU)dw+SgHO>^IVa6-An%X$X3v=GxddoEg09W=yB ztsw_AY8{S;Wn`Xo@)$GaGbV|#Z+y9?89-t6RyoCV>Dj|=fl9)by&|ikCtZl32GCw2 zn0jaeJ9)&c0`0P0#F1zlJpCEiD z{o-UK=MY~r#Wx-~PVDl)Ti=p5GReHNsPbvvnK6gO*<#3!=)wkZ-VUJ%$XKh-v0Dl^ z|6u@B>_1#1_MDfZ0_7?(U16>B+8{$DAC@yp$+mF+B!-ZGdd=&<@cm*j7K zZ_l#+shDE{ER*t5^XJFZf4Y>FioYPHC(E`=GC%4y2hK(yq5uEVFlDFnf#X%}sO`ePR5JwPN^tg3et4an|JQga6Hy@ z>~{IkhO0i6DC;>lCY}MKhJ{Hg6i31_(yK{%)`L?010H<8=m{NB5`lNUCjOC7Jq9?w}=jo=f0;^ULBR|799Tn%y{*z28Lpkn0RfB>?yBav~lfYQ)(9 z{gSufjci^Ulax&yOT|f-VtUTbSXQ@n?#|=zO>tJg>?9FF-cnLE0*EeQhG8Gw&G{-S zIQY4(j-ir9*q6yRFE(I%T3&t3{B3cuaHQ6)d0;GuKZolU>i=u+O9P>N-?m3Zq*4h* zLJQf+zLyr+ce01oAsKY}pyx7=!1Y-|u~&r~mu( z<^7&dm&-Eu9CP32bzSFq9LK49WRbIUZ8%qX3qIseRAwzp2#5LL;2WRgOsn1py)z5Q zOzHQZkwZ6HU!t6T1L#c^Cg+Iq|Ih>5)CLuAc~D?p2{VL0HRohN^^39Pl?hDzwZ3`BF{u*APLZ~ zFPy)hI0bfh!w5wm><#43KV53s0K%R@wZJACX-EOYV{T2T_vk(KXTsJ%PkU-+lf*xlbHneX5S|z<6x+~~&c7t}(IUF=Gk^AD; zZdW&X>gi`pxY_KPSFug7A4yH3?uI07>w@0<43cT3h2K{KL5E!ozGMnIIbv$cr|MN@M66h+9UHdc%Hg3R=?vXzlvX2e18jeXcKc*wT&dkkT zQ4id&T5{SrBus0tDT^&?zV=3@=cWMn)Yv7S7pOiy+mxbc=7cjbG5tjK<}w+o#nErKYqw5jMRjiTRN~0W1}*VTP-@astRt3JCZB*$N5L+-`-)crbXf49M_UYFlyjO z?m>0TRRiV)&JyuS3z7_B&G%m%^N3ksvdNvL94w*_+-CUT8U0PFY|M1v#yFqkOTMGt zlcn{sKxUz}nE37#lQrXuV^!AMWgnzS`3FKCa`NY{Oq+2sBj2K4jNde|&V%%jmEhe# zZ=i*}TiW6#`wO&J_q(7uVq{8@bWUMUYz@#DvWj5oBqlOa;ASCVVrGPH*FDeWKmD#y ze6RF%MU!@oLMiw=^XYv;1uOH&w#^+cd7nFKxe-J-?Ki-KONCOOS-c=v!9s6n)B9m3 z6X+(F$0K@X@Yv21-#UxL#M|iNe;3dRH|DU4*zY--@@^d$5T@7*n=ydARI&P>^2gJ1 z7kXzWpZazquEBdFy@G&X^osIly^WKG2(pRN+}=r?Uk~`U!u4Y-v_D&>tAJbRWaT^j`&ogbuK=K4||IMrR>14kz6UnW4SeAJ<>{ z7SdHB$Ui{aJM=3ChcLRlw&G`fZ4Kz-fwqH}R!Ap*->`eiO>-HDkzPPEMbHn1>tTM4 z#;hr8&WIz#iawpiieHlFYuE{3arjsosz<%qIGW4qx?HfVd>!SjMAzD2>m1b_gJlb7 zl#l_WJ=Ckp`nkDHd~*WPiGte&oL1|039R;q3&jTlJ_!w2JL3X|+tDf3+HrA zsTt(1m-8Wde(Q1-?4fY``W`JI=d0u9mhScjD-~IlonL3DP7Xaj*qDen_3Vf-ZQ4Ff z8*;C7kI;bK?wEOkiOw=z48xj$Eg{$0>|w2e^q+2+(z((cZnlID%u zbvyQ1>U5{XaO~o*zwAiWAjm-%9XmG7?gzbkdG^_+t^b=nfY&`auD)&N(671HQWuF7 zySzH;TvvWKoM+Vp=Z34;JBLbGdoWV@u;rrjSvhH({&>#8y9}x%KXT#S5b3rJ$)ljs zP75+Qg0mdpTWbO3>9`AC*rd#d||4)Snrb8$cEXJ@}-$AOEPLq%UWQ zc4r~6d7pP+%w9_X5t8Z}cc-3!@aga?3-ywh{wpI zIjzn+XtH*x%d?2Lqu7~M*?I>&7KvOqB-t;YmYoP4WY;ZbvzBlgd5V3;M+kygVGN!TwCS1ah`|^`P)`r+2>`8=p?gm;#m#j8 z$#VvI7oOUf9ukg=5gt&wxL)cpj!YhX-Gi{%Ux>^y1g9lQ-rgmSZjZ3!%xVYW+>~29 z9i2INSE3AtM4zlmiM-eQ6yX>C4wJ~Nwb3NcK9C7%Xzp$-u&;m9hv5?|*PZZ;mJs8| zBy0a1sr4GL1gz>L5{2!Vw+r=c)+fM(y412@3PptEFRp5{Y`nBnBqw zo}^7D#=J)L8P_?!E-hiRUR@Hep_O!bGa*Wa!wX9;jckkxRJy^b`Vo#;&a+vwhhfcC zsOKv-%Ft)W-Z&SbhhA>co$6KIlxYk{BBYDVkq|=J8CrS26iAR=7_Ycw^ch|@Gd48c zJsPu|Z9y8Vi^~93fz_`4m#M(|5Lj+GToTsV!8*)J)LBEU5!Sx#XHZ%*I^179^)j(G z=5@cRIIm19r`gh4U&rwBlpiFS2plav`^<1TV=HUN%*oAB;fuYeMDscjF+v9M4=LwW zI6j&Z9GNp({mfdt9R=nEo)}jRg-XsVmsH;V)samUJlKp!l!vQuYF?OlJ$$=ea3mB;wv6`cwfM5$5vvM{U);VvQjU3FJ}b({Lx|E(FP#obOIo zRViz|I~LJCi>8&SL1^Cy#Low_HaM&jQ-q7J%$Eof{w~-F64=`C;rHo7H&*;Z+Z8i`G6gjcZs?mmHwq zT_ddu(Q^CVROgO$UJk^xG2X!uzqVG1)}TI(BGAknBT^>(2%ZivWO;@CoWy`!T=0^; z+i+{KaDdQewDEh@>h@Z)y!c&{<+|nkE>!oi2TrKMczmt$;|~-V8TId>y^_9Cj8$KL zAf~XNsZ8S8owE0)%$HN(vAW_bDQH96=g39epg_<_qs=a_(ok1JGDZr#YC60zr40>H zzz8gM$EA9_kX@99RB7vpeAfrNEb;n!Hqo=7HRh5=fVQLdgE`8d7o2T&0P46KV}I@@ zrvI_%cg)lZfW_m61nDe?Jm*l}9 z38lLmyI<8%Mf)ty*O75|*pJ_m`Kk3stUf2MU*!oiUkpuyiv${Qa%is@#Ohoxt)CBJR;ga-3$d3cC>ho#Q8rGA9Nh`|ur?3#~X2W+6|{h)Y? zbGi{Y#g{8xO6Ktky{Gar8X2P`MbcEjOu!JI^7F8<7W7umO2`h&ugRmN7q)}|`vQ{kB*VE?M_s-brdEYc7wjI?`&20{dg^36Gm zX+eG;2JP$p0rtDHEUG=q<~1KyaPg&flU-l%&k5CX^>dXHuT1L+ER07X#v0}y`|o~I zH+c^`uI)9H94s*cw}O{b?ml=T&M(DpA*1e~U?H%o&v&1(dZAuGCuh5kSO{NxmdFaP zSh)h?K7>rFzcc2uVGc=otUpyOJ6sf<3?C@avLi(%RUQFB?CvL`?QH8dHCbKLfF3_- z$?8y(@!aY+8Osy-VjGvp^q^m3DTbX?NDa4-U+}fI{h*N=rA2=I|VVlJfB9E9K|2 z3h^g&6JH7Fwux49xI5N~I977l+s03|`|5yht(ra@ztIf=j0{p;2!`Q#XLPj#TpRWM z@u@kH%8~CD9*#Wuk$lX??l$ODS5oCF)!hfBy($IY@=sG8B`kiVP(nokaxuxJtepeu zJ)mM&*xI+onS&}Qc-8-A=RWvBA81e%*c^g>H2`Ow;#a2ppiiqr#xJf+D#UkjN%NWN z?S2Vr(WB-k-^TPlNTkb0sFJ^%3XA0O%1FICR~OAz2VH%3B(OAtq+IpG2}k4D=36P~ z@0idh(Ramg5V>wwA3?jxmO6SY9QX{yXjR%4%_-4~k7tIbJbLbJ#WUF)^uNd8Csu*b zu{mB!0-JHOs3=_F;ZC-tYeyhm0nba1zwR`PS_QC5meJ=z8XTgOc$9e{ij3gumrkpey-&qcCo2J?}X$-9g zlE>$WmC9OMFi0Gm@bz0eWGotDd)9a*m1qEjk-hYPk5U5P#`C&!QJ$@k2zLVX(IlQWOgW}ia(E?@M#^W~{%rHe4nt7J zjp;Bit2sc$FtlB(59pxNhhUiW@jQ>dhxb*LGK&j>GJWnhjgRM@dj0L~DnN;QQbD^7 zX4A`K2I-Nv`SIQ;=V!&J4;jUV<9#0=PQ}Qc?DWh-e@O9!bF{bEN{%7Mh&c#Q==dbt zn>!ymp2M5$Zv*(j>BZ!d`p50EW8`gva$6JfY#3BF-GUdHcCM)a~#z_-OzFA$cc_odui;-1RI0=M*7=%n!9O!Y* zUqTKM*dA3}NYOa#&vu7_Zn;)Hyu>9s3_TG71$4MxGwkWI=?B)Fo~O>)^_hTfCAN)t z9QSL>mQOBKIHhAae{N*!EGRzYRLKB;+eNg6oKG%(ff&}Ly9}YX&3lJE@`^S2DW?da zp?dM;-v^qN%|2_)!aD_7gZ*sh`smE7)LNM>4T(b!Fu<^l_DP$4+ZN3#PWkM-WDTDxKL#B27!|b>>A;Lq`AkNuABuS$EAr01 zg+*HVJ5dfs8+iE*UKsFn)FO`61)&mts;^k_!JZp<9I7(=v!BNzbHO+Z!cJ_D$**AG z5_Z+L%qR^9)`z=1n05V{zccgf|2 zSOiCr^*6N}o+s3{Ldg*++X)=;r5_Kknt%^`q`jGX+<)}E;gn^g+7a67p8tU8* zbRv;O9-R*z^i@l&6OGb%^Gz2Q26H%Lf{DHYuv#3jjI*G4zZt4x!d?*zSWyP5XBxFR zG9Ta%q+&#ys&q4HZh00UKyH5mx#|-;X$>BUx%w+$e_5e64gM6v? z$gh}D1nOka)S~=chHSdWDzFe&;t6ALe7Zy%+B*bWXNYpanaN_R&(nl9`|Aqp1@xKR z30vUJ&?U?%&nRr;x2<24)f|+Oap#6iRD`jZLE-qSm^)rofUg5Xe(o_2LWM!YqD)XT zdeNFOviAfB;X`d~tLH#)rjf!z@-$Jyi?4|N_?L(N3NZ>#cQq!ZwwC*gFsbK)NQ$C^ zW?^rnB}7J?*MVJ41mOkfmU7JZmTsDtlI?|vh|T4|d!SFsO5~@_cv;J0*H7YSJ~GP! zsreHloccqA&C#M2jKEM6?=&OKB`C(tGKkUm* zY}L6F;3cgUsuc2thIZC@#>Hw;za6I{y5q#GjZW$FhM;rDlcfA!Q?R^!a6Y7ouOz5nird7;gEo!o5|AWxI9+Fi3`M z+z=SsOWScvXpKB|`?Kjj;P86e)c8*IQoL zehomIU)^OCVa8ascek z=2J{LQ3WOHxsN%s$+sK`^4J=ko9AJ$FXbs72I9MWdhI~9$=R|FFan9NO8fBE8? zBr&JVvo5I}^}=(<*yq`OC${{P!vt_|E7hxyz$;UuKI6VIl-c!Oku(u*k67A&=+XR< zQpS}^YGk!+4-g+vi+?t7JfF>ApEk8xz@4wX$!zEicC(UQLUc3sv07Xu$W}`q+MC0rpuK!R|etJ;f#$mA}q}9Br z8WQx1)8~e}s{F3&%ymP4i=iui#2p9oqJI-Edv-W<6wu|7uQVV3Ma5I{wD@Ex;a67N zwu*83-t?*lNQtYq5*ZMKDFOb=Lt8bM>-c;{H{6*MR)({^nxew7io_qPTYHY;8cxt} zqFN~rXJBMR{#!mU2xbXQ% zmqvaqXZOas*_%M3X9T)mVZ`Bf#Hg9))upltPgh2T^dk42f$^DHu>p}^OS@_M90-V7 zQQ@fr%s=TH@@NVNLIPfD>{U!|J9gznOgQdBXQRuK`-=yw>(t9*(Z)Lyu(2UDmE+x*gdW&oQ6PDkaVGXkZe0cr|Q9r z>TBv*Vf|ihcz`rz?VX-zwBaPD(W`y%MP9?Tdhyzwts|vG-XIc_$mKs=Vqe#90| zBjwEZYrA`npz?o;v0v{l+r?9HT9HEEESn3qjOrG=x|b9&Kwe*cr+`C%mQ1 z$(dRE>4}PYKPJp6q37>xaF2^HRg7>KqyU_b z;?>hG$U=iG%Uqi4B_<8U${9v|d!Fq|dzI?8;9-}twtBH_VJ7_IhA)f`wA<5_H5w~f zdTJ75`sJOZ#q%E2b?u8DzD&)l3r|-U?{2Nn*r;i__&!h6hY7Ldd5jOsga9=iAmuaQ zAnusCp1QEeYkx#AM(suOM=Q5h-V`{IE;CvCF6L_9qzGH7G>`6gfCb=POLfNZx{Sb3pD&j_wEdwj%8VC!`G=Dy#+4(Py&-@7N$<4*y86g#>(?9*R!0&d`bC%)C(cV>l#``6(0&@LppyFk z@#-CA`QqowmM)z4J^?U&V7!Ab9E-)Ve1b6t6kqcx{HDJWRe2AkYJMU|Eb2qW9p{~t zYuVQuJ@fN4-WV;{OAjC;!BGKf+6s15MmNEvs@AyG+@K9NFB)?eCvM05GZOwnq-F=w z%DU$4B>3Ln#Nd0vQ{&;v@?rrSk$H_8MhxrmD8NWvQE|{3i7;aqJuUz1Q(5fKSf}Ob zpE{4eKw;`O4~~q{xrP(NuVhlVT{aa)Cr>+={nRm4w?kZ7u*yd-DOMWPh2j~E_s&YG z6s6d7A`(@Sxo_3%X^$c$3=8fg{}l1GkQKR};=!G`iPmW6?{$LW?Gxu6_ zaFC@+yOWSYmGMhBv+zhsMNY4;G!BRA;1VAvM8>B|18}C~#bL7{s~1)&BjOuPy;rQ5 z*6TWV8yrT#2g?`IaonF=h3}=ka~prmY#0){H6cOh3x4 zhiFr+ZUZGq6Zo%_mA9Gu`#?@OGJLRxF74 z8c!VKQ{|nudLWTCJC>v(wUeV9KP%Cno|nOWN*7UdXYYGMSDa4{9zmDUga$NW8-mWs^rRQ9i^p5~u z%>ifQA3t-?4nEqK4x-@7n`SWF+=aJFdrqGPSP5%x-6uZ$x1;lKmc!KHEtwoiGW#r$ROL5SqsKMwH7tZxTZ<N`)41^wPiqvFRZxwo4?RH|>pj_pMmlvwN`Z^ z66QNz)2RdXB8&N3RRcP37)6nR$<5be#Ws*MMG!f%iB6Az9A$LeE zlM9<-ps_&foJn^;98ylT04_h=IXtk5d~=ykGYypQ2{Ze?nSqd=G-Gu?VP?>_PoKtg3)K>^n2 zi7%ORc%Xt?W+F@vLgxTCEyjD`$^554;pH%3oBFmH(X`Q2zF+wWKyD=8rdB*u&)QU{+|L-MmbZn6jx!E$0RHP1m5*Vcp109q`QkFn; z5f@C+0n`If-REtYlJa}sROb%Ice{K~n^^LI!lbTzl0bO0xOxM1c|QB=;BonpZCBGe zbK*`hWDC)JR_&60(4qxi;{Y`bPgnkC@LYo=PaPkZu; z8PyY^#X?lN%k-*6<2i^04|MlFz0f(aLYL;!mdkadqtbthK96GPO9I0$2@XM(Qs^9xk zheY=^;jD@XF5tN3HuaC+KD9_XEE=+_iSH0qJZu5HxwX{nMu9AEmNhB30i?1J(P_f> ziDn{7k<$(Iv(yQYU+g&9F>|F>4ELt54wJSnvV)`{>;|XR@BF{F3CRD^MgIu_G}Cur zPbYNF4`>EpJxbkOJOO-}*<|V`PepV33}uoAiXp~BfLZ^MBh6H4TT>UU)#mF{fFJ+% zvCG>fuULF*`(RP2qtm?2T>Cv-K&24%Q)h?j6bn4~7HJ^|yUn>O`}4@dSojrsH2lZL zxbayrny*xI`)1)M-qChgD_`L!Uf~?)b7s+EjiF^@hrk14MRj;U1nj?LVuNrfGwg=G z4kaH0MDC9e$s?n)(#;tFdyG|OZ@BvxlLzuUegdz#J4TI_JpUQ?gu(#shi2%5Gk^Nb z{v(?F`wL-k221b){Tk$d#ZJ(_Ed>78-@If7LaOW?)jx))KfJ1z4zMz`CWiiff&cuZ zep{>lLi8ILe;)pY=+C(PHv1Q%-@y3u@GnGv#^tx!zYzTf#-E3OA^I~ezs>%I=r=I_ zJp2pMpK0ZTg4AEQ{{ND+6Ng8qZF6GowOW^e PfG_oXI(LgyAHDc5fMIik literal 0 HcmV?d00001 diff --git a/documentation/image1.py b/documentation/image1.py new file mode 100644 index 00000000..c966c7e9 --- /dev/null +++ b/documentation/image1.py @@ -0,0 +1,137 @@ +# 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/Rubik-Regular.ttf" +FONT_LICENSE = "OFL v1.1" +AUXILIARY_FONT = "Helvetica" +AUXILIARY_FONT_SIZE = 48 + +BIG_TEXT = "AaBb" +BIG_TEXT_FONT_SIZE = 730 +BIG_TEXT_SIDE_MARGIN = MARGIN * 1 +BIG_TEXT_BOTTOM_MARGIN = MARGIN * 2 + +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 + #text(BIG_TEXT, ((WIDTH / 2) - MARGIN * 4.75, (HEIGHT / 2) - MARGIN * 2.5)) + text(BIG_TEXT, (BIG_TEXT_SIDE_MARGIN, BIG_TEXT_BOTTOM_MARGIN)) + + +# 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 = MY_URL + "at commit " + MY_HASH + URL_AND_HASH = URL_AND_HASH.replace("\n", " ") + # Draw Text + 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/image2.png b/documentation/image2.png new file mode 100644 index 0000000000000000000000000000000000000000..7d511b3ef07b08ee7688c43ea22a1cdafb38b163 GIT binary patch literal 212518 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

V`Ck`tG=` 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 z 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%0D?yf3l!&rp0%_vqEr`Por6wgrVolyH`;-O zpPk4DiiKdRXXzWbu>k0zo0jA6fdZXp?tF|Xs|c5Zd0%IATtdtPijdeUH#fI2oVIB0 z-=0Ot|BO3xMqu%WoJ6QN1zD%ly8)l56_?3LgpWi^DzvM?rFk;Upmwx%Z=SQ$s6o+Duq2>#%6fib?jq z20J1Yr|)91kRA}O!mTwR!SY_udcS{QrIG@w@{_8x{h>o=m{PcP zZVZ(Skfht(%IEFvyCz<$pPI_gkDnO#7{7c^5wB=BUNLj1Y15Z(ngWGD`#~=TuxvKG zY#lyF+)P?L!UTNFI*h%>#BuNS7=jOY5H7S{U#y3z zs;dh|6$4zRyYO^#SG^0hz)$%;_~`lKM>o9~GX~-`FMGU0=I8B6NC61LKfBbHa^r>& zenic~Stay*=7?;|-!Lw#SFn%F-%WPZ!1KsXh1`7qb%(ub6hJz9mUBV4#o3V?63`q1 zF1%(#&H-ezFnz&}wIHJYUOaK$qD&vhDd2~1X>|Gbyo@%R6<0HUEhRSR1v81<(c zMh;70GuL@6DW4s6-0O7g*o*%z3&G5GnF>Xd|Mz96c)ADMRkxZx{_}V@o+A;k{R+FG1afnyX4=AnS}&)X*owsCaZ?dfEd{y8&Y>djTq)l?M9y`Iwu2EJ=)%v-5lV3SYmA-P;RyuI>od{S>V5(_dO%KK}nb z)W#`%n9s_`S;}29*%1>xX^L~r!}e*PfNbuL_xV>K`rxtW1olm=j^tnT8!e`utx1~3gF`B z!F(~QaLj5WxGi_lP&sooj$e23OO)O;1O%i{TJ1d#<-wP21PE`b%x&O-`}C~J>ZoCz+?=RW$bBQ$?7GpagMA#@sQt^TFO@>;pgK$ zv>V+V`?bCocjc*x{aD99?VFgKJnZ!lk;21|nxEt3Cd{3|TLR^i(B!UHw0+jr@nH1C zETamfi9BT>vqK!o95!M82-&iEam>chnNqar7n2RT*)^z zr|`YrzI*rjU_>z&1<6N+{;3U5@kO3G9sF@MzEpjUw90c34}JXbLHE(}IC(1Fd*a{d zqYR}S_usqm-=hbqAFbK80qWuUt0m(jBYKOQg3oMN^EfGq16^8CSa2=I%P10GG~&~R z#`)>}_rU09Ld>R}D3^CegvU@5g~hPqTJbdvcbfX)q%;8)yK@TKtOXdh&;HW7=0t&* z>qEs|c`WwbvnR)fi=sYsaqG(;?;!L^U%h*rbjRJQ2T+?G)H3Ogr z*S!$0tyV`a(eFc#&F-~#@Piz#xE-73bo6K7X#~{Re}K&V6fTi@7nCNR$cRGHYB$-bkte4ko^XAP0ZZEIwt?rJGSiRXh@Kg+z16< zQ%6TaUG6sI>zdIpCaawIXf$9k?uy^R7mszUw_Mm;A@CJOPO=4HB@pGh6^e+yq5y_r zhn|et+xw_eAfy|ODAfkbc{fva3nDR8HxZc1#0hY(p{CK-1Lvg=LCeeo{4=eG<9UvV zsAv>Iz}AEAsatUjK!L&Iv_lg6_wQE^`>jeO(f9%n!jp+*cxFH2&pyEOib4ae3mZ@W zz`(1F8TL3`I((Zdt{uF1R&7|FfV{4w&!vd17F$rvehP@Ib%S&#do~)OFs@tCwmdvK z%7PcWtLEr_{Fy>1L#iOsG+$=^(TYZkMBH@YPvFBFV67(nKRg8fRf_92B2#Cs=4l}^ zoH~0Wo%{)+h@=3S+vH@wKs9ZG6`; zC(Db#;MkKSm39B^xa!eYj13E)#Sy~5fc2)f+%Zj#DxNyItB=MP_rv@aqk+CHPTEUU3HZxYCA`wfUEXxZkoXsZShAbeH3YAK_{Q;JUsCi!c z7#;&L0|Tx%Ikh^BoPO1(emIjA2?5{w&)eic%|T)^ z5pKTb%{BQu_!%Ta!eFODWl0GW$VdFt!b8iQmVG`v4NRoCTJ{bRV7t zn#sv1JcBpbpFoGSwVIOpxT{wsLxG=&sVy^1O|PxNHpPKW>i#%Bg}ZuLQAxZTVNX?^ z`-8FE5fEh;5|8n2khI_ahOq74qVg8t119ceqlFh-CP@G$SKpq@6M@ z3!H8dpZtS96P!ALVY$?|ZDZe*Wq$A=8w|8y%&3d*bd(y;UUo>T;4H6CLl5Cw9H1+?Y><>r$RRf~Qd-Tpm$0JANvTjdUiHL|a z0-`#+IMkLZ!2wbIrH|Ye3=9nTmL8TS|2K|bj*-+~*Q*DBun+RRH|K;M_QE^a0_A^S z767V@ZbzJbCvXQfM;u?5?O#LeJx8BYkZwo*mf~}FDW`(8n6jpS?ZedgFDR^wKKFcPD)6d1(nI4lV1ySl0 zip`@CweBBfT>+DW67aDrXBiy!_V%`Uc=G1Q7prSgfaow)#esb9&Y*|nKn2lO4xKSp zNmk?yv9X!=95z0DSn}uWEV&ZME9hV{%OkppkzDGKqJ5g!Y$TKUT&=n1AQ3bV0|l`> zSBmJxuFLi>ur^r*7K(vQrwI0GxonERGk5yMix-ZNW4CN^0*8t%EA%_Uey;#}0CyQZ zARbmUoVWgNM@umF`Z`a*SQj1SIGkt&nb2bbWm(;=VFo0jA7XeM$20rGVWGf-(7~OQ zc$A+3co(6lY?))4Jc?BqC@})S5Sj5d$apKH8-o#vMnl+yE9L9oIlyR0R2c3zLGA(eIs@hhOag$4Pj6(ym_RfqNVYiyZi5jvgMY5DL;~?O_J% zz>Je5u`Ph+ZT>A{c~KGts1dDr@X^Q0I2Vq9((3mpV{8Sj5(SxgBg|zCkZ4Zf@(?rO zK4feA1ZDVemL2gcCCTH1Vwq;Fqud;s1Jw?!O@DTPxe!4T9nYVi4&0e}>5?{jg~rB4 z0xyw!3zAHBfLgM@_FSaLa%!o%#;m+NF2IYiDA+OAue;|hZ&6nMo-Ufd4NdeJuzg}s zU~9kNB#YSQafq-oj<-Ay4D;0NY#dhd8hu~+-)|t)2fhZ~)dHd3{8m{smKTtu4kB!j zz@UpwPN+iK5FJ1@6orE-A|@8SN1g#I(MU257KtDnpX-gx-D_GrzLUc@hN^(1!gLsi zvkH(a8fIh=_H01gn6a5nLPbR-5>fa%sOAOGQPqb9!8pu;*C-l-q~y$BqA4->I-lTz zO%RJf!^@0eFdiR8!0V#BKkALVw{YrcO>DCo-DXAk@)g0(qWQ%|0iPUI zFuMINCD37>`ZK?={?re8;2Kifw~ITVEC6<#qHdqm21nS`)y2!n$(fJaZtDBP$!X7N zc*4bSH$Oo*V(?<}Z`@R8@HX*n4Z%!|tz(Djq#RW=|_)QFNV%A!))MEJm=K zQpY{6AZvuYCB$r2W3MIUmkd?fs$#4#1iw*y{rcmOm(Vrdj|Z>`r5+|4%~p5rbyj2HpVp*ePCtwO+Ms;e|ZS`>VM*67!`A34&57!xOOhn|16km~Wq<8mDqE8#AoBfX`^ zP=jWja%86eb^vdY2qyM@HUz4#!v0~#fjgOLcnj1qHx=0&z}@^o|Bl;j(da7pGGyeQ z0JI&(Br=5?ujfJj&^|OTjaae+XCf&WQ{Y)#YOfa+F`!O~E$Z1@S~8;f^CiQ6k~U0a zj9BzG_V(_E?)O5NsaP<;Dl$`mBYgOz46L7qo62{rOS<-@FeeAc>4~9duA9iBHlznK zzUb^sCaxK1RRG!de_ zwY+*637XQ=oVQ9#BjIEu$IR2N$A=YGD-2ys>~ZuUpJ?T`8k)BVfBE_qt&DgTWDy%! zs*(D?A@uKTpH${^@f}T-<>k*8>=w{O+>2P&y8dneLwj0oE+=wESYqSjooj1x5s|@8 z)M=STmlbIBFh;K`pq2N+|Axf8t*WYu#NNVYv?Y!Bja^O}c4KAW3P3hAw1RP{dpfvd zW2QS%fN}aAQTqX0w{!}E>x+e2yOF5wYU~Y19DyQMp~;p>T5E-Dv1TL!+8kkzLTeKT zdS1uT(J^Mw1&Vq$vU>-XLOzKncx{?+IcXd?W1*N19Ww(f8(S25xU#>d+aa8}j0F#& zNF>*9-v~)fRlpaE-6E8G(;$8Bot{&+dk~Pg|GzNYR{%_zFd~DFVKMi%n!E$35tUBn z_gko%nDG;%;B8Tz&!eZ%aMAc;hXUo)eb##zbcp|o1dS(XVGbhKEM8eXgyo&z(rSoW z1&H7Y?oTERFP^>)=%Vo^l9F41hC+W-E_;hNJNj61lyuHHLrg@E`}u=QJcI`a9-BjC z^)X;&8lnl&88Bn-!L5x+g%&Wc&|yp$&)o`TwaAWBDsS8mSX(y(I3i(Q^aH{bA+Y zxNM>I*TdE;-q%>Io(y<)AFv?vn?#rMb7>I!XUzZNTI+yr>mC(rD+=NKwmf)n_nxn~ zH4+B})LJ3LNW+r*YX{3L3ju$VoDj=Vbn%3uO8inmwwg74_kltJuH~qk3(%8wz!$PL z4}3I%`WQomv7voK)9<@=#4zXn7uZnGY@ZNL-CE?(bPSc9#W_`l*QIdVn!VYvz_1d= zE0PE>HZTdmCfaTn*gJ@xbkGpVU3-t(4Z=zw;sBUj9sDKH?-xl{XNB5^4Q48N&@qly z%z)7=d~^;A-1PNhGBbtG549*-Dhd)9AFH^d|EADQwejHM5dJi$F9FFW?sUmbYHF>o z%J!}8!tZYmi_EQ%uX-gG1^6`tg0JUoI>H_@KP7GM4O~*_+ZFl0;^yMe%6kA2(y!fM z|6m0aAiRCXU&Bs9JkwHHK=>a}O4vTd+eiLVX!Xq@(cAb4-S3Kut8p?wfV|(`J70Pd zUCas?qyv(%dJ?@x^x#)`7G!Qb21`XgX4ua3=bt>FOV*#9d4NwmT>Fw_@^u8(@5bLp zs4o1YAr7zs;SuraZ*7Gtq8s14#^Fg6=;{DGm?98=)4#VOUsnfxRezWro^R-$TgQFF z?ru<4zE*hPy*eyDqmSVfkq-Pj-d3P@M*XlmMwY<8>unNLOF0~+3vBKlml$R76EwTB zL%PA{zyWMk7C)^!iorD6L$H}b#E;;$pTAY(gsh~4!$lA%sF89e$E#&rB}d%c_`B_K zJcv1SP>pjlX-Q4)z*)vBqmBx4sg>rF5z5`>FPPv?7WC!i}vF}f^< zPsQ~5G)i}|MOoEPm|2T3d~jU5f33@sf%0^B4q6I?#59!;;=(P!1mT?Rr6<5i!RM_H z_kmoi8`EcEc0bNPw6}tMng=L4L-=Tjd{6O8e(JF_AF#*=wqHQ-EqDgGs7hQnrG&xey&C zYvE}?6ojTv_&$(!n+};Bx?T417(`3qluq~snvCOGjwoepuw9**Y@RH1(~os9OzQ%5PJNxS7X zKTdLz0z%Cm9MTEngA_=A4zGXkf3t^eLG^vhtFuBo%U+me2AIAZH#6gXZnWQpy}K|& zGIfW+cj=ssfHmp3eRV2G)0i;kNvp zElL@T7p2%#dHmF|r*I_3g130%ny@eC`T%_pWjoTg2GypIKxkR9!gcHK96nxNZT$$m zc9WkhcTX&t85`?@Rf(RfEh|$1!zt7C_Rqvrga0TuUl^pZ9k2vvS)!2Bk7fv$9?iZYtfJv81=1ANM{97r|ZpfgwYI?l2w`ij%0e}^a zu722~wIvpUEw&S`El`~$)VH(GDtBbk(Evr%O9uUNLt{{YS%bU08~4H|M(;X z1>?f@u=J@zrE$Ks8_d^CW%>s4-Q!weoCv~q4|(=#ncwIFf+GwE`ulme(-TEg^w1~_ zTlHC#;$sx_7COL?qL(#2Iaa!Gc6M?S+9!fVI&~>*^JO}k_hq_BrX)j2aIk4c6?XS8 z%;?>_efz@r2M&r95DiPHv=_u;FHg~)P;etg!GF5@<`CNEL_2hzf11ioacLb(!DZ@! zBir+PfJ#j@$}-eq4#B`HcRNQB+LgQZhi6-ndT~lYQaP560HQWxp#DqW_gRr(%nGl2 z5Spk>WV=z)p1SHca6sSiFV&m2f{4INO z`GBP*Yl!>-Z;}~D-B8~vt$9$}d0GyZj*x{qD2DhoUkXSsaZ&C)T!x*sRLu5}(fFmdBy4ubc# zE5W>bYMrFfhhqU)PB| zaVV;(L3y%V6guOX3hrkckZTrhCF{JP9S$wDnp5|Pb+57wcXAYzk z^F4pp0!7e1IEmiWf8s7pw;t)#FB2Ccw%XmMpv+-ts8udC0 zRSR{ee5l!li>eeb>oZy!U1?I)E&&AQ@qj9^`4t%NU5_Hl&tzqZLi*G6fGp;8KK@?L zB*XEj4(q>=x5>V79cLCRL5PH)22}SNIZc;fLbE*a6j^W|bo*o(A`=tYeraSuAk-7| z)bbn<4`=(AIYv(@jdQUl^{_N&)#(dMm}Ba{x-wH9%vEpucWr)6IP9%?}MN{=J1jqW8=$4UdEq*X=Da$(`ZJC6hqLdKMQt z8`ad%v`igJOqE5`UKsLH{>LD`J`3|fVOHq?S|c4fOQ^y6=eA$CKu1INPtW4xx~Z9& zkx+XgAFX^Gf*e{lprbr+JUwUwJwwE*CEJAmUz75^i<$!NJqR{XhB#$P@41<3Dyo7+hg{Hx+-s4fs$z49D7TBnRnw4ieH6w`H5g;S!4| z@L3u#fhHE z*YSrv!RA#9KA zK=u~(8J?I(NgqP;rmpeQPK=W*VPRp^1#;GGVdfzDWvkW`XrX%=AiB$^!}m`xK@wo1 z&!K>EU>N7E=131m>cR)Wf`z$_Nhv9DXo0B<_u?s+_Y++BX z<7~Q*E13}~Ul~7y(7fhbDr$^+frcb$MEm&kjG=&P#`IYI!pDc7kB<(`Y&?E1AdCg8 zFeMW<^oAHgy}`Tc55SQv6jwG2{3X{v5X?O&5XRoA7;qryrpZshk@kf=uVTw!*ql8c znj7p%gk`2KU>2i6AhM576jwJ5`du4un?r~AEuKi?-;mJAflUspRaI9!ob($N@We$I zgF;{}4kJ(FCd(g9c#NE=2{?k!V2<)IDMcuX1oeJ=d^}@1NO$Iz^ z=WhZjTa}#GYhGsQ3#~nYR(d7greqO*kR;f^$zTNK5ZN3~ zT>xj$_$JbpNfv=usuv%t`5{nyfZwwf7M44S2oT%VGxrM(5Dm~o?g?_xpoxnWRO7}< zt@zpPmyzZgw#MB)cU$1uI>x31Y^?dj{YcSQcvo?idaD#PrZGS*n(>jUPad>F&f3rs^5RV}J@MA7^-R_F^oY(or(G3G? z?hI%Ys)4f$DmG#fh5fIeyGO8 zZkf+ayCXA?sQL+&>?AUbLjY?DN02)sz|XILVEX1ZkXXKOSK;L!-A_*wT~DEyJmy`g z?i)EX6YE3LcBvfFpdbqmPcqE#GQps!=Gxkb_JOWqCN4Z$8`5QGE)qT zV!tv*pjB+@>A6%Tb^_ajBhQ>+@fHod01WbzAvE@yL@|<(0Y?P4*Y$oJ$%HZ5MIc0a zfX`!Qcy;xKP>3g~8rafdS+gtA60v>sz?QBl6&d;(pK5Dq;k9h$QGcjR90>b%kLbMS z(u4rO#wxlv+PI{7&}jps`oqq1(Gh#0pr~2kSh1I;SiZZ( zf>GtS)Jp}(ISS+t6YscxeUBXyIVm zex~oC-5At5SpP|qipaZ~%hcYJ+P;LNo9=ESTl{jxu>o!$+s<6A zu4#!Kjvn(-l6Zw#LS#5%x#Y7Lg2)V#boPE)SiU7)WPvmKoy0~-B8 z_oBfEfgJFC%l#1V7coLyuhOs@EKgO_t#w9Gcch#=Jn$2Oi>n0Q!>c+`eQ@uTpQ<$V zhXyb;q8!5uE3Kg+dPOVjna0%?zTi+^6s+ID*jvQ8K829T*q+7vzgOzcke>+&+*%qq zx4$Mc`hx*-db4?g^+l{<49bNE_L2^_N~8q20LvYSLwSS{R>rla~zep?f*IU!6( zLoF`;HZ(NM^#@|pgyqHw+zo#I{tVz=M6^QH0SKxVfm}rQ?=p>e&T zQuo`gYnH3YQRd|tJFlIZDbkfi`KYob&1}~Kp z7Lw=>xTNVElkWnXTJZ-Ux~_2tub^P727*L|T{mTUoJ)FuKGd6S7BD*-7_wa9OQ?LN zHhhi~mEpg>WsNo5sr>Y!Frt0^YGNa}%0lHNef_(t=>4^$h>KiZ$k4~B z9Oo%a*>H6R<)lz4W@}4$yi#mNJ%*6#i&L-)D#m1k|{uxa#4DzDU*<~Aj2x>8>iPTF^ zT^V~-TJ*83JV9v*VOz~0TKhjdX61X!ZSpRTxq6}nd?sv|o2Uzb-O(>&?V}|3svSnQ z@rP*j{xeRLMo|}&Ry)?n!xL4!U($Ed{scp0+QuJWHimh+AZt z4WI4*>^M%}9&n(Q$cgUy48@~slg$UH&yep4Z;BS%5D0Z|iD7c8>R5C+RS9McM$f;3wAcvnRV)Qdb{@4p76 zEVB(1;S-Imc;Pp-x#1NjVVF1z;IIvCqX)?L1e=j;MdHav%M^|B;KoP}L;RtH>kb=Z zbkZPxY=)GD71V1Cgs9Qrrtwi?&Y$OlIIKIPox|c#4FiSh9>hRP|9*>``XRFCcMh{U zH6)j9qgX;GZ?wNw$tB}w!y+4e<-^5RqjI)BTT}g2XRU9toQ1Y=-+@Di*kN6yU3v>` zN3*9$wm!-lMB@U)VQJ#j6WuRlgXvMb%<@E~mUP=(ISl;N`|9oVKN2qqJ%qtjee}W> z3hmMn7TzJ7Qf25l@&UE^A6ZxZe$jbzVc#wg)ni}3`ahFX3xASjc41)0K3t?51oc`d z$JKbGG0qWbT~nI0Ue()IZ{EbC(ILDI2Ek}hGh_maG$yTqhYTK8nk*Ov(7`mA2qTe( zq60q9L1|hX+JnkUW$(o3)g?MxDcYdTM(r#{f1i*zMQ`Mjzn39*DSe>v(6LXWz9+9G z_(eb1;!Azq+mp!KK&nozt+_cJ2A7X5Q_0sP>3Ah2&G2Ms-!1`fG4y^{A1pwkiFZ%f zcpqDvZfxFg4zm~nF34L?NsFU>d^&5e`$@;6VC#u2NC|qcT254L{?J}Xy{3k#H#a93m@vW27 z7q>0$-=8+n$m4z?9}+kWWgIY;=DvmhtbIU3x_0Rr9hH8aX&kFq!p%P`sT)O|bMq@x zaC4vYSKdrfQRDcsgVhO!G4=|pf4!lA_ zhJR*AGbAn1&#tJq0(0sU5a9XH-rW*fC%mvpzGzL%GqzTdOdt7UPAlO=nr}d zls%5=@q(LWsaIC;uSCM|M}Zh|bO%IHOqOnXD{!jumeY~Kb7Lta#X0)C|qJ7147K_b?X*)P(XJ?zha1tNYT_+B8SfF*qVlkErK}5Ur)PRR{48x!@$cR;A-qh`fryv4~!M z@hOoUJ9>L_!3G?K`r(|{NxHVe?wwLkMAq%?d5oYoE3iuSFo5;}~g z1O19*uEo#L$o<*VX!g&b6!BX=*#H$x?(}84d?!_T25mqVfZGJ}Y=k*1Y`-=Am-o!k z5)M=*cs8N{bEBeqw18)Ol`$p6Dm}oTu)1W3D_3zV<=s$}7k&FZ*vk~}Tf9^66>f1; zNj`hFP^mzNcFeB()hl}R1nU_hVUK+i#1gbRsmo~Zt!v1i=7gM-0-i-Db=_-}3xEzf z5C+olMV!IF)`W3~1_3&RReGeQCsRPszaA!^1(ynA(~B3J;eUSYs)Akx0{$ebS|{%n zFxzW4Y+%9sV!8mps{ME9yG-wDrTMcdkR3XIGVxx6=cNwSM3wxt`GBG%HvE@xA6&?( zDrTa#R9$Y69G9uho5twv26&Br=ii?KZzsr278tqtB(GO%>VwArcEDJ;KiYWe{6K2J zJL9v^lQunT*HGl4MBt;*R;e{hy#$gmTy#z=8ZS4ygP$p+=tKjBw>XZ}L}bgOE6_u6 zM$@W|ISLK{qkVh-wP(U^6vwG&=n9TWt6$~Ii*{et$r zGGjp7YLCE%lp}Ok88K-eVWy}JpLn4wXpt+D@rqlQImUcD?gHNT$M>S-@`~HFf26z$ zefeY~g+|p=J&9uPVbZAUDL1>@n%yaF1i%Ry(@0UWF45#C3NUyIFX!YuLGj{&0x=RO zcO#}dM@%Qj8e(xSWx416vtuq20^iUCWjEHwl70qpKAl3#qJ=SB??h$Mc=PTRwR&gI zmBNM@%$8oS*yyIER!mcA7GfSE;Z1`!sym|@-)|vP`g zCwjO6ycKRaxwlovW07=xy;da)A)q@)Y3JXT*YyVWn`fSv~x)noN zzN&X5dhxfffJF2R(l45TPokv3zot`cT5tI-zC#3)Cs}L z69iMU5heX66_MHI+(ph;Dh!c78#Ql47u+}U+mzGf*kg)5gE&L}Sx+qRIrIW(>phc7 z*bnJp7DN>!b_jCHtt)KkfcO+CUAHERdVKsd*utQV!V2D^D}x+QPBq7Mj-2b=sJXa> z*;JsbCMs8Njad|NI<&sWoUb-qe1Wl`UJy#wqBF zw?mwoSC`v|u5s!^D+iJO#>T}p5pM=ovZ`P)cUNz39KLToQn<1>pQ#A2#;7`POgH+m z()3W(D5Ypi%XFBViiqpRO`GV6&K5WX3NgM8F|oJN>Qui-3)LO?z+Y%%W2|^0M2icJ zRfET95b|}niKZF?t7f>?Jf8m>6P3oggc{RUVQ@ot&p{$auIZFm=%AM&8c3Y3;*ydk z@W`+RGNX#JK$6o_v$2@YcHSk;aQ(%@&Jt2*&jain;1`jJLnY?yY=v4ADsvrtCnN{| z-;Wu`qci!DS5|Gc1K-LkxRe?260=Y!_CX}E53O{=?S=*5w8jt77-UH zogrVOPa}c)HbQ_za18hlcc;DF57Agw7Te3KJBf^%i2D#Q0V9d zt5Xbj%x`|301ymu{4 zK`A@-{(&GOV>(S1S*3~K8`v3mqd0_0s|QcZzU_QTi$ni_Z%-^1kgx|Q1;?>QF5wEi zk66MeSK-u?C+d_|1utTCkZW5dIChf3KAeKP6H`=QV9*1-R%!?n^s)aCR`7jjB< zlE~@B1EZs8qhlhfEOLvY`zFfMvYdYOO&s8op{#HHJWbwDS-hWmN^n545)~e-0%tuQ z;s39^l9_BJZ7YIkD-B!y~L^qn&GI) zsa9YwRnr^n?&Vj@)0bGV{rK^t3cJO&NO?=Cr^^{V-p(3jb80_J&}d=oJyVqJxT109=B&VD44I>miK%4mt#PWYMm6;yfi2jxqiaqP6*Q8V{6N zq8H|Y>W&Vt3m%W$tI7uu_NKi1&)v~c+g3LQI@b0R*P%yo4hx5lz&ad!On>7oZWs#b zSf#0Q(m<6kIX@;Jq%QV=?3y)tkQx1(26zDR0f7>*ZcW<;OMb3@37GQdpDw(9;ixK) z7eN{s0VqtnU9a!Q<>7?A0(h#g`{XT%46Yi^&o+$%XZ_cyCplxQ24lLa)(Une>u|^# zdjBBXyb*Um^?;+wywsL0LP*Ft{P!+2f0!_%A=jY^(nAz9jP01@Wa?<0BX3ge>eP@{ zPIG_IsziKvayx6mfl)dP@~2ghAlM|lOy`gx`$~UXz!>@9M44{A1YJo0n`U0rj(dsDCzv`&{feK&Ow%O|+Qk;HhXme}7eEu4P(%&IfB5*}XWSM@>9rFN^(fxL?UJ?{=nwcSqBf-mR6B-!eP|n=KxZM1;HSBl%jgaqacb)$xQoI) zB)PhIQ20=7~aMFuRfh#kEr%%}0{qz`qA9-l|_4kK<6= z^h%YuWeC4EkK=rRyu%o5n&e!m&Py&iunUnm-8xWI|LPV|D}YoO)OE{S?+Tj8Y(QY3 z4wz`mCz2L9+nrU4Dd-2sU7;(saep8kOVq)R@J)cDlq*f%j;^ajDN4Bbq}#UCnTN

%!h+KB@FZ{qbD57Xyg${v(Qu;>=^ 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%0AXp-t9Hb}#Tn`}jRr{SbMVW%DV7_FZroD)fd+ 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.9.2 +gftools[qa]>=0.9.23 diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..9b804cd3 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,7 @@ +fontmake>=2.4 +gftools[qa]>=0.9.23 +drawbot-skia>=0.4.8 +sh>=1.14.2 +bumpfontversion>=0.2.0 +diffenator2>=0.2.5 + 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/Rubik-Italic.glyphs b/sources/Rubik-Italic.glyphs new file mode 100644 index 00000000..74d6bb94 --- /dev/null +++ b/sources/Rubik-Italic.glyphs @@ -0,0 +1,87852 @@ +{ +.appVersion = "3135"; +.formatVersion = 3; +axes = ( +{ +name = Weight; +tag = wght; +} +); +classes = ( +{ +code = "alef-hb bet-hb gimel-hb dalet-hb he-hb vav-hb zayin-hb het-hb tet-hb yod-hb finalkaf-hb kaf-hb lamed-hb finalmem-hb mem-hb finalnun-hb nun-hb samekh-hb ayin-hb finalpe-hb pe-hb finaltsadi-hb tsadi-hb qof-hb resh-hb shin-hb tav-hb"; +name = HebrewLetters; +}, +{ +automatic = 1; +code = "A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jacute Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Ntilde Eng O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent T Tbar Tcaron Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent A-cy Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy Gedescender-cy Ghestroke-cy Ghemiddlehook-cy De-cy Ie-cy Iegrave-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Iigrave-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Yeru-cy Hardsign-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Yat-cy Yusbig-cy Fita-cy Izhitsa-cy Zhedescender-cy Zedescender-cy Kadescender-cy Kaverticalstroke-cy Kabashkir-cy Endescender-cy Enghe-cy Pedescender-cy Esdescender-cy Ustrait-cy Ustraitstroke-cy Chedescender-cy Cheverticalstroke-cy Shha-cy Palochka-cy Zhebreve-cy Chekhakassian-cy Abreve-cy Adieresis-cy Aie-cy Iebreve-cy Schwa-cy Zhedieresis-cy Zedieresis-cy Imacron-cy Idieresis-cy Odieresis-cy Obarred-cy Umacron-cy Udieresis-cy Uhungarumlaut-cy Chedieresis-cy Yerudieresis-cy Qa-cy We-cy"; +name = Uppercase; +} +); +customParameters = ( +{ +name = panose; +value = ( +0, +0, +0, +0, +0, +0, +0, +0, +0, +0 +); +}, +{ +name = fsType; +value = ( +); +}, +{ +name = "Write lastChange"; +value = 0; +}, +{ +name = "Use Typo Metrics"; +value = 1; +}, +{ +name = "Use Line Breaks"; +value = 1; +}, +{ +name = "Axis Mappings"; +value = { +wght = { +300 = 60; +400 = 90; +500 = 125; +600 = 142; +700 = 160; +800 = 190; +900 = 220; +}; +}; +}, +{ +name = "Enforce Compatibility Check"; +value = 0; +} +); +date = "2017-03-21 06:32:22 +0000"; +familyName = Rubik; +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; +languagesystem latn NLD; + +languagesystem hebr dflt; +languagesystem hebr IWR; +"; +name = Languagesystems; +} +); +features = ( +{ +automatic = 1; +code = "feature locl; +feature subs; +feature sinf; +feature sups; +feature numr; +feature dnom; +feature frac; +feature ordn; +feature pnum; +feature tnum; +feature case; +feature zero; +"; +tag = aalt; +}, +{ +code = "lookup ccmp_Other_1 { + @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hungarumlautcomb macroncomb ringcomb tildecomb]; + @CombiningNonTopAccents = [cedillacomb ogonekcomb slashlongcomb slashshortcomb strokeshortcomb]; + sub [i j]' @CombiningTopAccents by [idotless jdotless]; + sub [i j]' @CombiningNonTopAccents @CombiningTopAccents by [idotless jdotless]; + @Markscomb = [brevecomb-cy dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb commaaccentcomb cedillacomb ogonekcomb]; + @MarkscombCase = [brevecomb-cy.case dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case commaaccentcomb.case cedillacomb.case ogonekcomb.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @Uppercase @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; + +lookup ccmp_Other_3 { + sub yod-hb dagesh-hb by yoddagesh-hb; + sub vav-hb dagesh-hb by vavdagesh-hb; + sub pe-hb dagesh-hb by pedagesh-hb; + sub finalpe-hb dagesh-hb by finalpedagesh-hb; +} ccmp_Other_3; + +lookup ccmp_latn_1 { + sub fi by f i; + sub fl by f l; + sub Ldot by L periodcentered.loclCAT.case; +} ccmp_latn_1; + +script latn; +lookup ccmp_latn_1; +"; +tag = ccmp; +}, +{ +automatic = 1; +code = "lookup locl_latn_0 { + script latn; + language AZE; + sub i by idotaccent; + language CRT; + sub i by idotaccent; + language KAZ; + sub i by idotaccent; + language TAT; + sub i by idotaccent; + language TRK; + sub i by idotaccent; +} locl_latn_0; + +lookup locl_latn_1 { + script latn; + language ROM; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; +} locl_latn_1; + +lookup locl_latn_2 { + script latn; + language CAT; + sub l periodcentered' l by periodcentered.loclCAT; + sub L periodcentered' L by periodcentered.loclCAT.case; +} locl_latn_2; + +lookup locl_latn_3 { + script latn; + language NLD; + sub iacute j' by jacute; + sub Iacute J' by Jacute; +} locl_latn_3; +"; +tag = locl; +}, +{ +automatic = 1; +code = "sub zero by zeroinferior; +sub one by oneinferior; +sub two by twoinferior; +sub three by threeinferior; +sub four by fourinferior; +sub five by fiveinferior; +sub six by sixinferior; +sub seven by seveninferior; +sub eight by eightinferior; +sub nine by nineinferior; +sub parenleft by parenleftinferior; +sub parenright by parenrightinferior; +"; +tag = subs; +}, +{ +automatic = 1; +code = "sub zero by zeroinferior; +sub one by oneinferior; +sub two by twoinferior; +sub three by threeinferior; +sub four by fourinferior; +sub five by fiveinferior; +sub six by sixinferior; +sub seven by seveninferior; +sub eight by eightinferior; +sub nine by nineinferior; +sub parenleft by parenleftinferior; +sub parenright by parenrightinferior; +"; +tag = sinf; +}, +{ +automatic = 1; +code = "sub zero by zerosuperior; +sub one by onesuperior; +sub two by twosuperior; +sub three by threesuperior; +sub four by foursuperior; +sub five by fivesuperior; +sub six by sixsuperior; +sub seven by sevensuperior; +sub eight by eightsuperior; +sub nine by ninesuperior; +sub parenleft by parenleftsuperior; +sub parenright by parenrightsuperior; +"; +tag = sups; +}, +{ +automatic = 1; +code = "sub zero by zero.numr; +sub one by one.numr; +sub two by two.numr; +sub three by three.numr; +sub four by four.numr; +sub five by five.numr; +sub six by six.numr; +sub seven by seven.numr; +sub eight by eight.numr; +sub nine by nine.numr; +"; +tag = numr; +}, +{ +automatic = 1; +code = "sub zero by zero.dnom; +sub one by one.dnom; +sub two by two.dnom; +sub three by three.dnom; +sub four by four.dnom; +sub five by five.dnom; +sub six by six.dnom; +sub seven by seven.dnom; +sub eight by eight.dnom; +sub nine by nine.dnom; +"; +tag = dnom; +}, +{ +automatic = 1; +code = "lookup FRAC { + sub slash by fraction; +} FRAC; +lookup UP { + sub [zero one two three four five six seven eight nine] by [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]; +} UP; +lookup DOWN { + sub fraction [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; + sub [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]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; +} DOWN; +"; +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 parenleft.tf by parenleft; +sub parenright.tf by parenright; +"; +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 parenleft by parenleft.tf; +sub parenright by parenright.tf; +"; +tag = tnum; +}, +{ +automatic = 1; +code = "sub periodcentered.loclCAT by periodcentered.loclCAT.case; +sub hyphen by hyphen.case; +sub endash by endash.case; +sub emdash by emdash.case; +sub parenleft by parenleft.case; +sub parenright by parenright.case; +sub braceleft by braceleft.case; +sub braceright by braceright.case; +sub bracketleft by bracketleft.case; +sub bracketright by bracketright.case; +sub guillemetleft by guillemetleft.case; +sub guillemetright by guillemetright.case; +sub guilsinglleft by guilsinglleft.case; +sub guilsinglright by guilsinglright.case; +sub at by at.case; +sub plus by plus.case; +sub minus by minus.case; +sub multiply by multiply.case; +sub divide by divide.case; +sub equal by equal.case; +sub notequal by notequal.case; +sub approxequal by approxequal.case; +sub asciitilde by asciitilde.case; +sub brevecomb-cy by brevecomb-cy.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; +sub commaaccentcomb by commaaccentcomb.case; +sub cedillacomb by cedillacomb.case; +sub ogonekcomb by ogonekcomb.case; +"; +tag = case; +}, +{ +automatic = 1; +code = "lookupflag IgnoreMarks; +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +"; +tag = liga; +}, +{ +code = ""; +disabled = 1; +tag = dlig; +}, +{ +automatic = 1; +code = "sub zero by zero.zero; +sub zero.tf by zero.tf.zero; +"; +tag = zero; +} +); +fontMaster = ( +{ +axesValues = ( +60 +); +customParameters = ( +{ +name = hheaAscender; +value = 935; +}, +{ +name = hheaDescender; +value = -250; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 935; +}, +{ +name = typoDescender; +value = -250; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = underlinePosition; +value = -50; +}, +{ +name = winAscent; +value = 945; +}, +{ +name = winDescent; +value = 307; +}, +{ +name = TTFStems; +value = ( +{ +horizontal = 1; +name = "X: 79"; +width = 79; +}, +{ +horizontal = 1; +name = "Y: 80"; +width = 80; +}, +{ +horizontal = 1; +name = "Y: 160"; +width = 160; +}, +{ +horizontal = 1; +name = "Y: 175"; +width = 175; +}, +{ +horizontal = 1; +name = "Y: 195"; +width = 195; +}, +{ +horizontal = 1; +name = "X: 233"; +width = 233; +}, +{ +horizontal = 1; +name = "X: 250"; +width = 250; +} +); +}, +{ +name = "Master Icon Glyph Name"; +value = i; +}, +{ +name = "Alignment Zones"; +value = ( +{ +pos = "-220"; +size = 30; +} +); +} +); +iconName = Light; +id = UUID0; +metricValues = ( +{ +pos = 750; +}, +{ +over = 10; +pos = 700; +}, +{ +over = 10; +pos = 520; +}, +{ +over = -10; +}, +{ +pos = -225; +}, +{ +pos = 12; +} +); +name = "Light Italic"; +stemValues = ( +60, +60, +60 +); +userData = { +GSCornerRadius = 22; +GSOffsetHorizontal = 30; +GSOffsetMakeStroke = 1; +GSOffsetVertical = 30; +com.defcon.sortDescriptor = ( +{ +ascending = ( +A, +Aacute, +Abreve, +Acircumflex, +Adieresis, +Agrave, +Amacron, +Aogonek, +Aring, +Atilde, +AE, +AEacute, +B, +C, +Cacute, +Ccaron, +Ccedilla, +Ccircumflex, +Cdotaccent, +D, +Eth, +Dcaron, +Dcroat, +E, +Eacute, +Ebreve, +Ecaron, +Ecircumflex, +Edieresis, +Edotaccent, +Egrave, +Emacron, +Eogonek, +F, +G, +Gbreve, +Gcircumflex, +Gcommaaccent, +Gdotaccent, +H, +Hbar, +Hcircumflex, +I, +IJ, +Iacute, +Ibreve, +Icircumflex, +Idieresis, +Idotaccent, +Igrave, +Imacron, +Iogonek, +Itilde, +J, +Jcircumflex, +K, +Kcommaaccent, +L, +Lacute, +Lcaron, +Lcommaaccent, +Ldot, +Lslash, +M, +N, +Nacute, +Ncaron, +Ncommaaccent, +Eng, +Ntilde, +O, +Oacute, +Obreve, +Ocircumflex, +Odieresis, +Ograve, +Ohungarumlaut, +Omacron, +Oslash, +Oslashacute, +Otilde, +OE, +P, +Thorn, +Q, +R, +Racute, +Rcaron, +Rcommaaccent, +S, +Sacute, +Scaron, +Scedilla, +Scircumflex, +Scommaaccent, +T, +Tbar, +Tcaron, +Tcommaaccent, +U, +Uacute, +Ubreve, +Ucircumflex, +Udieresis, +Ugrave, +Uhungarumlaut, +Umacron, +Uogonek, +Uring, +Utilde, +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, +aeacute, +b, +c, +cacute, +ccaron, +ccedilla, +ccircumflex, +cdotaccent, +d, +eth, +dcaron, +dcroat, +e, +eacute, +ebreve, +ecaron, +ecircumflex, +edieresis, +edotaccent, +egrave, +emacron, +eogonek, +f, +g, +gbreve, +gcircumflex, +gcommaaccent, +gdotaccent, +h, +hbar, +hcircumflex, +i, +idotless, +iacute, +ibreve, +icircumflex, +idieresis, +igrave, +ij, +imacron, +iogonek, +itilde, +j, +jdotless, +jcircumflex, +k, +kcommaaccent, +kgreenlandic, +l, +lacute, +lcaron, +lcommaaccent, +ldot, +lslash, +m, +n, +nacute, +napostrophe, +ncaron, +ncommaaccent, +eng, +ntilde, +o, +oacute, +obreve, +ocircumflex, +odieresis, +ograve, +ohungarumlaut, +omacron, +oslash, +oslashacute, +otilde, +oe, +p, +thorn, +q, +r, +racute, +rcaron, +rcommaaccent, +s, +sacute, +scaron, +scedilla, +scircumflex, +scommaaccent, +germandbls, +longs, +t, +tbar, +tcaron, +tcommaaccent, +u, +uacute, +ubreve, +ucircumflex, +udieresis, +ugrave, +uhungarumlaut, +umacron, +uogonek, +uring, +utilde, +v, +w, +wacute, +wcircumflex, +wdieresis, +wgrave, +x, +y, +yacute, +ycircumflex, +ydieresis, +ygrave, +z, +zacute, +zcaron, +zdotaccent, +f_f, +f_f_i, +f_f_l, +fi, +fl, +ordfeminine, +ordmasculine, +"A-cy", +"Be-cy", +"Ve-cy", +"Ge-cy", +"Gje-cy", +"Gheupturn-cy", +"De-cy", +"Ie-cy", +"Iegrave-cy", +"Io-cy", +"Zhe-cy", +"Ze-cy", +"Ii-cy", +"Iishort-cy", +"Iigrave-cy", +"Ka-cy", +"Kje-cy", +"El-cy", +"Em-cy", +"En-cy", +"O-cy", +"Pe-cy", +"Er-cy", +"Es-cy", +"Te-cy", +"U-cy", +"Ushort-cy", +"Ef-cy", +"Ha-cy", +"Che-cy", +"Tse-cy", +"Sha-cy", +"Shcha-cy", +"Dzhe-cy", +"Softsign-cy", +"Hardsign-cy", +"Yeru-cy", +"Lje-cy", +"Nje-cy", +"Dze-cy", +"E-cy", +"Ereversed-cy", +"I-cy", +"Yi-cy", +"Je-cy", +"Tshe-cy", +"Iu-cy", +"Ia-cy", +"Dje-cy", +"Yat-cy", +"Yusbig-cy", +"Fita-cy", +"Izhitsa-cy", +"Ghestroke-cy", +"Ghemiddlehook-cy", +"Zhedescender-cy", +"Zedescender-cy", +"Kadescender-cy", +"Kaverticalstroke-cy", +"Kabashkir-cy", +"Endescender-cy", +"Enghe-cy", +"Pedescender-cy", +"Esdescender-cy", +"Ustrait-cy", +"Ustraitstroke-cy", +"Chedescender-cy", +"Cheverticalstroke-cy", +"Shha-cy", +"Palochka-cy", +"Zhebreve-cy", +"Chekhakassian-cy", +"Abreve-cy", +"Adieresis-cy", +"Aie-cy", +"Iebreve-cy", +"Schwa-cy", +"Zhedieresis-cy", +"Zedieresis-cy", +"Imacron-cy", +"Idieresis-cy", +"Odieresis-cy", +"Obarred-cy", +"Umacron-cy", +"Udieresis-cy", +"Uhungarumlaut-cy", +"Chedieresis-cy", +"Gedescender-cy", +"Yerudieresis-cy", +"Qa-cy", +"We-cy", +"a-cy", +"be-cy", +"ve-cy", +"ge-cy", +"gje-cy", +"gheupturn-cy", +"de-cy", +"ie-cy", +"iegrave-cy", +"io-cy", +"zhe-cy", +"ze-cy", +"ii-cy", +"iishort-cy", +"iigrave-cy", +"ka-cy", +"kje-cy", +"el-cy", +"em-cy", +"en-cy", +"o-cy", +"pe-cy", +"er-cy", +"es-cy", +"te-cy", +"u-cy", +"ushort-cy", +"ef-cy", +"ha-cy", +"che-cy", +"tse-cy", +"sha-cy", +"shcha-cy", +"dzhe-cy", +"softsign-cy", +"hardsign-cy", +"yeru-cy", +"lje-cy", +"nje-cy", +"dze-cy", +"e-cy", +"ereversed-cy", +"i-cy", +"yi-cy", +"je-cy", +"tshe-cy", +"iu-cy", +"ia-cy", +"dje-cy", +"yat-cy", +"yusbig-cy", +"fita-cy", +"izhitsa-cy", +"ghestroke-cy", +"ghemiddlehook-cy", +"zhedescender-cy", +"zedescender-cy", +"kadescender-cy", +"kaverticalstroke-cy", +"kabashkir-cy", +"endescender-cy", +"enghe-cy", +"pedescender-cy", +"esdescender-cy", +"ustrait-cy", +"ustraitstroke-cy", +"chedescender-cy", +"cheverticalstroke-cy", +"shha-cy", +"palochka-cy", +"zhebreve-cy", +"chekhakassian-cy", +"abreve-cy", +"adieresis-cy", +"aie-cy", +"iebreve-cy", +"schwa-cy", +"zhedieresis-cy", +"zedieresis-cy", +"imacron-cy", +"idieresis-cy", +"odieresis-cy", +"obarred-cy", +"umacron-cy", +"udieresis-cy", +"uhungarumlaut-cy", +"chedieresis-cy", +"gedescender-cy", +"yerudieresis-cy", +"qa-cy", +"we-cy", +"de-cy.ss01", +"yodyod-hb", +"alef-hb", +"bet-hb", +"gimel-hb", +"dalet-hb", +"he-hb", +"vav-hb", +"zayin-hb", +"het-hb", +"tet-hb", +"yod-hb", +"finalkaf-hb", +"kaf-hb", +"lamed-hb", +"finalmem-hb", +"mem-hb", +"finalnun-hb", +"nun-hb", +"samekh-hb", +"ayin-hb", +"finalpe-hb", +"pe-hb", +"finaltsadi-hb", +"tsadi-hb", +"qof-hb", +"resh-hb", +"shin-hb", +"tav-hb", +"shinshindot-hb", +"shinsindot-hb", +"shindageshshindot-hb", +"shindageshsindot-hb", +"alefpatah-hb", +"alefqamats-hb", +"alefdagesh-hb", +"betdagesh-hb", +"gimeldagesh-hb", +"daletdagesh-hb", +"hedagesh-hb", +"vavdagesh-hb", +"zayindagesh-hb", +"tetdagesh-hb", +"yoddagesh-hb", +"finalkafdagesh-hb", +"kafdagesh-hb", +"lameddagesh-hb", +"memdagesh-hb", +"nundagesh-hb", +"samekhdagesh-hb", +"finalpedagesh-hb", +"pedagesh-hb", +"tsadidagesh-hb", +"qofdagesh-hb", +"reshdagesh-hb", +"shindagesh-hb", +"tavdagesh-hb", +"vavholam-hb", +"finalpedagesh-hb.black", +"pedagesh-hb.black", +zero, +one, +two, +three, +four, +five, +six, +seven, +eight, +nine, +zero.denominator, +one.denominator, +two.denominator, +three.denominator, +four.denominator, +five.denominator, +six.denominator, +seven.denominator, +eight.denominator, +nine.denominator, +zero.numerator, +one.numerator, +two.numerator, +three.numerator, +four.numerator, +five.numerator, +six.numerator, +seven.numerator, +eight.numerator, +nine.numerator, +zero.otlf, +one.otlf, +two.otlf, +three.otlf, +four.otlf, +five.otlf, +six.otlf, +seven.otlf, +eight.otlf, +nine.otlf, +zeroinferior, +oneinferior, +twoinferior, +threeinferior, +fourinferior, +fiveinferior, +sixinferior, +seveninferior, +eightinferior, +nineinferior, +zerosuperior, +onesuperior, +twosuperior, +threesuperior, +foursuperior, +fivesuperior, +sixsuperior, +sevensuperior, +eightsuperior, +ninesuperior, +fraction, +onehalf, +onethird, +twothirds, +onequarter, +threequarters, +oneeighth, +threeeighths, +fiveeighths, +seveneighths, +asterisk, +backslash, +periodcentered, +bullet, +colon, +comma, +ellipsis, +exclam, +exclamdown, +numbersign, +period, +question, +questiondown, +quotedbl, +quotesingle, +semicolon, +slash, +underscore, +parenleftinferior, +parenrightinferior, +braceleft, +braceright, +bracketleft, +bracketright, +parenleft, +parenright, +parenleftsuperior, +parenrightsuperior, +braceleft.case, +braceright.case, +bracketleft.case, +bracketright.case, +parenleft.case, +parenright.case, +parenleft.denominator, +parenright.denominator, +parenleft.numerator, +parenright.numerator, +parenleft.otlf, +parenright.otlf, +emdash, +endash, +hyphen, +softhyphen, +emdash.case, +endash.case, +hyphen.case, +guillemetleft, +guillemetright, +guilsinglleft, +guilsinglright, +quotedblbase, +quotedblleft, +quotedblright, +quoteleft, +quoteright, +quotesinglbase, +guillemetleft.case, +guillemetright.case, +guilsinglleft.case, +guilsinglright.case, +"geresh-hb", +"gershayim-hb", +"maqaf-hb", +space, +nbspace, +CR, +.notdef, +cent, +currency, +dollar, +euro, +florin, +hryvnia, +ruble, +sheqel, +sterling, +tenge, +tugrik, +yen, +divisionslash, +plus, +minus, +multiply, +divide, +equal, +notequal, +greater, +less, +greaterequal, +lessequal, +plusminus, +approxequal, +logicalnot, +asciitilde, +infinity, +integral, +increment, +product, +summation, +radical, +partialdiff, +micro, +percent, +perthousand, +plus.case, +minus.case, +multiply.case, +divide.case, +equal.case, +notequal.case, +approxequal.case, +asciitilde.case, +lozenge, +at, +ampersand, +paragraph, +section, +copyright, +registered, +trademark, +degree, +bar, +brokenbar, +dagger, +daggerdbl, +estimated, +numero, +asciicircum, +at.case, +dieresiscomb, +dotaccentcomb, +gravecomb, +acutecomb, +hungarumlautcomb, +circumflexcomb, +caroncomb, +brevecomb, +ringcomb, +tildecomb, +macroncomb, +commaaccentcomb, +cedillacomb, +ogonekcomb, +strokeshortcomb, +dieresiscomb.case, +dotaccentcomb.case, +gravecomb.case, +acutecomb.case, +hungarumlautcomb.case, +circumflexcomb.case, +caroncomb.case, +brevecomb.case, +ringcomb.case, +tildecomb.case, +macroncomb.case, +commaaccentcomb.case, +cedillacomb.case, +ogonekcomb.case, +apostrophemod, +acute, +breve, +caron, +cedilla, +circumflex, +dieresis, +dotaccent, +grave, +hungarumlaut, +macron, +ogonek, +ring, +tilde, +"sheva-hb", +"hatafsegol-hb", +"hatafpatah-hb", +"hatafqamats-hb", +"hiriq-hb", +"tsere-hb", +"segol-hb", +"patah-hb", +"holam-hb", +"holamhaser-hb", +"qubuts-hb", +"dagesh-hb", +"shindot-hb", +"sindot-hb", +"qamatsqatan-hb", +"brevecomb-cy", +"brevecomb-cy.case", +"descender-cy", +"descender-cy.case", +NULL, +"verticalbar-cy", +"verticalbar-cy.case", +euro.BRACKET.125, +hryvnia.BRACKET.125, +yen.BRACKET.125 +); +type = glyphList; +} +); +com.github.googlei18n.ufo2ft.filters = ( +{ +name = propagateAnchors; +pre = 1; +}, +{ +name = flattenComponents; +} +); +com.typemytype.robofont.compileSettings.autohint = 1; +com.typemytype.robofont.compileSettings.checkOutlines = 0; +com.typemytype.robofont.compileSettings.createDummyDSIG = 1; +com.typemytype.robofont.compileSettings.decompose = 0; +com.typemytype.robofont.compileSettings.generateFormat = 0; +com.typemytype.robofont.compileSettings.releaseMode = 0; +com.typemytype.robofont.italicSlantOffset = 0; +com.typemytype.robofont.segmentType = curve; +com.typemytype.robofont.shouldAddPointsInSplineConversion = 1; +com.typemytype.robofont.smartSets.uniqueKey = "4730936784"; +}; +}, +{ +axesValues = ( +220 +); +customParameters = ( +{ +name = hheaAscender; +value = 935; +}, +{ +name = hheaDescender; +value = -250; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 935; +}, +{ +name = typoDescender; +value = -250; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = underlinePosition; +value = -75; +}, +{ +name = winAscent; +value = 945; +}, +{ +name = winDescent; +value = 307; +}, +{ +name = TTFStems; +value = ( +{ +horizontal = 1; +name = "X: 79"; +width = 79; +}, +{ +horizontal = 1; +name = "Y: 80"; +width = 80; +}, +{ +horizontal = 1; +name = "Y: 160"; +width = 160; +}, +{ +horizontal = 1; +name = "Y: 175"; +width = 175; +}, +{ +horizontal = 1; +name = "Y: 195"; +width = 195; +}, +{ +horizontal = 1; +name = "X: 233"; +width = 233; +}, +{ +horizontal = 1; +name = "X: 250"; +width = 250; +} +); +}, +{ +name = "Master Icon Glyph Name"; +value = i; +}, +{ +name = "Alignment Zones"; +value = ( +{ +pos = "-220"; +size = 30; +} +); +} +); +iconName = Bold; +id = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +metricValues = ( +{ +pos = 750; +}, +{ +over = 10; +pos = 700; +}, +{ +over = 10; +pos = 520; +}, +{ +over = -10; +}, +{ +pos = -225; +}, +{ +pos = 12; +} +); +name = "Black Italic"; +stemValues = ( +160, +220, +250 +); +userData = { +GSCornerRadius = 27; +GSOffsetHorizontal = 120; +GSOffsetMakeStroke = 1; +GSOffsetVertical = 80; +com.defcon.sortDescriptor = ( +{ +ascending = ( +A, +Aacute, +Abreve, +Acircumflex, +Adieresis, +Agrave, +Amacron, +Aogonek, +Aring, +Atilde, +AE, +AEacute, +B, +C, +Cacute, +Ccaron, +Ccedilla, +Ccircumflex, +Cdotaccent, +D, +Eth, +Dcaron, +Dcroat, +E, +Eacute, +Ebreve, +Ecaron, +Ecircumflex, +Edieresis, +Edotaccent, +Egrave, +Emacron, +Eogonek, +F, +G, +Gbreve, +Gcircumflex, +Gcommaaccent, +Gdotaccent, +H, +Hbar, +Hcircumflex, +I, +IJ, +Iacute, +Ibreve, +Icircumflex, +Idieresis, +Idotaccent, +Igrave, +Imacron, +Iogonek, +Itilde, +J, +Jcircumflex, +K, +Kcommaaccent, +L, +Lacute, +Lcaron, +Lcommaaccent, +Ldot, +Lslash, +M, +N, +Nacute, +Ncaron, +Ncommaaccent, +Eng, +Ntilde, +O, +Oacute, +Obreve, +Ocircumflex, +Odieresis, +Ograve, +Ohungarumlaut, +Omacron, +Oslash, +Oslashacute, +Otilde, +OE, +P, +Thorn, +Q, +R, +Racute, +Rcaron, +Rcommaaccent, +S, +Sacute, +Scaron, +Scedilla, +Scircumflex, +Scommaaccent, +T, +Tbar, +Tcaron, +Tcommaaccent, +U, +Uacute, +Ubreve, +Ucircumflex, +Udieresis, +Ugrave, +Uhungarumlaut, +Umacron, +Uogonek, +Uring, +Utilde, +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, +aeacute, +b, +c, +cacute, +ccaron, +ccedilla, +ccircumflex, +cdotaccent, +d, +eth, +dcaron, +dcroat, +e, +eacute, +ebreve, +ecaron, +ecircumflex, +edieresis, +edotaccent, +egrave, +emacron, +eogonek, +f, +g, +gbreve, +gcircumflex, +gcommaaccent, +gdotaccent, +h, +hbar, +hcircumflex, +i, +idotless, +iacute, +ibreve, +icircumflex, +idieresis, +igrave, +ij, +imacron, +iogonek, +itilde, +j, +jdotless, +jcircumflex, +k, +kcommaaccent, +kgreenlandic, +l, +lacute, +lcaron, +lcommaaccent, +ldot, +lslash, +m, +n, +nacute, +napostrophe, +ncaron, +ncommaaccent, +eng, +ntilde, +o, +oacute, +obreve, +ocircumflex, +odieresis, +ograve, +ohungarumlaut, +omacron, +oslash, +oslashacute, +otilde, +oe, +p, +thorn, +q, +r, +racute, +rcaron, +rcommaaccent, +s, +sacute, +scaron, +scedilla, +scircumflex, +scommaaccent, +germandbls, +longs, +t, +tbar, +tcaron, +tcommaaccent, +u, +uacute, +ubreve, +ucircumflex, +udieresis, +ugrave, +uhungarumlaut, +umacron, +uogonek, +uring, +utilde, +v, +w, +wacute, +wcircumflex, +wdieresis, +wgrave, +x, +y, +yacute, +ycircumflex, +ydieresis, +ygrave, +z, +zacute, +zcaron, +zdotaccent, +f_f, +f_f_i, +f_f_l, +fi, +fl, +ordfeminine, +ordmasculine, +"A-cy", +"Be-cy", +"Ve-cy", +"Ge-cy", +"Gje-cy", +"Gheupturn-cy", +"De-cy", +"Ie-cy", +"Iegrave-cy", +"Io-cy", +"Zhe-cy", +"Ze-cy", +"Ii-cy", +"Iishort-cy", +"Iigrave-cy", +"Ka-cy", +"Kje-cy", +"El-cy", +"Em-cy", +"En-cy", +"O-cy", +"Pe-cy", +"Er-cy", +"Es-cy", +"Te-cy", +"U-cy", +"Ushort-cy", +"Ef-cy", +"Ha-cy", +"Che-cy", +"Tse-cy", +"Sha-cy", +"Shcha-cy", +"Dzhe-cy", +"Softsign-cy", +"Hardsign-cy", +"Yeru-cy", +"Lje-cy", +"Nje-cy", +"Dze-cy", +"E-cy", +"Ereversed-cy", +"I-cy", +"Yi-cy", +"Je-cy", +"Tshe-cy", +"Iu-cy", +"Ia-cy", +"Dje-cy", +"Yat-cy", +"Yusbig-cy", +"Fita-cy", +"Izhitsa-cy", +"Ghestroke-cy", +"Ghemiddlehook-cy", +"Zhedescender-cy", +"Zedescender-cy", +"Kadescender-cy", +"Kaverticalstroke-cy", +"Kabashkir-cy", +"Endescender-cy", +"Enghe-cy", +"Pedescender-cy", +"Esdescender-cy", +"Ustrait-cy", +"Ustraitstroke-cy", +"Chedescender-cy", +"Cheverticalstroke-cy", +"Shha-cy", +"Palochka-cy", +"Zhebreve-cy", +"Chekhakassian-cy", +"Abreve-cy", +"Adieresis-cy", +"Aie-cy", +"Iebreve-cy", +"Schwa-cy", +"Zhedieresis-cy", +"Zedieresis-cy", +"Imacron-cy", +"Idieresis-cy", +"Odieresis-cy", +"Obarred-cy", +"Umacron-cy", +"Udieresis-cy", +"Uhungarumlaut-cy", +"Chedieresis-cy", +"Gedescender-cy", +"Yerudieresis-cy", +"Qa-cy", +"We-cy", +"a-cy", +"be-cy", +"ve-cy", +"ge-cy", +"gje-cy", +"gheupturn-cy", +"de-cy", +"ie-cy", +"iegrave-cy", +"io-cy", +"zhe-cy", +"ze-cy", +"ii-cy", +"iishort-cy", +"iigrave-cy", +"ka-cy", +"kje-cy", +"el-cy", +"em-cy", +"en-cy", +"o-cy", +"pe-cy", +"er-cy", +"es-cy", +"te-cy", +"u-cy", +"ushort-cy", +"ef-cy", +"ha-cy", +"che-cy", +"tse-cy", +"sha-cy", +"shcha-cy", +"dzhe-cy", +"softsign-cy", +"hardsign-cy", +"yeru-cy", +"lje-cy", +"nje-cy", +"dze-cy", +"e-cy", +"ereversed-cy", +"i-cy", +"yi-cy", +"je-cy", +"tshe-cy", +"iu-cy", +"ia-cy", +"dje-cy", +"yat-cy", +"yusbig-cy", +"fita-cy", +"izhitsa-cy", +"ghestroke-cy", +"ghemiddlehook-cy", +"zhedescender-cy", +"zedescender-cy", +"kadescender-cy", +"kaverticalstroke-cy", +"kabashkir-cy", +"endescender-cy", +"enghe-cy", +"pedescender-cy", +"esdescender-cy", +"ustrait-cy", +"ustraitstroke-cy", +"chedescender-cy", +"cheverticalstroke-cy", +"shha-cy", +"palochka-cy", +"zhebreve-cy", +"chekhakassian-cy", +"abreve-cy", +"adieresis-cy", +"aie-cy", +"iebreve-cy", +"schwa-cy", +"zhedieresis-cy", +"zedieresis-cy", +"imacron-cy", +"idieresis-cy", +"odieresis-cy", +"obarred-cy", +"umacron-cy", +"udieresis-cy", +"uhungarumlaut-cy", +"chedieresis-cy", +"gedescender-cy", +"yerudieresis-cy", +"qa-cy", +"we-cy", +"de-cy.ss01", +"yodyod-hb", +"alef-hb", +"bet-hb", +"gimel-hb", +"dalet-hb", +"he-hb", +"vav-hb", +"zayin-hb", +"het-hb", +"tet-hb", +"yod-hb", +"finalkaf-hb", +"kaf-hb", +"lamed-hb", +"finalmem-hb", +"mem-hb", +"finalnun-hb", +"nun-hb", +"samekh-hb", +"ayin-hb", +"finalpe-hb", +"pe-hb", +"finaltsadi-hb", +"tsadi-hb", +"qof-hb", +"resh-hb", +"shin-hb", +"tav-hb", +"shinshindot-hb", +"shinsindot-hb", +"shindageshshindot-hb", +"shindageshsindot-hb", +"alefpatah-hb", +"alefqamats-hb", +"alefdagesh-hb", +"betdagesh-hb", +"gimeldagesh-hb", +"daletdagesh-hb", +"hedagesh-hb", +"vavdagesh-hb", +"zayindagesh-hb", +"tetdagesh-hb", +"yoddagesh-hb", +"finalkafdagesh-hb", +"kafdagesh-hb", +"lameddagesh-hb", +"memdagesh-hb", +"nundagesh-hb", +"samekhdagesh-hb", +"finalpedagesh-hb", +"pedagesh-hb", +"tsadidagesh-hb", +"qofdagesh-hb", +"reshdagesh-hb", +"shindagesh-hb", +"tavdagesh-hb", +"vavholam-hb", +"finalpedagesh-hb.black", +"pedagesh-hb.black", +zero, +one, +two, +three, +four, +five, +six, +seven, +eight, +nine, +zero.denominator, +one.denominator, +two.denominator, +three.denominator, +four.denominator, +five.denominator, +six.denominator, +seven.denominator, +eight.denominator, +nine.denominator, +zero.numerator, +one.numerator, +two.numerator, +three.numerator, +four.numerator, +five.numerator, +six.numerator, +seven.numerator, +eight.numerator, +nine.numerator, +zero.otlf, +one.otlf, +two.otlf, +three.otlf, +four.otlf, +five.otlf, +six.otlf, +seven.otlf, +eight.otlf, +nine.otlf, +zeroinferior, +oneinferior, +twoinferior, +threeinferior, +fourinferior, +fiveinferior, +sixinferior, +seveninferior, +eightinferior, +nineinferior, +zerosuperior, +onesuperior, +twosuperior, +threesuperior, +foursuperior, +fivesuperior, +sixsuperior, +sevensuperior, +eightsuperior, +ninesuperior, +fraction, +onehalf, +onethird, +twothirds, +onequarter, +threequarters, +oneeighth, +threeeighths, +fiveeighths, +seveneighths, +asterisk, +backslash, +periodcentered, +bullet, +colon, +comma, +ellipsis, +exclam, +exclamdown, +numbersign, +period, +question, +questiondown, +quotedbl, +quotesingle, +semicolon, +slash, +underscore, +parenleftinferior, +parenrightinferior, +braceleft, +braceright, +bracketleft, +bracketright, +parenleft, +parenright, +parenleftsuperior, +parenrightsuperior, +braceleft.case, +braceright.case, +bracketleft.case, +bracketright.case, +parenleft.case, +parenright.case, +parenleft.denominator, +parenright.denominator, +parenleft.numerator, +parenright.numerator, +parenleft.otlf, +parenright.otlf, +emdash, +endash, +hyphen, +softhyphen, +emdash.case, +endash.case, +hyphen.case, +guillemetleft, +guillemetright, +guilsinglleft, +guilsinglright, +quotedblbase, +quotedblleft, +quotedblright, +quoteleft, +quoteright, +quotesinglbase, +guillemetleft.case, +guillemetright.case, +guilsinglleft.case, +guilsinglright.case, +"geresh-hb", +"gershayim-hb", +"maqaf-hb", +space, +nbspace, +CR, +.notdef, +cent, +currency, +dollar, +euro, +florin, +hryvnia, +ruble, +sheqel, +sterling, +tenge, +tugrik, +yen, +divisionslash, +plus, +minus, +multiply, +divide, +equal, +notequal, +greater, +less, +greaterequal, +lessequal, +plusminus, +approxequal, +logicalnot, +asciitilde, +infinity, +integral, +increment, +product, +summation, +radical, +partialdiff, +micro, +percent, +perthousand, +plus.case, +minus.case, +multiply.case, +divide.case, +equal.case, +notequal.case, +approxequal.case, +asciitilde.case, +lozenge, +at, +ampersand, +paragraph, +section, +copyright, +registered, +trademark, +degree, +bar, +brokenbar, +dagger, +daggerdbl, +estimated, +numero, +asciicircum, +at.case, +dieresiscomb, +dotaccentcomb, +gravecomb, +acutecomb, +hungarumlautcomb, +circumflexcomb, +caroncomb, +brevecomb, +ringcomb, +tildecomb, +macroncomb, +commaaccentcomb, +cedillacomb, +ogonekcomb, +strokeshortcomb, +dieresiscomb.case, +dotaccentcomb.case, +gravecomb.case, +acutecomb.case, +hungarumlautcomb.case, +circumflexcomb.case, +caroncomb.case, +brevecomb.case, +ringcomb.case, +tildecomb.case, +macroncomb.case, +commaaccentcomb.case, +cedillacomb.case, +ogonekcomb.case, +apostrophemod, +acute, +breve, +caron, +cedilla, +circumflex, +dieresis, +dotaccent, +grave, +hungarumlaut, +macron, +ogonek, +ring, +tilde, +"sheva-hb", +"hatafsegol-hb", +"hatafpatah-hb", +"hatafqamats-hb", +"hiriq-hb", +"tsere-hb", +"segol-hb", +"patah-hb", +"holam-hb", +"holamhaser-hb", +"qubuts-hb", +"dagesh-hb", +"shindot-hb", +"sindot-hb", +"qamatsqatan-hb", +"brevecomb-cy", +"brevecomb-cy.case", +"descender-cy", +"descender-cy.case", +NULL, +"verticalbar-cy", +"verticalbar-cy.case", +euro.BRACKET.125, +hryvnia.BRACKET.125, +yen.BRACKET.125 +); +type = glyphList; +} +); +com.github.googlei18n.ufo2ft.filters = ( +{ +name = propagateAnchors; +pre = 1; +}, +{ +name = flattenComponents; +} +); +com.typemytype.robofont.compileSettings.autohint = 1; +com.typemytype.robofont.compileSettings.checkOutlines = 0; +com.typemytype.robofont.compileSettings.createDummyDSIG = 1; +com.typemytype.robofont.compileSettings.decompose = 0; +com.typemytype.robofont.compileSettings.generateFormat = 0; +com.typemytype.robofont.compileSettings.releaseMode = 0; +com.typemytype.robofont.italicSlantOffset = 0; +com.typemytype.robofont.segmentType = curve; +com.typemytype.robofont.shouldAddPointsInSplineConversion = 1; +com.typemytype.robofont.smartSets.uniqueKey = "4933834128"; +}; +} +); +glyphs = ( +{ +color = 6; +glyphname = A; +kernLeft = A; +kernRight = A; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (272,0); +}, +{ +name = ogonek; +pos = (575,57); +}, +{ +name = top; +pos = (408,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(5,0,ls), +(14,0,o), +(24,5,o), +(30,15,cs), +(128,175,l), +(481,175,l), +(511,21,ls), +(514,6,o), +(522,0,o), +(534,0,cs), +(555,0,ls), +(568,0,o), +(577,11,o), +(573,31,c), +(458,680,ls), +(456,693,o), +(449,700,o), +(433,700,cs), +(391,700,ls), +(375,700,o), +(366,693,o), +(358,680,cs), +(-33,31,l), +(-41,17,o), +(-34,0,o), +(-17,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(401,629,l), +(471,235,l), +(164,235,l) +); +} +); +width = 653; +}, +{ +anchors = ( +{ +name = bottom; +pos = (326,0); +}, +{ +name = ogonek; +pos = (680,122); +}, +{ +name = top; +pos = (464,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,ls), +(181,0,o), +(192,14,o), +(199,25,cs), +(237,91,l), +(452,91,l), +(462,25,ls), +(464,14,o), +(470,0,o), +(496,0,cs), +(676,0,ls), +(691,0,o), +(705,11,o), +(703,29,c), +(615,667,l), +(613,682,o), +(604,700,o), +(577,700,cs), +(355,700,ls), +(328,700,o), +(311,681,o), +(303,667,c), +(-55,29,ls), +(-63,15,o), +(-55,0,o), +(-40,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(425,472,l), +(442,286,l), +(329,286,l) +); +} +); +width = 761; +} +); +unicode = 65; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 680; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 35; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 637; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Aacute; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = A; +}, +{ +pos = (360,0); +ref = acutecomb.case; +} +); +width = 653; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = A; +}, +{ +pos = (336,0); +ref = acutecomb.case; +} +); +width = 761; +} +); +unicode = 193; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Abreve; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = A; +}, +{ +pos = (292,0); +ref = brevecomb.case; +} +); +width = 653; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = A; +}, +{ +pos = (290,0); +ref = brevecomb.case; +} +); +width = 761; +} +); +unicode = 258; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Acaron; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = A; +}, +{ +pos = (277,0); +ref = caroncomb.case; +} +); +width = 653; +}, +{ +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = A; +}, +{ +pos = (253,0); +ref = caroncomb.case; +} +); +width = 761; +} +); +unicode = 461; +}, +{ +color = 10; +glyphname = Acircumflex; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = A; +}, +{ +pos = (248,0); +ref = circumflexcomb.case; +} +); +width = 653; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = A; +}, +{ +pos = (216,0); +ref = circumflexcomb.case; +} +); +width = 761; +} +); +unicode = 194; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Adieresis; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = A; +}, +{ +pos = (259,0); +ref = dieresiscomb.case; +} +); +width = 653; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = A; +}, +{ +pos = (226,0); +ref = dieresiscomb.case; +} +); +width = 761; +} +); +unicode = 196; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Agrave; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = A; +}, +{ +pos = (269,0); +ref = gravecomb.case; +} +); +width = 653; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = A; +}, +{ +pos = (217,0); +ref = gravecomb.case; +} +); +width = 761; +} +); +unicode = 192; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Amacron; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = A; +}, +{ +pos = (271,0); +ref = macroncomb.case; +} +); +width = 653; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = A; +}, +{ +pos = (-40,0); +ref = macroncomb.case; +} +); +width = 761; +} +); +unicode = 256; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Aogonek; +kernLeft = A; +kernRight = A; +layers = ( +{ +background = { +shapes = ( +{ +ref = A; +} +); +}; +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(485,-220,ls), +(498,-220,o), +(509,-211,o), +(512,-198,cs), +(515,-185,ls), +(518,-172,o), +(511,-163,o), +(498,-163,cs), +(483,-163,ls), +(438,-163,o), +(412,-133,o), +(423,-82,cs), +(434,-31,o), +(473,0,o), +(517,0,cs), +(546,0,ls), +(557,0,o), +(568,9,o), +(571,20,cs), +(572,22,o), +(573,28,o), +(572,31,cs), +(455,680,ls), +(453,693,o), +(446,700,o), +(430,700,cs), +(394,700,ls), +(378,700,o), +(369,693,o), +(361,680,cs), +(-32,31,ls), +(-34,28,o), +(-36,22,o), +(-37,20,cs), +(-39,9,o), +(-32,0,o), +(-21,0,cs), +(1,0,ls), +(14,0,o), +(24,10,o), +(27,15,cs), +(123,175,l), +(481,175,l), +(501,63,l), +(501,60,o), +(502,58,o), +(502,55,c), +(432,45,o), +(379,-6,o), +(363,-82,cs), +(344,-167,o), +(384,-220,o), +(466,-220,cs) +); +}, +{ +closed = 1; +nodes = ( +(400,629,l), +(470,235,l), +(161,235,l) +); +} +); +width = 650; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(609,-220,ls), +(624,-220,o), +(639,-208,o), +(642,-193,cs), +(657,-125,ls), +(660,-110,o), +(650,-98,o), +(635,-98,cs), +(625,-98,ls), +(586,-98,o), +(581,-70,o), +(586,-49,cs), +(590,-29,o), +(606,-2,o), +(640,0,c), +(671,0,ls), +(683,0,o), +(695,10,o), +(698,22,cs), +(698,24,o), +(699,26,o), +(698,29,cs), +(611,667,l), +(610,682,o), +(600,700,o), +(573,700,cs), +(356,700,ls), +(329,700,o), +(311,682,o), +(304,667,c), +(-55,29,ls), +(-56,26,o), +(-57,24,o), +(-57,22,cs), +(-60,10,o), +(-52,0,o), +(-40,0,cs), +(145,0,ls), +(171,0,o), +(183,14,o), +(190,25,cs), +(228,91,l), +(443,91,l), +(453,25,ls), +(453,15,o), +(458,3,o), +(475,0,c), +(469,-15,o), +(464,-31,o), +(460,-49,cs), +(440,-144,o), +(474,-220,o), +(595,-220,cs) +); +}, +{ +closed = 1; +nodes = ( +(416,472,l), +(433,286,l), +(320,286,l) +); +} +); +width = 756; +} +); +metricLeft = A; +metricRight = A; +unicode = 260; +}, +{ +color = 10; +glyphname = Aring; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = A; +}, +{ +pos = (321,0); +ref = ringcomb.case; +} +); +width = 653; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = A; +}, +{ +pos = (354,0); +ref = ringcomb.case; +} +); +width = 761; +} +); +unicode = 197; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Atilde; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = A; +}, +{ +pos = (266,0); +ref = tildecomb.case; +} +); +width = 653; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = A; +}, +{ +pos = (248,0); +ref = tildecomb.case; +} +); +width = 761; +} +); +unicode = 195; +}, +{ +color = 6; +glyphname = AE; +kernLeft = AE; +kernRight = E; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (417,0); +}, +{ +name = top; +pos = (606,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(11,0,l), +(20,0,o), +(30,5,o), +(36,15,cs), +(134,175,l), +(421,175,l), +(388,22,l), +(385,9,o), +(393,0,o), +(406,0,c), +(804,0,l), +(818,0,o), +(828,9,o), +(831,22,c), +(834,37,l), +(837,51,o), +(830,60,o), +(816,60,c), +(459,60,l), +(516,325,l), +(843,325,l), +(857,325,o), +(867,334,o), +(870,347,c), +(873,362,l), +(876,376,o), +(869,385,o), +(855,385,c), +(528,385,l), +(583,640,l), +(932,640,l), +(946,640,o), +(956,649,o), +(959,662,c), +(962,677,l), +(965,691,o), +(958,700,o), +(944,700,c), +(394,700,l), +(385,700,o), +(374,697,o), +(364,681,c), +(-24,36,l), +(-31,24,o), +(-35,0,o), +(-9,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(409,633,l), +(518,633,l), +(433,235,l), +(170,235,l) +); +} +); +width = 943; +}, +{ +anchors = ( +{ +name = bottom; +pos = (453,0); +}, +{ +name = top; +pos = (613,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,ls), +(186,0,o), +(197,14,o), +(204,25,cs), +(242,91,l), +(391,91,l), +(377,27,ls), +(374,12,o), +(384,0,o), +(399,0,cs), +(890,0,ls), +(905,0,o), +(919,12,o), +(922,27,cs), +(952,168,ls), +(955,183,o), +(946,195,o), +(931,195,cs), +(653,195,l), +(666,258,l), +(914,258,ls), +(929,258,o), +(944,270,o), +(947,285,cs), +(975,415,ls), +(978,430,o), +(968,442,o), +(953,442,cs), +(705,442,l), +(719,505,l), +(989,505,ls), +(1004,505,o), +(1018,517,o), +(1022,532,c), +(1052,673,ls), +(1055,688,o), +(1045,700,o), +(1030,700,cs), +(360,700,ls), +(333,700,o), +(315,682,o), +(308,667,c), +(-50,29,ls), +(-58,15,o), +(-50,0,o), +(-35,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(447,505,l), +(479,505,l), +(432,286,l), +(334,286,l) +); +} +); +width = 1016; +} +); +unicode = 198; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 505; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 431; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = AEacute; +kernLeft = AE; +kernRight = E; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = AE; +}, +{ +pos = (558,0); +ref = acutecomb.case; +} +); +width = 943; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = AE; +}, +{ +pos = (485,0); +ref = acutecomb.case; +} +); +width = 1016; +} +); +unicode = 508; +}, +{ +color = 6; +glyphname = B; +kernLeft = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (274,0); +}, +{ +name = top; +pos = (423,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(323,0,ls), +(479,0,o), +(550,97,o), +(572,198,c), +(589,282,o), +(553,337,o), +(506,369,c), +(550,386,o), +(606,426,o), +(626,521,cs), +(646,616,o), +(588,700,o), +(463,700,cs), +(202,700,ls), +(189,700,o), +(178,691,o), +(175,677,cs), +(36,22,ls), +(33,9,o), +(41,0,o), +(54,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(166,336,l), +(383,336,ls), +(497,336,o), +(526,279,o), +(509,198,cs), +(492,118,o), +(417,60,o), +(323,60,cs), +(107,60,l) +); +}, +{ +closed = 1; +nodes = ( +(231,640,l), +(448,640,ls), +(544,640,o), +(580,600,o), +(563,521,cs), +(546,442,o), +(475,396,o), +(381,396,cs), +(179,396,l) +); +} +); +width = 657; +}, +{ +anchors = ( +{ +name = bottom; +pos = (312,0); +}, +{ +name = top; +pos = (461,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,0,ls), +(561,0,o), +(657,70,o), +(689,220,cs), +(703,286,o), +(672,344,o), +(625,365,c), +(660,381,o), +(718,426,o), +(732,490,cs), +(761,630,o), +(660,700,o), +(479,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(299,270,l), +(392,270,ls), +(422,270,o), +(433,245,o), +(427,221,cs), +(423,199,o), +(404,172,o), +(371,172,cs), +(278,172,l) +); +}, +{ +closed = 1; +nodes = ( +(354,528,l), +(438,528,ls), +(467,528,o), +(473,503,o), +(469,482,cs), +(464,461,o), +(447,437,o), +(418,437,cs), +(334,437,l) +); +} +); +width = 733; +} +); +unicode = 66; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 271; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 437; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 521; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 198; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 355; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 583; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = C; +kernLeft = O; +kernRight = C; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (270,0); +}, +{ +name = top; +pos = (418,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(474,-10,o), +(550,112,o), +(579,206,cs), +(583,218,o), +(575,226,o), +(563,226,cs), +(540,226,ls), +(529,226,o), +(521,221,o), +(515,205,c), +(464,86,o), +(381,50,o), +(274,50,cs), +(152,50,o), +(96,115,o), +(123,266,cs), +(133,323,o), +(145,379,o), +(159,434,cs), +(196,585,o), +(291,650,o), +(413,650,cs), +(520,650,o), +(590,608,o), +(578,495,cs), +(576,479,o), +(588,474,o), +(599,474,cs), +(622,474,ls), +(634,474,o), +(639,482,o), +(641,494,cs), +(658,595,o), +(603,710,o), +(413,710,cs), +(231,710,o), +(136,595,o), +(97,439,cs), +(83,382,o), +(68,315,o), +(59,261,cs), +(32,105,o), +(92,-10,o), +(274,-10,cs) +); +} +); +width = 650; +}, +{ +anchors = ( +{ +name = bottom; +pos = (311,0); +}, +{ +name = top; +pos = (459,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(507,-10,o), +(657,64,o), +(699,246,c), +(701,258,o), +(693,268,o), +(681,268,cs), +(477,268,ls), +(455,268,o), +(446,262,o), +(434,239,cs), +(413,199,o), +(382,185,o), +(348,185,cs), +(304,185,o), +(280,205,o), +(291,266,cs), +(301,323,o), +(313,379,o), +(327,434,cs), +(342,495,o), +(374,515,o), +(418,515,cs), +(452,515,o), +(476,504,o), +(481,461,c), +(485,439,o), +(490,432,o), +(512,432,cs), +(716,432,ls), +(728,432,o), +(740,442,o), +(743,454,cs), +(779,636,o), +(600,710,o), +(440,710,cs), +(243,710,o), +(115,625,o), +(68,439,cs), +(54,382,o), +(39,315,o), +(30,261,cs), +(-3,70,o), +(145,-10,o), +(327,-10,cs) +); +} +); +width = 731; +} +); +unicode = 67; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 434; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 266; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 599; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 209; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 149; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Cacute; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = C; +}, +{ +pos = (370,0); +ref = acutecomb.case; +} +); +width = 650; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = C; +}, +{ +pos = (331,0); +ref = acutecomb.case; +} +); +width = 731; +} +); +unicode = 262; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ccaron; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = C; +}, +{ +pos = (287,0); +ref = caroncomb.case; +} +); +width = 650; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = C; +}, +{ +pos = (248,0); +ref = caroncomb.case; +} +); +width = 731; +} +); +unicode = 268; +}, +{ +color = 6; +glyphname = Ccedilla; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(281,-221,o), +(321,-180,o), +(331,-132,cs), +(341,-84,o), +(317,-50,o), +(273,-50,cs), +(258,-50,o), +(242,-53,o), +(233,-58,c), +(266,-10,l), +(456,-10,o), +(554,111,o), +(579,206,cs), +(583,218,o), +(574,226,o), +(562,226,c), +(542,226,l), +(531,226,o), +(522,221,o), +(516,205,cs), +(464,86,o), +(386,50,o), +(279,50,cs), +(157,50,o), +(96,115,o), +(123,266,cs), +(133,323,o), +(145,379,o), +(158,434,cs), +(196,585,o), +(284,650,o), +(406,650,cs), +(513,650,o), +(577,614,o), +(577,495,cs), +(577,479,o), +(584,474,o), +(595,474,c), +(615,474,l), +(627,474,o), +(639,482,o), +(640,494,cs), +(655,589,o), +(609,710,o), +(419,710,cs), +(237,710,o), +(136,595,o), +(97,439,cs), +(82,382,o), +(68,315,o), +(59,261,cs), +(34,121,o), +(73,15,o), +(213,-6,c), +(183,-53,l), +(177,-63,o), +(166,-75,o), +(172,-83,c), +(184,-100,l), +(196,-116,o), +(213,-96,o), +(245,-96,cs), +(268,-96,o), +(285,-110,o), +(280,-134,cs), +(274,-159,o), +(251,-174,o), +(228,-174,cs), +(184,-174,o), +(184,-140,o), +(164,-156,c), +(147,-169,l), +(128,-184,o), +(162,-219,o), +(218,-220,cs) +); +} +); +width = 650; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,-220,o), +(363,-183,o), +(375,-130,cs), +(386,-77,o), +(364,-40,o), +(313,-40,cs), +(309,-40,o), +(290,-42,o), +(282,-45,c), +(307,-10,l), +(477,-10,o), +(657,64,o), +(698,246,cs), +(701,258,o), +(693,268,o), +(681,268,c), +(477,268,l), +(455,268,o), +(446,262,o), +(434,239,cs), +(413,199,o), +(382,185,o), +(348,185,cs), +(304,185,o), +(280,205,o), +(291,266,cs), +(301,323,o), +(313,379,o), +(326,434,cs), +(341,495,o), +(374,515,o), +(418,515,cs), +(452,515,o), +(475,504,o), +(481,461,cs), +(485,439,o), +(490,432,o), +(512,432,c), +(716,432,l), +(728,432,o), +(740,442,o), +(743,454,cs), +(778,636,o), +(630,710,o), +(460,710,cs), +(273,710,o), +(115,625,o), +(68,439,cs), +(53,382,o), +(39,315,o), +(30,261,cs), +(1,91,o), +(90,10,o), +(245,-6,c), +(215,-52,l), +(202,-71,o), +(203,-76,o), +(210,-85,c), +(227,-106,l), +(237,-119,o), +(263,-106,o), +(281,-106,cs), +(301,-106,o), +(306,-118,o), +(304,-130,cs), +(301,-142,o), +(289,-154,o), +(270,-154,cs), +(236,-154,o), +(235,-136,o), +(215,-151,c), +(190,-169,l), +(163,-189,o), +(203,-220,o), +(256,-220,cs) +); +} +); +width = 731; +} +); +metricLeft = C; +metricRight = C; +unicode = 199; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-174"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-96"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-135"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 342; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ccircumflex; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = C; +}, +{ +pos = (258,0); +ref = circumflexcomb.case; +} +); +width = 650; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = C; +}, +{ +pos = (211,0); +ref = circumflexcomb.case; +} +); +width = 731; +} +); +unicode = 264; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Cdotaccent; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = C; +}, +{ +pos = (356,0); +ref = dotaccentcomb.case; +} +); +width = 650; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = C; +}, +{ +pos = (348,0); +ref = dotaccentcomb.case; +} +); +width = 731; +} +); +unicode = 266; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = D; +kernLeft = I; +kernRight = D; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = center; +pos = (358,350); +}, +{ +name = top; +pos = (388,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(282,0,ls), +(481,0,o), +(559,87,o), +(602,271,cs), +(616,331,o), +(624,370,o), +(636,430,cs), +(670,604,o), +(587,700,o), +(405,700,c), +(202,700,l), +(189,700,o), +(178,691,o), +(175,677,cs), +(36,22,ls), +(33,9,o), +(41,0,o), +(54,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(231,640,l), +(398,640,ls), +(558,640,o), +(600,571,o), +(572,425,cs), +(560,365,o), +(554,336,o), +(540,276,cs), +(504,120,o), +(438,60,o), +(279,60,cs), +(107,60,l) +); +} +); +width = 677; +}, +{ +anchors = ( +{ +name = bottom; +pos = (315,0); +}, +{ +name = center; +pos = (389,350); +}, +{ +name = top; +pos = (414,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(332,0,ls), +(543,0,o), +(651,87,o), +(699,276,cs), +(713,330,o), +(721,368,o), +(731,425,cs), +(762,604,o), +(602,700,o), +(435,700,c), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(349,505,l), +(409,505,ls), +(454,505,o), +(486,481,o), +(477,425,cs), +(468,370,o), +(460,333,o), +(445,276,cs), +(430,220,o), +(392,195,o), +(348,195,cs), +(283,195,l) +); +} +); +width = 739; +} +); +unicode = 68; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 425; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 276; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 320; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 603; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Eth; +kernLeft = I; +kernRight = D; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(289,0,l), +(488,0,o), +(566,87,o), +(609,271,cs), +(623,331,o), +(631,370,o), +(643,430,cs), +(677,604,o), +(594,700,o), +(412,700,c), +(209,700,l), +(196,700,o), +(185,691,o), +(182,677,c), +(120,382,l), +(57,382,l), +(44,382,o), +(32,373,o), +(30,360,c), +(27,344,l), +(25,331,o), +(31,322,o), +(44,322,c), +(107,322,l), +(43,22,l), +(40,9,o), +(48,0,o), +(61,0,c) +); +}, +{ +closed = 1; +nodes = ( +(170,322,l), +(320,322,ls), +(333,322,o), +(345,331,o), +(347,344,c), +(350,360,l), +(352,373,o), +(346,382,o), +(333,382,c), +(183,382,l), +(238,640,l), +(405,640,l), +(565,640,o), +(607,571,o), +(579,425,cs), +(567,365,o), +(561,336,o), +(547,276,cs), +(511,120,o), +(445,60,o), +(286,60,c), +(114,60,l) +); +} +); +width = 684; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(354,0,ls), +(565,0,o), +(673,87,o), +(721,276,cs), +(735,330,o), +(743,368,o), +(753,425,cs), +(784,604,o), +(624,700,o), +(457,700,cs), +(189,700,ls), +(174,700,o), +(160,688,o), +(157,673,cs), +(105,430,l), +(67,430,ls), +(52,430,o), +(37,418,o), +(34,403,cs), +(13,302,ls), +(10,287,o), +(19,275,o), +(34,275,c), +(72,275,l), +(19,27,ls), +(16,12,o), +(26,0,o), +(41,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(322,275,l), +(378,275,ls), +(393,275,o), +(408,287,o), +(411,302,cs), +(432,403,ls), +(435,418,o), +(426,430,o), +(411,430,cs), +(355,430,l), +(371,505,l), +(431,505,ls), +(476,505,o), +(508,481,o), +(499,425,cs), +(490,370,o), +(482,333,o), +(467,276,cs), +(452,220,o), +(414,195,o), +(370,195,cs), +(305,195,l) +); +} +); +width = 761; +} +); +unicode = 208; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = Dcaron; +kernLeft = I; +kernRight = D; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = D; +}, +{ +pos = (257,0); +ref = caroncomb.case; +} +); +width = 677; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = D; +}, +{ +pos = (203,0); +ref = caroncomb.case; +} +); +width = 739; +} +); +unicode = 270; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 321; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Dcroat; +kernLeft = I; +kernRight = D; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(289,0,ls), +(488,0,o), +(566,87,o), +(609,271,cs), +(623,331,o), +(631,370,o), +(643,430,cs), +(677,604,o), +(594,700,o), +(412,700,cs), +(209,700,ls), +(196,700,o), +(185,691,o), +(182,677,c), +(120,382,l), +(57,382,ls), +(44,382,o), +(32,373,o), +(30,360,cs), +(27,344,ls), +(25,331,o), +(31,322,o), +(44,322,cs), +(107,322,l), +(43,22,ls), +(40,9,o), +(48,0,o), +(61,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,322,l), +(320,322,ls), +(333,322,o), +(345,331,o), +(347,344,cs), +(350,360,ls), +(352,373,o), +(346,382,o), +(333,382,cs), +(183,382,l), +(238,640,l), +(405,640,ls), +(565,640,o), +(607,571,o), +(579,425,cs), +(567,365,o), +(561,336,o), +(547,276,cs), +(511,120,o), +(445,60,o), +(286,60,cs), +(114,60,l) +); +} +); +width = 684; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(354,0,l), +(565,0,o), +(673,87,o), +(721,276,cs), +(735,330,o), +(743,368,o), +(753,425,cs), +(784,604,o), +(624,700,o), +(457,700,c), +(189,700,l), +(174,700,o), +(160,688,o), +(157,673,c), +(105,430,l), +(67,430,l), +(52,430,o), +(37,418,o), +(34,403,c), +(13,302,l), +(10,287,o), +(19,275,o), +(34,275,c), +(72,275,l), +(19,27,l), +(16,12,o), +(26,0,o), +(41,0,c) +); +}, +{ +closed = 1; +nodes = ( +(322,275,l), +(378,275,l), +(393,275,o), +(408,287,o), +(411,302,c), +(432,403,l), +(435,418,o), +(426,430,o), +(411,430,c), +(355,430,l), +(371,505,l), +(431,505,l), +(476,505,o), +(508,481,o), +(499,425,cs), +(490,370,o), +(482,333,o), +(467,276,cs), +(452,220,o), +(414,195,o), +(370,195,c), +(305,195,l) +); +} +); +width = 761; +} +); +unicode = 272; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 352; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 340; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 105; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = E; +kernLeft = I; +kernRight = E; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (241,0); +}, +{ +name = ogonek; +pos = (483,57); +}, +{ +name = top; +pos = (390,700); +}, +{ +name = topleft; +pos = (114,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(452,0,ls), +(466,0,o), +(476,9,o), +(479,22,cs), +(482,37,ls), +(485,51,o), +(478,60,o), +(464,60,cs), +(107,60,l), +(164,325,l), +(491,325,ls), +(505,325,o), +(515,334,o), +(518,347,cs), +(521,362,ls), +(524,376,o), +(517,385,o), +(503,385,cs), +(176,385,l), +(231,640,l), +(580,640,ls), +(594,640,o), +(604,649,o), +(607,662,cs), +(610,677,ls), +(613,691,o), +(606,700,o), +(592,700,cs), +(202,700,ls), +(189,700,o), +(178,691,o), +(175,677,cs), +(36,22,ls), +(33,9,o), +(41,0,o), +(54,0,cs) +); +} +); +width = 591; +}, +{ +anchors = ( +{ +name = bottom; +pos = (278,0); +}, +{ +name = ogonek; +pos = (586,122); +}, +{ +name = top; +pos = (423,700); +}, +{ +name = topleft; +pos = (114,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(540,0,ls), +(555,0,o), +(569,12,o), +(572,27,cs), +(602,168,ls), +(605,183,o), +(596,195,o), +(581,195,cs), +(273,195,l), +(286,258,l), +(564,258,ls), +(579,258,o), +(594,270,o), +(597,285,cs), +(625,415,ls), +(628,430,o), +(618,442,o), +(603,442,cs), +(325,442,l), +(339,505,l), +(639,505,ls), +(654,505,o), +(669,517,o), +(672,532,cs), +(702,673,ls), +(705,688,o), +(695,700,o), +(680,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +} +); +width = 666; +} +); +unicode = 69; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 334; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 376; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 649; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 664; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 511; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Eacute; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = E; +}, +{ +pos = (342,0); +ref = acutecomb.case; +} +); +width = 591; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = E; +}, +{ +pos = (295,0); +ref = acutecomb.case; +} +); +width = 666; +} +); +unicode = 201; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 304; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ebreve; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = E; +}, +{ +pos = (274,0); +ref = brevecomb.case; +} +); +width = 591; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = E; +}, +{ +pos = (249,0); +ref = brevecomb.case; +} +); +width = 666; +} +); +unicode = 276; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ecaron; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = E; +}, +{ +pos = (259,0); +ref = caroncomb.case; +} +); +width = 591; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = E; +}, +{ +pos = (212,0); +ref = caroncomb.case; +} +); +width = 666; +} +); +unicode = 282; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 750; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ecircumflex; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = E; +}, +{ +pos = (230,0); +ref = circumflexcomb.case; +} +); +width = 591; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = E; +}, +{ +pos = (175,0); +ref = circumflexcomb.case; +} +); +width = 666; +} +); +unicode = 202; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Edieresis; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = E; +}, +{ +pos = (241,0); +ref = dieresiscomb.case; +} +); +width = 591; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = E; +}, +{ +pos = (185,0); +ref = dieresiscomb.case; +} +); +width = 666; +} +); +unicode = 203; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Edotaccent; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = E; +}, +{ +pos = (328,0); +ref = dotaccentcomb.case; +} +); +width = 591; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = E; +}, +{ +pos = (312,0); +ref = dotaccentcomb.case; +} +); +width = 666; +} +); +unicode = 278; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Egrave; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = E; +}, +{ +pos = (251,0); +ref = gravecomb.case; +} +); +width = 591; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = E; +}, +{ +pos = (176,0); +ref = gravecomb.case; +} +); +width = 666; +} +); +unicode = 200; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Emacron; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = E; +}, +{ +pos = (253,0); +ref = macroncomb.case; +} +); +width = 591; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-81,0); +ref = macroncomb.case; +} +); +width = 666; +} +); +unicode = 274; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 308; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Eogonek; +kernLeft = I; +kernRight = E; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (390,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(406,-220,ls), +(419,-220,o), +(430,-211,o), +(432,-198,cs), +(435,-185,ls), +(438,-172,o), +(431,-163,o), +(418,-163,cs), +(403,-163,ls), +(359,-163,o), +(333,-133,o), +(344,-82,cs), +(354,-33,o), +(390,-3,o), +(431,0,c), +(452,0,ls), +(466,0,o), +(476,9,o), +(479,22,cs), +(482,37,ls), +(485,51,o), +(478,60,o), +(464,60,cs), +(107,60,l), +(164,325,l), +(491,325,ls), +(505,325,o), +(515,334,o), +(518,347,cs), +(521,362,ls), +(524,376,o), +(517,385,o), +(503,385,cs), +(176,385,l), +(231,640,l), +(580,640,ls), +(594,640,o), +(604,649,o), +(607,662,cs), +(610,677,ls), +(613,691,o), +(606,700,o), +(592,700,cs), +(202,700,ls), +(189,700,o), +(178,691,o), +(175,677,cs), +(36,22,ls), +(33,9,o), +(41,0,o), +(54,0,cs), +(323,0,l), +(304,-22,o), +(291,-50,o), +(284,-82,cs), +(266,-167,o), +(306,-220,o), +(387,-220,cs) +); +} +); +width = 591; +}, +{ +anchors = ( +{ +name = top; +pos = (427,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(493,-220,l), +(508,-220,o), +(522,-208,o), +(525,-193,c), +(540,-125,l), +(543,-110,o), +(534,-98,o), +(519,-98,c), +(509,-98,l), +(470,-98,o), +(465,-70,o), +(469,-49,cs), +(473,-29,o), +(489,-2,o), +(524,0,c), +(540,0,l), +(555,0,o), +(569,12,o), +(572,27,c), +(602,168,l), +(605,183,o), +(596,195,o), +(581,195,c), +(273,195,l), +(286,258,l), +(564,258,l), +(579,258,o), +(594,270,o), +(597,285,c), +(625,415,l), +(628,430,o), +(618,442,o), +(603,442,c), +(325,442,l), +(339,505,l), +(639,505,l), +(654,505,o), +(668,517,o), +(672,532,c), +(702,673,l), +(705,688,o), +(695,700,o), +(680,700,c), +(167,700,l), +(152,700,o), +(138,688,o), +(135,673,c), +(-3,27,l), +(-6,12,o), +(4,0,o), +(19,0,c), +(354,0,l), +(349,-12,o), +(346,-25,o), +(343,-39,cs), +(323,-134,o), +(368,-220,o), +(489,-220,c) +); +} +); +width = 666; +} +); +unicode = 280; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 355; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = F; +kernLeft = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (232,0); +}, +{ +name = top; +pos = (381,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(72,0,ls), +(86,0,o), +(96,9,o), +(99,22,cs), +(161,311,l), +(486,311,ls), +(500,311,o), +(511,320,o), +(513,333,cs), +(516,348,ls), +(519,362,o), +(512,371,o), +(498,371,cs), +(173,371,l), +(231,640,l), +(576,640,ls), +(590,640,o), +(600,649,o), +(603,662,cs), +(606,677,ls), +(609,691,o), +(602,700,o), +(588,700,cs), +(202,700,l), +(189,700,o), +(178,691,o), +(175,677,cs), +(36,22,ls), +(33,9,o), +(41,0,o), +(54,0,cs) +); +} +); +width = 573; +}, +{ +anchors = ( +{ +name = bottom; +pos = (268,0); +}, +{ +name = top; +pos = (417,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(210,0,ls), +(225,0,o), +(239,12,o), +(242,27,cs), +(282,215,l), +(548,215,ls), +(563,215,o), +(578,227,o), +(581,242,cs), +(613,393,ls), +(616,408,o), +(607,420,o), +(592,420,cs), +(326,420,l), +(342,494,l), +(628,494,ls), +(643,494,o), +(657,506,o), +(660,521,cs), +(693,673,ls), +(696,688,o), +(686,700,o), +(671,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +} +); +width = 646; +} +); +unicode = 70; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 320; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 649; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 362; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 761; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 487; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 139; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = G; +kernLeft = O; +kernRight = G; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (277,0); +}, +{ +name = top; +pos = (427,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(455,-10,o), +(575,100,o), +(610,260,cs), +(629,348,ls), +(632,362,o), +(625,371,o), +(611,371,cs), +(397,371,ls), +(384,371,o), +(373,362,o), +(370,348,cs), +(367,334,ls), +(364,320,o), +(371,311,o), +(384,311,cs), +(558,311,l), +(547,260,ls), +(516,115,o), +(414,50,o), +(296,50,cs), +(177,50,o), +(110,110,o), +(136,260,cs), +(147,320,o), +(160,380,o), +(175,440,cs), +(212,590,o), +(304,650,o), +(423,650,cs), +(542,650,o), +(586,587,o), +(593,525,cs), +(595,510,o), +(598,505,o), +(610,505,cs), +(632,505,ls), +(645,505,o), +(655,513,o), +(657,525,cs), +(666,582,o), +(621,710,o), +(436,710,cs), +(265,710,o), +(151,602,o), +(113,445,cs), +(98,385,o), +(83,315,o), +(72,255,cs), +(44,99,o), +(111,-10,o), +(283,-10,cs) +); +} +); +width = 664; +}, +{ +anchors = ( +{ +name = bottom; +pos = (318,0); +}, +{ +name = top; +pos = (460,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(525,-10,o), +(689,85,o), +(726,265,cs), +(753,395,ls), +(756,410,o), +(747,422,o), +(732,422,cs), +(457,422,ls), +(442,422,o), +(427,410,o), +(424,395,cs), +(401,284,ls), +(398,269,o), +(407,257,o), +(422,257,cs), +(469,257,l), +(469,256,l), +(458,205,o), +(419,185,o), +(369,185,cs), +(320,185,o), +(295,210,o), +(306,270,c), +(316,327,o), +(328,385,o), +(342,440,c), +(354,490,o), +(386,515,o), +(435,515,cs), +(484,515,o), +(493,486,o), +(498,476,cs), +(503,469,o), +(510,465,o), +(525,465,cs), +(746,465,ls), +(758,465,o), +(770,475,o), +(773,487,cs), +(795,608,o), +(687,710,o), +(476,710,cs), +(279,710,o), +(127,622,o), +(83,445,c), +(69,388,o), +(54,319,o), +(45,265,cs), +(13,79,o), +(121,-10,o), +(323,-10,cs) +); +} +); +width = 753; +} +); +unicode = 71; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 260; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 440; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 334; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 133; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 604; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 67; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Gbreve; +kernLeft = O; +kernRight = G; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = G; +}, +{ +pos = (311,0); +ref = brevecomb.case; +} +); +width = 664; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = G; +}, +{ +pos = (286,0); +ref = brevecomb.case; +} +); +width = 753; +} +); +unicode = 286; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 339; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Gcircumflex; +kernLeft = O; +kernRight = G; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = G; +}, +{ +pos = (267,0); +ref = circumflexcomb.case; +} +); +width = 664; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = G; +}, +{ +pos = (212,0); +ref = circumflexcomb.case; +} +); +width = 753; +} +); +unicode = 284; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 339; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Gcommaaccent; +kernLeft = O; +kernRight = G; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = G; +}, +{ +pos = (147,0); +ref = commaaccentcomb.case; +} +); +width = 664; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = G; +}, +{ +pos = (99,0); +ref = commaaccentcomb.case; +} +); +width = 753; +} +); +unicode = 290; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 339; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Gdotaccent; +kernLeft = O; +kernRight = G; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = G; +}, +{ +pos = (365,0); +ref = dotaccentcomb.case; +} +); +width = 664; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = G; +}, +{ +pos = (349,0); +ref = dotaccentcomb.case; +} +); +width = 753; +} +); +unicode = 288; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 339; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = H; +kernLeft = I; +kernRight = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (296,0); +}, +{ +name = center; +pos = (396,545); +}, +{ +name = top; +pos = (425,700); +}, +{ +name = topleft; +pos = (114,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(72,0,ls), +(86,0,o), +(96,9,o), +(99,22,cs), +(164,325,l), +(550,325,l), +(485,22,ls), +(482,9,o), +(490,0,o), +(503,0,cs), +(521,0,ls), +(535,0,o), +(545,9,o), +(548,22,cs), +(687,677,ls), +(690,691,o), +(683,700,o), +(669,700,cs), +(651,700,l), +(638,700,o), +(627,691,o), +(624,677,cs), +(562,385,l), +(176,385,l), +(238,677,ls), +(241,691,o), +(234,700,o), +(220,700,cs), +(202,700,ls), +(189,700,o), +(178,691,o), +(175,677,cs), +(36,22,ls), +(33,9,o), +(41,0,o), +(54,0,cs) +); +} +); +width = 701; +}, +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = center; +pos = (405,350); +}, +{ +name = top; +pos = (467,700); +}, +{ +name = topleft; +pos = (114,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,0,ls), +(230,0,o), +(244,12,o), +(247,27,cs), +(293,243,l), +(455,243,l), +(409,27,ls), +(406,12,o), +(416,0,o), +(431,0,cs), +(627,0,ls), +(642,0,o), +(656,12,o), +(659,27,cs), +(797,673,ls), +(800,688,o), +(790,700,o), +(775,700,cs), +(579,700,ls), +(564,700,o), +(550,688,o), +(547,673,cs), +(502,463,l), +(340,463,l), +(385,673,ls), +(388,688,o), +(378,700,o), +(363,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,11,o), +(4,0,o), +(19,0,cs) +); +} +); +width = 771; +} +); +unicode = 72; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 139; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 543; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 588; +y = 0; +} +); +}; +}, +{ +color = 3; +glyphname = Hbar; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(714,511,ls), +(728,511,o), +(739,520,o), +(742,533,cs), +(745,548,ls), +(748,562,o), +(741,571,o), +(727,571,cs), +(100,571,ls), +(87,571,o), +(76,562,o), +(73,548,cs), +(70,533,ls), +(67,520,o), +(74,511,o), +(87,511,cs) +); +}, +{ +ref = H; +} +); +width = 710; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(725,521,ls), +(740,521,o), +(755,533,o), +(758,548,cs), +(772,616,ls), +(775,631,o), +(766,643,o), +(751,643,cs), +(157,643,ls), +(142,643,o), +(127,631,o), +(124,616,cs), +(110,548,ls), +(107,533,o), +(116,521,o), +(131,521,cs) +); +}, +{ +ref = H; +} +); +width = 771; +} +); +unicode = 294; +}, +{ +color = 10; +glyphname = Hcircumflex; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = H; +}, +{ +pos = (265,0); +ref = circumflexcomb.case; +} +); +width = 701; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = H; +}, +{ +pos = (219,0); +ref = circumflexcomb.case; +} +); +width = 771; +} +); +unicode = 292; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 341; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = I; +kernLeft = I; +kernRight = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (64,0); +}, +{ +name = ogonek; +pos = (105,57); +}, +{ +name = top; +pos = (210,700); +}, +{ +name = topleft; +pos = (114,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(73,0,ls), +(86,0,o), +(96,9,o), +(99,22,cs), +(239,678,l), +(241,691,o), +(234,700,o), +(221,700,cs), +(202,700,ls), +(189,700,o), +(178,691,o), +(176,678,c), +(35,22,ls), +(32,9,o), +(40,0,o), +(53,0,cs) +); +} +); +width = 252; +}, +{ +anchors = ( +{ +name = bottom; +pos = (129,0); +}, +{ +name = ogonek; +pos = (265,122); +}, +{ +name = top; +pos = (275,700); +}, +{ +name = topleft; +pos = (114,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(223,0,ls), +(238,0,o), +(252,12,o), +(255,27,cs), +(393,673,ls), +(396,688,o), +(386,700,o), +(371,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +} +); +width = 367; +} +); +unicode = 73; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 85; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 148; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = IJ; +kernLeft = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(381,-10,o), +(460,99,o), +(493,255,cs), +(582,677,ls), +(585,691,o), +(578,700,o), +(564,700,cs), +(546,700,ls), +(533,700,o), +(522,691,o), +(520,678,cs), +(430,256,ls), +(404,135,o), +(324,50,o), +(207,50,cs), +(194,50,o), +(183,41,o), +(180,27,cs), +(177,12,ls), +(174,-1,o), +(181,-10,o), +(194,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(73,0,ls), +(86,0,o), +(96,9,o), +(99,22,cs), +(239,678,ls), +(241,691,o), +(234,700,o), +(221,700,cs), +(202,700,ls), +(189,700,o), +(178,691,o), +(176,678,cs), +(36,22,ls), +(33,9,o), +(41,0,o), +(54,0,cs) +); +} +); +width = 590; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(592,-10,o), +(704,45,o), +(749,258,cs), +(838,673,ls), +(841,688,o), +(831,700,o), +(816,700,cs), +(611,700,ls), +(596,700,o), +(582,688,o), +(579,673,c), +(499,298,ls), +(484,227,o), +(456,205,o), +(400,205,cs), +(385,205,o), +(371,193,o), +(367,178,cs), +(333,17,ls), +(330,2,o), +(339,-10,o), +(354,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(223,0,ls), +(238,0,o), +(252,12,o), +(255,27,cs), +(393,673,ls), +(396,688,o), +(386,700,o), +(371,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +} +); +width = 807; +} +); +unicode = 306; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 642; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Iacute; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = I; +}, +{ +pos = (162,0); +ref = acutecomb.case; +} +); +width = 252; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = I; +}, +{ +pos = (147,0); +ref = acutecomb.case; +} +); +width = 367; +} +); +unicode = 205; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 119; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ibreve; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = I; +}, +{ +pos = (94,0); +ref = brevecomb.case; +} +); +width = 252; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = I; +}, +{ +pos = (101,0); +ref = brevecomb.case; +} +); +width = 367; +} +); +unicode = 300; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Icircumflex; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = I; +}, +{ +pos = (50,0); +ref = circumflexcomb.case; +} +); +width = 252; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = I; +}, +{ +pos = (27,0); +ref = circumflexcomb.case; +} +); +width = 367; +} +); +unicode = 206; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Idieresis; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = I; +}, +{ +pos = (61,0); +ref = dieresiscomb.case; +} +); +width = 252; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = I; +}, +{ +pos = (37,0); +ref = dieresiscomb.case; +} +); +width = 367; +} +); +unicode = 207; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Idotaccent; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = I; +}, +{ +pos = (148,0); +ref = dotaccentcomb.case; +} +); +width = 252; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = I; +}, +{ +pos = (164,0); +ref = dotaccentcomb.case; +} +); +width = 367; +} +); +unicode = 304; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Igrave; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = I; +}, +{ +pos = (71,0); +ref = gravecomb.case; +} +); +width = 252; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = I; +}, +{ +pos = (28,0); +ref = gravecomb.case; +} +); +width = 367; +} +); +unicode = 204; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Imacron; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = I; +}, +{ +pos = (73,0); +ref = macroncomb.case; +} +); +width = 252; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-229,0); +ref = macroncomb.case; +} +); +width = 367; +} +); +unicode = 298; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Iogonek; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(57,-220,ls), +(70,-220,o), +(81,-211,o), +(84,-198,cs), +(87,-185,ls), +(90,-172,o), +(83,-163,o), +(70,-163,cs), +(55,-163,ls), +(11,-163,o), +(-15,-133,o), +(-4,-82,cs), +(7,-31,o), +(45,0,o), +(89,0,cs), +(104,0,ls), +(117,0,o), +(128,9,o), +(131,22,cs), +(270,678,ls), +(273,691,o), +(266,700,o), +(253,700,cs), +(234,700,ls), +(221,700,o), +(210,691,o), +(207,678,cs), +(79,74,l), +(78,71,o), +(77,67,o), +(77,64,c), +(75,55,l), +(5,46,o), +(-48,-5,o), +(-64,-82,cs), +(-82,-167,o), +(-43,-220,o), +(38,-220,cs) +); +} +); +width = 269; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(190,-222,ls), +(205,-222,o), +(220,-210,o), +(223,-195,cs), +(237,-127,ls), +(240,-112,o), +(231,-100,o), +(216,-100,cs), +(206,-100,l), +(167,-100,o), +(162,-71,o), +(167,-50,cs), +(171,-29,o), +(188,0,o), +(227,0,cs), +(237,0,ls), +(252,0,o), +(267,12,o), +(270,27,cs), +(407,673,ls), +(410,688,o), +(401,700,o), +(386,700,cs), +(182,700,ls), +(167,700,o), +(152,688,o), +(149,673,cs), +(12,27,ls), +(9,12,o), +(18,0,o), +(33,0,cs), +(56,0,l), +(50,-16,o), +(44,-32,o), +(41,-50,cs), +(20,-145,o), +(55,-222,o), +(176,-222,cs) +); +} +); +width = 368; +} +); +unicode = 302; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 110; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Itilde; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = I; +}, +{ +pos = (68,0); +ref = tildecomb.case; +} +); +width = 252; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = I; +}, +{ +pos = (59,0); +ref = tildecomb.case; +} +); +width = 367; +} +); +unicode = 296; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = J; +kernLeft = J; +kernRight = U; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (252,0); +}, +{ +name = top; +pos = (390,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(403,-10,o), +(484,99,o), +(517,255,c), +(606,677,ls), +(609,691,o), +(602,700,o), +(588,700,cs), +(179,700,ls), +(166,700,o), +(155,691,o), +(153,678,c), +(149,662,ls), +(146,649,o), +(154,640,o), +(167,640,cs), +(535,640,l), +(453,256,ls), +(427,135,o), +(358,50,o), +(226,50,cs), +(129,50,o), +(68,91,o), +(82,195,cs), +(84,207,o), +(77,216,o), +(64,216,cs), +(42,216,ls), +(28,216,o), +(21,206,o), +(19,194,cs), +(0,52,o), +(106,-10,o), +(226,-10,cs) +); +} +); +width = 614; +}, +{ +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (443,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(490,-10,o), +(602,73,o), +(641,258,cs), +(730,673,ls), +(733,688,o), +(723,700,o), +(708,700,cs), +(179,700,ls), +(164,700,o), +(150,688,o), +(147,673,cs), +(115,524,ls), +(112,509,o), +(121,497,o), +(136,497,cs), +(433,497,l), +(384,266,ls), +(371,205,o), +(344,185,o), +(308,185,cs), +(275,185,o), +(266,198,o), +(258,225,cs), +(253,247,o), +(246,257,o), +(224,257,cs), +(20,257,ls), +(8,257,o), +(-4,247,o), +(-7,235,cs), +(-37,78,o), +(143,-10,o), +(288,-10,cs) +); +} +); +width = 698; +} +); +unicode = 74; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 133; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 677; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 303; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 91; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Jacute; +kernLeft = J; +kernRight = U; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = J; +}, +{ +pos = (342,0); +ref = acutecomb.case; +} +); +width = 614; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = J; +}, +{ +pos = (315,0); +ref = acutecomb.case; +} +); +width = 698; +} +); +}, +{ +color = 10; +glyphname = Jcircumflex; +kernLeft = J; +kernRight = U; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = J; +}, +{ +pos = (230,0); +ref = circumflexcomb.case; +} +); +width = 614; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = J; +}, +{ +pos = (195,0); +ref = circumflexcomb.case; +} +); +width = 698; +} +); +unicode = 308; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = K; +kernLeft = I; +kernRight = K; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (233,0); +}, +{ +name = top; +pos = (375,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(74,0,l), +(88,0,o), +(96,9,o), +(99,22,c), +(162,318,l), +(422,15,ls), +(426,10,o), +(434,0,o), +(455,0,c), +(473,0,l), +(488,0,o), +(501,17,o), +(487,34,cs), +(203,365,l), +(588,666,ls), +(600,675,o), +(594,700,o), +(574,700,c), +(556,700,l), +(533,700,o), +(521,689,o), +(516,685,c), +(186,427,l), +(238,677,l), +(241,691,o), +(234,700,o), +(220,700,c), +(200,700,ls), +(187,700,o), +(178,691,o), +(175,677,cs), +(36,22,l), +(33,9,o), +(41,0,o), +(54,0,c) +); +} +); +width = 562; +}, +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = top; +pos = (450,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(210,0,ls), +(225,0,o), +(239,12,o), +(242,27,cs), +(288,241,l), +(373,23,l), +(378,10,o), +(389,0,o), +(410,0,cs), +(623,0,ls), +(638,0,o), +(657,15,o), +(649,33,cs), +(517,344,l), +(776,667,ls), +(787,680,o), +(782,700,o), +(764,700,cs), +(538,700,ls), +(516,700,o), +(502,689,o), +(494,678,c), +(337,475,l), +(380,673,ls), +(383,688,o), +(373,700,o), +(358,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +} +); +width = 712; +} +); +unicode = 75; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 365; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 547; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 139; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Kcommaaccent; +kernLeft = I; +kernRight = K; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = K; +}, +{ +pos = (103,0); +ref = commaaccentcomb.case; +} +); +width = 562; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = K; +}, +{ +pos = (86,0); +ref = commaaccentcomb.case; +} +); +width = 712; +} +); +unicode = 310; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 321; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = L; +kernLeft = I; +kernRight = L; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (238,0); +}, +{ +name = center; +pos = (289,350); +}, +{ +name = top; +pos = (211,700); +}, +{ +name = topright; +pos = (614,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(440,0,ls), +(454,0,o), +(464,9,o), +(467,22,cs), +(470,37,ls), +(473,51,o), +(466,60,o), +(452,60,cs), +(107,60,l), +(239,678,l), +(241,691,o), +(234,700,o), +(221,700,cs), +(202,700,ls), +(189,700,o), +(178,691,o), +(176,678,c), +(36,22,ls), +(33,9,o), +(41,0,o), +(54,0,cs) +); +} +); +width = 540; +}, +{ +anchors = ( +{ +name = bottom; +pos = (257,0); +}, +{ +name = center; +pos = (331,350); +}, +{ +name = top; +pos = (276,700); +}, +{ +name = topright; +pos = (697,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,ls), +(538,0,o), +(552,12,o), +(555,27,cs), +(587,178,ls), +(590,193,o), +(581,205,o), +(566,205,cs), +(289,205,l), +(389,673,ls), +(392,688,o), +(382,700,o), +(367,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +} +); +width = 623; +} +); +unicode = 76; +}, +{ +color = 10; +glyphname = Lacute; +kernLeft = I; +kernRight = L; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = L; +}, +{ +pos = (163,0); +ref = acutecomb.case; +} +); +width = 540; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = L; +}, +{ +pos = (148,0); +ref = acutecomb.case; +} +); +width = 623; +} +); +unicode = 313; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-134"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Lcaron; +kernLeft = I; +kernRight = L; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (284,760); +ref = commaaccentcomb.case; +}, +{ +ref = L; +} +); +width = 540; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (389,760); +ref = commaaccentcomb.case; +}, +{ +ref = L; +} +); +width = 630; +} +); +unicode = 317; +}, +{ +color = 10; +glyphname = Lcommaaccent; +kernLeft = I; +kernRight = L; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = L; +}, +{ +pos = (108,0); +ref = commaaccentcomb.case; +} +); +width = 540; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = L; +}, +{ +pos = (38,0); +ref = commaaccentcomb.case; +} +); +width = 623; +} +); +unicode = 315; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 297; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ldot; +kernLeft = I; +kernRight = L; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (540,0); +ref = periodcentered.loclCAT.case; +} +); +width = 540; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (623,0); +ref = periodcentered.loclCAT.case; +} +); +width = 629; +} +); +unicode = 319; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 360; +} +); +}; +}, +{ +color = 6; +glyphname = Lslash; +kernLeft = I; +kernRight = L; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(449,0,ls), +(462,0,o), +(472,9,o), +(475,22,cs), +(479,38,ls), +(481,51,o), +(474,60,o), +(461,60,cs), +(115,60,l), +(170,317,l), +(338,377,ls), +(355,383,o), +(362,387,o), +(365,402,cs), +(369,421,ls), +(372,433,o), +(365,439,o), +(354,439,cs), +(350,439,o), +(346,438,o), +(340,436,cs), +(183,380,l), +(247,678,ls), +(249,691,o), +(242,700,o), +(229,700,cs), +(210,700,ls), +(197,700,o), +(186,691,o), +(184,678,cs), +(115,355,l), +(41,329,ls), +(24,323,o), +(17,319,o), +(14,304,cs), +(10,285,ls), +(8,273,o), +(14,267,o), +(25,267,cs), +(29,267,o), +(33,268,o), +(39,270,cs), +(102,292,l), +(44,22,ls), +(41,9,o), +(49,0,o), +(62,0,cs) +); +} +); +width = 548; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(531,0,ls), +(546,0,o), +(560,12,o), +(563,27,cs), +(595,178,ls), +(599,193,o), +(589,205,o), +(574,205,cs), +(297,205,l), +(323,325,l), +(491,386,ls), +(508,392,o), +(516,401,o), +(520,419,cs), +(543,527,ls), +(545,539,o), +(538,548,o), +(526,548,cs), +(524,548,o), +(520,547,o), +(514,545,cs), +(357,488,l), +(397,673,ls), +(400,688,o), +(390,700,o), +(375,700,cs), +(175,700,ls), +(160,700,o), +(146,688,o), +(143,673,cs), +(82,388,l), +(52,377,ls), +(34,371,o), +(26,362,o), +(23,344,cs), +(0,236,ls), +(-3,224,o), +(4,215,o), +(16,215,cs), +(18,215,o), +(22,216,o), +(28,218,cs), +(47,225,l), +(5,27,ls), +(2,12,o), +(12,0,o), +(27,0,cs) +); +} +); +width = 631; +} +); +unicode = 321; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 215; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 548; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 438; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 267; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 353; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 129; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 325; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-5"; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = M; +kernLeft = I; +kernRight = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = top; +pos = (486,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(74,0,ls), +(87,0,o), +(97,8,o), +(100,22,cs), +(217,574,l), +(333,188,l), +(337,175,o), +(344,168,o), +(360,168,c), +(381,168,l), +(397,168,o), +(407,176,o), +(416,188,cs), +(678,548,l), +(566,22,l), +(563,9,o), +(571,0,o), +(584,0,cs), +(603,0,ls), +(617,0,o), +(627,9,o), +(630,22,cs), +(769,677,ls), +(772,691,o), +(765,700,o), +(751,700,cs), +(726,700,ls), +(713,700,o), +(706,691,o), +(703,687,c), +(381,245,l), +(248,687,ls), +(247,691,o), +(242,700,o), +(229,700,cs), +(203,700,ls), +(189,700,o), +(178,691,o), +(175,677,cs), +(36,22,ls), +(33,9,o), +(41,0,o), +(55,0,cs) +); +} +); +width = 783; +}, +{ +anchors = ( +{ +name = bottom; +pos = (373,0); +}, +{ +name = top; +pos = (522,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(200,0,ls), +(215,0,o), +(229,12,o), +(232,27,cs), +(290,301,l), +(334,193,ls), +(338,182,o), +(345,168,o), +(365,168,cs), +(435,168,ls), +(455,168,o), +(468,182,o), +(478,193,cs), +(566,301,l), +(508,27,ls), +(505,12,o), +(515,0,o), +(530,0,cs), +(711,0,ls), +(726,0,o), +(740,12,o), +(743,27,cs), +(881,673,ls), +(884,688,o), +(874,700,o), +(859,700,cs), +(701,700,ls), +(674,700,o), +(658,680,o), +(653,673,cs), +(457,433,l), +(363,673,ls), +(360,680,o), +(352,700,o), +(325,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +} +); +width = 855; +} +); +unicode = 77; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 168; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 126; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 636; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = N; +kernLeft = I; +kernRight = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (289,0); +}, +{ +name = top; +pos = (421,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(73,0,ls), +(87,0,o), +(97,9,o), +(100,22,cs), +(219,581,l), +(469,12,ls), +(471,7,o), +(475,0,o), +(488,0,c), +(508,0,l), +(521,0,o), +(531,9,o), +(534,23,c), +(673,677,l), +(676,691,o), +(669,700,o), +(655,700,c), +(637,700,l), +(624,700,o), +(613,691,o), +(610,677,c), +(491,117,l), +(240,688,ls), +(238,693,o), +(234,700,o), +(221,700,cs), +(201,700,ls), +(188,700,o), +(178,691,o), +(175,677,c), +(36,22,ls), +(33,9,o), +(41,0,o), +(54,0,cs) +); +} +); +width = 687; +}, +{ +anchors = ( +{ +name = bottom; +pos = (315,0); +}, +{ +name = top; +pos = (446,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(200,0,ls), +(215,0,o), +(229,12,o), +(232,27,cs), +(286,278,l), +(400,23,ls), +(403,17,o), +(410,0,o), +(437,0,cs), +(595,0,ls), +(610,0,o), +(624,12,o), +(627,27,cs), +(765,673,ls), +(768,688,o), +(758,700,o), +(743,700,cs), +(562,700,ls), +(547,700,o), +(533,688,o), +(530,673,cs), +(472,400,l), +(361,677,ls), +(358,684,o), +(352,700,o), +(325,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +} +); +width = 739; +} +); +unicode = 78; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 540; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 125; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Nacute; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = N; +}, +{ +pos = (373,0); +ref = acutecomb.case; +} +); +width = 687; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = N; +}, +{ +pos = (318,0); +ref = acutecomb.case; +} +); +width = 739; +} +); +unicode = 323; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 333; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ncaron; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = N; +}, +{ +pos = (290,0); +ref = caroncomb.case; +} +); +width = 687; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = N; +}, +{ +pos = (235,0); +ref = caroncomb.case; +} +); +width = 739; +} +); +unicode = 327; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 333; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ncommaaccent; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = N; +}, +{ +pos = (159,0); +ref = commaaccentcomb.case; +} +); +width = 687; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = N; +}, +{ +pos = (96,0); +ref = commaaccentcomb.case; +} +); +width = 739; +} +); +unicode = 325; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 333; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ntilde; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = N; +}, +{ +pos = (279,0); +ref = tildecomb.case; +} +); +width = 687; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = N; +}, +{ +pos = (230,0); +ref = tildecomb.case; +} +); +width = 739; +} +); +unicode = 209; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 333; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Eng; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(342,-225,l), +(467,-225,o), +(509,-151,o), +(529,-57,c), +(685,677,l), +(688,691,o), +(681,700,o), +(667,700,c), +(649,700,l), +(636,700,o), +(625,691,o), +(622,677,c), +(505,124,l), +(255,688,l), +(254,691,o), +(250,700,o), +(237,700,c), +(216,700,l), +(203,700,o), +(192,691,o), +(189,677,c), +(50,22,l), +(47,9,o), +(54,0,o), +(67,0,c), +(85,0,l), +(99,0,o), +(110,9,o), +(113,22,c), +(230,574,l), +(480,8,l), +(466,-57,l), +(453,-118,o), +(431,-165,o), +(355,-165,c), +(351,-165,l), +(338,-165,o), +(327,-174,o), +(324,-187,c), +(321,-203,l), +(318,-216,o), +(325,-225,o), +(338,-225,c) +); +} +); +width = 684; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(262,-225,ls), +(444,-225,o), +(605,-145,o), +(642,26,cs), +(779,673,ls), +(782,688,o), +(773,700,o), +(758,700,cs), +(577,700,ls), +(562,700,o), +(547,688,o), +(544,673,cs), +(486,400,l), +(376,677,ls), +(374,684,o), +(367,700,o), +(340,700,cs), +(182,700,ls), +(167,700,o), +(152,688,o), +(149,673,cs), +(12,27,ls), +(9,12,o), +(18,0,o), +(33,0,cs), +(214,0,ls), +(229,0,o), +(244,12,o), +(247,27,cs), +(300,278,l), +(409,38,l), +(409,36,l), +(402,2,o), +(373,-22,o), +(330,-22,cs), +(290,-22,ls), +(275,-22,o), +(260,-34,o), +(257,-49,c), +(225,-198,ls), +(222,-213,o), +(231,-225,o), +(246,-225,cs) +); +} +); +width = 740; +} +); +unicode = 330; +}, +{ +color = 6; +glyphname = O; +kernLeft = O; +kernRight = O; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = center; +pos = (350,350); +}, +{ +name = ogonek; +pos = (543,10); +}, +{ +name = top; +pos = (413,700); +}, +{ +name = topleft; +pos = (114,700); +}, +{ +name = topright; +pos = (736,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(428,-10,o), +(543,77,o), +(588,266,cs), +(603,326,o), +(613,374,o), +(624,434,cs), +(658,620,o), +(568,710,o), +(412,710,cs), +(254,710,o), +(140,620,o), +(96,434,cs), +(81,374,o), +(71,326,o), +(60,266,cs), +(25,77,o), +(116,-10,o), +(272,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(148,50,o), +(96,115,o), +(124,271,cs), +(135,331,o), +(143,369,o), +(158,429,cs), +(196,585,o), +(291,650,o), +(412,650,cs), +(535,650,o), +(588,585,o), +(560,429,cs), +(549,369,o), +(541,331,o), +(526,271,cs), +(488,115,o), +(391,50,o), +(272,50,cs) +); +} +); +width = 662; +}, +{ +anchors = ( +{ +name = bottom; +pos = (316,0); +}, +{ +name = center; +pos = (390,350); +}, +{ +name = ogonek; +pos = (615,10); +}, +{ +name = top; +pos = (453,700); +}, +{ +name = topleft; +pos = (114,700); +}, +{ +name = topright; +pos = (816,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(542,-10,o), +(652,81,o), +(698,260,cs), +(711,314,o), +(725,379,o), +(735,436,cs), +(765,611,o), +(615,710,o), +(439,710,cs), +(223,710,o), +(111,611,o), +(67,436,cs), +(53,379,o), +(39,314,o), +(30,260,cs), +(0,81,o), +(150,-10,o), +(326,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,185,o), +(281,210,o), +(291,266,cs), +(301,323,o), +(313,379,o), +(327,434,cs), +(341,490,o), +(375,515,o), +(418,515,cs), +(461,515,o), +(485,490,o), +(475,434,cs), +(465,379,o), +(453,323,o), +(439,266,cs), +(425,210,o), +(392,185,o), +(348,185,cs) +); +} +); +width = 742; +} +); +unicode = 79; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 335; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 434; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 266; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 496; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Oacute; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = O; +}, +{ +pos = (365,0); +ref = acutecomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = O; +}, +{ +pos = (325,0); +ref = acutecomb.case; +} +); +width = 742; +} +); +unicode = 211; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Obreve; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = O; +}, +{ +pos = (297,0); +ref = brevecomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = O; +}, +{ +pos = (279,0); +ref = brevecomb.case; +} +); +width = 742; +} +); +unicode = 334; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ocircumflex; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = O; +}, +{ +pos = (253,0); +ref = circumflexcomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = O; +}, +{ +pos = (205,0); +ref = circumflexcomb.case; +} +); +width = 742; +} +); +unicode = 212; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Odieresis; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = O; +}, +{ +pos = (264,0); +ref = dieresiscomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = O; +}, +{ +pos = (215,0); +ref = dieresiscomb.case; +} +); +width = 742; +} +); +unicode = 214; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ograve; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = O; +}, +{ +pos = (274,0); +ref = gravecomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = O; +}, +{ +pos = (206,0); +ref = gravecomb.case; +} +); +width = 742; +} +); +unicode = 210; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ohungarumlaut; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = O; +}, +{ +pos = (288,0); +ref = hungarumlautcomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = O; +}, +{ +pos = (229,0); +ref = hungarumlautcomb.case; +} +); +width = 742; +} +); +unicode = 336; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Omacron; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = O; +}, +{ +pos = (276,0); +ref = macroncomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = O; +}, +{ +pos = (-51,0); +ref = macroncomb.case; +} +); +width = 742; +} +); +unicode = 332; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Oslash; +kernLeft = O; +kernRight = O; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = top; +pos = (425,700); +} +); +layerId = UUID0; +shapes = ( +{ +ref = O; +}, +{ +pos = (107,-1); +ref = slashlongcomb; +} +); +width = 662; +}, +{ +anchors = ( +{ +name = bottom; +pos = (316,0); +}, +{ +name = top; +pos = (465,700); +} +); +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = O; +}, +{ +pos = (104,-1); +ref = slashlongcomb; +} +); +width = 742; +} +); +unicode = 216; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 145; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 351; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 679; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 85; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 20; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Oslashacute; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (370,0); +ref = acutecomb.case; +}, +{ +ref = Oslash; +} +); +width = 680; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (350,0); +ref = acutecomb.case; +}, +{ +ref = Oslash; +} +); +width = 778; +} +); +unicode = 510; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 349; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Otilde; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = O; +}, +{ +pos = (271,0); +ref = tildecomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = O; +}, +{ +pos = (237,0); +ref = tildecomb.case; +} +); +width = 742; +} +); +unicode = 213; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = OE; +kernLeft = O; +kernRight = E; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (394,0); +}, +{ +name = top; +pos = (543,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(759,0,l), +(773,0,o), +(783,9,o), +(786,22,c), +(789,37,l), +(792,51,o), +(785,60,o), +(771,60,c), +(454,60,l), +(511,325,l), +(798,325,l), +(812,325,o), +(822,334,o), +(825,347,c), +(828,362,l), +(831,376,o), +(824,385,o), +(810,385,c), +(523,385,l), +(578,640,l), +(887,640,l), +(901,640,o), +(911,649,o), +(914,662,c), +(917,677,l), +(920,691,o), +(913,700,o), +(899,700,c), +(417,700,l), +(218,700,o), +(140,613,o), +(97,429,cs), +(83,369,o), +(75,330,o), +(63,270,cs), +(29,96,o), +(112,0,o), +(294,0,c) +); +}, +{ +closed = 1; +nodes = ( +(141,60,o), +(99,129,o), +(127,275,cs), +(139,335,o), +(145,364,o), +(159,424,cs), +(195,580,o), +(261,640,o), +(420,640,c), +(515,640,l), +(391,60,l), +(301,60,l) +); +} +); +width = 897; +}, +{ +anchors = ( +{ +name = bottom; +pos = (446,0); +}, +{ +name = top; +pos = (595,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(875,0,l), +(890,0,o), +(904,12,o), +(907,27,c), +(937,168,l), +(940,183,o), +(931,195,o), +(916,195,c), +(628,195,l), +(641,258,l), +(899,258,l), +(914,258,o), +(929,270,o), +(932,285,c), +(960,415,l), +(963,430,o), +(953,442,o), +(938,442,c), +(680,442,l), +(694,505,l), +(974,505,l), +(989,505,o), +(1003,517,o), +(1007,532,c), +(1037,673,l), +(1040,688,o), +(1030,700,o), +(1015,700,c), +(435,700,l), +(228,700,o), +(108,604,o), +(63,425,cs), +(49,368,o), +(41,330,o), +(31,276,cs), +(-1,87,o), +(151,0,o), +(322,0,c) +); +}, +{ +closed = 1; +nodes = ( +(304,195,o), +(276,220,o), +(285,276,cs), +(294,333,o), +(302,370,o), +(317,425,cs), +(332,481,o), +(374,505,o), +(419,505,c), +(455,505,l), +(389,195,l), +(348,195,l) +); +} +); +width = 1001; +} +); +unicode = 338; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 842; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 66; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 439; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 502; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = P; +kernLeft = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (260,0); +}, +{ +name = top; +pos = (409,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(72,0,ls), +(86,0,o), +(96,9,o), +(99,22,cs), +(155,286,l), +(363,286,ls), +(506,286,o), +(602,357,o), +(631,493,cs), +(660,629,o), +(587,700,o), +(440,700,cs), +(202,700,ls), +(189,700,o), +(178,691,o), +(175,677,cs), +(36,22,ls), +(33,9,o), +(41,0,o), +(54,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(231,640,l), +(433,640,ls), +(569,640,o), +(588,588,o), +(568,493,cs), +(548,398,o), +(467,346,o), +(358,346,cs), +(168,346,l) +); +} +); +width = 629; +}, +{ +anchors = ( +{ +name = bottom; +pos = (298,0); +}, +{ +name = top; +pos = (447,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(225,0,ls), +(240,0,o), +(254,12,o), +(257,27,cs), +(298,218,l), +(388,218,ls), +(579,218,o), +(684,289,o), +(719,455,cs), +(754,621,o), +(621,700,o), +(450,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(356,514,l), +(426,514,ls), +(462,514,o), +(465,482,o), +(460,457,cs), +(451,418,o), +(423,403,o), +(402,403,cs), +(332,403,l) +); +} +); +width = 705; +} +); +unicode = 80; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 493; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 403; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 218; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 310; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 345; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 139; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Thorn; +kernLeft = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (262,0); +}, +{ +name = top; +pos = (411,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(72,0,l), +(86,0,o), +(96,9,o), +(99,22,c), +(125,143,l), +(333,143,l), +(476,143,o), +(572,214,o), +(601,350,cs), +(630,486,o), +(557,557,o), +(410,557,c), +(213,557,l), +(239,678,l), +(241,691,o), +(234,700,o), +(221,700,c), +(202,700,l), +(189,700,o), +(178,691,o), +(176,678,c), +(36,22,l), +(33,9,o), +(41,0,o), +(54,0,c) +); +}, +{ +closed = 1; +nodes = ( +(200,497,l), +(403,497,l), +(539,497,o), +(558,445,o), +(538,350,cs), +(518,255,o), +(437,203,o), +(328,203,c), +(138,203,l) +); +} +); +width = 633; +}, +{ +anchors = ( +{ +name = bottom; +pos = (297,0); +}, +{ +name = top; +pos = (446,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(225,0,l), +(240,0,o), +(254,12,o), +(257,27,c), +(277,119,l), +(367,119,l), +(558,119,o), +(663,190,o), +(698,356,cs), +(733,522,o), +(600,601,o), +(429,601,c), +(379,601,l), +(395,673,l), +(398,688,o), +(388,700,o), +(373,700,c), +(167,700,l), +(152,700,o), +(138,688,o), +(135,673,c), +(-3,27,l), +(-6,12,o), +(4,0,o), +(19,0,c) +); +}, +{ +closed = 1; +nodes = ( +(335,415,l), +(405,415,l), +(441,415,o), +(444,383,o), +(439,358,cs), +(430,319,o), +(402,304,o), +(381,304,c), +(311,304,l) +); +} +); +width = 704; +} +); +unicode = 222; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 119; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 601; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 570; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 6; +glyphname = Q; +kernLeft = O; +kernRight = O; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = top; +pos = (425,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(506,-65,l), +(517,-65,o), +(528,-56,o), +(531,-45,cs), +(532,-39,o), +(531,-36,o), +(530,-34,c), +(485,56,l), +(541,101,o), +(580,171,o), +(603,266,cs), +(618,326,o), +(628,374,o), +(638,434,cs), +(673,620,o), +(589,710,o), +(433,710,cs), +(277,710,o), +(155,620,o), +(110,434,cs), +(96,374,o), +(86,326,o), +(75,266,cs), +(40,77,o), +(114,-10,o), +(280,-10,cs), +(335,-10,o), +(383,0,o), +(426,19,c), +(457,-42,l), +(462,-50,o), +(469,-65,o), +(484,-65,c) +); +}, +{ +closed = 1; +nodes = ( +(179,50,o), +(111,115,o), +(139,271,cs), +(150,331,o), +(158,369,o), +(172,429,cs), +(211,585,o), +(307,650,o), +(420,650,cs), +(533,650,o), +(603,585,o), +(574,429,cs), +(564,369,o), +(556,331,o), +(541,271,cs), +(503,115,o), +(407,50,o), +(293,50,cs) +); +} +); +width = 662; +}, +{ +anchors = ( +{ +name = bottom; +pos = (316,0); +}, +{ +name = top; +pos = (465,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(631,-65,l), +(643,-65,o), +(656,-55,o), +(656,-43,cs), +(657,-40,o), +(656,-36,o), +(655,-34,c), +(600,79,l), +(652,123,o), +(690,184,o), +(710,260,cs), +(724,314,o), +(738,379,o), +(748,436,cs), +(778,611,o), +(668,710,o), +(472,710,cs), +(276,710,o), +(124,611,o), +(80,436,cs), +(66,379,o), +(52,314,o), +(42,260,cs), +(12,81,o), +(123,-10,o), +(319,-10,cs), +(339,-10,o), +(359,-9,o), +(378,-7,c), +(398,-42,l), +(403,-50,o), +(410,-65,o), +(435,-65,c) +); +}, +{ +closed = 1; +nodes = ( +(317,185,o), +(294,210,o), +(304,266,cs), +(314,323,o), +(326,379,o), +(339,434,cs), +(353,490,o), +(388,515,o), +(431,515,cs), +(474,515,o), +(497,490,o), +(487,434,cs), +(478,379,o), +(466,323,o), +(452,266,cs), +(438,210,o), +(405,185,o), +(361,185,cs) +); +} +); +width = 742; +} +); +unicode = 81; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-56"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 82; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 750; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 580; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = R; +kernLeft = I; +kernRight = R; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (265,0); +}, +{ +name = top; +pos = (368,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(85,0,ls), +(99,0,o), +(110,9,o), +(113,22,cs), +(171,296,l), +(377,296,l), +(479,27,ls), +(484,13,o), +(489,0,o), +(511,0,cs), +(523,0,ls), +(534,0,o), +(545,9,o), +(547,20,cs), +(548,24,o), +(548,27,o), +(547,31,cs), +(444,305,l), +(544,327,o), +(613,391,o), +(636,498,cs), +(665,634,o), +(589,700,o), +(449,700,cs), +(216,700,ls), +(203,700,o), +(192,691,o), +(189,677,cs), +(50,22,ls), +(47,9,o), +(54,0,o), +(67,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,640,l), +(431,640,ls), +(547,640,o), +(593,593,o), +(573,498,cs), +(553,403,o), +(487,356,o), +(371,356,cs), +(184,356,l) +); +} +); +width = 640; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = top; +pos = (430,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,0,ls), +(244,0,o), +(259,12,o), +(262,27,cs), +(303,218,l), +(344,218,l), +(389,27,ls), +(391,18,o), +(399,0,o), +(426,0,cs), +(631,0,ls), +(643,0,o), +(655,10,o), +(658,22,cs), +(659,27,o), +(658,29,o), +(657,33,cs), +(583,261,l), +(654,301,o), +(713,367,o), +(732,457,cs), +(764,608,o), +(670,700,o), +(478,700,cs), +(182,700,ls), +(167,700,o), +(152,688,o), +(149,673,cs), +(12,27,ls), +(9,12,o), +(18,0,o), +(33,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(365,514,l), +(438,514,ls), +(471,514,o), +(478,485,o), +(473,459,cs), +(467,432,o), +(447,408,o), +(416,408,cs), +(343,408,l) +); +} +); +width = 722; +} +); +unicode = 82; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 616; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 574; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 139; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Racute; +kernLeft = I; +kernRight = R; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = R; +}, +{ +pos = (320,0); +ref = acutecomb.case; +} +); +width = 640; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = R; +}, +{ +pos = (302,0); +ref = acutecomb.case; +} +); +width = 722; +} +); +unicode = 340; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 333; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Rcaron; +kernLeft = I; +kernRight = R; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = R; +}, +{ +pos = (237,0); +ref = caroncomb.case; +} +); +width = 640; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = R; +}, +{ +pos = (219,0); +ref = caroncomb.case; +} +); +width = 722; +} +); +unicode = 344; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 335; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Rcommaaccent; +kernLeft = I; +kernRight = R; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = R; +}, +{ +pos = (135,0); +ref = commaaccentcomb.case; +} +); +width = 640; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = R; +}, +{ +pos = (91,0); +ref = commaaccentcomb.case; +} +); +width = 722; +} +); +unicode = 342; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 335; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = S; +kernLeft = S; +kernRight = S; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (376,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(399,-10,o), +(501,52,o), +(527,173,cs), +(550,283,o), +(489,329,o), +(350,377,cs), +(216,423,o), +(162,450,o), +(179,530,cs), +(197,612,o), +(280,650,o), +(379,650,cs), +(467,650,o), +(527,601,o), +(521,535,cs), +(520,519,o), +(532,515,o), +(539,515,cs), +(563,515,ls), +(577,515,o), +(582,525,o), +(584,535,cs), +(598,612,o), +(537,710,o), +(379,710,cs), +(231,710,o), +(141,639,o), +(119,538,cs), +(96,428,o), +(147,379,o), +(280,333,cs), +(419,285,o), +(483,260,o), +(466,181,cs), +(449,101,o), +(374,50,o), +(244,50,cs), +(124,50,o), +(79,114,o), +(83,170,c), +(83,181,o), +(78,190,o), +(65,190,cs), +(41,190,ls), +(29,190,o), +(21,181,o), +(20,170,cs), +(9,75,o), +(82,-10,o), +(244,-10,cs) +); +} +); +width = 602; +}, +{ +anchors = ( +{ +name = bottom; +pos = (294,0); +}, +{ +name = top; +pos = (430,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(510,-10,o), +(632,66,o), +(663,212,cs), +(690,342,o), +(629,419,o), +(434,444,cs), +(346,455,o), +(328,468,o), +(332,487,cs), +(336,504,o), +(352,515,o), +(386,515,cs), +(414,515,o), +(429,503,o), +(435,497,cs), +(445,486,o), +(453,481,o), +(472,481,cs), +(672,481,ls), +(683,481,o), +(695,491,o), +(697,503,cs), +(713,590,o), +(587,710,o), +(407,710,cs), +(225,710,o), +(104,630,o), +(76,494,cs), +(47,361,o), +(131,281,o), +(285,260,cs), +(381,247,o), +(409,237,o), +(404,213,cs), +(400,195,o), +(368,185,o), +(323,185,cs), +(290,185,o), +(270,193,o), +(254,208,cs), +(242,219,o), +(235,225,o), +(214,225,cs), +(24,225,ls), +(12,225,o), +(0,215,o), +(-2,203,cs), +(-23,92,o), +(80,-10,o), +(301,-10,cs) +); +} +); +width = 698; +} +); +unicode = 83; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 355; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Sacute; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = S; +}, +{ +pos = (328,0); +ref = acutecomb.case; +} +); +width = 602; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = S; +}, +{ +pos = (302,0); +ref = acutecomb.case; +} +); +width = 698; +} +); +unicode = 346; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 303; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Scaron; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = S; +}, +{ +pos = (245,0); +ref = caroncomb.case; +} +); +width = 602; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = S; +}, +{ +pos = (219,0); +ref = caroncomb.case; +} +); +width = 698; +} +); +unicode = 352; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 303; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Scedilla; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(293,-221,o), +(333,-180,o), +(343,-132,cs), +(353,-84,o), +(329,-50,o), +(285,-50,cs), +(270,-50,o), +(254,-53,o), +(245,-58,c), +(279,-8,l), +(412,3,o), +(506,71,o), +(530,181,cs), +(553,291,o), +(490,329,o), +(350,377,cs), +(217,423,o), +(163,450,o), +(180,530,cs), +(197,612,o), +(274,650,o), +(373,650,cs), +(471,650,o), +(528,601,o), +(522,535,cs), +(521,519,o), +(533,515,o), +(540,515,cs), +(560,515,ls), +(574,515,o), +(583,525,o), +(585,535,cs), +(598,612,o), +(544,710,o), +(386,710,cs), +(238,710,o), +(138,631,o), +(117,530,cs), +(93,420,o), +(148,379,o), +(281,333,cs), +(420,285,o), +(483,260,o), +(467,181,cs), +(450,101,o), +(381,50,o), +(251,50,cs), +(121,50,o), +(79,114,o), +(83,170,cs), +(84,181,o), +(79,190,o), +(66,190,cs), +(46,190,ls), +(34,190,o), +(23,181,o), +(20,170,cs), +(4,85,o), +(66,2,o), +(222,-10,c), +(195,-53,ls), +(189,-63,o), +(178,-75,o), +(184,-83,cs), +(196,-100,ls), +(208,-116,o), +(225,-96,o), +(257,-96,cs), +(280,-96,o), +(297,-110,o), +(292,-134,cs), +(286,-159,o), +(263,-174,o), +(240,-174,cs), +(196,-174,o), +(196,-140,o), +(176,-156,cs), +(159,-169,ls), +(140,-184,o), +(174,-219,o), +(230,-220,cs) +); +} +); +width = 604; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(295,-220,o), +(342,-183,o), +(354,-130,cs), +(365,-77,o), +(343,-40,o), +(292,-40,cs), +(288,-40,o), +(269,-42,o), +(261,-45,c), +(286,-10,l), +(474,-8,o), +(633,81,o), +(664,226,cs), +(692,356,o), +(629,419,o), +(435,444,cs), +(347,455,o), +(329,468,o), +(333,487,cs), +(336,504,o), +(353,515,o), +(387,515,cs), +(415,515,o), +(430,503,o), +(436,497,cs), +(446,486,o), +(453,481,o), +(472,481,c), +(672,481,l), +(683,481,o), +(696,491,o), +(698,503,cs), +(714,590,o), +(628,710,o), +(428,710,cs), +(246,710,o), +(103,616,o), +(74,480,cs), +(46,347,o), +(132,281,o), +(285,260,cs), +(382,247,o), +(410,237,o), +(404,213,cs), +(401,195,o), +(369,185,o), +(324,185,cs), +(291,185,o), +(270,193,o), +(254,208,cs), +(243,219,o), +(236,225,o), +(215,225,c), +(25,225,l), +(13,225,o), +(1,215,o), +(-2,203,cs), +(-21,102,o), +(46,9,o), +(224,-7,c), +(194,-52,l), +(181,-71,o), +(182,-76,o), +(189,-85,c), +(206,-106,l), +(216,-119,o), +(242,-106,o), +(260,-106,cs), +(280,-106,o), +(285,-118,o), +(283,-130,cs), +(280,-142,o), +(268,-154,o), +(249,-154,cs), +(215,-154,o), +(214,-136,o), +(194,-151,c), +(169,-169,l), +(142,-189,o), +(182,-220,o), +(235,-220,cs) +); +} +); +width = 696; +} +); +metricLeft = S; +metricRight = S; +unicode = 350; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Scircumflex; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = S; +}, +{ +pos = (216,0); +ref = circumflexcomb.case; +} +); +width = 602; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = S; +}, +{ +pos = (182,0); +ref = circumflexcomb.case; +} +); +width = 698; +} +); +unicode = 348; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 303; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Scommaaccent; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = S; +}, +{ +pos = (116,0); +ref = commaaccentcomb.case; +} +); +width = 602; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = S; +}, +{ +pos = (75,0); +ref = commaaccentcomb.case; +} +); +width = 698; +} +); +unicode = 536; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-215"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 303; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Germandbls; +kernLeft = S; +kernRight = S; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (222,0); +} +); +background = { +shapes = ( +{ +pos = (-8,0); +ref = H; +} +); +}; +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(60,0,ls), +(72,0,o), +(84,8,o), +(87,22,cs), +(180,457,ls), +(210,597,o), +(288,651,o), +(399,651,cs), +(479,651,o), +(537,619,o), +(537,590,cs), +(537,576,o), +(524,563,o), +(508,550,cs), +(313,390,ls), +(297,377,o), +(295,372,o), +(292,361,cs), +(289,349,ls), +(286,335,o), +(295,327,o), +(307,327,cs), +(352,327,ls), +(451,327,o), +(500,291,o), +(500,222,cs), +(500,123,o), +(419,59,o), +(291,59,cs), +(177,59,ls), +(164,59,o), +(153,51,o), +(150,37,cs), +(147,22,ls), +(144,9,o), +(152,0,o), +(164,0,cs), +(289,0,ls), +(444,0,o), +(565,100,o), +(565,232,cs), +(565,330,o), +(490,386,o), +(355,386,c), +(345,345,l), +(559,522,ls), +(578,538,o), +(606,562,o), +(606,601,cs), +(606,660,o), +(515,710,o), +(409,710,cs), +(266,710,o), +(153,634,o), +(117,462,cs), +(24,22,ls), +(21,9,o), +(29,0,o), +(41,0,cs) +); +} +); +width = 624; +}, +{ +anchors = ( +{ +name = bottom; +pos = (283,0); +} +); +background = { +shapes = ( +{ +pos = (-60,0); +ref = H; +} +); +}; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,0,ls), +(214,0,o), +(229,13,o), +(232,27,c), +(323,459,ls), +(334,509,o), +(354,531,o), +(397,531,cs), +(418,531,o), +(433,525,o), +(433,514,cs), +(433,508,o), +(429,505,o), +(426,502,cs), +(358,436,ls), +(340,419,o), +(335,412,o), +(331,394,cs), +(308,294,ls), +(304,278,o), +(311,266,o), +(332,266,cs), +(372,266,ls), +(420,266,o), +(439,251,o), +(439,229,cs), +(439,195,o), +(411,178,o), +(358,178,cs), +(327,178,ls), +(306,178,o), +(291,166,o), +(287,150,cs), +(259,27,ls), +(255,9,o), +(269,0,o), +(287,0,c), +(380,0,ls), +(562,0,o), +(701,108,o), +(701,248,cs), +(701,328,o), +(643,372,o), +(542,372,c), +(501,285,l), +(698,464,ls), +(729,492,o), +(740,510,o), +(740,540,cs), +(740,622,o), +(625,710,o), +(452,710,cs), +(233,710,o), +(110,615,o), +(75,451,cs), +(-15,27,ls), +(-18,14,o), +(-10,0,o), +(7,0,cs) +); +} +); +width = 740; +} +); +unicode = 7838; +}, +{ +color = 6; +glyphname = T; +kernLeft = T; +kernRight = T; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (209,0); +}, +{ +name = center; +pos = (295,350); +}, +{ +name = top; +pos = (362,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(221,0,ls), +(235,0,o), +(245,9,o), +(248,22,c), +(380,640,l), +(577,640,l), +(591,640,o), +(601,649,o), +(604,662,c), +(607,677,ls), +(610,691,o), +(603,700,o), +(589,700,cs), +(131,700,ls), +(118,700,o), +(107,691,o), +(104,677,cs), +(101,662,ls), +(98,649,o), +(106,640,o), +(119,640,cs), +(317,640,l), +(185,22,l), +(182,9,o), +(190,0,o), +(203,0,cs) +); +} +); +width = 551; +}, +{ +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = center; +pos = (356,350); +}, +{ +name = top; +pos = (431,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(374,0,ls), +(389,0,o), +(403,12,o), +(406,27,cs), +(504,485,l), +(670,485,ls), +(685,485,o), +(699,497,o), +(702,512,cs), +(737,673,ls), +(740,688,o), +(730,700,o), +(715,700,cs), +(129,700,ls), +(114,700,o), +(100,688,o), +(97,673,cs), +(62,512,ls), +(59,497,o), +(69,485,o), +(84,485,cs), +(250,485,l), +(152,27,ls), +(149,12,o), +(159,0,o), +(174,0,cs) +); +} +); +width = 673; +} +); +unicode = 84; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 495; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 649; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 324; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 59; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 544; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Tbar; +kernLeft = T; +kernRight = T; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(227,0,ls), +(241,0,o), +(251,9,o), +(254,22,cs), +(324,350,l), +(441,350,l), +(455,350,o), +(466,359,o), +(469,372,cs), +(472,387,ls), +(475,401,o), +(468,410,o), +(454,410,cs), +(337,410,l), +(386,640,l), +(583,640,ls), +(597,640,o), +(607,649,o), +(610,662,cs), +(613,677,ls), +(616,691,o), +(609,700,o), +(595,700,cs), +(137,700,ls), +(124,700,o), +(113,691,o), +(110,677,cs), +(107,662,ls), +(104,649,o), +(112,640,o), +(125,640,cs), +(323,640,l), +(274,410,l), +(156,410,ls), +(143,410,o), +(132,401,o), +(129,387,c), +(126,372,l), +(123,359,o), +(130,350,o), +(143,350,c), +(261,350,l), +(191,22,ls), +(188,9,o), +(196,0,o), +(209,0,cs) +); +} +); +width = 564; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(377,0,ls), +(392,0,o), +(406,12,o), +(409,27,cs), +(458,258,l), +(548,258,ls), +(563,258,o), +(578,270,o), +(581,285,cs), +(596,356,ls), +(599,371,o), +(590,383,o), +(575,383,cs), +(485,383,l), +(507,485,l), +(673,485,ls), +(688,485,o), +(702,497,o), +(705,512,cs), +(740,673,ls), +(743,688,o), +(733,700,o), +(718,700,cs), +(132,700,ls), +(117,700,o), +(103,688,o), +(100,673,cs), +(65,512,ls), +(62,497,o), +(72,485,o), +(87,485,cs), +(253,485,l), +(231,383,l), +(141,383,ls), +(126,383,o), +(111,371,o), +(108,356,cs), +(93,285,ls), +(90,270,o), +(99,258,o), +(114,258,cs), +(204,258,l), +(155,27,ls), +(152,12,o), +(162,0,o), +(177,0,cs) +); +} +); +width = 680; +} +); +unicode = 358; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 380; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 301; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Tcaron; +kernLeft = T; +kernRight = T; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = T; +}, +{ +pos = (231,0); +ref = caroncomb.case; +} +); +width = 551; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = T; +}, +{ +pos = (220,0); +ref = caroncomb.case; +} +); +width = 673; +} +); +unicode = 356; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 302; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Tcommaaccent; +kernLeft = T; +kernRight = T; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = T; +}, +{ +pos = (79,0); +ref = commaaccentcomb.case; +} +); +width = 551; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = T; +}, +{ +pos = (63,0); +ref = commaaccentcomb.case; +} +); +width = 673; +} +); +unicode = 538; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 302; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = U; +kernLeft = U; +kernRight = U; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = ogonek; +pos = (363,50); +}, +{ +name = top; +pos = (420,700); +}, +{ +name = topright; +pos = (765,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(459,-10,o), +(557,77,o), +(598,271,cs), +(684,677,ls), +(687,691,o), +(680,700,o), +(667,700,cs), +(649,700,ls), +(635,700,o), +(624,691,o), +(621,677,cs), +(534,268,ls), +(502,118,o), +(415,50,o), +(286,50,cs), +(151,50,o), +(113,118,o), +(145,268,cs), +(232,677,ls), +(235,691,o), +(228,700,o), +(214,700,cs), +(196,700,ls), +(183,700,o), +(172,691,o), +(169,677,cs), +(83,271,l), +(42,77,o), +(114,-10,o), +(286,-10,cs) +); +} +); +width = 691; +}, +{ +anchors = ( +{ +name = bottom; +pos = (318,0); +}, +{ +name = ogonek; +pos = (439,115); +}, +{ +name = top; +pos = (454,700); +}, +{ +name = topright; +pos = (819,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(537,-10,o), +(649,75,o), +(689,264,cs), +(776,673,ls), +(779,688,o), +(769,700,o), +(754,700,cs), +(558,700,ls), +(543,700,o), +(529,688,o), +(526,673,cs), +(439,268,ls), +(428,218,o), +(398,191,o), +(349,191,cs), +(300,191,o), +(280,218,o), +(291,268,cs), +(378,673,ls), +(381,688,o), +(371,700,o), +(356,700,cs), +(160,700,ls), +(145,700,o), +(131,688,o), +(128,673,cs), +(41,264,ls), +(1,75,o), +(155,-10,o), +(327,-10,cs) +); +} +); +width = 745; +} +); +unicode = 85; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 267; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 333; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 535; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 580; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 84; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 129; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Uacute; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = U; +}, +{ +pos = (372,0); +ref = acutecomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = U; +}, +{ +pos = (326,0); +ref = acutecomb.case; +} +); +width = 745; +} +); +unicode = 218; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ubreve; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = U; +}, +{ +pos = (304,0); +ref = brevecomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = U; +}, +{ +pos = (280,0); +ref = brevecomb.case; +} +); +width = 745; +} +); +unicode = 364; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ucircumflex; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = U; +}, +{ +pos = (260,0); +ref = circumflexcomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = U; +}, +{ +pos = (206,0); +ref = circumflexcomb.case; +} +); +width = 745; +} +); +unicode = 219; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Udieresis; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = U; +}, +{ +pos = (271,0); +ref = dieresiscomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = U; +}, +{ +pos = (216,0); +ref = dieresiscomb.case; +} +); +width = 745; +} +); +unicode = 220; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ugrave; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = U; +}, +{ +pos = (281,0); +ref = gravecomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = U; +}, +{ +pos = (207,0); +ref = gravecomb.case; +} +); +width = 745; +} +); +unicode = 217; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Uhungarumlaut; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = U; +}, +{ +pos = (295,0); +ref = hungarumlautcomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = U; +}, +{ +pos = (230,0); +ref = hungarumlautcomb.case; +} +); +width = 745; +} +); +unicode = 368; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Umacron; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = U; +}, +{ +pos = (283,0); +ref = macroncomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = U; +}, +{ +pos = (-50,0); +ref = macroncomb.case; +} +); +width = 745; +} +); +unicode = 362; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Uogonek; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(318,-220,l), +(332,-220,o), +(338,-216,o), +(342,-203,c), +(347,-185,l), +(350,-172,o), +(343,-163,o), +(330,-163,c), +(312,-163,l), +(278,-163,o), +(245,-133,o), +(256,-82,cs), +(266,-36,o), +(301,-9,o), +(335,-7,c), +(458,1,o), +(565,76,o), +(598,271,c), +(684,677,l), +(687,691,o), +(680,700,o), +(667,700,c), +(649,700,l), +(635,700,o), +(624,691,o), +(621,677,c), +(534,268,l), +(502,118,o), +(415,50,o), +(286,50,cs), +(151,50,o), +(113,118,o), +(145,268,c), +(232,677,l), +(235,691,o), +(228,700,o), +(214,700,c), +(196,700,l), +(183,700,o), +(172,691,o), +(169,677,c), +(83,271,l), +(47,100,o), +(98,12,o), +(229,-6,c), +(213,-26,o), +(201,-50,o), +(196,-82,cs), +(181,-167,o), +(241,-220,o), +(312,-220,c) +); +} +); +width = 692; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(361,-220,l), +(376,-220,o), +(390,-208,o), +(393,-193,c), +(408,-125,l), +(411,-110,o), +(402,-98,o), +(387,-98,c), +(377,-98,l), +(338,-98,o), +(333,-70,o), +(337,-49,cs), +(342,-28,o), +(356,-11,o), +(395,-7,cs), +(561,10,o), +(652,96,o), +(689,264,c), +(776,673,l), +(779,688,o), +(769,700,o), +(754,700,c), +(558,700,l), +(543,700,o), +(529,688,o), +(526,673,c), +(439,268,l), +(429,218,o), +(398,191,o), +(349,191,cs), +(300,191,o), +(281,218,o), +(291,268,c), +(378,673,l), +(381,688,o), +(371,700,o), +(356,700,c), +(160,700,l), +(145,700,o), +(131,688,o), +(128,673,c), +(41,264,l), +(8,114,o), +(98,30,o), +(222,1,c), +(218,-11,o), +(214,-25,o), +(211,-39,cs), +(191,-134,o), +(236,-220,o), +(357,-220,c) +); +} +); +width = 744; +} +); +unicode = 370; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-187"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Uring; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = U; +}, +{ +pos = (333,0); +ref = ringcomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = U; +}, +{ +pos = (344,0); +ref = ringcomb.case; +} +); +width = 745; +} +); +unicode = 366; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Utilde; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = U; +}, +{ +pos = (278,0); +ref = tildecomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = U; +}, +{ +pos = (238,0); +ref = tildecomb.case; +} +); +width = 745; +} +); +unicode = 360; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = V; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (265,0); +}, +{ +name = top; +pos = (414,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(272,0,ls), +(290,0,o), +(301,8,o), +(311,24,c), +(679,668,ls), +(687,682,o), +(683,700,o), +(667,700,cs), +(637,700,ls), +(624,700,o), +(619,691,o), +(616,685,c), +(267,73,l), +(178,685,l), +(177,693,o), +(172,700,o), +(159,700,cs), +(137,700,l), +(124,700,o), +(115,692,o), +(117,676,c), +(212,24,ls), +(214,8,o), +(223,0,o), +(241,0,cs) +); +} +); +width = 639; +}, +{ +anchors = ( +{ +name = bottom; +pos = (308,0); +}, +{ +name = top; +pos = (457,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(416,0,ls), +(443,0,o), +(460,18,o), +(468,33,cs), +(791,671,ls), +(798,685,o), +(792,700,o), +(776,700,cs), +(580,700,ls), +(553,700,o), +(535,682,o), +(528,667,c), +(354,295,l), +(338,667,ls), +(337,682,o), +(327,700,o), +(300,700,cs), +(121,700,ls), +(106,700,o), +(93,689,o), +(94,671,cs), +(147,33,ls), +(147,18,o), +(158,0,o), +(185,0,cs) +); +} +); +width = 726; +} +); +unicode = 86; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 24; +} +); +}; +}, +{ +color = 6; +glyphname = W; +kernLeft = W; +kernRight = W; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (333,0); +}, +{ +name = top; +pos = (462,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(164,0,ls), +(180,0,o), +(192,8,o), +(200,24,cs), +(419,444,l), +(462,24,l), +(463,8,o), +(472,0,o), +(488,0,cs), +(509,0,ls), +(525,0,o), +(534,7,o), +(542,24,c), +(814,674,ls), +(820,688,o), +(819,700,o), +(800,700,cs), +(778,700,ls), +(765,700,o), +(757,695,o), +(753,685,cs), +(515,116,l), +(473,522,ls), +(472,534,o), +(465,545,o), +(447,545,cs), +(426,545,ls), +(408,545,o), +(396,534,o), +(390,522,cs), +(183,126,l), +(183,680,ls), +(183,690,o), +(176,700,o), +(163,700,cs), +(144,700,ls), +(131,700,o), +(123,691,o), +(123,680,cs), +(123,24,ls), +(123,7,o), +(130,0,o), +(146,0,cs) +); +} +); +width = 776; +}, +{ +anchors = ( +{ +name = bottom; +pos = (373,0); +}, +{ +name = top; +pos = (504,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,0,ls), +(274,0,o), +(289,19,o), +(293,27,cs), +(404,232,l), +(457,27,ls), +(459,19,o), +(466,0,o), +(493,0,cs), +(636,0,ls), +(663,0,o), +(684,20,o), +(690,38,c), +(907,675,ls), +(911,687,o), +(904,700,o), +(891,700,cs), +(700,700,ls), +(677,700,o), +(665,693,o), +(658,673,cs), +(564,392,l), +(549,516,ls), +(548,525,o), +(545,545,o), +(521,545,cs), +(419,545,ls), +(395,545,o), +(384,525,o), +(379,516,cs), +(312,391,l), +(338,673,ls), +(340,693,o), +(331,700,o), +(308,700,cs), +(127,700,ls), +(114,700,o), +(100,688,o), +(99,675,cs), +(66,38,l), +(64,20,o), +(77,0,o), +(104,0,cs) +); +} +); +width = 855; +} +); +unicode = 87; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 545; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 670; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 24; +} +); +}; +}, +{ +color = 10; +glyphname = Wacute; +kernLeft = W; +kernRight = W; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = W; +}, +{ +pos = (414,0); +ref = acutecomb.case; +} +); +width = 776; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = W; +}, +{ +pos = (376,0); +ref = acutecomb.case; +} +); +width = 855; +} +); +unicode = 7810; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 401; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Wcircumflex; +kernLeft = W; +kernRight = W; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = W; +}, +{ +pos = (302,0); +ref = circumflexcomb.case; +} +); +width = 776; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = W; +}, +{ +pos = (256,0); +ref = circumflexcomb.case; +} +); +width = 855; +} +); +unicode = 372; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 401; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Wdieresis; +kernLeft = W; +kernRight = W; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = W; +}, +{ +pos = (313,0); +ref = dieresiscomb.case; +} +); +width = 776; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = W; +}, +{ +pos = (266,0); +ref = dieresiscomb.case; +} +); +width = 855; +} +); +unicode = 7812; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 401; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Wgrave; +kernLeft = W; +kernRight = W; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = W; +}, +{ +pos = (323,0); +ref = gravecomb.case; +} +); +width = 776; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = W; +}, +{ +pos = (257,0); +ref = gravecomb.case; +} +); +width = 855; +} +); +unicode = 7808; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 401; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = X; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (250,0); +}, +{ +name = top; +pos = (399,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(8,0,ls), +(29,0,o), +(35,9,o), +(41,15,cs), +(310,302,l), +(457,15,ls), +(460,9,o), +(465,0,o), +(485,0,cs), +(501,0,ls), +(515,0,o), +(526,15,o), +(519,29,cs), +(356,347,l), +(649,667,ls), +(661,681,o), +(650,700,o), +(634,700,cs), +(617,700,ls), +(594,700,o), +(589,691,o), +(583,685,cs), +(327,405,l), +(185,685,ls), +(182,691,o), +(178,700,o), +(157,700,cs), +(141,700,ls), +(126,700,o), +(116,684,o), +(124,669,cs), +(280,360,l), +(-25,33,ls), +(-37,20,o), +(-26,0,o), +(-10,0,cs) +); +} +); +width = 610; +}, +{ +anchors = ( +{ +name = bottom; +pos = (314,0); +}, +{ +name = top; +pos = (463,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(199,0,l), +(225,0,o), +(240,18,o), +(244,23,c), +(353,144,l), +(414,23,l), +(416,18,o), +(425,0,o), +(451,0,c), +(647,0,l), +(670,0,o), +(680,18,o), +(673,33,c), +(525,331,l), +(806,667,l), +(817,679,o), +(813,700,o), +(794,700,c), +(577,700,l), +(551,700,o), +(536,682,o), +(530,675,c), +(419,543,l), +(354,675,l), +(351,682,o), +(343,700,o), +(317,700,c), +(120,700,l), +(98,700,o), +(87,682,o), +(94,667,c), +(246,361,l), +(-51,33,l), +(-63,20,o), +(-56,0,o), +(-39,0,c) +); +} +); +width = 738; +} +); +unicode = 88; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 28; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 580; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Y; +kernLeft = Y; +kernRight = Y; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (260,0); +}, +{ +name = top; +pos = (371,700); +}, +{ +name = topleft; +pos = (114,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(259,0,ls), +(273,0,o), +(283,9,o), +(286,22,cs), +(339,267,l), +(668,667,l), +(680,681,o), +(682,700,o), +(659,700,cs), +(628,700,ls), +(619,700,o), +(610,695,o), +(602,685,cs), +(315,335,l), +(176,685,ls), +(172,695,o), +(165,700,o), +(156,700,cs), +(139,700,l), +(121,700,o), +(110,681,o), +(116,667,c), +(275,267,l), +(224,22,ls), +(221,9,o), +(229,0,o), +(242,0,cs) +); +} +); +width = 629; +}, +{ +anchors = ( +{ +name = bottom; +pos = (300,0); +}, +{ +name = top; +pos = (430,700); +}, +{ +name = topleft; +pos = (114,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(390,0,ls), +(405,0,o), +(419,12,o), +(422,27,cs), +(464,224,l), +(784,669,ls), +(793,681,o), +(788,700,o), +(770,700,cs), +(572,700,ls), +(545,700,o), +(529,681,o), +(525,675,cs), +(382,474,l), +(325,675,ls), +(323,681,o), +(315,700,o), +(288,700,cs), +(110,700,ls), +(92,700,o), +(79,685,o), +(84,669,cs), +(214,224,l), +(172,27,ls), +(169,12,o), +(179,0,o), +(194,0,cs) +); +} +); +width = 709; +} +); +unicode = 89; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 310; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Yacute; +kernLeft = Y; +kernRight = Y; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = Y; +}, +{ +pos = (323,0); +ref = acutecomb.case; +} +); +width = 629; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (302,0); +ref = acutecomb.case; +} +); +width = 709; +} +); +unicode = 221; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 310; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ycircumflex; +kernLeft = Y; +kernRight = Y; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = Y; +}, +{ +pos = (211,0); +ref = circumflexcomb.case; +} +); +width = 629; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (182,0); +ref = circumflexcomb.case; +} +); +width = 709; +} +); +unicode = 374; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 310; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ydieresis; +kernLeft = Y; +kernRight = Y; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = Y; +}, +{ +pos = (222,0); +ref = dieresiscomb.case; +} +); +width = 629; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (192,0); +ref = dieresiscomb.case; +} +); +width = 709; +} +); +unicode = 376; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 310; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ygrave; +kernLeft = Y; +kernRight = Y; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = Y; +}, +{ +pos = (232,0); +ref = gravecomb.case; +} +); +width = 629; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (183,0); +ref = gravecomb.case; +} +); +width = 709; +} +); +unicode = 7922; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 310; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Z; +kernLeft = Z; +kernRight = Z; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (232,0); +}, +{ +name = center; +pos = (306,350); +}, +{ +name = top; +pos = (371,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(450,0,ls), +(464,0,o), +(474,9,o), +(477,22,cs), +(480,37,ls), +(483,51,o), +(476,60,o), +(462,60,cs), +(74,60,l), +(581,621,ls), +(589,630,o), +(599,640,o), +(602,657,cs), +(606,677,ls), +(609,691,o), +(602,700,o), +(588,700,cs), +(157,700,ls), +(144,700,o), +(133,691,o), +(130,677,cs), +(127,662,ls), +(124,649,o), +(132,640,o), +(145,640,cs), +(515,640,l), +(9,80,ls), +(3,74,o), +(-8,63,o), +(-13,43,cs), +(-18,23,ls), +(-21,9,o), +(-13,0,o), +(0,0,cs) +); +} +); +width = 574; +}, +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = center; +pos = (365,350); +}, +{ +name = top; +pos = (440,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(570,0,ls), +(585,0,o), +(599,12,o), +(602,27,cs), +(634,178,l), +(638,193,o), +(628,205,o), +(613,205,cs), +(359,205,l), +(676,498,ls), +(685,507,o), +(693,517,o), +(696,531,cs), +(727,673,ls), +(730,688,o), +(720,700,o), +(705,700,cs), +(157,700,ls), +(142,700,o), +(128,688,o), +(125,673,cs), +(93,524,ls), +(90,509,o), +(99,497,o), +(114,497,cs), +(362,497,l), +(30,206,ls), +(24,201,o), +(12,190,o), +(8,171,cs), +(-23,27,ls), +(-26,12,o), +(-16,0,o), +(-1,0,cs) +); +} +); +width = 692; +} +); +unicode = 90; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 51; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 649; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 189; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 815; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 732; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-431"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 74; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 541; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Zacute; +kernLeft = Z; +kernRight = Z; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = Z; +}, +{ +pos = (323,0); +ref = acutecomb.case; +} +); +width = 574; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (312,0); +ref = acutecomb.case; +} +); +width = 692; +} +); +unicode = 377; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 312; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Zcaron; +kernLeft = Z; +kernRight = Z; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = Z; +}, +{ +pos = (240,0); +ref = caroncomb.case; +} +); +width = 574; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (229,0); +ref = caroncomb.case; +} +); +width = 692; +} +); +unicode = 381; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 312; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Zdotaccent; +kernLeft = Z; +kernRight = Z; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = Z; +}, +{ +pos = (309,0); +ref = dotaccentcomb.case; +} +); +width = 574; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (329,0); +ref = dotaccentcomb.case; +} +); +width = 692; +} +); +unicode = 379; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 312; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = a; +kernLeft = a; +kernRight = a; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (230,0); +}, +{ +name = ogonek; +pos = (436,58); +}, +{ +name = top; +pos = (318,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(295,-10,o), +(336,24,o), +(378,69,c), +(368,22,ls), +(365,9,o), +(373,0,o), +(386,0,cs), +(403,0,ls), +(416,0,o), +(426,9,o), +(429,22,cs), +(530,498,ls), +(533,511,o), +(525,520,o), +(512,520,cs), +(495,520,ls), +(482,520,o), +(472,511,o), +(469,498,cs), +(459,451,l), +(436,495,o), +(398,530,o), +(310,530,cs), +(149,530,o), +(83,404,o), +(53,288,cs), +(48,268,o), +(44,252,o), +(41,232,cs), +(23,115,o), +(52,-10,o), +(207,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(98,48,o), +(88,136,o), +(103,232,cs), +(106,252,o), +(109,268,o), +(115,288,cs), +(143,383,o), +(201,472,o), +(310,472,cs), +(421,472,o), +(443,382,o), +(428,302,cs), +(424,282,o), +(416,244,o), +(411,224,cs), +(391,142,o), +(321,48,o), +(207,48,cs) +); +} +); +width = 569; +}, +{ +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = ogonek; +pos = (577,122); +}, +{ +name = top; +pos = (376,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(257,-10,o), +(299,14,o), +(339,50,c), +(334,27,ls), +(331,12,o), +(341,0,o), +(356,0,cs), +(526,0,ls), +(541,0,o), +(555,12,o), +(558,27,cs), +(657,493,ls), +(660,508,o), +(650,520,o), +(635,520,cs), +(466,520,ls), +(451,520,o), +(437,508,o), +(434,493,cs), +(431,480,l), +(405,509,o), +(369,530,o), +(293,530,cs), +(167,530,o), +(72,457,o), +(32,300,cs), +(25,270,o), +(21,251,o), +(15,221,c), +(-13,54,o), +(72,-10,o), +(188,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,169,o), +(258,191,o), +(262,227,cs), +(264,247,o), +(270,273,o), +(276,293,cs), +(287,329,o), +(301,351,o), +(338,351,cs), +(372,351,o), +(382,333,o), +(377,301,cs), +(373,271,o), +(370,257,o), +(362,227,cs), +(352,191,o), +(336,169,o), +(299,169,cs) +); +} +); +width = 660; +} +); +unicode = 97; +}, +{ +color = 10; +glyphname = aacute; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = a; +}, +{ +pos = (265,0); +ref = acutecomb; +} +); +width = 569; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = a; +}, +{ +pos = (267,0); +ref = acutecomb; +} +); +width = 660; +} +); +unicode = 225; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = abreve; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = a; +}, +{ +pos = (214,0); +ref = brevecomb; +} +); +width = 569; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = a; +}, +{ +pos = (218,0); +ref = brevecomb; +} +); +width = 660; +} +); +unicode = 259; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = acaron; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = a; +}, +{ +pos = (193,0); +ref = caroncomb; +} +); +width = 569; +}, +{ +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = a; +}, +{ +pos = (180,0); +ref = caroncomb; +} +); +width = 660; +} +); +unicode = 462; +}, +{ +color = 10; +glyphname = acircumflex; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = a; +}, +{ +pos = (163,0); +ref = circumflexcomb; +} +); +width = 569; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = a; +}, +{ +pos = (148,0); +ref = circumflexcomb; +} +); +width = 660; +} +); +unicode = 226; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = adieresis; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = a; +}, +{ +pos = (195,0); +ref = dieresiscomb; +} +); +width = 569; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = a; +}, +{ +pos = (162,0); +ref = dieresiscomb; +} +); +width = 660; +} +); +unicode = 228; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = agrave; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = a; +}, +{ +pos = (188,0); +ref = gravecomb; +} +); +width = 569; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = a; +}, +{ +pos = (145,0); +ref = gravecomb; +} +); +width = 660; +} +); +unicode = 224; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = amacron; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = a; +}, +{ +pos = (191,0); +ref = macroncomb; +} +); +width = 569; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = a; +}, +{ +pos = (177,0); +ref = macroncomb; +} +); +width = 660; +} +); +unicode = 257; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = aogonek; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(364,-220,ls), +(377,-220,o), +(388,-211,o), +(391,-198,cs), +(394,-185,ls), +(397,-172,o), +(390,-163,o), +(377,-163,cs), +(372,-163,ls), +(345,-163,o), +(328,-149,o), +(328,-117,cs), +(328,-61,o), +(367,-25,o), +(409,-8,cs), +(414,-6,ls), +(423,-2,o), +(427,9,o), +(429,18,cs), +(530,498,ls), +(533,511,o), +(525,520,o), +(512,520,cs), +(495,520,ls), +(482,520,o), +(472,511,o), +(469,498,cs), +(459,451,l), +(436,495,o), +(398,530,o), +(310,530,cs), +(149,530,o), +(83,404,o), +(53,288,cs), +(48,268,o), +(44,252,o), +(41,232,cs), +(24,121,o), +(47,-10,o), +(207,-10,cs), +(295,-10,o), +(336,24,o), +(378,69,c), +(368,19,ls), +(365,4,o), +(376,0,o), +(384,0,c), +(400,0,l), +(408,55,l), +(305,7,o), +(267,-58,o), +(267,-123,cs), +(267,-180,o), +(304,-220,o), +(355,-220,cs) +); +}, +{ +closed = 1; +nodes = ( +(93,48,o), +(91,144,o), +(103,232,cs), +(106,252,o), +(109,268,o), +(115,288,cs), +(143,383,o), +(201,472,o), +(310,472,cs), +(425,472,o), +(443,371,o), +(428,302,cs), +(424,282,o), +(416,244,o), +(411,224,cs), +(391,142,o), +(321,48,o), +(207,48,cs) +); +} +); +width = 568; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(489,-220,ls), +(504,-220,o), +(519,-208,o), +(522,-193,cs), +(537,-125,ls), +(540,-110,o), +(530,-98,o), +(515,-98,cs), +(505,-98,ls), +(474,-98,o), +(464,-80,o), +(464,-62,cs), +(464,-31,o), +(487,0,o), +(520,0,cs), +(526,0,ls), +(541,0,o), +(555,12,o), +(558,27,cs), +(657,493,ls), +(660,508,o), +(650,520,o), +(635,520,cs), +(466,520,ls), +(451,520,o), +(437,508,o), +(434,493,cs), +(431,480,l), +(405,509,o), +(369,530,o), +(293,530,cs), +(167,530,o), +(72,457,o), +(32,300,cs), +(25,270,o), +(21,251,o), +(15,221,cs), +(-13,54,o), +(72,-10,o), +(188,-10,cs), +(257,-10,o), +(299,14,o), +(339,50,c), +(335,33,ls), +(330,10,o), +(340,0,o), +(360,0,cs), +(382,0,l), +(377,28,l), +(356,6,o), +(335,-59,o), +(335,-97,cs), +(335,-168,o), +(375,-220,o), +(475,-220,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,169,o), +(258,191,o), +(262,227,cs), +(264,247,o), +(270,273,o), +(276,293,cs), +(287,329,o), +(301,351,o), +(338,351,cs), +(372,351,o), +(382,333,o), +(377,301,cs), +(373,271,o), +(370,257,o), +(362,227,cs), +(352,191,o), +(336,169,o), +(299,169,cs) +); +} +); +width = 661; +} +); +metricLeft = a; +unicode = 261; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 22; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 472; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = aring; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = a; +}, +{ +pos = (237,0); +ref = ringcomb; +} +); +width = 569; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = a; +}, +{ +pos = (273,0); +ref = ringcomb; +} +); +width = 660; +} +); +unicode = 229; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 570; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = atilde; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = a; +}, +{ +pos = (186,0); +ref = tildecomb; +} +); +width = 569; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = a; +}, +{ +pos = (170,0); +ref = tildecomb; +} +); +width = 660; +} +); +unicode = 227; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 575; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = ae; +kernLeft = a; +kernRight = e; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (386,0); +}, +{ +name = top; +pos = (504,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(269,-10,o), +(345,26,o), +(399,100,c), +(417,36,o), +(465,-10,o), +(563,-10,cs), +(698,-10,o), +(784,81,o), +(791,111,cs), +(793,123,o), +(786,131,o), +(774,131,c), +(762,131,l), +(747,131,o), +(743,129,o), +(728,113,cs), +(686,67,o), +(627,48,o), +(575,48,cs), +(506,48,o), +(436,95,o), +(460,225,c), +(462,235,l), +(808,235,l), +(821,235,o), +(833,244,o), +(836,257,c), +(839,272,l), +(860,373,o), +(865,530,o), +(679,530,cs), +(595,530,o), +(531,494,o), +(486,442,c), +(473,491,o), +(428,530,o), +(327,530,cs), +(194,530,o), +(122,442,o), +(114,405,cs), +(112,393,o), +(120,383,o), +(132,383,c), +(146,383,l), +(158,383,o), +(166,388,o), +(174,404,cs), +(192,437,o), +(241,472,o), +(315,472,cs), +(409,472,o), +(441,429,o), +(426,358,c), +(420,326,l), +(257,304,l), +(136,288,o), +(43,229,o), +(24,139,cs), +(6,55,o), +(65,-10,o), +(171,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(131,48,o), +(72,78,o), +(86,144,cs), +(97,198,o), +(162,235,o), +(274,250,c), +(407,268,l), +(400,234,l), +(373,108,o), +(285,48,o), +(193,48,cs) +); +}, +{ +closed = 1; +nodes = ( +(475,295,l), +(505,416,o), +(591,472,o), +(667,472,cs), +(772,472,o), +(804,396,o), +(783,295,c), +(782,291,l), +(474,291,l) +); +} +); +width = 881; +}, +{ +anchors = ( +{ +name = bottom; +pos = (413,0); +}, +{ +name = top; +pos = (526,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,-10,o), +(318,-1,o), +(390,51,c), +(430,11,o), +(493,-10,o), +(574,-10,cs), +(759,-10,o), +(867,94,o), +(878,145,cs), +(881,158,o), +(874,167,o), +(861,167,cs), +(672,167,ls), +(656,167,o), +(650,165,o), +(636,153,cs), +(622,142,o), +(615,135,o), +(603,135,cs), +(574,135,o), +(569,156,o), +(577,196,cs), +(578,201,l), +(876,201,ls), +(891,201,o), +(906,213,o), +(909,228,cs), +(915,258,ls), +(944,405,o), +(884,530,o), +(688,530,cs), +(629,530,o), +(575,516,o), +(527,493,c), +(499,517,o), +(452,530,o), +(378,530,cs), +(191,530,o), +(94,431,o), +(83,380,cs), +(80,367,o), +(87,358,o), +(100,358,cs), +(267,358,l), +(268,358,o), +(269,358,o), +(270,358,cs), +(302,358,o), +(312,390,o), +(346,390,cs), +(373,390,o), +(373,376,o), +(366,342,c), +(365,339,l), +(256,322,l), +(118,299,o), +(20,246,o), +(0,149,cs), +(-19,59,o), +(44,-10,o), +(180,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,138,o), +(225,151,o), +(228,166,cs), +(231,180,o), +(244,195,o), +(280,203,cs), +(342,216,l), +(342,215,l), +(331,162,o), +(300,138,o), +(261,138,cs) +); +}, +{ +closed = 1; +nodes = ( +(605,330,ls), +(605,372,o), +(632,390,o), +(658,390,cs), +(683,390,o), +(685,372,o), +(685,330,cs), +(685,326,l), +(605,326,l) +); +} +); +width = 935; +} +); +unicode = 230; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 530; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 473; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-379"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 453; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = aeacute; +kernLeft = a; +kernRight = e; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = ae; +}, +{ +pos = (451,0); +ref = acutecomb; +} +); +width = 881; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = ae; +}, +{ +pos = (417,0); +ref = acutecomb; +} +); +width = 935; +} +); +unicode = 509; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 453; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = b; +kernLeft = h; +kernRight = b; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = top; +pos = (394,750); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-10,o), +(481,110,o), +(510,227,cs), +(515,247,o), +(521,273,o), +(524,293,cs), +(542,410,o), +(507,530,o), +(351,530,cs), +(268,530,o), +(218,495,o), +(176,451,c), +(226,688,ls), +(229,701,o), +(222,710,o), +(209,710,cs), +(192,710,ls), +(179,710,o), +(168,701,o), +(165,688,cs), +(24,22,ls), +(21,9,o), +(28,0,o), +(41,0,cs), +(58,0,ls), +(71,0,o), +(82,9,o), +(85,22,cs), +(95,69,l), +(118,24,o), +(166,-10,o), +(249,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(135,48,o), +(113,142,o), +(128,224,cs), +(131,244,o), +(139,282,o), +(144,302,cs), +(163,382,o), +(240,472,o), +(351,472,cs), +(468,472,o), +(477,384,o), +(462,288,cs), +(459,268,o), +(456,252,o), +(450,232,cs), +(422,137,o), +(363,48,o), +(249,48,cs) +); +} +); +width = 580; +}, +{ +anchors = ( +{ +name = bottom; +pos = (275,0); +}, +{ +name = top; +pos = (434,750); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(478,-10,o), +(571,54,o), +(613,221,cs), +(621,251,o), +(625,270,o), +(630,300,cs), +(658,457,o), +(573,530,o), +(457,530,cs), +(401,530,o), +(362,512,o), +(324,483,c), +(367,683,ls), +(370,698,o), +(360,710,o), +(345,710,cs), +(160,710,ls), +(145,710,o), +(131,698,o), +(128,683,cs), +(-12,27,ls), +(-15,12,o), +(-5,0,o), +(10,0,cs), +(180,0,ls), +(195,0,o), +(209,12,o), +(212,27,cs), +(217,50,l), +(241,14,o), +(293,-10,o), +(362,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(270,169,o), +(264,191,o), +(270,227,cs), +(274,257,o), +(277,271,o), +(285,301,cs), +(294,333,o), +(312,351,o), +(346,351,cs), +(383,351,o), +(387,329,o), +(384,293,cs), +(382,273,o), +(376,247,o), +(370,227,cs), +(358,191,o), +(344,169,o), +(307,169,cs) +); +} +); +width = 660; +} +); +unicode = 98; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 530; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 288; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 232; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 451; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 69; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 121; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 79; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = c; +kernLeft = o; +kernRight = c; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (213,0); +}, +{ +name = top; +pos = (322,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(359,-10,o), +(432,77,o), +(453,149,cs), +(457,162,o), +(450,171,o), +(438,171,cs), +(420,171,ls), +(406,171,o), +(402,167,o), +(393,150,cs), +(354,74,o), +(288,48,o), +(218,48,cs), +(127,48,o), +(80,100,o), +(102,225,cs), +(106,245,o), +(112,275,o), +(117,295,cs), +(148,420,o), +(230,472,o), +(321,472,cs), +(396,472,o), +(443,441,o), +(440,365,cs), +(439,349,o), +(446,344,o), +(460,344,cs), +(479,344,ls), +(491,344,o), +(499,353,o), +(500,366,cs), +(508,438,o), +(467,530,o), +(321,530,cs), +(180,530,o), +(92,443,o), +(57,300,cs), +(52,280,o), +(44,240,o), +(40,220,cs), +(14,77,o), +(87,-10,o), +(218,-10,cs) +); +} +); +width = 535; +}, +{ +anchors = ( +{ +name = bottom; +pos = (256,0); +}, +{ +name = top; +pos = (351,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(484,-10,o), +(565,141,o), +(578,184,cs), +(582,199,o), +(571,211,o), +(556,211,cs), +(361,211,ls), +(346,211,o), +(336,203,o), +(328,191,cs), +(316,172,o), +(309,161,o), +(285,161,cs), +(254,161,o), +(251,181,o), +(258,224,cs), +(261,243,o), +(266,266,o), +(273,295,cs), +(283,335,o), +(296,359,o), +(327,359,cs), +(347,359,o), +(352,348,o), +(357,329,cs), +(361,317,o), +(367,309,o), +(382,309,cs), +(577,309,ls), +(592,309,o), +(608,321,o), +(610,336,cs), +(618,389,o), +(549,530,o), +(348,530,cs), +(185,530,o), +(68,448,o), +(29,300,cs), +(23,277,o), +(16,240,o), +(12,219,cs), +(-11,71,o), +(110,-10,o), +(253,-10,cs) +); +} +); +width = 621; +} +); +unicode = 99; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 295; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 225; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 445; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 484; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 137; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 270; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = cacute; +kernLeft = o; +kernRight = c; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = c; +}, +{ +pos = (269,0); +ref = acutecomb; +} +); +width = 535; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = c; +}, +{ +pos = (242,0); +ref = acutecomb; +} +); +width = 621; +} +); +unicode = 263; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 270; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ccaron; +kernLeft = o; +kernRight = c; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = c; +}, +{ +pos = (197,0); +ref = caroncomb; +} +); +width = 535; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = c; +}, +{ +pos = (155,0); +ref = caroncomb; +} +); +width = 621; +} +); +unicode = 269; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 270; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = ccedilla; +kernLeft = o; +kernRight = c; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(239,-220,o), +(272,-183,o), +(282,-135,cs), +(293,-87,o), +(264,-50,o), +(225,-50,cs), +(210,-50,o), +(194,-52,o), +(185,-57,c), +(219,-10,l), +(359,-9,o), +(432,77,o), +(453,149,cs), +(457,162,o), +(450,171,o), +(438,171,c), +(420,171,l), +(406,171,o), +(402,167,o), +(393,150,cs), +(354,74,o), +(288,48,o), +(218,48,cs), +(127,48,o), +(80,100,o), +(102,225,cs), +(106,245,o), +(112,275,o), +(117,295,cs), +(148,420,o), +(230,472,o), +(321,472,cs), +(396,472,o), +(443,441,o), +(440,365,cs), +(439,349,o), +(446,344,o), +(460,344,c), +(479,344,l), +(491,344,o), +(499,353,o), +(500,366,cs), +(508,438,o), +(467,530,o), +(321,530,cs), +(180,530,o), +(92,443,o), +(57,300,cs), +(52,280,o), +(44,240,o), +(40,220,cs), +(17,97,o), +(68,15,o), +(166,-5,c), +(135,-53,l), +(129,-63,o), +(119,-75,o), +(124,-83,c), +(136,-100,l), +(148,-116,o), +(165,-96,o), +(197,-96,cs), +(220,-96,o), +(237,-110,o), +(232,-134,cs), +(227,-159,o), +(204,-174,o), +(181,-174,cs), +(134,-174,o), +(133,-142,o), +(116,-156,c), +(100,-169,l), +(80,-184,o), +(124,-220,o), +(181,-220,cs) +); +} +); +width = 535; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,-220,o), +(312,-188,o), +(323,-135,cs), +(334,-82,o), +(313,-40,o), +(262,-40,cs), +(258,-40,o), +(240,-42,o), +(231,-45,c), +(256,-10,l), +(485,-8,o), +(565,141,o), +(578,184,cs), +(582,199,o), +(571,211,o), +(556,211,c), +(361,211,l), +(346,211,o), +(336,203,o), +(328,191,cs), +(316,172,o), +(309,161,o), +(285,161,cs), +(254,161,o), +(251,181,o), +(258,224,cs), +(261,243,o), +(266,266,o), +(273,295,cs), +(283,335,o), +(296,359,o), +(327,359,cs), +(347,359,o), +(352,348,o), +(357,329,cs), +(361,317,o), +(367,309,o), +(382,309,c), +(577,309,l), +(592,309,o), +(608,321,o), +(610,336,cs), +(618,389,o), +(549,530,o), +(348,530,cs), +(185,530,o), +(68,448,o), +(29,300,cs), +(23,277,o), +(16,240,o), +(12,219,cs), +(-8,94,o), +(75,18,o), +(186,-3,c), +(161,-42,l), +(148,-61,o), +(148,-69,o), +(155,-78,c), +(176,-106,l), +(186,-119,o), +(212,-106,o), +(230,-106,cs), +(250,-106,o), +(255,-118,o), +(253,-130,cs), +(250,-142,o), +(239,-154,o), +(220,-154,cs), +(186,-154,o), +(185,-136,o), +(164,-151,c), +(140,-169,l), +(112,-189,o), +(163,-220,o), +(216,-220,cs) +); +} +); +width = 621; +} +); +unicode = 231; +}, +{ +color = 10; +glyphname = ccircumflex; +kernLeft = o; +kernRight = c; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = c; +}, +{ +pos = (167,0); +ref = circumflexcomb; +} +); +width = 535; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = c; +}, +{ +pos = (123,0); +ref = circumflexcomb; +} +); +width = 621; +} +); +unicode = 265; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 270; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = cdotaccent; +kernLeft = o; +kernRight = c; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = c; +}, +{ +pos = (265,0); +ref = dotaccentcomb; +} +); +width = 535; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = c; +}, +{ +pos = (252,0); +ref = dotaccentcomb; +} +); +width = 621; +} +); +unicode = 267; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 270; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = d; +kernLeft = d; +kernRight = d; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = center; +pos = (508,615); +}, +{ +name = top; +pos = (394,750); +}, +{ +name = topright; +pos = (641,710); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(299,-10,o), +(345,24,o), +(387,69,c), +(377,22,ls), +(374,9,o), +(382,0,o), +(395,0,cs), +(412,0,ls), +(425,0,o), +(435,9,o), +(438,22,cs), +(580,688,ls), +(583,701,o), +(575,710,o), +(562,710,cs), +(545,710,ls), +(532,710,o), +(522,701,o), +(519,688,cs), +(468,451,l), +(445,495,o), +(402,530,o), +(314,530,cs), +(153,530,o), +(82,404,o), +(52,288,cs), +(47,268,o), +(43,252,o), +(40,232,cs), +(22,115,o), +(56,-10,o), +(211,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(102,48,o), +(87,136,o), +(102,232,cs), +(105,252,o), +(108,268,o), +(114,288,cs), +(142,383,o), +(205,472,o), +(314,472,cs), +(425,472,o), +(452,382,o), +(437,302,cs), +(433,282,o), +(425,244,o), +(420,224,cs), +(400,142,o), +(325,48,o), +(211,48,cs) +); +} +); +width = 579; +}, +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = center; +pos = (546,612); +}, +{ +name = top; +pos = (435,750); +}, +{ +name = topright; +pos = (762,710); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(257,-10,o), +(299,14,o), +(339,50,c), +(334,27,ls), +(331,12,o), +(341,0,o), +(356,0,cs), +(526,0,ls), +(541,0,o), +(555,12,o), +(558,27,cs), +(698,683,ls), +(701,698,o), +(691,710,o), +(676,710,cs), +(491,710,ls), +(476,710,o), +(462,698,o), +(459,683,cs), +(417,483,l), +(391,512,o), +(339,530,o), +(283,530,cs), +(167,530,o), +(72,457,o), +(32,300,cs), +(25,270,o), +(21,251,o), +(15,221,cs), +(-13,54,o), +(72,-10,o), +(188,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,169,o), +(258,191,o), +(262,227,cs), +(264,247,o), +(270,273,o), +(276,293,cs), +(287,329,o), +(301,351,o), +(338,351,cs), +(372,351,o), +(382,333,o), +(377,301,cs), +(373,271,o), +(370,257,o), +(362,227,cs), +(352,191,o), +(336,169,o), +(299,169,cs) +); +} +); +width = 661; +} +); +unicode = 100; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 650; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 530; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 438; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 499; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = eth; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(365,-10,o), +(463,92,o), +(492,229,cs), +(492,230,o), +(492,231,o), +(493,232,cs), +(527,402,o), +(513,501,o), +(471,575,c), +(539,599,l), +(556,605,o), +(563,609,o), +(566,624,c), +(570,643,l), +(572,655,o), +(566,661,o), +(555,661,cs), +(551,661,o), +(546,660,o), +(541,658,c), +(440,622,l), +(424,644,o), +(406,665,o), +(385,687,cs), +(377,695,o), +(368,700,o), +(352,700,c), +(332,700,l), +(320,700,o), +(310,692,o), +(308,680,cs), +(307,675,o), +(308,669,o), +(320,658,cs), +(340,638,o), +(359,618,o), +(375,599,c), +(307,575,l), +(290,569,o), +(283,565,o), +(280,550,c), +(276,531,l), +(274,519,o), +(280,513,o), +(291,513,cs), +(295,513,o), +(299,514,o), +(305,516,c), +(409,553,l), +(429,518,o), +(442,479,o), +(448,431,c), +(419,456,o), +(377,470,o), +(324,470,cs), +(180,470,o), +(82,368,o), +(54,231,c), +(24,94,o), +(78,-10,o), +(222,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(131,48,o), +(95,127,o), +(114,226,cs), +(114,227,o), +(115,229,o), +(116,232,cs), +(137,332,o), +(207,412,o), +(312,412,cs), +(417,412,o), +(453,332,o), +(432,232,cs), +(431,230,o), +(431,229,o), +(431,228,cs), +(408,128,o), +(338,48,o), +(234,48,cs) +); +} +); +width = 550; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(438,-10,o), +(563,68,o), +(605,225,cs), +(610,245,o), +(615,268,o), +(618,288,cs), +(640,424,o), +(623,524,o), +(577,601,c), +(621,617,l), +(639,623,o), +(647,632,o), +(650,650,c), +(656,678,l), +(659,690,o), +(652,699,o), +(640,699,cs), +(638,699,o), +(634,698,o), +(628,696,c), +(531,661,l), +(523,670,o), +(512,678,o), +(503,687,cs), +(495,694,o), +(480,700,o), +(453,700,c), +(265,700,l), +(253,700,o), +(241,690,o), +(238,678,cs), +(237,673,o), +(240,665,o), +(247,659,cs), +(275,637,o), +(301,613,o), +(322,586,c), +(242,557,l), +(224,551,o), +(216,542,o), +(213,524,c), +(207,496,l), +(204,484,o), +(211,475,o), +(223,475,cs), +(225,475,o), +(229,476,o), +(235,478,c), +(363,524,l), +(371,506,o), +(377,488,o), +(381,470,c), +(376,470,o), +(372,470,o), +(367,470,c), +(204,470,o), +(61,392,o), +(26,230,cs), +(-8,68,o), +(91,-10,o), +(265,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,150,o), +(260,171,o), +(266,204,cs), +(269,224,o), +(271,236,o), +(277,256,cs), +(285,288,o), +(296,310,o), +(333,310,cs), +(370,310,o), +(371,288,o), +(367,256,cs), +(363,236,o), +(361,223,o), +(355,203,cs), +(348,171,o), +(333,150,o), +(299,150,cs) +); +} +); +width = 638; +} +); +unicode = 240; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 512; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 214; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 484; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = dcaron; +kernLeft = d; +kernRight = dcaron; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = d; +}, +{ +pos = (419,10); +ref = caroncomb.alt; +} +); +width = 579; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +alignment = -1; +ref = d; +}, +{ +pos = (457,10); +ref = caroncomb.alt; +} +); +width = 831; +} +); +metricLeft = d; +unicode = 271; +}, +{ +color = 6; +glyphname = dcroat; +kernLeft = d; +kernRight = d; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(287,-10,o), +(347,24,o), +(389,69,c), +(379,22,ls), +(376,9,o), +(384,0,o), +(397,0,cs), +(414,0,ls), +(427,0,o), +(437,9,o), +(440,22,cs), +(557,571,l), +(615,571,ls), +(628,571,o), +(639,580,o), +(642,593,cs), +(645,607,ls), +(647,620,o), +(640,629,o), +(627,629,cs), +(569,629,l), +(582,688,ls), +(585,701,o), +(577,710,o), +(564,710,cs), +(547,710,ls), +(534,710,o), +(524,701,o), +(521,688,cs), +(508,629,l), +(450,629,ls), +(437,629,o), +(426,620,o), +(424,607,cs), +(421,593,ls), +(418,580,o), +(425,571,o), +(438,571,cs), +(496,571,l), +(470,451,l), +(447,495,o), +(402,530,o), +(319,530,cs), +(143,530,o), +(77,385,o), +(54,288,cs), +(48,268,o), +(45,252,o), +(42,232,cs), +(24,135,o), +(28,-10,o), +(204,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(106,48,o), +(85,136,o), +(103,232,cs), +(106,252,o), +(109,268,o), +(115,288,cs), +(138,384,o), +(196,472,o), +(313,472,cs), +(424,472,o), +(454,382,o), +(439,302,cs), +(435,282,o), +(427,244,o), +(422,224,cs), +(402,142,o), +(337,48,o), +(223,48,cs) +); +} +); +width = 580; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(246,-10,o), +(301,18,o), +(340,57,c), +(333,27,ls), +(330,12,o), +(340,0,o), +(355,0,cs), +(525,0,ls), +(540,0,o), +(554,12,o), +(557,27,cs), +(668,548,l), +(698,548,ls), +(713,548,o), +(728,560,o), +(731,575,cs), +(742,626,ls), +(745,641,o), +(735,653,o), +(720,653,cs), +(690,653,l), +(697,683,ls), +(700,698,o), +(690,710,o), +(675,710,cs), +(490,710,ls), +(475,710,o), +(461,698,o), +(458,683,cs), +(451,653,l), +(421,653,ls), +(406,653,o), +(392,641,o), +(389,626,cs), +(378,575,ls), +(375,560,o), +(384,548,o), +(399,548,cs), +(429,548,l), +(415,483,l), +(389,512,o), +(348,530,o), +(292,530,cs), +(176,530,o), +(71,457,o), +(31,300,cs), +(24,270,o), +(20,251,o), +(14,221,cs), +(-14,54,o), +(61,-10,o), +(177,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(261,169,o), +(257,191,o), +(261,227,cs), +(263,247,o), +(269,273,o), +(275,293,cs), +(286,329,o), +(300,351,o), +(337,351,cs), +(371,351,o), +(381,333,o), +(376,301,cs), +(372,271,o), +(369,257,o), +(361,227,cs), +(351,191,o), +(335,169,o), +(298,169,cs) +); +} +); +width = 661; +} +); +unicode = 273; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 600; +} +); +}; +}, +{ +color = 6; +glyphname = e; +kernLeft = o; +kernRight = e; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (217,0); +}, +{ +name = ogonek; +pos = (437,10); +}, +{ +name = top; +pos = (336,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(349,-10,o), +(445,73,o), +(455,111,cs), +(458,123,o), +(450,131,o), +(438,131,cs), +(422,131,ls), +(407,131,o), +(404,130,o), +(388,113,cs), +(374,97,o), +(320,48,o), +(235,48,cs), +(138,48,o), +(100,134,o), +(115,225,cs), +(116,228,o), +(117,235,o), +(117,235,c), +(473,235,ls), +(486,235,o), +(498,244,o), +(501,257,cs), +(504,272,ls), +(536,432,o), +(477,530,o), +(338,530,cs), +(208,530,o), +(109,436,o), +(70,300,cs), +(65,280,o), +(56,240,o), +(53,220,cs), +(34,83,o), +(94,-10,o), +(223,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(130,295,ls), +(155,394,o), +(226,472,o), +(326,472,cs), +(426,472,o), +(473,394,o), +(448,295,cs), +(447,291,l), +(129,291,l) +); +} +); +width = 544; +}, +{ +anchors = ( +{ +name = bottom; +pos = (256,0); +}, +{ +name = ogonek; +pos = (403,119); +}, +{ +name = top; +pos = (366,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(448,-10,o), +(553,94,o), +(567,145,cs), +(571,158,o), +(563,167,o), +(550,167,cs), +(361,167,ls), +(345,167,o), +(339,165,o), +(325,153,cs), +(311,142,o), +(304,135,o), +(292,135,cs), +(263,135,o), +(257,156,o), +(266,196,cs), +(266,198,o), +(267,199,o), +(267,201,c), +(565,201,ls), +(580,201,o), +(595,213,o), +(598,228,cs), +(604,258,ls), +(633,405,o), +(573,530,o), +(377,530,cs), +(206,530,o), +(75,438,o), +(36,266,cs), +(35,264,o), +(35,261,o), +(34,259,cs), +(-5,72,o), +(88,-10,o), +(263,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,327,l), +(303,371,o), +(321,390,o), +(347,390,cs), +(373,390,o), +(383,371,o), +(374,327,c), +(374,326,l), +(294,326,l) +); +} +); +width = 621; +} +); +unicode = 101; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 496; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 61; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 122; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 430; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = eacute; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = e; +}, +{ +pos = (283,0); +ref = acutecomb; +} +); +width = 544; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = e; +}, +{ +pos = (257,0); +ref = acutecomb; +} +); +width = 621; +} +); +unicode = 233; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ebreve; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = e; +}, +{ +pos = (232,0); +ref = brevecomb; +} +); +width = 544; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = e; +}, +{ +pos = (208,0); +ref = brevecomb; +} +); +width = 621; +} +); +unicode = 277; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ecaron; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = e; +}, +{ +pos = (211,0); +ref = caroncomb; +} +); +width = 544; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = e; +}, +{ +pos = (170,0); +ref = caroncomb; +} +); +width = 621; +} +); +unicode = 283; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ecircumflex; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = e; +}, +{ +pos = (181,0); +ref = circumflexcomb; +} +); +width = 544; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = e; +}, +{ +pos = (138,0); +ref = circumflexcomb; +} +); +width = 621; +} +); +unicode = 234; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = edieresis; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = e; +}, +{ +pos = (213,0); +ref = dieresiscomb; +} +); +width = 544; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = e; +}, +{ +pos = (152,0); +ref = dieresiscomb; +} +); +width = 621; +} +); +unicode = 235; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = edotaccent; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = e; +}, +{ +pos = (279,0); +ref = dotaccentcomb; +} +); +width = 544; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = e; +}, +{ +pos = (267,0); +ref = dotaccentcomb; +} +); +width = 621; +} +); +unicode = 279; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = egrave; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = e; +}, +{ +pos = (206,0); +ref = gravecomb; +} +); +width = 544; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = e; +}, +{ +pos = (135,0); +ref = gravecomb; +} +); +width = 621; +} +); +unicode = 232; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = emacron; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = e; +}, +{ +pos = (209,0); +ref = macroncomb; +} +); +width = 544; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = e; +}, +{ +pos = (167,0); +ref = macroncomb; +} +); +width = 621; +} +); +unicode = 275; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = eogonek; +kernLeft = o; +kernRight = e; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (329,520); +} +); +hints = ( +{ +horizontal = 1; +place = (150, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(249,-220,l), +(262,-220,o), +(273,-211,o), +(276,-198,c), +(279,-185,l), +(282,-172,o), +(275,-163,o), +(262,-163,c), +(247,-163,l), +(203,-163,o), +(177,-133,o), +(188,-82,cs), +(198,-35,o), +(228,-14,o), +(270,-6,cs), +(372,14,o), +(447,77,o), +(456,111,cs), +(459,123,o), +(451,131,o), +(439,131,cs), +(423,131,ls), +(408,131,o), +(405,130,o), +(389,113,cs), +(375,97,o), +(321,48,o), +(236,48,cs), +(139,48,o), +(101,134,o), +(116,225,cs), +(118,235,l), +(474,235,ls), +(487,235,o), +(499,244,o), +(502,257,cs), +(505,272,ls), +(539,432,o), +(478,530,o), +(339,530,cs), +(209,530,o), +(110,436,o), +(71,300,cs), +(66,280,o), +(57,240,o), +(54,220,cs), +(38,106,o), +(76,23,o), +(164,-2,c), +(146,-23,o), +(134,-51,o), +(128,-82,cs), +(110,-167,o), +(149,-220,o), +(230,-220,c) +); +}, +{ +closed = 1; +nodes = ( +(130,295,ls), +(151,395,o), +(226,472,o), +(326,472,cs), +(426,472,o), +(469,395,o), +(448,295,cs), +(447,291,l), +(129,291,l) +); +} +); +width = 547; +}, +{ +anchors = ( +{ +name = top; +pos = (367,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,-220,l), +(301,-220,o), +(316,-208,o), +(319,-193,c), +(334,-125,l), +(337,-110,o), +(327,-98,o), +(312,-98,c), +(302,-98,l), +(263,-98,o), +(258,-70,o), +(263,-49,cs), +(267,-28,o), +(287,-12,o), +(330,-5,c), +(473,15,o), +(554,100,o), +(567,145,cs), +(571,158,o), +(563,167,o), +(550,167,c), +(361,167,l), +(345,167,o), +(339,165,o), +(325,153,cs), +(311,142,o), +(304,135,o), +(292,135,cs), +(263,135,o), +(257,156,o), +(266,196,c), +(267,201,l), +(565,201,l), +(580,201,o), +(594,213,o), +(598,228,c), +(604,258,l), +(635,405,o), +(573,530,o), +(377,530,cs), +(206,530,o), +(74,437,o), +(35,264,cs), +(35,262,o), +(35,261,o), +(34,259,cs), +(4,116,o), +(51,34,o), +(154,3,c), +(146,-13,o), +(141,-30,o), +(137,-49,cs), +(117,-144,o), +(151,-220,o), +(272,-220,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,327,l), +(303,371,o), +(321,390,o), +(347,390,cs), +(373,390,o), +(383,371,o), +(374,327,c), +(374,326,l), +(294,326,l) +); +} +); +width = 623; +} +); +unicode = 281; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 259; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 339; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = f; +kernLeft = f; +kernRight = f; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (123,0); +}, +{ +name = top; +pos = (282,750); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(104,0,ls), +(117,0,o), +(127,9,o), +(130,22,cs), +(224,462,l), +(356,462,ls), +(369,462,o), +(380,471,o), +(382,484,cs), +(385,498,ls), +(388,511,o), +(381,520,o), +(368,520,cs), +(236,520,l), +(247,572,ls), +(262,643,o), +(297,682,o), +(367,682,cs), +(412,682,ls), +(425,682,o), +(436,691,o), +(439,704,cs), +(442,718,ls), +(445,731,o), +(438,740,o), +(425,740,cs), +(367,740,ls), +(263,740,o), +(206,666,o), +(187,577,cs), +(175,520,l), +(86,520,ls), +(73,520,o), +(62,511,o), +(59,498,cs), +(56,484,ls), +(54,471,o), +(61,462,o), +(74,462,cs), +(163,462,l), +(69,22,ls), +(66,9,o), +(74,0,o), +(87,0,cs) +); +} +); +width = 356; +}, +{ +anchors = ( +{ +name = bottom; +pos = (191,0); +}, +{ +name = top; +pos = (350,750); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(266,0,o), +(280,12,o), +(283,27,cs), +(351,345,l), +(465,345,ls), +(480,345,o), +(494,357,o), +(498,372,cs), +(523,493,ls), +(526,508,o), +(517,520,o), +(502,520,cs), +(388,520,l), +(391,532,ls), +(395,553,o), +(411,565,o), +(441,565,cs), +(522,565,ls), +(537,565,o), +(551,577,o), +(554,592,cs), +(580,713,ls), +(583,728,o), +(574,740,o), +(559,740,cs), +(446,740,ls), +(301,740,o), +(198,701,o), +(163,537,cs), +(159,520,l), +(90,520,ls), +(75,520,o), +(60,508,o), +(57,493,cs), +(32,372,ls), +(28,357,o), +(38,345,o), +(53,345,cs), +(122,345,l), +(54,27,ls), +(51,12,o), +(61,0,o), +(76,0,cs) +); +} +); +width = 491; +} +); +unicode = 102; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 345; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 740; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 297; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 371; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = g; +kernLeft = g; +kernRight = u; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (187,-225); +}, +{ +name = top; +pos = (329,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(359,-220,o), +(409,-118,o), +(436,10,cs), +(539,497,ls), +(542,510,o), +(534,520,o), +(521,520,cs), +(505,520,ls), +(492,520,o), +(481,510,o), +(478,497,cs), +(468,451,l), +(445,495,o), +(396,530,o), +(314,530,cs), +(155,530,o), +(83,404,o), +(52,288,cs), +(47,268,o), +(43,252,o), +(40,232,cs), +(20,115,o), +(52,-10,o), +(212,-10,cs), +(294,-10,o), +(345,24,o), +(387,69,c), +(373,0,ls), +(347,-127,o), +(260,-162,o), +(166,-162,cs), +(62,-162,o), +(46,-103,o), +(45,-71,cs), +(44,-53,o), +(36,-50,o), +(26,-50,cs), +(7,-50,ls), +(-5,-50,o), +(-13,-60,o), +(-15,-73,cs), +(-22,-113,o), +(1,-220,o), +(166,-220,cs) +); +}, +{ +closed = 1; +nodes = ( +(98,48,o), +(85,136,o), +(101,232,cs), +(104,252,o), +(108,268,o), +(113,288,cs), +(139,383,o), +(205,472,o), +(314,472,cs), +(428,472,o), +(449,378,o), +(435,296,cs), +(432,276,o), +(425,244,o), +(420,224,cs), +(399,142,o), +(324,48,o), +(212,48,cs) +); +} +); +width = 579; +}, +{ +anchors = ( +{ +name = bottom; +pos = (230,-225); +}, +{ +name = top; +pos = (363,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(406,-220,o), +(525,-151,o), +(561,17,c), +(661,493,l), +(664,508,o), +(655,520,o), +(640,520,c), +(465,520,l), +(450,520,o), +(435,508,o), +(432,493,c), +(425,462,l), +(401,502,o), +(347,530,o), +(282,530,cs), +(156,530,o), +(73,457,o), +(31,300,c), +(26,280,o), +(24,269,o), +(20,249,c), +(-6,82,o), +(68,23,o), +(194,23,cs), +(252,23,o), +(290,39,o), +(327,66,c), +(313,0,l), +(304,-40,o), +(286,-59,o), +(257,-59,cs), +(233,-59,o), +(226,-51,o), +(220,-34,cs), +(217,-22,o), +(212,-14,o), +(197,-14,c), +(2,-14,l), +(-13,-14,o), +(-29,-26,o), +(-31,-41,cs), +(-37,-84,o), +(22,-220,o), +(238,-220,cs) +); +}, +{ +closed = 1; +nodes = ( +(267,197,o), +(262,219,o), +(267,255,cs), +(268,265,o), +(272,283,o), +(275,293,c), +(285,329,o), +(300,351,o), +(337,351,cs), +(371,351,o), +(380,333,o), +(376,301,cs), +(375,291,o), +(368,257,o), +(365,247,cs), +(355,215,o), +(338,197,o), +(304,197,cs) +); +} +); +width = 665; +} +); +unicode = 103; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 530; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 288; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 232; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 56; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 270; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = gbreve; +kernLeft = g; +kernRight = u; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = g; +}, +{ +pos = (225,0); +ref = brevecomb; +} +); +width = 579; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = g; +}, +{ +pos = (205,0); +ref = brevecomb; +} +); +width = 665; +} +); +unicode = 287; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 277; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = gcircumflex; +kernLeft = g; +kernRight = u; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = g; +}, +{ +pos = (174,0); +ref = circumflexcomb; +} +); +width = 579; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = g; +}, +{ +pos = (135,0); +ref = circumflexcomb; +} +); +width = 665; +} +); +unicode = 285; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 277; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = gcommaaccent; +kernLeft = g; +kernRight = u; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = g; +}, +{ +pos = (7,0); +ref = commaturnedabovecomb; +} +); +width = 579; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = g; +}, +{ +pos = (-10,0); +ref = commaturnedabovecomb; +} +); +width = 665; +} +); +unicode = 291; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 277; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = gdotaccent; +kernLeft = g; +kernRight = u; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = g; +}, +{ +pos = (272,0); +ref = dotaccentcomb; +} +); +width = 579; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = g; +}, +{ +pos = (264,0); +ref = dotaccentcomb; +} +); +width = 665; +} +); +unicode = 289; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 277; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = h; +kernLeft = h; +kernRight = n; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (241,0); +}, +{ +name = center; +pos = (213,597); +}, +{ +name = top; +pos = (350,675); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(58,0,ls), +(71,0,o), +(81,9,o), +(84,22,cs), +(143,301,ls), +(166,408,o), +(254,472,o), +(349,472,cs), +(449,472,o), +(476,407,o), +(454,301,cs), +(395,22,ls), +(392,9,o), +(400,0,o), +(413,0,cs), +(430,0,ls), +(443,0,o), +(453,9,o), +(456,22,cs), +(517,306,ls), +(544,433,o), +(490,530,o), +(349,530,cs), +(266,530,o), +(216,498,o), +(175,451,c), +(226,688,ls), +(229,701,o), +(221,710,o), +(208,710,cs), +(191,710,ls), +(178,710,o), +(168,701,o), +(165,688,cs), +(23,22,ls), +(20,9,o), +(28,0,o), +(41,0,cs) +); +} +); +width = 591; +}, +{ +anchors = ( +{ +name = bottom; +pos = (288,0); +}, +{ +name = center; +pos = (257,606); +}, +{ +name = top; +pos = (394,677); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,0,ls), +(220,0,o), +(234,12,o), +(237,27,cs), +(294,296,ls), +(302,332,o), +(325,351,o), +(357,351,cs), +(389,351,o), +(403,332,o), +(395,296,cs), +(338,27,ls), +(335,12,o), +(345,0,o), +(360,0,cs), +(556,0,ls), +(571,0,o), +(585,12,o), +(588,27,cs), +(647,303,ls), +(681,461,o), +(597,530,o), +(486,530,cs), +(424,530,o), +(374,506,o), +(331,468,c), +(377,683,ls), +(380,698,o), +(370,710,o), +(355,710,cs), +(160,710,ls), +(145,710,o), +(131,698,o), +(128,683,cs), +(-12,27,ls), +(-15,12,o), +(-5,0,o), +(10,0,cs) +); +} +); +width = 685; +} +); +unicode = 104; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 301; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 414; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 79; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 291; +y = 0; +} +); +}; +}, +{ +color = 3; +glyphname = hbar; +kernLeft = h; +kernRight = n; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(259,571,ls), +(272,571,o), +(283,580,o), +(286,593,cs), +(289,607,ls), +(291,620,o), +(284,629,o), +(271,629,cs), +(94,629,ls), +(81,629,o), +(70,620,o), +(68,607,cs), +(65,593,ls), +(62,580,o), +(69,571,o), +(82,571,cs) +); +}, +{ +ref = h; +} +); +width = 591; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,538,ls), +(385,538,o), +(399,550,o), +(403,565,cs), +(413,616,ls), +(417,631,o), +(407,643,o), +(392,643,cs), +(93,643,ls), +(78,643,o), +(64,631,o), +(60,616,cs), +(50,565,ls), +(46,550,o), +(56,538,o), +(71,538,cs) +); +}, +{ +ref = h; +} +); +width = 685; +} +); +metricRight = h; +unicode = 295; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 189; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 110; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = hcircumflex; +kernLeft = h; +kernRight = n; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = h; +}, +{ +pos = (195,155); +ref = circumflexcomb; +} +); +width = 591; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = h; +}, +{ +pos = (166,157); +ref = circumflexcomb; +} +); +width = 685; +} +); +unicode = 293; +}, +{ +color = 6; +glyphname = i; +kernLeft = i; +kernRight = i; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (57,0); +}, +{ +name = top; +pos = (198,710); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(58,0,ls), +(71,0,o), +(81,9,o), +(84,22,cs), +(185,498,ls), +(188,511,o), +(181,520,o), +(168,520,cs), +(151,520,ls), +(138,520,o), +(127,511,o), +(124,498,cs), +(23,22,ls), +(20,9,o), +(28,0,o), +(41,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(201,627,ls), +(214,627,o), +(226,636,o), +(228,649,c), +(237,687,l), +(239,700,o), +(231,710,o), +(218,710,cs), +(180,710,ls), +(167,710,o), +(156,700,o), +(154,687,c), +(145,649,l), +(143,636,o), +(150,627,o), +(163,627,cs) +); +} +); +width = 224; +}, +{ +anchors = ( +{ +name = bottom; +pos = (107,0); +}, +{ +name = top; +pos = (257,772); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(189,0,ls), +(204,0,o), +(218,12,o), +(221,27,cs), +(320,493,ls), +(323,508,o), +(314,520,o), +(299,520,cs), +(120,520,ls), +(105,520,o), +(90,508,o), +(87,493,cs), +(-12,27,ls), +(-15,12,o), +(-5,0,o), +(10,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,575,ls), +(321,575,o), +(335,587,o), +(338,602,cs), +(364,723,ls), +(367,738,o), +(358,750,o), +(343,750,cs), +(174,750,ls), +(159,750,o), +(144,738,o), +(141,723,cs), +(115,602,ls), +(112,587,o), +(122,575,o), +(137,575,cs) +); +} +); +width = 323; +} +); +unicode = 105; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 510; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 22; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 627; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 79; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 121; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 131; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = idotless; +kernLeft = i; +kernRight = i; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (57,0); +}, +{ +name = ogonek; +pos = (91,58); +}, +{ +name = top; +pos = (160,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(58,0,ls), +(71,0,o), +(81,9,o), +(84,22,cs), +(185,498,ls), +(188,511,o), +(181,520,o), +(168,520,cs), +(151,520,ls), +(138,520,o), +(127,511,o), +(124,498,cs), +(23,22,ls), +(20,9,o), +(28,0,o), +(41,0,cs) +); +} +); +width = 224; +}, +{ +anchors = ( +{ +name = bottom; +pos = (107,0); +}, +{ +name = ogonek; +pos = (238,123); +}, +{ +name = top; +pos = (210,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(189,0,l), +(204,0,o), +(218,12,o), +(221,27,cs), +(320,493,ls), +(323,508,o), +(314,520,o), +(299,520,cs), +(120,520,ls), +(105,520,o), +(90,508,o), +(87,493,cs), +(-12,27,ls), +(-15,12,o), +(-5,0,o), +(10,0,cs) +); +} +); +width = 323; +} +); +unicode = 305; +}, +{ +color = 10; +glyphname = iacute; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (107,0); +ref = acutecomb; +} +); +width = 224; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (101,0); +ref = acutecomb; +} +); +width = 323; +} +); +unicode = 237; +}, +{ +color = 10; +glyphname = ibreve; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (56,0); +ref = brevecomb; +} +); +width = 224; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (52,0); +ref = brevecomb; +} +); +width = 323; +} +); +unicode = 301; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 100; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = icircumflex; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (5,0); +ref = circumflexcomb; +} +); +width = 224; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-18,0); +ref = circumflexcomb; +} +); +width = 323; +} +); +unicode = 238; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-359"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 100; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = idieresis; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (37,0); +ref = dieresiscomb; +} +); +width = 224; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-4,0); +ref = dieresiscomb; +} +); +width = 323; +} +); +unicode = 239; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 100; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = idotaccent; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (103,0); +ref = dotaccentcomb; +} +); +width = 224; +}, +{ +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (111,0); +ref = dotaccentcomb; +} +); +width = 323; +} +); +}, +{ +color = 10; +glyphname = igrave; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (30,0); +ref = gravecomb; +} +); +width = 224; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-21,0); +ref = gravecomb; +} +); +width = 323; +} +); +unicode = 236; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 100; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ij; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = i; +}, +{ +pos = (224,0); +ref = j; +} +); +width = 458; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = i; +}, +{ +pos = (323,0); +ref = j; +} +); +width = 668; +} +); +unicode = 307; +}, +{ +color = 10; +glyphname = imacron; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (33,0); +ref = macroncomb; +} +); +width = 224; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (11,0); +ref = macroncomb; +} +); +width = 323; +} +); +unicode = 299; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 100; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = iogonek; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(55,-220,l), +(68,-220,o), +(79,-211,o), +(82,-198,c), +(85,-185,l), +(88,-172,o), +(81,-163,o), +(68,-163,c), +(53,-163,l), +(9,-163,o), +(-17,-133,o), +(-6,-82,cs), +(5,-31,o), +(43,0,o), +(87,0,c), +(92,0,l), +(105,0,o), +(116,9,o), +(119,22,c), +(220,498,l), +(223,511,o), +(216,520,o), +(203,520,c), +(186,520,l), +(173,520,o), +(162,511,o), +(159,498,c), +(67,64,l), +(66,62,o), +(66,60,o), +(66,58,c), +(65,54,l), +(-1,42,o), +(-50,-8,o), +(-66,-82,cs), +(-84,-167,o), +(-45,-220,o), +(36,-220,c) +); +}, +{ +closed = 1; +nodes = ( +(235,627,l), +(248,627,o), +(260,636,o), +(263,649,c), +(271,687,l), +(274,700,o), +(266,710,o), +(253,710,c), +(215,710,l), +(202,710,o), +(191,700,o), +(188,687,c), +(180,649,l), +(177,636,o), +(184,627,o), +(197,627,c) +); +} +); +width = 244; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,-192,ls), +(176,-192,o), +(191,-180,o), +(194,-165,cs), +(206,-107,ls), +(210,-92,o), +(200,-80,o), +(185,-80,c), +(175,-80,ls), +(136,-80,o), +(129,-61,o), +(134,-40,cs), +(138,-19,o), +(153,0,o), +(192,0,cs), +(202,0,ls), +(217,0,o), +(232,12,o), +(235,27,cs), +(334,493,ls), +(337,508,o), +(328,520,o), +(313,520,cs), +(134,520,ls), +(119,520,o), +(104,508,o), +(101,493,cs), +(2,27,ls), +(-1,12,o), +(8,0,o), +(23,0,cs), +(30,0,l), +(25,-12,o), +(21,-26,o), +(18,-40,cs), +(0,-125,o), +(36,-192,o), +(147,-192,cs) +); +}, +{ +closed = 1; +nodes = ( +(319,575,ls), +(334,575,o), +(349,587,o), +(352,602,cs), +(378,723,ls), +(381,738,o), +(372,750,o), +(357,750,cs), +(188,750,ls), +(173,750,o), +(158,738,o), +(155,723,cs), +(129,602,ls), +(126,587,o), +(135,575,o), +(150,575,cs) +); +} +); +width = 323; +} +); +unicode = 303; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 22; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 131; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = itilde; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (28,0); +ref = tildecomb; +} +); +width = 224; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (4,0); +ref = tildecomb; +} +); +width = 323; +} +); +unicode = 297; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 100; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = j; +kernRight = i; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (207,710); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-97,-190,ls), +(24,-190,o), +(64,-116,o), +(84,-22,cs), +(194,498,ls), +(197,511,o), +(190,520,o), +(177,520,cs), +(160,520,ls), +(147,520,o), +(136,511,o), +(133,498,cs), +(23,-22,ls), +(10,-83,o), +(-20,-132,o), +(-85,-132,cs), +(-94,-132,ls), +(-107,-132,o), +(-117,-141,o), +(-120,-154,cs), +(-123,-168,ls), +(-126,-181,o), +(-119,-190,o), +(-106,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(210,627,ls), +(223,627,o), +(235,636,o), +(237,649,c), +(246,687,l), +(248,700,o), +(240,710,o), +(227,710,cs), +(189,710,ls), +(176,710,o), +(165,700,o), +(163,687,c), +(154,649,l), +(152,636,o), +(159,627,o), +(172,627,cs) +); +} +); +width = 234; +}, +{ +anchors = ( +{ +name = top; +pos = (277,772); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(-49,-190,ls), +(106,-190,o), +(211,-121,o), +(243,29,cs), +(341,493,ls), +(344,508,o), +(335,520,o), +(320,520,cs), +(132,520,ls), +(117,520,o), +(102,508,o), +(99,493,cs), +(2,35,ls), +(-5,4,o), +(-22,-15,o), +(-52,-15,cs), +(-109,-15,ls), +(-124,-15,o), +(-138,-27,o), +(-141,-42,cs), +(-167,-163,ls), +(-170,-178,o), +(-161,-190,o), +(-146,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(327,575,ls), +(342,575,o), +(356,587,o), +(359,602,cs), +(385,723,ls), +(388,738,o), +(379,750,o), +(364,750,cs), +(186,750,ls), +(171,750,o), +(156,738,o), +(153,723,cs), +(127,602,ls), +(124,587,o), +(134,575,o), +(149,575,cs) +); +} +); +width = 345; +} +); +unicode = 106; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 740; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-190"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-46"; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = jdotless; +kernLeft = dotlessj; +kernRight = i; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (30,-225); +}, +{ +name = top; +pos = (149,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-72,-190,ls), +(50,-190,o), +(95,-116,o), +(115,-22,cs), +(225,498,ls), +(228,511,o), +(221,520,o), +(208,520,cs), +(85,520,ls), +(72,520,o), +(61,511,o), +(58,498,cs), +(55,484,ls), +(52,471,o), +(60,462,o), +(73,462,cs), +(157,462,l), +(54,-22,ls), +(41,-83,o), +(21,-132,o), +(-60,-132,cs), +(-64,-132,ls), +(-77,-132,o), +(-86,-141,o), +(-89,-154,cs), +(-92,-168,ls), +(-95,-181,o), +(-88,-190,o), +(-76,-190,cs) +); +} +); +width = 265; +}, +{ +anchors = ( +{ +name = bottom; +pos = (138,-225); +}, +{ +name = top; +pos = (277,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(78,-190,l), +(223,-190,o), +(353,-94,o), +(388,70,cs), +(478,493,ls), +(481,508,o), +(472,520,o), +(457,520,cs), +(99,520,ls), +(84,520,o), +(69,508,o), +(66,493,cs), +(39,364,ls), +(36,349,o), +(45,337,o), +(60,337,cs), +(201,337,l), +(144,70,ls), +(137,39,o), +(121,20,o), +(91,20,cs), +(-10,20,ls), +(-25,20,o), +(-40,8,o), +(-43,-7,cs), +(-75,-163,ls), +(-78,-178,o), +(-69,-190,o), +(-55,-190,cs) +); +} +); +width = 481; +} +); +unicode = 567; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-190"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 45; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = jacute; +kernLeft = dotlessj; +kernRight = i; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (96,0); +ref = acutecomb; +} +); +width = 265; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (168,0); +ref = acutecomb; +} +); +width = 481; +} +); +}, +{ +color = 10; +glyphname = jcircumflex; +kernLeft = dotlessj; +kernRight = i; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-6,0); +ref = circumflexcomb; +} +); +width = 265; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (49,0); +ref = circumflexcomb; +} +); +width = 481; +} +); +unicode = 309; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 192; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = k; +kernLeft = h; +kernRight = k; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (188,0); +}, +{ +name = top; +pos = (347,750); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(58,0,l), +(71,0,o), +(81,9,o), +(84,22,c), +(133,248,l), +(346,15,l), +(352,9,o), +(358,0,o), +(379,0,cs), +(395,0,l), +(412,0,o), +(422,20,o), +(409,34,cs), +(179,288,l), +(473,480,ls), +(498,496,o), +(493,520,o), +(474,520,cs), +(447,520,l), +(427,520,o), +(423,517,o), +(401,503,c), +(152,341,l), +(226,688,l), +(229,701,o), +(221,710,o), +(208,710,c), +(191,710,l), +(178,710,o), +(168,701,o), +(165,688,c), +(23,22,l), +(20,9,o), +(28,0,o), +(41,0,c) +); +} +); +width = 485; +}, +{ +anchors = ( +{ +name = bottom; +pos = (270,0); +}, +{ +name = top; +pos = (429,750); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,ls), +(200,0,o), +(214,12,o), +(217,27,cs), +(253,203,l), +(327,17,ls), +(331,7,o), +(340,0,o), +(355,0,cs), +(555,0,ls), +(579,0,o), +(590,19,o), +(582,37,cs), +(484,268,l), +(662,481,l), +(677,497,o), +(676,520,o), +(651,520,cs), +(439,520,ls), +(421,520,o), +(410,508,o), +(406,503,cs), +(288,359,l), +(357,683,ls), +(360,698,o), +(350,710,o), +(335,710,cs), +(160,710,ls), +(145,710,o), +(131,698,o), +(128,683,cs), +(-12,27,ls), +(-15,12,o), +(-5,0,o), +(10,0,cs) +); +} +); +width = 650; +} +); +unicode = 107; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 520; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 260; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 460; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 430; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = kcommaaccent; +kernLeft = h; +kernRight = k; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = k; +}, +{ +pos = (102,0); +ref = commaaccentcomb; +} +); +width = 485; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = k; +}, +{ +pos = (136,0); +ref = commaaccentcomb; +} +); +width = 650; +} +); +unicode = 311; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 268; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = kgreenlandic; +kernLeft = n; +kernRight = k; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (189,0); +}, +{ +name = top; +pos = (299,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(71,0,ls), +(84,0,o), +(95,9,o), +(98,22,cs), +(138,212,l), +(346,17,l), +(360,4,o), +(364,0,o), +(384,0,cs), +(402,0,ls), +(414,0,o), +(424,8,o), +(426,20,cs), +(428,25,o), +(425,33,o), +(418,40,cs), +(184,260,l), +(491,480,l), +(503,487,o), +(507,495,o), +(508,500,cs), +(511,512,o), +(505,520,o), +(493,520,cs), +(477,520,ls), +(457,520,o), +(453,517,o), +(431,503,c), +(159,308,l), +(199,498,ls), +(202,511,o), +(195,520,o), +(182,520,cs), +(165,520,ls), +(152,520,o), +(141,511,o), +(138,498,cs), +(37,22,ls), +(34,9,o), +(41,0,o), +(54,0,cs) +); +} +); +width = 488; +}, +{ +anchors = ( +{ +name = bottom; +pos = (267,0); +}, +{ +name = top; +pos = (377,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,0,ls), +(213,0,o), +(228,12,o), +(231,27,cs), +(265,187,l), +(331,17,ls), +(332,14,o), +(338,0,o), +(358,0,cs), +(568,0,ls), +(581,0,o), +(595,11,o), +(597,24,cs), +(599,30,o), +(597,34,o), +(596,37,cs), +(493,266,l), +(665,481,ls), +(668,484,o), +(672,490,o), +(674,496,cs), +(676,509,o), +(668,520,o), +(655,520,cs), +(463,520,ls), +(445,520,o), +(434,508,o), +(430,503,cs), +(295,329,l), +(330,493,ls), +(333,508,o), +(324,520,o), +(309,520,cs), +(134,520,ls), +(119,520,o), +(104,508,o), +(101,493,cs), +(2,27,ls), +(-1,12,o), +(8,0,o), +(23,0,cs) +); +} +); +width = 643; +} +); +unicode = 312; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 520; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 260; +} +); +}; +}, +{ +color = 6; +glyphname = l; +kernLeft = l; +kernRight = l; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (50,0); +}, +{ +name = center; +pos = (137,375); +}, +{ +name = top; +pos = (205,675); +}, +{ +name = topright; +pos = (287,710); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(58,0,ls), +(71,0,o), +(81,9,o), +(84,22,cs), +(226,688,ls), +(229,701,o), +(221,710,o), +(208,710,cs), +(191,710,ls), +(178,710,o), +(168,701,o), +(165,688,cs), +(23,22,ls), +(20,9,o), +(28,0,o), +(41,0,cs) +); +} +); +width = 225; +}, +{ +anchors = ( +{ +name = bottom; +pos = (104,0); +}, +{ +name = center; +pos = (186,375); +}, +{ +name = top; +pos = (252,675); +}, +{ +name = topright; +pos = (426,710); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(189,0,ls), +(204,0,o), +(218,12,o), +(221,27,cs), +(361,683,ls), +(364,698,o), +(354,710,o), +(339,710,cs), +(160,710,ls), +(145,710,o), +(131,698,o), +(128,683,cs), +(-12,27,ls), +(-15,12,o), +(-5,0,o), +(10,0,cs) +); +} +); +width = 324; +} +); +unicode = 108; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +} +); +}; +}, +{ +color = 10; +glyphname = lacute; +kernLeft = l; +kernRight = l; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = l; +}, +{ +pos = (152,155); +ref = acutecomb; +} +); +width = 225; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = l; +}, +{ +pos = (143,155); +ref = acutecomb; +} +); +width = 324; +} +); +unicode = 314; +}, +{ +color = 10; +glyphname = lcaron; +kernLeft = l; +kernRight = dcaron; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +pos = (65,10); +ref = caroncomb.alt; +} +); +width = 235; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +pos = (121,10); +ref = caroncomb.alt; +} +); +width = 494; +} +); +metricLeft = l; +unicode = 318; +}, +{ +color = 10; +glyphname = lcommaaccent; +kernLeft = l; +kernRight = l; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = l; +}, +{ +pos = (-36,0); +ref = commaaccentcomb; +} +); +width = 225; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-30,0); +ref = commaaccentcomb; +} +); +width = 324; +} +); +unicode = 316; +}, +{ +color = 10; +glyphname = ldot; +kernLeft = l; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (225,0); +ref = periodcentered.loclCAT; +} +); +width = 305; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (324,0); +ref = periodcentered.loclCAT; +} +); +width = 516; +} +); +unicode = 320; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 360; +} +); +}; +}, +{ +color = 6; +glyphname = lslash; +kernLeft = l; +kernRight = l; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(84,0,ls), +(97,0,o), +(108,9,o), +(111,22,cs), +(179,341,l), +(231,360,ls), +(248,366,o), +(255,370,o), +(258,385,cs), +(262,404,ls), +(265,416,o), +(258,422,o), +(247,422,cs), +(243,422,o), +(239,421,o), +(233,419,cs), +(192,404,l), +(252,688,ls), +(255,701,o), +(248,710,o), +(235,710,cs), +(218,710,ls), +(205,710,o), +(194,701,o), +(191,688,cs), +(126,381,l), +(74,363,ls), +(57,357,o), +(50,353,o), +(47,338,cs), +(43,319,ls), +(40,307,o), +(47,301,o), +(58,301,cs), +(62,301,o), +(66,302,o), +(72,304,cs), +(113,318,l), +(50,22,ls), +(47,9,o), +(54,0,o), +(67,0,cs) +); +} +); +width = 247; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(241,0,ls), +(256,0,o), +(271,12,o), +(274,27,cs), +(336,319,l), +(377,334,ls), +(394,340,o), +(402,349,o), +(406,367,cs), +(429,475,ls), +(432,487,o), +(425,496,o), +(413,496,cs), +(411,496,o), +(406,495,o), +(401,493,cs), +(371,482,l), +(413,683,ls), +(417,698,o), +(407,710,o), +(392,710,cs), +(213,710,ls), +(198,710,o), +(184,698,o), +(180,683,cs), +(118,391,l), +(77,377,ls), +(60,371,o), +(52,362,o), +(48,344,cs), +(25,236,ls), +(23,224,o), +(30,215,o), +(42,215,cs), +(44,215,o), +(48,216,o), +(54,218,cs), +(84,229,l), +(41,27,ls), +(38,12,o), +(47,0,o), +(62,0,cs) +); +} +); +width = 400; +} +); +unicode = 322; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 355; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 231; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 100; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 30; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = m; +kernLeft = n; +kernRight = n; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (385,0); +}, +{ +name = top; +pos = (495,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(58,0,ls), +(71,0,o), +(81,9,o), +(84,22,cs), +(144,304,ls), +(172,434,o), +(262,472,o), +(323,472,cs), +(390,472,o), +(441,434,o), +(413,303,cs), +(353,22,ls), +(350,9,o), +(358,0,o), +(371,0,cs), +(388,0,ls), +(401,0,o), +(411,9,o), +(414,22,cs), +(474,303,ls), +(502,434,o), +(592,472,o), +(653,472,cs), +(725,472,o), +(771,434,o), +(743,303,cs), +(683,22,ls), +(680,9,o), +(688,0,o), +(701,0,cs), +(718,0,ls), +(731,0,o), +(741,9,o), +(744,22,cs), +(806,313,ls), +(836,456,o), +(761,530,o), +(655,530,cs), +(578,530,o), +(518,493,o), +(475,436,c), +(457,497,o), +(400,530,o), +(325,530,cs), +(259,530,o), +(220,506,o), +(178,463,c), +(185,498,ls), +(188,511,o), +(181,520,o), +(168,520,cs), +(151,520,ls), +(138,520,o), +(127,511,o), +(124,498,cs), +(23,22,ls), +(20,9,o), +(28,0,o), +(41,0,cs) +); +} +); +width = 879; +}, +{ +anchors = ( +{ +name = bottom; +pos = (414,0); +}, +{ +name = top; +pos = (524,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(190,0,ls), +(205,0,o), +(219,12,o), +(222,27,cs), +(281,302,ls), +(287,333,o), +(306,351,o), +(331,351,cs), +(356,351,o), +(367,334,o), +(361,302,c), +(302,27,ls), +(299,12,o), +(309,0,o), +(324,0,cs), +(500,0,ls), +(515,0,o), +(529,12,o), +(532,27,cs), +(591,302,l), +(597,334,o), +(615,351,o), +(640,351,cs), +(665,351,o), +(676,334,o), +(670,302,c), +(611,27,ls), +(608,12,o), +(618,0,o), +(633,0,cs), +(809,0,ls), +(824,0,o), +(838,12,o), +(841,27,cs), +(901,307,ls), +(934,465,o), +(865,530,o), +(754,530,cs), +(683,530,o), +(635,494,o), +(594,448,c), +(575,497,o), +(533,530,o), +(453,530,cs), +(371,530,o), +(329,490,o), +(299,460,c), +(306,493,ls), +(309,508,o), +(300,520,o), +(285,520,cs), +(120,520,ls), +(105,520,o), +(90,508,o), +(87,493,cs), +(-12,27,ls), +(-15,12,o), +(-5,0,o), +(10,0,cs) +); +} +); +width = 938; +} +); +unicode = 109; +}, +{ +color = 6; +glyphname = n; +kernLeft = n; +kernRight = n; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (237,0); +}, +{ +name = top; +pos = (344,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(58,0,ls), +(71,0,o), +(81,9,o), +(84,22,cs), +(143,301,ls), +(166,408,o), +(246,472,o), +(351,472,cs), +(460,472,o), +(477,414,o), +(453,301,cs), +(394,22,ls), +(391,9,o), +(399,0,o), +(412,0,cs), +(429,0,ls), +(442,0,o), +(452,9,o), +(455,22,cs), +(516,306,ls), +(543,433,o), +(503,530,o), +(351,530,cs), +(275,530,o), +(216,497,o), +(175,451,c), +(185,498,ls), +(188,511,o), +(181,520,o), +(168,520,cs), +(151,520,ls), +(138,520,o), +(127,511,o), +(124,498,cs), +(23,22,ls), +(20,9,o), +(28,0,o), +(41,0,cs) +); +} +); +width = 590; +}, +{ +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = top; +pos = (379,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(200,0,ls), +(215,0,o), +(229,12,o), +(232,27,cs), +(289,296,ls), +(297,332,o), +(319,351,o), +(351,351,cs), +(383,351,o), +(397,332,o), +(389,296,cs), +(332,27,ls), +(329,12,o), +(339,0,o), +(354,0,cs), +(545,0,ls), +(560,0,o), +(574,12,o), +(577,27,cs), +(636,303,ls), +(670,461,o), +(591,530,o), +(480,530,cs), +(409,530,o), +(351,499,o), +(309,460,c), +(316,493,ls), +(319,508,o), +(310,520,o), +(295,520,cs), +(120,520,ls), +(105,520,o), +(90,508,o), +(87,493,cs), +(-12,27,ls), +(-15,12,o), +(-5,0,o), +(10,0,cs) +); +} +); +width = 674; +} +); +unicode = 110; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 530; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 301; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 650; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 407; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 451; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 291; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 131; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = nacute; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = n; +}, +{ +pos = (291,0); +ref = acutecomb; +} +); +width = 590; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = n; +}, +{ +pos = (270,0); +ref = acutecomb; +} +); +width = 674; +} +); +unicode = 324; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 286; +y = 0; +} +); +}; +}, +{ +color = 3; +glyphname = napostrophe; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(65,570,ls), +(80,570,o), +(86,578,o), +(95,591,c), +(157,696,ls), +(161,703,o), +(164,709,o), +(165,714,cs), +(167,722,o), +(163,730,o), +(154,730,cs), +(109,730,ls), +(93,730,o), +(84,719,o), +(78,703,cs), +(37,591,ls), +(33,579,o), +(36,570,o), +(47,570,cs) +); +}, +{ +ref = n; +} +); +width = 590; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(62,550,ls), +(88,550,o), +(104,569,o), +(112,582,cs), +(196,721,ls), +(198,724,o), +(198,726,o), +(199,728,cs), +(201,740,o), +(194,750,o), +(182,750,cs), +(42,750,ls), +(15,750,o), +(-3,729,o), +(-10,711,c), +(-60,572,l), +(-63,560,o), +(-55,550,o), +(-43,550,cs) +); +}, +{ +ref = n; +} +); +width = 674; +} +); +metricRight = n; +unicode = 329; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 575; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 286; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ncaron; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = n; +}, +{ +pos = (219,0); +ref = caroncomb; +} +); +width = 590; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = n; +}, +{ +pos = (183,0); +ref = caroncomb; +} +); +width = 674; +} +); +unicode = 328; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 286; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ncommaaccent; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = n; +}, +{ +pos = (151,0); +ref = commaaccentcomb; +} +); +width = 590; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = n; +}, +{ +pos = (148,0); +ref = commaaccentcomb; +} +); +width = 674; +} +); +unicode = 326; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 286; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ntilde; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = n; +}, +{ +pos = (212,0); +ref = tildecomb; +} +); +width = 590; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = n; +}, +{ +pos = (173,0); +ref = tildecomb; +} +); +width = 674; +} +); +unicode = 241; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 286; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = eng; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(252,-225,l), +(389,-225,o), +(418,-151,o), +(438,-57,c), +(516,306,l), +(543,433,o), +(503,530,o), +(351,530,cs), +(275,530,o), +(216,497,o), +(175,451,c), +(185,498,l), +(188,511,o), +(181,520,o), +(168,520,c), +(151,520,l), +(138,520,o), +(127,511,o), +(124,498,c), +(23,22,ls), +(20,9,o), +(28,0,o), +(41,0,cs), +(58,0,l), +(71,0,o), +(81,9,o), +(84,22,c), +(143,301,l), +(166,408,o), +(246,472,o), +(351,472,cs), +(460,472,o), +(477,414,o), +(453,301,c), +(377,-57,l), +(364,-118,o), +(342,-167,o), +(264,-167,c), +(260,-167,l), +(247,-167,o), +(236,-176,o), +(233,-189,c), +(230,-203,l), +(227,-216,o), +(235,-225,o), +(248,-225,c) +); +} +); +width = 590; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(212,-225,ls), +(404,-225,o), +(541,-142,o), +(582,48,cs), +(636,303,ls), +(669,461,o), +(591,530,o), +(480,530,cs), +(409,530,o), +(351,499,o), +(309,460,c), +(316,493,ls), +(319,508,o), +(310,520,o), +(295,520,cs), +(120,520,ls), +(105,520,o), +(90,508,o), +(87,493,cs), +(-12,27,ls), +(-15,12,o), +(-5,0,o), +(10,0,cs), +(200,0,ls), +(215,0,o), +(229,12,o), +(232,27,cs), +(289,296,ls), +(297,332,o), +(319,351,o), +(351,351,cs), +(383,351,o), +(397,332,o), +(389,296,cs), +(339,59,ls), +(326,-2,o), +(298,-22,o), +(255,-22,cs), +(216,-22,ls), +(201,-22,o), +(186,-34,o), +(183,-49,c), +(151,-198,ls), +(148,-213,o), +(158,-225,o), +(173,-225,cs) +); +} +); +width = 674; +} +); +unicode = 331; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-300"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 225; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = o; +kernLeft = o; +kernRight = o; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (223,0); +}, +{ +name = center; +pos = (278,260); +}, +{ +name = ogonek; +pos = (447,10); +}, +{ +name = top; +pos = (327,520); +}, +{ +name = topright; +pos = (591,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(363,-10,o), +(451,89,o), +(483,218,cs), +(488,238,o), +(497,282,o), +(501,302,cs), +(524,431,o), +(464,530,o), +(321,530,cs), +(176,530,o), +(88,431,o), +(57,302,c), +(51,282,o), +(42,238,o), +(39,218,c), +(15,89,o), +(79,-10,o), +(218,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,48,o), +(81,109,o), +(101,223,cs), +(104,243,o), +(111,277,o), +(117,297,c), +(145,411,o), +(227,472,o), +(321,472,cs), +(416,472,o), +(459,411,o), +(439,297,cs), +(435,277,o), +(428,243,o), +(423,223,cs), +(395,109,o), +(312,48,o), +(218,48,cs) +); +} +); +width = 556; +}, +{ +anchors = ( +{ +name = bottom; +pos = (266,0); +}, +{ +name = center; +pos = (321,260); +}, +{ +name = ogonek; +pos = (524,10); +}, +{ +name = top; +pos = (362,520); +}, +{ +name = topright; +pos = (676,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(459,-10,o), +(552,66,o), +(593,213,cs), +(601,243,o), +(608,277,o), +(613,307,cs), +(634,454,o), +(523,530,o), +(360,530,cs), +(177,530,o), +(74,454,o), +(33,307,cs), +(24,277,o), +(17,243,o), +(13,213,cs), +(-8,66,o), +(91,-10,o), +(265,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,150,o), +(252,171,o), +(259,218,cs), +(262,238,o), +(271,282,o), +(277,302,cs), +(289,346,o), +(298,370,o), +(336,370,cs), +(374,370,o), +(374,346,o), +(367,302,cs), +(364,282,o), +(354,238,o), +(349,218,cs), +(336,171,o), +(327,150,o), +(289,150,cs) +); +} +); +width = 641; +} +); +unicode = 111; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 302; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 218; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 411; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 109; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 56; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 500; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = oacute; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = o; +}, +{ +pos = (274,0); +ref = acutecomb; +} +); +width = 556; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = o; +}, +{ +pos = (253,0); +ref = acutecomb; +} +); +width = 641; +} +); +unicode = 243; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = obreve; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = o; +}, +{ +pos = (223,0); +ref = brevecomb; +} +); +width = 556; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = o; +}, +{ +pos = (204,0); +ref = brevecomb; +} +); +width = 641; +} +); +unicode = 335; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ocircumflex; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = o; +}, +{ +pos = (172,0); +ref = circumflexcomb; +} +); +width = 556; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = o; +}, +{ +pos = (134,0); +ref = circumflexcomb; +} +); +width = 641; +} +); +unicode = 244; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = odieresis; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = o; +}, +{ +pos = (204,0); +ref = dieresiscomb; +} +); +width = 556; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = o; +}, +{ +pos = (148,0); +ref = dieresiscomb; +} +); +width = 641; +} +); +unicode = 246; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ograve; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = o; +}, +{ +pos = (197,0); +ref = gravecomb; +} +); +width = 556; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = o; +}, +{ +pos = (131,0); +ref = gravecomb; +} +); +width = 641; +} +); +unicode = 242; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ohungarumlaut; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = o; +}, +{ +pos = (207,0); +ref = hungarumlautcomb; +} +); +width = 556; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = o; +}, +{ +pos = (149,0); +ref = hungarumlautcomb; +} +); +width = 641; +} +); +unicode = 337; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = omacron; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = o; +}, +{ +pos = (200,0); +ref = macroncomb; +} +); +width = 556; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = o; +}, +{ +pos = (163,0); +ref = macroncomb; +} +); +width = 641; +} +); +unicode = 333; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = oslash; +kernLeft = o; +kernRight = o; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (333,520); +} +); +layerId = UUID0; +shapes = ( +{ +ref = o; +}, +{ +pos = (60,17); +ref = slashshortcomb; +} +); +width = 556; +}, +{ +anchors = ( +{ +name = top; +pos = (376,520); +} +); +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = o; +}, +{ +pos = (42,0); +ref = slashshortcomb; +} +); +width = 641; +} +); +unicode = 248; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 259; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 370; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 80; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 584; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 141; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 20; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = oslashacute; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = oslash; +}, +{ +pos = (280,0); +ref = acutecomb; +} +); +width = 556; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = oslash; +}, +{ +pos = (267,0); +ref = acutecomb; +} +); +width = 641; +} +); +unicode = 511; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 302; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = otilde; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = o; +}, +{ +pos = (195,0); +ref = tildecomb; +} +); +width = 556; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = o; +}, +{ +pos = (156,0); +ref = tildecomb; +} +); +width = 641; +} +); +unicode = 245; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = oe; +kernLeft = o; +kernRight = e; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (411,0); +}, +{ +name = top; +pos = (521,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(325,-10,o), +(398,33,o), +(447,101,c), +(468,32,o), +(524,-10,o), +(611,-10,cs), +(732,-10,o), +(828,73,o), +(838,111,cs), +(841,123,o), +(833,131,o), +(821,131,cs), +(805,131,ls), +(790,131,o), +(787,130,o), +(771,113,cs), +(757,97,o), +(703,48,o), +(623,48,cs), +(526,48,o), +(488,134,o), +(503,225,cs), +(505,235,l), +(861,235,ls), +(874,235,o), +(886,244,o), +(889,257,cs), +(892,272,ls), +(926,432,o), +(865,530,o), +(726,530,cs), +(638,530,o), +(565,487,o), +(514,418,c), +(495,486,o), +(440,530,o), +(344,530,cs), +(200,530,o), +(105,431,o), +(73,302,cs), +(68,282,o), +(59,238,o), +(56,218,cs), +(32,89,o), +(85,-10,o), +(229,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(148,48,o), +(97,109,o), +(118,223,cs), +(121,243,o), +(128,277,o), +(133,297,cs), +(162,411,o), +(239,472,o), +(332,472,cs), +(425,472,o), +(476,411,o), +(455,297,cs), +(452,277,o), +(445,243,o), +(440,223,cs), +(411,109,o), +(334,48,o), +(241,48,cs) +); +}, +{ +closed = 1; +nodes = ( +(518,295,ls), +(539,395,o), +(614,472,o), +(714,472,cs), +(814,472,o), +(857,395,o), +(836,295,cs), +(835,291,l), +(517,291,l) +); +} +); +width = 931; +}, +{ +anchors = ( +{ +name = bottom; +pos = (427,0); +}, +{ +name = top; +pos = (537,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,-10,o), +(399,1,o), +(448,22,c), +(487,0,o), +(540,-10,o), +(603,-10,cs), +(788,-10,o), +(893,94,o), +(907,145,cs), +(911,158,o), +(903,167,o), +(890,167,c), +(701,167,l), +(685,167,o), +(679,165,o), +(665,153,cs), +(651,142,o), +(644,135,o), +(632,135,cs), +(603,135,o), +(597,156,o), +(606,196,c), +(607,201,l), +(905,201,l), +(920,201,o), +(934,213,o), +(938,228,c), +(944,258,l), +(975,405,o), +(913,530,o), +(717,530,cs), +(655,530,o), +(599,518,o), +(550,494,c), +(509,518,o), +(453,530,o), +(385,530,cs), +(212,530,o), +(89,454,o), +(47,307,cs), +(39,277,o), +(32,243,o), +(27,213,cs), +(6,66,o), +(86,-10,o), +(270,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,150,o), +(267,171,o), +(274,218,cs), +(277,238,o), +(286,282,o), +(291,302,cs), +(304,346,o), +(313,370,o), +(351,370,cs), +(389,370,o), +(388,346,o), +(381,302,cs), +(378,282,o), +(369,238,o), +(364,218,cs), +(351,171,o), +(342,150,o), +(304,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(634,327,l), +(643,371,o), +(661,390,o), +(687,390,cs), +(713,390,o), +(723,371,o), +(714,327,c), +(714,326,l), +(634,326,l) +); +} +); +width = 963; +} +); +unicode = 339; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 51; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 495; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = p; +kernLeft = n; +kernRight = b; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = top; +pos = (345,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(18,-190,ls), +(31,-190,o), +(41,-181,o), +(44,-168,cs), +(95,69,l), +(118,25,o), +(161,-10,o), +(249,-10,c), +(410,-10,o), +(481,116,o), +(511,232,cs), +(516,252,o), +(520,268,o), +(523,288,cs), +(541,405,o), +(507,530,o), +(352,530,cs), +(264,530,o), +(218,496,o), +(176,451,c), +(186,498,ls), +(189,511,o), +(181,520,o), +(168,520,cs), +(151,520,ls), +(138,520,o), +(128,511,o), +(125,498,cs), +(-17,-168,ls), +(-20,-181,o), +(-12,-190,o), +(1,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(138,48,o), +(111,138,o), +(126,218,cs), +(130,238,o), +(138,276,o), +(143,296,cs), +(163,378,o), +(238,472,o), +(352,472,cs), +(461,472,o), +(476,384,o), +(461,288,cs), +(458,268,o), +(455,252,o), +(449,232,cs), +(421,137,o), +(358,48,o), +(249,48,cs) +); +} +); +width = 579; +}, +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = top; +pos = (386,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,-190,ls), +(169,-190,o), +(184,-178,o), +(187,-163,cs), +(232,50,l), +(253,7,o), +(306,-10,o), +(362,-10,cs), +(478,-10,o), +(574,63,o), +(613,220,cs), +(621,250,o), +(625,269,o), +(630,299,cs), +(659,466,o), +(573,530,o), +(457,530,cs), +(388,530,o), +(343,502,o), +(305,463,c), +(311,493,ls), +(314,508,o), +(305,520,o), +(290,520,cs), +(120,520,ls), +(105,520,o), +(90,508,o), +(87,493,cs), +(-52,-163,ls), +(-55,-178,o), +(-46,-190,o), +(-31,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,169,o), +(263,187,o), +(268,219,cs), +(272,249,o), +(275,263,o), +(284,293,cs), +(293,329,o), +(309,351,o), +(346,351,cs), +(383,351,o), +(387,329,o), +(384,293,cs), +(382,273,o), +(376,247,o), +(370,227,cs), +(358,191,o), +(344,169,o), +(307,169,cs) +); +} +); +width = 661; +} +); +unicode = 112; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 530; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 422; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-190"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 419; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-609"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 79; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 122; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 291; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = thorn; +kernLeft = h; +kernRight = b; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = top; +pos = (345,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(18,-190,l), +(31,-190,o), +(41,-181,o), +(44,-168,cs), +(95,69,l), +(118,25,o), +(161,-10,o), +(249,-10,cs), +(410,-10,o), +(481,116,o), +(511,232,cs), +(516,252,o), +(520,268,o), +(523,288,cs), +(541,405,o), +(507,530,o), +(352,530,cs), +(264,530,o), +(214,494,o), +(176,451,c), +(227,688,l), +(230,702,o), +(222,710,o), +(209,710,c), +(192,710,l), +(179,710,o), +(169,701,o), +(166,688,c), +(-17,-168,l), +(-20,-181,o), +(-12,-190,o), +(1,-190,c) +); +}, +{ +closed = 1; +nodes = ( +(138,48,o), +(111,138,o), +(126,218,cs), +(130,238,o), +(138,276,o), +(143,296,cs), +(163,378,o), +(238,472,o), +(352,472,cs), +(461,472,o), +(476,384,o), +(461,288,cs), +(458,268,o), +(455,252,o), +(449,232,cs), +(421,137,o), +(358,48,o), +(249,48,cs) +); +} +); +width = 579; +}, +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = top; +pos = (386,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,-190,ls), +(169,-190,o), +(184,-178,o), +(187,-163,cs), +(232,50,l), +(253,10,o), +(306,-10,o), +(362,-10,cs), +(478,-10,o), +(574,63,o), +(613,220,cs), +(621,250,o), +(625,269,o), +(630,299,cs), +(659,466,o), +(573,530,o), +(457,530,cs), +(388,530,o), +(351,504,o), +(322,473,c), +(367,683,ls), +(370,698,o), +(360,710,o), +(345,710,cs), +(160,710,ls), +(145,710,o), +(131,698,o), +(128,683,cs), +(-52,-163,ls), +(-55,-178,o), +(-46,-190,o), +(-31,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,169,o), +(263,187,o), +(268,219,cs), +(272,249,o), +(275,263,o), +(284,293,cs), +(293,329,o), +(309,351,o), +(346,351,cs), +(383,351,o), +(387,329,o), +(384,293,cs), +(382,273,o), +(376,247,o), +(370,227,cs), +(358,191,o), +(344,169,o), +(307,169,cs) +); +} +); +width = 661; +} +); +unicode = 254; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +} +); +}; +}, +{ +color = 6; +glyphname = q; +kernLeft = d; +kernRight = u; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = top; +pos = (345,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(372,-190,ls), +(385,-190,o), +(396,-181,o), +(399,-168,cs), +(540,498,ls), +(543,511,o), +(536,520,o), +(523,520,cs), +(506,520,ls), +(493,520,o), +(482,511,o), +(479,498,cs), +(469,451,l), +(446,496,o), +(398,530,o), +(315,530,cs), +(159,530,o), +(83,410,o), +(54,293,cs), +(49,273,o), +(43,247,o), +(40,227,cs), +(22,110,o), +(57,-10,o), +(213,-10,cs), +(296,-10,o), +(346,25,o), +(388,69,c), +(338,-168,ls), +(335,-181,o), +(342,-190,o), +(355,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(96,48,o), +(87,136,o), +(102,232,cs), +(105,252,o), +(108,268,o), +(114,288,cs), +(142,383,o), +(204,472,o), +(315,472,cs), +(429,472,o), +(451,378,o), +(436,296,cs), +(433,276,o), +(425,238,o), +(420,218,cs), +(401,138,o), +(324,48,o), +(213,48,cs) +); +} +); +width = 580; +}, +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = top; +pos = (386,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(486,-190,ls), +(501,-190,o), +(516,-178,o), +(519,-163,cs), +(658,493,ls), +(661,508,o), +(652,520,o), +(637,520,cs), +(467,520,ls), +(452,520,o), +(437,508,o), +(434,493,cs), +(428,463,l), +(406,502,o), +(353,530,o), +(284,530,cs), +(168,530,o), +(76,466,o), +(33,299,cs), +(26,269,o), +(22,250,o), +(16,220,c), +(-11,63,o), +(73,-10,o), +(189,-10,cs), +(245,-10,o), +(286,7,o), +(325,50,c), +(280,-163,ls), +(277,-178,o), +(286,-190,o), +(301,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(263,169,o), +(259,191,o), +(263,227,cs), +(265,247,o), +(271,273,o), +(277,293,cs), +(288,329,o), +(302,351,o), +(339,351,cs), +(376,351,o), +(382,329,o), +(377,293,cs), +(372,263,o), +(369,249,o), +(361,219,cs), +(352,187,o), +(334,169,o), +(300,169,cs) +); +} +); +width = 661; +} +); +unicode = 113; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 530; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-190"; +} +); +}; +}, +{ +color = 6; +glyphname = r; +kernLeft = n; +kernRight = r; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (47,0); +}, +{ +name = top; +pos = (245,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(57,0,ls), +(70,0,o), +(81,9,o), +(84,22,cs), +(150,332,ls), +(167,412,o), +(228,462,o), +(308,462,cs), +(351,462,ls), +(364,462,o), +(374,471,o), +(377,484,cs), +(380,498,ls), +(383,511,o), +(376,520,o), +(363,520,cs), +(326,520,ls), +(259,520,o), +(206,497,o), +(175,451,c), +(185,497,ls), +(188,510,o), +(180,520,o), +(167,520,cs), +(151,520,ls), +(138,520,o), +(127,510,o), +(124,497,cs), +(23,22,ls), +(20,9,o), +(28,0,o), +(41,0,cs) +); +} +); +width = 350; +}, +{ +anchors = ( +{ +name = bottom; +pos = (114,0); +}, +{ +name = top; +pos = (317,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(200,0,ls), +(215,0,o), +(229,12,o), +(232,27,cs), +(280,250,ls), +(289,290,o), +(312,310,o), +(352,310,cs), +(481,310,ls), +(496,310,o), +(511,322,o), +(514,337,cs), +(547,493,ls), +(550,508,o), +(541,520,o), +(526,520,cs), +(458,520,ls), +(383,520,o), +(342,494,o), +(309,458,c), +(316,493,ls), +(319,508,o), +(310,520,o), +(295,520,cs), +(120,520,ls), +(105,520,o), +(90,508,o), +(87,493,cs), +(-12,27,ls), +(-15,12,o), +(-5,0,o), +(10,0,cs) +); +} +); +width = 519; +} +); +unicode = 114; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 462; +} +); +}; +}, +{ +color = 10; +glyphname = racute; +kernLeft = n; +kernRight = r; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = r; +}, +{ +pos = (192,0); +ref = acutecomb; +} +); +width = 350; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = r; +}, +{ +pos = (208,0); +ref = acutecomb; +} +); +width = 519; +} +); +unicode = 341; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 285; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = rcaron; +kernLeft = n; +kernRight = r; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = r; +}, +{ +pos = (120,0); +ref = caroncomb; +} +); +width = 350; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = r; +}, +{ +pos = (121,0); +ref = caroncomb; +} +); +width = 519; +} +); +unicode = 345; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = rcommaaccent; +kernLeft = n; +kernRight = r; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = r; +}, +{ +pos = (-39,0); +ref = commaaccentcomb; +} +); +width = 350; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-20,0); +ref = commaaccentcomb; +} +); +width = 519; +} +); +unicode = 343; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 198; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = s; +kernLeft = s; +kernRight = s; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (211,0); +}, +{ +name = top; +pos = (290,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(325,-10,o), +(409,59,o), +(426,139,cs), +(442,214,o), +(410,259,o), +(288,288,cs), +(168,317,o), +(146,340,o), +(156,385,cs), +(167,435,o), +(213,472,o), +(293,472,cs), +(373,472,o), +(390,443,o), +(405,411,cs), +(408,403,o), +(413,398,o), +(424,398,cs), +(439,398,ls), +(451,398,o), +(464,407,o), +(465,420,cs), +(470,449,o), +(435,530,o), +(305,530,cs), +(185,530,o), +(110,455,o), +(95,385,cs), +(81,320,o), +(98,270,o), +(218,241,cs), +(338,212,o), +(376,194,o), +(365,139,cs), +(352,79,o), +(287,48,o), +(207,48,cs), +(127,48,o), +(99,79,o), +(81,114,cs), +(75,126,o), +(70,127,o), +(62,127,cs), +(47,127,ls), +(38,127,o), +(23,120,o), +(21,105,cs), +(17,78,o), +(55,-10,o), +(195,-10,cs) +); +} +); +width = 492; +}, +{ +anchors = ( +{ +name = bottom; +pos = (240,0); +}, +{ +name = top; +pos = (330,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(418,-10,o), +(532,55,o), +(555,162,cs), +(569,230,o), +(535,309,o), +(395,330,cs), +(295,345,o), +(291,357,o), +(295,374,cs), +(297,383,o), +(308,390,o), +(318,390,cs), +(347,390,o), +(356,360,o), +(385,360,cs), +(388,360,o), +(392,360,o), +(395,360,c), +(553,360,ls), +(565,360,o), +(578,372,o), +(580,387,cs), +(590,444,o), +(514,530,o), +(349,530,cs), +(184,530,o), +(78,445,o), +(60,359,cs), +(37,254,o), +(118,209,o), +(207,192,cs), +(302,174,o), +(305,162,o), +(301,145,cs), +(299,135,o), +(286,130,o), +(275,130,cs), +(244,130,o), +(235,157,o), +(209,160,cs), +(208,160,o), +(206,160,o), +(205,160,cs), +(31,160,ls), +(17,160,o), +(4,148,o), +(1,133,cs), +(-7,80,o), +(46,-10,o), +(238,-10,cs) +); +} +); +width = 590; +} +); +unicode = 115; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 265; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 139; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 250; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = sacute; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = s; +}, +{ +pos = (237,0); +ref = acutecomb; +} +); +width = 492; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = s; +}, +{ +pos = (221,0); +ref = acutecomb; +} +); +width = 590; +} +); +unicode = 347; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 249; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = scaron; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = s; +}, +{ +pos = (165,0); +ref = caroncomb; +} +); +width = 492; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = s; +}, +{ +pos = (134,0); +ref = caroncomb; +} +); +width = 590; +} +); +unicode = 353; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 249; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = scedilla; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(233,-221,o), +(273,-180,o), +(283,-132,cs), +(293,-84,o), +(269,-50,o), +(225,-50,cs), +(215,-50,o), +(205,-52,o), +(196,-54,c), +(219,-10,l), +(335,-2,o), +(410,63,o), +(426,139,cs), +(442,214,o), +(410,259,o), +(288,288,cs), +(168,317,o), +(146,340,o), +(156,385,cs), +(167,435,o), +(213,472,o), +(293,472,cs), +(373,472,o), +(390,443,o), +(405,411,cs), +(408,403,o), +(413,398,o), +(424,398,cs), +(439,398,ls), +(451,398,o), +(464,407,o), +(465,420,cs), +(470,449,o), +(435,530,o), +(305,530,cs), +(185,530,o), +(110,455,o), +(95,385,cs), +(81,320,o), +(98,270,o), +(218,241,cs), +(338,212,o), +(376,194,o), +(365,139,cs), +(352,79,o), +(287,48,o), +(207,48,cs), +(127,48,o), +(99,79,o), +(81,114,cs), +(75,126,o), +(70,127,o), +(62,127,cs), +(47,127,ls), +(38,127,o), +(23,120,o), +(21,105,cs), +(16,79,o), +(49,3,o), +(168,-8,c), +(143,-52,ls), +(137,-62,o), +(131,-75,o), +(137,-83,cs), +(149,-100,ls), +(161,-116,o), +(178,-96,o), +(197,-96,cs), +(220,-96,o), +(237,-110,o), +(232,-134,cs), +(226,-159,o), +(203,-174,o), +(180,-174,cs), +(136,-174,o), +(136,-140,o), +(116,-156,cs), +(99,-169,ls), +(80,-184,o), +(114,-219,o), +(170,-220,cs) +); +} +); +width = 492; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(283,-220,o), +(330,-183,o), +(342,-130,cs), +(353,-77,o), +(331,-40,o), +(280,-40,cs), +(276,-40,o), +(257,-42,o), +(249,-45,c), +(274,-9,l), +(434,0,o), +(533,63,o), +(555,162,cs), +(569,230,o), +(535,309,o), +(395,330,cs), +(295,345,o), +(291,357,o), +(295,374,cs), +(297,383,o), +(308,390,o), +(318,390,cs), +(347,390,o), +(356,360,o), +(385,360,cs), +(388,360,o), +(390,360,o), +(393,360,cs), +(553,360,ls), +(565,360,o), +(578,372,o), +(580,387,cs), +(590,444,o), +(514,530,o), +(349,530,cs), +(184,530,o), +(78,445,o), +(60,359,cs), +(37,254,o), +(118,209,o), +(207,192,cs), +(302,174,o), +(305,162,o), +(301,145,cs), +(299,135,o), +(286,130,o), +(275,130,cs), +(242,130,o), +(234,160,o), +(205,160,cs), +(202,160,o), +(200,160,o), +(197,160,cs), +(31,160,ls), +(17,160,o), +(4,148,o), +(1,133,cs), +(-7,82,o), +(40,5,o), +(211,-9,c), +(182,-52,ls), +(169,-71,o), +(170,-76,o), +(177,-85,cs), +(194,-106,ls), +(204,-119,o), +(230,-106,o), +(248,-106,cs), +(268,-106,o), +(273,-118,o), +(271,-130,cs), +(268,-142,o), +(256,-154,o), +(237,-154,cs), +(203,-154,o), +(202,-136,o), +(182,-151,cs), +(157,-169,ls), +(130,-189,o), +(170,-220,o), +(223,-220,cs) +); +} +); +width = 590; +} +); +unicode = 351; +}, +{ +color = 10; +glyphname = scircumflex; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = s; +}, +{ +pos = (135,0); +ref = circumflexcomb; +} +); +width = 492; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = s; +}, +{ +pos = (102,0); +ref = circumflexcomb; +} +); +width = 590; +} +); +unicode = 349; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 249; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = scommaaccent; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = s; +}, +{ +pos = (125,0); +ref = commaaccentcomb; +} +); +width = 492; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = s; +}, +{ +pos = (106,0); +ref = commaaccentcomb; +} +); +width = 590; +} +); +unicode = 537; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 249; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = germandbls; +kernLeft = h; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (229,0); +}, +{ +name = top; +pos = (339,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(72,0,ls), +(85,0,o), +(96,9,o), +(99,22,cs), +(200,497,ls), +(222,601,o), +(289,652,o), +(374,652,cs), +(459,652,o), +(505,600,o), +(489,528,cs), +(473,449,o), +(417,406,o), +(317,405,cs), +(262,405,ls), +(249,405,o), +(238,396,o), +(236,383,cs), +(233,369,ls), +(230,356,o), +(237,347,o), +(250,347,cs), +(315,347,ls), +(424,347,o), +(466,283,o), +(449,202,cs), +(432,122,o), +(363,58,o), +(254,58,c), +(189,58,ls), +(176,58,o), +(165,49,o), +(162,36,cs), +(159,22,ls), +(156,9,o), +(163,0,o), +(176,0,cs), +(251,0,ls), +(407,0,o), +(491,113,o), +(510,202,cs), +(525,272,o), +(517,347,o), +(428,377,c), +(472,395,o), +(532,442,o), +(550,528,cs), +(569,613,o), +(531,710,o), +(386,710,cs), +(241,710,o), +(163,611,o), +(140,502,cs), +(38,22,ls), +(35,9,o), +(42,0,o), +(55,0,cs) +); +} +); +width = 568; +}, +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +}, +{ +name = top; +pos = (396,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,0,ls), +(216,0,o), +(231,12,o), +(234,27,c), +(326,459,ls), +(338,518,o), +(367,541,o), +(406,541,c), +(445,541,o), +(464,518,o), +(458,489,cs), +(452,460,o), +(421,439,o), +(383,438,c), +(380,438,l), +(355,438,o), +(349,426,o), +(346,411,cs), +(325,313,ls), +(322,298,o), +(327,286,o), +(348,286,c), +(350,286,l), +(396,286,o), +(416,262,o), +(408,227,cs), +(401,191,o), +(367,168,o), +(329,168,c), +(327,168,l), +(306,169,o), +(291,156,o), +(288,141,cs), +(264,27,ls), +(261,12,o), +(270,0,o), +(291,0,c), +(326,0,l), +(520,0,o), +(630,113,o), +(652,216,cs), +(671,303,o), +(645,348,o), +(597,375,c), +(645,407,o), +(671,447,o), +(683,502,cs), +(705,608,o), +(648,709,o), +(442,710,c), +(236,709,o), +(123,598,o), +(92,452,cs), +(2,27,ls), +(-1,12,o), +(8,0,o), +(23,0,cs) +); +} +); +width = 682; +} +); +unicode = 223; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 527; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 601; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 267; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 499; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = longs; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (80,0); +}, +{ +name = top; +pos = (190,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(102,0,ls), +(115,0,o), +(125,9,o), +(128,22,c), +(245,572,ls), +(260,643,o), +(295,682,o), +(365,682,cs), +(410,682,ls), +(423,682,o), +(434,691,o), +(437,704,cs), +(440,718,ls), +(443,731,o), +(436,740,o), +(423,740,cs), +(365,740,ls), +(261,740,o), +(204,666,o), +(185,577,cs), +(173,520,l), +(84,520,l), +(71,520,o), +(60,511,o), +(57,498,c), +(54,484,ls), +(51,471,o), +(59,462,o), +(72,462,cs), +(161,462,l), +(67,22,ls), +(64,9,o), +(72,0,o), +(85,0,cs) +); +} +); +width = 269; +}, +{ +anchors = ( +{ +name = bottom; +pos = (138,0); +}, +{ +name = top; +pos = (248,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(266,0,o), +(280,12,o), +(283,27,cs), +(391,532,ls), +(395,553,o), +(411,565,o), +(441,565,cs), +(522,565,ls), +(537,565,o), +(551,577,o), +(554,592,cs), +(580,713,ls), +(583,728,o), +(574,740,o), +(559,740,cs), +(446,740,ls), +(301,740,o), +(198,701,o), +(163,537,cs), +(159,520,l), +(90,520,ls), +(75,520,o), +(60,508,o), +(57,493,cs), +(32,372,l), +(28,357,o), +(38,345,o), +(53,345,cs), +(122,345,l), +(54,27,ls), +(51,12,o), +(61,0,o), +(76,0,cs) +); +} +); +width = 386; +} +); +unicode = 383; +}, +{ +color = 6; +glyphname = t; +kernLeft = t; +kernRight = t; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (161,0); +}, +{ +name = center; +pos = (169,293); +}, +{ +name = top; +pos = (231,520); +}, +{ +name = topright; +pos = (365,770); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(247,0,ls), +(260,0,o), +(270,9,o), +(273,22,cs), +(276,36,ls), +(279,49,o), +(272,58,o), +(259,58,cs), +(199,58,ls), +(124,58,o), +(134,100,o), +(149,171,cs), +(211,462,l), +(335,462,ls), +(348,462,o), +(358,471,o), +(361,484,cs), +(364,498,ls), +(367,511,o), +(360,520,o), +(347,520,cs), +(223,520,l), +(259,688,ls), +(262,701,o), +(254,710,o), +(241,710,cs), +(224,710,ls), +(211,710,o), +(201,701,o), +(198,688,cs), +(162,520,l), +(84,520,ls), +(71,520,o), +(60,511,o), +(57,498,cs), +(54,484,ls), +(51,471,o), +(59,462,o), +(72,462,cs), +(150,462,l), +(87,167,ls), +(67,73,o), +(68,0,o), +(198,0,cs) +); +} +); +width = 351; +}, +{ +anchors = ( +{ +name = bottom; +pos = (259,0); +}, +{ +name = center; +pos = (229,260); +}, +{ +name = top; +pos = (320,520); +}, +{ +name = topright; +pos = (532,810); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(415,0,ls), +(430,0,o), +(444,12,o), +(447,27,cs), +(475,158,ls), +(478,173,o), +(469,185,o), +(454,185,cs), +(363,185,ls), +(333,185,o), +(323,204,o), +(330,235,cs), +(354,345,l), +(480,345,ls), +(495,345,o), +(510,357,o), +(513,372,cs), +(538,493,ls), +(541,508,o), +(532,520,o), +(517,520,cs), +(391,520,l), +(426,683,ls), +(429,698,o), +(419,710,o), +(404,710,cs), +(229,710,ls), +(214,710,o), +(200,698,o), +(197,683,cs), +(162,520,l), +(83,520,ls), +(68,520,o), +(53,508,o), +(50,493,cs), +(25,372,ls), +(22,357,o), +(31,345,o), +(46,345,cs), +(125,345,l), +(97,215,ls), +(62,51,o), +(167,0,o), +(312,0,cs) +); +} +); +width = 529; +} +); +unicode = 116; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 175; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 342; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 35; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = tbar; +kernLeft = t; +kernRight = t; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(253,0,l), +(266,0,o), +(276,9,o), +(279,22,c), +(282,36,l), +(285,49,o), +(278,58,o), +(265,58,c), +(205,58,l), +(130,58,o), +(140,100,o), +(155,171,c), +(183,304,l), +(307,304,l), +(320,304,o), +(331,313,o), +(334,326,c), +(337,340,l), +(340,353,o), +(332,362,o), +(319,362,c), +(195,362,l), +(217,462,l), +(341,462,l), +(354,462,o), +(365,471,o), +(367,484,c), +(370,498,l), +(373,511,o), +(366,520,o), +(353,520,c), +(229,520,l), +(265,688,l), +(268,701,o), +(260,710,o), +(247,710,c), +(230,710,l), +(217,710,o), +(207,701,o), +(204,688,c), +(168,520,l), +(90,520,l), +(77,520,o), +(66,511,o), +(63,498,c), +(60,484,l), +(58,471,o), +(65,462,o), +(78,462,c), +(156,462,l), +(134,362,l), +(56,362,l), +(43,362,o), +(33,353,o), +(30,340,cs), +(27,326,ls), +(24,313,o), +(31,304,o), +(44,304,cs), +(122,304,l), +(93,167,l), +(73,73,o), +(74,0,o), +(204,0,c) +); +} +); +width = 359; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(417,0,ls), +(432,0,o), +(446,12,o), +(449,27,cs), +(477,158,ls), +(480,173,o), +(471,185,o), +(456,185,cs), +(365,185,ls), +(335,185,o), +(326,204,o), +(332,235,cs), +(339,265,l), +(465,265,ls), +(480,265,o), +(494,277,o), +(498,292,cs), +(508,343,ls), +(512,358,o), +(502,370,o), +(487,370,cs), +(361,370,l), +(371,415,l), +(497,415,ls), +(512,415,o), +(526,427,o), +(529,442,cs), +(540,493,ls), +(543,508,o), +(534,520,o), +(519,520,cs), +(393,520,l), +(428,683,ls), +(431,698,o), +(421,710,o), +(406,710,cs), +(231,710,ls), +(216,710,o), +(202,698,o), +(199,683,cs), +(164,520,l), +(85,520,ls), +(70,520,o), +(55,508,o), +(52,493,cs), +(41,442,ls), +(38,427,o), +(48,415,o), +(63,415,cs), +(142,415,l), +(132,370,l), +(53,370,ls), +(38,370,o), +(24,358,o), +(20,343,cs), +(10,292,ls), +(6,277,o), +(16,265,o), +(31,265,cs), +(110,265,l), +(99,215,ls), +(64,51,o), +(159,0,o), +(304,0,cs) +); +} +); +width = 531; +} +); +unicode = 359; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 342; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = tcaron; +kernLeft = t; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = t; +}, +{ +pos = (143,70); +ref = caroncomb.alt; +} +); +width = 351; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = t; +}, +{ +pos = (227,110); +ref = caroncomb.alt; +} +); +width = 529; +} +); +unicode = 357; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 343; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = tcommaaccent; +kernLeft = t; +kernRight = t; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = t; +}, +{ +pos = (75,0); +ref = commaaccentcomb; +} +); +width = 351; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = t; +}, +{ +pos = (125,0); +ref = commaaccentcomb; +} +); +width = 529; +} +); +unicode = 539; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 167; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = u; +kernLeft = u; +kernRight = u; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (238,0); +}, +{ +name = ogonek; +pos = (453,57); +}, +{ +name = top; +pos = (328,520); +}, +{ +name = topright; +pos = (621,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(349,22,o), +(395,69,c), +(385,22,ls), +(382,9,o), +(390,0,o), +(403,0,cs), +(420,0,ls), +(433,0,o), +(443,9,o), +(446,22,cs), +(547,498,ls), +(550,511,o), +(543,520,o), +(530,520,cs), +(513,520,ls), +(500,520,o), +(489,511,o), +(486,498,cs), +(427,219,ls), +(404,112,o), +(322,48,o), +(222,48,cs), +(112,48,o), +(97,106,o), +(121,219,cs), +(180,498,ls), +(183,511,o), +(176,520,o), +(163,520,cs), +(146,520,ls), +(133,520,o), +(122,511,o), +(119,498,cs), +(59,214,ls), +(32,87,o), +(69,-10,o), +(222,-10,cs) +); +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottom; +pos = (282,0); +}, +{ +name = ogonek; +pos = (553,10); +}, +{ +name = top; +pos = (375,520); +}, +{ +name = topright; +pos = (708,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(259,-10,o), +(306,11,o), +(349,60,c), +(342,27,ls), +(339,12,o), +(349,0,o), +(364,0,cs), +(539,0,ls), +(554,0,o), +(568,12,o), +(571,27,cs), +(670,493,ls), +(673,508,o), +(664,520,o), +(649,520,cs), +(459,520,ls), +(444,520,o), +(429,508,o), +(426,493,cs), +(369,224,ls), +(361,188,o), +(339,169,o), +(307,169,cs), +(275,169,o), +(261,188,o), +(269,224,cs), +(326,493,ls), +(329,508,o), +(320,520,o), +(305,520,cs), +(114,520,ls), +(99,520,o), +(84,508,o), +(81,493,cs), +(23,217,l), +(-11,59,o), +(77,-10,o), +(178,-10,cs) +); +} +); +width = 673; +} +); +unicode = 117; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 432; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 126; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 65; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = uacute; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = u; +}, +{ +pos = (275,0); +ref = acutecomb; +} +); +width = 586; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = u; +}, +{ +pos = (266,0); +ref = acutecomb; +} +); +width = 673; +} +); +unicode = 250; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ubreve; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = u; +}, +{ +pos = (224,0); +ref = brevecomb; +} +); +width = 586; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = u; +}, +{ +pos = (217,0); +ref = brevecomb; +} +); +width = 673; +} +); +unicode = 365; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ucircumflex; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = u; +}, +{ +pos = (173,0); +ref = circumflexcomb; +} +); +width = 586; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = u; +}, +{ +pos = (147,0); +ref = circumflexcomb; +} +); +width = 673; +} +); +unicode = 251; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-1041"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = udieresis; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = u; +}, +{ +pos = (205,0); +ref = dieresiscomb; +} +); +width = 586; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = u; +}, +{ +pos = (161,0); +ref = dieresiscomb; +} +); +width = 673; +} +); +unicode = 252; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ugrave; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = u; +}, +{ +pos = (198,0); +ref = gravecomb; +} +); +width = 586; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = u; +}, +{ +pos = (144,0); +ref = gravecomb; +} +); +width = 673; +} +); +unicode = 249; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = uhungarumlaut; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = u; +}, +{ +pos = (208,0); +ref = hungarumlautcomb; +} +); +width = 586; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = u; +}, +{ +pos = (162,0); +ref = hungarumlautcomb; +} +); +width = 673; +} +); +unicode = 369; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = umacron; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = u; +}, +{ +pos = (201,0); +ref = macroncomb; +} +); +width = 586; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = u; +}, +{ +pos = (176,0); +ref = macroncomb; +} +); +width = 673; +} +); +unicode = 363; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = uogonek; +kernLeft = u; +kernRight = u; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (-370, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(386,-220,ls), +(399,-220,o), +(410,-211,o), +(413,-198,cs), +(416,-185,ls), +(419,-172,o), +(412,-163,o), +(399,-163,cs), +(394,-163,ls), +(360,-163,o), +(342,-141,o), +(353,-90,cs), +(363,-45,o), +(389,-21,o), +(436,-2,c), +(439,0,l), +(452,6,o), +(458,14,o), +(460,22,cs), +(561,498,ls), +(564,511,o), +(557,520,o), +(544,520,cs), +(527,520,ls), +(514,520,o), +(503,511,o), +(500,498,cs), +(441,219,ls), +(418,112,o), +(342,48,o), +(247,48,cs), +(147,48,o), +(111,106,o), +(135,219,cs), +(194,498,ls), +(197,511,o), +(190,520,o), +(177,520,cs), +(160,520,ls), +(147,520,o), +(136,511,o), +(133,498,cs), +(73,214,ls), +(46,87,o), +(89,-10,o), +(225,-10,cs), +(311,-10,o), +(363,22,o), +(409,69,c), +(403,43,l), +(403,40,o), +(402,38,o), +(402,35,c), +(362,18,o), +(307,-26,o), +(293,-90,cs), +(275,-175,o), +(316,-220,o), +(377,-220,cs) +); +} +); +width = 585; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(506,-220,ls), +(521,-220,o), +(536,-208,o), +(539,-193,cs), +(554,-125,ls), +(557,-110,o), +(547,-98,o), +(532,-98,cs), +(522,-98,ls), +(483,-98,o), +(478,-70,o), +(483,-49,cs), +(487,-29,o), +(503,-2,o), +(537,0,c), +(553,0,ls), +(568,0,o), +(583,12,o), +(586,27,cs), +(685,493,ls), +(688,508,o), +(679,520,o), +(664,520,cs), +(474,520,ls), +(459,520,o), +(444,508,o), +(441,493,cs), +(384,224,ls), +(376,188,o), +(354,169,o), +(322,169,cs), +(290,169,o), +(276,188,o), +(284,224,cs), +(341,493,ls), +(344,508,o), +(335,520,o), +(320,520,cs), +(129,520,ls), +(114,520,o), +(99,508,o), +(96,493,cs), +(37,217,ls), +(4,59,o), +(82,-10,o), +(183,-10,cs), +(254,-10,o), +(321,11,o), +(364,60,c), +(357,27,ls), +(354,14,o), +(361,3,o), +(372,0,c), +(366,-15,o), +(360,-32,o), +(357,-49,cs), +(337,-144,o), +(371,-220,o), +(492,-220,cs) +); +} +); +width = 674; +} +); +unicode = 371; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 213; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 493; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = uring; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = u; +}, +{ +pos = (247,0); +ref = ringcomb; +} +); +width = 586; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = u; +}, +{ +pos = (272,0); +ref = ringcomb; +} +); +width = 673; +} +); +unicode = 367; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = utilde; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = u; +}, +{ +pos = (196,0); +ref = tildecomb; +} +); +width = 586; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = u; +}, +{ +pos = (169,0); +ref = tildecomb; +} +); +width = 673; +} +); +unicode = 361; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = v; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (212,0); +}, +{ +name = top; +pos = (322,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(214,0,ls), +(235,0,o), +(245,10,o), +(254,25,c), +(536,489,ls), +(548,508,o), +(537,520,o), +(525,520,cs), +(501,520,ls), +(488,520,o), +(479,510,o), +(476,505,c), +(215,73,l), +(139,498,l), +(136,515,o), +(128,520,o), +(116,520,cs), +(97,520,ls), +(86,520,o), +(75,513,o), +(78,496,cs), +(163,25,l), +(166,10,o), +(172,0,o), +(193,0,c) +); +} +); +width = 533; +}, +{ +anchors = ( +{ +name = bottom; +pos = (261,0); +}, +{ +name = top; +pos = (371,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,0,ls), +(354,0,o), +(363,13,o), +(372,25,c), +(662,489,ls), +(671,503,o), +(666,520,o), +(646,520,cs), +(467,520,ls), +(447,520,o), +(435,507,o), +(429,496,cs), +(299,263,l), +(269,496,ls), +(267,507,o), +(261,520,o), +(241,520,cs), +(82,520,ls), +(58,520,o), +(49,505,o), +(52,489,cs), +(146,25,l), +(149,13,o), +(154,0,o), +(174,0,cs) +); +} +); +width = 632; +} +); +unicode = 118; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 267; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = w; +kernLeft = w; +kernRight = w; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (338,0); +}, +{ +name = top; +pos = (428,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(171,0,ls), +(189,0,o), +(201,8,o), +(210,25,cs), +(417,419,l), +(461,25,ls), +(463,8,o), +(472,0,o), +(490,0,cs), +(509,0,ls), +(527,0,o), +(537,7,o), +(546,25,cs), +(785,493,ls), +(792,507,o), +(790,520,o), +(772,520,cs), +(748,520,ls), +(735,520,o), +(728,510,o), +(726,505,cs), +(514,89,l), +(469,500,ls), +(468,508,o), +(464,520,o), +(447,520,cs), +(423,520,ls), +(406,520,o), +(398,508,o), +(394,500,c), +(178,89,l), +(141,505,ls), +(140,514,o), +(134,520,o), +(121,520,cs), +(104,520,ls), +(87,520,o), +(80,509,o), +(81,497,cs), +(124,25,ls), +(126,8,o), +(133,0,o), +(151,0,cs) +); +} +); +width = 786; +}, +{ +anchors = ( +{ +name = bottom; +pos = (381,0); +}, +{ +name = top; +pos = (473,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,0,ls), +(281,0,o), +(292,13,o), +(299,25,cs), +(414,227,l), +(452,25,ls), +(454,13,o), +(460,0,o), +(480,0,cs), +(614,0,ls), +(634,0,o), +(646,13,o), +(652,25,cs), +(896,488,l), +(903,502,o), +(898,520,o), +(880,520,cs), +(716,520,ls), +(696,520,o), +(682,507,o), +(677,496,cs), +(572,288,l), +(551,496,ls), +(550,507,o), +(542,520,o), +(522,520,cs), +(429,520,ls), +(409,520,o), +(396,507,o), +(390,496,cs), +(281,288,l), +(264,496,ls), +(263,507,o), +(255,520,o), +(235,520,cs), +(86,520,ls), +(70,520,o), +(54,504,o), +(56,488,cs), +(104,25,ls), +(105,13,o), +(112,0,o), +(132,0,cs) +); +} +); +width = 872; +} +); +unicode = 119; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 45; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 737; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = wacute; +kernLeft = w; +kernRight = w; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = w; +}, +{ +pos = (375,0); +ref = acutecomb; +} +); +width = 786; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = w; +}, +{ +pos = (364,0); +ref = acutecomb; +} +); +width = 872; +} +); +unicode = 7811; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 392; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = wcircumflex; +kernLeft = w; +kernRight = w; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = w; +}, +{ +pos = (273,0); +ref = circumflexcomb; +} +); +width = 786; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = w; +}, +{ +pos = (245,0); +ref = circumflexcomb; +} +); +width = 872; +} +); +unicode = 373; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 575; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 392; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = wdieresis; +kernLeft = w; +kernRight = w; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = w; +}, +{ +pos = (305,0); +ref = dieresiscomb; +} +); +width = 786; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = w; +}, +{ +pos = (259,0); +ref = dieresiscomb; +} +); +width = 872; +} +); +unicode = 7813; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 392; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = wgrave; +kernLeft = w; +kernRight = w; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = w; +}, +{ +pos = (298,0); +ref = gravecomb; +} +); +width = 786; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = w; +}, +{ +pos = (242,0); +ref = gravecomb; +} +); +width = 872; +} +); +unicode = 7809; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 392; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = x; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (204,0); +}, +{ +name = top; +pos = (314,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(15,0,l), +(35,0,o), +(42,9,o), +(48,15,c), +(243,212,l), +(354,15,ls), +(358,8,o), +(366,0,o), +(379,0,c), +(398,0,l), +(416,0,o), +(421,17,o), +(413,31,cs), +(289,253,l), +(518,485,ls), +(534,501,o), +(519,521,o), +(505,520,c), +(489,520,l), +(469,520,o), +(462,511,o), +(456,505,c), +(258,306,l), +(146,505,l), +(142,512,o), +(135,520,o), +(122,520,c), +(103,520,l), +(85,520,o), +(80,501,o), +(87,489,c), +(213,266,l), +(-17,34,ls), +(-30,21,o), +(-20,0,o), +(-3,0,cs) +); +} +); +width = 517; +}, +{ +anchors = ( +{ +name = bottom; +pos = (261,0); +}, +{ +name = top; +pos = (371,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(160,0,l), +(178,0,o), +(188,11,o), +(193,17,c), +(280,113,l), +(324,17,l), +(328,10,o), +(333,0,o), +(351,0,c), +(533,0,l), +(557,0,o), +(568,20,o), +(560,37,c), +(457,262,l), +(654,483,l), +(666,495,o), +(664,520,o), +(642,520,c), +(450,520,l), +(430,520,o), +(419,507,o), +(414,501,c), +(340,419,l), +(302,501,l), +(299,507,o), +(294,520,o), +(274,520,c), +(97,520,l), +(79,520,o), +(63,500,o), +(69,483,c), +(165,275,l), +(-50,37,l), +(-61,23,o), +(-58,0,o), +(-37,0,c) +); +} +); +width = 631; +} +); +unicode = 120; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 255; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = y; +kernLeft = y; +kernRight = y; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (212,0); +}, +{ +name = top; +pos = (308,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(86,-190,l), +(99,-190,o), +(107,-183,o), +(112,-175,cs), +(543,491,ls), +(555,509,o), +(541,520,o), +(530,520,cs), +(506,520,l), +(493,520,o), +(485,513,o), +(480,505,c), +(223,108,l), +(138,505,ls), +(136,514,o), +(130,520,o), +(117,520,c), +(99,520,l), +(80,520,o), +(75,507,o), +(78,494,c), +(176,35,l), +(53,-157,ls), +(41,-175,o), +(48,-190,o), +(63,-190,cs) +); +} +); +width = 534; +}, +{ +anchors = ( +{ +name = bottom; +pos = (268,0); +}, +{ +name = top; +pos = (378,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(219,-190,ls), +(239,-190,o), +(252,-178,o), +(259,-166,cs), +(680,489,l), +(687,502,o), +(684,520,o), +(665,520,cs), +(488,520,ls), +(468,520,o), +(456,508,o), +(449,496,cs), +(311,268,l), +(272,496,ls), +(270,507,o), +(265,520,o), +(245,520,cs), +(86,520,ls), +(64,520,o), +(52,505,o), +(55,489,cs), +(152,33,l), +(31,-159,ls), +(22,-173,o), +(29,-190,o), +(45,-190,cs) +); +} +); +width = 646; +} +); +unicode = 121; +}, +{ +color = 10; +glyphname = yacute; +kernLeft = y; +kernRight = y; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = y; +}, +{ +pos = (255,0); +ref = acutecomb; +} +); +width = 534; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = y; +}, +{ +pos = (269,0); +ref = acutecomb; +} +); +width = 646; +} +); +unicode = 253; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 267; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ycircumflex; +kernLeft = y; +kernRight = y; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = y; +}, +{ +pos = (153,0); +ref = circumflexcomb; +} +); +width = 534; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = y; +}, +{ +pos = (150,0); +ref = circumflexcomb; +} +); +width = 646; +} +); +unicode = 375; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 575; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 267; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ydieresis; +kernLeft = y; +kernRight = y; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = y; +}, +{ +pos = (185,0); +ref = dieresiscomb; +} +); +width = 534; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = y; +}, +{ +pos = (164,0); +ref = dieresiscomb; +} +); +width = 646; +} +); +unicode = 255; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 267; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ygrave; +kernLeft = y; +kernRight = y; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = y; +}, +{ +pos = (178,0); +ref = gravecomb; +} +); +width = 534; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = y; +}, +{ +pos = (147,0); +ref = gravecomb; +} +); +width = 646; +} +); +unicode = 7923; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 267; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = z; +kernLeft = z; +kernRight = z; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (188,0); +}, +{ +name = center; +pos = (243,260); +}, +{ +name = top; +pos = (290,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(366,0,ls), +(379,0,o), +(389,9,o), +(392,22,cs), +(395,36,ls), +(398,49,o), +(391,58,o), +(378,58,cs), +(72,58,l), +(460,462,ls), +(466,468,o), +(469,473,o), +(470,481,cs), +(473,498,ls), +(475,511,o), +(469,520,o), +(456,520,cs), +(120,520,ls), +(107,520,o), +(96,511,o), +(93,498,cs), +(90,484,ls), +(87,471,o), +(95,462,o), +(108,462,cs), +(384,462,l), +(-5,58,ls), +(-10,52,o), +(-12,48,o), +(-14,39,cs), +(-18,22,ls), +(-21,9,o), +(-13,0,o), +(0,0,cs) +); +} +); +width = 486; +}, +{ +anchors = ( +{ +name = bottom; +pos = (241,0); +}, +{ +name = center; +pos = (296,260); +}, +{ +name = top; +pos = (351,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(471,0,ls), +(486,0,o), +(500,12,o), +(503,27,cs), +(528,145,ls), +(532,160,o), +(522,172,o), +(507,172,cs), +(319,172,l), +(534,338,l), +(545,346,o), +(552,355,o), +(555,367,cs), +(581,493,ls), +(584,508,o), +(575,520,o), +(560,520,cs), +(118,520,ls), +(103,520,o), +(88,508,o), +(85,493,cs), +(60,375,ls), +(57,360,o), +(66,348,o), +(81,348,cs), +(252,348,l), +(27,177,ls), +(16,169,o), +(7,158,o), +(4,142,cs), +(-21,27,ls), +(-24,12,o), +(-14,0,o), +(1,0,cs) +); +} +); +width = 591; +} +); +unicode = 122; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 36; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 480; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = zacute; +kernLeft = z; +kernRight = z; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = z; +}, +{ +pos = (237,0); +ref = acutecomb; +} +); +width = 486; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = z; +}, +{ +pos = (242,0); +ref = acutecomb; +} +); +width = 591; +} +); +unicode = 378; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = zcaron; +kernLeft = z; +kernRight = z; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = z; +}, +{ +pos = (165,0); +ref = caroncomb; +} +); +width = 486; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = z; +}, +{ +pos = (155,0); +ref = caroncomb; +} +); +width = 591; +} +); +unicode = 382; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = zdotaccent; +kernLeft = z; +kernRight = z; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = z; +}, +{ +pos = (233,0); +ref = dotaccentcomb; +} +); +width = 486; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = z; +}, +{ +pos = (252,0); +ref = dotaccentcomb; +} +); +width = 591; +} +); +unicode = 380; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = f_f; +kernLeft = f; +kernRight = f; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (319,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(529,572,l), +(544,643,o), +(579,682,o), +(649,682,c), +(694,682,l), +(707,682,o), +(718,691,o), +(721,704,c), +(724,718,l), +(727,731,o), +(720,740,o), +(707,740,c), +(649,740,l), +(545,740,o), +(488,666,o), +(469,577,c), +(457,520,l), +(236,520,l), +(247,572,l), +(262,643,o), +(297,682,o), +(367,682,c), +(412,682,l), +(425,682,o), +(436,691,o), +(439,704,c), +(442,718,l), +(445,731,o), +(438,740,o), +(425,740,c), +(367,740,l), +(263,740,o), +(206,666,o), +(187,577,c), +(175,520,l), +(86,520,l), +(73,520,o), +(62,511,o), +(59,498,c), +(56,484,l), +(54,471,o), +(61,462,o), +(74,462,c), +(163,462,l), +(69,22,l), +(66,9,o), +(74,0,o), +(87,0,c), +(104,0,l), +(117,0,o), +(127,9,o), +(130,22,c), +(224,462,l), +(445,462,l), +(351,22,l), +(348,9,o), +(356,0,o), +(369,0,c), +(386,0,l), +(399,0,o), +(409,9,o), +(412,22,c), +(506,462,l), +(638,462,l), +(651,462,o), +(662,471,o), +(664,484,c), +(667,498,l), +(670,511,o), +(663,520,o), +(650,520,c), +(518,520,l) +); +} +); +width = 638; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (451.5,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(803,532,l), +(807,553,o), +(823,565,o), +(853,565,c), +(934,565,l), +(949,565,o), +(963,577,o), +(966,592,c), +(992,713,l), +(995,728,o), +(986,740,o), +(971,740,c), +(858,740,l), +(713,740,o), +(610,701,o), +(575,537,c), +(571,520,l), +(388,520,l), +(391,532,l), +(395,553,o), +(411,565,o), +(441,565,c), +(522,565,l), +(537,565,o), +(551,577,o), +(554,592,c), +(580,713,l), +(583,728,o), +(574,740,o), +(559,740,c), +(446,740,l), +(301,740,o), +(198,701,o), +(163,537,c), +(159,520,l), +(90,520,l), +(75,520,o), +(60,508,o), +(57,493,c), +(32,372,l), +(28,357,o), +(38,345,o), +(53,345,c), +(122,345,l), +(54,27,l), +(51,12,o), +(61,0,o), +(76,0,c), +(251,0,l), +(266,0,o), +(280,12,o), +(283,27,c), +(351,345,l), +(534,345,l), +(466,27,l), +(463,12,o), +(473,0,o), +(488,0,c), +(663,0,l), +(678,0,o), +(692,12,o), +(695,27,c), +(763,345,l), +(877,345,l), +(892,345,o), +(906,357,o), +(910,372,c), +(935,493,l), +(938,508,o), +(929,520,o), +(914,520,c), +(800,520,l) +); +} +); +width = 903; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 345; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 740; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 297; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 371; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = f_f_i; +kernLeft = f; +kernRight = i; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (258.333,0); +}, +{ +name = caret_2; +pos = (516.667,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(104,0,l), +(117,0,o), +(127,9,o), +(130,22,c), +(224,462,l), +(445,462,l), +(351,22,l), +(348,9,o), +(356,0,o), +(369,0,c), +(386,0,l), +(399,0,o), +(409,9,o), +(412,22,c), +(506,462,l), +(667,462,l), +(574,22,l), +(571,9,o), +(579,0,o), +(592,0,c), +(609,0,l), +(622,0,o), +(632,9,o), +(635,22,c), +(736,498,l), +(739,511,o), +(732,520,o), +(719,520,c), +(518,520,l), +(529,572,l), +(544,643,o), +(579,682,o), +(649,682,c), +(753,682,l), +(766,682,o), +(777,691,o), +(780,704,c), +(783,718,l), +(786,731,o), +(779,740,o), +(766,740,c), +(649,740,l), +(545,740,o), +(488,666,o), +(469,577,c), +(457,520,l), +(236,520,l), +(247,572,l), +(262,643,o), +(297,682,o), +(367,682,c), +(412,682,l), +(425,682,o), +(436,691,o), +(439,704,c), +(442,718,l), +(445,731,o), +(438,740,o), +(425,740,c), +(367,740,l), +(263,740,o), +(206,666,o), +(187,577,c), +(175,520,l), +(86,520,l), +(73,520,o), +(62,511,o), +(59,498,c), +(56,484,l), +(54,471,o), +(61,462,o), +(74,462,c), +(163,462,l), +(69,22,l), +(66,9,o), +(74,0,o), +(87,0,c) +); +} +); +width = 775; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (399,0); +}, +{ +name = caret_2; +pos = (798,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,l), +(266,0,o), +(280,12,o), +(283,27,c), +(351,345,l), +(534,345,l), +(466,27,l), +(463,12,o), +(473,0,o), +(488,0,c), +(663,0,l), +(678,0,o), +(692,12,o), +(695,27,c), +(763,345,l), +(933,345,l), +(866,27,l), +(863,12,o), +(873,0,o), +(888,0,c), +(1063,0,l), +(1078,0,o), +(1092,12,o), +(1095,27,c), +(1194,493,l), +(1197,508,o), +(1188,520,o), +(1173,520,c), +(800,520,l), +(803,532,l), +(807,553,o), +(823,565,o), +(853,565,c), +(1183,565,l), +(1198,565,o), +(1212,577,o), +(1215,592,c), +(1241,713,l), +(1244,728,o), +(1235,740,o), +(1220,740,c), +(858,740,l), +(713,740,o), +(610,701,o), +(575,537,c), +(571,520,l), +(388,520,l), +(391,532,l), +(395,553,o), +(411,565,o), +(441,565,c), +(522,565,l), +(537,565,o), +(551,577,o), +(554,592,c), +(580,713,l), +(583,728,o), +(574,740,o), +(559,740,c), +(446,740,l), +(301,740,o), +(198,701,o), +(163,537,c), +(159,520,l), +(90,520,l), +(75,520,o), +(60,508,o), +(57,493,c), +(32,372,l), +(28,357,o), +(38,345,o), +(53,345,c), +(122,345,l), +(54,27,l), +(51,12,o), +(61,0,o), +(76,0,c) +); +} +); +width = 1197; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 712; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = f_f_l; +kernLeft = f; +kernRight = l; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (278.333,0); +}, +{ +name = caret_2; +pos = (556.667,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(104,0,l), +(117,0,o), +(127,9,o), +(130,22,c), +(224,462,l), +(445,462,l), +(351,22,l), +(348,9,o), +(356,0,o), +(369,0,c), +(386,0,l), +(399,0,o), +(409,9,o), +(412,22,c), +(506,462,l), +(726,462,l), +(633,22,l), +(630,9,o), +(638,0,o), +(651,0,c), +(668,0,l), +(681,0,o), +(691,9,o), +(694,22,c), +(842,718,l), +(845,731,o), +(837,740,o), +(824,740,c), +(807,740,l), +(794,740,o), +(784,731,o), +(781,718,c), +(739,520,l), +(518,520,l), +(529,572,l), +(544,643,o), +(579,682,o), +(649,682,c), +(694,682,l), +(707,682,o), +(718,691,o), +(721,704,c), +(724,718,l), +(727,731,o), +(720,740,o), +(707,740,c), +(649,740,l), +(545,740,o), +(488,666,o), +(469,577,c), +(457,520,l), +(236,520,l), +(247,572,l), +(262,643,o), +(297,682,o), +(367,682,c), +(412,682,l), +(425,682,o), +(436,691,o), +(439,704,c), +(442,718,l), +(445,731,o), +(438,740,o), +(425,740,c), +(367,740,l), +(263,740,o), +(206,666,o), +(187,577,c), +(175,520,l), +(86,520,l), +(73,520,o), +(62,511,o), +(59,498,c), +(56,484,l), +(54,471,o), +(61,462,o), +(74,462,c), +(163,462,l), +(69,22,l), +(66,9,o), +(74,0,o), +(87,0,c) +); +} +); +width = 835; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (403.333,0); +}, +{ +name = caret_2; +pos = (806.667,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,l), +(266,0,o), +(280,12,o), +(283,27,c), +(351,345,l), +(534,345,l), +(466,27,l), +(463,12,o), +(473,0,o), +(488,0,c), +(663,0,l), +(678,0,o), +(692,12,o), +(695,27,c), +(763,345,l), +(945,345,l), +(878,27,l), +(875,12,o), +(885,0,o), +(900,0,c), +(1075,0,l), +(1090,0,o), +(1104,12,o), +(1107,27,c), +(1253,713,l), +(1256,728,o), +(1246,740,o), +(1231,740,c), +(1056,740,l), +(1041,740,o), +(1027,728,o), +(1024,713,c), +(983,520,l), +(800,520,l), +(803,532,l), +(807,553,o), +(823,565,o), +(853,565,c), +(914,565,l), +(929,565,o), +(943,577,o), +(946,592,c), +(972,713,l), +(975,728,o), +(966,740,o), +(951,740,c), +(858,740,l), +(713,740,o), +(610,701,o), +(575,537,c), +(571,520,l), +(388,520,l), +(391,532,l), +(395,553,o), +(411,565,o), +(441,565,c), +(522,565,l), +(537,565,o), +(551,577,o), +(554,592,c), +(580,713,l), +(583,728,o), +(574,740,o), +(559,740,c), +(446,740,l), +(301,740,o), +(198,701,o), +(163,537,c), +(159,520,l), +(90,520,l), +(75,520,o), +(60,508,o), +(57,493,c), +(32,372,l), +(28,357,o), +(38,345,o), +(53,345,c), +(122,345,l), +(54,27,l), +(51,12,o), +(61,0,o), +(76,0,c) +); +} +); +width = 1210; +} +); +}, +{ +color = 6; +glyphname = fi; +kernLeft = f; +kernRight = i; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (246.5,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(104,0,l), +(117,0,o), +(127,9,o), +(130,22,c), +(224,462,l), +(385,462,l), +(292,22,l), +(289,9,o), +(297,0,o), +(310,0,c), +(327,0,l), +(340,0,o), +(350,9,o), +(353,22,c), +(454,498,l), +(457,511,o), +(450,520,o), +(437,520,c), +(236,520,l), +(247,572,l), +(262,643,o), +(297,682,o), +(367,682,c), +(471,682,l), +(484,682,o), +(495,691,o), +(498,704,c), +(501,718,l), +(504,731,o), +(497,740,o), +(484,740,c), +(367,740,l), +(263,740,o), +(206,666,o), +(187,577,c), +(175,520,l), +(86,520,l), +(73,520,o), +(62,511,o), +(59,498,c), +(56,484,l), +(54,471,o), +(61,462,o), +(74,462,c), +(163,462,l), +(69,22,l), +(66,9,o), +(74,0,o), +(87,0,c) +); +} +); +width = 493; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (392.5,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(266,0,o), +(280,12,o), +(283,27,cs), +(351,345,l), +(521,345,l), +(454,27,ls), +(451,12,o), +(461,0,o), +(476,0,cs), +(651,0,ls), +(666,0,o), +(680,12,o), +(683,27,cs), +(782,493,ls), +(785,508,o), +(776,520,o), +(761,520,cs), +(388,520,l), +(391,532,ls), +(395,553,o), +(411,565,o), +(441,565,cs), +(771,565,ls), +(786,565,o), +(800,577,o), +(803,592,cs), +(829,713,ls), +(832,728,o), +(823,740,o), +(808,740,cs), +(446,740,ls), +(301,740,o), +(198,701,o), +(163,537,cs), +(159,520,l), +(90,520,ls), +(75,520,o), +(60,508,o), +(57,493,cs), +(32,372,l), +(28,357,o), +(38,345,o), +(53,345,cs), +(122,345,l), +(54,27,ls), +(51,12,o), +(61,0,o), +(76,0,cs) +); +} +); +width = 785; +} +); +unicode = 64257; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 430; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 35; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = fl; +kernLeft = f; +kernRight = l; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (276.5,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(104,0,l), +(117,0,o), +(127,9,o), +(130,22,c), +(224,462,l), +(444,462,l), +(351,22,l), +(348,9,o), +(356,0,o), +(369,0,c), +(386,0,l), +(399,0,o), +(409,9,o), +(412,22,c), +(560,718,l), +(563,731,o), +(555,740,o), +(542,740,c), +(525,740,l), +(512,740,o), +(502,731,o), +(499,718,c), +(457,520,l), +(236,520,l), +(247,572,l), +(262,643,o), +(297,682,o), +(367,682,c), +(412,682,l), +(425,682,o), +(436,691,o), +(439,704,c), +(442,718,l), +(445,731,o), +(438,740,o), +(425,740,c), +(367,740,l), +(263,740,o), +(206,666,o), +(187,577,c), +(175,520,l), +(86,520,l), +(73,520,o), +(62,511,o), +(59,498,c), +(56,484,l), +(54,471,o), +(61,462,o), +(74,462,c), +(163,462,l), +(69,22,l), +(66,9,o), +(74,0,o), +(87,0,c) +); +} +); +width = 553; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (399,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(266,0,o), +(280,12,o), +(283,27,cs), +(351,345,l), +(533,345,l), +(466,27,ls), +(463,12,o), +(473,0,o), +(488,0,cs), +(663,0,ls), +(678,0,o), +(692,12,o), +(695,27,cs), +(841,713,ls), +(844,728,o), +(834,740,o), +(819,740,cs), +(644,740,ls), +(629,740,o), +(615,728,o), +(612,713,cs), +(571,520,l), +(388,520,l), +(391,532,ls), +(395,553,o), +(411,565,o), +(441,565,cs), +(502,565,ls), +(517,565,o), +(531,577,o), +(534,592,cs), +(560,713,ls), +(563,728,o), +(554,740,o), +(539,740,cs), +(446,740,ls), +(301,740,o), +(198,701,o), +(163,537,cs), +(159,520,l), +(91,520,ls), +(76,520,o), +(61,508,o), +(58,493,cs), +(33,372,l), +(29,357,o), +(39,345,o), +(54,345,cs), +(122,345,l), +(54,27,ls), +(51,12,o), +(61,0,o), +(76,0,cs) +); +} +); +width = 798; +} +); +unicode = 64258; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 35; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = ordfeminine; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(223,429,o), +(251,444,o), +(266,463,c), +(264,456,ls), +(262,443,o), +(269,434,o), +(282,434,c), +(299,434,ls), +(312,434,o), +(323,443,o), +(325,456,cs), +(356,598,ls), +(369,660,o), +(339,705,o), +(263,705,cs), +(188,705,o), +(150,664,o), +(145,644,cs), +(143,631,o), +(151,627,o), +(164,627,cs), +(181,627,ls), +(203,627,o), +(209,647,o), +(263,647,cs), +(311,647,o), +(299,617,o), +(297,611,c), +(235,602,ls), +(157,591,o), +(105,556,o), +(99,505,cs), +(94,463,o), +(129,429,o), +(187,429,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,483,o), +(159,494,o), +(161,507,cs), +(164,527,o), +(185,545,o), +(235,552,cs), +(286,559,l), +(278,519,o), +(241,483,o), +(187,483,cs) +); +} +); +width = 364; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,429,o), +(209,441,o), +(228,462,c), +(225,448,ls), +(223,441,o), +(229,434,o), +(237,434,cs), +(326,434,ls), +(334,434,o), +(341,441,o), +(343,448,cs), +(374,594,ls), +(390,670,o), +(333,705,o), +(250,705,cs), +(144,705,o), +(118,655,o), +(110,629,cs), +(108,622,o), +(112,617,o), +(118,617,cs), +(205,617,ls), +(222,617,o), +(226,633,o), +(243,633,cs), +(258,633,o), +(258,626,o), +(254,607,c), +(198,598,ls), +(126,586,o), +(77,560,o), +(66,510,cs), +(56,464,o), +(90,429,o), +(149,429,cs) +); +}, +{ +closed = 1; +nodes = ( +(188,505,o), +(181,510,o), +(183,518,cs), +(184,525,o), +(192,532,o), +(211,537,cs), +(240,544,l), +(234,516,o), +(220,505,o), +(200,505,cs) +); +} +); +width = 349; +} +); +unicode = 170; +}, +{ +color = 6; +glyphname = ordmasculine; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(277,429,o), +(328,465,o), +(349,545,cs), +(352,555,o), +(358,579,o), +(359,589,cs), +(372,669,o), +(324,705,o), +(261,705,cs), +(198,705,o), +(140,669,o), +(119,589,cs), +(116,579,o), +(110,555,o), +(109,545,cs), +(96,465,o), +(139,429,o), +(208,429,cs) +); +}, +{ +closed = 1; +nodes = ( +(174,487,o), +(164,507,o), +(170,545,cs), +(171,555,o), +(177,579,o), +(180,589,cs), +(189,624,o), +(217,647,o), +(254,647,cs), +(294,647,o), +(303,624,o), +(298,589,cs), +(297,579,o), +(291,555,o), +(288,545,cs), +(278,507,o), +(251,487,o), +(214,487,cs) +); +} +); +width = 358; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(320,429,o), +(354,470,o), +(373,540,cs), +(376,550,o), +(384,584,o), +(385,594,cs), +(396,664,o), +(332,705,o), +(249,705,cs), +(146,705,o), +(106,664,o), +(87,594,cs), +(84,584,o), +(76,550,o), +(75,540,cs), +(64,470,o), +(122,429,o), +(211,429,cs) +); +}, +{ +closed = 1; +nodes = ( +(201,511,o), +(199,517,o), +(202,545,cs), +(203,555,o), +(209,579,o), +(212,589,cs), +(219,614,o), +(225,623,o), +(242,623,cs), +(259,623,o), +(261,614,o), +(258,589,c), +(257,579,o), +(251,555,o), +(248,545,cs), +(240,517,o), +(235,511,o), +(218,511,cs) +); +} +); +width = 348; +} +); +unicode = 186; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 589; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 545; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 429; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 134; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "A-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = A; +} +); +width = 653; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = A; +} +); +width = 761; +} +); +unicode = 1040; +}, +{ +color = 6; +glyphname = "Be-cy"; +kernLeft = afii10026; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(306,0,ls), +(452,0,o), +(540,115,o), +(559,204,cs), +(583,314,o), +(534,398,o), +(390,398,cs), +(167,398,l), +(219,640,l), +(594,640,ls), +(608,640,o), +(619,649,o), +(621,662,cs), +(625,677,ls), +(627,691,o), +(620,700,o), +(606,700,cs), +(190,700,ls), +(177,700,o), +(166,691,o), +(164,677,cs), +(24,22,ls), +(22,9,o), +(29,0,o), +(42,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,343,l), +(369,343,ls), +(476,343,o), +(514,288,o), +(497,207,cs), +(480,127,o), +(407,60,o), +(308,60,cs), +(95,60,l) +); +} +); +width = 632; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(321,0,ls), +(501,0,o), +(625,85,o), +(655,226,cs), +(684,365,o), +(591,447,o), +(416,447,cs), +(326,447,l), +(336,495,l), +(631,495,ls), +(646,495,o), +(660,507,o), +(664,522,cs), +(696,673,ls), +(699,688,o), +(689,700,o), +(674,700,cs), +(156,700,ls), +(141,700,o), +(127,688,o), +(124,673,cs), +(-14,27,ls), +(-17,12,o), +(-7,0,o), +(8,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(290,280,l), +(360,280,ls), +(388,280,o), +(400,253,o), +(395,226,cs), +(389,199,o), +(368,172,o), +(337,172,cs), +(267,172,l) +); +} +); +width = 672; +} +); +unicode = 1041; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 280; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 447; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 516; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Ve-cy"; +kernLeft = afii10026; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = B; +} +); +width = 657; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = B; +} +); +width = 733; +} +); +unicode = 1042; +}, +{ +color = 6; +glyphname = "Ge-cy"; +kernLeft = afii10026; +kernRight = afii10020; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (50,0); +}, +{ +name = top; +pos = (370,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(60,0,ls), +(74,0,o), +(84,9,o), +(87,22,cs), +(219,640,l), +(544,640,ls), +(558,640,o), +(568,649,o), +(571,662,cs), +(575,677,ls), +(579,691,o), +(570,700,o), +(556,700,cs), +(190,700,ls), +(177,700,o), +(167,691,o), +(164,677,cs), +(24,22,ls), +(21,9,o), +(29,0,o), +(42,0,cs) +); +} +); +width = 505; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (97,0); +}, +{ +name = top; +pos = (407,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,ls), +(219,0,o), +(233,12,o), +(236,27,cs), +(336,495,l), +(583,495,ls), +(598,495,o), +(613,507,o), +(616,522,cs), +(648,673,ls), +(651,688,o), +(641,700,o), +(626,700,cs), +(156,700,ls), +(141,700,o), +(127,688,o), +(124,673,cs), +(-14,27,ls), +(-17,12,o), +(-7,0,o), +(8,0,cs) +); +} +); +width = 599; +} +); +unicode = 1043; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 516; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Gje-cy"; +kernLeft = afii10026; +kernRight = afii10020; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "Ge-cy"; +}, +{ +pos = (322,0); +ref = acutecomb.case; +} +); +width = 505; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "Ge-cy"; +}, +{ +pos = (279,0); +ref = acutecomb.case; +} +); +width = 599; +} +); +metricRight = "Ge-cy"; +unicode = 1027; +}, +{ +color = 6; +glyphname = "Gheupturn-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(579,840,ls), +(566,840,o), +(555,831,o), +(553,818,cs), +(528,700,l), +(202,700,ls), +(189,700,o), +(178,691,o), +(175,677,cs), +(35,22,ls), +(33,9,o), +(40,0,o), +(53,0,cs), +(71,0,ls), +(85,0,o), +(96,9,o), +(98,22,cs), +(230,640,l), +(555,640,ls), +(569,640,o), +(580,649,o), +(582,662,cs), +(616,818,ls), +(618,831,o), +(611,840,o), +(597,840,cs) +); +} +); +width = 516; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(471,840,ls), +(456,840,o), +(442,828,o), +(439,813,cs), +(415,700,l), +(168,700,ls), +(153,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs), +(215,0,ls), +(230,0,o), +(244,12,o), +(247,27,cs), +(347,495,l), +(594,495,ls), +(609,495,o), +(623,507,o), +(627,522,cs), +(689,813,ls), +(692,828,o), +(682,840,o), +(667,840,cs) +); +} +); +width = 610; +} +); +metricLeft = "En-cy"; +metricRight = "Ge-cy"; +unicode = 1168; +}, +{ +color = 10; +glyphname = "Gedescender-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "Ge-cy"; +}, +{ +pos = (13,0); +ref = "descender-cy.case"; +} +); +width = 505; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "Ge-cy"; +}, +{ +pos = (4,0); +ref = "descender-cy.case"; +} +); +width = 599; +} +); +unicode = 1270; +}, +{ +color = 3; +glyphname = "Ghestroke-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(306,321,ls), +(319,321,o), +(330,330,o), +(333,343,cs), +(335,357,ls), +(338,370,o), +(331,379,o), +(318,379,cs), +(43,379,ls), +(30,379,o), +(19,370,o), +(16,357,cs), +(14,343,ls), +(11,330,o), +(18,321,o), +(31,321,cs) +); +}, +{ +ref = "Ge-cy"; +} +); +width = 505; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(404,269,ls), +(419,269,o), +(433,281,o), +(437,296,cs), +(451,364,ls), +(454,379,o), +(445,391,o), +(430,391,cs), +(55,391,ls), +(40,391,o), +(25,379,o), +(22,364,cs), +(8,296,ls), +(4,281,o), +(14,269,o), +(29,269,cs) +); +}, +{ +pos = (36,0); +ref = "Ge-cy"; +} +); +width = 635; +} +); +unicode = 1170; +}, +{ +color = 6; +glyphname = "Ghemiddlehook-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(72,0,ls), +(86,0,o), +(96,9,o), +(99,22,cs), +(231,640,l), +(556,640,ls), +(570,640,o), +(581,649,o), +(583,662,cs), +(586,677,ls), +(589,691,o), +(582,700,o), +(568,700,cs), +(202,700,ls), +(189,700,o), +(178,691,o), +(175,677,cs), +(36,22,ls), +(33,9,o), +(41,0,o), +(54,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(148,252,l), +(173,371,o), +(284,393,o), +(356,393,cs), +(464,393,o), +(501,346,o), +(480,246,cs), +(458,143,ls), +(439,55,o), +(388,-15,o), +(248,-15,cs), +(244,-15,ls), +(231,-15,o), +(220,-24,o), +(218,-37,cs), +(214,-53,ls), +(212,-66,o), +(219,-75,o), +(232,-75,cs), +(236,-75,ls), +(409,-75,o), +(495,21,o), +(521,143,cs), +(542,241,ls), +(570,371,o), +(505,453,o), +(377,453,cs), +(287,453,o), +(216,427,o), +(169,376,c) +); +} +); +width = 606; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,0,ls), +(230,0,o), +(245,12,o), +(248,27,cs), +(347,495,l), +(594,495,ls), +(609,495,o), +(624,507,o), +(627,522,cs), +(659,673,ls), +(662,688,o), +(653,700,o), +(638,700,cs), +(168,700,ls), +(153,700,o), +(138,688,o), +(135,673,cs), +(-2,27,ls), +(-5,12,o), +(4,0,o), +(19,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,149,l), +(280,179,o), +(302,189,o), +(348,189,cs), +(395,189,o), +(412,172,o), +(403,132,cs), +(403,129,ls), +(397,105,o), +(380,90,o), +(337,90,cs), +(327,90,ls), +(312,90,o), +(298,78,o), +(295,63,cs), +(268,-63,ls), +(265,-78,o), +(274,-90,o), +(289,-90,cs), +(299,-90,ls), +(488,-90,o), +(619,-27,o), +(652,128,cs), +(658,153,ls), +(693,317,o), +(631,397,o), +(457,397,cs), +(400,397,o), +(345,382,o), +(308,362,c) +); +} +); +width = 726; +} +); +metricLeft = "En-cy"; +metricRight = "Dje-cy"; +unicode = 1172; +}, +{ +color = 6; +glyphname = "De-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-29,-139,ls), +(-15,-139,o), +(-4,-130,o), +(-1,-117,cs), +(23,0,l), +(518,0,l), +(494,-117,ls), +(491,-130,o), +(498,-139,o), +(511,-139,cs), +(529,-139,ls), +(543,-139,o), +(554,-130,o), +(557,-117,cs), +(589,38,ls), +(592,51,o), +(585,60,o), +(571,60,cs), +(521,60,l), +(652,677,ls), +(655,691,o), +(648,700,o), +(634,700,cs), +(278,700,ls), +(265,700,o), +(254,691,o), +(251,678,cs), +(205,457,ls), +(143,168,o), +(80,60,o), +(18,60,cs), +(-5,60,ls), +(-18,60,o), +(-29,51,o), +(-32,38,cs), +(-64,-117,ls), +(-67,-130,o), +(-60,-139,o), +(-47,-139,cs) +); +}, +{ +closed = 1; +nodes = ( +(171,119,o), +(221,238,o), +(266,449,cs), +(306,640,l), +(581,640,l), +(458,60,l), +(110,60,l) +); +} +); +width = 682; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,-140,ls), +(184,-140,o), +(198,-128,o), +(201,-113,cs), +(225,0,l), +(505,0,l), +(481,-113,ls), +(478,-128,o), +(488,-140,o), +(503,-140,cs), +(699,-140,ls), +(714,-140,o), +(728,-128,o), +(731,-113,cs), +(797,193,ls), +(800,208,o), +(790,220,o), +(775,220,cs), +(730,220,l), +(827,673,ls), +(830,688,o), +(820,700,o), +(805,700,cs), +(267,700,ls), +(252,700,o), +(238,688,o), +(235,673,cs), +(194,481,ls), +(169,363,o), +(130,220,o), +(64,220,cs), +(49,220,ls), +(34,220,o), +(20,208,o), +(17,193,cs), +(-49,-113,ls), +(-52,-129,o), +(-42,-140,o), +(-27,-140,cs) +); +}, +{ +closed = 1; +nodes = ( +(380,274,o), +(406,350,o), +(427,449,cs), +(434,480,l), +(536,480,l), +(480,220,l), +(349,220,l) +); +} +); +width = 845; +} +); +metricRight = "Tse-cy"; +unicode = 1044; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +} +); +}; +}, +{ +color = 10; +glyphname = "Ie-cy"; +kernLeft = afii10026; +kernRight = afii10022; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (390,700); +} +); +layerId = UUID0; +shapes = ( +{ +ref = E; +} +); +width = 591; +}, +{ +anchors = ( +{ +name = top; +pos = (429,700); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = E; +} +); +width = 666; +} +); +unicode = 1045; +}, +{ +color = 10; +glyphname = "Iegrave-cy"; +kernLeft = afii10026; +kernRight = afii10022; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "Ie-cy"; +}, +{ +pos = (251,0); +ref = gravecomb.case; +} +); +width = 591; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "Ie-cy"; +}, +{ +pos = (182,0); +ref = gravecomb.case; +} +); +width = 666; +} +); +unicode = 1024; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Io-cy"; +kernLeft = afii10026; +kernRight = afii10022; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "Ie-cy"; +}, +{ +pos = (267,180); +ref = dieresiscomb; +} +); +width = 591; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "Ie-cy"; +}, +{ +pos = (215,180); +ref = dieresiscomb; +} +); +width = 666; +} +); +unicode = 1025; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Zhe-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (851,0); +}, +{ +name = top; +pos = (592,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(975,700,ls), +(959,700,o), +(948,695,o), +(939,685,c), +(689,385,l), +(555,385,l), +(618,678,l), +(620,691,o), +(613,700,o), +(600,700,cs), +(581,700,ls), +(568,700,o), +(557,691,o), +(555,678,c), +(492,385,l), +(362,385,l), +(235,685,ls), +(231,695,o), +(221,700,o), +(205,700,cs), +(194,700,ls), +(179,700,o), +(172,691,o), +(170,680,c), +(169,676,o), +(170,672,o), +(172,667,cs), +(302,360,l), +(18,35,l), +(15,32,o), +(15,28,o), +(14,24,cs), +(11,11,o), +(19,0,o), +(32,0,cs), +(57,0,ls), +(69,0,o), +(75,5,o), +(82,13,cs), +(356,325,l), +(480,325,l), +(415,22,l), +(413,9,o), +(420,0,o), +(433,0,cs), +(452,0,ls), +(465,0,o), +(476,9,o), +(478,21,c), +(543,325,l), +(689,325,l), +(840,13,ls), +(844,5,o), +(849,0,o), +(861,0,cs), +(873,0,ls), +(886,0,o), +(898,11,o), +(901,24,cs), +(902,28,o), +(902,32,o), +(901,35,c), +(745,360,l), +(1005,667,ls), +(1009,672,o), +(1012,676,o), +(1013,680,cs), +(1016,691,o), +(1012,700,o), +(997,700,cs) +); +} +); +width = 1015; +}, +{ +associatedMasterId = UUID0; +color = 6; +layerId = "74D3214D-D933-44DE-8CE3-90AEEB3E65C7"; +name = "1"; +shapes = ( +{ +closed = 1; +nodes = ( +(845,15,ls), +(850,11,o), +(862,0,o), +(883,0,cs), +(900,0,ls), +(911,0,o), +(920,9,o), +(920,20,cs), +(920,24,o), +(919,29,o), +(914,34,cs), +(554,365,l), +(893,667,ls), +(897,671,o), +(898,676,o), +(898,680,cs), +(898,691,o), +(889,700,o), +(878,700,cs), +(862,700,ls), +(841,700,o), +(829,689,o), +(824,685,cs), +(462,365,l) +); +}, +{ +closed = 1; +nodes = ( +(438,9,o), +(447,0,o), +(461,0,cs), +(479,0,ls), +(492,0,o), +(501,9,o), +(501,22,cs), +(501,677,ls), +(501,691,o), +(492,700,o), +(479,700,cs), +(461,700,ls), +(447,700,o), +(438,691,o), +(438,677,cs), +(438,22,ls) +); +}, +{ +closed = 1; +nodes = ( +(115,685,ls), +(110,689,o), +(98,700,o), +(77,700,cs), +(61,700,ls), +(50,700,o), +(41,691,o), +(41,680,cs), +(41,676,o), +(42,671,o), +(46,667,cs), +(385,365,l), +(25,34,ls), +(20,29,o), +(19,24,o), +(19,20,cs), +(19,9,o), +(28,0,o), +(39,0,cs), +(56,0,ls), +(77,0,o), +(89,11,o), +(94,15,cs), +(477,365,l) +); +} +); +width = 939; +}, +{ +associatedMasterId = UUID0; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(78,691,o), +(69,700,o), +(48,700,cs), +(32,700,ls), +(21,700,o), +(14,691,o), +(14,680,cs), +(14,676,o), +(16,672,o), +(19,667,c), +(221,346,l), +(295,345,l), +(82,685,ls) +); +}, +{ +closed = 1; +nodes = ( +(25,17,o), +(36,0,o), +(53,0,cs), +(73,0,ls), +(81,0,o), +(89,5,o), +(92,13,cs), +(163,201,ls), +(196,288,o), +(235,325,o), +(297,325,cs), +(399,325,l), +(399,385,l), +(297,384,ls), +(206,383,o), +(145,334,o), +(103,223,cs), +(32,35,ls) +); +} +); +}; +color = 6; +layerId = "120D3225-B10F-40EF-8059-E57268FB1EA0"; +name = "Aug 29 16, 12:34"; +shapes = ( +{ +closed = 1; +nodes = ( +(808,0,ls), +(825,0,o), +(836,17,o), +(829,35,cs), +(758,223,ls), +(716,334,o), +(655,383,o), +(564,384,cs), +(462,385,l), +(462,325,l), +(564,325,ls), +(626,325,o), +(665,288,o), +(698,201,cs), +(769,13,ls), +(772,5,o), +(780,0,o), +(788,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(73,0,ls), +(81,0,o), +(89,5,o), +(92,13,cs), +(163,201,ls), +(196,288,o), +(235,325,o), +(297,325,cs), +(399,325,l), +(399,385,l), +(297,384,ls), +(206,383,o), +(145,334,o), +(103,223,cs), +(32,35,ls), +(25,17,o), +(36,0,o), +(53,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(90,685,ls), +(86,691,o), +(79,700,o), +(58,700,cs), +(42,700,ls), +(31,700,o), +(24,691,o), +(24,680,cs), +(24,676,o), +(26,672,o), +(29,667,c), +(221,346,l), +(293,345,l) +); +}, +{ +closed = 1; +nodes = ( +(440,0,ls), +(453,0,o), +(462,9,o), +(462,22,cs), +(462,677,ls), +(462,691,o), +(453,700,o), +(440,700,cs), +(422,700,ls), +(408,700,o), +(399,691,o), +(399,677,cs), +(399,22,ls), +(399,9,o), +(408,0,o), +(422,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(640,346,l), +(832,667,l), +(835,672,o), +(837,676,o), +(837,680,cs), +(837,691,o), +(830,700,o), +(819,700,cs), +(803,700,ls), +(782,700,o), +(773,691,o), +(769,685,cs), +(566,345,l) +); +} +); +width = 880; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (899,0); +}, +{ +name = top; +pos = (680,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(978,700,ls), +(956,700,o), +(942,689,o), +(934,678,cs), +(766,463,l), +(750,463,l), +(795,673,ls), +(798,688,o), +(788,700,o), +(773,700,cs), +(587,700,ls), +(572,700,o), +(558,688,o), +(555,673,cs), +(510,463,l), +(484,463,l), +(408,678,ls), +(404,689,o), +(394,700,o), +(372,700,cs), +(161,700,ls), +(149,700,o), +(137,690,o), +(135,678,c), +(134,674,o), +(134,670,o), +(135,667,c), +(251,365,l), +(-16,33,l), +(-19,30,o), +(-21,25,o), +(-22,22,c), +(-24,10,o), +(-16,0,o), +(-4,0,cs), +(234,0,ls), +(261,0,o), +(274,17,o), +(279,23,c), +(449,243,l), +(463,243,l), +(417,27,ls), +(414,11,o), +(424,0,o), +(439,0,cs), +(625,0,ls), +(640,0,o), +(654,11,o), +(657,27,cs), +(703,243,l), +(737,243,l), +(813,23,l), +(816,17,o), +(823,0,o), +(850,0,cs), +(1068,0,ls), +(1080,0,o), +(1092,10,o), +(1094,22,c), +(1095,25,o), +(1095,30,o), +(1094,33,c), +(967,365,l), +(1211,667,l), +(1214,670,o), +(1216,674,o), +(1217,678,c), +(1219,690,o), +(1211,700,o), +(1199,700,cs) +); +} +); +width = 1174; +} +); +metricLeft = "=|Ka-cy"; +metricRight = "Ka-cy"; +unicode = 1046; +}, +{ +color = 6; +glyphname = "Ze-cy"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (237,0); +}, +{ +name = top; +pos = (364,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(372,-10,o), +(479,73,o), +(505,193,cs), +(521,271,o), +(499,334,o), +(437,368,c), +(502,403,o), +(537,463,o), +(551,527,cs), +(570,618,o), +(510,710,o), +(355,710,cs), +(213,710,o), +(122,647,o), +(90,540,cs), +(87,528,o), +(95,520,o), +(107,520,cs), +(127,520,ls), +(138,520,o), +(147,525,o), +(154,541,cs), +(186,619,o), +(261,650,o), +(352,650,cs), +(439,650,o), +(504,603,o), +(488,527,cs), +(468,436,o), +(395,396,o), +(302,396,cs), +(236,396,ls), +(223,396,o), +(212,387,o), +(209,373,cs), +(206,358,ls), +(203,345,o), +(210,336,o), +(223,336,cs), +(294,336,ls), +(402,336,o), +(461,283,o), +(442,193,cs), +(422,103,o), +(321,50,o), +(220,50,cs), +(119,50,o), +(66,94,o), +(63,157,cs), +(62,177,o), +(52,180,o), +(41,180,cs), +(25,180,ls), +(13,180,o), +(1,173,o), +(0,161,cs), +(-12,61,o), +(72,-10,o), +(217,-10,cs) +); +} +); +width = 591; +}, +{ +anchors = ( +{ +name = bottom; +pos = (307,0); +}, +{ +name = top; +pos = (445,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(495,-10,o), +(639,77,o), +(667,209,cs), +(678,260,o), +(674,330,o), +(604,368,c), +(676,403,o), +(701,460,o), +(710,501,cs), +(735,618,o), +(628,710,o), +(447,710,cs), +(206,710,o), +(111,589,o), +(82,501,cs), +(79,489,o), +(87,479,o), +(99,479,cs), +(297,479,ls), +(315,479,o), +(322,484,o), +(333,495,cs), +(339,502,o), +(359,515,o), +(399,515,cs), +(445,515,o), +(453,496,o), +(448,474,cs), +(443,448,o), +(419,438,o), +(386,438,cs), +(311,438,ls), +(296,438,o), +(281,424,o), +(278,409,cs), +(252,289,ls), +(249,274,o), +(258,260,o), +(273,260,cs), +(348,260,ls), +(395,260,o), +(416,249,o), +(410,221,cs), +(404,196,o), +(382,183,o), +(329,183,cs), +(293,183,o), +(276,190,o), +(266,203,cs), +(259,212,o), +(253,219,o), +(235,219,cs), +(39,219,ls), +(27,219,o), +(14,209,o), +(12,197,cs), +(4,108,o), +(52,-10,o), +(293,-10,cs) +); +} +); +width = 713; +} +); +metricRight = "Ve-cy"; +unicode = 1047; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 61; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 309; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Ii-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (652,0); +}, +{ +name = top; +pos = (443,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(76,0,ls), +(89,0,o), +(97,9,o), +(99,12,cs), +(632,588,l), +(511,22,ls), +(508,9,o), +(516,0,o), +(530,0,cs), +(548,0,ls), +(561,0,o), +(571,9,o), +(574,22,cs), +(714,677,ls), +(717,691,o), +(709,700,o), +(696,700,cs), +(675,700,ls), +(662,700,o), +(654,691,o), +(652,688,cs), +(118,110,l), +(239,677,ls), +(242,691,o), +(234,700,o), +(221,700,cs), +(203,700,ls), +(189,700,o), +(179,691,o), +(176,677,cs), +(36,23,ls), +(33,9,o), +(41,0,o), +(54,0,cs) +); +} +); +width = 727; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (734,0); +}, +{ +name = top; +pos = (501,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(192,0,ls), +(215,0,o), +(227,11,o), +(237,23,c), +(508,313,l), +(447,27,ls), +(444,12,o), +(454,0,o), +(469,0,cs), +(665,0,ls), +(680,0,o), +(694,12,o), +(697,27,cs), +(835,673,ls), +(838,688,o), +(828,700,o), +(813,700,cs), +(640,700,ls), +(621,700,o), +(607,692,o), +(595,677,c), +(319,364,l), +(385,673,ls), +(388,688,o), +(378,700,o), +(363,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +} +); +width = 809; +} +); +metricLeft = "En-cy"; +metricRight = "En-cy"; +unicode = 1048; +}, +{ +color = 10; +glyphname = "Iishort-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (281,0); +ref = "brevecomb-cy.case"; +} +); +width = 727; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (230,0); +ref = "brevecomb-cy.case"; +} +); +width = 809; +} +); +unicode = 1049; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 333; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Iigrave-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (304,0); +ref = gravecomb.case; +} +); +width = 727; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (254,0); +ref = gravecomb.case; +} +); +width = 809; +} +); +unicode = 1037; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 373; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Ka-cy"; +kernLeft = afii10026; +kernRight = afii10028; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (454,0); +}, +{ +name = top; +pos = (393,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(595,700,ls), +(579,700,o), +(568,695,o), +(559,685,c), +(309,385,l), +(175,385,l), +(238,677,l), +(240,691,o), +(233,700,o), +(219,700,cs), +(201,700,ls), +(188,700,o), +(177,691,o), +(175,677,c), +(35,22,l), +(33,9,o), +(40,0,o), +(53,0,cs), +(71,0,ls), +(85,0,o), +(96,9,o), +(98,22,c), +(163,325,l), +(307,325,l), +(450,13,ls), +(454,5,o), +(459,0,o), +(471,0,cs), +(483,0,ls), +(496,0,o), +(508,11,o), +(511,24,cs), +(512,28,o), +(512,32,o), +(511,35,c), +(365,360,l), +(625,667,ls), +(629,672,o), +(632,676,o), +(633,680,c), +(635,691,o), +(632,700,o), +(617,700,cs) +); +} +); +width = 625; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (586,0); +}, +{ +name = center; +pos = (303,350); +}, +{ +name = top; +pos = (303,700); +} +); +associatedMasterId = UUID0; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,325,l), +(273,325,l), +(273,385,l), +(157,385,l), +(157,677,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +}; +color = 6; +layerId = "3AC1418D-8C9D-4B10-8751-759D3110802F"; +name = "1"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,365,l), +(521,15,ls), +(526,10,o), +(538,0,o), +(559,0,cs), +(576,0,ls), +(587,0,o), +(596,9,o), +(596,20,cs), +(596,24,o), +(595,29,o), +(590,34,cs), +(288,368,l), +(589,667,ls), +(593,671,o), +(594,676,o), +(594,680,cs), +(594,691,o), +(585,700,o), +(574,700,cs), +(558,700,ls), +(537,700,o), +(525,690,o), +(520,685,cs) +); +}, +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,325,l), +(273,325,l), +(273,385,l), +(157,385,l), +(157,677,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +width = 606; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (499,0); +}, +{ +name = top; +pos = (462,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(568,700,ls), +(546,700,o), +(532,689,o), +(524,678,cs), +(356,463,l), +(340,463,l), +(385,673,ls), +(388,688,o), +(378,700,o), +(363,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,11,o), +(4,0,o), +(19,0,cs), +(215,0,ls), +(230,0,o), +(244,12,o), +(247,27,cs), +(293,243,l), +(327,243,l), +(403,23,l), +(406,17,o), +(413,0,o), +(440,0,cs), +(658,0,ls), +(670,0,o), +(682,10,o), +(684,22,c), +(685,25,o), +(685,30,o), +(684,33,c), +(557,365,l), +(801,667,l), +(804,670,o), +(806,674,o), +(807,678,c), +(809,690,o), +(801,700,o), +(789,700,cs) +); +} +); +width = 764; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (695,0); +}, +{ +name = top; +pos = (358,700); +} +); +associatedMasterId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +background = { +anchors = ( +{ +name = bottomright; +pos = (695,0); +}, +{ +name = top; +pos = (358,700); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(701,0,ls), +(713,0,o), +(723,10,o), +(723,22,cs), +(723,25,o), +(722,30,o), +(720,33,c), +(618,302,ls), +(576,413,o), +(515,463,o), +(424,463,cs), +(292,463,l), +(292,248,l), +(339,248,ls), +(363,248,o), +(378,233,o), +(391,200,cs), +(457,23,ls), +(463,7,o), +(472,0,o), +(498,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(567,335,l), +(695,667,ls), +(702,685,o), +(697,700,o), +(676,700,cs), +(473,700,ls), +(451,700,o), +(438,693,o), +(433,678,cs), +(311,335,l) +); +} +); +}; +color = 6; +layerId = "31D36D41-0B9D-4EC4-ADF2-4A34AE27F2BA"; +name = "Sep 1 16, 19:04"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,248,l), +(339,248,ls), +(363,248,o), +(378,233,o), +(391,200,cs), +(457,23,ls), +(464,6,o), +(473,0,o), +(498,0,cs), +(701,0,ls), +(718,0,o), +(726,18,o), +(720,33,cs), +(618,302,ls), +(606,333,o), +(594,357,o), +(582,375,c), +(695,667,ls), +(697,672,o), +(698,677,o), +(698,681,cs), +(698,693,o), +(691,700,o), +(676,700,cs), +(473,700,ls), +(451,700,o), +(438,693,o), +(433,678,cs), +(357,463,l), +(305,463,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 715; +} +); +metricLeft = "En-cy"; +unicode = 1050; +}, +{ +color = 10; +glyphname = "Kje-cy"; +kernLeft = afii10026; +kernRight = afii10028; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +alignment = 1; +ref = "Ka-cy"; +}, +{ +alignment = 1; +pos = (345,0); +ref = acutecomb.case; +} +); +width = 625; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +alignment = 1; +ref = "Ka-cy"; +}, +{ +alignment = 1; +pos = (334,0); +ref = acutecomb.case; +} +); +width = 764; +} +); +unicode = 1036; +}, +{ +color = 6; +glyphname = "El-cy"; +kernLeft = afii10029; +kernRight = afii10026; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(489,0,ls), +(503,0,o), +(514,9,o), +(516,22,cs), +(656,677,ls), +(658,691,o), +(651,700,o), +(637,700,cs), +(281,700,ls), +(268,700,o), +(257,691,o), +(255,678,cs), +(208,457,ls), +(146,168,o), +(68,76,o), +(-21,64,c), +(-33,63,o), +(-43,54,o), +(-45,42,cs), +(-49,24,ls), +(-52,11,o), +(-44,0,o), +(-31,1,cs), +(104,12,o), +(201,128,o), +(269,449,cs), +(310,640,l), +(585,640,l), +(453,22,ls), +(451,9,o), +(458,0,o), +(471,0,cs) +); +} +); +width = 669; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(666,0,ls), +(681,0,o), +(695,12,o), +(698,27,cs), +(836,673,ls), +(839,688,o), +(829,700,o), +(814,700,cs), +(246,700,ls), +(231,700,o), +(217,688,o), +(214,673,cs), +(173,481,ls), +(146,357,o), +(112,225,o), +(42,212,cs), +(25,209,o), +(12,200,o), +(9,185,cs), +(-25,27,ls), +(-28,12,o), +(-17,0,o), +(-2,0,cs), +(275,0,o), +(338,127,o), +(406,449,cs), +(413,480,l), +(545,480,l), +(448,27,ls), +(445,12,o), +(455,0,o), +(470,0,cs) +); +} +); +width = 810; +} +); +metricRight = "En-cy"; +unicode = 1051; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +} +); +}; +}, +{ +color = 10; +glyphname = "Em-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = M; +} +); +width = 783; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = M; +} +); +width = 855; +} +); +unicode = 1052; +}, +{ +color = 10; +glyphname = "En-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (503,0); +} +); +layerId = UUID0; +shapes = ( +{ +ref = H; +} +); +width = 701; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (505,0); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = H; +} +); +width = 771; +} +); +unicode = 1053; +}, +{ +color = 10; +glyphname = "O-cy"; +kernLeft = afii10032; +kernRight = afii10032; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (407,700); +} +); +layerId = UUID0; +shapes = ( +{ +ref = O; +} +); +width = 662; +}, +{ +anchors = ( +{ +name = top; +pos = (445,700); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = O; +} +); +width = 742; +} +); +unicode = 1054; +}, +{ +color = 6; +glyphname = "Pe-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (489,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(60,0,ls), +(74,0,o), +(84,9,o), +(87,22,cs), +(219,640,l), +(605,640,l), +(473,22,ls), +(470,9,o), +(478,0,o), +(491,0,cs), +(509,0,ls), +(523,0,o), +(533,9,o), +(536,22,cs), +(676,677,ls), +(679,691,o), +(671,700,o), +(657,700,cs), +(190,700,ls), +(177,700,o), +(167,691,o), +(164,677,cs), +(24,22,ls), +(21,9,o), +(29,0,o), +(42,0,c) +); +} +); +width = 700; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (505,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,ls), +(219,0,o), +(233,12,o), +(236,27,cs), +(333,480,l), +(495,480,l), +(398,27,ls), +(395,12,o), +(405,0,o), +(420,0,cs), +(616,0,ls), +(631,0,o), +(645,12,o), +(648,27,cs), +(786,673,ls), +(789,688,o), +(779,700,o), +(764,700,cs), +(156,700,ls), +(141,700,o), +(127,688,o), +(124,673,cs), +(-14,27,ls), +(-17,11,o), +(-7,0,o), +(8,0,cs) +); +} +); +width = 772; +} +); +unicode = 1055; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 85; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Er-cy"; +kernLeft = afii10026; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = P; +} +); +width = 629; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = P; +} +); +width = 705; +} +); +unicode = 1056; +}, +{ +color = 10; +glyphname = "Es-cy"; +kernLeft = afii10032; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (575,0); +} +); +layerId = UUID0; +shapes = ( +{ +ref = C; +} +); +width = 650; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (656,0); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = C; +} +); +width = 731; +} +); +unicode = 1057; +}, +{ +color = 10; +glyphname = "Te-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (221,0); +} +); +layerId = UUID0; +shapes = ( +{ +ref = T; +} +); +width = 551; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (282,0); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = T; +} +); +width = 673; +} +); +unicode = 1058; +}, +{ +color = 6; +glyphname = "U-cy"; +kernLeft = afii10037; +kernRight = afii10037; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (361,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(73,0,ls), +(182,0,o), +(233,67,o), +(323,204,cs), +(628,668,ls), +(630,672,o), +(632,675,o), +(633,680,cs), +(635,691,o), +(628,700,o), +(617,700,cs), +(595,700,ls), +(586,700,o), +(575,695,o), +(569,685,cs), +(275,232,ls), +(197,111,o), +(152,60,o), +(85,60,cs), +(51,60,ls), +(38,60,o), +(27,51,o), +(24,37,cs), +(21,22,ls), +(18,9,o), +(26,0,o), +(39,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(297,233,l), +(140,685,ls), +(136,695,o), +(129,700,o), +(120,700,cs), +(109,700,ls), +(98,700,o), +(87,691,o), +(85,680,cs), +(84,675,o), +(85,672,o), +(86,668,cs), +(257,166,l) +); +} +); +width = 563; +}, +{ +anchors = ( +{ +name = top; +pos = (456,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(150,0,ls), +(320,0,o), +(383,44,o), +(486,204,cs), +(776,656,ls), +(781,663,o), +(785,672,o), +(787,679,cs), +(789,690,o), +(781,700,o), +(768,700,cs), +(571,700,ls), +(555,700,o), +(542,692,o), +(532,676,cs), +(266,267,ls), +(241,229,o), +(215,214,o), +(171,214,cs), +(130,214,ls), +(115,214,o), +(100,202,o), +(97,187,cs), +(63,27,ls), +(60,12,o), +(70,0,o), +(85,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(407,429,l), +(345,676,ls), +(341,691,o), +(335,700,o), +(318,700,cs), +(119,700,ls), +(101,700,o), +(88,690,o), +(88,676,cs), +(88,674,o), +(88,671,o), +(89,669,cs), +(240,188,l) +); +} +); +width = 698; +} +); +unicode = 1059; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 4678; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 6607; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 6901; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Ushort-cy"; +kernLeft = afii10037; +kernRight = afii10037; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (199,0); +ref = "brevecomb-cy.case"; +} +); +width = 563; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (185,0); +ref = "brevecomb-cy.case"; +} +); +width = 698; +} +); +unicode = 1038; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 327; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Ef-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(351,-32,ls), +(364,-32,o), +(375,-23,o), +(378,-10,cs), +(395,74,l), +(593,74,o), +(711,156,o), +(764,330,cs), +(771,354,o), +(774,374,o), +(776,388,cs), +(804,552,o), +(685,654,o), +(519,654,c), +(534,728,ls), +(537,741,o), +(530,750,o), +(517,750,cs), +(498,750,ls), +(485,750,o), +(474,741,o), +(471,728,cs), +(456,654,l), +(270,654,o), +(133,571,o), +(87,398,cs), +(81,374,o), +(76,354,o), +(73,330,cs), +(54,176,o), +(154,74,o), +(332,74,c), +(315,-10,ls), +(312,-23,o), +(319,-32,o), +(332,-32,cs) +); +}, +{ +closed = 1; +nodes = ( +(193,134,o), +(115,193,o), +(137,335,cs), +(141,357,o), +(143,371,o), +(149,393,cs), +(192,535,o), +(292,594,o), +(443,594,c), +(345,134,l) +); +}, +{ +closed = 1; +nodes = ( +(506,594,l), +(657,594,o), +(729,535,o), +(714,393,cs), +(712,371,o), +(708,357,o), +(702,335,cs), +(665,193,o), +(560,134,o), +(408,134,c) +); +} +); +width = 824; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,-32,ls), +(538,-32,o), +(552,-20,o), +(556,-5,cs), +(568,55,l), +(768,55,o), +(910,148,o), +(959,325,cs), +(968,359,o), +(970,369,o), +(975,403,cs), +(1003,576,o), +(897,677,o), +(700,677,c), +(710,724,ls), +(714,739,o), +(704,751,o), +(689,751,cs), +(493,751,ls), +(478,751,o), +(464,739,o), +(460,724,cs), +(450,677,l), +(253,677,o), +(105,576,o), +(59,403,c), +(56,394,o), +(44,334,o), +(43,325,c), +(16,148,o), +(118,55,o), +(318,55,c), +(306,-5,ls), +(302,-20,o), +(312,-32,o), +(327,-32,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,250,o), +(294,276,o), +(303,331,cs), +(308,354,o), +(313,378,o), +(318,401,cs), +(332,455,o), +(363,482,o), +(411,482,c), +(362,250,l) +); +}, +{ +closed = 1; +nodes = ( +(657,482,l), +(705,482,o), +(724,455,o), +(716,401,c), +(715,393,o), +(704,340,o), +(701,331,c), +(686,276,o), +(657,250,o), +(608,250,c) +); +} +); +width = 989; +} +); +metricLeft = O; +metricRight = O; +unicode = 1060; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 183; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 535; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Ha-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (475,0); +} +); +layerId = UUID0; +shapes = ( +{ +ref = X; +} +); +width = 610; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (514,0); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = X; +} +); +width = 738; +} +); +unicode = 1061; +}, +{ +color = 6; +glyphname = "Che-cy"; +kernRight = afii10026; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (450,0); +}, +{ +name = top; +pos = (391,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(468,0,ls), +(482,0,o), +(492,9,o), +(495,22,cs), +(635,678,ls), +(638,691,o), +(630,700,o), +(616,700,cs), +(598,700,ls), +(585,700,o), +(575,691,o), +(572,678,cs), +(517,422,ls), +(495,321,o), +(380,302,o), +(312,302,cs), +(184,302,o), +(147,349,o), +(168,449,cs), +(217,678,ls), +(220,691,o), +(212,700,o), +(198,700,cs), +(180,700,ls), +(167,700,o), +(157,691,o), +(154,678,cs), +(104,444,ls), +(78,324,o), +(143,242,o), +(291,242,cs), +(356,242,o), +(452,258,o), +(491,297,c), +(432,22,ls), +(429,9,o), +(437,0,o), +(450,0,cs) +); +} +); +width = 648; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (481,0); +}, +{ +name = top; +pos = (448,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(598,0,ls), +(613,0,o), +(627,12,o), +(630,27,cs), +(768,673,ls), +(771,688,o), +(761,700,o), +(746,700,cs), +(550,700,ls), +(535,700,o), +(521,688,o), +(518,673,cs), +(466,430,ls), +(463,416,o), +(422,404,o), +(392,404,cs), +(345,404,o), +(330,424,o), +(340,471,cs), +(383,673,ls), +(386,688,o), +(376,700,o), +(361,700,cs), +(165,700,ls), +(150,700,o), +(136,688,o), +(133,673,cs), +(88,461,ls), +(46,265,o), +(114,176,o), +(290,176,cs), +(339,176,o), +(382,186,o), +(418,206,c), +(380,27,ls), +(377,12,o), +(387,0,o), +(402,0,cs) +); +} +); +width = 742; +} +); +unicode = 1063; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 700; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 434; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 206; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 1286; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 1609; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Tse-cy"; +kernLeft = afii10026; +kernRight = afii10040; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(564,-140,ls), +(578,-140,o), +(589,-131,o), +(591,-118,cs), +(625,38,ls), +(627,51,o), +(620,60,o), +(606,60,cs), +(556,60,l), +(688,678,ls), +(690,691,o), +(683,700,o), +(669,700,cs), +(651,700,ls), +(638,700,o), +(627,691,o), +(625,678,cs), +(493,60,l), +(107,60,l), +(239,678,ls), +(241,691,o), +(234,700,o), +(220,700,cs), +(202,700,ls), +(189,700,o), +(178,691,o), +(176,678,cs), +(36,23,ls), +(33,9,o), +(40,0,o), +(53,0,cs), +(553,0,l), +(528,-118,ls), +(526,-131,o), +(533,-140,o), +(546,-140,cs) +); +} +); +width = 717; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(669,-140,ls), +(684,-140,o), +(698,-128,o), +(701,-113,cs), +(767,193,ls), +(770,208,o), +(760,220,o), +(745,220,cs), +(700,220,l), +(797,673,ls), +(800,688,o), +(790,700,o), +(775,700,cs), +(579,700,ls), +(564,700,o), +(550,688,o), +(547,673,cs), +(450,220,l), +(288,220,l), +(385,673,ls), +(388,688,o), +(378,700,o), +(363,700,cs), +(167,700,ls), +(152,700,o), +(138,689,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(3,0,o), +(18,0,cs), +(475,0,l), +(451,-113,ls), +(448,-128,o), +(458,-140,o), +(473,-140,cs) +); +} +); +width = 815; +} +); +metricLeft = "En-cy"; +unicode = 1062; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 85; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Sha-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(765,0,ls), +(779,0,o), +(790,9,o), +(792,22,cs), +(932,678,ls), +(934,691,o), +(927,700,o), +(913,700,cs), +(895,700,ls), +(882,700,o), +(871,691,o), +(869,678,cs), +(737,60,l), +(453,60,l), +(585,678,ls), +(587,691,o), +(580,700,o), +(566,700,cs), +(548,700,l), +(535,700,o), +(524,691,o), +(522,678,cs), +(390,60,l), +(106,60,l), +(238,678,ls), +(240,691,o), +(233,700,o), +(219,700,cs), +(201,700,ls), +(188,700,o), +(177,691,o), +(175,678,cs), +(35,22,ls), +(33,9,o), +(40,0,o), +(53,0,cs) +); +} +); +width = 945; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(868,0,ls), +(883,0,o), +(897,12,o), +(900,27,cs), +(1038,673,ls), +(1041,688,o), +(1031,700,o), +(1016,700,cs), +(820,700,ls), +(805,700,o), +(791,688,o), +(788,673,cs), +(691,220,l), +(615,220,l), +(712,673,ls), +(715,688,o), +(705,700,o), +(690,700,cs), +(494,700,ls), +(479,700,o), +(465,688,o), +(462,673,cs), +(365,220,l), +(288,220,l), +(385,673,ls), +(388,688,o), +(378,700,o), +(363,700,cs), +(167,700,ls), +(152,700,o), +(138,689,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +} +); +width = 1012; +} +); +metricLeft = "En-cy"; +metricRight = "En-cy"; +unicode = 1064; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 422; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Shcha-cy"; +kernLeft = afii10026; +kernRight = afii10040; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(808,-140,ls), +(822,-140,o), +(833,-131,o), +(835,-118,cs), +(869,38,ls), +(871,51,o), +(864,60,o), +(850,60,cs), +(800,60,l), +(932,678,ls), +(934,691,o), +(927,700,o), +(913,700,cs), +(895,700,ls), +(882,700,o), +(871,691,o), +(869,678,cs), +(737,60,l), +(453,60,l), +(585,678,ls), +(588,691,o), +(580,700,o), +(566,700,cs), +(548,700,ls), +(535,700,o), +(525,691,o), +(522,678,cs), +(390,60,l), +(106,60,l), +(238,678,ls), +(241,691,o), +(233,700,o), +(219,700,cs), +(201,700,ls), +(188,700,o), +(178,691,o), +(175,678,cs), +(35,22,ls), +(32,9,o), +(39,0,o), +(52,0,c), +(797,0,l), +(772,-118,ls), +(770,-131,o), +(777,-140,o), +(790,-140,cs) +); +} +); +width = 961; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(910,-140,ls), +(925,-140,o), +(939,-128,o), +(942,-113,cs), +(1008,193,ls), +(1011,208,o), +(1001,220,o), +(986,220,cs), +(941,220,l), +(1038,673,ls), +(1041,688,o), +(1031,700,o), +(1016,700,cs), +(820,700,ls), +(805,700,o), +(791,688,o), +(788,673,cs), +(691,220,l), +(615,220,l), +(712,673,ls), +(715,688,o), +(705,700,o), +(690,700,cs), +(494,700,ls), +(479,700,o), +(465,688,o), +(462,673,cs), +(365,220,l), +(288,220,l), +(385,673,ls), +(388,688,o), +(378,700,o), +(363,700,cs), +(167,700,ls), +(152,700,o), +(138,689,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(3,0,o), +(18,0,cs), +(716,0,l), +(692,-113,ls), +(689,-128,o), +(699,-140,o), +(714,-140,cs) +); +} +); +width = 1056; +} +); +metricLeft = "En-cy"; +metricRight = "Tse-cy"; +unicode = 1065; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 60; +} +); +}; +}, +{ +color = 6; +glyphname = "Dzhe-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(265,-140,ls), +(279,-140,o), +(290,-131,o), +(292,-118,cs), +(317,0,l), +(519,0,ls), +(533,0,o), +(544,9,o), +(547,22,cs), +(687,678,ls), +(689,691,o), +(682,700,o), +(668,700,cs), +(650,700,ls), +(637,700,o), +(626,691,o), +(624,678,cs), +(492,60,l), +(106,60,l), +(238,678,ls), +(240,691,o), +(233,700,o), +(219,700,cs), +(201,700,ls), +(188,700,o), +(177,691,o), +(175,678,cs), +(35,22,ls), +(32,9,o), +(39,0,o), +(52,0,cs), +(254,0,l), +(229,-118,ls), +(227,-131,o), +(234,-140,o), +(247,-140,c) +); +} +); +width = 700; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(391,-140,ls), +(406,-140,o), +(420,-128,o), +(423,-113,cs), +(447,0,l), +(626,0,ls), +(641,0,o), +(656,12,o), +(659,27,cs), +(797,673,ls), +(800,688,o), +(790,700,o), +(775,700,cs), +(579,700,ls), +(564,700,o), +(550,688,o), +(547,673,cs), +(450,220,l), +(288,220,l), +(385,673,ls), +(388,688,o), +(378,700,o), +(363,700,cs), +(167,700,ls), +(152,700,o), +(138,689,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(3,0,o), +(18,0,cs), +(197,0,l), +(173,-113,ls), +(170,-128,o), +(180,-140,o), +(195,-140,cs) +); +} +); +width = 771; +} +); +metricLeft = "En-cy"; +metricRight = "En-cy"; +unicode = 1039; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 1327; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 1072; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 85; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Softsign-cy"; +kernLeft = afii10026; +kernRight = afii10046; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(267,0,ls), +(413,0,o), +(500,111,o), +(522,214,cs), +(547,331,o), +(500,418,o), +(356,418,cs), +(183,418,l), +(238,678,ls), +(241,691,o), +(233,700,o), +(219,700,cs), +(201,700,l), +(188,700,o), +(177,691,o), +(175,678,cs), +(35,22,ls), +(33,9,o), +(40,0,o), +(53,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(171,363,l), +(334,363,ls), +(441,363,o), +(480,314,o), +(460,217,cs), +(440,122,o), +(368,60,o), +(269,60,cs), +(106,60,l) +); +} +); +width = 591; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(307,0,ls), +(499,0,o), +(630,84,o), +(665,245,cs), +(699,406,o), +(602,482,o), +(409,482,cs), +(344,482,l), +(385,673,ls), +(388,688,o), +(378,700,o), +(363,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(305,297,l), +(370,297,ls), +(394,297,o), +(412,279,o), +(404,243,cs), +(398,212,o), +(378,186,o), +(346,186,cs), +(281,186,l) +); +} +); +width = 716; +} +); +metricLeft = "En-cy"; +unicode = 1068; +}, +{ +color = 6; +glyphname = "Yeru-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (472,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(237,0,ls), +(383,0,o), +(470,111,o), +(492,214,cs), +(517,331,o), +(470,418,o), +(326,418,cs), +(183,418,l), +(238,678,ls), +(241,691,o), +(233,700,o), +(219,700,cs), +(201,700,l), +(188,700,o), +(178,691,o), +(175,678,cs), +(35,22,ls), +(32,9,o), +(40,0,o), +(53,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(171,363,l), +(304,363,l), +(411,363,o), +(450,314,o), +(430,217,cs), +(410,122,o), +(338,60,o), +(239,60,cs), +(106,60,l) +); +}, +{ +closed = 1; +nodes = ( +(592,0,ls), +(605,0,o), +(615,9,o), +(618,22,cs), +(758,678,ls), +(761,691,o), +(753,700,o), +(740,700,cs), +(721,700,ls), +(708,700,o), +(698,691,o), +(695,678,cs), +(555,22,ls), +(552,9,o), +(560,0,o), +(573,0,cs) +); +} +); +width = 771; +}, +{ +anchors = ( +{ +name = top; +pos = (611,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(307,0,ls), +(499,0,o), +(630,84,o), +(665,245,cs), +(699,406,o), +(602,482,o), +(409,482,cs), +(344,482,l), +(385,673,ls), +(388,688,o), +(378,700,o), +(363,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(305,297,l), +(370,297,ls), +(394,297,o), +(412,279,o), +(404,243,cs), +(398,212,o), +(378,186,o), +(346,186,cs), +(281,186,l) +); +}, +{ +closed = 1; +nodes = ( +(903,0,ls), +(918,0,o), +(932,12,o), +(935,27,cs), +(1073,673,ls), +(1076,688,o), +(1066,700,o), +(1051,700,cs), +(847,700,ls), +(832,700,o), +(818,688,o), +(815,673,cs), +(677,27,ls), +(674,12,o), +(684,0,o), +(699,0,cs) +); +} +); +width = 1047; +} +); +metricLeft = "En-cy"; +metricRight = "En-cy"; +unicode = 1067; +}, +{ +color = 6; +glyphname = "Hardsign-cy"; +kernRight = afii10046; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (444,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(376,0,ls), +(522,0,o), +(609,111,o), +(631,214,cs), +(656,331,o), +(608,418,o), +(464,418,cs), +(301,418,l), +(357,678,ls), +(360,691,o), +(352,700,o), +(339,700,cs), +(130,700,ls), +(117,700,o), +(106,691,o), +(104,677,cs), +(100,662,ls), +(98,649,o), +(105,640,o), +(118,640,cs), +(286,640,l), +(154,22,ls), +(152,9,o), +(159,0,o), +(172,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(290,363,l), +(443,363,ls), +(550,363,o), +(589,314,o), +(569,217,cs), +(549,122,o), +(477,60,o), +(378,60,cs), +(225,60,l) +); +} +); +width = 700; +}, +{ +anchors = ( +{ +name = top; +pos = (503,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(408,0,ls), +(600,0,o), +(731,84,o), +(766,245,cs), +(800,406,o), +(703,482,o), +(510,482,cs), +(445,482,l), +(486,673,ls), +(489,688,o), +(479,700,o), +(464,700,cs), +(128,700,ls), +(113,700,o), +(99,688,o), +(96,673,cs), +(66,532,ls), +(62,517,o), +(72,505,o), +(87,505,cs), +(200,505,l), +(98,27,ls), +(95,12,o), +(105,0,o), +(120,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(406,297,l), +(471,297,ls), +(495,297,o), +(513,279,o), +(505,243,cs), +(499,212,o), +(479,186,o), +(447,186,cs), +(382,186,l) +); +} +); +width = 817; +} +); +metricLeft = T; +metricRight = "Softsign-cy"; +unicode = 1066; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 160; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 41; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Lje-cy"; +kernLeft = afii10029; +kernRight = afii10046; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(104,11,o), +(201,128,o), +(269,449,cs), +(310,640,l), +(555,640,l), +(423,22,ls), +(421,9,o), +(428,0,o), +(441,0,cs), +(625,0,ls), +(771,0,o), +(858,111,o), +(880,214,cs), +(907,340,o), +(858,418,o), +(714,418,cs), +(571,418,l), +(626,678,ls), +(629,691,o), +(621,700,o), +(608,700,cs), +(281,700,ls), +(268,700,o), +(257,691,o), +(255,678,cs), +(208,457,ls), +(146,168,o), +(68,76,o), +(-21,64,cs), +(-33,63,o), +(-43,54,o), +(-45,42,cs), +(-49,24,ls), +(-52,11,o), +(-44,0,o), +(-31,1,cs) +); +}, +{ +closed = 1; +nodes = ( +(559,363,l), +(692,363,ls), +(799,363,o), +(838,314,o), +(818,217,cs), +(798,122,o), +(726,60,o), +(627,60,cs), +(494,60,l) +); +} +); +width = 949; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(275,0,o), +(338,127,o), +(406,449,cs), +(413,480,l), +(545,480,l), +(448,27,ls), +(445,12,o), +(455,0,o), +(470,0,cs), +(758,0,ls), +(950,0,o), +(1081,84,o), +(1116,245,cs), +(1150,406,o), +(1053,482,o), +(860,482,cs), +(795,482,l), +(836,673,ls), +(839,688,o), +(829,700,o), +(814,700,cs), +(246,700,ls), +(231,700,o), +(217,688,o), +(214,673,cs), +(173,481,ls), +(146,357,o), +(112,225,o), +(42,212,cs), +(25,209,o), +(12,200,o), +(9,185,cs), +(-25,27,ls), +(-28,12,o), +(-17,0,o), +(-2,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(756,297,l), +(821,297,ls), +(845,297,o), +(863,279,o), +(855,243,cs), +(849,212,o), +(829,186,o), +(797,186,cs), +(732,186,l) +); +} +); +width = 1167; +} +); +metricLeft = "El-cy"; +metricRight = "Softsign-cy"; +unicode = 1033; +}, +{ +color = 6; +glyphname = "Nje-cy"; +kernLeft = afii10026; +kernRight = afii10046; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(71,0,ls), +(85,0,o), +(96,9,o), +(98,22,cs), +(163,325,l), +(529,325,l), +(464,22,ls), +(462,9,o), +(469,0,o), +(482,0,cs), +(666,0,ls), +(812,0,o), +(900,111,o), +(921,214,cs), +(945,331,o), +(898,418,o), +(754,418,cs), +(611,418,l), +(667,678,ls), +(670,691,o), +(662,700,o), +(649,700,c), +(630,700,ls), +(617,700,o), +(606,691,o), +(604,677,cs), +(541,385,l), +(175,385,l), +(238,677,ls), +(240,691,o), +(233,700,o), +(219,700,cs), +(201,700,ls), +(188,700,o), +(177,691,o), +(175,677,cs), +(35,22,ls), +(33,9,o), +(40,0,o), +(53,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(600,363,l), +(733,363,ls), +(840,363,o), +(879,314,o), +(859,217,cs), +(839,122,o), +(767,60,o), +(668,60,cs), +(535,60,l) +); +} +); +width = 990; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,0,ls), +(230,0,o), +(244,12,o), +(247,27,cs), +(293,243,l), +(455,243,l), +(409,27,ls), +(406,12,o), +(416,0,o), +(431,0,cs), +(719,0,ls), +(911,0,o), +(1042,84,o), +(1077,245,cs), +(1111,406,o), +(1014,482,o), +(821,482,cs), +(756,482,l), +(797,673,ls), +(800,688,o), +(790,700,o), +(775,700,cs), +(579,700,ls), +(564,700,o), +(550,688,o), +(547,673,cs), +(502,463,l), +(340,463,l), +(385,673,ls), +(388,688,o), +(378,700,o), +(363,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,11,o), +(4,0,o), +(19,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(717,297,l), +(782,297,ls), +(806,297,o), +(824,279,o), +(816,243,cs), +(810,212,o), +(790,186,o), +(758,186,cs), +(693,186,l) +); +} +); +width = 1128; +} +); +metricLeft = "En-cy"; +metricRight = "Softsign-cy"; +unicode = 1034; +}, +{ +color = 10; +glyphname = "Dze-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = S; +} +); +width = 602; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = S; +} +); +width = 698; +} +); +unicode = 1029; +}, +{ +color = 6; +glyphname = "E-cy"; +kernLeft = afii10032; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(397,-10,o), +(506,61,o), +(539,160,cs), +(542,172,o), +(534,180,o), +(522,180,cs), +(502,180,ls), +(489,180,o), +(483,175,o), +(475,159,cs), +(448,99,o), +(380,50,o), +(270,50,cs), +(147,50,o), +(96,143,o), +(129,296,cs), +(134,321,l), +(398,321,ls), +(411,321,o), +(422,330,o), +(425,344,cs), +(428,358,ls), +(431,372,o), +(424,381,o), +(411,381,cs), +(147,381,l), +(151,404,ls), +(187,573,o), +(275,650,o), +(398,650,cs), +(508,650,o), +(554,601,o), +(557,541,cs), +(557,525,o), +(561,520,o), +(574,520,cs), +(594,520,ls), +(606,520,o), +(618,528,o), +(619,540,cs), +(628,639,o), +(551,710,o), +(411,710,cs), +(268,710,o), +(142,628,o), +(88,404,cs), +(79,364,o), +(73,334,o), +(66,296,cs), +(24,72,o), +(114,-10,o), +(257,-10,cs) +); +} +); +width = 619; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(470,-10,o), +(628,52,o), +(675,197,cs), +(679,209,o), +(670,219,o), +(658,219,cs), +(462,219,ls), +(446,219,o), +(439,215,o), +(425,203,cs), +(409,190,o), +(389,183,o), +(354,183,cs), +(303,183,o), +(277,205,o), +(287,250,c), +(289,260,l), +(442,260,ls), +(457,260,o), +(472,274,o), +(475,289,cs), +(501,409,ls), +(504,424,o), +(495,438,o), +(480,438,cs), +(327,438,l), +(329,448,l), +(339,496,o), +(372,515,o), +(424,515,cs), +(459,515,o), +(477,504,o), +(482,495,cs), +(488,483,o), +(493,479,o), +(510,479,cs), +(708,479,ls), +(720,479,o), +(734,489,o), +(735,501,cs), +(748,644,o), +(632,710,o), +(460,710,cs), +(264,710,o), +(113,618,o), +(67,439,cs), +(62,419,o), +(32,280,o), +(29,261,cs), +(-2,77,o), +(105,-10,o), +(306,-10,cs) +); +} +); +width = 718; +} +); +unicode = 1028; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 6; +glyphname = "Ereversed-cy"; +kernRight = afii10032; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (404,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(364,-10,o), +(490,72,o), +(544,296,cs), +(553,334,o), +(559,364,o), +(566,404,cs), +(608,628,o), +(518,710,o), +(375,710,cs), +(235,710,o), +(126,639,o), +(93,540,cs), +(90,528,o), +(98,520,o), +(110,520,cs), +(130,520,ls), +(143,520,o), +(149,525,o), +(157,541,cs), +(184,601,o), +(252,650,o), +(362,650,cs), +(485,650,o), +(539,573,o), +(503,404,cs), +(499,381,l), +(235,381,ls), +(222,381,o), +(211,372,o), +(208,358,cs), +(205,344,ls), +(202,330,o), +(209,321,o), +(222,321,cs), +(486,321,l), +(481,296,ls), +(448,143,o), +(357,50,o), +(234,50,cs), +(124,50,o), +(78,99,o), +(75,159,cs), +(75,175,o), +(71,180,o), +(58,180,cs), +(38,180,ls), +(26,180,o), +(14,172,o), +(13,160,cs), +(4,61,o), +(81,-10,o), +(221,-10,cs) +); +} +); +width = 620; +}, +{ +anchors = ( +{ +name = top; +pos = (461,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(484,-10,o), +(629,77,o), +(676,261,cs), +(694,336,o), +(700,364,o), +(714,439,cs), +(744,618,o), +(633,710,o), +(437,710,cs), +(273,710,o), +(121,649,o), +(72,501,cs), +(69,489,o), +(77,479,o), +(89,479,cs), +(287,479,ls), +(304,479,o), +(311,483,o), +(323,495,cs), +(332,504,o), +(354,515,o), +(389,515,cs), +(441,515,o), +(466,494,o), +(456,448,c), +(454,438,l), +(301,438,ls), +(286,438,o), +(271,424,o), +(268,409,cs), +(242,289,ls), +(239,274,o), +(248,260,o), +(263,260,cs), +(416,260,l), +(414,250,l), +(404,205,o), +(370,183,o), +(319,183,cs), +(284,183,o), +(266,190,o), +(256,203,cs), +(247,214,o), +(241,219,o), +(225,219,cs), +(29,219,ls), +(17,219,o), +(4,209,o), +(2,197,cs), +(-11,58,o), +(114,-10,o), +(283,-10,cs) +); +} +); +width = 733; +} +); +unicode = 1069; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 541; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 159; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 204; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 296; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "I-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (215,700); +} +); +layerId = UUID0; +shapes = ( +{ +ref = I; +} +); +width = 252; +}, +{ +anchors = ( +{ +name = top; +pos = (278,700); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = I; +} +); +width = 367; +} +); +unicode = 1030; +}, +{ +color = 10; +glyphname = "Yi-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = I; +}, +{ +pos = (87,180); +ref = dieresiscomb; +} +); +width = 252; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = I; +}, +{ +pos = (61,180); +ref = dieresiscomb; +} +); +width = 367; +} +); +unicode = 1031; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 101; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Je-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = J; +} +); +width = 614; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = J; +} +); +width = 698; +} +); +unicode = 1032; +}, +{ +color = 6; +glyphname = "Tshe-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(161,0,ls), +(174,0,o), +(185,9,o), +(187,22,cs), +(242,278,ls), +(263,379,o), +(385,400,o), +(453,400,cs), +(562,400,o), +(594,360,o), +(571,251,cs), +(522,22,ls), +(520,9,o), +(527,0,o), +(541,0,cs), +(559,0,ls), +(572,0,o), +(583,9,o), +(585,22,cs), +(635,256,ls), +(663,386,o), +(606,458,o), +(468,458,cs), +(403,458,o), +(307,442,o), +(266,393,c), +(319,640,l), +(546,640,ls), +(560,640,o), +(571,649,o), +(573,662,cs), +(577,677,ls), +(579,691,o), +(572,700,o), +(558,700,cs), +(130,700,ls), +(117,700,o), +(106,691,o), +(104,677,cs), +(100,662,ls), +(98,649,o), +(105,640,o), +(118,640,cs), +(256,640,l), +(124,22,ls), +(122,9,o), +(129,0,o), +(143,0,cs) +); +} +); +width = 701; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,0,ls), +(331,0,o), +(345,12,o), +(348,27,cs), +(387,208,ls), +(392,234,o), +(429,239,o), +(461,239,cs), +(508,239,o), +(526,227,o), +(521,202,cs), +(483,27,ls), +(480,12,o), +(490,0,o), +(505,0,cs), +(701,0,ls), +(716,0,o), +(730,12,o), +(733,27,cs), +(775,223,ls), +(810,388,o), +(747,467,o), +(574,467,cs), +(526,467,o), +(471,453,o), +(435,437,c), +(454,523,l), +(661,523,ls), +(674,523,o), +(686,533,o), +(689,546,cs), +(717,677,ls), +(719,690,o), +(711,700,o), +(698,700,cs), +(124,700,ls), +(111,700,o), +(99,690,o), +(97,677,cs), +(69,546,ls), +(66,533,o), +(74,523,o), +(87,523,cs), +(204,523,l), +(98,27,ls), +(95,12,o), +(105,0,o), +(120,0,cs) +); +} +); +width = 828; +} +); +metricLeft = T; +metricRight = "=|Che-cy"; +unicode = 1035; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 413; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Iu-cy"; +kernLeft = afii10026; +kernRight = afii10032; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (551,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(702,-10,o), +(792,117,o), +(829,266,cs), +(844,326,o), +(854,374,o), +(865,434,cs), +(891,579,o), +(856,710,o), +(660,710,cs), +(464,710,o), +(373,579,o), +(337,434,cs), +(332,417,o), +(328,400,o), +(324,385,c), +(164,385,l), +(227,678,ls), +(229,691,o), +(222,700,o), +(208,700,cs), +(190,700,ls), +(177,700,o), +(166,691,o), +(164,678,cs), +(24,22,ls), +(22,9,o), +(29,0,o), +(42,0,cs), +(60,0,ls), +(74,0,o), +(85,9,o), +(87,22,cs), +(152,325,l), +(312,325,l), +(308,306,o), +(305,287,o), +(301,266,cs), +(274,117,o), +(310,-10,o), +(506,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(405,50,o), +(336,110,o), +(364,266,cs), +(375,326,o), +(385,374,o), +(400,434,cs), +(438,590,o), +(534,650,o), +(647,650,cs), +(760,650,o), +(830,590,o), +(802,434,cs), +(791,374,o), +(781,326,o), +(766,266,cs), +(728,110,o), +(633,50,o), +(519,50,cs) +); +} +); +width = 914; +}, +{ +anchors = ( +{ +name = top; +pos = (649,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(858,-10,o), +(1008,81,o), +(1054,260,cs), +(1067,314,o), +(1081,379,o), +(1091,436,cs), +(1121,611,o), +(1012,710,o), +(816,710,cs), +(633,710,o), +(488,624,o), +(434,471,cs), +(433,469,o), +(432,466,o), +(431,463,c), +(329,463,l), +(374,673,l), +(377,688,o), +(367,700,o), +(352,700,c), +(156,700,l), +(141,700,o), +(127,688,o), +(124,673,c), +(-14,27,l), +(-17,11,o), +(-7,0,o), +(8,0,c), +(204,0,l), +(219,0,o), +(233,12,o), +(236,27,c), +(282,243,l), +(383,243,l), +(383,241,o), +(383,240,o), +(383,238,cs), +(366,73,o), +(474,-10,o), +(662,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(660,185,o), +(637,210,o), +(647,266,cs), +(657,323,o), +(669,379,o), +(683,434,cs), +(697,490,o), +(731,515,o), +(774,515,cs), +(817,515,o), +(841,490,o), +(831,434,cs), +(821,379,o), +(809,323,o), +(795,266,cs), +(781,210,o), +(748,185,o), +(704,185,cs) +); +} +); +width = 1110; +} +); +unicode = 1070; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 355; +} +); +}; +}, +{ +color = 6; +glyphname = "Ia-cy"; +kernRight = afii10026; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (410,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(452,0,l), +(465,0,o), +(476,9,o), +(478,22,cs), +(618,678,ls), +(620,691,o), +(613,700,o), +(600,700,cs), +(396,700,ls), +(240,700,o), +(155,599,o), +(131,486,cs), +(106,369,o), +(172,277,o), +(326,277,cs), +(469,277,l), +(415,22,ls), +(413,9,o), +(420,0,o), +(434,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(55,0,ls), +(77,0,o), +(86,13,o), +(98,27,cs), +(345,310,l), +(275,319,l), +(25,31,ls), +(22,27,o), +(21,24,o), +(20,20,cs), +(18,9,o), +(25,0,o), +(36,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(222,337,o), +(173,386,o), +(193,483,cs), +(213,578,o), +(285,640,o), +(384,640,cs), +(547,640,l), +(482,337,l), +(329,337,ls) +); +} +); +width = 631; +}, +{ +anchors = ( +{ +name = top; +pos = (466,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(600,0,ls), +(615,0,o), +(629,12,o), +(632,27,cs), +(770,673,ls), +(773,688,o), +(763,700,o), +(748,700,cs), +(452,700,ls), +(260,700,o), +(127,609,o), +(95,457,cs), +(64,314,o), +(161,218,o), +(314,218,cs), +(423,218,l), +(382,27,ls), +(379,12,o), +(389,0,o), +(404,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(207,0,ls), +(231,0,o), +(248,14,o), +(255,27,c), +(392,233,l), +(172,275,l), +(-10,33,ls), +(-13,29,o), +(-15,25,o), +(-16,22,cs), +(-18,10,o), +(-10,0,o), +(2,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(361,408,o), +(349,430,o), +(355,459,cs), +(361,488,o), +(382,514,o), +(413,514,cs), +(486,514,l), +(463,408,l), +(390,408,ls) +); +} +); +width = 744; +} +); +metricRight = "En-cy"; +unicode = 1071; +}, +{ +color = 6; +glyphname = "Dje-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(161,0,ls), +(174,0,o), +(185,9,o), +(187,22,cs), +(242,278,ls), +(265,387,o), +(387,401,o), +(462,401,cs), +(553,401,o), +(589,358,o), +(571,251,cs), +(564,218,ls), +(545,130,o), +(494,60,o), +(354,60,cs), +(350,60,ls), +(337,60,o), +(326,51,o), +(324,38,cs), +(320,22,ls), +(318,9,o), +(325,0,o), +(338,0,cs), +(342,0,ls), +(515,0,o), +(601,96,o), +(627,218,cs), +(635,256,ls), +(663,386,o), +(606,458,o), +(468,458,cs), +(403,458,o), +(307,442,o), +(266,393,c), +(319,640,l), +(546,640,ls), +(560,640,o), +(571,649,o), +(573,662,cs), +(577,677,ls), +(579,691,o), +(572,700,o), +(558,700,cs), +(130,700,ls), +(117,700,o), +(106,691,o), +(104,677,cs), +(100,662,ls), +(98,649,o), +(105,640,o), +(118,640,cs), +(256,640,l), +(124,22,ls), +(122,9,o), +(129,0,o), +(143,0,cs) +); +} +); +width = 696; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(316,0,ls), +(331,0,o), +(345,12,o), +(348,27,cs), +(391,228,l), +(394,244,o), +(414,259,o), +(466,259,cs), +(513,259,o), +(530,248,o), +(525,222,cs), +(524,219,ls), +(519,195,o), +(502,180,o), +(459,180,cs), +(439,180,ls), +(424,180,o), +(409,168,o), +(406,153,cs), +(379,27,ls), +(376,12,o), +(386,0,o), +(401,0,cs), +(421,0,ls), +(610,0,o), +(741,63,o), +(774,218,cs), +(779,243,ls), +(814,407,o), +(752,487,o), +(578,487,cs), +(527,487,o), +(472,472,o), +(440,457,c), +(454,523,l), +(661,523,ls), +(674,523,o), +(686,533,o), +(689,546,cs), +(717,677,ls), +(719,690,o), +(711,700,o), +(698,700,cs), +(124,700,ls), +(111,700,o), +(99,690,o), +(97,677,cs), +(69,546,ls), +(66,533,o), +(74,523,o), +(87,523,cs), +(204,523,l), +(98,27,ls), +(95,12,o), +(105,0,o), +(120,0,cs) +); +} +); +width = 828; +} +); +metricLeft = T; +unicode = 1026; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 413; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 485; +y = 0; +} +); +}; +}, +{ +color = 3; +glyphname = "Yat-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(462,530,l), +(476,530,o), +(487,539,o), +(490,552,cs), +(493,567,ls), +(496,581,o), +(489,590,o), +(475,590,cs), +(107,590,ls), +(94,590,o), +(83,581,o), +(80,567,cs), +(77,552,ls), +(74,539,o), +(81,530,o), +(94,530,c) +); +}, +{ +pos = (57,0); +ref = "Softsign-cy"; +} +); +width = 648; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(579,520,l), +(592,520,o), +(604,530,o), +(607,543,cs), +(623,620,ls), +(626,633,o), +(621,643,o), +(605,643,c), +(113,643,l), +(97,643,o), +(88,633,o), +(85,620,cs), +(69,543,ls), +(66,530,o), +(74,520,o), +(87,520,c) +); +}, +{ +pos = (57,0); +ref = "Softsign-cy"; +} +); +width = 773; +} +); +metricLeft = T; +metricRight = "Softsign-cy"; +unicode = 1122; +}, +{ +color = 6; +glyphname = "Yusbig-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(52,0,ls), +(60,0,o), +(69,5,o), +(73,13,cs), +(211,246,ls), +(246,305,o), +(273,325,o), +(335,325,cs), +(427,325,l), +(362,22,ls), +(360,9,o), +(367,0,o), +(381,0,cs), +(399,0,ls), +(412,0,o), +(423,9,o), +(425,22,cs), +(490,325,l), +(582,325,ls), +(644,325,o), +(661,305,o), +(672,246,cs), +(710,13,ls), +(712,5,o), +(719,0,o), +(727,0,cs), +(747,0,ls), +(764,0,o), +(778,17,o), +(775,35,cs), +(737,268,ls), +(721,360,o), +(675,384,o), +(594,384,cs), +(540,384,l), +(837,667,ls), +(841,671,o), +(843,675,o), +(844,680,cs), +(846,691,o), +(839,700,o), +(828,700,cs), +(248,700,ls), +(237,700,o), +(226,691,o), +(224,680,cs), +(223,675,o), +(223,671,o), +(225,667,cs), +(399,384,l), +(347,384,ls), +(266,384,o), +(210,360,o), +(156,268,cs), +(18,35,ls), +(7,17,o), +(15,0,o), +(32,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,640,l), +(730,640,l), +(440,362,l), +(486,360,l) +); +} +); +width = 889; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,0,ls), +(221,0,o), +(234,7,o), +(241,23,c), +(311,160,ls), +(326,192,o), +(348,208,o), +(373,208,cs), +(387,208,l), +(348,27,ls), +(345,12,o), +(355,0,o), +(370,0,cs), +(566,0,ls), +(581,0,o), +(595,12,o), +(598,27,cs), +(637,208,l), +(651,208,ls), +(676,208,o), +(690,192,o), +(693,160,cs), +(702,23,ls), +(703,7,o), +(714,0,o), +(739,0,cs), +(941,0,ls), +(958,0,o), +(969,19,o), +(967,33,cs), +(942,242,ls), +(930,348,o), +(876,391,o), +(783,399,c), +(775,399,l), +(1046,661,ls), +(1054,669,o), +(1056,673,o), +(1057,678,cs), +(1059,689,o), +(1050,700,o), +(1038,700,cs), +(154,700,ls), +(142,700,o), +(131,689,o), +(129,677,cs), +(127,672,o), +(128,668,o), +(130,665,cs), +(318,398,l), +(310,398,l), +(222,390,o), +(151,347,o), +(95,242,cs), +(-18,33,ls), +(-25,20,o), +(-24,0,o), +(-6,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(450,520,l), +(674,520,l), +(471,325,l), +(585,306,l) +); +} +); +width = 1046; +} +); +metricLeft = "Zhe-cy"; +metricRight = "Zhe-cy"; +unicode = 1130; +}, +{ +color = 6; +glyphname = "Fita-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(579,325,l), +(591,385,l), +(125,385,l), +(113,325,l) +); +}, +{ +closed = 1; +nodes = ( +(431,-10,o), +(543,77,o), +(588,266,cs), +(603,326,o), +(613,374,o), +(624,434,cs), +(658,620,o), +(575,710,o), +(419,710,cs), +(263,710,o), +(140,620,o), +(96,434,cs), +(81,374,o), +(71,326,o), +(60,266,cs), +(25,77,o), +(99,-10,o), +(265,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(164,50,o), +(96,115,o), +(124,271,cs), +(135,331,o), +(143,369,o), +(158,429,cs), +(196,585,o), +(293,650,o), +(406,650,cs), +(519,650,o), +(588,585,o), +(560,429,cs), +(549,369,o), +(541,331,o), +(526,271,cs), +(488,115,o), +(392,50,o), +(278,50,cs) +); +} +); +width = 662; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(461,289,l), +(487,411,l), +(305,411,l), +(279,289,l) +); +}, +{ +closed = 1; +nodes = ( +(502,-10,o), +(652,81,o), +(698,260,cs), +(711,314,o), +(725,379,o), +(735,436,cs), +(765,611,o), +(656,710,o), +(460,710,cs), +(264,710,o), +(111,611,o), +(67,436,cs), +(53,379,o), +(39,314,o), +(30,260,cs), +(0,81,o), +(110,-10,o), +(306,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,185,o), +(281,210,o), +(291,266,cs), +(301,323,o), +(313,379,o), +(327,434,cs), +(341,490,o), +(375,515,o), +(418,515,cs), +(461,515,o), +(485,490,o), +(475,434,cs), +(465,379,o), +(453,323,o), +(439,266,cs), +(425,210,o), +(392,185,o), +(348,185,cs) +); +} +); +width = 742; +} +); +metricLeft = O; +metricRight = O; +unicode = 1138; +}, +{ +color = 6; +glyphname = "Izhitsa-cy"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (422,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(267,0,ls), +(285,0,o), +(296,8,o), +(306,24,c), +(563,511,ls), +(620,618,o), +(649,650,o), +(695,650,cs), +(702,650,ls), +(712,650,o), +(720,656,o), +(722,666,cs), +(725,679,ls), +(729,698,o), +(726,710,o), +(707,710,c), +(701,710,l), +(625,707,o), +(580,653,o), +(512,527,cs), +(267,72,l), +(179,681,l), +(178,691,o), +(173,700,o), +(160,700,cs), +(142,700,ls), +(120,700,o), +(115,690,o), +(118,669,cs), +(213,24,ls), +(215,8,o), +(224,0,o), +(242,0,cs) +); +} +); +width = 656; +}, +{ +anchors = ( +{ +name = top; +pos = (467,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(402,0,ls), +(427,0,o), +(445,16,o), +(454,33,cs), +(657,414,ls), +(676,450,o), +(694,468,o), +(716,468,cs), +(742,468,ls), +(757,468,o), +(772,480,o), +(775,495,cs), +(813,672,ls), +(817,688,o), +(808,700,o), +(793,700,cs), +(747,700,ls), +(620,700,o), +(530,635,o), +(458,492,cs), +(360,295,l), +(344,667,l), +(343,684,o), +(331,700,o), +(306,700,cs), +(120,700,ls), +(103,700,o), +(92,685,o), +(93,671,cs), +(146,33,ls), +(147,16,o), +(159,0,o), +(184,0,cs) +); +} +); +width = 745; +} +); +metricLeft = V; +unicode = 1140; +}, +{ +color = 3; +glyphname = "Zhedescender-cy"; +layers = ( +{ +anchors = ( +{ +name = _bottomright; +pos = (851,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(906,-140,ls), +(920,-140,o), +(930,-131,o), +(933,-118,cs), +(967,38,ls), +(970,51,o), +(962,60,o), +(948,60,cs), +(835,60,l), +(873,0,l), +(896,0,l), +(870,-118,ls), +(867,-131,o), +(875,-140,o), +(888,-140,cs) +); +}, +{ +ref = "Zhe-cy"; +} +); +width = 1028; +}, +{ +anchors = ( +{ +name = _bottomright; +pos = (899,0); +} +); +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(1063,-140,ls), +(1078,-140,o), +(1092,-128,o), +(1095,-113,cs), +(1161,193,ls), +(1164,208,o), +(1154,220,o), +(1139,220,cs), +(844,220,l), +(847,0,l), +(869,0,l), +(845,-113,ls), +(842,-128,o), +(852,-140,o), +(867,-140,cs) +); +}, +{ +ref = "Zhe-cy"; +} +); +width = 1210; +} +); +metricLeft = "Zhe-cy"; +metricRight = "Kadescender-cy"; +unicode = 1174; +}, +{ +color = 3; +glyphname = "Zedescender-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(211,-140,ls), +(225,-140,o), +(236,-131,o), +(238,-118,cs), +(271,38,l), +(200,0,l), +(175,-118,ls), +(173,-131,o), +(180,-140,o), +(193,-140,cs) +); +}, +{ +ref = "Ze-cy"; +} +); +width = 591; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(347,-140,ls), +(362,-140,o), +(376,-128,o), +(379,-113,cs), +(417,63,l), +(166,60,l), +(129,-113,ls), +(126,-128,o), +(136,-140,o), +(151,-140,cs) +); +}, +{ +ref = "Ze-cy"; +} +); +width = 713; +} +); +metricLeft = "Ze-cy"; +metricRight = "Ze-cy"; +unicode = 1176; +}, +{ +color = 3; +glyphname = "Kadescender-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(520,-140,ls), +(534,-140,o), +(544,-131,o), +(547,-118,cs), +(581,38,ls), +(584,51,o), +(576,60,o), +(562,60,cs), +(449,60,l), +(475,0,l), +(509,0,l), +(484,-118,ls), +(481,-131,o), +(489,-140,o), +(502,-140,cs) +); +}, +{ +ref = "Ka-cy"; +} +); +width = 642; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(645,-140,ls), +(660,-140,o), +(674,-128,o), +(677,-113,cs), +(743,193,ls), +(746,208,o), +(736,220,o), +(721,220,cs), +(426,220,l), +(444,0,l), +(451,0,l), +(427,-113,ls), +(424,-128,o), +(434,-140,o), +(449,-140,cs) +); +}, +{ +ref = "Ka-cy"; +} +); +width = 792; +} +); +metricLeft = "En-cy"; +unicode = 1178; +}, +{ +color = 6; +glyphname = "Kaverticalstroke-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(229,203,ls), +(242,203,o), +(253,212,o), +(255,225,cs), +(312,490,ls), +(315,503,o), +(307,512,o), +(294,512,cs), +(290,512,ls), +(277,512,o), +(267,503,o), +(264,490,cs), +(207,225,ls), +(205,212,o), +(212,203,o), +(225,203,cs) +); +}, +{ +closed = 1; +nodes = ( +(585,700,ls), +(569,700,o), +(558,695,o), +(549,685,c), +(298,384,l), +(165,385,l), +(228,677,l), +(230,691,o), +(223,700,o), +(209,700,cs), +(191,700,ls), +(178,700,o), +(167,691,o), +(165,677,c), +(25,22,l), +(23,9,o), +(30,0,o), +(43,0,cs), +(61,0,ls), +(75,0,o), +(86,9,o), +(88,22,c), +(153,325,l), +(297,325,l), +(440,13,ls), +(444,5,o), +(449,0,o), +(461,0,cs), +(473,0,ls), +(489,0,o), +(502,16,o), +(502,29,cs), +(502,31,o), +(502,33,o), +(501,35,c), +(355,360,l), +(615,667,ls), +(621,675,o), +(624,682,o), +(624,687,cs), +(624,695,o), +(618,700,o), +(607,700,cs) +); +} +); +width = 616; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(331,175,ls), +(346,175,o), +(360,187,o), +(364,202,cs), +(426,497,ls), +(429,512,o), +(420,524,o), +(405,524,cs), +(393,524,ls), +(378,524,o), +(363,512,o), +(360,497,cs), +(298,202,ls), +(294,187,o), +(304,175,o), +(319,175,cs) +); +}, +{ +closed = 1; +nodes = ( +(638,700,ls), +(616,700,o), +(602,689,o), +(594,678,cs), +(403,433,l), +(323,433,l), +(375,673,ls), +(378,688,o), +(368,700,o), +(353,700,cs), +(157,700,ls), +(142,700,o), +(128,688,o), +(125,673,cs), +(-13,27,ls), +(-16,11,o), +(-6,0,o), +(9,0,cs), +(205,0,ls), +(220,0,o), +(234,12,o), +(237,27,cs), +(289,273,l), +(376,273,l), +(463,23,l), +(466,17,o), +(473,0,o), +(500,0,cs), +(708,0,ls), +(720,0,o), +(730,10,o), +(734,22,cs), +(735,25,o), +(735,30,o), +(734,33,c), +(614,348,l), +(871,667,l), +(874,670,o), +(876,674,o), +(877,678,c), +(879,690,o), +(871,700,o), +(859,700,cs) +); +} +); +width = 817; +} +); +metricRight = "Ka-cy"; +unicode = 1180; +}, +{ +color = 3; +glyphname = "Kabashkir-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(387,677,l), +(389,691,o), +(382,700,o), +(368,700,cs), +(130,700,ls), +(117,700,o), +(106,691,o), +(104,677,cs), +(100,662,ls), +(98,649,o), +(105,640,o), +(118,640,cs), +(316,640,l) +); +}, +{ +pos = (149,0); +ref = "Ka-cy"; +} +); +width = 774; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(540,673,l), +(543,688,o), +(533,700,o), +(518,700,cs), +(129,700,ls), +(114,700,o), +(100,688,o), +(97,673,cs), +(62,512,ls), +(59,497,o), +(69,485,o), +(84,485,cs), +(250,485,l) +); +}, +{ +pos = (155,0); +ref = "Ka-cy"; +} +); +width = 919; +} +); +metricLeft = "Te-cy"; +metricRight = "Ka-cy"; +unicode = 1184; +}, +{ +color = 3; +glyphname = "Endescender-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(564,-140,ls), +(578,-140,o), +(588,-131,o), +(591,-118,cs), +(625,38,ls), +(628,51,o), +(620,60,o), +(606,60,cs), +(493,60,l), +(510,0,l), +(553,0,l), +(528,-118,ls), +(525,-131,o), +(533,-140,o), +(546,-140,cs) +); +}, +{ +pos = (1,0); +ref = "En-cy"; +} +); +width = 717; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(669,-140,ls), +(684,-140,o), +(698,-128,o), +(701,-113,cs), +(767,193,ls), +(770,208,o), +(760,220,o), +(745,220,cs), +(450,220,l), +(453,0,l), +(475,0,l), +(451,-113,ls), +(448,-128,o), +(458,-140,o), +(473,-140,cs) +); +}, +{ +ref = "En-cy"; +} +); +width = 815; +} +); +metricRight = "Tse-cy"; +unicode = 1186; +}, +{ +color = 6; +glyphname = "Enghe-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(650,700,ls), +(637,700,o), +(626,691,o), +(624,677,cs), +(561,385,l), +(175,385,l), +(238,677,ls), +(240,691,o), +(233,700,o), +(219,700,cs), +(201,700,ls), +(188,700,o), +(177,691,o), +(175,677,cs), +(35,22,ls), +(33,9,o), +(40,0,o), +(53,0,cs), +(71,0,ls), +(85,0,o), +(96,9,o), +(98,22,cs), +(163,325,l), +(549,325,l), +(484,22,ls), +(482,9,o), +(489,0,o), +(502,0,cs), +(520,0,ls), +(534,0,o), +(545,9,o), +(547,22,cs), +(679,640,l), +(964,640,ls), +(978,640,o), +(989,649,o), +(991,662,cs), +(995,677,ls), +(997,691,o), +(990,700,o), +(976,700,cs) +); +} +); +width = 925; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(579,700,ls), +(564,700,o), +(550,688,o), +(547,673,cs), +(502,463,l), +(340,463,l), +(385,673,ls), +(388,688,o), +(378,700,o), +(363,700,cs), +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,11,o), +(4,0,o), +(19,0,cs), +(215,0,ls), +(230,0,o), +(244,12,o), +(247,27,cs), +(293,243,l), +(455,243,l), +(409,27,ls), +(406,12,o), +(416,0,o), +(431,0,cs), +(627,0,ls), +(642,0,o), +(656,12,o), +(659,27,cs), +(759,495,l), +(956,495,ls), +(971,495,o), +(985,507,o), +(989,522,cs), +(1021,673,ls), +(1024,688,o), +(1014,700,o), +(999,700,cs) +); +} +); +width = 972; +} +); +metricLeft = "En-cy"; +metricRight = "Ge-cy"; +unicode = 1188; +}, +{ +color = 6; +glyphname = "Pedescender-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(74,0,ls), +(88,0,o), +(99,9,o), +(102,22,cs), +(234,640,l), +(620,640,l), +(488,22,ls), +(485,9,o), +(492,0,o), +(505,0,cs), +(523,0,ls), +(537,0,o), +(548,9,o), +(551,22,cs), +(690,677,ls), +(693,691,o), +(686,700,o), +(672,700,cs), +(205,700,ls), +(192,700,o), +(181,691,o), +(178,677,cs), +(39,22,ls), +(36,9,o), +(43,0,o), +(56,0,c) +); +}, +{ +closed = 1; +nodes = ( +(567,-140,ls), +(581,-140,o), +(592,-131,o), +(594,-118,cs), +(628,38,ls), +(630,51,o), +(623,60,o), +(609,60,cs), +(496,60,l), +(513,0,l), +(556,0,l), +(531,-118,ls), +(529,-131,o), +(536,-140,o), +(549,-140,cs) +); +} +); +width = 720; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,0,ls), +(233,0,o), +(248,12,o), +(251,27,cs), +(348,480,l), +(510,480,l), +(413,27,ls), +(410,12,o), +(419,0,o), +(434,0,cs), +(630,0,ls), +(645,0,o), +(660,12,o), +(663,27,cs), +(801,673,ls), +(804,688,o), +(794,700,o), +(779,700,cs), +(171,700,ls), +(156,700,o), +(142,688,o), +(139,673,cs), +(1,27,ls), +(-2,11,o), +(7,0,o), +(22,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(673,-140,ls), +(688,-140,o), +(702,-128,o), +(705,-113,cs), +(771,193,ls), +(774,208,o), +(764,220,o), +(749,220,cs), +(454,220,l), +(457,0,l), +(479,0,l), +(455,-113,ls), +(452,-128,o), +(462,-140,o), +(477,-140,cs) +); +} +); +width = 819; +} +); +metricRight = "Tse-cy"; +unicode = 1316; +}, +{ +color = 6; +glyphname = "Esdescender-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(249,-140,ls), +(263,-140,o), +(274,-131,o), +(276,-118,cs), +(309,38,l), +(238,0,l), +(213,-118,ls), +(211,-131,o), +(218,-140,o), +(231,-140,cs) +); +}, +{ +closed = 1; +nodes = ( +(456,-10,o), +(554,111,o), +(579,206,cs), +(583,218,o), +(574,226,o), +(562,226,cs), +(542,226,ls), +(531,226,o), +(522,221,o), +(516,205,cs), +(465,86,o), +(386,50,o), +(279,50,cs), +(157,50,o), +(96,115,o), +(123,266,cs), +(133,323,o), +(145,379,o), +(159,434,cs), +(196,585,o), +(285,650,o), +(407,650,cs), +(514,650,o), +(577,614,o), +(578,495,cs), +(577,479,o), +(584,474,o), +(595,474,cs), +(615,474,ls), +(627,474,o), +(639,482,o), +(640,494,cs), +(656,589,o), +(609,710,o), +(419,710,cs), +(237,710,o), +(136,595,o), +(97,439,cs), +(83,382,o), +(68,315,o), +(59,261,cs), +(32,105,o), +(84,-10,o), +(266,-10,cs) +); +} +); +width = 650; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,-140,ls), +(394,-140,o), +(408,-128,o), +(411,-113,cs), +(449,63,l), +(198,60,l), +(161,-113,ls), +(158,-128,o), +(168,-140,o), +(183,-140,cs) +); +}, +{ +closed = 1; +nodes = ( +(477,-10,o), +(657,64,o), +(699,246,cs), +(701,258,o), +(693,268,o), +(681,268,c), +(477,268,l), +(455,268,o), +(446,262,o), +(434,239,cs), +(413,199,o), +(382,185,o), +(348,185,cs), +(304,185,o), +(280,205,o), +(291,266,cs), +(301,323,o), +(313,379,o), +(327,434,c), +(342,495,o), +(374,515,o), +(418,515,cs), +(452,515,o), +(476,504,o), +(481,461,cs), +(485,439,o), +(490,432,o), +(512,432,c), +(716,432,l), +(728,432,o), +(740,442,o), +(743,454,cs), +(779,636,o), +(630,710,o), +(460,710,cs), +(273,710,o), +(115,625,o), +(68,439,c), +(54,382,o), +(39,315,o), +(30,261,c), +(-3,70,o), +(115,-10,o), +(307,-10,cs) +); +} +); +width = 731; +} +); +unicode = 1194; +}, +{ +color = 10; +glyphname = "Ustrait-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = Y; +} +); +width = 629; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = Y; +} +); +width = 709; +} +); +unicode = 1198; +}, +{ +color = 3; +glyphname = "Ustraitstroke-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(434,231,ls), +(447,231,o), +(457,240,o), +(460,253,cs), +(463,267,ls), +(466,280,o), +(459,289,o), +(446,289,cs), +(161,289,ls), +(148,289,o), +(137,280,o), +(134,267,cs), +(131,253,ls), +(128,240,o), +(136,231,o), +(149,231,cs) +); +}, +{ +ref = "Ustrait-cy"; +} +); +width = 590; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(544,167,ls), +(559,167,o), +(574,179,o), +(577,194,cs), +(592,265,ls), +(595,280,o), +(586,292,o), +(571,292,cs), +(128,292,ls), +(113,292,o), +(98,280,o), +(95,265,cs), +(80,194,ls), +(77,179,o), +(86,167,o), +(101,167,cs) +); +}, +{ +ref = "Ustrait-cy"; +} +); +width = 705; +} +); +unicode = 1200; +}, +{ +color = 3; +glyphname = "Chedescender-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(512,-140,ls), +(526,-140,o), +(537,-131,o), +(539,-118,cs), +(573,38,ls), +(575,51,o), +(568,60,o), +(554,60,cs), +(441,60,l), +(458,0,l), +(501,0,l), +(476,-118,ls), +(474,-131,o), +(481,-140,o), +(494,-140,cs) +); +}, +{ +ref = "Che-cy"; +} +); +width = 665; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(641,-140,ls), +(656,-140,o), +(670,-128,o), +(673,-113,cs), +(739,193,ls), +(742,208,o), +(732,220,o), +(717,220,cs), +(422,220,l), +(425,0,l), +(447,0,l), +(423,-113,ls), +(420,-128,o), +(430,-140,o), +(445,-140,cs) +); +}, +{ +ref = "Che-cy"; +} +); +width = 787; +} +); +metricLeft = "Che-cy"; +metricRight = "Tse-cy"; +unicode = 1206; +}, +{ +color = 6; +glyphname = "Cheverticalstroke-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(468,0,ls), +(482,0,o), +(493,9,o), +(495,22,cs), +(635,678,ls), +(637,691,o), +(630,700,o), +(616,700,cs), +(598,700,ls), +(585,700,o), +(574,691,o), +(572,678,cs), +(517,422,ls), +(496,321,o), +(380,302,o), +(312,302,cs), +(184,302,o), +(147,349,o), +(168,449,cs), +(217,678,ls), +(219,691,o), +(212,700,o), +(198,700,cs), +(180,700,ls), +(167,700,o), +(156,691,o), +(154,678,cs), +(104,444,ls), +(78,324,o), +(143,242,o), +(291,242,cs), +(356,242,o), +(452,258,o), +(491,297,c), +(432,22,ls), +(430,9,o), +(437,0,o), +(450,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(290,135,ls), +(303,135,o), +(314,144,o), +(317,157,cs), +(373,422,ls), +(376,435,o), +(369,444,o), +(356,444,cs), +(352,444,ls), +(339,444,o), +(328,435,o), +(325,422,cs), +(269,157,ls), +(266,144,o), +(273,135,o), +(286,135,cs) +); +} +); +width = 657; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(628,0,ls), +(643,0,o), +(657,12,o), +(660,27,cs), +(798,673,ls), +(801,688,o), +(791,700,o), +(776,700,cs), +(580,700,ls), +(565,700,o), +(551,688,o), +(548,673,cs), +(488,390,ls), +(485,376,o), +(438,364,o), +(404,364,cs), +(343,364,o), +(321,384,o), +(331,431,cs), +(383,673,ls), +(386,688,o), +(376,700,o), +(361,700,cs), +(165,700,ls), +(150,700,o), +(136,688,o), +(133,673,cs), +(88,461,ls), +(46,265,o), +(111,176,o), +(310,176,cs), +(363,176,o), +(409,186,o), +(448,206,c), +(410,27,ls), +(407,12,o), +(417,0,o), +(432,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(359,97,ls), +(374,97,o), +(389,109,o), +(392,124,cs), +(457,429,ls), +(460,444,o), +(451,456,o), +(436,456,cs), +(424,456,ls), +(409,456,o), +(394,444,o), +(391,429,cs), +(326,124,ls), +(323,109,o), +(332,97,o), +(347,97,cs) +); +} +); +width = 793; +} +); +metricLeft = "Che-cy"; +unicode = 1208; +}, +{ +color = 6; +glyphname = "Shha-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (557,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(202,700,ls), +(188,700,o), +(177,691,o), +(175,678,cs), +(35,22,ls), +(33,9,o), +(40,0,o), +(54,0,cs), +(72,0,ls), +(85,0,o), +(96,9,o), +(98,22,cs), +(153,278,ls), +(174,379,o), +(290,398,o), +(358,398,cs), +(486,398,o), +(523,351,o), +(502,251,cs), +(453,22,ls), +(451,9,o), +(458,0,o), +(472,0,cs), +(490,0,ls), +(503,0,o), +(514,9,o), +(516,22,cs), +(566,256,ls), +(592,376,o), +(527,458,o), +(379,458,cs), +(314,458,o), +(218,442,o), +(179,403,c), +(238,678,ls), +(240,691,o), +(233,700,o), +(220,700,cs) +); +} +); +width = 632; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (652,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,700,ls), +(152,700,o), +(138,688,o), +(135,673,cs), +(-3,27,ls), +(-6,12,o), +(4,0,o), +(19,0,cs), +(215,0,ls), +(230,0,o), +(244,12,o), +(247,27,cs), +(299,270,ls), +(302,284,o), +(343,296,o), +(373,296,cs), +(420,296,o), +(435,276,o), +(425,229,cs), +(382,27,ls), +(379,12,o), +(389,0,o), +(404,0,cs), +(600,0,ls), +(615,0,o), +(629,12,o), +(632,27,cs), +(677,239,ls), +(720,435,o), +(651,524,o), +(475,524,cs), +(426,524,o), +(383,514,o), +(347,494,c), +(385,673,ls), +(388,688,o), +(378,700,o), +(363,700,cs) +); +} +); +width = 727; +} +); +unicode = 1210; +}, +{ +color = 10; +glyphname = "Palochka-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = I; +} +); +width = 252; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = I; +} +); +width = 367; +} +); +unicode = 1216; +}, +{ +color = 10; +glyphname = "Zhebreve-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "Zhe-cy"; +}, +{ +pos = (430,0); +ref = "brevecomb-cy.case"; +} +); +width = 1015; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "Zhe-cy"; +}, +{ +pos = (409,0); +ref = "brevecomb-cy.case"; +} +); +width = 1174; +} +); +unicode = 1217; +}, +{ +color = 3; +glyphname = "Chekhakassian-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(379,-140,o), +(390,-131,o), +(392,-118,cs), +(417,0,l), +(460,0,l), +(503,60,l), +(390,60,ls), +(376,60,o), +(365,51,o), +(363,38,cs), +(329,-118,ls), +(327,-131,o), +(334,-140,o), +(348,-140,cs), +(366,-140,ls) +); +}, +{ +ref = "Che-cy"; +} +); +width = 648; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(512,-140,o), +(526,-128,o), +(529,-113,cs), +(553,0,l), +(575,0,l), +(651,120,l), +(356,120,ls), +(341,120,o), +(326,108,o), +(323,93,cs), +(279,-113,ls), +(276,-128,o), +(286,-140,o), +(301,-140,cs), +(497,-140,ls) +); +}, +{ +ref = "Che-cy"; +} +); +width = 743; +} +); +unicode = 1227; +}, +{ +color = 10; +glyphname = "Abreve-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "A-cy"; +}, +{ +pos = (246,0); +ref = "brevecomb-cy.case"; +} +); +width = 653; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "A-cy"; +}, +{ +pos = (193,0); +ref = "brevecomb-cy.case"; +} +); +width = 761; +} +); +unicode = 1232; +}, +{ +color = 10; +glyphname = "Adieresis-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "A-cy"; +}, +{ +pos = (285,180); +ref = dieresiscomb; +} +); +width = 653; +}, +{ +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "A-cy"; +}, +{ +pos = (250,180); +ref = dieresiscomb; +} +); +width = 761; +} +); +unicode = 1234; +}, +{ +color = 6; +glyphname = "Aie-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(10,0,ls), +(19,0,o), +(28,6,o), +(35,15,c), +(35,15,o), +(36,17,o), +(159,175,c), +(421,175,l), +(388,22,ls), +(386,9,o), +(393,0,o), +(406,0,cs), +(804,0,ls), +(818,0,o), +(829,9,o), +(831,22,cs), +(834,37,ls), +(837,51,o), +(830,60,o), +(816,60,cs), +(459,60,l), +(516,325,l), +(843,325,ls), +(857,325,o), +(868,334,o), +(870,347,cs), +(874,362,ls), +(877,376,o), +(869,385,o), +(855,385,cs), +(528,385,l), +(583,640,l), +(932,640,ls), +(946,640,o), +(957,649,o), +(959,662,cs), +(963,677,ls), +(965,691,o), +(958,700,o), +(944,700,cs), +(511,700,ls), +(502,700,o), +(493,696,o), +(481,681,cs), +(-11,49,o), +(-22,34,o), +(-22,34,c), +(-25,30,o), +(-28,25,o), +(-29,20,cs), +(-31,9,o), +(-24,0,o), +(-13,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(517,633,l), +(518,633,l), +(434,235,l), +(206,235,l) +); +} +); +width = 943; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(150,0,ls), +(176,0,o), +(188,14,o), +(194,25,cs), +(207,47,o), +(219,69,o), +(232,91,c), +(381,91,l), +(367,27,ls), +(364,12,o), +(374,0,o), +(389,0,cs), +(880,0,ls), +(895,0,o), +(909,12,o), +(912,27,cs), +(942,168,ls), +(946,183,o), +(936,195,o), +(921,195,cs), +(643,195,l), +(656,258,l), +(904,258,ls), +(919,258,o), +(934,270,o), +(937,285,cs), +(965,415,ls), +(968,430,o), +(959,442,o), +(944,442,cs), +(696,442,l), +(709,505,l), +(979,505,ls), +(994,505,o), +(1008,517,o), +(1012,532,cs), +(1042,673,ls), +(1045,688,o), +(1035,700,o), +(1020,700,cs), +(360,700,ls), +(333,700,o), +(316,682,o), +(308,667,c), +(189,454,o), +(69,242,o), +(-50,29,cs), +(-52,26,o), +(-52,24,o), +(-53,22,cs), +(-55,10,o), +(-47,0,o), +(-35,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(437,505,l), +(469,505,l), +(422,286,l), +(324,286,l) +); +} +); +width = 1006; +} +); +metricLeft = AE; +metricRight = AE; +unicode = 1236; +}, +{ +color = 10; +glyphname = "Iebreve-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "Ie-cy"; +}, +{ +pos = (228,0); +ref = "brevecomb-cy.case"; +} +); +width = 591; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "Ie-cy"; +}, +{ +pos = (158,0); +ref = "brevecomb-cy.case"; +} +); +width = 666; +} +); +unicode = 1238; +}, +{ +color = 6; +glyphname = "Schwa-cy"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (422,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(645,595,o), +(592,710,o), +(410,710,cs), +(232,710,o), +(144,603,o), +(119,519,cs), +(115,507,o), +(124,499,o), +(136,499,cs), +(156,499,ls), +(167,499,o), +(176,504,o), +(182,520,cs), +(225,621,o), +(299,650,o), +(397,650,cs), +(519,650,o), +(580,585,o), +(553,434,cs), +(550,416,o), +(546,397,o), +(542,379,c), +(113,379,ls), +(95,379,o), +(80,367,o), +(76,350,cs), +(72,329,ls), +(20,87,o), +(108,-10,o), +(263,-10,cs), +(438,-10,o), +(540,105,o), +(579,261,cs), +(593,315,o), +(607,382,o), +(617,439,cs) +); +}, +{ +closed = 1; +nodes = ( +(143,50,o), +(93,134,o), +(132,315,cs), +(133,321,l), +(530,321,l), +(526,303,o), +(522,284,o), +(517,266,cs), +(480,115,o), +(391,50,o), +(276,50,cs) +); +} +); +width = 655; +}, +{ +anchors = ( +{ +name = top; +pos = (465,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(766,625,o), +(645,710,o), +(459,710,cs), +(287,710,o), +(118,612,o), +(88,473,cs), +(86,461,o), +(93,451,o), +(105,451,cs), +(300,451,ls), +(322,451,o), +(331,458,o), +(344,480,c), +(362,509,o), +(387,515,o), +(417,515,cs), +(461,515,o), +(485,495,o), +(474,434,cs), +(472,426,o), +(472,419,o), +(470,411,c), +(96,411,ls), +(76,411,o), +(57,395,o), +(52,374,cs), +(47,351,ls), +(5,154,o), +(79,-10,o), +(304,-10,cs), +(496,-10,o), +(648,70,o), +(697,261,cs), +(711,315,o), +(725,382,o), +(735,439,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,185,o), +(281,218,o), +(290,263,c), +(295,289,l), +(444,289,l), +(442,281,o), +(440,274,o), +(438,266,cs), +(423,205,o), +(391,185,o), +(347,185,cs) +); +} +); +width = 742; +} +); +metricLeft = O; +metricRight = O; +unicode = 1240; +}, +{ +color = 10; +glyphname = "Zhedieresis-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "Zhe-cy"; +}, +{ +pos = (469,180); +ref = dieresiscomb; +} +); +width = 1015; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "Zhe-cy"; +}, +{ +pos = (466,180); +ref = dieresiscomb; +} +); +width = 1174; +} +); +unicode = 1244; +}, +{ +color = 10; +glyphname = "Zedieresis-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "Ze-cy"; +}, +{ +pos = (241,180); +ref = dieresiscomb; +} +); +width = 591; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "Ze-cy"; +}, +{ +pos = (231,180); +ref = dieresiscomb; +} +); +width = 713; +} +); +unicode = 1246; +}, +{ +color = 10; +glyphname = "Imacron-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (316,180); +ref = macroncomb; +} +); +width = 727; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (302,180); +ref = macroncomb; +} +); +width = 809; +} +); +unicode = 1250; +}, +{ +color = 10; +glyphname = "Idieresis-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (320,180); +ref = dieresiscomb; +} +); +width = 727; +}, +{ +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (287,180); +ref = dieresiscomb; +} +); +width = 809; +} +); +unicode = 1252; +}, +{ +color = 10; +glyphname = "Odieresis-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "O-cy"; +}, +{ +pos = (284,180); +ref = dieresiscomb; +} +); +width = 662; +}, +{ +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "O-cy"; +}, +{ +pos = (231,180); +ref = dieresiscomb; +} +); +width = 742; +} +); +unicode = 1254; +}, +{ +color = 6; +glyphname = "Obarred-cy"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (425,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(557,321,ls), +(570,321,o), +(581,330,o), +(584,343,cs), +(586,357,ls), +(589,370,o), +(582,379,o), +(569,379,cs), +(104,379,ls), +(91,379,o), +(80,370,o), +(77,357,cs), +(75,343,ls), +(72,330,o), +(79,321,o), +(92,321,cs) +); +}, +{ +closed = 1; +nodes = ( +(420,-10,o), +(532,77,o), +(577,266,cs), +(592,326,o), +(602,374,o), +(613,434,cs), +(647,620,o), +(564,710,o), +(408,710,cs), +(252,710,o), +(129,620,o), +(85,434,cs), +(70,374,o), +(60,326,o), +(49,266,cs), +(14,77,o), +(88,-10,o), +(254,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(153,50,o), +(85,115,o), +(113,271,cs), +(124,331,o), +(132,369,o), +(147,429,cs), +(185,585,o), +(282,650,o), +(395,650,cs), +(508,650,o), +(577,585,o), +(549,429,cs), +(538,369,o), +(530,331,o), +(515,271,cs), +(477,115,o), +(381,50,o), +(267,50,cs) +); +} +); +width = 662; +}, +{ +anchors = ( +{ +name = top; +pos = (465,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,289,ls), +(580,289,o), +(595,301,o), +(598,316,cs), +(612,384,ls), +(615,399,o), +(606,411,o), +(591,411,cs), +(176,411,ls), +(161,411,o), +(146,399,o), +(143,384,cs), +(129,316,ls), +(126,301,o), +(135,289,o), +(150,289,cs) +); +}, +{ +closed = 1; +nodes = ( +(490,-10,o), +(640,81,o), +(686,260,cs), +(699,314,o), +(713,379,o), +(723,436,cs), +(753,611,o), +(644,710,o), +(448,710,cs), +(252,710,o), +(99,611,o), +(55,436,cs), +(41,379,o), +(27,314,o), +(18,260,cs), +(-12,81,o), +(98,-10,o), +(294,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(292,185,o), +(269,210,o), +(279,266,cs), +(289,323,o), +(301,379,o), +(315,434,cs), +(329,490,o), +(363,515,o), +(406,515,cs), +(449,515,o), +(473,490,o), +(463,434,cs), +(453,379,o), +(441,323,o), +(427,266,cs), +(413,210,o), +(380,185,o), +(336,185,cs) +); +} +); +width = 742; +} +); +unicode = 1256; +}, +{ +color = 10; +glyphname = "Umacron-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (234,180); +ref = macroncomb; +} +); +width = 563; +}, +{ +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (257,180); +ref = macroncomb; +} +); +width = 698; +} +); +unicode = 1262; +}, +{ +color = 10; +glyphname = "Udieresis-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (238,180); +ref = dieresiscomb; +} +); +width = 563; +}, +{ +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (242,180); +ref = dieresiscomb; +} +); +width = 698; +} +); +unicode = 1264; +}, +{ +color = 10; +glyphname = "Uhungarumlaut-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (236,0); +ref = hungarumlautcomb.case; +} +); +width = 563; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (232,0); +ref = hungarumlautcomb.case; +} +); +width = 698; +} +); +unicode = 1266; +}, +{ +color = 10; +glyphname = "Chedieresis-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "Che-cy"; +}, +{ +pos = (268,180); +ref = dieresiscomb; +} +); +width = 648; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "Che-cy"; +}, +{ +pos = (234,180); +ref = dieresiscomb; +} +); +width = 742; +} +); +unicode = 1268; +}, +{ +color = 10; +glyphname = "Yerudieresis-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "Yeru-cy"; +}, +{ +pos = (349,180); +ref = dieresiscomb; +} +); +width = 771; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "Yeru-cy"; +}, +{ +pos = (397,180); +ref = dieresiscomb; +} +); +width = 1047; +} +); +unicode = 1272; +}, +{ +color = 10; +glyphname = "Qa-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = Q; +} +); +width = 662; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = Q; +} +); +width = 742; +} +); +unicode = 1306; +}, +{ +color = 10; +glyphname = "We-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = W; +} +); +width = 776; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = W; +} +); +width = 855; +} +); +unicode = 1308; +}, +{ +color = 10; +glyphname = "a-cy"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (332,520); +} +); +layerId = UUID0; +shapes = ( +{ +ref = a; +} +); +width = 569; +}, +{ +anchors = ( +{ +name = top; +pos = (383,520); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = a; +} +); +width = 660; +} +); +unicode = 1072; +}, +{ +color = 6; +glyphname = "be-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(360,-10,o), +(455,89,o), +(486,218,cs), +(490,231,o), +(494,252,o), +(498,272,cs), +(526,410,o), +(458,500,o), +(334,500,cs), +(227,500,o), +(135,440,o), +(109,346,c), +(129,346,l), +(169,585,o), +(304,626,o), +(533,678,cs), +(545,681,o), +(552,690,o), +(552,702,c), +(552,721,ls), +(552,732,o), +(542,738,o), +(530,736,cs), +(276,685,o), +(125,633,o), +(66,337,cs), +(58,297,o), +(50,258,o), +(41,218,c), +(18,89,o), +(72,-10,o), +(216,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(135,48,o), +(84,109,o), +(104,223,cs), +(106,235,o), +(108,247,o), +(114,267,cs), +(142,381,o), +(229,442,o), +(332,442,cs), +(415,442,o), +(456,381,o), +(436,267,cs), +(432,247,o), +(430,235,o), +(426,223,cs), +(398,109,o), +(321,48,o), +(228,48,cs) +); +} +); +width = 560; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(453,-10,o), +(564,58,o), +(602,189,cs), +(609,215,o), +(616,246,o), +(619,272,cs), +(637,403,o), +(571,471,o), +(415,471,cs), +(353,471,o), +(293,443,o), +(264,414,c), +(282,369,l), +(318,539,o), +(340,555,o), +(612,596,cs), +(627,598,o), +(639,612,o), +(640,629,cs), +(644,764,l), +(645,781,o), +(632,790,o), +(617,787,cs), +(258,718,o), +(137,666,o), +(68,406,cs), +(58,368,o), +(48,322,o), +(42,284,cs), +(7,67,o), +(66,-10,o), +(269,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(261,132,o), +(260,151,o), +(267,193,cs), +(270,211,o), +(279,250,o), +(283,268,cs), +(294,307,o), +(304,328,o), +(345,328,cs), +(380,328,o), +(380,307,o), +(373,268,cs), +(371,250,o), +(362,211,o), +(357,193,cs), +(346,151,o), +(337,132,o), +(299,132,cs) +); +} +); +width = 655; +} +); +metricRight = o; +unicode = 1073; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 730; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 231; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 55; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 493; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "ve-cy"; +kernLeft = afii10074; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(250,0,ls), +(357,0,o), +(438,50,o), +(458,145,cs), +(468,192,o), +(453,250,o), +(395,268,c), +(444,291,o), +(476,324,o), +(488,384,cs), +(505,466,o), +(457,520,o), +(355,520,cs), +(158,520,ls), +(145,520,o), +(134,511,o), +(132,498,c), +(30,22,ls), +(28,9,o), +(35,0,o), +(48,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(136,233,l), +(291,233,ls), +(373,233,o), +(409,206,o), +(396,145,cs), +(383,87,o), +(326,58,o), +(254,58,cs), +(99,58,l) +); +}, +{ +closed = 1; +nodes = ( +(185,462,l), +(333,462,ls), +(399,462,o), +(439,442,o), +(427,384,cs), +(416,326,o), +(365,291,o), +(297,291,cs), +(149,291,l) +); +} +); +width = 542; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,0,ls), +(480,0,o), +(568,63,o), +(589,159,cs), +(600,212,o), +(580,244,o), +(545,267,c), +(576,289,o), +(603,321,o), +(612,364,cs), +(633,460,o), +(570,520,o), +(384,520,cs), +(127,520,ls), +(112,520,o), +(98,508,o), +(95,493,cs), +(-5,27,ls), +(-8,12,o), +(2,0,o), +(17,0,c) +); +}, +{ +closed = 1; +nodes = ( +(254,188,l), +(344,188,ls), +(367,188,o), +(378,182,o), +(374,162,cs), +(370,142,o), +(356,137,o), +(333,137,cs), +(243,137,l) +); +}, +{ +closed = 1; +nodes = ( +(295,383,l), +(365,383,ls), +(388,383,o), +(400,377,o), +(396,357,cs), +(391,337,o), +(378,332,o), +(354,332,cs), +(284,332,l) +); +} +); +width = 644; +} +); +metricLeft = "en-cy"; +unicode = 1074; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "ge-cy"; +kernLeft = afii10074; +kernRight = afii10068; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (343,0); +}, +{ +name = top; +pos = (309,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,ls), +(78,0,o), +(88,9,o), +(91,22,cs), +(185,462,l), +(429,462,ls), +(442,462,o), +(453,471,o), +(456,484,cs), +(459,498,ls), +(462,511,o), +(454,520,o), +(441,520,cs), +(158,520,ls), +(145,520,o), +(135,511,o), +(132,498,cs), +(30,22,ls), +(27,9,o), +(35,0,o), +(48,0,cs) +); +} +); +width = 418; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (409,0); +}, +{ +name = top; +pos = (305,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,0,ls), +(211,0,o), +(225,12,o), +(228,27,cs), +(296,345,l), +(455,345,ls), +(470,345,o), +(485,357,o), +(488,372,cs), +(514,493,ls), +(517,508,o), +(507,520,o), +(492,520,cs), +(127,520,ls), +(112,520,o), +(98,508,o), +(95,493,cs), +(-5,27,ls), +(-8,12,o), +(2,0,o), +(17,0,cs) +); +} +); +width = 484; +} +); +metricLeft = "en-cy"; +unicode = 1075; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 467; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "gje-cy"; +kernLeft = afii10074; +kernRight = afii10068; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "ge-cy"; +}, +{ +pos = (256,0); +ref = acutecomb; +} +); +width = 418; +}, +{ +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "ge-cy"; +}, +{ +pos = (196,0); +ref = acutecomb; +} +); +width = 484; +} +); +unicode = 1107; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 268; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "gheupturn-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(452,650,ls), +(439,650,o), +(428,641,o), +(425,628,cs), +(402,520,l), +(158,520,ls), +(145,520,o), +(135,511,o), +(132,498,cs), +(31,22,ls), +(28,9,o), +(35,0,o), +(48,0,cs), +(65,0,ls), +(78,0,o), +(89,9,o), +(92,22,cs), +(185,462,l), +(429,462,ls), +(442,462,o), +(453,471,o), +(456,484,cs), +(486,628,ls), +(489,641,o), +(482,650,o), +(469,650,cs) +); +} +); +width = 418; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,630,ls), +(322,630,o), +(307,618,o), +(304,603,cs), +(287,520,l), +(128,520,ls), +(113,520,o), +(98,508,o), +(95,493,cs), +(-4,27,ls), +(-7,12,o), +(2,0,o), +(17,0,cs), +(196,0,ls), +(211,0,o), +(226,12,o), +(229,27,cs), +(296,345,l), +(455,345,ls), +(470,345,o), +(485,357,o), +(488,372,cs), +(537,603,ls), +(540,618,o), +(531,630,o), +(516,630,cs) +); +} +); +width = 484; +} +); +metricLeft = "en-cy"; +metricRight = "ge-cy"; +unicode = 1169; +}, +{ +color = 6; +glyphname = "gedescender-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(66,0,ls), +(79,0,o), +(89,9,o), +(92,22,cs), +(186,462,l), +(430,462,ls), +(443,462,o), +(454,471,o), +(456,484,cs), +(459,498,ls), +(462,511,o), +(455,520,o), +(442,520,cs), +(159,520,ls), +(146,520,o), +(135,511,o), +(132,498,cs), +(31,22,ls), +(28,9,o), +(36,0,o), +(49,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(109,-130,ls), +(122,-130,o), +(133,-121,o), +(136,-108,cs), +(166,36,ls), +(169,49,o), +(162,58,o), +(149,58,cs), +(39,58,l), +(58,0,l), +(98,0,l), +(75,-108,ls), +(72,-121,o), +(79,-130,o), +(92,-130,cs) +); +} +); +width = 418; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,0,ls), +(211,0,o), +(226,12,o), +(229,27,cs), +(297,345,l), +(456,345,ls), +(471,345,o), +(485,357,o), +(488,372,cs), +(514,493,ls), +(517,508,o), +(508,520,o), +(493,520,cs), +(128,520,ls), +(113,520,o), +(98,508,o), +(95,493,cs), +(-4,27,ls), +(-7,12,o), +(2,0,o), +(17,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(239,-110,ls), +(254,-110,o), +(269,-98,o), +(272,-83,cs), +(321,148,ls), +(324,163,o), +(315,175,o), +(300,175,cs), +(28,175,l), +(32,0,l), +(56,0,l), +(39,-83,ls), +(36,-98,o), +(45,-110,o), +(60,-110,cs) +); +} +); +width = 484; +} +); +unicode = 1271; +}, +{ +color = 6; +glyphname = "ghestroke-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,ls), +(78,0,o), +(89,9,o), +(91,22,cs), +(185,462,l), +(429,462,ls), +(442,462,o), +(453,471,o), +(456,484,cs), +(459,498,ls), +(461,511,o), +(454,520,o), +(441,520,cs), +(158,520,ls), +(145,520,o), +(134,511,o), +(132,498,cs), +(30,22,ls), +(28,9,o), +(35,0,o), +(48,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(265,231,ls), +(278,231,o), +(289,240,o), +(292,253,cs), +(294,267,ls), +(297,280,o), +(290,289,o), +(277,289,cs), +(32,289,ls), +(19,289,o), +(8,280,o), +(5,267,cs), +(3,253,ls), +(0,240,o), +(7,231,o), +(20,231,cs) +); +} +); +width = 418; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,0,ls), +(226,0,o), +(240,12,o), +(243,27,cs), +(311,345,l), +(470,345,ls), +(485,345,o), +(500,357,o), +(503,372,cs), +(529,493,ls), +(532,508,o), +(522,520,o), +(507,520,cs), +(142,520,ls), +(127,520,o), +(113,508,o), +(110,493,cs), +(10,27,ls), +(7,12,o), +(17,0,o), +(32,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(345,179,ls), +(360,179,o), +(374,191,o), +(378,206,cs), +(392,274,ls), +(395,289,o), +(386,301,o), +(371,301,cs), +(36,301,ls), +(21,301,o), +(6,289,o), +(3,274,cs), +(-11,206,ls), +(-15,191,o), +(-5,179,o), +(10,179,cs) +); +} +); +width = 499; +} +); +unicode = 1171; +}, +{ +color = 6; +glyphname = "ghemiddlehook-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,ls), +(78,0,o), +(89,9,o), +(92,22,cs), +(185,462,l), +(429,462,ls), +(442,462,o), +(453,471,o), +(456,484,cs), +(459,498,ls), +(462,511,o), +(454,520,o), +(441,520,cs), +(158,520,ls), +(145,520,o), +(135,511,o), +(132,498,cs), +(31,22,ls), +(28,9,o), +(35,0,o), +(48,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(128,193,l), +(139,243,o), +(196,262,o), +(269,262,cs), +(362,262,o), +(388,197,o), +(365,91,cs), +(363,78,ls), +(338,-39,o), +(270,-132,o), +(138,-132,c), +(134,-132,l), +(121,-132,o), +(110,-141,o), +(107,-154,c), +(104,-168,l), +(101,-181,o), +(109,-190,o), +(122,-190,c), +(126,-190,l), +(291,-190,o), +(392,-72,o), +(424,78,cs), +(427,96,ls), +(450,234,o), +(400,320,o), +(281,320,cs), +(223,320,o), +(183,306,o), +(146,277,c) +); +} +); +width = 488; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(176,0,ls), +(191,0,o), +(205,12,o), +(209,27,cs), +(276,345,l), +(455,345,ls), +(470,345,o), +(485,357,o), +(488,372,cs), +(514,493,ls), +(517,508,o), +(507,520,o), +(492,520,cs), +(127,520,ls), +(112,520,o), +(98,508,o), +(95,493,cs), +(-4,27,ls), +(-8,12,o), +(2,0,o), +(17,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,80,l), +(224,101,o), +(253,111,o), +(289,111,cs), +(331,111,o), +(344,92,o), +(337,56,cs), +(332,35,ls), +(325,2,o), +(308,-15,o), +(279,-15,cs), +(258,-15,ls), +(243,-15,o), +(228,-27,o), +(225,-42,cs), +(199,-163,ls), +(196,-178,o), +(206,-190,o), +(221,-190,cs), +(252,-190,ls), +(405,-190,o), +(531,-114,o), +(561,29,cs), +(568,63,ls), +(597,196,o), +(543,290,o), +(418,290,cs), +(356,290,o), +(310,282,o), +(257,256,c) +); +} +); +width = 635; +} +); +metricLeft = "en-cy"; +unicode = 1173; +}, +{ +color = 6; +glyphname = "de-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(362,-10,o), +(450,89,o), +(482,218,cs), +(487,233,o), +(496,267,o), +(500,282,cs), +(582,576,o), +(554,741,o), +(299,750,c), +(286,750,o), +(276,740,o), +(276,727,cs), +(276,714,ls), +(276,702,o), +(285,692,o), +(299,692,c), +(470,686,o), +(504,598,o), +(469,415,c), +(438,468,o), +(389,500,o), +(320,500,cs), +(175,500,o), +(84,405,o), +(53,282,cs), +(47,259,o), +(41,233,o), +(38,218,cs), +(14,89,o), +(78,-10,o), +(217,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(121,48,o), +(80,109,o), +(100,223,cs), +(103,238,o), +(108,261,o), +(113,277,cs), +(146,383,o), +(216,442,o), +(320,442,cs), +(405,442,o), +(458,374,o), +(438,277,cs), +(435,262,o), +(427,238,o), +(422,223,cs), +(394,109,o), +(311,48,o), +(217,48,cs) +); +} +); +width = 574; +}, +{ +associatedMasterId = UUID0; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(161,520,ls), +(148,520,o), +(139,511,o), +(139,498,cs), +(139,375,ls), +(139,142,o), +(92,69,o), +(24,58,c), +(24,0,l), +(131,8,o), +(199,108,o), +(199,368,cs), +(199,462,l), +(378,462,l), +(378,0,l), +(439,0,l), +(439,498,ls), +(439,511,o), +(430,520,o), +(417,520,cs) +); +} +); +}; +color = 6; +layerId = "0F05B1C5-3511-47BE-8364-4EA4FFCE4314"; +name = "Sep 9 16, 19:26"; +shapes = ( +{ +closed = 1; +nodes = ( +(-8,-110,ls), +(5,-110,o), +(16,-101,o), +(19,-88,cs), +(37,0,l), +(436,0,l), +(418,-88,ls), +(415,-101,o), +(422,-110,o), +(435,-110,cs), +(452,-110,ls), +(465,-110,o), +(476,-101,o), +(479,-88,cs), +(506,38,ls), +(508,51,o), +(501,60,o), +(488,60,cs), +(439,60,l), +(532,498,ls), +(535,511,o), +(528,520,o), +(515,520,cs), +(227,520,ls), +(214,520,o), +(203,511,o), +(200,498,cs), +(174,375,ls), +(125,144,o), +(70,59,o), +(14,58,cs), +(11,58,ls), +(-2,58,o), +(-13,49,o), +(-16,36,cs), +(-42,-88,ls), +(-45,-101,o), +(-38,-110,o), +(-25,-110,cs) +); +}, +{ +closed = 1; +nodes = ( +(155,111,o), +(200,208,o), +(234,368,cs), +(254,462,l), +(464,462,l), +(378,60,l), +(102,58,l) +); +} +); +width = 574; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(459,-10,o), +(552,66,o), +(593,213,cs), +(614,287,o), +(626,337,o), +(631,399,cs), +(646,633,o), +(521,753,o), +(257,751,c), +(241,750,o), +(229,738,o), +(229,723,cs), +(229,617,ls), +(229,602,o), +(240,590,o), +(256,590,c), +(396,585,o), +(457,547,o), +(450,463,c), +(412,483,o), +(368,492,o), +(321,492,cs), +(155,492,o), +(61,416,o), +(24,269,cs), +(16,239,o), +(17,243,o), +(13,213,cs), +(-8,66,o), +(91,-10,o), +(265,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,150,o), +(252,171,o), +(259,218,cs), +(262,238,o), +(263,244,o), +(268,264,cs), +(280,308,o), +(289,332,o), +(327,332,cs), +(365,332,o), +(365,308,o), +(358,264,cs), +(355,244,o), +(354,238,o), +(349,218,cs), +(336,171,o), +(327,150,o), +(289,150,cs) +); +} +); +width = 644; +}, +{ +associatedMasterId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(438,590,o), +(463,574,o), +(450,459,cs), +(446,407,o), +(437,354,o), +(399,168,c), +(583,136,l), +(618,302,o), +(636,388,o), +(640,449,cs), +(653,650,o), +(532,750,o), +(289,750,c), +(289,590,l) +); +} +); +}; +color = 6; +layerId = "066841D5-1549-48E1-A850-59D7566563D8"; +name = "Sep 9 16, 19:36"; +shapes = ( +{ +closed = 1; +nodes = ( +(155,492,o), +(61,416,o), +(24,269,cs), +(16,239,o), +(17,243,o), +(13,213,cs), +(-8,66,o), +(91,-10,o), +(265,-10,cs), +(459,-10,o), +(552,66,o), +(593,213,cs), +(601,243,o), +(600,239,o), +(604,269,c), +(547,366,l), +(501,454,o), +(418,492,o), +(321,492,cs) +); +}, +{ +closed = 1; +nodes = ( +(355,244,o), +(354,238,o), +(349,218,cs), +(336,171,o), +(327,150,o), +(289,150,cs), +(251,150,o), +(252,171,o), +(259,218,cs), +(262,238,o), +(263,244,o), +(268,264,cs), +(280,308,o), +(289,332,o), +(327,332,cs), +(365,332,o), +(365,308,o), +(358,264,cs) +); +}, +{ +closed = 1; +nodes = ( +(418,590,o), +(463,574,o), +(450,459,cs), +(447,425,o), +(443,390,o), +(428,316,c), +(593,213,l), +(628,343,o), +(637,407,o), +(640,449,cs), +(653,650,o), +(532,750,o), +(289,750,c), +(289,590,l) +); +} +); +width = 641; +} +); +unicode = 1076; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 466; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 508; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "ie-cy"; +kernLeft = afii10080; +kernRight = afii10070; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (335,520); +} +); +layerId = UUID0; +shapes = ( +{ +ref = e; +} +); +width = 544; +}, +{ +anchors = ( +{ +name = top; +pos = (376,520); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = e; +} +); +width = 621; +} +); +unicode = 1077; +}, +{ +color = 10; +glyphname = "iegrave-cy"; +kernLeft = afii10080; +kernRight = afii10070; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "ie-cy"; +}, +{ +pos = (205,0); +ref = gravecomb; +} +); +width = 544; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "ie-cy"; +}, +{ +pos = (145,0); +ref = gravecomb; +} +); +width = 621; +} +); +unicode = 1104; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "io-cy"; +kernLeft = afii10080; +kernRight = afii10070; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "ie-cy"; +}, +{ +pos = (212,0); +ref = dieresiscomb; +} +); +width = 544; +}, +{ +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "ie-cy"; +}, +{ +pos = (162,0); +ref = dieresiscomb; +} +); +width = 621; +} +); +unicode = 1105; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "zhe-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (674,0); +}, +{ +name = top; +pos = (430,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(20,0,ls), +(32,0,o), +(41,5,o), +(49,14,cs), +(255,237,l), +(340,237,l), +(294,22,ls), +(292,9,o), +(299,0,o), +(312,0,cs), +(329,0,ls), +(342,0,o), +(353,9,o), +(355,22,cs), +(401,237,l), +(498,237,l), +(609,14,l), +(614,5,o), +(620,0,o), +(632,0,cs), +(650,0,ls), +(662,0,o), +(670,5,o), +(672,14,cs), +(673,18,o), +(671,22,o), +(669,27,cs), +(547,273,l), +(750,494,ls), +(755,499,o), +(757,503,o), +(757,506,cs), +(759,515,o), +(752,520,o), +(740,520,cs), +(711,520,ls), +(699,520,o), +(691,515,o), +(682,505,cs), +(496,295,l), +(413,295,l), +(457,498,ls), +(459,511,o), +(452,520,o), +(439,520,cs), +(422,520,ls), +(409,520,o), +(398,511,o), +(396,498,cs), +(352,295,l), +(264,295,l), +(161,505,ls), +(156,515,o), +(150,520,o), +(138,520,cs), +(123,520,ls), +(111,520,o), +(104,515,o), +(101,506,cs), +(100,503,o), +(100,499,o), +(103,494,cs), +(210,276,l), +(-20,27,ls), +(-25,22,o), +(-26,18,o), +(-27,14,cs), +(-29,5,o), +(-23,0,o), +(-11,0,cs) +); +} +); +width = 749; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (958,0); +}, +{ +name = top; +pos = (582,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(214,0,ls), +(234,0,o), +(246,14,o), +(248,17,cs), +(376,175,l), +(394,175,l), +(362,27,ls), +(359,12,o), +(369,0,o), +(384,0,cs), +(559,0,ls), +(574,0,o), +(588,12,o), +(591,27,cs), +(623,175,l), +(640,175,l), +(701,17,ls), +(703,14,o), +(709,0,o), +(729,0,cs), +(919,0,ls), +(932,0,o), +(946,11,o), +(948,24,cs), +(949,30,o), +(948,34,o), +(947,37,cs), +(850,250,l), +(1036,481,ls), +(1039,484,o), +(1043,490,o), +(1044,496,cs), +(1047,509,o), +(1038,520,o), +(1025,520,cs), +(833,520,ls), +(815,520,o), +(805,508,o), +(801,503,cs), +(682,350,l), +(660,350,l), +(691,493,ls), +(694,508,o), +(684,520,o), +(669,520,cs), +(494,520,ls), +(479,520,o), +(465,508,o), +(462,493,cs), +(431,350,l), +(409,350,l), +(356,503,ls), +(354,508,o), +(348,520,o), +(330,520,cs), +(153,520,ls), +(140,520,o), +(126,509,o), +(124,496,cs), +(123,490,o), +(125,484,o), +(126,481,cs), +(203,278,l), +(-8,37,ls), +(-11,34,o), +(-14,30,o), +(-15,24,cs), +(-18,11,o), +(-9,0,o), +(4,0,cs) +); +} +); +width = 1033; +}, +{ +associatedMasterId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(240,0,ls), +(258,0,o), +(266,11,o), +(270,17,cs), +(339,114,l), +(405,17,ls), +(410,10,o), +(417,0,o), +(435,0,cs), +(627,0,ls), +(640,0,o), +(651,11,o), +(651,24,cs), +(651,28,o), +(650,33,o), +(647,37,cs), +(482,269,l), +(629,483,ls), +(631,486,o), +(633,490,o), +(633,497,cs), +(633,509,o), +(622,520,o), +(609,520,cs), +(434,520,ls), +(414,520,o), +(406,507,o), +(402,501,cs), +(344,412,l), +(286,501,ls), +(282,507,o), +(274,520,o), +(254,520,cs), +(71,520,ls), +(58,520,o), +(47,509,o), +(47,496,cs), +(47,491,o), +(49,486,o), +(51,483,cs), +(195,268,l), +(33,37,ls), +(30,33,o), +(29,27,o), +(29,24,cs), +(29,11,o), +(40,0,o), +(53,0,cs) +); +} +); +}; +color = 6; +layerId = "4EB4411D-BF13-4CBC-9610-E2BC1A696C3C"; +name = "Sep 1 16, 18:41"; +shapes = ( +{ +closed = 1; +nodes = ( +(222,0,ls), +(240,0,o), +(251,8,o), +(253,17,cs), +(288,139,ls), +(295,164,o), +(309,174,o), +(327,174,cs), +(355,174,l), +(355,27,ls), +(355,12,o), +(367,0,o), +(382,0,cs), +(561,0,ls), +(576,0,o), +(588,12,o), +(588,27,cs), +(588,174,l), +(616,174,ls), +(634,174,o), +(648,164,o), +(655,139,cs), +(690,17,ls), +(693,7,o), +(704,0,o), +(721,0,cs), +(898,0,ls), +(911,0,o), +(916,13,o), +(912,24,cs), +(846,224,ls), +(819,307,o), +(770,343,o), +(702,343,cs), +(588,343,l), +(588,493,ls), +(588,508,o), +(576,520,o), +(561,520,cs), +(382,520,ls), +(367,520,o), +(355,508,o), +(355,493,cs), +(355,343,l), +(241,343,ls), +(173,343,o), +(125,307,o), +(97,224,cs), +(31,24,ls), +(27,12,o), +(33,0,o), +(45,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(348,270,l), +(281,504,ls), +(279,513,o), +(268,520,o), +(252,520,cs), +(70,520,ls), +(58,520,o), +(47,510,o), +(47,497,cs), +(47,494,o), +(48,490,o), +(49,487,cs), +(131,270,l) +); +}, +{ +closed = 1; +nodes = ( +(812,270,l), +(894,488,ls), +(895,491,o), +(896,494,o), +(896,497,cs), +(896,509,o), +(886,520,o), +(872,520,cs), +(691,520,ls), +(675,520,o), +(665,514,o), +(662,504,cs), +(595,270,l) +); +} +); +width = 943; +} +); +metricLeft = "=|ka-cy"; +metricRight = "ka-cy"; +unicode = 1078; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 14; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "ze-cy"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (199,0); +}, +{ +name = top; +pos = (304,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(315,-10,o), +(411,47,o), +(428,134,cs), +(443,206,o), +(420,253,o), +(363,271,c), +(418,296,o), +(447,329,o), +(459,385,cs), +(471,444,o), +(443,530,o), +(303,530,cs), +(177,530,o), +(96,463,o), +(78,379,cs), +(76,367,o), +(83,359,o), +(95,359,c), +(112,359,ls), +(124,359,o), +(133,364,o), +(141,380,cs), +(168,440,o), +(214,473,o), +(303,473,cs), +(398,473,o), +(405,422,o), +(395,375,cs), +(384,320,o), +(343,298,o), +(283,298,cs), +(236,298,ls), +(223,298,o), +(212,289,o), +(209,276,cs), +(206,262,ls), +(203,249,o), +(211,240,o), +(224,240,cs), +(278,240,ls), +(351,240,o), +(380,208,o), +(366,144,cs), +(352,77,o), +(283,48,o), +(211,48,cs), +(136,48,o), +(84,67,o), +(80,130,cs), +(80,146,o), +(73,151,o), +(61,151,cs), +(44,151,ls), +(32,151,o), +(21,143,o), +(19,131,cs), +(7,76,o), +(53,-10,o), +(199,-10,cs) +); +} +); +width = 507; +}, +{ +anchors = ( +{ +name = bottom; +pos = (253,0); +}, +{ +name = top; +pos = (374,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-10,o), +(532,59,o), +(551,149,cs), +(561,196,o), +(555,252,o), +(499,273,c), +(552,295,o), +(580,340,o), +(589,380,cs), +(608,471,o), +(551,530,o), +(363,530,cs), +(161,530,o), +(90,427,o), +(68,368,cs), +(64,359,o), +(71,351,o), +(80,351,cs), +(249,351,ls), +(266,351,o), +(272,358,o), +(280,363,cs), +(293,372,o), +(303,376,o), +(329,376,cs), +(354,376,o), +(363,366,o), +(359,350,cs), +(356,334,o), +(347,324,o), +(317,324,cs), +(260,324,ls), +(248,324,o), +(236,313,o), +(234,302,cs), +(216,219,ls), +(214,208,o), +(221,197,o), +(233,197,cs), +(290,197,ls), +(324,197,o), +(328,185,o), +(325,171,cs), +(321,152,o), +(309,142,o), +(279,142,cs), +(252,142,o), +(244,148,o), +(237,154,cs), +(232,159,o), +(229,166,o), +(212,166,cs), +(37,166,ls), +(29,166,o), +(16,158,o), +(17,149,cs), +(15,90,o), +(40,-10,o), +(249,-10,cs) +); +} +); +width = 615; +} +); +unicode = 1079; +}, +{ +color = 10; +glyphname = "ii-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (511,0); +}, +{ +name = top; +pos = (323,520); +} +); +layerId = UUID0; +shapes = ( +{ +ref = u; +} +); +width = 586; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (598,0); +}, +{ +name = top; +pos = (385,520); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = u; +} +); +width = 673; +} +); +unicode = 1080; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 465; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "iishort-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (147,0); +ref = "brevecomb-cy"; +} +); +width = 586; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (109,0); +ref = "brevecomb-cy"; +} +); +width = 673; +} +); +unicode = 1081; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 287; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "iigrave-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (193,0); +ref = gravecomb; +} +); +width = 586; +}, +{ +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (154,0); +ref = gravecomb; +} +); +width = 673; +} +); +unicode = 1117; +}, +{ +color = 6; +glyphname = "ka-cy"; +kernLeft = afii10074; +kernRight = afii10076; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (321,0); +}, +{ +name = top; +pos = (310,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,ls), +(78,0,o), +(88,9,o), +(91,22,cs), +(137,235,l), +(246,235,l), +(356,14,l), +(361,5,o), +(367,0,o), +(379,0,cs), +(397,0,ls), +(409,0,o), +(417,5,o), +(419,14,cs), +(420,18,o), +(419,22,o), +(416,27,cs), +(293,272,l), +(497,494,ls), +(501,499,o), +(504,503,o), +(504,506,cs), +(504,515,o), +(499,520,o), +(487,520,cs), +(458,520,ls), +(446,520,o), +(438,515,o), +(429,505,cs), +(242,295,l), +(149,295,l), +(193,498,ls), +(196,511,o), +(188,520,o), +(175,520,cs), +(158,520,ls), +(145,520,o), +(135,511,o), +(132,498,cs), +(30,22,ls), +(27,9,o), +(35,0,o), +(48,0,cs) +); +} +); +width = 496; +}, +{ +associatedMasterId = UUID0; +background = { +shapes = ( +{ +closed = 0; +nodes = ( +(143,268,l), +(204,268,ls), +(288,268,o), +(342,227,o), +(389,118,cs), +(440,0,l) +); +}, +{ +closed = 0; +nodes = ( +(258,256,l), +(420,520,l) +); +}, +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,237,l), +(454,237,l), +(454,295,l), +(142,295,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +}; +color = 6; +layerId = "255BA7C3-3368-441B-BB98-346AB378CB36"; +name = "1"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(233.301,273.028,l), +(282.699,238.972,l), +(445,475,ls), +(459,496,o), +(447,520,o), +(422,520,cs), +(414,520,ls), +(408,520,o), +(401,517,o), +(393,505,cs) +); +}, +{ +closed = 1; +nodes = ( +(416.538,129.902,ls), +(366,247,o), +(302.486,298,o), +(204,298,cs), +(133,298,l), +(133,238,l), +(204,238,ls), +(276.794,238,o), +(320,203,o), +(361.452,106.121,cs), +(402,12,ls), +(405,5,o), +(412,0,o), +(420,0,cs), +(433,0,ls), +(453,0,o), +(465,19,o), +(457,37,cs) +); +} +); +width = 488; +}, +{ +associatedMasterId = UUID0; +background = { +shapes = ( +{ +closed = 0; +nodes = ( +(143,268,l), +(204,268,ls), +(288,268,o), +(342,227,o), +(389,118,cs), +(440,0,l) +); +}, +{ +closed = 0; +nodes = ( +(258,256,l), +(420,520,l) +); +}, +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,237,l), +(454,237,l), +(454,295,l), +(142,295,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +}; +color = 6; +layerId = "07ED4AB0-A96D-4BB6-8152-74A48FFEBE6B"; +name = "2"; +shapes = ( +{ +closed = 1; +nodes = ( +(472,0,l), +(400,187,o), +(350,295,o), +(214,295,cs), +(133,295,l), +(133,237,l), +(214,237,ls), +(300,237,o), +(333,196,o), +(408,0,c) +); +}, +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(233.301,273.028,l), +(282.699,238.972,l), +(476,520,l), +(404,520,l) +); +} +); +width = 488; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (440,0); +}, +{ +name = top; +pos = (260,520); +} +); +associatedMasterId = UUID0; +background = { +shapes = ( +{ +closed = 0; +nodes = ( +(248,256,l), +(410,520,l) +); +}, +{ +closed = 0; +nodes = ( +(119,265,l), +(267,265,l) +); +}, +{ +closed = 0; +nodes = ( +(435,0,l), +(258,264,l) +); +} +); +}; +color = 6; +layerId = "E9D7561D-F42A-4CDE-9177-0FC925E84D6E"; +name = "3"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(222.43,271.69,l), +(273.57,240.31,l), +(429,494,ls), +(438,509,o), +(431,520,o), +(414,520,cs), +(392,520,ls), +(380,520,o), +(372,515,o), +(366,505,cs) +); +}, +{ +closed = 1; +nodes = ( +(119,295,l), +(119,235,l), +(267,235,l), +(267,295,l) +); +}, +{ +closed = 1; +nodes = ( +(390,14,ls), +(396,4,o), +(404,0,o), +(416,0,cs), +(440,0,ls), +(458,0,o), +(464,12,o), +(454,27,cs), +(282.918,280.706,l), +(233.082,247.294,l) +); +} +); +width = 459; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (440,0); +}, +{ +name = top; +pos = (260,520); +} +); +associatedMasterId = UUID0; +background = { +shapes = ( +{ +closed = 0; +nodes = ( +(258,256,l), +(420,520,l) +); +}, +{ +closed = 0; +nodes = ( +(119,265,l), +(267,265,l) +); +}, +{ +closed = 0; +nodes = ( +(420,0,l), +(258,264,l) +); +} +); +}; +color = 6; +layerId = "DB5E8808-178A-47BB-AFAA-05472A639889"; +name = "Sep 1 16, 18:37"; +shapes = ( +{ +closed = 1; +nodes = ( +(232.43,271.69,l), +(283.57,240.31,l), +(445.57,504.31,l), +(394.43,535.69,l) +); +}, +{ +closed = 1; +nodes = ( +(119,295,l), +(119,235,l), +(267,235,l), +(267,295,l) +); +}, +{ +closed = 1; +nodes = ( +(394.43,-15.69,l), +(445.57,15.69,l), +(283.57,279.69,l), +(232.43,248.31,l) +); +}, +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (270,0); +}, +{ +name = top; +pos = (388,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(192,0,ls), +(207,0,o), +(221,12,o), +(224,27,cs), +(256,175,l), +(273,175,l), +(334,17,ls), +(338,8,o), +(346,0,o), +(362,0,cs), +(552,0,ls), +(565,0,o), +(579,11,o), +(581,24,cs), +(582,30,o), +(581,34,o), +(580,37,cs), +(484,250,l), +(669,481,ls), +(672,484,o), +(676,490,o), +(677,496,cs), +(680,509,o), +(671,520,o), +(658,520,cs), +(466,520,ls), +(448,520,o), +(438,508,o), +(434,503,cs), +(315,350,l), +(293,350,l), +(324,493,ls), +(327,508,o), +(317,520,o), +(302,520,cs), +(127,520,ls), +(112,520,o), +(98,508,o), +(95,493,cs), +(-5,27,ls), +(-8,12,o), +(2,0,o), +(17,0,cs) +); +} +); +width = 666; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (584,0); +}, +{ +name = top; +pos = (322,520); +} +); +associatedMasterId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(243,256,l), +(386,17,ls), +(388,14,o), +(397,0,o), +(417,0,cs), +(627,0,ls), +(640,0,o), +(651,11,o), +(651,24,cs), +(651,30,o), +(649,34,o), +(647,37,cs), +(495,266,l), +(622,481,ls), +(624,484,o), +(627,490,o), +(627,496,cs), +(627,509,o), +(616,520,o), +(603,520,cs), +(411,520,ls), +(393,520,o), +(385,508,o), +(382,503,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,493,ls), +(274,508,o), +(262,520,o), +(247,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs), +(247,0,ls), +(262,0,o), +(274,12,o), +(274,27,cs) +); +} +); +}; +color = 6; +layerId = "1F63CD2E-49AA-4FE9-9789-0673C5E291D4"; +name = old; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(266,0,o), +(278,12,o), +(278,27,cs), +(278,174,l), +(306,174,ls), +(324,174,o), +(335,163,o), +(345,139,c), +(390,17,ls), +(394,5,o), +(403,0,o), +(421,0,cs), +(598,0,ls), +(607,0,o), +(614,7,o), +(614,16,cs), +(614,19,o), +(613,22,o), +(612,24,c), +(536,224,ls), +(505,306,o), +(460,343,o), +(392,343,cs), +(278,343,l), +(278,493,ls), +(278,508,o), +(266,520,o), +(251,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(502,239,l), +(597,492,ls), +(599,498,o), +(600,501,o), +(600,504,cs), +(600,513,o), +(593,520,o), +(584,520,cs), +(392,520,ls), +(376,520,o), +(366,513,o), +(363,504,cs), +(285,239,l) +); +} +); +width = 644; +} +); +metricLeft = "en-cy"; +unicode = 1082; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 260; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-857"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "kje-cy"; +kernLeft = afii10074; +kernRight = afii10076; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "ka-cy"; +}, +{ +pos = (257,0); +ref = acutecomb; +} +); +width = 496; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "ka-cy"; +}, +{ +pos = (279,0); +ref = acutecomb; +} +); +width = 666; +} +); +unicode = 1116; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 265; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "el-cy"; +kernLeft = afii10077; +kernRight = afii10074; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(94,0,o), +(179,108,o), +(234,368,cs), +(254,462,l), +(462,462,l), +(368,22,ls), +(366,9,o), +(373,0,o), +(386,0,cs), +(403,0,ls), +(416,0,o), +(427,9,o), +(429,22,cs), +(531,498,ls), +(533,511,o), +(526,520,o), +(513,520,cs), +(227,520,ls), +(214,520,o), +(203,511,o), +(201,498,cs), +(174,375,ls), +(125,142,o), +(66,60,o), +(2,60,cs), +(-10,60,o), +(-19,51,o), +(-22,39,cs), +(-25,23,ls), +(-28,10,o), +(-20,0,o), +(-7,0,cs) +); +} +); +width = 561; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,0,o), +(285,64,o), +(339,316,cs), +(345,345,l), +(402,345,l), +(334,27,ls), +(331,12,o), +(341,0,o), +(356,0,cs), +(535,0,ls), +(550,0,o), +(564,12,o), +(567,27,cs), +(667,493,ls), +(670,508,o), +(660,520,o), +(645,520,cs), +(189,520,ls), +(174,520,o), +(160,508,o), +(157,493,cs), +(124,341,ls), +(105,252,o), +(96,194,o), +(41,185,cs), +(24,182,o), +(12,173,o), +(8,158,cs), +(-20,27,ls), +(-23,12,o), +(-13,0,o), +(2,0,cs) +); +} +); +width = 669; +} +); +metricRight = "en-cy"; +unicode = 1083; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "em-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,ls), +(78,0,o), +(89,9,o), +(91,22,cs), +(179,433,l), +(163,433,l), +(265,113,ls), +(269,100,o), +(273,85,o), +(293,85,cs), +(305,85,ls), +(325,85,o), +(335,100,o), +(345,113,cs), +(592,452,l), +(563,452,l), +(471,22,ls), +(469,9,o), +(476,0,o), +(489,0,cs), +(506,0,ls), +(519,0,o), +(530,9,o), +(532,22,cs), +(634,501,ls), +(636,511,o), +(628,520,o), +(618,520,cs), +(588,520,ls), +(577,520,o), +(569,514,o), +(562,505,cs), +(292,125,l), +(320,122,l), +(199,505,ls), +(196,514,o), +(190,520,o), +(179,520,cs), +(156,520,ls), +(146,520,o), +(134,511,o), +(132,501,cs), +(30,22,ls), +(28,9,o), +(35,0,o), +(48,0,cs) +); +} +); +width = 664; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,0,ls), +(209,0,o), +(220,9,o), +(222,20,cs), +(278,284,l), +(226,288,l), +(296,92,ls), +(301,79,o), +(309,73,o), +(320,73,cs), +(362,73,ls), +(375,73,o), +(384,80,o), +(393,92,cs), +(540,287,l), +(484,284,l), +(428,20,ls), +(426,9,o), +(432,0,o), +(444,0,cs), +(632,0,ls), +(644,0,o), +(655,9,o), +(657,20,cs), +(759,500,ls), +(761,511,o), +(754,520,o), +(742,520,cs), +(568,520,ls), +(555,520,o), +(542,513,o), +(532,500,cs), +(328,235,l), +(426,217,l), +(309,500,ls), +(304,513,o), +(294,520,o), +(281,520,cs), +(120,520,ls), +(109,520,o), +(98,511,o), +(96,500,cs), +(-6,20,ls), +(-8,9,o), +(-1,0,o), +(10,0,cs) +); +} +); +width = 760; +} +); +metricLeft = "en-cy"; +metricRight = "en-cy"; +unicode = 1084; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 85; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 113; +} +); +}; +}, +{ +color = 6; +glyphname = "en-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (438,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,ls), +(78,0,o), +(88,9,o), +(91,22,cs), +(137,237,l), +(449,237,l), +(403,22,ls), +(400,9,o), +(408,0,o), +(421,0,cs), +(438,0,ls), +(451,0,o), +(461,9,o), +(464,22,cs), +(566,498,ls), +(569,511,o), +(561,520,o), +(548,520,cs), +(531,520,ls), +(518,520,o), +(508,511,o), +(505,498,cs), +(461,295,l), +(149,295,l), +(193,498,ls), +(196,511,o), +(188,520,o), +(175,520,cs), +(158,520,ls), +(145,520,o), +(135,511,o), +(132,498,cs), +(30,22,ls), +(27,9,o), +(35,0,o), +(48,0,cs) +); +} +); +width = 596; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (393,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,0,ls), +(211,0,o), +(225,12,o), +(228,27,cs), +(260,175,l), +(360,175,l), +(328,27,ls), +(325,12,o), +(335,0,o), +(350,0,cs), +(529,0,ls), +(544,0,o), +(558,12,o), +(561,27,cs), +(661,493,ls), +(664,508,o), +(654,520,o), +(639,520,cs), +(460,520,ls), +(445,520,o), +(431,508,o), +(428,493,cs), +(397,350,l), +(297,350,l), +(328,493,ls), +(331,508,o), +(321,520,o), +(306,520,cs), +(127,520,ls), +(112,520,o), +(98,508,o), +(95,493,cs), +(-5,27,ls), +(-8,12,o), +(2,0,o), +(17,0,cs) +); +} +); +width = 663; +} +); +unicode = 1085; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 260; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "o-cy"; +kernLeft = afii10080; +kernRight = afii10080; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (333,520); +} +); +layerId = UUID0; +shapes = ( +{ +ref = o; +} +); +width = 556; +}, +{ +anchors = ( +{ +name = top; +pos = (376,520); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = o; +} +); +width = 641; +} +); +unicode = 1086; +}, +{ +color = 6; +glyphname = "pe-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (501,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,ls), +(78,0,o), +(89,9,o), +(91,22,cs), +(185,462,l), +(477,462,l), +(383,22,ls), +(381,9,o), +(388,0,o), +(401,0,cs), +(418,0,ls), +(431,0,o), +(442,9,o), +(444,22,cs), +(546,498,ls), +(548,511,o), +(541,520,o), +(528,520,cs), +(158,520,ls), +(145,520,o), +(134,511,o), +(132,498,cs), +(30,22,ls), +(28,9,o), +(35,0,o), +(48,0,c) +); +} +); +width = 576; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (588,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,0,ls), +(211,0,o), +(225,12,o), +(228,27,cs), +(296,345,l), +(396,345,l), +(328,27,ls), +(325,12,o), +(335,0,o), +(350,0,cs), +(529,0,ls), +(544,0,o), +(558,12,o), +(561,27,cs), +(661,493,ls), +(664,508,o), +(654,520,o), +(639,520,cs), +(127,520,ls), +(112,520,o), +(98,508,o), +(95,493,cs), +(-5,27,ls), +(-8,12,o), +(2,0,o), +(17,0,cs) +); +} +); +width = 663; +} +); +metricRight = "en-cy"; +unicode = 1087; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "er-cy"; +kernLeft = afii10074; +kernRight = afii10082; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (346,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(44,-190,ls), +(57,-190,o), +(68,-181,o), +(71,-168,cs), +(122,69,l), +(145,25,o), +(190,-10,o), +(273,-10,cs), +(429,-10,o), +(508,110,o), +(537,227,cs), +(542,247,o), +(548,273,o), +(551,293,cs), +(572,410,o), +(544,530,o), +(388,530,cs), +(305,530,o), +(245,496,o), +(203,451,c), +(213,498,ls), +(215,511,o), +(208,520,o), +(195,520,cs), +(178,520,ls), +(165,520,o), +(154,511,o), +(152,498,cs), +(10,-168,ls), +(7,-181,o), +(14,-190,o), +(27,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(168,48,o), +(138,138,o), +(153,218,cs), +(156,238,o), +(165,276,o), +(170,296,cs), +(190,378,o), +(255,472,o), +(369,472,cs), +(486,472,o), +(505,384,o), +(489,288,cs), +(486,268,o), +(482,252,o), +(477,232,cs), +(453,136,o), +(396,48,o), +(279,48,cs) +); +} +); +width = 581; +}, +{ +anchors = ( +{ +name = top; +pos = (386,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-190,ls), +(195,-190,o), +(210,-178,o), +(213,-163,cs), +(258,50,l), +(279,7,o), +(323,-10,o), +(379,-10,cs), +(495,-10,o), +(600,63,o), +(640,220,cs), +(647,250,o), +(651,269,o), +(656,299,cs), +(685,466,o), +(610,530,o), +(494,530,cs), +(425,530,o), +(370,502,o), +(331,463,c), +(338,493,ls), +(341,508,o), +(331,520,o), +(316,520,cs), +(146,520,ls), +(131,520,o), +(117,508,o), +(114,493,cs), +(-26,-163,ls), +(-29,-178,o), +(-20,-190,o), +(-5,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,169,o), +(290,187,o), +(294,219,cs), +(299,249,o), +(302,263,o), +(310,293,cs), +(320,329,o), +(335,351,o), +(372,351,cs), +(409,351,o), +(414,329,o), +(410,293,cs), +(408,273,o), +(402,247,o), +(396,227,cs), +(384,191,o), +(371,169,o), +(334,169,cs) +); +} +); +width = 661; +} +); +unicode = 1088; +}, +{ +color = 10; +glyphname = "es-cy"; +kernLeft = afii10080; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (460,0); +} +); +layerId = UUID0; +shapes = ( +{ +ref = c; +} +); +width = 535; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (546,0); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = c; +} +); +width = 621; +} +); +unicode = 1089; +}, +{ +color = 6; +glyphname = "te-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (422,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(202,0,ls), +(215,0,o), +(226,9,o), +(228,22,cs), +(322,462,l), +(505,462,ls), +(518,462,o), +(529,471,o), +(532,484,cs), +(535,498,ls), +(537,511,o), +(530,520,o), +(517,520,cs), +(90,520,ls), +(77,520,o), +(66,511,o), +(64,498,cs), +(61,484,ls), +(58,471,o), +(65,462,o), +(78,462,cs), +(261,462,l), +(167,22,ls), +(165,9,o), +(172,0,o), +(185,0,c) +); +} +); +width = 497; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (504,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,0,ls), +(337,0,o), +(351,12,o), +(354,27,cs), +(422,345,l), +(555,345,ls), +(570,345,o), +(585,357,o), +(588,372,cs), +(614,493,ls), +(617,508,o), +(607,520,o), +(592,520,cs), +(97,520,ls), +(82,520,o), +(68,508,o), +(65,493,cs), +(39,372,ls), +(36,357,o), +(45,345,o), +(60,345,cs), +(193,345,l), +(125,27,ls), +(122,12,o), +(132,0,o), +(147,0,cs) +); +} +); +width = 579; +} +); +unicode = 1090; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 30; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 501; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "u-cy"; +kernLeft = afii10085; +kernRight = afii10085; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (298,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(23,-190,ls), +(119,-190,o), +(190,-50,o), +(245,34,cs), +(536,480,ls), +(542,490,o), +(545,495,o), +(546,500,cs), +(548,511,o), +(541,520,o), +(530,520,cs), +(506,520,ls), +(493,520,o), +(486,514,o), +(480,505,cs), +(144,-22,ls), +(91,-106,o), +(72,-132,o), +(24,-132,cs), +(1,-132,ls), +(-12,-132,o), +(-23,-141,o), +(-26,-154,c), +(-29,-168,ls), +(-32,-181,o), +(-24,-190,o), +(-11,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(226,94,l), +(137,505,ls), +(135,513,o), +(130,520,o), +(117,520,cs), +(101,520,ls), +(90,520,o), +(80,511,o), +(77,500,cs), +(76,495,o), +(77,490,o), +(79,480,cs), +(181,17,l) +); +} +); +width = 538; +}, +{ +anchors = ( +{ +name = top; +pos = (383,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,-191,ls), +(203,-191,o), +(271,-136,o), +(371,24,cs), +(660,489,ls), +(663,493,o), +(664,498,o), +(664,502,cs), +(664,512,o), +(658,520,o), +(645,520,cs), +(484,520,ls), +(464,520,o), +(453,511,o), +(444,496,cs), +(161,33,ls), +(138,-5,o), +(123,-16,o), +(93,-16,cs), +(51,-16,l), +(36,-16,o), +(21,-28,o), +(18,-43,cs), +(-8,-164,ls), +(-11,-179,o), +(-2,-191,o), +(13,-191,cs) +); +}, +{ +closed = 1; +nodes = ( +(329,156,l), +(269,496,ls), +(267,507,o), +(263,520,o), +(243,520,cs), +(82,520,ls), +(71,520,o), +(62,516,o), +(58,511,cs), +(52,505,o), +(50,497,o), +(52,489,cs), +(156,7,l) +); +} +); +width = 630; +} +); +unicode = 1091; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-190"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 272; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 40; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "ushort-cy"; +kernLeft = afii10085; +kernRight = afii10085; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (122,0); +ref = "brevecomb-cy"; +} +); +width = 538; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (107,0); +ref = "brevecomb-cy"; +} +); +width = 630; +} +); +unicode = 1118; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 272; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "ef-cy"; +kernRight = afii10082; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(243,-190,ls), +(256,-190,o), +(267,-181,o), +(270,-168,cs), +(306,0,l), +(480,0,o), +(573,99,o), +(606,228,cs), +(611,248,o), +(617,272,o), +(620,292,cs), +(638,411,o), +(580,520,o), +(416,520,c), +(452,688,ls), +(455,701,o), +(448,710,o), +(435,710,cs), +(418,710,ls), +(405,710,o), +(394,701,o), +(391,688,cs), +(355,520,l), +(181,520,o), +(88,421,o), +(55,292,cs), +(50,272,o), +(44,248,o), +(41,228,cs), +(23,109,o), +(81,0,o), +(245,0,c), +(209,-168,ls), +(206,-181,o), +(213,-190,o), +(226,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(134,58,o), +(85,119,o), +(103,233,cs), +(107,253,o), +(109,267,o), +(115,287,cs), +(145,401,o), +(220,462,o), +(343,462,c), +(257,58,l) +); +}, +{ +closed = 1; +nodes = ( +(404,462,l), +(527,462,o), +(576,401,o), +(558,287,cs), +(554,267,o), +(552,253,o), +(546,233,cs), +(516,119,o), +(441,58,o), +(318,58,c) +); +} +); +width = 678; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(417,-190,ls), +(432,-190,o), +(447,-178,o), +(450,-163,cs), +(485,0,l), +(666,0,o), +(775,73,o), +(814,213,cs), +(823,244,o), +(829,276,o), +(834,307,cs), +(853,447,o), +(763,520,o), +(595,520,c), +(630,683,ls), +(633,698,o), +(624,710,o), +(609,710,cs), +(430,710,ls), +(415,710,o), +(400,698,o), +(397,683,cs), +(362,520,l), +(192,520,o), +(72,447,o), +(33,307,cs), +(24,276,o), +(18,244,o), +(13,213,cs), +(-6,73,o), +(73,0,o), +(252,0,c), +(217,-163,ls), +(214,-178,o), +(223,-190,o), +(238,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(241,160,o), +(231,174,o), +(237,228,cs), +(239,243,o), +(246,275,o), +(251,292,cs), +(263,340,o), +(280,360,o), +(330,360,c), +(288,160,l) +); +}, +{ +closed = 1; +nodes = ( +(559,360,l), +(606,360,o), +(619,343,o), +(610,292,cs), +(607,275,o), +(600,243,o), +(596,228,cs), +(581,177,o), +(567,160,o), +(517,160,c) +); +} +); +width = 863; +} +); +metricLeft = o; +metricRight = o; +unicode = 1092; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-190"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +} +); +}; +}, +{ +color = 10; +glyphname = "ha-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (442,0); +} +); +layerId = UUID0; +shapes = ( +{ +ref = x; +} +); +width = 517; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (556,0); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = x; +} +); +width = 631; +} +); +unicode = 1093; +}, +{ +color = 6; +glyphname = "che-cy"; +kernRight = afii10074; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (379,0); +}, +{ +name = top; +pos = (317,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(379,0,ls), +(392,0,o), +(402,9,o), +(405,22,cs), +(507,498,ls), +(510,511,o), +(502,520,o), +(489,520,cs), +(472,520,ls), +(459,520,o), +(449,511,o), +(446,498,cs), +(406,311,ls), +(393,250,o), +(322,231,o), +(223,231,cs), +(148,231,o), +(117,261,o), +(133,336,cs), +(167,498,ls), +(170,511,o), +(162,520,o), +(149,520,cs), +(132,520,ls), +(119,520,o), +(109,511,o), +(106,498,cs), +(68,322,ls), +(47,227,o), +(113,173,o), +(217,173,cs), +(286,173,o), +(342,188,o), +(388,226,c), +(344,22,ls), +(341,9,o), +(349,0,o), +(362,0,cs) +); +} +); +width = 537; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (363,0); +}, +{ +name = top; +pos = (360,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(518,0,ls), +(533,0,o), +(547,12,o), +(550,27,cs), +(650,493,ls), +(653,508,o), +(643,520,o), +(628,520,cs), +(433,520,ls), +(418,520,o), +(404,508,o), +(401,493,cs), +(369,347,ls), +(366,331,o), +(345,319,o), +(322,319,cs), +(287,319,o), +(279,328,o), +(287,364,cs), +(315,493,ls), +(318,508,o), +(308,520,o), +(293,520,cs), +(107,520,ls), +(92,520,o), +(78,508,o), +(75,493,cs), +(45,354,ls), +(10,190,o), +(67,120,o), +(199,120,cs), +(251,120,o), +(297,131,o), +(327,148,c), +(301,27,ls), +(298,12,o), +(308,0,o), +(323,0,cs) +); +} +); +width = 652; +} +); +metricRight = "en-cy"; +unicode = 1095; +}, +{ +color = 6; +glyphname = "tse-cy"; +kernLeft = afii10074; +kernRight = afii10088; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(475,-130,ls), +(488,-130,o), +(499,-121,o), +(502,-108,cs), +(532,36,ls), +(535,49,o), +(528,58,o), +(515,58,cs), +(465,58,l), +(559,498,ls), +(562,511,o), +(555,520,o), +(542,520,cs), +(525,520,ls), +(512,520,o), +(501,511,o), +(498,498,cs), +(405,58,l), +(113,58,l), +(206,498,l), +(209,511,o), +(202,520,o), +(189,520,cs), +(172,520,ls), +(159,520,o), +(148,511,o), +(145,498,cs), +(44,22,ls), +(41,9,o), +(49,0,o), +(62,0,cs), +(464,0,l), +(441,-108,ls), +(438,-121,o), +(445,-130,o), +(458,-130,cs) +); +} +); +width = 605; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(583,-110,ls), +(598,-110,o), +(613,-98,o), +(616,-83,cs), +(665,148,ls), +(668,163,o), +(659,175,o), +(644,175,cs), +(605,175,l), +(672,493,ls), +(675,508,o), +(666,520,o), +(651,520,cs), +(472,520,ls), +(457,520,o), +(442,508,o), +(439,493,cs), +(372,175,l), +(272,175,l), +(339,493,ls), +(342,508,o), +(333,520,o), +(318,520,cs), +(139,520,ls), +(124,520,o), +(109,508,o), +(106,493,cs), +(7,27,ls), +(4,12,o), +(13,0,o), +(28,0,cs), +(400,0,l), +(383,-83,ls), +(380,-98,o), +(389,-110,o), +(404,-110,cs) +); +} +); +width = 724; +} +); +unicode = 1094; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 58; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "sha-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(611,0,ls), +(624,0,o), +(635,9,o), +(637,22,cs), +(739,498,ls), +(741,511,o), +(734,520,o), +(721,520,cs), +(704,520,ls), +(691,520,o), +(680,511,o), +(678,498,cs), +(584,58,l), +(372,58,l), +(466,498,ls), +(468,511,o), +(461,520,o), +(448,520,cs), +(431,520,ls), +(418,520,o), +(407,511,o), +(405,498,cs), +(311,58,l), +(99,58,l), +(193,498,ls), +(195,511,o), +(188,520,o), +(175,520,cs), +(158,520,ls), +(145,520,o), +(134,511,o), +(132,498,cs), +(30,22,ls), +(28,9,o), +(35,0,o), +(48,0,cs) +); +} +); +width = 769; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(733,0,ls), +(748,0,o), +(762,12,o), +(765,27,cs), +(865,493,ls), +(868,508,o), +(858,520,o), +(843,520,cs), +(674,520,ls), +(659,520,o), +(645,508,o), +(642,493,cs), +(574,175,l), +(516,175,l), +(584,493,ls), +(587,508,o), +(577,520,o), +(562,520,cs), +(408,520,ls), +(393,520,o), +(379,508,o), +(376,493,cs), +(308,175,l), +(250,175,l), +(318,493,ls), +(321,508,o), +(311,520,o), +(296,520,cs), +(127,520,ls), +(112,520,o), +(98,508,o), +(95,493,cs), +(-5,27,ls), +(-8,12,o), +(2,0,o), +(17,0,cs) +); +} +); +width = 867; +} +); +metricLeft = "en-cy"; +metricRight = "en-cy"; +unicode = 1096; +}, +{ +color = 6; +glyphname = "shcha-cy"; +kernLeft = afii10074; +kernRight = afii10088; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(656,-130,ls), +(669,-130,o), +(680,-121,o), +(683,-108,cs), +(713,36,ls), +(716,49,o), +(709,58,o), +(696,58,cs), +(646,58,l), +(739,498,ls), +(742,511,o), +(735,520,o), +(722,520,cs), +(705,520,ls), +(692,520,o), +(681,511,o), +(678,498,cs), +(585,58,l), +(373,58,l), +(466,498,ls), +(469,511,o), +(462,520,o), +(449,520,cs), +(432,520,ls), +(419,520,o), +(408,511,o), +(405,498,cs), +(312,58,l), +(100,58,l), +(193,498,ls), +(196,511,o), +(189,520,o), +(176,520,cs), +(159,520,ls), +(146,520,o), +(135,511,o), +(132,498,cs), +(31,22,ls), +(28,9,o), +(36,0,o), +(49,0,cs), +(645,0,l), +(622,-108,ls), +(619,-121,o), +(626,-130,o), +(639,-130,cs) +); +} +); +width = 786; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(775,-110,ls), +(790,-110,o), +(805,-98,o), +(808,-83,cs), +(857,148,ls), +(860,163,o), +(851,175,o), +(836,175,cs), +(798,175,l), +(865,493,ls), +(868,508,o), +(859,520,o), +(844,520,cs), +(675,520,ls), +(660,520,o), +(645,508,o), +(642,493,cs), +(575,175,l), +(517,175,l), +(584,493,ls), +(587,508,o), +(578,520,o), +(563,520,cs), +(409,520,ls), +(394,520,o), +(379,508,o), +(376,493,cs), +(309,175,l), +(251,175,l), +(318,493,ls), +(321,508,o), +(312,520,o), +(297,520,cs), +(128,520,ls), +(113,520,o), +(98,508,o), +(95,493,cs), +(-4,27,ls), +(-7,12,o), +(2,0,o), +(17,0,cs), +(593,0,l), +(576,-83,ls), +(573,-98,o), +(582,-110,o), +(597,-110,cs) +); +} +); +width = 916; +} +); +metricLeft = "en-cy"; +metricRight = "tse-cy"; +unicode = 1097; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 58; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +} +); +}; +}, +{ +color = 6; +glyphname = "dzhe-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(214,-130,ls), +(227,-130,o), +(238,-121,o), +(241,-108,cs), +(264,0,l), +(419,0,ls), +(432,0,o), +(442,9,o), +(445,22,c), +(546,498,ls), +(549,511,o), +(542,520,o), +(529,520,cs), +(512,520,ls), +(499,520,o), +(488,511,o), +(485,498,cs), +(392,58,l), +(100,58,l), +(193,498,ls), +(196,511,o), +(189,520,o), +(176,520,cs), +(159,520,ls), +(146,520,o), +(135,511,o), +(132,498,cs), +(31,22,ls), +(28,9,o), +(36,0,o), +(49,0,cs), +(203,0,l), +(180,-108,ls), +(177,-121,o), +(184,-130,o), +(197,-130,cs) +); +} +); +width = 577; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(339,-110,ls), +(354,-110,o), +(369,-98,o), +(372,-83,cs), +(389,0,l), +(529,0,ls), +(544,0,o), +(559,12,o), +(562,27,cs), +(661,493,ls), +(664,508,o), +(655,520,o), +(640,520,cs), +(461,520,ls), +(446,520,o), +(431,508,o), +(428,493,cs), +(361,175,l), +(261,175,l), +(328,493,ls), +(331,508,o), +(322,520,o), +(307,520,cs), +(128,520,ls), +(113,520,o), +(98,508,o), +(95,493,cs), +(-4,27,ls), +(-7,12,o), +(2,0,o), +(17,0,cs), +(157,0,l), +(140,-83,ls), +(137,-98,o), +(146,-110,o), +(161,-110,cs) +); +} +); +width = 664; +} +); +metricLeft = "en-cy"; +metricRight = "en-cy"; +unicode = 1119; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 443; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "softsign-cy"; +kernLeft = afii10074; +kernRight = afii10094; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(192,0,ls), +(332,0,o), +(407,51,o), +(432,169,cs), +(453,267,o), +(406,342,o), +(280,341,cs), +(162,341,l), +(193,498,l), +(195,511,o), +(188,520,o), +(175,520,cs), +(158,520,ls), +(145,520,o), +(134,511,o), +(132,498,cs), +(30,22,ls), +(28,9,o), +(35,0,o), +(48,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(148,288,l), +(262,288,ls), +(358,288,o), +(388,249,o), +(371,169,cs), +(353,86,o), +(306,58,o), +(213,58,cs), +(99,58,l) +); +} +); +width = 476; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,0,ls), +(437,0,o), +(542,68,o), +(567,184,cs), +(592,300,o), +(515,369,o), +(382,369,cs), +(302,369,l), +(329,493,ls), +(332,508,o), +(322,520,o), +(307,520,cs), +(127,520,ls), +(112,520,o), +(98,508,o), +(95,493,cs), +(-5,27,ls), +(-8,12,o), +(2,0,o), +(17,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(265,220,l), +(330,220,ls), +(357,220,o), +(368,207,o), +(363,184,cs), +(358,161,o), +(342,149,o), +(315,149,cs), +(250,149,l) +); +} +); +width = 608; +} +); +metricLeft = "en-cy"; +unicode = 1100; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "yeru-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (395,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(182,0,ls), +(322,0,o), +(397,51,o), +(422,169,cs), +(443,267,o), +(396,341,o), +(270,341,cs), +(159,341,l), +(193,498,l), +(195,511,o), +(188,520,o), +(175,520,cs), +(158,520,ls), +(145,520,o), +(135,511,o), +(132,498,cs), +(30,22,ls), +(27,9,o), +(35,0,o), +(48,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(148,288,l), +(252,288,ls), +(348,288,o), +(378,249,o), +(361,169,cs), +(343,86,o), +(296,58,o), +(203,58,cs), +(99,58,l) +); +}, +{ +closed = 1; +nodes = ( +(501,0,ls), +(514,0,o), +(524,9,o), +(527,22,cs), +(629,498,ls), +(632,511,o), +(624,520,o), +(611,520,cs), +(594,520,ls), +(581,520,o), +(571,511,o), +(568,498,cs), +(466,22,ls), +(463,9,o), +(471,0,o), +(484,0,cs) +); +} +); +width = 659; +}, +{ +anchors = ( +{ +name = top; +pos = (516,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,0,ls), +(437,0,o), +(542,68,o), +(567,184,cs), +(592,300,o), +(515,369,o), +(382,369,cs), +(302,369,l), +(329,493,ls), +(332,508,o), +(322,520,o), +(307,520,cs), +(127,520,ls), +(112,520,o), +(98,508,o), +(95,493,cs), +(-5,27,ls), +(-8,12,o), +(2,0,o), +(17,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(265,220,l), +(330,220,ls), +(357,220,o), +(368,207,o), +(363,184,cs), +(358,161,o), +(342,149,o), +(315,149,cs), +(250,149,l) +); +}, +{ +closed = 1; +nodes = ( +(787,0,l), +(802,0,o), +(816,12,o), +(819,27,cs), +(919,493,ls), +(922,508,o), +(912,520,o), +(897,520,cs), +(718,520,ls), +(703,520,o), +(689,508,o), +(686,493,cs), +(586,27,ls), +(583,12,o), +(593,0,o), +(608,0,cs) +); +} +); +width = 921; +} +); +metricLeft = "en-cy"; +metricRight = "en-cy"; +unicode = 1099; +}, +{ +color = 6; +glyphname = "hardsign-cy"; +kernRight = afii10094; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(255,0,ls), +(395,0,o), +(470,51,o), +(495,169,cs), +(516,267,o), +(469,342,o), +(343,341,cs), +(244,341,l), +(276,498,ls), +(279,511,o), +(271,520,o), +(258,520,cs), +(90,520,ls), +(77,520,o), +(66,511,o), +(64,498,cs), +(61,484,ls), +(58,471,o), +(65,462,o), +(78,462,cs), +(207,462,l), +(113,22,ls), +(111,9,o), +(118,0,o), +(131,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(231,288,l), +(325,288,ls), +(421,288,o), +(451,249,o), +(434,169,cs), +(416,86,o), +(369,58,o), +(276,58,cs), +(182,58,l) +); +} +); +width = 539; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(411,0,ls), +(544,0,o), +(649,68,o), +(674,184,cs), +(699,300,o), +(622,369,o), +(489,369,cs), +(409,369,l), +(436,493,ls), +(439,508,o), +(429,520,o), +(414,520,cs), +(97,520,ls), +(82,520,o), +(68,508,o), +(65,493,cs), +(39,372,ls), +(36,357,o), +(45,345,o), +(60,345,cs), +(170,345,l), +(102,27,ls), +(99,12,o), +(109,0,o), +(124,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(372,220,l), +(437,220,ls), +(464,220,o), +(475,207,o), +(470,184,cs), +(465,161,o), +(449,149,o), +(422,149,cs), +(357,149,l) +); +} +); +width = 715; +} +); +metricLeft = "te-cy"; +metricRight = "softsign-cy"; +unicode = 1098; +}, +{ +color = 6; +glyphname = "lje-cy"; +kernLeft = afii10077; +kernRight = afii10094; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(460,0,ls), +(600,0,o), +(675,51,o), +(700,169,cs), +(721,267,o), +(674,341,o), +(548,341,cs), +(478,341,l), +(511,498,ls), +(514,511,o), +(506,520,o), +(493,520,cs), +(237,520,ls), +(224,520,o), +(213,511,o), +(211,498,cs), +(184,375,ls), +(135,142,o), +(73,72,o), +(3,61,cs), +(-10,59,o), +(-19,52,o), +(-22,40,cs), +(-25,24,ls), +(-28,11,o), +(-20,0,o), +(-7,1,cs), +(102,9,o), +(188,108,o), +(243,368,cs), +(263,462,l), +(442,462,l), +(348,22,ls), +(346,9,o), +(353,0,o), +(366,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(466,288,l), +(530,288,ls), +(626,288,o), +(656,249,o), +(639,169,cs), +(621,86,o), +(574,58,o), +(481,58,cs), +(417,58,l) +); +} +); +width = 744; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(644,0,ls), +(777,0,o), +(882,68,o), +(907,184,cs), +(932,300,o), +(855,369,o), +(722,369,cs), +(642,369,l), +(669,493,ls), +(672,508,o), +(662,520,o), +(647,520,cs), +(189,520,ls), +(174,520,o), +(160,508,o), +(157,493,cs), +(124,341,ls), +(101,232,o), +(91,194,o), +(41,185,cs), +(24,182,o), +(12,173,o), +(8,158,cs), +(-20,27,ls), +(-23,12,o), +(-13,0,o), +(2,0,cs), +(232,0,o), +(285,64,o), +(339,316,cs), +(345,345,l), +(403,345,l), +(335,27,ls), +(332,12,o), +(342,0,o), +(357,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(605,220,l), +(670,220,ls), +(697,220,o), +(708,207,o), +(703,184,cs), +(698,161,o), +(682,149,o), +(655,149,cs), +(590,149,l) +); +} +); +width = 948; +} +); +metricLeft = "el-cy"; +metricRight = "softsign-cy"; +unicode = 1113; +}, +{ +color = 6; +glyphname = "nje-cy"; +kernLeft = afii10074; +kernRight = afii10094; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,ls), +(78,0,o), +(89,9,o), +(91,22,cs), +(137,237,l), +(409,237,l), +(363,22,ls), +(361,9,o), +(368,0,o), +(381,0,cs), +(475,0,ls), +(615,0,o), +(690,51,o), +(715,169,cs), +(738,277,o), +(678,341,o), +(562,341,cs), +(492,341,l), +(526,498,ls), +(529,511,o), +(521,520,o), +(508,520,cs), +(491,520,ls), +(478,520,o), +(467,511,o), +(465,498,cs), +(421,295,l), +(149,295,l), +(193,498,ls), +(195,511,o), +(188,520,o), +(175,520,cs), +(158,520,ls), +(145,520,o), +(134,511,o), +(132,498,cs), +(30,22,ls), +(28,9,o), +(35,0,o), +(48,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(481,288,l), +(545,288,ls), +(641,288,o), +(671,249,o), +(654,169,cs), +(636,86,o), +(589,58,o), +(496,58,cs), +(432,58,l) +); +} +); +width = 759; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(196,0,ls), +(211,0,o), +(225,12,o), +(228,27,cs), +(260,175,l), +(360,175,l), +(328,27,ls), +(325,12,o), +(335,0,o), +(350,0,cs), +(636,0,ls), +(769,0,o), +(874,68,o), +(899,184,cs), +(924,300,o), +(847,369,o), +(714,369,cs), +(634,369,l), +(661,493,ls), +(664,508,o), +(654,520,o), +(639,520,cs), +(460,520,ls), +(445,520,o), +(431,508,o), +(428,493,cs), +(397,350,l), +(297,350,l), +(328,493,ls), +(331,508,o), +(321,520,o), +(306,520,cs), +(127,520,ls), +(112,520,o), +(98,508,o), +(95,493,cs), +(-5,27,ls), +(-8,12,o), +(2,0,o), +(17,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(597,220,l), +(662,220,ls), +(689,220,o), +(700,207,o), +(695,184,cs), +(690,161,o), +(674,149,o), +(647,149,cs), +(582,149,l) +); +} +); +width = 940; +} +); +metricLeft = "en-cy"; +metricRight = "softsign-cy"; +unicode = 1114; +}, +{ +color = 10; +glyphname = "dze-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = s; +} +); +width = 492; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = s; +} +); +width = 590; +} +); +unicode = 1109; +}, +{ +color = 6; +glyphname = "e-cy"; +kernLeft = afii10080; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(362,-10,o), +(443,77,o), +(461,149,cs), +(465,162,o), +(456,171,o), +(444,171,cs), +(430,171,ls), +(416,171,o), +(411,166,o), +(402,150,cs), +(357,74,o), +(303,48,o), +(233,48,cs), +(142,48,o), +(88,100,o), +(111,225,cs), +(112,231,l), +(326,231,ls), +(339,231,o), +(350,240,o), +(353,253,cs), +(355,267,ls), +(358,280,o), +(351,289,o), +(338,289,cs), +(124,289,l), +(125,295,ls), +(156,420,o), +(232,472,o), +(323,472,cs), +(393,472,o), +(437,446,o), +(448,370,cs), +(451,354,o), +(454,349,o), +(468,349,cs), +(482,349,ls), +(494,349,o), +(507,358,o), +(509,371,cs), +(521,443,o), +(476,530,o), +(335,530,cs), +(194,530,o), +(100,443,o), +(66,300,cs), +(60,280,o), +(52,240,o), +(48,220,cs), +(22,77,o), +(80,-10,o), +(221,-10,cs) +); +} +); +width = 536; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(456,-10,o), +(538,66,o), +(570,149,c), +(573,158,o), +(567,166,o), +(558,166,cs), +(383,166,ls), +(374,166,o), +(367,164,o), +(362,161,cs), +(341,147,o), +(335,142,o), +(304,142,cs), +(272,142,o), +(263,156,o), +(270,191,cs), +(272,197,l), +(376,197,ls), +(388,197,o), +(399,207,o), +(401,219,cs), +(419,302,ls), +(421,314,o), +(415,324,o), +(403,324,cs), +(299,324,l), +(299,328,ls), +(306,359,o), +(326,376,o), +(354,376,cs), +(380,376,o), +(389,371,o), +(405,356,cs), +(409,353,o), +(415,351,o), +(424,351,cs), +(593,351,ls), +(603,351,o), +(613,357,o), +(613,368,cs), +(616,451,o), +(565,530,o), +(386,530,cs), +(211,530,o), +(89,452,o), +(49,307,cs), +(46,296,o), +(30,224,o), +(29,213,cs), +(7,64,o), +(89,-10,o), +(272,-10,cs) +); +} +); +width = 632; +} +); +unicode = 1108; +}, +{ +color = 6; +glyphname = "ereversed-cy"; +kernRight = afii10080; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (323,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(342,-10,o), +(436,77,o), +(470,220,cs), +(476,240,o), +(484,280,o), +(488,300,cs), +(514,443,o), +(456,530,o), +(315,530,cs), +(174,530,o), +(93,443,o), +(75,371,cs), +(71,358,o), +(80,349,o), +(92,349,c), +(106,349,l), +(120,349,o), +(125,354,o), +(134,370,cs), +(179,446,o), +(233,472,o), +(303,472,cs), +(394,472,o), +(448,420,o), +(425,295,c), +(424,289,l), +(210,289,l), +(197,289,o), +(186,280,o), +(183,267,c), +(181,253,l), +(178,240,o), +(185,231,o), +(198,231,c), +(412,231,l), +(411,225,l), +(380,100,o), +(304,48,o), +(213,48,cs), +(143,48,o), +(99,74,o), +(88,150,cs), +(85,166,o), +(82,171,o), +(68,171,c), +(54,171,l), +(42,171,o), +(29,162,o), +(27,149,cs), +(15,77,o), +(60,-10,o), +(201,-10,cs) +); +} +); +width = 536; +}, +{ +anchors = ( +{ +name = top; +pos = (371,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(430,-10,o), +(542,66,o), +(583,213,cs), +(591,243,o), +(599,277,o), +(603,307,cs), +(624,454,o), +(533,530,o), +(360,530,cs), +(158,530,o), +(87,427,o), +(65,368,c), +(61,359,o), +(68,351,o), +(77,351,cs), +(246,351,ls), +(263,351,o), +(269,358,o), +(277,363,c), +(290,372,o), +(302,376,o), +(328,376,cs), +(361,376,o), +(367,353,o), +(362,329,cs), +(361,324,l), +(257,324,ls), +(245,324,o), +(233,313,o), +(231,302,cs), +(213,219,ls), +(211,208,o), +(218,197,o), +(230,197,cs), +(334,197,l), +(333,192,ls), +(325,158,o), +(311,142,o), +(278,142,cs), +(251,142,o), +(241,148,o), +(234,154,cs), +(229,159,o), +(226,166,o), +(209,166,cs), +(34,166,ls), +(26,166,o), +(13,158,o), +(14,149,c), +(12,90,o), +(37,-10,o), +(246,-10,cs) +); +} +); +width = 632; +} +); +unicode = 1101; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 259; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 254; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 107; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "i-cy"; +kernLeft = afii10103; +kernRight = afii10103; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (167,520); +} +); +layerId = UUID0; +shapes = ( +{ +ref = i; +} +); +width = 224; +}, +{ +anchors = ( +{ +name = top; +pos = (217,520); +} +); +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = i; +} +); +width = 323; +} +); +unicode = 1110; +}, +{ +color = 10; +glyphname = "yi-cy"; +kernLeft = afii10103; +kernRight = afii10103; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (37,0); +ref = dieresiscomb; +} +); +width = 224; +}, +{ +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-4,0); +ref = dieresiscomb; +} +); +width = 323; +} +); +unicode = 1111; +}, +{ +color = 10; +glyphname = "je-cy"; +kernRight = afii10103; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = j; +} +); +width = 234; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = j; +} +); +width = 345; +} +); +unicode = 1112; +}, +{ +color = 6; +glyphname = "tshe-cy"; +kernLeft = afii10108; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(64,0,ls), +(77,0,o), +(87,9,o), +(90,22,cs), +(137,241,ls), +(160,348,o), +(236,412,o), +(351,412,cs), +(451,412,o), +(473,356,o), +(448,241,cs), +(401,22,ls), +(398,9,o), +(406,0,o), +(419,0,cs), +(436,0,ls), +(449,0,o), +(459,9,o), +(462,22,cs), +(510,246,ls), +(537,373,o), +(495,470,o), +(359,470,cs), +(263,470,o), +(215,438,o), +(169,391,c), +(201,541,l), +(389,541,ls), +(402,541,o), +(412,550,o), +(415,563,cs), +(418,577,ls), +(421,590,o), +(414,599,o), +(401,599,cs), +(213,599,l), +(232,688,ls), +(235,701,o), +(227,710,o), +(214,710,cs), +(197,710,ls), +(184,710,o), +(174,701,o), +(171,688,cs), +(152,599,l), +(94,599,ls), +(81,599,o), +(70,590,o), +(67,577,cs), +(64,563,ls), +(61,550,o), +(69,541,o), +(82,541,cs), +(140,541,l), +(29,22,ls), +(26,9,o), +(34,0,o), +(47,0,cs) +); +} +); +width = 553; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,0,ls), +(246,0,o), +(260,12,o), +(263,27,cs), +(314,266,ls), +(322,302,o), +(345,321,o), +(377,321,cs), +(409,321,o), +(423,302,o), +(415,266,cs), +(364,27,ls), +(361,12,o), +(371,0,o), +(386,0,cs), +(582,0,ls), +(597,0,o), +(611,12,o), +(614,27,cs), +(667,273,ls), +(695,406,o), +(641,500,o), +(516,500,cs), +(455,500,o), +(395,477,o), +(351,438,c), +(372,538,l), +(466,538,ls), +(481,538,o), +(495,550,o), +(499,565,cs), +(509,616,ls), +(513,631,o), +(503,643,o), +(488,643,cs), +(394,643,l), +(403,683,ls), +(406,698,o), +(396,710,o), +(381,710,cs), +(186,710,ls), +(171,710,o), +(157,698,o), +(154,683,cs), +(145,643,l), +(119,643,ls), +(104,643,o), +(90,631,o), +(86,616,cs), +(76,565,ls), +(72,550,o), +(82,538,o), +(97,538,cs), +(123,538,l), +(14,27,ls), +(11,12,o), +(21,0,o), +(36,0,cs) +); +} +); +width = 704; +} +); +unicode = 1115; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 629; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 110; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "iu-cy"; +kernLeft = afii10074; +kernRight = afii10080; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (441,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(284,295,l), +(149,295,l), +(193,498,ls), +(195,511,o), +(188,520,o), +(175,520,cs), +(158,520,ls), +(145,520,o), +(134,511,o), +(132,498,cs), +(30,22,ls), +(28,9,o), +(35,0,o), +(48,0,cs), +(65,0,ls), +(78,0,o), +(89,9,o), +(91,22,cs), +(137,237,l), +(272,237,l) +); +}, +{ +closed = 1; +nodes = ( +(571,-10,o), +(666,89,o), +(697,218,cs), +(702,238,o), +(712,282,o), +(715,302,cs), +(738,431,o), +(685,530,o), +(541,530,cs), +(397,530,o), +(302,431,o), +(271,302,cs), +(266,282,o), +(256,238,o), +(253,218,cs), +(230,89,o), +(283,-10,o), +(427,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(346,48,o), +(295,109,o), +(315,223,cs), +(318,243,o), +(326,277,o), +(331,297,cs), +(359,411,o), +(436,472,o), +(529,472,cs), +(622,472,o), +(673,411,o), +(653,297,cs), +(650,277,o), +(642,243,o), +(637,223,cs), +(609,109,o), +(532,48,o), +(439,48,cs) +); +} +); +width = 771; +}, +{ +anchors = ( +{ +name = top; +pos = (528,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(485,350,l), +(297,350,l), +(328,493,ls), +(331,508,o), +(321,520,o), +(306,520,cs), +(127,520,ls), +(112,520,o), +(98,508,o), +(95,493,cs), +(-5,27,ls), +(-8,12,o), +(2,0,o), +(17,0,cs), +(196,0,ls), +(211,0,o), +(225,12,o), +(228,27,cs), +(260,175,l), +(448,175,l) +); +}, +{ +closed = 1; +nodes = ( +(743,-10,o), +(855,66,o), +(896,213,cs), +(904,243,o), +(912,277,o), +(916,307,cs), +(937,454,o), +(846,530,o), +(673,530,cs), +(500,530,o), +(377,454,o), +(336,307,cs), +(328,277,o), +(320,243,o), +(316,213,cs), +(295,66,o), +(375,-10,o), +(559,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(555,150,o), +(555,171,o), +(562,218,cs), +(565,238,o), +(575,282,o), +(580,302,cs), +(592,346,o), +(601,370,o), +(639,370,cs), +(677,370,o), +(676,346,o), +(670,302,cs), +(667,282,o), +(657,238,o), +(652,218,cs), +(639,171,o), +(631,150,o), +(593,150,cs) +); +} +); +width = 945; +} +); +metricLeft = "en-cy"; +metricRight = o; +unicode = 1102; +}, +{ +color = 6; +glyphname = "ia-cy"; +kernRight = afii10074; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (315,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(361,0,ls), +(374,0,o), +(385,9,o), +(387,22,cs), +(489,498,ls), +(491,511,o), +(484,520,o), +(471,520,cs), +(327,520,ls), +(194,520,o), +(123,472,o), +(99,361,cs), +(83,288,o), +(127,199,o), +(236,199,c), +(235,194,l), +(363,194,l), +(326,22,l), +(324,9,o), +(331,0,o), +(344,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(48,0,l), +(59,0,o), +(70,8,o), +(78,15,c), +(262,216,l), +(184,216,l), +(23,40,l), +(15,32,o), +(12,25,o), +(11,20,cs), +(9,9,o), +(16,0,o), +(27,0,c) +); +}, +{ +closed = 1; +nodes = ( +(172,252,o), +(147,298,o), +(160,361,cs), +(177,437,o), +(220,462,o), +(306,462,cs), +(420,462,l), +(375,252,l), +(251,252,ls) +); +} +); +width = 519; +}, +{ +anchors = ( +{ +name = top; +pos = (378,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(511,0,ls), +(526,0,o), +(540,12,o), +(543,27,cs), +(643,493,ls), +(646,508,o), +(636,520,o), +(621,520,cs), +(339,520,ls), +(201,520,o), +(94,462,o), +(68,346,cs), +(44,239,o), +(132,156,o), +(285,156,c), +(284,151,l), +(341,151,l), +(314,27,ls), +(311,12,o), +(321,0,o), +(336,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,0,ls), +(208,0,o), +(216,5,o), +(222,15,cs), +(319,166,l), +(129,206,l), +(-6,31,l), +(-9,27,o), +(-10,23,o), +(-11,20,cs), +(-13,9,o), +(-6,0,o), +(7,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(286,300,o), +(275,313,o), +(280,336,cs), +(285,359,o), +(301,371,o), +(328,371,cs), +(393,371,l), +(378,300,l), +(313,300,ls) +); +} +); +width = 645; +} +); +metricRight = "en-cy"; +unicode = 1103; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 49; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "dje-cy"; +kernLeft = afii10108; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(176,-190,l), +(371,-190,o), +(448,-46,o), +(487,138,c), +(510,246,ls), +(539,383,o), +(470,470,o), +(354,470,cs), +(268,470,o), +(215,438,o), +(169,391,c), +(201,541,l), +(389,541,l), +(402,541,o), +(413,550,o), +(415,563,c), +(418,577,l), +(421,590,o), +(414,599,o), +(401,599,c), +(213,599,l), +(232,688,l), +(235,701,o), +(228,710,o), +(215,710,c), +(198,710,l), +(185,710,o), +(174,701,o), +(171,688,c), +(152,599,l), +(94,599,l), +(81,599,o), +(70,590,o), +(67,577,c), +(64,563,l), +(62,550,o), +(69,541,o), +(82,541,c), +(140,541,l), +(29,22,l), +(27,9,o), +(34,0,o), +(47,0,c), +(64,0,l), +(77,0,o), +(88,9,o), +(90,22,c), +(137,241,l), +(160,348,o), +(236,412,o), +(341,412,cs), +(431,412,o), +(472,357,o), +(448,241,c), +(426,138,l), +(394,-12,o), +(351,-132,o), +(189,-132,c), +(185,-132,l), +(172,-132,o), +(161,-141,o), +(158,-154,c), +(155,-168,l), +(152,-181,o), +(159,-190,o), +(172,-190,c) +); +} +); +width = 553; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,-190,ls), +(457,-190,o), +(584,-114,o), +(614,29,cs), +(666,273,ls), +(694,406,o), +(640,500,o), +(515,500,cs), +(454,500,o), +(394,477,o), +(350,438,c), +(371,538,l), +(465,538,ls), +(480,538,o), +(495,550,o), +(498,565,cs), +(509,616,ls), +(512,631,o), +(502,643,o), +(487,643,cs), +(393,643,l), +(402,683,ls), +(405,698,o), +(396,710,o), +(381,710,cs), +(186,710,ls), +(171,710,o), +(156,698,o), +(153,683,cs), +(144,643,l), +(118,643,ls), +(103,643,o), +(89,631,o), +(86,616,cs), +(75,565,ls), +(72,550,o), +(81,538,o), +(96,538,cs), +(122,538,l), +(13,27,ls), +(10,12,o), +(20,0,o), +(35,0,cs), +(230,0,ls), +(245,0,o), +(259,12,o), +(262,27,cs), +(313,266,ls), +(321,302,o), +(344,321,o), +(376,321,cs), +(408,321,o), +(422,302,o), +(414,266,cs), +(365,35,ls), +(358,2,o), +(341,-15,o), +(312,-15,cs), +(292,-15,ls), +(277,-15,o), +(262,-27,o), +(259,-42,cs), +(233,-163,ls), +(230,-178,o), +(239,-190,o), +(254,-190,cs) +); +} +); +width = 703; +} +); +unicode = 1106; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 620; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 140; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 553; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 482; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "yat-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(177,0,ls), +(317,0,o), +(391,51,o), +(416,169,cs), +(439,277,o), +(401,346,o), +(265,346,cs), +(165,346,l), +(238,688,l), +(241,701,o), +(233,710,o), +(220,710,cs), +(203,710,ls), +(190,710,o), +(180,701,o), +(177,688,cs), +(35,22,ls), +(32,9,o), +(40,0,o), +(53,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(153,288,l), +(247,288,ls), +(343,288,o), +(372,249,o), +(355,169,cs), +(338,86,o), +(291,58,o), +(198,58,cs), +(104,58,l) +); +}, +{ +closed = 1; +nodes = ( +(335,462,ls), +(348,462,o), +(359,471,o), +(361,484,cs), +(364,498,ls), +(367,511,o), +(360,520,o), +(347,520,cs), +(82,520,ls), +(69,520,o), +(58,511,o), +(55,498,cs), +(52,484,ls), +(50,471,o), +(57,462,o), +(70,462,cs) +); +} +); +width = 460; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,0,ls), +(451,0,o), +(556,68,o), +(581,184,cs), +(605,300,o), +(529,369,o), +(396,369,cs), +(316,369,l), +(383,683,ls), +(386,698,o), +(376,710,o), +(361,710,cs), +(181,710,ls), +(166,710,o), +(152,698,o), +(149,683,cs), +(9,27,ls), +(6,12,o), +(16,0,o), +(31,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,220,l), +(344,220,ls), +(371,220,o), +(382,207,o), +(377,184,cs), +(372,161,o), +(356,149,o), +(329,149,cs), +(264,149,l) +); +}, +{ +closed = 1; +nodes = ( +(438,455,ls), +(453,455,o), +(468,467,o), +(471,482,cs), +(482,533,ls), +(485,548,o), +(476,560,o), +(461,560,cs), +(86,560,ls), +(71,560,o), +(56,548,o), +(53,533,cs), +(42,482,ls), +(39,467,o), +(48,455,o), +(63,455,cs) +); +} +); +width = 622; +} +); +metricRight = "softsign-cy"; +unicode = 1123; +}, +{ +color = 6; +glyphname = "yusbig-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-5,0,ls), +(7,0,o), +(15,5,o), +(24,14,c), +(162,182,ls), +(198,226,o), +(227,237,o), +(273,237,cs), +(313,237,l), +(267,22,ls), +(265,9,o), +(272,0,o), +(285,0,cs), +(302,0,ls), +(315,0,o), +(326,9,o), +(328,22,cs), +(374,237,l), +(424,237,ls), +(470,237,o), +(493,226,o), +(511,182,cs), +(579,14,l), +(584,5,o), +(590,0,o), +(602,0,cs), +(623,0,ls), +(635,0,o), +(643,5,o), +(645,14,cs), +(646,18,o), +(645,22,o), +(642,27,c), +(563,216,ls), +(535,282,o), +(496,295,o), +(444,295,cs), +(426,295,l), +(620,487,ls), +(624,491,o), +(627,496,o), +(628,501,cs), +(630,511,o), +(625,520,o), +(612,520,cs), +(192,520,ls), +(182,520,o), +(171,512,o), +(168,500,cs), +(167,495,o), +(167,490,o), +(171,484,cs), +(285,295,l), +(267,295,ls), +(215,295,o), +(172,282,o), +(116,216,cs), +(-45,27,l), +(-50,22,o), +(-51,18,o), +(-52,14,cs), +(-54,5,o), +(-48,0,o), +(-36,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(232,497,l), +(225,462,l), +(561,462,l), +(554,492,l), +(330,272,l), +(369,266,l) +); +} +); +width = 697; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (642,0); +} +); +associatedMasterId = UUID0; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(402,247,l), +(593,487,ls), +(596,491,o), +(598,496,o), +(598,501,cs), +(598,511,o), +(591,520,o), +(578,520,cs), +(550.25,520,l), +(370,295,l), +(189.75,520,l), +(158,520,ls), +(148,520,o), +(138,512,o), +(138,500,cs), +(138,495,o), +(140,490,o), +(144,484,cs), +(334,247,l) +); +} +); +}; +color = 6; +layerId = "A037C85F-0216-4242-87F7-4A1D6F5124AF"; +name = "1"; +shapes = ( +{ +closed = 1; +nodes = ( +(561,462,l), +(561,520,l), +(182,520,l), +(182,462,l) +); +}, +{ +closed = 1; +nodes = ( +(402,247,l), +(593,487,ls), +(596,491,o), +(598,496,o), +(598,501,cs), +(598,511,o), +(591,520,o), +(578,520,cs), +(550.25,520,l), +(370,295,l), +(189.75,520,l), +(158,520,ls), +(148,520,o), +(138,512,o), +(138,500,cs), +(138,495,o), +(140,490,o), +(144,484,cs), +(334,247,l) +); +}, +{ +closed = 1; +nodes = ( +(432,295,l), +(305,295,l), +(114,27,l), +(111,22,o), +(109,18,o), +(109,14,cs), +(109,5,o), +(116,0,o), +(128,0,cs), +(154,0,ls), +(166,0,o), +(174,5,o), +(180,14,cs), +(339,237,l), +(339,237,l), +(339,22,ls), +(339,9,o), +(348,0,o), +(361,0,cs), +(378,0,ls), +(391,0,o), +(400,9,o), +(400,22,cs), +(400,237,l), +(400,237,l), +(558,14,l), +(565,5,o), +(572,0,o), +(584,0,cs), +(610,0,ls), +(622,0,o), +(629,5,o), +(629,14,cs), +(629,18,o), +(628,22,o), +(624,27,c) +); +} +); +width = 1273; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (642,0); +} +); +associatedMasterId = UUID0; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(402,247,l), +(593,487,ls), +(596,491,o), +(598,496,o), +(598,501,cs), +(598,511,o), +(591,520,o), +(578,520,cs), +(550.25,520,l), +(370,295,l), +(189.75,520,l), +(158,520,ls), +(148,520,o), +(138,512,o), +(138,500,cs), +(138,495,o), +(140,490,o), +(144,484,cs), +(334,247,l) +); +} +); +}; +color = 6; +layerId = "AD3DF967-DE3A-42F5-982C-E035E6C4B5DA"; +name = "2"; +shapes = ( +{ +closed = 1; +nodes = ( +(561,462,l), +(561,520,l), +(182,520,l), +(182,462,l) +); +}, +{ +closed = 1; +nodes = ( +(402,247,l), +(593,487,ls), +(596,491,o), +(598,496,o), +(598,501,cs), +(598,511,o), +(591,520,o), +(578,520,cs), +(550.25,520,l), +(370,295,l), +(189.75,520,l), +(158,520,ls), +(148,520,o), +(138,512,o), +(138,500,cs), +(138,495,o), +(140,490,o), +(144,484,cs), +(334,247,l) +); +}, +{ +closed = 1; +nodes = ( +(521,295,l), +(215,295,l), +(24,27,l), +(21,22,o), +(19,18,o), +(19,14,cs), +(19,5,o), +(26,0,o), +(38,0,cs), +(64,0,ls), +(76,0,o), +(84,5,o), +(90,14,cs), +(249,237,l), +(339,237,l), +(339,22,ls), +(339,9,o), +(348,0,o), +(361,0,cs), +(378,0,ls), +(391,0,o), +(400,9,o), +(400,22,cs), +(400,237,l), +(489,237,l), +(647,14,l), +(654,5,o), +(661,0,o), +(673,0,cs), +(699,0,ls), +(711,0,o), +(718,5,o), +(718,14,cs), +(718,18,o), +(717,22,o), +(713,27,c) +); +} +); +width = 1273; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,0,ls), +(214,0,o), +(221,6,o), +(228,17,cs), +(316,163,l), +(322,171,o), +(333,175,o), +(342,175,c), +(344,175,l), +(312,27,ls), +(309,12,o), +(319,0,o), +(334,0,cs), +(509,0,ls), +(524,0,o), +(538,12,o), +(541,27,cs), +(573,175,l), +(575,175,l), +(582,175,o), +(593,173,o), +(595,163,cs), +(621,17,ls), +(623,7,o), +(631,0,o), +(649,0,cs), +(859,0,ls), +(875,0,o), +(888,13,o), +(888,29,cs), +(888,32,o), +(888,34,o), +(887,37,cs), +(855,175,ls), +(837,254,o), +(774,270,o), +(714,270,cs), +(667,270,l), +(866,481,ls), +(872,487,o), +(874,494,o), +(874,500,cs), +(874,511,o), +(867,520,o), +(855,520,cs), +(208,520,ls), +(194,520,o), +(179,509,o), +(179,492,cs), +(179,489,o), +(180,485,o), +(181,481,cs), +(290,270,l), +(233,270,ls), +(183,270,o), +(114,258,o), +(56,168,cs), +(-28,37,ls), +(-30,34,o), +(-34,30,o), +(-35,24,cs), +(-37,11,o), +(-29,0,o), +(-16,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(367,501,l), +(310,398,l), +(701,398,l), +(662,484,l), +(406,182,l), +(514,165,l) +); +} +); +width = 953; +}, +{ +anchors = ( +{ +name = _center; +pos = (464.5,467); +}, +{ +name = bottomright; +pos = (700,0); +}, +{ +name = top; +pos = (485,520); +} +); +associatedMasterId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +color = 6; +layerId = "2ECB0FA0-63E8-4693-88D9-CB8FF535FEE8"; +name = "Sep 3 16, 11:39"; +shapes = ( +{ +closed = 1; +nodes = ( +(572,0,ls), +(587,0,o), +(599,12,o), +(599,27,cs), +(599,175,l), +(643,175,l), +(643,267,l), +(326,267,l), +(326,175,l), +(370,175,l), +(370,27,ls), +(370,12,o), +(382,0,o), +(397,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(177,279,l), +(16,37,ls), +(14,34,o), +(12,30,o), +(12,24,cs), +(12,11,o), +(23,0,o), +(36,0,cs), +(246,0,ls), +(266,0,o), +(275,14,o), +(277,17,cs), +(428,270,l) +); +}, +{ +closed = 1; +nodes = ( +(544,270,l), +(695,17,ls), +(697,14,o), +(706,0,o), +(726,0,cs), +(936,0,ls), +(949,0,o), +(960,11,o), +(960,24,cs), +(960,30,o), +(958,34,o), +(956,37,cs), +(795,279,l) +); +}, +{ +closed = 1; +nodes = ( +(1364,0,ls), +(1384,0,o), +(1391,13,o), +(1397,25,c), +(1589,489,ls), +(1590,492,o), +(1590,494,o), +(1590,496,cs), +(1590,509,o), +(1579,520,o), +(1566,520,cs), +(1397,520,ls), +(1377,520,o), +(1368,507,o), +(1364,496,cs), +(1284,263,l), +(1204,496,ls), +(1200,507,o), +(1191,520,o), +(1171,520,cs), +(1002,520,ls), +(989,520,o), +(978,509,o), +(978,496,cs), +(978,494,o), +(978,492,o), +(979,489,cs), +(1171,25,l), +(1177,13,o), +(1184,0,o), +(1204,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(161,520,ls), +(148,520,o), +(137,509,o), +(137,496,cs), +(137,490,o), +(140,484,o), +(142,481,c), +(277,252,l), +(692,252,l), +(827,481,l), +(829,484,o), +(832,490,o), +(832,496,cs), +(832,509,o), +(821,520,o), +(808,520,cs) +); +}, +{ +closed = 1; +nodes = ( +(558,398,l), +(485,268,l), +(411,398,l) +); +} +); +width = 1599; +} +); +unicode = 1131; +}, +{ +color = 6; +glyphname = "fita-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(465,231,ls), +(478,231,o), +(489,240,o), +(492,253,cs), +(494,267,ls), +(497,280,o), +(490,289,o), +(477,289,cs), +(92,289,ls), +(79,289,o), +(68,280,o), +(65,267,cs), +(63,253,ls), +(60,240,o), +(67,231,o), +(80,231,cs) +); +}, +{ +closed = 1; +nodes = ( +(366,-10,o), +(461,89,o), +(492,218,cs), +(497,238,o), +(507,282,o), +(510,302,cs), +(533,431,o), +(480,530,o), +(336,530,cs), +(192,530,o), +(97,431,o), +(66,302,cs), +(61,282,o), +(51,238,o), +(48,218,cs), +(25,89,o), +(78,-10,o), +(222,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(141,48,o), +(90,109,o), +(110,223,cs), +(113,243,o), +(121,277,o), +(126,297,cs), +(154,411,o), +(231,472,o), +(324,472,cs), +(417,472,o), +(468,411,o), +(448,297,cs), +(445,277,o), +(437,243,o), +(432,223,cs), +(404,109,o), +(327,48,o), +(234,48,cs) +); +} +); +width = 558; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(519,219,ls), +(534,219,o), +(549,231,o), +(552,246,cs), +(558,274,ls), +(561,289,o), +(552,301,o), +(537,301,cs), +(122,301,ls), +(107,301,o), +(92,289,o), +(89,274,cs), +(83,246,ls), +(80,231,o), +(89,219,o), +(104,219,cs) +); +}, +{ +closed = 1; +nodes = ( +(448,-10,o), +(560,66,o), +(601,213,cs), +(609,243,o), +(617,277,o), +(621,307,cs), +(642,454,o), +(551,530,o), +(378,530,cs), +(205,530,o), +(82,454,o), +(41,307,cs), +(33,277,o), +(25,243,o), +(21,213,cs), +(0,66,o), +(80,-10,o), +(264,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,130,o), +(256,151,o), +(263,198,cs), +(266,218,o), +(284,302,o), +(289,322,cs), +(302,366,o), +(311,390,o), +(349,390,cs), +(387,390,o), +(386,366,o), +(379,322,cs), +(376,302,o), +(358,218,o), +(353,198,cs), +(340,151,o), +(331,130,o), +(293,130,cs) +); +} +); +width = 642; +} +); +unicode = 1139; +}, +{ +color = 6; +glyphname = "izhitsa-cy"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (324,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(212,0,ls), +(233,0,o), +(247,10,o), +(255,25,cs), +(463,392,ls), +(491,441,o), +(516,462,o), +(558,462,cs), +(571,462,o), +(582,471,o), +(585,484,cs), +(588,498,ls), +(590,511,o), +(583,520,o), +(570,520,cs), +(568,520,ls), +(492,520,o), +(450,481,o), +(405,401,cs), +(200,40,l), +(222,40,l), +(140,501,ls), +(138,511,o), +(132,520,o), +(119,520,cs), +(104,520,ls), +(89,520,o), +(81,516,o), +(79,507,cs), +(78,502,o), +(79,496,o), +(80,489,cs), +(164,25,ls), +(167,10,o), +(174,0,o), +(195,0,cs) +); +} +); +width = 537; +}, +{ +anchors = ( +{ +name = top; +pos = (366,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,0,ls), +(342,0,o), +(351,13,o), +(360,25,c), +(509,270,ls), +(544,327,o), +(564,345,o), +(595,345,cs), +(610,345,o), +(623,357,o), +(626,373,cs), +(651,492,ls), +(655,508,o), +(645,520,o), +(629,520,cs), +(569,520,ls), +(476,520,o), +(442,481,o), +(391,398,cs), +(250,165,l), +(323,149,l), +(277,496,ls), +(276,507,o), +(269,520,o), +(249,520,cs), +(80,520,ls), +(67,520,o), +(54,509,o), +(51,496,cs), +(51,494,o), +(50,492,o), +(51,489,c), +(144,25,l), +(147,13,o), +(152,0,o), +(172,0,cs) +); +} +); +width = 622; +} +); +metricLeft = v; +unicode = 1141; +}, +{ +color = 3; +glyphname = "zhedescender-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(669,-130,ls), +(682,-130,o), +(693,-121,o), +(696,-108,cs), +(726,36,ls), +(729,49,o), +(722,58,o), +(709,58,cs), +(619,58,l), +(638,0,l), +(658,0,l), +(635,-108,ls), +(632,-121,o), +(639,-130,o), +(652,-130,cs) +); +}, +{ +ref = "zhe-cy"; +} +); +width = 799; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(907,-110,ls), +(922,-110,o), +(937,-98,o), +(940,-83,cs), +(989,148,ls), +(992,163,o), +(983,175,o), +(968,175,cs), +(735,175,l), +(742,0,l), +(744,0,l), +(727,-83,ls), +(724,-98,o), +(733,-110,o), +(748,-110,cs) +); +}, +{ +ref = "zhe-cy"; +} +); +width = 1034; +} +); +metricLeft = "zhe-cy"; +metricRight = "kadescender-cy"; +unicode = 1175; +}, +{ +color = 3; +glyphname = "zedescender-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(188,-130,ls), +(201,-130,o), +(212,-121,o), +(215,-108,cs), +(245,36,l), +(176,0,l), +(154,-108,ls), +(151,-121,o), +(158,-130,o), +(171,-130,cs) +); +}, +{ +ref = "ze-cy"; +} +); +width = 507; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,-110,ls), +(337,-110,o), +(352,-98,o), +(355,-83,cs), +(383,48,l), +(150,48,l), +(122,-83,ls), +(119,-98,o), +(128,-110,o), +(143,-110,cs) +); +}, +{ +ref = "ze-cy"; +} +); +width = 615; +} +); +metricLeft = "ze-cy"; +metricRight = "ze-cy"; +unicode = 1177; +}, +{ +color = 3; +glyphname = "kadescender-cy"; +layers = ( +{ +anchors = ( +{ +name = _bottomright; +pos = (321,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-130,ls), +(436,-130,o), +(447,-121,o), +(450,-108,cs), +(480,36,ls), +(483,49,o), +(476,58,o), +(463,58,cs), +(363,58,l), +(382,0,l), +(412,0,l), +(389,-108,ls), +(386,-121,o), +(393,-130,o), +(406,-130,cs) +); +}, +{ +ref = "ka-cy"; +} +); +width = 553; +}, +{ +anchors = ( +{ +name = _bottomright; +pos = (270,0); +} +); +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(539,-110,ls), +(554,-110,o), +(568,-98,o), +(571,-83,cs), +(621,148,ls), +(624,163,o), +(614,175,o), +(599,175,cs), +(357,175,l), +(362,12,l), +(356,0,l), +(338,-83,ls), +(335,-98,o), +(345,-110,o), +(360,-110,cs) +); +}, +{ +ref = "ka-cy"; +} +); +width = 666; +} +); +metricLeft = "en-cy"; +unicode = 1179; +}, +{ +color = 6; +glyphname = "kaverticalstroke-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(65,0,ls), +(78,0,o), +(89,9,o), +(91,22,c), +(137,235,l), +(256,235,l), +(366,14,l), +(371,5,o), +(377,0,o), +(389,0,cs), +(407,0,ls), +(419,0,o), +(427,5,o), +(429,14,cs), +(430,18,o), +(429,22,o), +(426,27,c), +(303,272,l), +(507,494,l), +(511,499,o), +(514,503,o), +(514,506,cs), +(514,515,o), +(509,520,o), +(497,520,cs), +(468,520,ls), +(456,520,o), +(448,515,o), +(439,505,cs), +(252,295,l), +(149,295,l), +(193,498,l), +(195,511,o), +(188,520,o), +(175,520,cs), +(158,520,ls), +(145,520,o), +(134,511,o), +(132,498,c), +(30,22,l), +(28,9,o), +(35,0,o), +(48,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(196,125,ls), +(209,125,o), +(220,134,o), +(223,147,cs), +(271,372,ls), +(274,385,o), +(266,394,o), +(253,394,cs), +(249,394,ls), +(236,394,o), +(226,385,o), +(223,372,cs), +(175,147,ls), +(172,134,o), +(179,125,o), +(192,125,cs) +); +} +); +width = 506; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(192,0,ls), +(207,0,o), +(221,12,o), +(224,27,cs), +(260,195,l), +(355,195,l), +(424,17,l), +(428,8,o), +(436,0,o), +(452,0,cs), +(642,0,ls), +(655,0,o), +(669,11,o), +(671,24,cs), +(672,30,o), +(671,34,o), +(670,37,c), +(574,250,l), +(759,481,l), +(762,484,o), +(766,490,o), +(767,496,cs), +(769,509,o), +(761,520,o), +(748,520,cs), +(556,520,ls), +(538,520,o), +(528,508,o), +(524,503,cs), +(390,330,l), +(289,330,l), +(324,493,ls), +(327,508,o), +(317,520,o), +(302,520,cs), +(127,520,ls), +(112,520,o), +(98,508,o), +(95,493,cs), +(-5,27,ls), +(-8,12,o), +(2,0,o), +(17,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,99,ls), +(319,99,o), +(333,111,o), +(337,126,cs), +(395,401,ls), +(398,416,o), +(389,428,o), +(374,428,cs), +(362,428,ls), +(347,428,o), +(332,416,o), +(329,401,cs), +(271,126,ls), +(267,111,o), +(277,99,o), +(292,99,cs) +); +} +); +width = 756; +} +); +metricLeft = "en-cy"; +metricRight = "ka-cy"; +unicode = 1181; +}, +{ +color = 3; +glyphname = "kabashkir-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(310,498,l), +(312,511,o), +(305,520,o), +(292,520,cs), +(90,520,ls), +(77,520,o), +(66,511,o), +(64,498,cs), +(61,484,ls), +(58,471,o), +(65,462,o), +(78,462,cs), +(241,462,l) +); +}, +{ +pos = (117,0); +ref = "ka-cy"; +} +); +width = 613; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(454,493,l), +(457,508,o), +(447,520,o), +(432,520,cs), +(97,520,ls), +(82,520,o), +(68,508,o), +(65,493,cs), +(39,372,ls), +(36,357,o), +(45,345,o), +(60,345,cs), +(193,345,l) +); +}, +{ +pos = (130,0); +ref = "ka-cy"; +} +); +width = 796; +} +); +metricLeft = "te-cy"; +metricRight = "ka-cy"; +unicode = 1185; +}, +{ +color = 3; +glyphname = "endescender-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(482,-130,ls), +(495,-130,o), +(506,-121,o), +(509,-108,cs), +(539,36,ls), +(542,49,o), +(535,58,o), +(522,58,cs), +(412,58,l), +(431,0,l), +(471,0,l), +(448,-108,ls), +(445,-121,o), +(452,-130,o), +(465,-130,cs) +); +}, +{ +ref = "en-cy"; +} +); +width = 612; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(572,-110,ls), +(587,-110,o), +(602,-98,o), +(605,-83,cs), +(654,148,ls), +(657,163,o), +(648,175,o), +(633,175,cs), +(361,175,l), +(365,0,l), +(389,0,l), +(372,-83,ls), +(369,-98,o), +(378,-110,o), +(393,-110,cs) +); +}, +{ +ref = "en-cy"; +} +); +width = 713; +} +); +metricLeft = "en-cy"; +metricRight = "tse-cy"; +unicode = 1187; +}, +{ +color = 6; +glyphname = "enghe-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(531,520,ls), +(518,520,o), +(507,511,o), +(505,498,cs), +(461,295,l), +(149,295,l), +(193,498,ls), +(195,511,o), +(188,520,o), +(175,520,cs), +(158,520,ls), +(145,520,o), +(134,511,o), +(132,498,cs), +(30,22,ls), +(28,9,o), +(35,0,o), +(48,0,cs), +(65,0,ls), +(78,0,o), +(89,9,o), +(91,22,cs), +(137,237,l), +(449,237,l), +(403,22,ls), +(401,9,o), +(408,0,o), +(421,0,cs), +(438,0,ls), +(451,0,o), +(462,9,o), +(464,22,cs), +(558,462,l), +(752,462,ls), +(765,462,o), +(776,471,o), +(779,484,cs), +(782,498,ls), +(784,511,o), +(777,520,o), +(764,520,cs) +); +} +); +width = 741; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(460,520,ls), +(445,520,o), +(431,508,o), +(428,493,cs), +(397,350,l), +(297,350,l), +(328,493,ls), +(331,508,o), +(321,520,o), +(306,520,cs), +(127,520,ls), +(112,520,o), +(98,508,o), +(95,493,cs), +(-5,27,ls), +(-8,12,o), +(2,0,o), +(17,0,cs), +(196,0,ls), +(211,0,o), +(225,12,o), +(228,27,cs), +(260,175,l), +(360,175,l), +(328,27,ls), +(325,12,o), +(335,0,o), +(350,0,cs), +(529,0,ls), +(544,0,o), +(558,12,o), +(561,27,cs), +(629,345,l), +(768,345,ls), +(783,345,o), +(798,357,o), +(801,372,cs), +(827,493,ls), +(830,508,o), +(820,520,o), +(805,520,cs) +); +} +); +width = 797; +} +); +metricLeft = "en-cy"; +metricRight = "ge-cy"; +unicode = 1189; +}, +{ +color = 3; +glyphname = "pedescender-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(463,-130,ls), +(476,-130,o), +(487,-121,o), +(490,-108,cs), +(520,36,ls), +(523,49,o), +(516,58,o), +(503,58,cs), +(393,58,l), +(412,0,l), +(452,0,l), +(429,-108,ls), +(426,-121,o), +(433,-130,o), +(446,-130,cs) +); +}, +{ +ref = "pe-cy"; +} +); +width = 593; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(572,-110,ls), +(587,-110,o), +(602,-98,o), +(605,-83,cs), +(654,148,ls), +(657,163,o), +(648,175,o), +(633,175,cs), +(361,175,l), +(365,0,l), +(389,0,l), +(372,-83,ls), +(369,-98,o), +(378,-110,o), +(393,-110,cs) +); +}, +{ +ref = "pe-cy"; +} +); +width = 713; +} +); +metricLeft = "en-cy"; +metricRight = "tse-cy"; +unicode = 1317; +}, +{ +color = 3; +glyphname = "esdescender-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(188,-130,ls), +(201,-130,o), +(212,-121,o), +(215,-108,cs), +(245,36,l), +(176,0,l), +(154,-108,ls), +(151,-121,o), +(158,-130,o), +(171,-130,cs) +); +}, +{ +ref = "es-cy"; +} +); +width = 535; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(327,-110,ls), +(342,-110,o), +(357,-98,o), +(360,-83,cs), +(388,48,l), +(155,48,l), +(127,-83,ls), +(124,-98,o), +(133,-110,o), +(148,-110,cs) +); +}, +{ +ref = "es-cy"; +} +); +width = 621; +} +); +unicode = 1195; +}, +{ +color = 6; +glyphname = "ustrait-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(157,-190,ls), +(170,-190,o), +(180,-181,o), +(183,-168,cs), +(214,-22,l), +(525,489,ls), +(529,495,o), +(530,500,o), +(530,504,cs), +(530,514,o), +(523,520,o), +(514,520,cs), +(490,520,ls), +(479,520,o), +(471,514,o), +(465,505,cs), +(207,73,l), +(127,505,ls), +(126,513,o), +(119,520,o), +(108,520,cs), +(92,520,ls), +(74,520,o), +(67,515,o), +(67,501,cs), +(67,497,o), +(67,494,o), +(68,489,cs), +(157,-5,l), +(122,-168,ls), +(119,-181,o), +(127,-190,o), +(140,-190,cs) +); +} +); +width = 499; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(305,-190,ls), +(320,-190,o), +(334,-178,o), +(337,-163,cs), +(381,43,l), +(662,489,ls), +(664,493,o), +(665,497,o), +(665,501,cs), +(665,511,o), +(659,520,o), +(645,520,cs), +(476,520,ls), +(457,520,o), +(446,510,o), +(438,496,cs), +(309,263,l), +(278,496,ls), +(276,512,o), +(269,520,o), +(250,520,cs), +(81,520,ls), +(63,520,o), +(51,512,o), +(51,496,cs), +(51,494,o), +(51,492,o), +(52,489,cs), +(143,48,l), +(98,-163,ls), +(95,-178,o), +(105,-190,o), +(120,-190,cs) +); +} +); +width = 614; +} +); +unicode = 1199; +}, +{ +color = 10; +glyphname = "ustraitstroke-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "ustrait-cy"; +}, +{ +pos = (-9,-310); +ref = strokeshortcomb; +} +); +width = 499; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "ustrait-cy"; +}, +{ +pos = (19,-302); +ref = strokeshortcomb; +} +); +width = 614; +} +); +unicode = 1201; +}, +{ +color = 3; +glyphname = "chedescender-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(421,-130,ls), +(434,-130,o), +(445,-121,o), +(448,-108,cs), +(478,36,ls), +(481,49,o), +(474,58,o), +(461,58,cs), +(351,58,l), +(370,0,l), +(410,0,l), +(387,-108,ls), +(384,-121,o), +(391,-130,o), +(404,-130,cs) +); +}, +{ +ref = "che-cy"; +} +); +width = 551; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(554,-110,ls), +(569,-110,o), +(584,-98,o), +(587,-83,cs), +(636,148,ls), +(639,163,o), +(630,175,o), +(615,175,cs), +(343,175,l), +(347,0,l), +(371,0,l), +(354,-83,ls), +(351,-98,o), +(360,-110,o), +(375,-110,cs) +); +}, +{ +ref = "che-cy"; +} +); +width = 695; +} +); +metricLeft = "che-cy"; +metricRight = "tse-cy"; +unicode = 1207; +}, +{ +color = 6; +glyphname = "cheverticalstroke-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(379,0,ls), +(392,0,o), +(403,9,o), +(405,22,cs), +(507,498,ls), +(509,511,o), +(502,520,o), +(489,520,cs), +(472,520,ls), +(459,520,o), +(448,511,o), +(446,498,cs), +(406,311,ls), +(392,250,o), +(322,231,o), +(223,231,cs), +(148,231,o), +(117,261,o), +(133,336,cs), +(167,498,ls), +(169,511,o), +(162,520,o), +(149,520,cs), +(132,520,ls), +(119,520,o), +(108,511,o), +(106,498,cs), +(68,322,ls), +(47,227,o), +(113,173,o), +(217,173,cs), +(286,173,o), +(342,188,o), +(388,226,c), +(344,22,ls), +(342,9,o), +(349,0,o), +(362,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(223,76,ls), +(236,76,o), +(247,85,o), +(250,98,cs), +(297,323,ls), +(300,336,o), +(293,345,o), +(280,345,cs), +(276,345,ls), +(263,345,o), +(252,336,o), +(249,323,cs), +(202,98,ls), +(199,85,o), +(206,76,o), +(219,76,cs) +); +} +); +width = 537; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(578,0,ls), +(593,0,o), +(607,12,o), +(610,27,cs), +(710,493,ls), +(713,508,o), +(703,520,o), +(688,520,cs), +(493,520,ls), +(478,520,o), +(464,508,o), +(461,493,cs), +(427,337,ls), +(422,313,o), +(384,299,o), +(337,299,cs), +(295,299,o), +(277,316,o), +(285,354,cs), +(315,493,ls), +(318,508,o), +(308,520,o), +(293,520,cs), +(107,520,ls), +(92,520,o), +(78,508,o), +(75,493,cs), +(45,354,ls), +(15,213,o), +(88,140,o), +(223,140,cs), +(292,140,o), +(352,151,o), +(391,168,cs), +(361,27,ls), +(358,12,o), +(368,0,o), +(383,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(316,85,ls), +(331,85,o), +(345,97,o), +(349,112,cs), +(398,347,ls), +(402,362,o), +(392,374,o), +(377,374,cs), +(365,374,ls), +(350,374,o), +(336,362,o), +(332,347,cs), +(283,112,ls), +(279,97,o), +(289,85,o), +(304,85,cs) +); +} +); +width = 712; +} +); +metricLeft = "che-cy"; +metricRight = "en-cy"; +unicode = 1209; +}, +{ +color = 10; +glyphname = "shha-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (516,0); +} +); +layerId = UUID0; +shapes = ( +{ +ref = h; +} +); +width = 591; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (610,0); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = h; +} +); +width = 685; +} +); +unicode = 1211; +}, +{ +color = 10; +glyphname = "palochka-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = l; +} +); +width = 225; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = l; +} +); +width = 324; +} +); +unicode = 1231; +}, +{ +color = 10; +glyphname = "zhebreve-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "zhe-cy"; +}, +{ +pos = (254,0); +ref = "brevecomb-cy"; +} +); +width = 749; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "zhe-cy"; +}, +{ +pos = (306,0); +ref = "brevecomb-cy"; +} +); +width = 1033; +} +); +unicode = 1218; +}, +{ +color = 6; +glyphname = "chekhakassian-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(280,-130,o), +(291,-121,o), +(294,-108,cs), +(317,0,l), +(375,0,l), +(400,58,l), +(290,58,ls), +(277,58,o), +(266,49,o), +(263,36,cs), +(233,-108,ls), +(230,-121,o), +(237,-130,o), +(250,-130,cs), +(267,-130,ls) +); +}, +{ +closed = 1; +nodes = ( +(384,0,ls), +(397,0,o), +(407,9,o), +(410,22,cs), +(512,498,ls), +(515,511,o), +(507,520,o), +(494,520,cs), +(477,520,ls), +(464,520,o), +(454,511,o), +(451,498,cs), +(411,311,ls), +(398,250,o), +(327,231,o), +(228,231,cs), +(153,231,o), +(122,261,o), +(138,336,cs), +(172,498,ls), +(175,511,o), +(167,520,o), +(154,520,cs), +(137,520,ls), +(124,520,o), +(114,511,o), +(111,498,cs), +(73,322,ls), +(52,227,o), +(118,173,o), +(222,173,cs), +(291,173,o), +(347,188,o), +(393,226,c), +(349,22,ls), +(346,9,o), +(354,0,o), +(367,0,cs) +); +} +); +width = 510; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(455,-110,o), +(470,-98,o), +(473,-83,cs), +(490,0,l), +(514,0,l), +(572,105,l), +(307,105,ls), +(292,105,o), +(277,93,o), +(274,78,cs), +(240,-83,ls), +(237,-98,o), +(246,-110,o), +(261,-110,cs), +(440,-110,ls) +); +}, +{ +closed = 1; +nodes = ( +(529,0,ls), +(544,0,o), +(559,12,o), +(562,27,cs), +(661,493,ls), +(664,508,o), +(655,520,o), +(640,520,cs), +(445,520,ls), +(430,520,o), +(415,508,o), +(412,493,cs), +(381,347,ls), +(378,331,o), +(356,319,o), +(333,319,cs), +(298,319,o), +(291,328,o), +(299,364,cs), +(326,493,ls), +(329,508,o), +(320,520,o), +(305,520,cs), +(119,520,ls), +(104,520,o), +(89,508,o), +(86,493,cs), +(57,354,ls), +(23,190,o), +(79,120,o), +(211,120,cs), +(263,120,o), +(308,131,o), +(339,148,c), +(313,27,ls), +(310,12,o), +(319,0,o), +(334,0,cs) +); +} +); +width = 652; +} +); +unicode = 1228; +}, +{ +color = 10; +glyphname = "abreve-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "a-cy"; +}, +{ +pos = (156,0); +ref = "brevecomb-cy"; +} +); +width = 569; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "a-cy"; +}, +{ +pos = (107,0); +ref = "brevecomb-cy"; +} +); +width = 660; +} +); +unicode = 1233; +}, +{ +color = 10; +glyphname = "adieresis-cy"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (-84, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (-26, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (613, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +ref = "a-cy"; +}, +{ +pos = (209,0); +ref = dieresiscomb; +} +); +width = 569; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "a-cy"; +}, +{ +pos = (169,0); +ref = dieresiscomb; +} +); +width = 660; +} +); +unicode = 1235; +}, +{ +color = 6; +glyphname = "aie-cy"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (76, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (-7, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(270,-10,o), +(345,26,o), +(400,100,c), +(417,36,o), +(466,-10,o), +(564,-10,cs), +(699,-10,o), +(785,81,o), +(791,111,cs), +(794,123,o), +(787,131,o), +(775,131,c), +(763,131,l), +(748,131,o), +(743,129,o), +(729,113,cs), +(687,67,o), +(628,48,o), +(576,48,cs), +(507,48,o), +(437,95,o), +(461,225,c), +(463,235,l), +(809,235,l), +(822,235,o), +(834,244,o), +(836,257,c), +(840,272,l), +(861,373,o), +(865,530,o), +(679,530,cs), +(595,530,o), +(532,494,o), +(487,442,c), +(473,491,o), +(428,530,o), +(327,530,cs), +(194,530,o), +(123,442,o), +(115,405,cs), +(112,393,o), +(120,383,o), +(132,383,c), +(146,383,l), +(158,383,o), +(166,388,o), +(175,404,cs), +(193,437,o), +(241,472,o), +(315,472,cs), +(409,472,o), +(442,429,o), +(427,358,c), +(420,326,l), +(257,304,l), +(137,288,o), +(43,229,o), +(24,139,cs), +(6,55,o), +(66,-10,o), +(172,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(132,48,o), +(72,78,o), +(86,144,cs), +(98,198,o), +(163,235,o), +(275,250,c), +(408,268,l), +(400,234,l), +(374,108,o), +(286,48,o), +(194,48,cs) +); +}, +{ +closed = 1; +nodes = ( +(475,295,l), +(505,416,o), +(591,472,o), +(667,472,cs), +(772,472,o), +(805,396,o), +(783,295,c), +(783,291,l), +(475,291,l) +); +} +); +width = 881; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,-10,o), +(319,-1,o), +(391,51,c), +(430,11,o), +(494,-10,o), +(575,-10,cs), +(760,-10,o), +(868,94,o), +(879,145,cs), +(881,158,o), +(874,167,o), +(861,167,cs), +(672,167,ls), +(656,167,o), +(651,165,o), +(636,153,cs), +(623,142,o), +(615,135,o), +(603,135,cs), +(574,135,o), +(569,156,o), +(577,196,cs), +(578,201,l), +(876,201,ls), +(891,201,o), +(906,213,o), +(909,228,cs), +(916,258,ls), +(947,405,o), +(884,530,o), +(688,530,cs), +(629,530,o), +(575,516,o), +(528,493,c), +(500,517,o), +(452,530,o), +(378,530,cs), +(191,530,o), +(94,431,o), +(84,380,cs), +(81,367,o), +(88,358,o), +(101,358,cs), +(268,358,l), +(269,358,o), +(270,358,o), +(271,358,cs), +(303,358,o), +(313,390,o), +(347,390,cs), +(374,390,o), +(374,376,o), +(366,342,c), +(366,339,l), +(256,322,l), +(118,299,o), +(21,246,o), +(0,149,cs), +(-19,59,o), +(45,-10,o), +(181,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(236,138,o), +(226,151,o), +(229,166,cs), +(232,180,o), +(244,195,o), +(281,203,cs), +(343,216,l), +(342,215,l), +(331,162,o), +(300,138,o), +(261,138,cs) +); +}, +{ +closed = 1; +nodes = ( +(606,330,ls), +(615,371,o), +(633,390,o), +(659,390,cs), +(684,390,o), +(695,371,o), +(686,330,cs), +(685,326,l), +(605,326,l) +); +} +); +width = 935; +} +); +metricLeft = ae; +metricRight = ae; +unicode = 1237; +}, +{ +color = 10; +glyphname = "iebreve-cy"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (224, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +ref = "ie-cy"; +}, +{ +pos = (159,0); +ref = "brevecomb-cy"; +} +); +width = 544; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "ie-cy"; +}, +{ +pos = (100,0); +ref = "brevecomb-cy"; +} +); +width = 621; +} +); +unicode = 1239; +}, +{ +color = 6; +glyphname = "schwa-cy"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (327,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(195,530,o), +(99,447,o), +(89,409,cs), +(86,397,o), +(94,389,o), +(106,389,cs), +(122,389,ls), +(137,389,o), +(140,390,o), +(156,407,cs), +(170,423,o), +(224,472,o), +(309,472,cs), +(406,472,o), +(444,386,o), +(429,295,cs), +(428,292,o), +(427,285,o), +(427,285,c), +(71,285,ls), +(58,285,o), +(46,276,o), +(43,263,cs), +(40,248,ls), +(6,88,o), +(67,-10,o), +(206,-10,cs), +(336,-10,o), +(435,84,o), +(474,220,cs), +(479,240,o), +(488,280,o), +(491,300,cs), +(510,437,o), +(450,530,o), +(321,530,cs) +); +}, +{ +closed = 1; +nodes = ( +(414,225,ls), +(393,125,o), +(318,48,o), +(218,48,cs), +(118,48,o), +(75,125,o), +(96,225,cs), +(97,229,l), +(415,229,l) +); +} +); +width = 544; +}, +{ +anchors = ( +{ +name = top; +pos = (366,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(173,530,o), +(68,426,o), +(54,375,cs), +(50,362,o), +(58,353,o), +(71,353,cs), +(260,353,ls), +(276,353,o), +(282,355,o), +(296,367,cs), +(310,378,o), +(317,385,o), +(329,385,cs), +(358,385,o), +(364,364,o), +(355,324,cs), +(355,322,o), +(354,321,o), +(354,319,c), +(56,319,ls), +(41,319,o), +(27,307,o), +(23,292,cs), +(17,262,ls), +(-14,115,o), +(48,-10,o), +(244,-10,cs), +(415,-10,o), +(546,82,o), +(585,254,cs), +(586,256,o), +(586,259,o), +(587,261,cs), +(626,448,o), +(533,530,o), +(358,530,cs) +); +}, +{ +closed = 1; +nodes = ( +(327,193,l), +(318,149,o), +(300,130,o), +(274,130,cs), +(248,130,o), +(238,149,o), +(247,193,c), +(247,194,l), +(327,194,l) +); +} +); +width = 621; +} +); +unicode = 1241; +}, +{ +color = 10; +glyphname = "zhedieresis-cy"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (612, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +ref = "zhe-cy"; +}, +{ +pos = (307,0); +ref = dieresiscomb; +} +); +width = 749; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "zhe-cy"; +}, +{ +pos = (368,0); +ref = dieresiscomb; +} +); +width = 1033; +} +); +unicode = 1245; +}, +{ +color = 10; +glyphname = "zedieresis-cy"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (613, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +ref = "ze-cy"; +}, +{ +pos = (181,0); +ref = dieresiscomb; +} +); +width = 507; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "ze-cy"; +}, +{ +pos = (160,0); +ref = dieresiscomb; +} +); +width = 615; +} +); +unicode = 1247; +}, +{ +color = 10; +glyphname = "imacron-cy"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (550, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (196,0); +ref = macroncomb; +} +); +width = 586; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (186,0); +ref = macroncomb; +} +); +width = 673; +} +); +unicode = 1251; +}, +{ +color = 10; +glyphname = "idieresis-cy"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (612, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (200,0); +ref = dieresiscomb; +} +); +width = 586; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (171,0); +ref = dieresiscomb; +} +); +width = 673; +} +); +unicode = 1253; +}, +{ +color = 10; +glyphname = "odieresis-cy"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (456, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (613, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +ref = "o-cy"; +}, +{ +pos = (210,0); +ref = dieresiscomb; +} +); +width = 556; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "o-cy"; +}, +{ +pos = (162,0); +ref = dieresiscomb; +} +); +width = 641; +} +); +unicode = 1255; +}, +{ +color = 6; +glyphname = "obarred-cy"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (334,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(465,231,ls), +(478,231,o), +(489,240,o), +(492,253,cs), +(494,267,ls), +(497,280,o), +(490,289,o), +(477,289,cs), +(92,289,ls), +(79,289,o), +(68,280,o), +(65,267,cs), +(63,253,ls), +(60,240,o), +(67,231,o), +(80,231,cs) +); +}, +{ +closed = 1; +nodes = ( +(366,-10,o), +(461,89,o), +(492,218,cs), +(497,238,o), +(507,282,o), +(510,302,cs), +(533,431,o), +(480,530,o), +(336,530,cs), +(192,530,o), +(97,431,o), +(66,302,cs), +(61,282,o), +(51,238,o), +(48,218,cs), +(25,89,o), +(78,-10,o), +(222,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(141,48,o), +(90,109,o), +(110,223,cs), +(113,243,o), +(121,277,o), +(126,297,cs), +(154,411,o), +(231,472,o), +(324,472,cs), +(417,472,o), +(468,411,o), +(448,297,cs), +(445,277,o), +(437,243,o), +(432,223,cs), +(404,109,o), +(327,48,o), +(234,48,cs) +); +} +); +width = 558; +}, +{ +anchors = ( +{ +name = top; +pos = (376,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(519,219,ls), +(534,219,o), +(549,231,o), +(552,246,cs), +(558,274,ls), +(561,289,o), +(552,301,o), +(537,301,cs), +(122,301,ls), +(107,301,o), +(92,289,o), +(89,274,cs), +(83,246,ls), +(80,231,o), +(89,219,o), +(104,219,cs) +); +}, +{ +closed = 1; +nodes = ( +(448,-10,o), +(560,66,o), +(601,213,cs), +(609,243,o), +(617,277,o), +(621,307,cs), +(642,454,o), +(551,530,o), +(378,530,cs), +(205,530,o), +(82,454,o), +(41,307,cs), +(33,277,o), +(25,243,o), +(21,213,cs), +(0,66,o), +(80,-10,o), +(264,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,130,o), +(256,151,o), +(263,198,cs), +(266,218,o), +(284,302,o), +(289,322,cs), +(302,366,o), +(311,390,o), +(349,390,cs), +(387,390,o), +(386,366,o), +(379,322,cs), +(376,302,o), +(358,218,o), +(353,198,cs), +(340,151,o), +(331,130,o), +(293,130,cs) +); +} +); +width = 642; +} +); +unicode = 1257; +}, +{ +color = 10; +glyphname = "umacron-cy"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (570, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (171,0); +ref = macroncomb; +} +); +width = 538; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (184,0); +ref = macroncomb; +} +); +width = 630; +} +); +unicode = 1263; +}, +{ +color = 10; +glyphname = "udieresis-cy"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (632, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (175,0); +ref = dieresiscomb; +} +); +width = 538; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (169,0); +ref = dieresiscomb; +} +); +width = 630; +} +); +unicode = 1265; +}, +{ +color = 10; +glyphname = "uhungarumlaut-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (178,0); +ref = hungarumlautcomb; +} +); +width = 538; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (170,0); +ref = hungarumlautcomb; +} +); +width = 630; +} +); +unicode = 1267; +}, +{ +color = 10; +glyphname = "chedieresis-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "che-cy"; +}, +{ +pos = (194,0); +ref = dieresiscomb; +} +); +width = 537; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "che-cy"; +}, +{ +pos = (146,0); +ref = dieresiscomb; +} +); +width = 652; +} +); +unicode = 1269; +}, +{ +color = 10; +glyphname = "yerudieresis-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "yeru-cy"; +}, +{ +pos = (272,0); +ref = dieresiscomb; +} +); +width = 659; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "yeru-cy"; +}, +{ +pos = (302,0); +ref = dieresiscomb; +} +); +width = 921; +} +); +unicode = 1273; +}, +{ +color = 10; +glyphname = "qa-cy"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (494, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +ref = q; +} +); +width = 580; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = q; +} +); +width = 661; +} +); +unicode = 1307; +}, +{ +color = 10; +glyphname = "we-cy"; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (445, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +ref = w; +} +); +width = 786; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = w; +} +); +width = 872; +} +); +unicode = 1309; +}, +{ +color = 6; +glyphname = "alef-hb"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (238,0); +}, +{ +name = bottomleft; +pos = (-24,0); +}, +{ +name = center; +pos = (210,142); +}, +{ +name = top; +pos = (349,520); +}, +{ +name = topleft; +pos = (87,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(443,0,ls), +(454,0,o), +(465,9,o), +(467,20,cs), +(469,25,o), +(468,31,o), +(464,40,c), +(203,556,l), +(200,563,o), +(195,571,o), +(182,571,cs), +(163,571,ls), +(152,571,o), +(141,562,o), +(138,551,cs), +(137,546,o), +(138,540,o), +(142,531,cs), +(402,15,l), +(407,8,o), +(411,0,o), +(424,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(46,0,ls), +(59,0,o), +(70,9,o), +(73,22,cs), +(106,176,ls), +(120,242,o), +(149,316,o), +(243,367,c), +(220,415,l), +(98,350,o), +(63,264,o), +(46,181,cs), +(12,22,ls), +(9,9,o), +(16,0,o), +(29,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(498,244,o), +(528,313,o), +(546,400,cs), +(578,549,ls), +(581,562,o), +(574,571,o), +(561,571,cs), +(544,571,ls), +(531,571,o), +(520,562,o), +(517,549,cs), +(486,405,ls), +(471,335,o), +(460,281,o), +(336,229,c), +(350,178,l) +); +} +); +width = 568; +}, +{ +anchors = ( +{ +name = bottom; +pos = (269,0); +}, +{ +name = bottomleft; +pos = (-26,0); +}, +{ +name = center; +pos = (252,24); +}, +{ +name = top; +pos = (380,520); +}, +{ +name = topleft; +pos = (85,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(563,0,ls), +(575,0,o), +(587,10,o), +(590,22,cs), +(590,24,o), +(592,28,o), +(589,33,cs), +(338,546,ls), +(335,553,o), +(328,571,o), +(302,571,cs), +(135,571,ls), +(123,571,o), +(110,561,o), +(108,549,cs), +(107,544,o), +(106,542,o), +(109,538,cs), +(352,23,ls), +(355,18,o), +(362,0,o), +(388,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,0,ls), +(174,0,o), +(189,12,o), +(192,29,cs), +(216,140,ls), +(221,163,o), +(229,209,o), +(266,237,c), +(193,387,l), +(89,319,o), +(49,263,o), +(22,136,cs), +(-1,29,ls), +(-4,14,o), +(5,0,o), +(20,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(601,266,o), +(647,349,o), +(664,427,cs), +(688,542,ls), +(692,557,o), +(683,571,o), +(668,571,cs), +(519,571,ls), +(504,571,o), +(489,559,o), +(485,542,cs), +(462,431,ls), +(457,410,o), +(447,369,o), +(408,350,c), +(486,203,l) +); +} +); +width = 674; +} +); +unicode = 1488; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 478; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "alefpatah-hb"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "alef-hb"; +}, +{ +pos = (286,5); +ref = "patah-hb"; +} +); +width = 568; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "alef-hb"; +}, +{ +pos = (316,0); +ref = "patah-hb"; +} +); +width = 674; +} +); +unicode = 64302; +}, +{ +color = 10; +glyphname = "alefqamats-hb"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "alef-hb"; +}, +{ +pos = (285,0); +ref = "qamatsqatan-hb"; +} +); +width = 568; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "alef-hb"; +}, +{ +pos = (316,0); +ref = "qamatsqatan-hb"; +} +); +width = 674; +} +); +unicode = 64303; +}, +{ +color = 10; +glyphname = "alefdagesh-hb"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "alef-hb"; +}, +{ +pos = (196,-147); +ref = "dagesh-hb"; +} +); +width = 568; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "alef-hb"; +}, +{ +pos = (182,-262); +ref = "dagesh-hb"; +} +); +width = 674; +} +); +unicode = 64304; +}, +{ +color = 6; +glyphname = "bet-hb"; +kernLeft = bethebrew; +kernRight = bethebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (217,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (221,260); +}, +{ +name = top; +pos = (328,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(431,0,ls), +(444,0,o), +(455,9,o), +(458,22,cs), +(461,36,ls), +(464,49,o), +(457,58,o), +(444,58,cs), +(406,58,l), +(463,327,ls), +(495,481,o), +(438,571,o), +(268,571,cs), +(163,571,ls), +(150,571,o), +(139,562,o), +(136,549,c), +(133,535,ls), +(130,522,o), +(137,513,o), +(150,513,cs), +(250,513,ls), +(385,513,o), +(426,442,o), +(401,322,cs), +(345,58,l), +(44,58,ls), +(31,58,o), +(20,49,o), +(17,36,cs), +(14,22,ls), +(11,9,o), +(18,0,o), +(31,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 532; +}, +{ +anchors = ( +{ +name = bottom; +pos = (251,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (173,260); +}, +{ +name = top; +pos = (362,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(500,0,ls), +(515,0,o), +(530,12,o), +(533,27,cs), +(559,148,ls), +(562,163,o), +(552,175,o), +(537,175,cs), +(504,175,l), +(535,318,ls), +(576,512,o), +(472,571,o), +(287,571,cs), +(141,571,ls), +(126,571,o), +(111,559,o), +(108,544,cs), +(82,422,ls), +(79,407,o), +(88,395,o), +(103,395,cs), +(244,395,ls), +(293,395,o), +(313,370,o), +(302,320,cs), +(271,175,l), +(46,175,ls), +(31,175,o), +(17,163,o), +(14,148,cs), +(-12,27,ls), +(-15,12,o), +(-6,0,o), +(9,0,cs) +); +} +); +width = 599; +} +); +unicode = 1489; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 40; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 516; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "betdagesh-hb"; +kernLeft = bethebrew; +kernRight = bethebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "bet-hb"; +}, +{ +pos = (207,-29); +ref = "dagesh-hb"; +} +); +width = 532; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "bet-hb"; +}, +{ +pos = (103,-26); +ref = "dagesh-hb"; +} +); +width = 599; +} +); +unicode = 64305; +}, +{ +color = 6; +glyphname = "gimel-hb"; +kernLeft = gimelhebrew; +kernRight = gimelhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (176,0); +}, +{ +name = bottomleft; +pos = (-24,0); +}, +{ +name = center; +pos = (163,260); +}, +{ +name = top; +pos = (317,520); +}, +{ +name = topleft; +pos = (87,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(319,0,ls), +(332,0,o), +(345,9,o), +(346,22,cs), +(352,337,ls), +(353,489,o), +(327,571,o), +(209,571,cs), +(172,571,ls), +(159,571,o), +(148,562,o), +(145,549,cs), +(142,535,ls), +(139,522,o), +(146,513,o), +(159,513,cs), +(196,513,ls), +(279,513,o), +(291,449,o), +(290,332,cs), +(285,22,ls), +(285,9,o), +(289,0,o), +(302,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(247,96,o), +(334,196,o), +(350,271,c), +(289,259,l), +(286,220,o), +(207,140,o), +(149,106,cs), +(110,83,o), +(50,64,o), +(35,59,cs), +(18,53,o), +(11,44,o), +(8,34,cs), +(3,7,ls), +(0,-7,o), +(10,-10,o), +(24,-8,cs), +(72,1,o), +(116,17,o), +(172,51,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +315, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 430; +}, +{ +anchors = ( +{ +name = bottom; +pos = (227,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (134,260); +}, +{ +name = top; +pos = (358,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(418,0,ls), +(433,0,o), +(451,12,o), +(451,27,cs), +(455,327,ls), +(457,513,o), +(402,581,o), +(207,581,cs), +(168,581,ls), +(153,581,o), +(138,569,o), +(135,554,cs), +(107,423,ls), +(104,408,o), +(113,396,o), +(128,396,cs), +(162,396,ls), +(211,396,o), +(221,376,o), +(220,321,cs), +(218,27,l), +(215,12,o), +(224,0,o), +(239,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(256,89,o), +(301,153,o), +(346,300,c), +(290,310,l), +(255,260,o), +(218,230,o), +(173,214,cs), +(140,202,o), +(71,186,o), +(56,181,cs), +(39,175,o), +(31,166,o), +(29,156,cs), +(-2,7,ls), +(-5,-7,o), +(5,-10,o), +(19,-8,cs), +(67,1,o), +(112,18,o), +(174,49,cs) +); +} +); +width = 514; +}, +{ +anchors = ( +{ +name = bottom; +pos = (296,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (296,260); +}, +{ +name = top; +pos = (296,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +associatedMasterId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "7155DF64-9CB3-4DDE-B867-C8381E0B0973"; +name = "Bold Sep 16 15, 13:05"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,ls), +(536,0,o), +(547,9,o), +(545,22,cs), +(502,249,l), +(484,337,ls), +(453,489,o), +(409,571,o), +(291,571,cs), +(254,571,ls), +(241,571,o), +(232,562,o), +(232,549,cs), +(232,535,ls), +(232,522,o), +(241,513,o), +(254,513,cs), +(291,513,ls), +(374,513,o), +(399,449,o), +(423,332,cs), +(439,255,l), +(448,190,l), +(484,22,ls), +(487,9,o), +(493,0,o), +(506,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(218,0,ls), +(233,0,o), +(245,12,o), +(245,29,cs), +(245,38,ls), +(245,77,o), +(272,100,o), +(305,105,c), +(341,26,ls), +(348,12,o), +(353,0,o), +(368,0,cs), +(547,0,ls), +(562,0,o), +(579,12,o), +(574,27,c), +(474,252,l), +(474,337,ls), +(474,526,o), +(356,581,o), +(171,581,cs), +(85,581,ls), +(70,581,o), +(58,569,o), +(58,554,cs), +(58,433,ls), +(58,418,o), +(70,406,o), +(85,406,cs), +(166,406,ls), +(215,406,o), +(240,382,o), +(240,332,cs), +(240,281,l), +(112,263,o), +(12,157,o), +(12,34,cs), +(12,29,ls), +(12,14,o), +(24,0,o), +(39,0,cs) +); +} +); +width = 592; +}, +{ +anchors = ( +{ +name = bottom; +pos = (296,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (296,260); +}, +{ +name = top; +pos = (296,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +associatedMasterId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +color = 6; +layerId = "C72B544F-4D12-4025-BDF5-F71CE74F1B8D"; +name = "Bold Sep 16 15, 13:05"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,ls), +(536,0,o), +(547,9,o), +(545,22,cs), +(502,249,l), +(484,337,ls), +(453,489,o), +(409,571,o), +(291,571,cs), +(254,571,ls), +(241,571,o), +(232,562,o), +(232,549,cs), +(232,535,ls), +(232,522,o), +(241,513,o), +(254,513,cs), +(291,513,ls), +(374,513,o), +(399,449,o), +(423,332,cs), +(439,255,l), +(448,190,l), +(484,22,ls), +(487,9,o), +(493,0,o), +(506,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(218,0,ls), +(233,0,o), +(245,12,o), +(245,29,cs), +(245,38,ls), +(245,77,o), +(272,100,o), +(305,105,c), +(341,26,ls), +(348,12,o), +(353,0,o), +(368,0,cs), +(547,0,ls), +(562,0,o), +(579,12,o), +(574,27,c), +(474,252,l), +(474,337,ls), +(474,526,o), +(356,581,o), +(171,581,cs), +(85,581,ls), +(70,581,o), +(58,569,o), +(58,554,cs), +(58,433,ls), +(58,418,o), +(70,406,o), +(85,406,cs), +(166,406,ls), +(215,406,o), +(240,382,o), +(240,332,cs), +(240,281,l), +(112,263,o), +(12,157,o), +(12,34,cs), +(12,29,ls), +(12,14,o), +(24,0,o), +(39,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +-2147483648, +0 +); +stem = -2; +type = Tag; +}, +{ +horizontal = 1; +options = 0; +place = ( +-2147483648, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 592; +} +); +unicode = 1490; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 55; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "gimeldagesh-hb"; +kernLeft = gimelhebrew; +kernRight = gimelhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "gimel-hb"; +}, +{ +pos = (149,-29); +ref = "dagesh-hb"; +} +); +width = 430; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "gimel-hb"; +}, +{ +pos = (64,-26); +ref = "dagesh-hb"; +} +); +width = 514; +} +); +unicode = 64306; +}, +{ +color = 6; +glyphname = "dalet-hb"; +kernLeft = dalethebrew; +kernRight = dalethebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (316,0); +}, +{ +name = bottomleft; +pos = (-2,0); +}, +{ +name = center; +pos = (203,260); +}, +{ +name = top; +pos = (339,520); +}, +{ +name = topleft; +pos = (109,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(316,0,ls), +(329,0,o), +(340,9,o), +(343,22,c), +(422,395,ls), +(438,468,o), +(471,523,o), +(505,523,c), +(433,523,l), +(410,523,o), +(378,476,o), +(362,400,cs), +(282,22,ls), +(279,9,o), +(286,0,o), +(299,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(544,513,ls), +(557,513,o), +(568,522,o), +(571,535,cs), +(574,549,ls), +(577,562,o), +(570,571,o), +(557,571,cs), +(135,571,ls), +(122,571,o), +(111,562,o), +(108,549,cs), +(105,535,ls), +(102,522,o), +(109,513,o), +(122,513,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +813, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 556; +}, +{ +anchors = ( +{ +name = bottom; +pos = (236,0); +}, +{ +name = bottomleft; +pos = (-18,0); +}, +{ +name = center; +pos = (139,260); +}, +{ +name = top; +pos = (347,520); +}, +{ +name = topleft; +pos = (93,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,0,ls), +(383,0,o), +(404,9,o), +(407,22,c), +(460,272,ls), +(478,356,o), +(514,423,o), +(548,423,c), +(335,423,l), +(286,423,o), +(261,377,o), +(242,286,cs), +(186,22,ls), +(183,9,o), +(190,0,o), +(203,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(544,396,ls), +(561,396,o), +(574,410,o), +(577,423,cs), +(603,544,ls), +(606,559,o), +(597,571,o), +(582,571,cs), +(123,571,ls), +(108,571,o), +(93,559,o), +(90,544,cs), +(64,423,ls), +(61,408,o), +(70,396,o), +(85,396,cs) +); +} +); +width = 559; +} +); +unicode = 1491; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 30; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 496; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "daletdagesh-hb"; +kernLeft = dalethebrew; +kernRight = dalethebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "dalet-hb"; +}, +{ +pos = (189,-29); +ref = "dagesh-hb"; +} +); +width = 556; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "dalet-hb"; +}, +{ +pos = (69,-26); +ref = "dagesh-hb"; +} +); +width = 559; +} +); +unicode = 64307; +}, +{ +color = 6; +glyphname = "he-hb"; +kernLeft = hethebrew; +kernRight = vavhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (255,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (310,260); +}, +{ +name = top; +pos = (366,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(459,0,ls), +(472,0,o), +(483,9,o), +(486,22,cs), +(551,327,ls), +(584,482,o), +(526,571,o), +(356,571,cs), +(179,571,ls), +(166,571,o), +(155,562,o), +(152,549,c), +(149,535,ls), +(146,522,o), +(153,513,o), +(166,513,cs), +(338,513,ls), +(473,513,o), +(514,442,o), +(489,322,cs), +(425,22,ls), +(422,9,o), +(429,0,o), +(442,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(74,0,ls), +(87,0,o), +(98,9,o), +(101,22,cs), +(175,373,ls), +(178,386,o), +(171,395,o), +(158,395,cs), +(141,395,ls), +(128,395,o), +(117,386,o), +(114,373,cs), +(40,22,ls), +(37,9,o), +(44,0,o), +(57,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 608; +}, +{ +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (340,260); +}, +{ +name = top; +pos = (396,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(551,0,ls), +(566,0,o), +(581,12,o), +(584,27,cs), +(646,317,ls), +(685,501,o), +(593,571,o), +(408,571,cs), +(147,571,ls), +(132,571,o), +(117,559,o), +(114,544,cs), +(88,423,ls), +(85,408,o), +(94,396,o), +(109,396,cs), +(365,396,ls), +(414,396,o), +(434,371,o), +(423,321,cs), +(361,26,ls), +(358,11,o), +(367,0,o), +(382,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,0,ls), +(209,0,o), +(224,12,o), +(227,27,c), +(283,289,ls), +(286,304,o), +(276,316,o), +(261,316,cs), +(92,316,ls), +(77,316,o), +(63,304,o), +(60,289,cs), +(4,27,ls), +(1,12,o), +(10,0,o), +(25,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 668; +} +); +unicode = 1492; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "hedagesh-hb"; +kernLeft = hethebrew; +kernRight = vavhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "he-hb"; +}, +{ +pos = (296,-29); +ref = "dagesh-hb"; +} +); +width = 608; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "he-hb"; +}, +{ +pos = (270,-26); +ref = "dagesh-hb"; +} +); +width = 668; +} +); +unicode = 64308; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 640; +} +); +}; +}, +{ +color = 6; +glyphname = "vav-hb"; +kernLeft = vavhebrew; +kernRight = vavhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (65,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (19,260); +}, +{ +name = top; +pos = (177,520); +}, +{ +name = topleft; +pos = (228,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(74,0,ls), +(87,0,o), +(98,9,o), +(101,22,cs), +(213,549,l), +(216,562,o), +(209,571,o), +(196,571,cs), +(179,571,ls), +(166,571,o), +(155,562,o), +(152,549,cs), +(40,22,ls), +(37,9,o), +(44,0,o), +(57,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 229; +}, +{ +anchors = ( +{ +name = bottom; +pos = (113,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (-30,260); +}, +{ +name = top; +pos = (226,520); +}, +{ +name = topleft; +pos = (278,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,0,ls), +(219,0,o), +(234,12,o), +(237,27,c), +(347,544,ls), +(350,559,o), +(341,571,o), +(326,571,cs), +(147,571,ls), +(132,571,o), +(117,559,o), +(114,544,cs), +(4,27,ls), +(1,12,o), +(10,0,o), +(25,0,cs) +); +} +); +width = 327; +} +); +unicode = 1493; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +} +); +}; +}, +{ +color = 10; +glyphname = "vavdagesh-hb"; +kernLeft = vavhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "vav-hb"; +}, +{ +pos = (5,-29); +ref = "dagesh-hb"; +} +); +width = 229; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +alignment = -1; +pos = (83,0); +ref = "vav-hb"; +}, +{ +pos = (-17,-26); +ref = "dagesh-hb"; +} +); +userData = { +com.schriftgestaltung.componentsAlignment = ( +-1, +0 +); +}; +width = 410; +} +); +unicode = 64309; +}, +{ +color = 10; +glyphname = "vavholam-hb"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "vav-hb"; +}, +{ +pos = (138,105); +ref = "holam-hb"; +} +); +width = 229; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "vav-hb"; +}, +{ +pos = (185,105); +ref = "holam-hb"; +} +); +userData = { +com.schriftgestaltung.componentsAlignment = ( +0, +-1 +); +}; +width = 327; +} +); +unicode = 64331; +}, +{ +color = 6; +glyphname = "zayin-hb"; +kernLeft = zayinhebrew; +kernRight = zayinhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (128,0); +}, +{ +name = bottomleft; +pos = (18,0); +}, +{ +name = center; +pos = (79,260); +}, +{ +name = top; +pos = (256,520); +}, +{ +name = topleft; +pos = (129,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(136,0,ls), +(149,0,o), +(160,9,o), +(163,22,c), +(242,395,ls), +(258,468,o), +(291,523,o), +(325,523,c), +(253,523,l), +(230,523,o), +(198,476,o), +(182,400,cs), +(102,22,ls), +(99,9,o), +(106,0,o), +(119,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(364,513,ls), +(377,513,o), +(388,522,o), +(391,535,cs), +(394,549,ls), +(397,562,o), +(390,571,o), +(377,571,cs), +(155,571,ls), +(142,571,o), +(131,562,o), +(128,549,cs), +(125,535,ls), +(122,522,o), +(129,513,o), +(142,513,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +322, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 386; +}, +{ +anchors = ( +{ +name = bottom; +pos = (158,0); +}, +{ +name = bottomleft; +pos = (-16,0); +}, +{ +name = center; +pos = (36,260); +}, +{ +name = top; +pos = (325,520); +}, +{ +name = topleft; +pos = (95,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(242,0,ls), +(255,0,o), +(276,9,o), +(279,22,c), +(332,272,ls), +(350,356,o), +(386,423,o), +(420,423,c), +(207,423,l), +(158,423,o), +(133,377,o), +(114,286,cs), +(58,22,ls), +(55,9,o), +(62,0,o), +(75,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(416,396,ls), +(433,396,o), +(446,410,o), +(449,423,cs), +(475,544,ls), +(478,559,o), +(469,571,o), +(454,571,cs), +(125,571,ls), +(110,571,o), +(95,559,o), +(92,544,cs), +(66,423,ls), +(63,408,o), +(72,396,o), +(87,396,cs) +); +} +); +width = 433; +} +); +unicode = 1494; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 983; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 983; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +} +); +}; +}, +{ +color = 10; +glyphname = "zayindagesh-hb"; +kernLeft = zayinhebrew; +kernRight = zayinhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "zayin-hb"; +}, +{ +pos = (65,-29); +ref = "dagesh-hb"; +} +); +width = 386; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "zayin-hb"; +}, +{ +pos = (-34,-26); +ref = "dagesh-hb"; +} +); +width = 433; +} +); +unicode = 64310; +}, +{ +color = 6; +glyphname = "het-hb"; +kernLeft = hethebrew; +kernRight = vavhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (256,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (311,260); +}, +{ +name = top; +pos = (367,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(74,0,ls), +(87,0,o), +(98,9,o), +(101,22,cs), +(205,513,l), +(339,513,ls), +(474,513,o), +(515,442,o), +(490,322,cs), +(426,22,ls), +(423,9,o), +(430,0,o), +(443,0,cs), +(460,0,ls), +(473,0,o), +(484,9,o), +(487,22,cs), +(552,327,ls), +(585,482,o), +(527,571,o), +(357,571,cs), +(179,571,ls), +(166,571,o), +(155,562,o), +(152,549,c), +(40,22,ls), +(37,9,o), +(44,0,o), +(57,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 609; +}, +{ +anchors = ( +{ +name = bottom; +pos = (288,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (343,260); +}, +{ +name = top; +pos = (399,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,0,ls), +(209,0,o), +(224,12,o), +(227,27,cs), +(305,396,l), +(370,396,ls), +(419,396,o), +(439,371,o), +(428,321,cs), +(366,26,ls), +(363,11,o), +(372,0,o), +(387,0,cs), +(556,0,ls), +(571,0,o), +(586,12,o), +(589,27,cs), +(651,317,ls), +(692,513,o), +(603,571,o), +(413,571,cs), +(147,571,ls), +(132,571,o), +(117,559,o), +(114,544,cs), +(4,27,ls), +(1,12,o), +(10,0,o), +(25,0,cs) +); +} +); +width = 673; +} +); +unicode = 1495; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 517; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "tet-hb"; +kernLeft = tethebrew; +kernRight = tethebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (328,260); +}, +{ +name = top; +pos = (384,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(445,-10,o), +(525,69,o), +(562,224,c), +(567,244,o), +(585,327,o), +(588,347,cs), +(618,507,o), +(559,576,o), +(438,576,c), +(389,576,o), +(357,565,o), +(324,546,cs), +(312,539,o), +(311,530,o), +(308,518,cs), +(306,505,ls), +(303,492,o), +(317,485,o), +(330,492,cs), +(357,508,o), +(396,518,o), +(420,518,cs), +(503,518,o), +(549,467,o), +(526,342,cs), +(522,322,o), +(507,249,o), +(502,229,cs), +(473,109,o), +(407,48,o), +(282,48,cs), +(157,48,o), +(117,119,o), +(142,239,cs), +(208,549,ls), +(211,562,o), +(204,571,o), +(191,571,cs), +(174,571,ls), +(161,571,o), +(150,562,o), +(147,549,cs), +(80,234,ls), +(47,79,o), +(95,-10,o), +(270,-10,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 624; +}, +{ +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (334,260); +}, +{ +name = top; +pos = (395,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(485,-10,o), +(595,90,o), +(635,241,cs), +(641,261,o), +(652,317,o), +(656,337,cs), +(689,491,o), +(660,574,o), +(496,574,cs), +(442,574,o), +(417,568,o), +(402,561,cs), +(382,551,o), +(373,535,o), +(370,520,cs), +(346,407,ls), +(341,387,o), +(355,377,o), +(374,383,cs), +(382,386,o), +(400,390,o), +(415,390,cs), +(442,390,o), +(443,351,o), +(432,302,cs), +(428,281,o), +(425,268,o), +(420,246,cs), +(410,196,o), +(373,175,o), +(325,175,cs), +(276,175,o), +(235,191,o), +(246,246,cs), +(310,544,ls), +(313,559,o), +(304,571,o), +(289,571,cs), +(141,571,ls), +(126,571,o), +(111,559,o), +(108,544,cs), +(43,241,ls), +(11,87,o), +(90,-10,o), +(287,-10,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +}; +width = 662; +} +); +unicode = 1496; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 581; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 196; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 65; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "tetdagesh-hb"; +kernLeft = tethebrew; +kernRight = tethebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "tet-hb"; +}, +{ +pos = (314,-29); +ref = "dagesh-hb"; +} +); +width = 624; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "tet-hb"; +}, +{ +pos = (264,-26); +ref = "dagesh-hb"; +} +); +width = 662; +} +); +unicode = 64312; +}, +{ +color = 6; +glyphname = "yod-hb"; +kernLeft = yodhebrew; +kernRight = yodhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (58,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (23,260); +}, +{ +name = top; +pos = (169,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(115,230,ls), +(128,230,o), +(139,239,o), +(142,252,cs), +(205,549,l), +(208,562,o), +(201,571,o), +(188,571,cs), +(171,571,ls), +(158,571,o), +(147,562,o), +(144,549,cs), +(81,252,ls), +(78,239,o), +(85,230,o), +(98,230,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 213; +}, +{ +anchors = ( +{ +name = bottom; +pos = (104,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (-13,260); +}, +{ +name = top; +pos = (224,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(253,240,ls), +(268,240,o), +(283,252,o), +(286,267,c), +(345,544,ls), +(348,559,o), +(339,571,o), +(324,571,cs), +(145,571,ls), +(130,571,o), +(115,559,o), +(112,544,cs), +(53,267,ls), +(50,252,o), +(59,240,o), +(74,240,cs) +); +} +); +width = 323; +} +); +unicode = 1497; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 240; +} +); +}; +}, +{ +color = 10; +glyphname = "yoddagesh-hb"; +kernLeft = yodhebrew; +kernRight = yodhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "yod-hb"; +}, +{ +pos = (9,-29); +ref = "dagesh-hb"; +} +); +width = 213; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +alignment = -1; +pos = (63,0); +ref = "yod-hb"; +}, +{ +alignment = -1; +pos = (-39,-26); +ref = "dagesh-hb"; +} +); +userData = { +com.schriftgestaltung.componentsAlignment = ( +-1, +-1 +); +}; +width = 435; +} +); +unicode = 64313; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 240; +} +); +}; +}, +{ +color = 6; +glyphname = "finalkaf-hb"; +kernLeft = dalethebrew; +kernRight = dalethebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (245,243); +}, +{ +name = bottomleft; +pos = (32,0); +}, +{ +name = center; +pos = (267,260); +}, +{ +name = top; +pos = (373,520); +}, +{ +name = topleft; +pos = (143,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(361,-102,l), +(358,-115,o), +(365,-124,o), +(378,-124,cs), +(395,-124,ls), +(408,-124,o), +(419,-115,o), +(422,-102,c), +(513,327,l), +(547,488,o), +(487,571,o), +(317,571,cs), +(170,571,ls), +(157,571,o), +(146,562,o), +(143,549,cs), +(140,535,ls), +(137,522,o), +(144,513,o), +(157,513,cs), +(299,513,ls), +(434,513,o), +(476,442,o), +(451,322,c) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +849, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 570; +}, +{ +anchors = ( +{ +name = bottom; +pos = (131,231); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (165,250); +}, +{ +name = top; +pos = (332,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(210,-98,ls), +(207,-113,o), +(217,-124,o), +(232,-124,cs), +(401,-124,ls), +(416,-124,o), +(431,-112,o), +(434,-97,cs), +(524,327,ls), +(564,516,o), +(470,571,o), +(285,571,cs), +(112,571,l), +(97,571,o), +(82,559,o), +(79,544,cs), +(53,423,ls), +(50,408,o), +(59,396,o), +(74,396,cs), +(241,396,ls), +(290,396,o), +(310,371,o), +(299,321,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 544; +} +); +unicode = 1498; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 61; +} +); +}; +}, +{ +color = 10; +glyphname = "finalkafdagesh-hb"; +kernLeft = dalethebrew; +kernRight = dalethebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "finalkaf-hb"; +}, +{ +pos = (253,-29); +ref = "dagesh-hb"; +} +); +userData = { +com.schriftgestaltung.componentsAlignment = ( +0, +-1 +); +}; +width = 570; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "finalkaf-hb"; +}, +{ +pos = (95,-36); +ref = "dagesh-hb"; +} +); +userData = { +com.schriftgestaltung.componentsAlignment = ( +0, +-1 +); +}; +width = 544; +} +); +unicode = 64314; +}, +{ +color = 6; +glyphname = "kaf-hb"; +kernLeft = kafhebrew; +kernRight = kafhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (214,0); +}, +{ +name = bottomleft; +pos = (10,0); +}, +{ +name = center; +pos = (263,260); +}, +{ +name = top; +pos = (319,520); +}, +{ +name = topleft; +pos = (121,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(206,0,ls), +(376,0,o), +(467,89,o), +(505,244,cs), +(512,274,o), +(517,297,o), +(523,327,cs), +(551,482,o), +(498,571,o), +(328,571,cs), +(181,571,ls), +(168,571,o), +(157,562,o), +(154,549,cs), +(151,535,ls), +(148,522,o), +(155,513,o), +(168,513,cs), +(310,513,ls), +(445,513,o), +(482,442,o), +(461,322,cs), +(455,292,o), +(453,279,o), +(445,249,c), +(415,129,o), +(349,58,o), +(214,58,cs), +(72,58,ls), +(59,58,o), +(48,49,o), +(45,36,cs), +(42,22,ls), +(39,9,o), +(46,0,o), +(59,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 563; +}, +{ +anchors = ( +{ +name = bottom; +pos = (200,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (179,260); +}, +{ +name = top; +pos = (331,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(167,0,ls), +(372,0,o), +(474,109,o), +(515,263,cs), +(520,283,o), +(521,288,o), +(525,308,cs), +(549,462,o), +(494,571,o), +(289,571,cs), +(137,571,ls), +(122,571,o), +(107,559,o), +(104,544,cs), +(76,413,ls), +(73,398,o), +(82,386,o), +(97,386,cs), +(244,386,ls), +(293,386,o), +(320,361,o), +(312,311,cs), +(309,291,o), +(307,280,o), +(301,260,cs), +(288,210,o), +(251,185,o), +(202,185,cs), +(55,185,ls), +(40,185,o), +(25,173,o), +(22,158,cs), +(-6,27,ls), +(-9,12,o), +(0,0,o), +(15,0,cs) +); +} +); +width = 537; +} +); +unicode = 1499; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 40; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "kafdagesh-hb"; +kernLeft = kafhebrew; +kernRight = kafhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "kaf-hb"; +}, +{ +pos = (249,-29); +ref = "dagesh-hb"; +} +); +width = 563; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "kaf-hb"; +}, +{ +pos = (109,-26); +ref = "dagesh-hb"; +} +); +width = 537; +} +); +unicode = 64315; +}, +{ +color = 6; +glyphname = "lamed-hb"; +kernLeft = lamedhebrew; +kernRight = lamedhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (208,0); +}, +{ +name = bottomleft; +pos = (24,0); +}, +{ +name = center; +pos = (230,260); +}, +{ +name = top; +pos = (286,520); +}, +{ +name = topleft; +pos = (93,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(197,7,ls), +(315,46,o), +(436,119,o), +(475,307,c), +(517,503,o), +(468,571,o), +(285,571,c), +(246,571,l), +(233,571,o), +(222,562,o), +(219,549,cs), +(216,535,l), +(213,522,o), +(220,513,o), +(233,513,c), +(267,513,l), +(409,513,o), +(447,462,o), +(416,314,c), +(384,162,o), +(304,108,o), +(207,73,cs), +(162,57,ls), +(146,51,o), +(138,42,o), +(136,32,cs), +(131,7,ls), +(128,-7,o), +(139,-12,o), +(152,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,571,l), +(204,571,l), +(228,688,l), +(231,701,o), +(224,710,o), +(211,710,cs), +(194,710,ls), +(181,710,o), +(170,701,o), +(167,688,cs), +(135,535,ls), +(132,522,o), +(139,514,o), +(152,514,c), +(250,513,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +}; +width = 519; +}, +{ +anchors = ( +{ +name = bottom; +pos = (190,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (158,260); +}, +{ +name = top; +pos = (341,520); +}, +{ +name = topleft; +pos = (26,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-5,ls), +(336,32,o), +(500,149,o), +(538,326,cs), +(568,471,o), +(524,571,o), +(348,571,cs), +(281,571,l), +(268,571,o), +(251,559,o), +(248,546,c), +(220,413,l), +(217,398,o), +(227,386,o), +(241,386,c), +(258,386,l), +(308,386,o), +(315,365,o), +(304,315,cs), +(290,249,o), +(250,218,o), +(210,203,cs), +(181,192,ls), +(166,186,o), +(150,171,o), +(146,156,cs), +(117,17,ls), +(114,2,o), +(123,-18,o), +(138,-15,cs) +); +}, +{ +closed = 1; +nodes = ( +(327,571,l), +(296,571,l), +(319,683,ls), +(323,698,o), +(313,710,o), +(298,710,cs), +(145,710,ls), +(130,710,o), +(116,698,o), +(112,683,cs), +(55,413,ls), +(52,398,o), +(61,386,o), +(76,386,cs), +(287,386,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +}; +width = 546; +} +); +unicode = 1500; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 464; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "lameddagesh-hb"; +kernLeft = lamedhebrew; +kernRight = lamedhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "lamed-hb"; +}, +{ +pos = (216,-29); +ref = "dagesh-hb"; +} +); +width = 519; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "lamed-hb"; +}, +{ +pos = (88,-26); +ref = "dagesh-hb"; +} +); +width = 546; +} +); +unicode = 64316; +}, +{ +color = 6; +glyphname = "finalmem-hb"; +kernLeft = hethebrew; +kernRight = vavhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (255,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (310,260); +}, +{ +name = top; +pos = (366,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(459,0,ls), +(472,0,o), +(483,9,o), +(486,22,cs), +(551,327,ls), +(584,482,o), +(526,571,o), +(356,571,cs), +(179,571,ls), +(166,571,o), +(155,562,o), +(152,549,c), +(40,22,ls), +(37,9,o), +(44,0,o), +(57,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,513,l), +(338,513,ls), +(473,513,o), +(514,442,o), +(489,322,cs), +(433,58,l), +(108,58,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 608; +}, +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (331,260); +}, +{ +name = top; +pos = (387,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,0,ls), +(546,0,o), +(561,14,o), +(564,28,cs), +(628,326,ls), +(668,515,o), +(579,571,o), +(399,571,cs), +(147,571,ls), +(132,571,o), +(117,559,o), +(114,544,cs), +(4,27,ls), +(1,12,o), +(10,0,o), +(25,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,396,l), +(356,396,ls), +(405,396,o), +(425,371,o), +(414,321,cs), +(383,175,l), +(232,175,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 648; +} +); +unicode = 1501; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 853; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 58; +} +); +}; +}, +{ +color = 6; +glyphname = "mem-hb"; +kernLeft = hethebrew; +kernRight = memhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (261,0); +}, +{ +name = bottomleft; +pos = (-42,0); +}, +{ +name = center; +pos = (300,260); +}, +{ +name = top; +pos = (356,520); +}, +{ +name = topleft; +pos = (69,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(457,513,o), +(506,435,o), +(482,322,cs), +(426,58,l), +(212,58,ls), +(199,58,o), +(188,49,o), +(185,36,cs), +(182,22,ls), +(179,9,o), +(186,0,o), +(199,0,cs), +(452,0,ls), +(465,0,o), +(476,9,o), +(479,22,cs), +(544,327,ls), +(575,475,o), +(509,571,o), +(389,571,c), +(161,571,ls), +(148,571,o), +(137,562,o), +(134,549,cs), +(131,535,ls), +(128,522,o), +(135,513,o), +(148,513,cs), +(371,513,l) +); +}, +{ +closed = 1; +nodes = ( +(47,0,ls), +(59,0,o), +(72,10,o), +(77,23,cs), +(258,523,l), +(264,535,o), +(258,546,o), +(245,547,cs), +(229,550,ls), +(218,552,o), +(205,545,o), +(200,532,cs), +(16,23,ls), +(11,10,o), +(17,0,o), +(29,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +315, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 601; +}, +{ +anchors = ( +{ +name = bottom; +pos = (311,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (386,230); +}, +{ +name = top; +pos = (422,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(464,387,o), +(485,367,o), +(475,317,cs), +(444,175,l), +(358,175,ls), +(343,175,o), +(329,163,o), +(326,148,cs), +(300,27,ls), +(297,12,o), +(306,0,o), +(321,0,cs), +(603,0,ls), +(618,0,o), +(633,12,o), +(636,27,cs), +(700,327,ls), +(738,506,o), +(645,571,o), +(505,571,c), +(137,571,ls), +(122,571,o), +(107,559,o), +(104,544,cs), +(76,413,ls), +(73,398,o), +(82,386,o), +(97,386,cs), +(429,387,l) +); +}, +{ +closed = 1; +nodes = ( +(171,0,ls), +(186,0,o), +(201,12,o), +(204,27,c), +(390,429,ls), +(397,443,o), +(385,461,o), +(370,461,cs), +(229,461,ls), +(214,461,o), +(203,448,o), +(196,434,cs), +(-13,27,ls), +(-20,12,o), +(-7,0,o), +(8,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 720; +} +); +unicode = 1502; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 576; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "memdagesh-hb"; +kernLeft = hethebrew; +kernRight = memhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "mem-hb"; +}, +{ +pos = (286,-29); +ref = "dagesh-hb"; +} +); +width = 601; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "mem-hb"; +}, +{ +pos = (316,-56); +ref = "dagesh-hb"; +} +); +width = 720; +} +); +unicode = 64318; +}, +{ +color = 6; +glyphname = "finalnun-hb"; +kernLeft = vavhebrew; +kernRight = vavhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (66,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (121,260); +}, +{ +name = top; +pos = (177,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(48,-124,ls), +(61,-124,o), +(72,-115,o), +(75,-102,c), +(213,549,ls), +(216,562,o), +(209,571,o), +(196,571,cs), +(179,571,ls), +(166,571,o), +(155,562,o), +(152,549,cs), +(14,-102,ls), +(11,-115,o), +(18,-124,o), +(31,-124,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 229; +}, +{ +anchors = ( +{ +name = bottom; +pos = (110,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (165,260); +}, +{ +name = top; +pos = (221,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(168,-124,ls), +(183,-124,o), +(197,-112,o), +(201,-97,c), +(337,544,ls), +(340,559,o), +(331,571,o), +(316,571,cs), +(147,571,ls), +(132,571,o), +(117,559,o), +(114,544,cs), +(-22,-97,ls), +(-26,-112,o), +(-16,-124,o), +(-1,-124,cs) +); +} +); +width = 317; +} +); +unicode = 1503; +}, +{ +color = 6; +glyphname = "nun-hb"; +kernLeft = hethebrew; +kernRight = nunhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (148,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (186,260); +}, +{ +name = top; +pos = (259,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,ls), +(277,0,o), +(287,4,o), +(290,17,cs), +(299,58,l), +(34,58,ls), +(21,58,o), +(10,49,o), +(7,36,cs), +(4,22,ls), +(1,9,o), +(8,0,o), +(21,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(269,0,ls), +(282,0,o), +(295,9,o), +(296,22,c), +(342,337,ls), +(361,470,o), +(374,571,o), +(233,571,cs), +(196,571,ls), +(183,571,o), +(172,562,o), +(169,549,cs), +(166,535,ls), +(163,522,o), +(170,513,o), +(183,513,cs), +(220,513,ls), +(313,513,o), +(296,440,o), +(280,332,cs), +(235,22,l), +(235,9,o), +(239,0,o), +(252,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +859, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 393; +}, +{ +anchors = ( +{ +name = bottom; +pos = (186,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (115,260); +}, +{ +name = top; +pos = (290,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,0,ls), +(353,0,o), +(368,12,o), +(371,27,cs), +(402,175,l), +(47,175,ls), +(32,175,o), +(18,163,o), +(15,148,cs), +(-11,27,ls), +(-14,12,o), +(-5,0,o), +(10,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(368,0,ls), +(383,0,o), +(398,12,o), +(401,27,cs), +(455,327,ls), +(489,517,o), +(402,581,o), +(207,581,cs), +(144,581,ls), +(129,581,o), +(114,569,o), +(111,554,cs), +(86,435,ls), +(82,420,o), +(92,408,o), +(107,408,cs), +(165,408,ls), +(214,408,o), +(233,388,o), +(223,333,cs), +(168,27,l), +(165,12,o), +(174,0,o), +(189,0,cs) +); +} +); +width = 469; +} +); +unicode = 1504; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 361; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 45; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "nundagesh-hb"; +kernLeft = hethebrew; +kernRight = nunhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "nun-hb"; +}, +{ +pos = (172,-29); +ref = "dagesh-hb"; +} +); +width = 393; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "nun-hb"; +}, +{ +pos = (45,-26); +ref = "dagesh-hb"; +} +); +width = 469; +} +); +unicode = 64320; +}, +{ +color = 6; +glyphname = "samekh-hb"; +kernLeft = tethebrew; +kernRight = tethebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (267,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (321,260); +}, +{ +name = top; +pos = (378,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(444,-10,o), +(534,69,o), +(571,224,c), +(576,244,o), +(592,317,o), +(595,337,cs), +(622,492,o), +(578,571,o), +(408,571,c), +(173,571,ls), +(160,571,o), +(149,562,o), +(146,549,cs), +(80,239,ls), +(46,79,o), +(104,-10,o), +(264,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,48,o), +(116,119,o), +(141,239,cs), +(199,513,l), +(390,513,ls), +(495,513,o), +(555,452,o), +(533,332,c), +(530,312,o), +(516,249,o), +(511,229,c), +(482,109,o), +(416,48,o), +(276,48,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 633; +}, +{ +anchors = ( +{ +name = bottom; +pos = (261,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (330,260); +}, +{ +name = top; +pos = (372,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(589,90,o), +(629,241,cs), +(635,261,o), +(644,306,o), +(648,326,cs), +(671,472,o), +(622,571,o), +(407,571,c), +(141,571,ls), +(126,571,o), +(111,559,o), +(108,544,cs), +(44,242,ls), +(11,88,o), +(82,-10,o), +(279,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(268,175,o), +(235,191,o), +(246,246,cs), +(278,396,l), +(364,396,ls), +(433,396,o), +(442,371,o), +(434,321,cs), +(431,301,o), +(424,266,o), +(418,246,cs), +(404,191,o), +(385,175,o), +(317,175,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +}; +width = 656; +} +); +unicode = 1505; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 65; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 509; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "samekhdagesh-hb"; +kernLeft = tethebrew; +kernRight = tethebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "samekh-hb"; +}, +{ +pos = (307,-29); +ref = "dagesh-hb"; +} +); +width = 633; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "samekh-hb"; +}, +{ +pos = (260,-26); +ref = "dagesh-hb"; +} +); +width = 656; +} +); +unicode = 64321; +}, +{ +color = 6; +glyphname = "ayin-hb"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (255,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (360,260); +}, +{ +name = top; +pos = (416,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(236,19,ls), +(364,62,o), +(465,168,o), +(489,279,cs), +(546,549,ls), +(549,562,o), +(542,571,o), +(529,571,cs), +(512,571,ls), +(499,571,o), +(488,562,o), +(485,549,cs), +(432,299,ls), +(411,202,o), +(362,119,o), +(237,77,cs), +(13,1,ls), +(1,-3,o), +(-4,-15,o), +(-7,-27,cs), +(-9,-40,ls), +(-12,-53,o), +(1,-60,o), +(16,-55,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,47,l), +(191,556,ls), +(191,564,o), +(185,571,o), +(172,571,cs), +(154,571,ls), +(143,571,o), +(132,562,o), +(129,551,cs), +(128,546,o), +(129,541,o), +(130,531,cs), +(163,24,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +856, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 556; +}, +{ +anchors = ( +{ +name = bottom; +pos = (279,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (344,260); +}, +{ +name = top; +pos = (400,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,-13,ls), +(481,10,o), +(605,91,o), +(635,235,cs), +(701,544,ls), +(704,559,o), +(695,571,o), +(680,571,cs), +(511,571,ls), +(496,571,o), +(481,560,o), +(478,545,cs), +(426,300,ls), +(408,215,o), +(381,183,o), +(269,163,cs), +(33,121,ls), +(18,118,o), +(3,109,o), +(0,94,cs), +(-26,-30,ls), +(-29,-45,o), +(-20,-59,o), +(-5,-57,cs) +); +}, +{ +closed = 1; +nodes = ( +(342,47,l), +(337,556,ls), +(337,564,o), +(331,571,o), +(318,571,cs), +(131,571,ls), +(120,571,o), +(109,562,o), +(106,551,cs), +(105,546,o), +(106,541,o), +(107,531,cs), +(140,24,l) +); +} +); +width = 675; +} +); +unicode = 1506; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 40; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "finalpe-hb"; +kernLeft = hethebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (236,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (337,250); +}, +{ +name = top; +pos = (347,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(300,513,l), +(435,513,o), +(476,442,o), +(451,322,cs), +(361,-102,ls), +(358,-115,o), +(365,-124,o), +(378,-124,cs), +(395,-124,ls), +(408,-124,o), +(419,-115,o), +(422,-102,cs), +(513,327,ls), +(546,482,o), +(488,571,o), +(318,571,c), +(174,571,l), +(161,571,o), +(150,562,o), +(147,549,cs), +(114,393,l), +(92,292,o), +(111,240,o), +(172,225,cs), +(208,216,ls), +(221,213,o), +(240,218,o), +(242,231,cs), +(245,245,ls), +(249,262,o), +(245,274,o), +(235,277,cs), +(196,287,ls), +(163,296,o), +(161,335,o), +(174,393,c), +(199,513,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +499, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 570; +}, +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (293,242); +}, +{ +name = top; +pos = (346,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(291,388,ls), +(339,389,o), +(360,361,o), +(352,311,c), +(266,-97,l), +(262,-112,o), +(272,-124,o), +(287,-124,cs), +(447,-124,ls), +(462,-124,o), +(476,-112,o), +(480,-97,c), +(565,308,l), +(589,462,o), +(534,571,o), +(352,571,cs), +(129,571,ls), +(114,571,o), +(99,560,o), +(96,544,cs), +(65,398,l), +(40,280,o), +(89,207,o), +(156,200,cs), +(213,194,ls), +(229,192,o), +(253,204,o), +(256,222,cs), +(272,302,ls), +(275,314,o), +(272,327,o), +(262,332,cs), +(243,341,ls), +(232,346,o), +(234,364,o), +(237,380,c), +(238,387,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 590; +} +); +unicode = 1507; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 1818; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "finalpedagesh-hb"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (217,0); +}, +{ +name = bottomleft; +pos = (-48,0); +}, +{ +name = center; +pos = (318,250); +}, +{ +name = top; +pos = (328,520); +}, +{ +name = topleft; +pos = (63,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(328,246,ls), +(341,246,o), +(352,255,o), +(354,268,cs), +(359,291,ls), +(362,304,o), +(355,313,o), +(342,313,cs), +(319,313,ls), +(306,313,o), +(295,304,o), +(292,291,cs), +(287,268,ls), +(285,255,o), +(292,246,o), +(305,246,cs) +); +}, +{ +closed = 1; +nodes = ( +(281,513,l), +(416,513,o), +(457,442,o), +(432,322,cs), +(342,-102,ls), +(339,-115,o), +(346,-124,o), +(359,-124,cs), +(376,-124,ls), +(389,-124,o), +(400,-115,o), +(403,-102,cs), +(494,327,ls), +(527,482,o), +(469,571,o), +(299,571,c), +(155,571,l), +(142,571,o), +(131,562,o), +(128,549,cs), +(95,393,l), +(73,292,o), +(92,240,o), +(153,225,cs), +(189,216,ls), +(202,213,o), +(221,218,o), +(223,231,cs), +(226,245,ls), +(230,262,o), +(226,274,o), +(216,277,cs), +(177,287,ls), +(144,296,o), +(142,335,o), +(155,393,c), +(180,513,l) +); +} +); +userData = { +com.schriftgestaltung.componentsAlignment = ( +-1, +0 +); +}; +width = 569; +}, +{ +anchors = ( +{ +name = bottom; +pos = (232,0); +}, +{ +name = bottomleft; +pos = (-32,0); +}, +{ +name = center; +pos = (290,242); +}, +{ +name = top; +pos = (343,520); +}, +{ +name = topleft; +pos = (79,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(298,205,ls), +(311,205,o), +(322,214,o), +(324,227,c), +(338,290,ls), +(341,303,o), +(334,312,o), +(321,312,cs), +(308,312,ls), +(295,312,o), +(284,303,o), +(281,290,cs), +(267,227,l), +(265,214,o), +(272,205,o), +(285,205,cs) +); +}, +{ +closed = 1; +nodes = ( +(288,388,ls), +(336,389,o), +(357,361,o), +(349,311,c), +(263,-97,l), +(259,-112,o), +(269,-124,o), +(284,-124,cs), +(444,-124,ls), +(459,-124,o), +(473,-112,o), +(477,-97,c), +(562,308,l), +(586,462,o), +(531,571,o), +(349,571,cs), +(126,571,ls), +(111,571,o), +(96,560,o), +(93,544,cs), +(62,398,l), +(37,280,o), +(86,207,o), +(153,200,cs), +(210,194,ls), +(226,192,o), +(250,204,o), +(253,222,cs), +(269,302,ls), +(272,314,o), +(269,327,o), +(259,332,cs), +(240,341,ls), +(229,346,o), +(231,364,o), +(234,380,c), +(235,387,l) +); +} +); +userData = { +com.schriftgestaltung.componentsAlignment = ( +-1, +0 +); +}; +width = 590; +}, +{ +anchors = ( +{ +name = bottom; +pos = (228,0); +}, +{ +name = bottomleft; +pos = (-36,0); +}, +{ +name = center; +pos = (303,245); +}, +{ +name = top; +pos = (339,520); +}, +{ +name = topleft; +pos = (75,520); +} +); +associatedMasterId = UUID0; +attr = { +coordinates = ( +160 +); +}; +background = { +anchors = ( +{ +name = bottom; +pos = (217,0); +}, +{ +name = bottomleft; +pos = (-48,0); +}, +{ +name = center; +pos = (318,250); +}, +{ +name = top; +pos = (328,520); +}, +{ +name = topleft; +pos = (63,520); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(281,513,l), +(416,513,o), +(457,442,o), +(432,322,cs), +(342,-102,ls), +(339,-115,o), +(346,-124,o), +(359,-124,cs), +(376,-124,ls), +(389,-124,o), +(400,-115,o), +(403,-102,cs), +(494,327,ls), +(527,482,o), +(469,571,o), +(299,571,c), +(155,571,l), +(142,571,o), +(131,562,o), +(128,549,cs), +(95,393,l), +(73,292,o), +(92,240,o), +(153,225,cs), +(189,216,ls), +(202,213,o), +(221,218,o), +(223,231,cs), +(226,245,ls), +(230,262,o), +(226,274,o), +(216,277,cs), +(177,287,ls), +(144,296,o), +(142,335,o), +(155,393,c), +(180,513,l) +); +}, +{ +closed = 1; +nodes = ( +(328,246,ls), +(341,246,o), +(352,255,o), +(354,268,cs), +(359,291,ls), +(362,304,o), +(355,313,o), +(342,313,cs), +(319,313,ls), +(306,313,o), +(295,304,o), +(292,291,cs), +(287,268,ls), +(285,255,o), +(292,246,o), +(305,246,cs) +); +} +); +}; +color = 6; +layerId = "CFAC7831-6167-4C24-84F2-561BA14D9A14"; +name = "{160}"; +shapes = ( +{ +closed = 1; +nodes = ( +(328,230,ls), +(341,230,o), +(352,239,o), +(354,252,cs), +(365,300,ls), +(367,313,o), +(360,322,o), +(347,322,cs), +(299,322,ls), +(286,322,o), +(275,313,o), +(273,300,cs), +(262,252,ls), +(260,239,o), +(267,230,o), +(280,230,cs) +); +}, +{ +closed = 1; +nodes = ( +(287,435,l), +(368,436,o), +(397,391,o), +(382,315,cs), +(295,-99,ls), +(291,-113,o), +(300,-124,o), +(314,-124,cs), +(421,-124,ls), +(435,-124,o), +(448,-113,o), +(451,-99,cs), +(539,315,ls), +(566,470,o), +(510,571,o), +(332,571,c), +(139,571,l), +(125,571,o), +(111,561,o), +(108,546,cs), +(76,396,l), +(53,285,o), +(90,219,o), +(155,209,cs), +(204,202,ls), +(219,200,o), +(241,209,o), +(244,225,cs), +(255,281,ls), +(258,295,o), +(255,307,o), +(245,311,cs), +(218,321,ls), +(199,327,o), +(200,353,o), +(206,385,c), +(216,434,l) +); +} +); +userData = { +com.schriftgestaltung.componentsAlignment = ( +-1, +0 +); +}; +visible = 1; +width = 582; +} +); +unicode = 64323; +}, +{ +color = 6; +glyphname = "pe-hb"; +kernLeft = tethebrew; +kernRight = pehebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (227,0); +}, +{ +name = bottomleft; +pos = (-30,0); +}, +{ +name = center; +pos = (341,242); +}, +{ +name = top; +pos = (338,520); +}, +{ +name = topleft; +pos = (81,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(342,513,l), +(445,513,o), +(483,442,o), +(461,322,cs), +(457,302,o), +(450,269,o), +(445,249,cs), +(415,129,o), +(349,58,o), +(246,58,c), +(85,58,l), +(72,58,o), +(61,49,o), +(58,36,c), +(55,22,l), +(52,9,o), +(59,0,o), +(72,0,c), +(238,0,l), +(376,0,o), +(468,89,o), +(505,244,cs), +(510,264,o), +(519,307,o), +(523,327,cs), +(552,482,o), +(498,571,o), +(360,571,c), +(181,571,l), +(168,571,o), +(157,562,o), +(154,549,cs), +(126,418,l), +(105,317,o), +(124,265,o), +(184,250,cs), +(220,241,ls), +(234,238,o), +(252,243,o), +(255,256,cs), +(258,270,ls), +(261,287,o), +(258,299,o), +(247,302,cs), +(209,312,ls), +(175,321,o), +(174,360,o), +(186,418,c), +(206,513,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 563; +}, +{ +anchors = ( +{ +name = bottom; +pos = (231,0); +}, +{ +name = bottomleft; +pos = (-19,0); +}, +{ +name = center; +pos = (317,250); +}, +{ +name = top; +pos = (342,520); +}, +{ +name = topleft; +pos = (92,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(304,386,ls), +(353,386,o), +(395,361,o), +(387,311,cs), +(384,291,o), +(382,280,o), +(376,260,cs), +(363,210,o), +(311,185,o), +(262,185,cs), +(65,185,ls), +(50,185,o), +(35,173,o), +(32,158,cs), +(4,27,ls), +(1,12,o), +(10,0,o), +(25,0,cs), +(227,0,ls), +(432,0,o), +(534,109,o), +(575,263,cs), +(580,283,o), +(581,288,o), +(585,308,cs), +(609,462,o), +(554,571,o), +(349,571,cs), +(136,571,ls), +(121,571,o), +(109,559,o), +(103,544,cs), +(72,398,l), +(51,300,o), +(100,227,o), +(167,220,cs), +(209,215,ls), +(239,212,o), +(265,228,o), +(270,253,cs), +(284,322,ls), +(286,334,o), +(283,347,o), +(273,352,cs), +(254,361,ls), +(248,364,o), +(244,371,o), +(244,380,c), +(245,386,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +}; +width = 597; +} +); +unicode = 1508; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "pedagesh-hb"; +kernLeft = tethebrew; +kernRight = pehebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (227,0); +}, +{ +name = bottomleft; +pos = (-30,0); +}, +{ +name = center; +pos = (341,242); +}, +{ +name = top; +pos = (338,520); +}, +{ +name = topleft; +pos = (81,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(351,238,ls), +(364,238,o), +(375,247,o), +(377,260,cs), +(382,283,ls), +(385,296,o), +(378,305,o), +(365,305,cs), +(342,305,ls), +(329,305,o), +(318,296,o), +(315,283,cs), +(310,260,ls), +(308,247,o), +(315,238,o), +(328,238,cs) +); +}, +{ +closed = 1; +nodes = ( +(342,513,l), +(445,513,o), +(483,442,o), +(461,322,cs), +(457,302,o), +(450,269,o), +(445,249,cs), +(415,129,o), +(349,58,o), +(246,58,c), +(85,58,l), +(72,58,o), +(61,49,o), +(58,36,c), +(55,22,l), +(52,9,o), +(59,0,o), +(72,0,c), +(238,0,l), +(376,0,o), +(468,89,o), +(505,244,cs), +(510,264,o), +(519,307,o), +(523,327,cs), +(552,482,o), +(498,571,o), +(360,571,c), +(181,571,l), +(168,571,o), +(157,562,o), +(154,549,cs), +(126,418,l), +(105,317,o), +(124,265,o), +(184,250,cs), +(220,241,ls), +(234,238,o), +(252,243,o), +(255,256,cs), +(258,270,ls), +(261,287,o), +(258,299,o), +(247,302,cs), +(209,312,ls), +(175,321,o), +(174,360,o), +(186,418,c), +(206,513,l) +); +} +); +width = 563; +}, +{ +anchors = ( +{ +name = bottom; +pos = (231,0); +}, +{ +name = bottomleft; +pos = (-19,0); +}, +{ +name = center; +pos = (317,250); +}, +{ +name = top; +pos = (342,520); +}, +{ +name = topleft; +pos = (92,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,226,ls), +(331,226,o), +(342,235,o), +(345,248,cs), +(358,311,ls), +(361,324,o), +(354,333,o), +(341,333,cs), +(328,333,ls), +(315,333,o), +(304,324,o), +(301,311,cs), +(288,248,ls), +(285,235,o), +(292,226,o), +(305,226,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,386,ls), +(353,386,o), +(395,361,o), +(387,311,cs), +(384,291,o), +(382,280,o), +(376,260,cs), +(363,210,o), +(311,185,o), +(262,185,cs), +(65,185,ls), +(50,185,o), +(35,173,o), +(32,158,cs), +(4,27,ls), +(1,12,o), +(10,0,o), +(25,0,cs), +(227,0,ls), +(432,0,o), +(534,109,o), +(575,263,cs), +(580,283,o), +(581,288,o), +(585,308,cs), +(609,462,o), +(554,571,o), +(349,571,cs), +(136,571,ls), +(121,571,o), +(109,559,o), +(103,544,cs), +(72,398,l), +(51,300,o), +(100,227,o), +(167,220,cs), +(209,215,ls), +(239,212,o), +(265,228,o), +(270,253,cs), +(284,322,ls), +(286,334,o), +(283,347,o), +(273,352,cs), +(254,361,ls), +(248,364,o), +(244,371,o), +(244,380,c), +(245,386,l) +); +} +); +width = 597; +}, +{ +anchors = ( +{ +name = bottom; +pos = (230,0); +}, +{ +name = bottomleft; +pos = (-23,0); +}, +{ +name = center; +pos = (326,247); +}, +{ +name = top; +pos = (341,520); +}, +{ +name = topleft; +pos = (88,520); +} +); +associatedMasterId = UUID0; +attr = { +coordinates = ( +160 +); +}; +color = 6; +layerId = "E09DD2BD-C8A4-4869-BEED-A081A4F96247"; +name = "{160}"; +shapes = ( +{ +closed = 1; +nodes = ( +(347,233,ls), +(360,233,o), +(371,242,o), +(373,255,cs), +(384,303,ls), +(386,316,o), +(379,325,o), +(366,325,cs), +(318,325,ls), +(305,325,o), +(294,316,o), +(292,303,cs), +(281,255,ls), +(279,242,o), +(286,233,o), +(299,233,cs) +); +}, +{ +closed = 1; +nodes = ( +(318,434,l), +(388,434,o), +(428,391,o), +(415,315,cs), +(411,295,o), +(408,276,o), +(402,256,cs), +(383,180,o), +(325,137,o), +(256,137,c), +(73,137,l), +(58,137,o), +(45,127,o), +(42,112,c), +(23,25,l), +(20,11,o), +(28,0,o), +(43,0,c), +(231,0,l), +(411,0,o), +(509,102,o), +(549,256,cs), +(554,276,o), +(558,295,o), +(562,315,cs), +(588,470,o), +(533,571,o), +(353,571,c), +(153,571,l), +(139,571,o), +(127,560,o), +(122,546,cs), +(92,406,l), +(71,306,o), +(109,241,o), +(173,231,cs), +(213,225,ls), +(237,222,o), +(260,234,o), +(264,254,cs), +(274,303,ls), +(277,316,o), +(274,329,o), +(263,333,cs), +(237,343,ls), +(221,348,o), +(218,367,o), +(222,394,c), +(230,434,l) +); +} +); +width = 584; +} +); +unicode = 64324; +}, +{ +color = 6; +glyphname = "finaltsadi-hb"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (190,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (245,260); +}, +{ +name = top; +pos = (301,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(262,-124,ls), +(273,-124,o), +(284,-115,o), +(286,-104,cs), +(287,-99,o), +(286,-94,o), +(284,-84,cs), +(230,206,l), +(365,224,o), +(452,309,o), +(481,447,cs), +(503,549,ls), +(506,562,o), +(499,571,o), +(486,571,cs), +(469,571,ls), +(456,571,o), +(445,562,o), +(442,549,cs), +(421,452,ls), +(398,341,o), +(335,272,o), +(219,262,c), +(166,547,ls), +(163,564,o), +(158,571,o), +(145,571,cs), +(127,571,ls), +(116,571,o), +(105,562,o), +(102,551,cs), +(101,546,o), +(102,541,o), +(104,531,cs), +(221,-109,l), +(223,-117,o), +(228,-124,o), +(241,-124,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 477; +}, +{ +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (301,260); +}, +{ +name = top; +pos = (357,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,-124,ls), +(397,-124,o), +(409,-115,o), +(411,-103,cs), +(412,-100,o), +(412,-97,o), +(411,-91,cs), +(370,151,l), +(469,199,o), +(577,282,o), +(607,422,cs), +(632,542,ls), +(636,557,o), +(627,571,o), +(612,571,cs), +(463,571,ls), +(448,571,o), +(433,559,o), +(429,542,cs), +(406,431,ls), +(395,381,o), +(365,354,o), +(340,337,c), +(305,547,l), +(303,559,o), +(297,571,o), +(277,571,cs), +(105,571,ls), +(93,571,o), +(79,561,o), +(77,550,cs), +(76,547,o), +(76,545,o), +(77,539,cs), +(186,-100,ls), +(188,-112,o), +(196,-124,o), +(216,-124,cs) +); +} +); +width = 590; +} +); +unicode = 1509; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-124"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 28; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 431; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "tsadi-hb"; +kernLeft = tsadihebrew; +kernRight = tsadihebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (207,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (137,204); +}, +{ +name = top; +pos = (318,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(373,0,ls), +(386,0,o), +(397,9,o), +(400,22,cs), +(403,36,ls), +(405,47,o), +(403,56,o), +(398,66,c), +(166,555,l), +(163,563,o), +(157,571,o), +(145,571,c), +(127,571,ls), +(116,571,o), +(104,562,o), +(101,551,cs), +(100,546,o), +(101,540,o), +(105,531,cs), +(326,58,l), +(41,58,ls), +(28,58,o), +(17,49,o), +(14,36,cs), +(11,22,ls), +(8,9,o), +(15,0,o), +(28,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(404,256,o), +(470,332,o), +(494,447,cs), +(516,549,ls), +(519,562,o), +(512,571,o), +(499,571,cs), +(482,571,ls), +(469,571,o), +(458,562,o), +(455,549,cs), +(434,452,ls), +(414,358,o), +(366,293,o), +(282,271,c), +(301,224,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 511; +}, +{ +anchors = ( +{ +name = bottom; +pos = (256,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (124,235); +}, +{ +name = top; +pos = (367,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(475,0,ls), +(490,0,o), +(505,12,o), +(508,27,cs), +(532,141,ls), +(536,159,o), +(529,168,o), +(525,176,cs), +(321,552,ls), +(318,557,o), +(312,571,o), +(289,571,cs), +(112,571,ls), +(100,571,o), +(88,563,o), +(85,551,cs), +(84,545,o), +(86,540,o), +(87,537,cs), +(286,180,l), +(77,180,ls), +(62,180,o), +(48,168,o), +(45,153,cs), +(18,27,ls), +(15,12,o), +(24,0,o), +(39,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(561,299,o), +(621,381,o), +(639,463,cs), +(655,542,ls), +(659,557,o), +(650,571,o), +(635,571,cs), +(486,571,ls), +(471,571,o), +(456,559,o), +(452,542,cs), +(445,506,ls), +(436,463,o), +(421,422,o), +(386,390,c), +(466,243,l) +); +} +); +width = 629; +} +); +unicode = 1510; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 27; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "tsadidagesh-hb"; +kernLeft = tsadihebrew; +kernRight = tsadihebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "tsadi-hb"; +}, +{ +pos = (123,-85); +ref = "dagesh-hb"; +} +); +width = 511; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "tsadi-hb"; +}, +{ +pos = (54,-51); +ref = "dagesh-hb"; +} +); +width = 629; +} +); +unicode = 64326; +}, +{ +color = 6; +glyphname = "qof-hb"; +kernLeft = lamedhebrew; +kernRight = vavhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (306,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (281,260); +}, +{ +name = top; +pos = (337,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(34,-191,ls), +(47,-191,o), +(58,-182,o), +(60,-169,c), +(175,373,ls), +(178,386,o), +(171,395,o), +(158,395,cs), +(141,395,ls), +(128,395,o), +(117,386,o), +(114,373,cs), +(-1,-169,ls), +(-3,-182,o), +(4,-191,o), +(17,-191,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,7,ls), +(392,46,o), +(513,119,o), +(552,307,c), +(594,503,o), +(545,571,o), +(362,571,c), +(179,571,l), +(166,571,o), +(155,562,o), +(152,549,cs), +(149,535,l), +(146,522,o), +(153,513,o), +(166,513,c), +(344,513,l), +(486,513,o), +(524,462,o), +(493,314,c), +(461,162,o), +(381,108,o), +(284,73,cs), +(239,57,ls), +(223,51,o), +(215,42,o), +(213,32,cs), +(208,7,ls), +(205,-7,o), +(216,-12,o), +(229,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +813, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 610; +}, +{ +anchors = ( +{ +name = bottom; +pos = (418,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (354,260); +}, +{ +name = top; +pos = (410,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(148,-191,ls), +(163,-191,o), +(177,-179,o), +(180,-164,c), +(277,289,ls), +(280,304,o), +(270,316,o), +(255,316,cs), +(92,316,ls), +(77,316,o), +(63,304,o), +(60,289,cs), +(-37,-164,ls), +(-40,-179,o), +(-30,-191,o), +(-15,-191,cs) +); +}, +{ +closed = 1; +nodes = ( +(340,-5,ls), +(496,32,o), +(660,149,o), +(698,326,cs), +(728,471,o), +(684,571,o), +(508,571,cs), +(147,571,l), +(134,571,o), +(117,559,o), +(114,546,c), +(86,413,l), +(83,398,o), +(93,386,o), +(107,386,c), +(418,386,l), +(468,386,o), +(475,365,o), +(464,315,cs), +(450,249,o), +(410,218,o), +(370,203,cs), +(341,192,ls), +(326,186,o), +(310,171,o), +(306,156,cs), +(277,17,ls), +(274,2,o), +(283,-18,o), +(298,-15,cs) +); +} +); +width = 696; +} +); +unicode = 1511; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-191"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 516; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "qofdagesh-hb"; +kernLeft = lamedhebrew; +kernRight = vavhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "qof-hb"; +}, +{ +pos = (267,-29); +ref = "dagesh-hb"; +} +); +width = 610; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "qof-hb"; +}, +{ +pos = (284,-26); +ref = "dagesh-hb"; +} +); +width = 696; +} +); +unicode = 64327; +}, +{ +color = 6; +glyphname = "resh-hb"; +kernLeft = hethebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (375,0); +}, +{ +name = bottomleft; +pos = (17,0); +}, +{ +name = center; +pos = (254,260); +}, +{ +name = top; +pos = (353,520); +}, +{ +name = topleft; +pos = (128,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(385,0,ls), +(398,0,o), +(409,9,o), +(412,22,cs), +(477,327,ls), +(510,482,o), +(452,571,o), +(282,571,cs), +(155,571,ls), +(142,571,o), +(131,562,o), +(128,549,cs), +(125,535,ls), +(122,522,o), +(129,513,o), +(142,513,cs), +(264,513,ls), +(399,513,o), +(440,442,o), +(415,322,cs), +(351,22,ls), +(348,9,o), +(355,0,o), +(368,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 534; +}, +{ +anchors = ( +{ +name = bottom; +pos = (354,0); +}, +{ +name = bottomleft; +pos = (-11,0); +}, +{ +name = center; +pos = (187,260); +}, +{ +name = top; +pos = (352,520); +}, +{ +name = topleft; +pos = (100,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(445,0,ls), +(460,0,o), +(475,12,o), +(478,27,cs), +(542,327,ls), +(582,516,o), +(488,571,o), +(303,571,cs), +(130,571,l), +(115,571,o), +(100,559,o), +(97,544,cs), +(71,423,ls), +(68,408,o), +(77,396,o), +(92,396,cs), +(259,396,ls), +(308,396,o), +(328,371,o), +(317,321,cs), +(255,26,ls), +(252,11,o), +(261,0,o), +(276,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 562; +} +); +unicode = 1512; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 40; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 436; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "reshdagesh-hb"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "resh-hb"; +}, +{ +pos = (240,-29); +ref = "dagesh-hb"; +} +); +width = 534; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "resh-hb"; +}, +{ +pos = (117,-26); +ref = "dagesh-hb"; +} +); +width = 562; +} +); +unicode = 64328; +}, +{ +color = 6; +glyphname = "shin-hb"; +kernLeft = lamedhebrew; +kernRight = shinhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = bottomleft; +pos = (-25,0); +}, +{ +name = center; +pos = (470,260); +}, +{ +name = top; +pos = (421,520); +}, +{ +name = topleft; +pos = (86,520); +}, +{ +name = topright; +pos = (745,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(291,54,ls), +(187,54,o), +(125,118,o), +(150,234,c), +(213,549,l), +(216,562,o), +(209,571,o), +(196,571,cs), +(179,571,ls), +(166,571,o), +(155,562,o), +(152,549,cs), +(86,237,ls), +(54,87,o), +(133,-5,o), +(250,-5,cs), +(317,-5,l), +(477,-10,o), +(606,98,o), +(641,265,cs), +(701,549,l), +(704,562,o), +(697,571,o), +(684,571,cs), +(667,571,ls), +(654,571,o), +(643,562,o), +(640,549,c), +(581,272,ls), +(553,141,o), +(463,51,o), +(326,54,c) +); +}, +{ +closed = 1; +nodes = ( +(304,190,o), +(407,292,o), +(432,408,cs), +(462,549,ls), +(465,562,o), +(458,571,o), +(445,571,cs), +(428,571,ls), +(415,571,o), +(404,562,o), +(401,549,cs), +(372,413,ls), +(354,329,o), +(298,252,o), +(128,249,c), +(119,192,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = "het-hb"; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +250, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 711; +}, +{ +anchors = ( +{ +name = bottom; +pos = (352,0); +}, +{ +name = bottomleft; +pos = (-22,0); +}, +{ +name = center; +pos = (516,260); +}, +{ +name = top; +pos = (506,520); +}, +{ +name = topleft; +pos = (45,520); +}, +{ +name = topright; +pos = (800,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(367,164,l), +(293,164,o), +(250,226,o), +(273,335,c), +(318,545,ls), +(321,560,o), +(312,571,o), +(297,571,cs), +(148,571,ls), +(133,571,o), +(118,559,o), +(115,544,cs), +(45,217,ls), +(21,103,o), +(93,-10,o), +(283,-10,cs), +(393,-10,ls), +(565,-10,o), +(739,107,o), +(778,293,cs), +(832,544,ls), +(835,559,o), +(826,571,o), +(811,571,cs), +(662,571,ls), +(647,571,o), +(632,560,o), +(629,545,cs), +(577,298,ls), +(561,223,o), +(472,164,o), +(385,164,c) +); +}, +{ +closed = 1; +nodes = ( +(393,190,o), +(519,279,o), +(559,471,cs), +(574,542,ls), +(578,557,o), +(569,571,o), +(554,571,cs), +(406,571,ls), +(391,571,o), +(376,559,o), +(372,542,cs), +(357,471,ls), +(337,375,o), +(307,333,o), +(260,333,c), +(229,190,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = "het-hb"; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 806; +} +); +unicode = 1513; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 952; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +} +); +}; +}, +{ +color = 10; +glyphname = "shinshindot-hb"; +kernLeft = lamedhebrew; +kernRight = shinhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (683,105); +ref = "shindot-hb"; +} +); +width = 711; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (740,105); +ref = "shindot-hb"; +} +); +width = 806; +} +); +unicode = 64298; +}, +{ +color = 10; +glyphname = "shinsindot-hb"; +kernLeft = lamedhebrew; +kernRight = shinhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (117,105); +ref = "sindot-hb"; +} +); +width = 711; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (76,105); +ref = "sindot-hb"; +} +); +width = 806; +} +); +unicode = 64299; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 65; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "shindageshshindot-hb"; +kernLeft = lamedhebrew; +kernRight = shinhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (456,-29); +ref = "dagesh-hb"; +}, +{ +pos = (683,105); +ref = "shindot-hb"; +} +); +width = 711; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (446,-26); +ref = "dagesh-hb"; +}, +{ +pos = (740,105); +ref = "shindot-hb"; +} +); +width = 806; +} +); +unicode = 64300; +}, +{ +color = 10; +glyphname = "shindageshsindot-hb"; +kernLeft = lamedhebrew; +kernRight = shinhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (456,-29); +ref = "dagesh-hb"; +}, +{ +pos = (117,105); +ref = "sindot-hb"; +} +); +width = 711; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (446,-26); +ref = "dagesh-hb"; +}, +{ +pos = (76,105); +ref = "sindot-hb"; +} +); +width = 806; +} +); +unicode = 64301; +}, +{ +color = 10; +glyphname = "shindagesh-hb"; +kernLeft = lamedhebrew; +kernRight = shinhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (456,-29); +ref = "dagesh-hb"; +} +); +width = 711; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (446,-26); +ref = "dagesh-hb"; +} +); +width = 806; +} +); +unicode = 64329; +}, +{ +color = 6; +glyphname = "tav-hb"; +kernLeft = hethebrew; +kernRight = tavhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (363,260); +}, +{ +name = top; +pos = (421,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(369,513,l), +(504,513,o), +(546,442,o), +(520,322,cs), +(456,22,ls), +(453,9,o), +(460,0,o), +(473,0,cs), +(490,0,ls), +(503,0,o), +(514,9,o), +(517,22,cs), +(582,327,ls), +(615,482,o), +(557,571,o), +(387,571,cs), +(195,571,ls), +(182,571,o), +(171,562,o), +(168,549,cs), +(165,535,ls), +(162,522,o), +(169,513,o), +(182,513,c) +); +}, +{ +closed = 1; +nodes = ( +(253,553,o), +(247,545,o), +(241,532,cs), +(199,436,o), +(185,382,o), +(167,292,c), +(118,59,l), +(43,60,ls), +(30,60,o), +(19,51,o), +(16,38,cs), +(13,24,ls), +(10,11,o), +(18,2,o), +(31,2,cs), +(144,0,ls), +(157,0,o), +(168,9,o), +(171,22,cs), +(229,297,l), +(247,385,o), +(266,438,o), +(300,531,c), +(303,544,o), +(296,553,o), +(283,553,cs), +(266,553,ls) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +813, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 639; +}, +{ +anchors = ( +{ +name = bottom; +pos = (367,0); +}, +{ +name = bottomleft; +pos = (-29,0); +}, +{ +name = center; +pos = (419,260); +}, +{ +name = top; +pos = (438,520); +}, +{ +name = topleft; +pos = (82,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(448,396,ls), +(497,396,o), +(517,371,o), +(506,321,cs), +(444,26,ls), +(441,11,o), +(450,0,o), +(465,0,cs), +(634,0,ls), +(649,0,o), +(664,12,o), +(667,27,cs), +(731,326,ls), +(769,505,o), +(677,571,o), +(492,571,cs), +(169,571,ls), +(154,571,o), +(139,559,o), +(136,544,cs), +(110,423,ls), +(107,408,o), +(116,396,o), +(131,396,cs) +); +}, +{ +closed = 1; +nodes = ( +(254,482,o), +(232,462,o), +(219,441,cs), +(186,388,o), +(168,333,o), +(158,284,c), +(132,165,l), +(48,165,ls), +(33,165,o), +(19,153,o), +(16,138,cs), +(-8,27,ls), +(-11,12,o), +(-2,0,o), +(13,0,cs), +(275,0,ls), +(290,0,o), +(305,12,o), +(308,27,c), +(351,284,l), +(365,350,o), +(380,394,o), +(413,441,cs), +(426,459,o), +(416,482,o), +(365,482,c), +(304,482,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 751; +} +); +unicode = 1514; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 576; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "tavdagesh-hb"; +kernLeft = hethebrew; +kernRight = tavhebrew; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = "tav-hb"; +}, +{ +pos = (349,-29); +ref = "dagesh-hb"; +} +); +userData = { +com.schriftgestaltung.componentsAlignment = ( +0, +-1 +); +}; +width = 639; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "tav-hb"; +}, +{ +pos = (349,-26); +ref = "dagesh-hb"; +} +); +width = 751; +} +); +unicode = 64330; +}, +{ +color = 10; +glyphname = "yodyod-hb"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (213,0); +ref = "yod-hb"; +}, +{ +ref = "yod-hb"; +} +); +width = 426; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (323,0); +ref = "yod-hb"; +}, +{ +ref = "yod-hb"; +} +); +width = 646; +} +); +unicode = 1522; +}, +{ +color = 6; +glyphname = zero; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(399,-10,o), +(494,77,o), +(539,266,cs), +(554,326,o), +(564,374,o), +(575,434,cs), +(609,620,o), +(539,710,o), +(388,710,cs), +(235,710,o), +(141,620,o), +(97,434,cs), +(82,374,o), +(72,326,o), +(61,266,cs), +(26,77,o), +(97,-10,o), +(248,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(129,50,o), +(97,115,o), +(125,271,cs), +(136,331,o), +(144,369,o), +(159,429,cs), +(197,585,o), +(272,650,o), +(388,650,cs), +(506,650,o), +(539,585,o), +(511,429,cs), +(500,369,o), +(492,331,o), +(477,271,cs), +(439,115,o), +(362,50,o), +(248,50,cs) +); +} +); +width = 614; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(525,-9,o), +(620,99,o), +(662,246,cs), +(677,300,o), +(699,401,o), +(707,458,cs), +(728,604,o), +(607,709,o), +(426,710,c), +(225,709,o), +(120,604,o), +(79,458,cs), +(63,401,o), +(41,300,o), +(34,246,cs), +(14,99,o), +(123,-9,o), +(313,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(297,186,o), +(289,214,o), +(295,251,cs), +(304,308,o), +(323,397,o), +(338,452,cs), +(347,486,o), +(365,516,o), +(405,517,c), +(445,516,o), +(451,486,o), +(446,452,cs), +(437,397,o), +(418,308,o), +(403,251,cs), +(393,214,o), +(373,186,o), +(335,186,cs) +); +} +); +width = 717; +} +); +unicode = 48; +}, +{ +color = 6; +glyphname = one; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(228,0,ls), +(241,0,o), +(251,9,o), +(254,22,cs), +(394,678,l), +(396,691,o), +(389,700,o), +(376,700,cs), +(355,700,ls), +(343,700,o), +(340,699,o), +(330,693,cs), +(82,529,ls), +(69,521,o), +(65,508,o), +(71,498,cs), +(81,480,ls), +(87,469,o), +(99,468,o), +(112,476,cs), +(316,610,l), +(191,22,ls), +(188,9,o), +(196,0,o), +(209,0,cs) +); +} +); +width = 394; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(409,0,ls), +(424,0,o), +(438,12,o), +(441,27,cs), +(579,673,ls), +(582,688,o), +(572,700,o), +(557,700,cs), +(368,700,ls), +(359,700,o), +(353,698,o), +(345,693,cs), +(64,506,l), +(49,498,o), +(43,480,o), +(47,467,c), +(116,344,ls), +(123,331,o), +(137,326,o), +(152,336,cs), +(275,417,l), +(191,27,ls), +(188,12,o), +(198,0,o), +(213,0,cs) +); +} +); +width = 554; +} +); +unicode = 49; +}, +{ +color = 6; +glyphname = two; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (333, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(435,0,ls), +(449,0,o), +(460,9,o), +(463,22,cs), +(466,37,ls), +(469,51,o), +(462,60,o), +(448,60,cs), +(113,60,l), +(398,298,ls), +(485,366,o), +(534,425,o), +(551,507,cs), +(573,612,o), +(535,710,o), +(383,710,cs), +(231,710,o), +(142,593,o), +(120,502,cs), +(118,491,o), +(124,483,o), +(137,483,c), +(157,483,ls), +(165,483,o), +(179,490,o), +(185,506,cs), +(214,592,o), +(279,650,o), +(370,650,cs), +(465,650,o), +(507,596,o), +(488,507,cs), +(475,445,o), +(449,407,o), +(359,338,cs), +(45,79,ls), +(22,62,o), +(14,50,o), +(11,37,cs), +(8,22,ls), +(5,9,o), +(12,0,o), +(25,0,cs) +); +} +); +width = 560; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(589,0,ls), +(604,0,o), +(619,12,o), +(622,27,cs), +(654,179,ls), +(657,194,o), +(648,206,o), +(633,206,cs), +(422,206,l), +(430,211,l), +(578,300,o), +(682,379,o), +(705,490,cs), +(736,632,o), +(636,714,o), +(454,714,cs), +(282,714,o), +(132,616,o), +(97,465,cs), +(94,453,o), +(102,443,o), +(114,443,cs), +(302,443,ls), +(320,443,o), +(336,447,o), +(347,466,cs), +(357,482,o), +(372,517,o), +(413,517,cs), +(448,517,o), +(445,496,o), +(441,477,cs), +(428,418,o), +(304,344,o), +(63,193,c), +(51,185,l), +(22,167,o), +(16,139,o), +(14,131,cs), +(-8,27,ls), +(-11,12,o), +(-2,0,o), +(13,0,cs) +); +} +); +width = 704; +} +); +unicode = 50; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 535; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 510; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = three; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (450, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(372,-10,o), +(490,66,o), +(518,198,cs), +(547,332,o), +(468,396,o), +(331,396,cs), +(311,396,l), +(575,643,ls), +(580,648,o), +(585,654,o), +(587,662,cs), +(590,677,ls), +(593,691,o), +(586,700,o), +(572,700,cs), +(199,700,ls), +(186,700,o), +(175,691,o), +(172,677,cs), +(169,662,ls), +(166,649,o), +(173,640,o), +(186,640,cs), +(488,640,l), +(231,397,l), +(224,390,o), +(219,383,o), +(216,373,cs), +(213,358,ls), +(211,345,o), +(218,336,o), +(231,336,cs), +(319,336,ls), +(422,336,o), +(476,297,o), +(455,198,cs), +(434,99,o), +(351,50,o), +(248,50,cs), +(177,50,o), +(96,70,o), +(94,157,cs), +(93,177,o), +(82,180,o), +(71,180,cs), +(57,180,ls), +(45,180,o), +(35,173,o), +(32,161,cs), +(17,74,o), +(85,-10,o), +(235,-10,cs) +); +} +); +width = 576; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(486,-10,o), +(643,80,o), +(673,219,cs), +(700,345,o), +(631,401,o), +(537,425,c), +(537,428,l), +(671,506,ls), +(682,513,o), +(695,527,o), +(699,546,cs), +(726,673,ls), +(729,688,o), +(720,700,o), +(705,700,cs), +(193,700,ls), +(178,700,o), +(163,688,o), +(160,673,cs), +(130,532,ls), +(127,517,o), +(137,505,o), +(152,505,cs), +(415,505,l), +(259,429,ls), +(248,423,o), +(235,409,o), +(231,389,cs), +(214,308,ls), +(210,293,o), +(220,281,o), +(235,281,cs), +(360,281,ls), +(404,281,o), +(423,267,o), +(417,237,cs), +(410,208,o), +(386,184,o), +(339,184,cs), +(297,184,o), +(283,193,o), +(275,204,cs), +(267,213,o), +(262,220,o), +(244,220,cs), +(43,220,ls), +(31,220,o), +(19,210,o), +(16,198,cs), +(3,119,o), +(56,-10,o), +(297,-10,cs) +); +} +); +width = 709; +} +); +unicode = 51; +}, +{ +color = 6; +glyphname = four; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(363,0,ls), +(376,0,o), +(386,9,o), +(389,22,cs), +(423,180,l), +(514,180,ls), +(527,180,o), +(538,189,o), +(540,202,c), +(544,218,ls), +(547,231,o), +(540,240,o), +(527,240,cs), +(436,240,l), +(529,678,l), +(531,691,o), +(524,700,o), +(511,700,cs), +(470,700,ls), +(454,700,o), +(439,693,o), +(430,683,cs), +(29,244,ls), +(19,234,o), +(19,229,o), +(16,218,cs), +(12,202,l), +(10,189,o), +(17,180,o), +(30,180,cs), +(360,180,l), +(326,22,ls), +(323,9,o), +(331,0,o), +(344,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(452,616,l), +(373,240,l), +(109,240,l) +); +} +); +width = 593; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,ls), +(538,0,o), +(552,12,o), +(555,27,cs), +(573,112,l), +(661,112,ls), +(676,112,o), +(691,124,o), +(694,139,cs), +(726,288,ls), +(729,302,o), +(720,315,o), +(703,315,cs), +(616,315,l), +(693,673,ls), +(696,688,o), +(686,700,o), +(671,700,cs), +(443,700,ls), +(427,700,o), +(413,693,o), +(403,683,cs), +(41,313,ls), +(36,308,o), +(27,299,o), +(23,282,cs), +(-7,139,ls), +(-10,124,o), +(-1,112,o), +(14,112,cs), +(333,112,l), +(315,27,ls), +(312,12,o), +(322,0,o), +(337,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(412,448,l), +(381,304,l), +(276,304,l) +); +} +); +width = 754; +} +); +unicode = 52; +}, +{ +color = 6; +glyphname = five; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(362,-10,o), +(472,68,o), +(504,224,cs), +(534,370,o), +(438,448,o), +(305,448,cs), +(230,448,o), +(190,423,o), +(174,414,c), +(244,640,l), +(531,640,ls), +(544,640,o), +(554,649,o), +(557,662,cs), +(561,678,l), +(563,691,o), +(556,700,o), +(543,700,cs), +(217,700,ls), +(204,700,o), +(194,691,o), +(190,677,cs), +(91,350,ls), +(87,338,o), +(96,328,o), +(108,328,cs), +(126,328,ls), +(168,328,o), +(205,388,o), +(305,388,cs), +(411,388,o), +(462,331,o), +(439,224,cs), +(415,111,o), +(322,50,o), +(220,50,cs), +(148,50,o), +(78,84,o), +(86,171,cs), +(88,191,o), +(77,194,o), +(66,194,cs), +(47,194,ls), +(35,194,o), +(24,187,o), +(23,175,c), +(12,78,o), +(74,-10,o), +(220,-10,cs) +); +} +); +width = 571; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(517,-12,o), +(619,93,o), +(647,226,cs), +(675,359,o), +(576,468,o), +(453,468,cs), +(387,468,o), +(354,459,o), +(312,434,c), +(335,505,l), +(627,505,ls), +(642,505,o), +(656,517,o), +(660,532,cs), +(690,673,ls), +(693,688,o), +(683,700,o), +(668,700,cs), +(221,700,ls), +(202,700,o), +(183,689,o), +(175,666,cs), +(59,309,ls), +(55,296,o), +(60,282,o), +(75,282,cs), +(274,282,ls), +(291,282,o), +(302,306,o), +(344,306,cs), +(383,306,o), +(398,276,o), +(392,245,cs), +(383,204,o), +(349,183,o), +(317,183,cs), +(284,183,o), +(276,195,o), +(263,218,cs), +(260,223,o), +(251,234,o), +(230,234,cs), +(28,234,ls), +(16,234,o), +(4,224,o), +(2,212,cs), +(-21,92,o), +(93,-12,o), +(295,-12,cs) +); +} +); +width = 690; +} +); +unicode = 53; +}, +{ +color = 6; +glyphname = six; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (76, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(407,-10,o), +(515,105,o), +(540,226,cs), +(566,347,o), +(507,461,o), +(347,461,cs), +(325,461,o), +(298,458,o), +(277,453,c), +(473,665,ls), +(475,668,o), +(479,672,o), +(480,678,cs), +(483,690,o), +(477,700,o), +(465,700,cs), +(446,700,ls), +(428,700,o), +(418,687,o), +(411,680,c), +(155,403,ls), +(125,370,o), +(71,304,o), +(54,226,cs), +(29,105,o), +(87,-10,o), +(247,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(166,50,o), +(93,111,o), +(117,226,cs), +(141,340,o), +(240,401,o), +(334,401,cs), +(428,401,o), +(501,340,o), +(477,226,cs), +(453,111,o), +(354,50,o), +(260,50,cs) +); +} +); +width = 582; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,-10,o), +(644,103,o), +(676,254,cs), +(709,410,o), +(571,489,o), +(476,498,cs), +(474,498,o), +(471,498,o), +(469,498,c), +(631,665,ls), +(633,668,o), +(636,672,o), +(637,678,cs), +(640,690,o), +(632,700,o), +(620,700,cs), +(419,700,ls), +(397,700,o), +(382,687,o), +(376,680,cs), +(167,467,ls), +(133,432,o), +(42,335,o), +(24,249,cs), +(-11,84,o), +(111,-10,o), +(299,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,185,o), +(273,208,o), +(282,250,cs), +(291,292,o), +(326,315,o), +(365,315,cs), +(404,315,o), +(429,292,o), +(420,250,cs), +(411,208,o), +(376,185,o), +(338,185,cs) +); +} +); +width = 692; +} +); +unicode = 54; +}, +{ +color = 6; +glyphname = seven; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (450, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(125,0,ls), +(140,0,o), +(149,14,o), +(157,25,cs), +(537,625,ls), +(545,638,o), +(549,646,o), +(552,662,cs), +(555,677,ls), +(558,691,o), +(551,700,o), +(537,700,cs), +(151,700,l), +(138,700,o), +(127,691,o), +(124,677,cs), +(121,662,ls), +(118,649,o), +(125,640,o), +(138,640,cs), +(479,640,l), +(93,31,ls), +(91,28,o), +(89,24,o), +(89,22,cs), +(86,10,o), +(92,0,o), +(104,0,cs) +); +} +); +width = 487; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,ls), +(303,0,o), +(319,16,o), +(324,23,cs), +(641,490,ls), +(650,503,o), +(660,518,o), +(665,541,cs), +(693,673,ls), +(696,688,o), +(688,700,o), +(672,700,cs), +(155,700,ls), +(140,700,o), +(125,688,o), +(122,673,cs), +(90,522,ls), +(87,507,o), +(96,495,o), +(111,495,cs), +(386,495,l), +(72,31,ls), +(70,29,o), +(69,26,o), +(68,22,cs), +(65,10,o), +(73,0,o), +(85,0,cs) +); +} +); +width = 625; +} +); +unicode = 55; +}, +{ +color = 6; +glyphname = eight; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(398,-10,o), +(507,63,o), +(535,197,cs), +(550,268,o), +(520,342,o), +(459,374,c), +(524,408,o), +(566,455,o), +(579,526,cs), +(600,643,o), +(508,710,o), +(389,710,cs), +(270,710,o), +(155,647,o), +(131,526,cs), +(117,455,o), +(148,403,o), +(191,374,c), +(115,344,o), +(53,282,o), +(37,197,cs), +(13,71,o), +(103,-10,o), +(248,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(145,50,o), +(82,105,o), +(100,197,cs), +(118,288,o), +(221,343,o), +(323,343,cs), +(426,343,o), +(489,288,o), +(469,197,cs), +(450,111,o), +(353,50,o), +(248,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,403,o), +(176,448,o), +(194,526,cs), +(212,604,o), +(295,650,o), +(389,650,cs), +(483,650,o), +(534,604,o), +(516,526,cs), +(498,450,o), +(410,405,o), +(323,403,c) +); +} +); +width = 615; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(532,-10,o), +(632,94,o), +(656,207,cs), +(671,274,o), +(650,333,o), +(602,370,c), +(650,401,o), +(676,438,o), +(687,493,cs), +(710,599,o), +(619,710,o), +(422,710,cs), +(223,710,o), +(127,612,o), +(105,506,cs), +(93,451,o), +(110,402,o), +(138,370,c), +(84,342,o), +(34,290,o), +(20,224,cs), +(-4,110,o), +(95,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(285,158,o), +(260,180,o), +(268,217,cs), +(275,254,o), +(310,276,o), +(350,276,cs), +(390,276,o), +(415,254,o), +(408,217,cs), +(400,180,o), +(365,158,o), +(325,158,cs) +); +}, +{ +closed = 1; +nodes = ( +(344,433,o), +(326,457,o), +(332,487,cs), +(338,517,o), +(366,541,o), +(406,541,cs), +(446,541,o), +(465,517,o), +(459,487,cs), +(453,457,o), +(424,433,o), +(384,433,cs) +); +} +); +width = 710; +} +); +unicode = 56; +}, +{ +color = 6; +glyphname = nine; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (329, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(172,0,ls), +(190,0,o), +(200,13,o), +(207,20,c), +(475,311,ls), +(505,344,o), +(553,400,o), +(570,479,cs), +(594,590,o), +(541,710,o), +(381,710,cs), +(221,710,o), +(119,590,o), +(95,479,cs), +(71,368,o), +(123,249,o), +(283,249,cs), +(305,249,o), +(330,252,o), +(350,257,c), +(145,35,ls), +(142,32,o), +(138,28,o), +(137,22,cs), +(134,10,o), +(140,0,o), +(152,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(202,309,o), +(136,375,o), +(158,479,cs), +(180,584,o), +(274,650,o), +(368,650,cs), +(462,650,o), +(529,584,o), +(507,479,cs), +(485,375,o), +(390,309,o), +(296,309,cs) +); +} +); +width = 572; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(310,0,ls), +(332,0,o), +(347,13,o), +(353,20,cs), +(523,196,l), +(605,285,o), +(690,360,o), +(711,459,cs), +(742,608,o), +(647,710,o), +(439,710,cs), +(231,710,o), +(97,585,o), +(68,449,cs), +(34,293,o), +(164,222,o), +(259,211,cs), +(262,210,o), +(264,210,o), +(267,210,c), +(99,35,ls), +(96,32,o), +(93,28,o), +(92,22,cs), +(89,10,o), +(97,0,o), +(109,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(334,385,o), +(314,408,o), +(323,450,cs), +(332,492,o), +(363,515,o), +(401,515,cs), +(439,515,o), +(460,492,o), +(451,450,cs), +(442,408,o), +(412,385,o), +(373,385,cs) +); +} +); +width = 683; +} +); +unicode = 57; +}, +{ +color = 3; +glyphname = zero.zero; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(521,629,l), +(480,665,l), +(110,78,l), +(153,45,l) +); +}, +{ +ref = zero; +} +); +width = 614; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(577,629,l), +(530,665,l), +(160,78,l), +(209,45,l) +); +}, +{ +ref = zero; +} +); +width = 717; +} +); +metricLeft = zero; +metricRight = zero; +}, +{ +color = 6; +glyphname = zero.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (284, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(430,-10,o), +(513,119,o), +(548,266,cs), +(560,320,o), +(572,377,o), +(583,434,cs), +(612,581,o), +(583,710,o), +(402,710,cs), +(221,710,o), +(138,581,o), +(103,434,cs), +(90,377,o), +(78,320,o), +(68,266,cs), +(41,119,o), +(68,-10,o), +(249,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(144,50,o), +(106,134,o), +(132,271,cs), +(143,328,o), +(153,374,o), +(165,429,cs), +(197,564,o), +(271,650,o), +(389,650,cs), +(507,650,o), +(545,564,o), +(519,429,cs), +(509,374,o), +(499,328,o), +(486,271,cs), +(454,134,o), +(380,50,o), +(262,50,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(499,-9,o), +(624,99,o), +(666,246,cs), +(682,300,o), +(703,401,o), +(712,458,cs), +(733,604,o), +(642,709,o), +(451,710,c), +(260,709,o), +(125,604,o), +(84,458,cs), +(67,401,o), +(46,300,o), +(38,246,cs), +(18,99,o), +(97,-9,o), +(298,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(302,186,o), +(294,214,o), +(300,251,cs), +(309,308,o), +(328,397,o), +(342,452,cs), +(352,486,o), +(370,516,o), +(410,517,c), +(450,516,o), +(456,486,o), +(450,452,cs), +(442,397,o), +(423,308,o), +(408,251,cs), +(398,214,o), +(378,186,o), +(340,186,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = one.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (-150, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(463,0,l), +(477,0,o), +(488,9,o), +(491,22,c), +(494,37,l), +(497,51,o), +(490,60,o), +(476,60,c), +(316,60,l), +(447,678,l), +(450,691,o), +(443,700,o), +(430,700,c), +(411,700,l), +(402,700,o), +(394,699,o), +(384,693,c), +(175,555,l), +(162,547,o), +(159,534,o), +(165,524,c), +(173,510,l), +(178,499,o), +(190,498,o), +(203,506,c), +(372,618,l), +(253,60,l), +(83,60,l), +(69,60,o), +(58,51,o), +(55,37,c), +(52,22,l), +(49,9,o), +(56,0,o), +(70,0,c) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(587,0,l), +(602,0,o), +(617,12,o), +(620,27,c), +(652,179,l), +(655,194,o), +(646,206,o), +(631,206,c), +(501,206,l), +(600,673,l), +(603,688,o), +(594,700,o), +(579,700,c), +(390,700,l), +(381,700,o), +(375,698,o), +(367,693,c), +(114,527,l), +(100,519,o), +(93,501,o), +(97,488,c), +(161,374,l), +(168,361,o), +(182,356,o), +(197,366,c), +(299,431,l), +(251,206,l), +(81,206,l), +(66,206,o), +(51,194,o), +(48,179,c), +(16,27,l), +(13,12,o), +(22,0,o), +(37,0,c) +); +} +); +width = 700; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 80; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = two.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (333, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(455,0,ls), +(469,0,o), +(480,9,o), +(483,22,cs), +(486,37,ls), +(489,51,o), +(482,60,o), +(468,60,cs), +(133,60,l), +(418,298,ls), +(505,366,o), +(554,425,o), +(571,507,cs), +(593,612,o), +(555,710,o), +(403,710,cs), +(251,710,o), +(162,593,o), +(140,502,cs), +(138,491,o), +(144,483,o), +(157,483,c), +(177,483,ls), +(185,483,o), +(199,490,o), +(205,506,cs), +(234,592,o), +(299,650,o), +(390,650,cs), +(485,650,o), +(527,596,o), +(508,507,cs), +(495,445,o), +(469,407,o), +(379,338,cs), +(65,79,ls), +(42,62,o), +(34,50,o), +(31,37,cs), +(28,22,ls), +(25,9,o), +(32,0,o), +(45,0,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(587,0,ls), +(602,0,o), +(617,12,o), +(620,27,cs), +(652,179,ls), +(655,194,o), +(646,206,o), +(631,206,cs), +(420,206,l), +(429,211,l), +(576,300,o), +(680,379,o), +(703,490,cs), +(734,632,o), +(634,714,o), +(452,714,cs), +(280,714,o), +(130,616,o), +(95,465,cs), +(92,453,o), +(100,443,o), +(112,443,cs), +(300,443,ls), +(318,443,o), +(334,447,o), +(345,466,cs), +(355,482,o), +(370,517,o), +(411,517,cs), +(446,517,o), +(443,496,o), +(439,477,cs), +(426,418,o), +(301,343,o), +(59,192,c), +(49,185,l), +(20,167,o), +(14,139,o), +(12,131,cs), +(-10,27,ls), +(-13,12,o), +(-4,0,o), +(11,0,cs) +); +} +); +width = 700; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 538; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 73; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 513; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = three.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (450, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(384,-10,o), +(502,66,o), +(530,198,cs), +(559,332,o), +(480,396,o), +(343,396,cs), +(323,396,l), +(587,643,ls), +(592,648,o), +(597,654,o), +(599,662,cs), +(602,677,ls), +(605,691,o), +(598,700,o), +(584,700,cs), +(211,700,ls), +(198,700,o), +(187,691,o), +(184,677,cs), +(181,662,ls), +(178,649,o), +(185,640,o), +(198,640,cs), +(500,640,l), +(243,397,l), +(236,390,o), +(231,383,o), +(228,373,cs), +(225,358,ls), +(223,345,o), +(230,336,o), +(243,336,cs), +(331,336,ls), +(434,336,o), +(488,297,o), +(467,198,cs), +(446,99,o), +(363,50,o), +(260,50,cs), +(189,50,o), +(108,70,o), +(106,157,cs), +(105,177,o), +(94,180,o), +(83,180,cs), +(69,180,ls), +(57,180,o), +(47,173,o), +(44,161,cs), +(29,74,o), +(97,-10,o), +(247,-10,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(482,-10,o), +(639,80,o), +(669,219,cs), +(696,345,o), +(627,401,o), +(533,426,c), +(533,427,l), +(667,506,ls), +(678,513,o), +(691,527,o), +(695,546,cs), +(722,673,ls), +(725,688,o), +(716,700,o), +(701,700,cs), +(189,700,ls), +(174,700,o), +(159,688,o), +(156,673,cs), +(126,532,ls), +(123,517,o), +(133,505,o), +(148,505,cs), +(411,505,l), +(255,429,ls), +(244,423,o), +(231,409,o), +(227,389,cs), +(210,308,ls), +(206,293,o), +(216,281,o), +(231,281,cs), +(356,281,ls), +(400,281,o), +(419,267,o), +(413,237,cs), +(406,208,o), +(382,184,o), +(335,184,cs), +(293,184,o), +(279,193,o), +(271,204,cs), +(263,213,o), +(258,220,o), +(240,220,cs), +(39,220,ls), +(27,220,o), +(15,210,o), +(12,198,cs), +(-1,119,o), +(52,-10,o), +(293,-10,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = four.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (52, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(379,0,ls), +(392,0,o), +(403,9,o), +(406,22,cs), +(439,180,l), +(530,180,ls), +(543,180,o), +(554,189,o), +(557,202,cs), +(561,218,ls), +(563,231,o), +(556,240,o), +(543,240,cs), +(452,240,l), +(545,678,ls), +(548,691,o), +(541,700,o), +(528,700,cs), +(487,700,ls), +(471,700,o), +(456,693,o), +(446,683,cs), +(50,248,ls), +(37,234,o), +(33,220,o), +(33,218,cs), +(29,202,l), +(26,189,o), +(33,180,o), +(46,180,cs), +(376,180,l), +(343,22,ls), +(340,9,o), +(347,0,o), +(360,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(472,629,l), +(389,240,l), +(116,240,l) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(499,0,ls), +(514,0,o), +(529,12,o), +(532,27,cs), +(550,112,l), +(638,112,ls), +(653,112,o), +(668,124,o), +(671,139,cs), +(702,288,ls), +(705,302,o), +(697,315,o), +(680,315,cs), +(593,315,l), +(669,673,ls), +(672,688,o), +(663,700,o), +(648,700,cs), +(440,700,ls), +(424,700,o), +(410,693,o), +(399,683,cs), +(38,313,ls), +(33,308,o), +(24,299,o), +(20,282,cs), +(-10,139,ls), +(-13,124,o), +(-4,112,o), +(11,112,cs), +(310,112,l), +(292,27,ls), +(289,12,o), +(298,0,o), +(313,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(388,448,l), +(358,304,l), +(253,304,l) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = five.tf; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(376,-10,o), +(501,68,o), +(534,224,cs), +(565,370,o), +(473,448,o), +(340,448,cs), +(265,448,o), +(220,423,o), +(204,414,c), +(273,640,l), +(560,640,ls), +(573,640,o), +(584,649,o), +(587,662,c), +(590,678,l), +(593,691,o), +(586,700,o), +(573,700,cs), +(247,700,ls), +(234,700,o), +(224,691,o), +(220,677,cs), +(121,350,ls), +(117,338,o), +(126,328,o), +(138,328,cs), +(156,328,ls), +(198,328,o), +(228,388,o), +(328,388,cs), +(426,388,o), +(493,327,o), +(471,224,cs), +(447,111,o), +(354,50,o), +(256,50,cs), +(184,50,o), +(118,84,o), +(116,171,cs), +(115,191,o), +(106,194,o), +(95,194,cs), +(76,194,ls), +(64,194,o), +(54,187,o), +(52,175,cs), +(37,83,o), +(97,-10,o), +(243,-10,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(510,-12,o), +(643,105,o), +(671,238,cs), +(699,371,o), +(599,468,o), +(476,468,cs), +(410,468,o), +(377,459,o), +(334,434,c), +(358,505,l), +(650,505,ls), +(665,505,o), +(679,517,o), +(682,532,cs), +(712,673,ls), +(715,688,o), +(706,700,o), +(691,700,cs), +(244,700,ls), +(225,700,o), +(206,689,o), +(198,666,cs), +(82,309,ls), +(77,292,o), +(85,282,o), +(98,282,cs), +(297,282,ls), +(314,282,o), +(324,306,o), +(366,306,cs), +(405,306,o), +(421,276,o), +(414,245,cs), +(406,204,o), +(372,183,o), +(340,183,cs), +(307,183,o), +(299,195,o), +(286,218,cs), +(283,223,o), +(274,234,o), +(253,234,cs), +(51,234,ls), +(39,234,o), +(27,224,o), +(24,212,cs), +(2,92,o), +(86,-12,o), +(298,-12,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = six.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (76, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(416,-10,o), +(524,105,o), +(549,226,cs), +(575,347,o), +(516,461,o), +(356,461,cs), +(334,461,o), +(307,458,o), +(286,453,c), +(482,665,ls), +(484,668,o), +(488,672,o), +(489,678,cs), +(492,690,o), +(486,700,o), +(474,700,cs), +(455,700,ls), +(437,700,o), +(427,687,o), +(420,680,c), +(164,403,ls), +(134,370,o), +(80,304,o), +(63,226,cs), +(38,105,o), +(96,-10,o), +(256,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(175,50,o), +(102,111,o), +(126,226,cs), +(150,340,o), +(249,401,o), +(343,401,cs), +(437,401,o), +(510,340,o), +(486,226,cs), +(462,111,o), +(363,50,o), +(269,50,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(491,-10,o), +(648,103,o), +(680,254,cs), +(714,414,o), +(569,493,o), +(473,498,c), +(476,501,o), +(479,504,o), +(482,507,c), +(635,665,ls), +(637,668,o), +(640,672,o), +(641,678,cs), +(644,690,o), +(636,700,o), +(624,700,cs), +(423,700,ls), +(401,700,o), +(386,687,o), +(380,680,cs), +(171,467,ls), +(137,432,o), +(46,335,o), +(28,249,cs), +(-7,84,o), +(115,-10,o), +(303,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,185,o), +(277,208,o), +(286,250,cs), +(295,292,o), +(330,315,o), +(369,315,cs), +(408,315,o), +(433,292,o), +(424,250,cs), +(415,208,o), +(380,185,o), +(342,185,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = seven.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (450, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(181,0,ls), +(196,0,o), +(205,14,o), +(213,25,cs), +(593,625,ls), +(601,638,o), +(605,646,o), +(608,662,cs), +(611,677,ls), +(614,691,o), +(607,700,o), +(593,700,cs), +(207,700,l), +(194,700,o), +(183,691,o), +(180,677,cs), +(177,662,ls), +(174,649,o), +(181,640,o), +(194,640,cs), +(535,640,l), +(149,31,ls), +(147,28,o), +(145,24,o), +(145,22,cs), +(142,10,o), +(148,0,o), +(160,0,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,0,ls), +(340,0,o), +(356,16,o), +(361,23,cs), +(678,490,ls), +(687,503,o), +(697,518,o), +(702,541,cs), +(730,673,ls), +(733,688,o), +(725,700,o), +(709,700,cs), +(192,700,ls), +(177,700,o), +(162,688,o), +(159,673,cs), +(127,522,ls), +(124,507,o), +(133,495,o), +(148,495,cs), +(423,495,l), +(109,31,ls), +(107,29,o), +(106,26,o), +(105,22,cs), +(102,10,o), +(110,0,o), +(122,0,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = eight.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (376, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (376, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(386,-10,o), +(514,63,o), +(542,197,cs), +(560,282,o), +(528,342,o), +(467,374,c), +(526,404,o), +(572,455,o), +(587,526,cs), +(613,647,o), +(526,710,o), +(402,710,cs), +(278,710,o), +(165,647,o), +(139,526,cs), +(124,455,o), +(147,404,o), +(195,374,c), +(120,342,o), +(62,282,o), +(44,197,cs), +(16,63,o), +(112,-10,o), +(249,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,50,o), +(88,106,o), +(107,197,cs), +(126,288,o), +(221,343,o), +(324,343,cs), +(427,343,o), +(498,288,o), +(479,197,cs), +(460,106,o), +(365,50,o), +(262,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,403,o), +(185,448,o), +(202,526,cs), +(219,604,o), +(300,650,o), +(389,650,cs), +(478,650,o), +(541,604,o), +(524,526,cs), +(508,450,o), +(423,405,o), +(337,403,c) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(531,-10,o), +(643,103,o), +(667,216,cs), +(681,283,o), +(659,343,o), +(611,370,c), +(659,402,o), +(686,447,o), +(698,502,cs), +(720,608,o), +(668,710,o), +(451,710,cs), +(232,710,o), +(135,606,o), +(112,500,cs), +(101,445,o), +(112,400,o), +(147,370,c), +(91,341,o), +(42,284,o), +(28,218,cs), +(3,104,o), +(64,-10,o), +(298,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,158,o), +(268,180,o), +(276,217,cs), +(284,254,o), +(319,276,o), +(359,276,cs), +(399,276,o), +(424,254,o), +(416,217,cs), +(408,180,o), +(374,158,o), +(334,158,cs) +); +}, +{ +closed = 1; +nodes = ( +(352,433,o), +(334,457,o), +(341,487,cs), +(347,517,o), +(375,541,o), +(415,541,cs), +(455,541,o), +(474,517,o), +(468,487,cs), +(461,457,o), +(432,433,o), +(392,433,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = nine.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (329, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(186,0,ls), +(204,0,o), +(214,13,o), +(221,20,c), +(489,311,ls), +(519,344,o), +(567,400,o), +(584,479,cs), +(608,590,o), +(555,710,o), +(395,710,cs), +(235,710,o), +(133,590,o), +(109,479,cs), +(85,368,o), +(137,249,o), +(297,249,cs), +(319,249,o), +(344,252,o), +(364,257,c), +(159,35,ls), +(156,32,o), +(152,28,o), +(151,22,cs), +(148,10,o), +(154,0,o), +(166,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(216,309,o), +(150,375,o), +(172,479,cs), +(194,584,o), +(288,650,o), +(382,650,cs), +(476,650,o), +(543,584,o), +(521,479,cs), +(499,375,o), +(404,309,o), +(310,309,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,0,ls), +(341,0,o), +(356,13,o), +(362,20,cs), +(532,196,l), +(614,285,o), +(699,360,o), +(720,459,cs), +(751,608,o), +(656,710,o), +(448,710,cs), +(240,710,o), +(106,585,o), +(77,449,cs), +(43,289,o), +(181,218,o), +(276,210,c), +(274,208,o), +(272,207,o), +(271,205,c), +(108,35,ls), +(105,32,o), +(102,28,o), +(101,22,cs), +(98,10,o), +(106,0,o), +(118,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(343,385,o), +(323,408,o), +(332,450,cs), +(341,492,o), +(372,515,o), +(410,515,cs), +(448,515,o), +(469,492,o), +(460,450,cs), +(451,408,o), +(421,385,o), +(382,385,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 3; +glyphname = zero.tf.zero; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(530,629,l), +(489,665,l), +(119,78,l), +(162,45,l) +); +}, +{ +ref = zero.tf; +} +); +width = 600; +}, +{ +color = 3; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(577,629,l), +(530,665,l), +(160,78,l), +(209,45,l) +); +}, +{ +ref = zero.tf; +} +); +width = 700; +} +); +metricLeft = zero.tf; +metricRight = zero.tf; +}, +{ +color = 10; +glyphname = zero.dnom; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (36,170); +ref = zeroinferior; +} +); +width = 362; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (36,170); +ref = zeroinferior; +} +); +width = 382; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 10; +glyphname = one.dnom; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (36,170); +ref = oneinferior; +} +); +width = 269; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (36,170); +ref = oneinferior; +} +); +width = 332; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = two.dnom; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (36,170); +ref = twoinferior; +} +); +width = 335; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (36,170); +ref = twoinferior; +} +); +width = 369; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 10; +glyphname = three.dnom; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (36,170); +ref = threeinferior; +} +); +width = 336; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (36,170); +ref = threeinferior; +} +); +width = 365; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = four.dnom; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (36,170); +ref = fourinferior; +} +); +width = 330; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (36,170); +ref = fourinferior; +} +); +width = 399; +} +); +}, +{ +color = 10; +glyphname = five.dnom; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (36,170); +ref = fiveinferior; +} +); +width = 325; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (36,170); +ref = fiveinferior; +} +); +width = 365; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = six.dnom; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (36,170); +ref = sixinferior; +} +); +width = 336; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (36,170); +ref = sixinferior; +} +); +width = 362; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = seven.dnom; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (36,170); +ref = seveninferior; +} +); +width = 284; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (36,170); +ref = seveninferior; +} +); +width = 329; +} +); +}, +{ +color = 10; +glyphname = eight.dnom; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (36,170); +ref = eightinferior; +} +); +width = 343; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (36,170); +ref = eightinferior; +} +); +width = 368; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = nine.dnom; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (37,175); +ref = nineinferior; +} +); +width = 334; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (36,171); +ref = nineinferior; +} +); +width = 362; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 10; +glyphname = zero.numr; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = zeroinferior; +} +); +width = 362; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = zeroinferior; +} +); +width = 382; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 10; +glyphname = one.numr; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = oneinferior; +} +); +width = 269; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = oneinferior; +} +); +width = 332; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = two.numr; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = twoinferior; +} +); +width = 335; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = twoinferior; +} +); +width = 369; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 10; +glyphname = three.numr; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = threeinferior; +} +); +width = 336; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = threeinferior; +} +); +width = 365; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = four.numr; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = fourinferior; +} +); +width = 330; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = fourinferior; +} +); +width = 399; +} +); +}, +{ +color = 10; +glyphname = five.numr; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = fiveinferior; +} +); +width = 325; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = fiveinferior; +} +); +width = 365; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = six.numr; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = sixinferior; +} +); +width = 336; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = sixinferior; +} +); +width = 362; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = seven.numr; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = seveninferior; +} +); +width = 284; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = seveninferior; +} +); +width = 329; +} +); +}, +{ +color = 10; +glyphname = eight.numr; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = eightinferior; +} +); +width = 343; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = eightinferior; +} +); +width = 368; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = nine.numr; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = nineinferior; +} +); +width = 334; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,521); +ref = nineinferior; +} +); +width = 362; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 6; +glyphname = fraction; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-205,0,l), +(-187,0,o), +(-180,7,o), +(-168,19,c), +(463,669,ls), +(475,681,o), +(472,700,o), +(453,700,cs), +(428,700,ls), +(410,700,o), +(403,693,o), +(391,681,cs), +(-240,31,l), +(-252,19,o), +(-249,0,o), +(-230,0,cs) +); +} +); +width = 180; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(-162,0,ls), +(-143,0,o), +(-134,7,o), +(-122,19,cs), +(510,669,ls), +(524,683,o), +(516,700,o), +(496,700,cs), +(418,700,ls), +(399,700,o), +(390,693,o), +(378,681,cs), +(-254,31,ls), +(-268,17,o), +(-260,0,o), +(-240,0,cs) +); +} +); +width = 197; +} +); +unicode = 8260; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 372; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = onehalf; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (269,0); +ref = fraction; +}, +{ +pos = (449,0); +ref = two.dnom; +} +); +width = 784; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (332,0); +ref = fraction; +}, +{ +pos = (529,0); +ref = two.dnom; +} +); +width = 898; +} +); +metricLeft = one.numr; +metricRight = one.numr; +unicode = 189; +}, +{ +color = 10; +glyphname = onethird; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (269,0); +ref = fraction; +}, +{ +pos = (449,0); +ref = three.dnom; +} +); +width = 785; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (332,0); +ref = fraction; +}, +{ +pos = (529,0); +ref = three.dnom; +} +); +width = 894; +} +); +metricLeft = one.numr; +metricRight = one.numr; +unicode = 8531; +}, +{ +color = 10; +glyphname = twothirds; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = two.numr; +}, +{ +pos = (335,0); +ref = fraction; +}, +{ +pos = (515,0); +ref = three.dnom; +} +); +width = 851; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = two.numr; +}, +{ +pos = (369,0); +ref = fraction; +}, +{ +pos = (566,0); +ref = three.dnom; +} +); +width = 931; +} +); +metricLeft = two.numr; +metricRight = two.numr; +unicode = 8532; +}, +{ +color = 10; +glyphname = onequarter; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (269,0); +ref = fraction; +}, +{ +pos = (449,0); +ref = four.dnom; +} +); +width = 779; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (332,0); +ref = fraction; +}, +{ +pos = (529,0); +ref = four.dnom; +} +); +width = 928; +} +); +metricLeft = one.numr; +metricRight = one.numr; +unicode = 188; +}, +{ +color = 10; +glyphname = threequarters; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (336,0); +ref = fraction; +}, +{ +pos = (516,0); +ref = four.dnom; +} +); +width = 846; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (365,0); +ref = fraction; +}, +{ +pos = (562,0); +ref = four.dnom; +} +); +width = 961; +} +); +metricLeft = three.numr; +metricRight = three.numr; +unicode = 190; +}, +{ +color = 10; +glyphname = oneeighth; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (269,0); +ref = fraction; +}, +{ +pos = (449,0); +ref = eight.dnom; +} +); +width = 792; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (332,0); +ref = fraction; +}, +{ +pos = (529,0); +ref = eight.dnom; +} +); +width = 897; +} +); +metricLeft = one.numr; +metricRight = one.numr; +unicode = 8539; +}, +{ +color = 10; +glyphname = threeeighths; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (336,0); +ref = fraction; +}, +{ +pos = (516,0); +ref = eight.dnom; +} +); +width = 859; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (365,0); +ref = fraction; +}, +{ +pos = (562,0); +ref = eight.dnom; +} +); +width = 930; +} +); +metricLeft = three.numr; +metricRight = three.numr; +unicode = 8540; +}, +{ +color = 10; +glyphname = fiveeighths; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (325,0); +ref = fraction; +}, +{ +pos = (505,0); +ref = eight.dnom; +} +); +width = 848; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (365,0); +ref = fraction; +}, +{ +pos = (562,0); +ref = eight.dnom; +} +); +width = 930; +} +); +metricLeft = five.numr; +metricRight = five.numr; +unicode = 8541; +}, +{ +color = 10; +glyphname = seveneighths; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (284,0); +ref = fraction; +}, +{ +pos = (464,0); +ref = eight.dnom; +} +); +width = 807; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (329,0); +ref = fraction; +}, +{ +pos = (526,0); +ref = eight.dnom; +} +); +width = 894; +} +); +metricLeft = seven.numr; +metricRight = seven.numr; +unicode = 8542; +}, +{ +color = 6; +glyphname = zeroinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (-101, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(182,-175,o), +(243,-120,o), +(264,-40,cs), +(273,-6,o), +(277,12,o), +(283,49,cs), +(296,129,o), +(264,185,o), +(172,185,cs), +(80,185,o), +(24,129,o), +(3,49,cs), +(-7,12,o), +(-11,-6,o), +(-16,-40,cs), +(-29,-120,o), +(8,-175,o), +(95,-175,cs) +); +}, +{ +closed = 1; +nodes = ( +(47,-119,o), +(37,-75,o), +(42,-37,cs), +(48,0,o), +(51,11,o), +(60,46,cs), +(70,86,o), +(101,129,o), +(160,129,cs), +(219,129,o), +(230,86,o), +(224,46,cs), +(219,11,o), +(216,0,o), +(206,-37,cs), +(195,-75,o), +(167,-119,o), +(107,-119,cs) +); +} +); +width = 362; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,-175,o), +(272,-124,o), +(295,-44,cs), +(305,-10,o), +(310,16,o), +(315,53,cs), +(328,134,o), +(280,185,o), +(182,185,cs), +(84,185,o), +(14,134,o), +(-9,53,cs), +(-18,16,o), +(-25,-10,o), +(-29,-44,cs), +(-40,-124,o), +(12,-175,o), +(105,-175,cs) +); +}, +{ +closed = 1; +nodes = ( +(111,-67,o), +(107,-54,o), +(109,-37,cs), +(113,-10,o), +(120,21,o), +(127,46,cs), +(132,63,o), +(141,76,o), +(158,76,cs), +(175,76,o), +(180,63,o), +(177,46,cs), +(174,21,o), +(167,-10,o), +(159,-37,cs), +(155,-54,o), +(145,-67,o), +(128,-67,cs) +); +} +); +width = 382; +} +); +unicode = 8320; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 172; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-342"; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = oneinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (8, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(75,-170,ls), +(88,-170,o), +(99,-161,o), +(102,-148,cs), +(167,158,ls), +(170,171,o), +(162,180,o), +(149,180,cs), +(135,180,ls), +(125,180,o), +(119,178,o), +(111,173,cs), +(0,102,ls), +(-12,94,o), +(-17,81,o), +(-11,71,cs), +(-6,61,ls), +(0,50,o), +(13,49,o), +(24,56,cs), +(97,103,l), +(44,-148,ls), +(41,-161,o), +(48,-170,o), +(61,-170,cs) +); +} +); +width = 269; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,-170,ls), +(166,-170,o), +(177,-161,o), +(180,-148,cs), +(245,158,ls), +(248,171,o), +(240,180,o), +(227,180,cs), +(139,180,ls), +(129,180,o), +(123,178,o), +(115,173,cs), +(-16,86,ls), +(-27,78,o), +(-32,65,o), +(-26,55,cs), +(2,5,ls), +(8,-6,o), +(22,-7,o), +(32,0,cs), +(83,34,l), +(45,-148,ls), +(42,-161,o), +(49,-170,o), +(62,-170,cs) +); +} +); +width = 332; +} +); +unicode = 8321; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 174; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 9; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = twoinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (-76, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(197,-170,ls), +(210,-170,o), +(221,-161,o), +(224,-148,cs), +(226,-136,ls), +(229,-123,o), +(222,-114,o), +(209,-114,cs), +(57,-114,l), +(187,-36,o), +(240,0,o), +(256,74,cs), +(268,132,o), +(233,185,o), +(157,185,cs), +(90,185,o), +(24,135,o), +(11,88,cs), +(7,76,o), +(13,69,o), +(25,69,cs), +(40,69,ls), +(50,69,o), +(57,72,o), +(68,87,cs), +(76,98,o), +(91,130,o), +(145,130,cs), +(179,130,o), +(205,109,o), +(198,74,cs), +(186,19,o), +(133,-6,o), +(-15,-98,cs), +(-37,-112,o), +(-44,-121,o), +(-46,-131,cs), +(-49,-148,ls), +(-52,-161,o), +(-45,-170,o), +(-32,-170,cs) +); +} +); +width = 335; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(237,-170,ls), +(250,-170,o), +(261,-161,o), +(264,-148,cs), +(276,-89,ls), +(279,-76,o), +(272,-67,o), +(259,-67,cs), +(156,-67,l), +(232,-22,o), +(285,16,o), +(297,73,cs), +(312,144,o), +(263,185,o), +(172,185,cs), +(89,185,o), +(14,139,o), +(-5,68,c), +(-8,56,o), +(-3,49,o), +(9,49,c), +(94,49,ls), +(104,49,o), +(110,53,o), +(122,68,cs), +(127,76,o), +(134,86,o), +(150,86,cs), +(168,86,o), +(166,76,o), +(164,66,cs), +(158,36,o), +(105,8,o), +(-16,-70,cs), +(-39,-85,o), +(-46,-94,o), +(-48,-104,cs), +(-57,-148,ls), +(-60,-161,o), +(-53,-170,o), +(-40,-170,cs) +); +} +); +width = 369; +} +); +unicode = 8322; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 308; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 35; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 165; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = threeinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (8, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(165,-175,o), +(222,-135,o), +(236,-69,cs), +(247,-13,o), +(228,33,o), +(153,37,c), +(244,107,ls), +(261,121,o), +(265,131,o), +(268,146,cs), +(271,158,ls), +(274,171,o), +(266,180,o), +(253,180,cs), +(55,180,ls), +(42,180,o), +(32,171,o), +(29,158,cs), +(26,146,ls), +(23,133,o), +(31,124,o), +(44,124,cs), +(186,124,l), +(79,43,ls), +(71,36,o), +(64,29,o), +(62,20,cs), +(59,3,ls), +(56,-10,o), +(63,-19,o), +(76,-19,cs), +(116,-19,ls), +(159,-19,o), +(186,-31,o), +(178,-69,cs), +(171,-101,o), +(133,-119,o), +(89,-119,cs), +(33,-119,o), +(28,-105,o), +(20,-90,cs), +(17,-83,o), +(10,-76,o), +(1,-76,cs), +(-19,-76,ls), +(-25,-76,o), +(-38,-82,o), +(-40,-95,cs), +(-46,-137,o), +(-11,-175,o), +(77,-175,cs) +); +} +); +width = 336; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(186,-175,o), +(265,-127,o), +(280,-58,cs), +(293,5,o), +(259,30,o), +(211,43,c), +(274,81,ls), +(287,88,o), +(290,93,o), +(292,103,cs), +(304,158,ls), +(307,171,o), +(299,180,o), +(286,180,cs), +(47,180,ls), +(34,180,o), +(24,171,o), +(21,158,c), +(7,94,ls), +(4,81,o), +(12,72,o), +(25,72,cs), +(119,72,l), +(70,33,ls), +(62,26,o), +(58,22,o), +(56,12,cs), +(50,-17,ls), +(47,-28,o), +(53,-37,o), +(65,-37,cs), +(114,-37,ls), +(134,-37,o), +(145,-40,o), +(142,-54,cs), +(139,-66,o), +(128,-75,o), +(106,-75,cs), +(75,-75,o), +(84,-59,o), +(65,-59,cs), +(52,-59,o), +(38,-59,o), +(25,-59,c), +(-26,-59,ls), +(-32,-59,o), +(-46,-65,o), +(-47,-78,cs), +(-51,-111,o), +(-31,-175,o), +(91,-175,cs) +); +} +); +width = 365; +} +); +unicode = 8323; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-73"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 21; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 311; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = fourinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (-180, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(142,-170,ls), +(155,-170,o), +(166,-161,o), +(169,-148,cs), +(180,-95,l), +(215,-95,ls), +(228,-95,o), +(239,-86,o), +(242,-73,cs), +(244,-61,ls), +(247,-48,o), +(240,-39,o), +(227,-39,cs), +(192,-39,l), +(234,158,ls), +(237,171,o), +(229,180,o), +(216,180,cs), +(190,180,ls), +(181,180,o), +(170,176,o), +(157,162,cs), +(-21,-30,ls), +(-37,-46,o), +(-39,-57,o), +(-40,-60,cs), +(-42,-73,ls), +(-45,-86,o), +(-38,-95,o), +(-25,-95,cs), +(122,-95,l), +(111,-148,ls), +(108,-161,o), +(115,-170,o), +(128,-170,cs) +); +}, +{ +closed = 1; +nodes = ( +(163,96,l), +(134,-39,l), +(40,-39,l) +); +} +); +width = 330; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,-170,ls), +(228,-170,o), +(239,-161,o), +(242,-148,cs), +(247,-124,l), +(282,-124,ls), +(295,-124,o), +(306,-115,o), +(309,-102,cs), +(323,-35,ls), +(326,-22,o), +(318,-13,o), +(305,-13,cs), +(270,-13,l), +(307,158,ls), +(310,171,o), +(302,180,o), +(289,180,cs), +(178,180,ls), +(169,180,o), +(158,176,o), +(145,162,cs), +(-19,-4,ls), +(-34,-20,o), +(-36,-31,o), +(-37,-34,cs), +(-51,-102,ls), +(-54,-115,o), +(-47,-124,o), +(-34,-124,cs), +(117,-124,l), +(112,-148,ls), +(109,-161,o), +(116,-170,o), +(129,-170,cs) +); +}, +{ +closed = 1; +nodes = ( +(158,54,l), +(142,-18,l), +(90,-18,l) +); +} +); +width = 399; +} +); +unicode = 8324; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 304; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 21; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = fiveinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (-146, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(160,-175,o), +(219,-113,o), +(231,-56,cs), +(246,15,o), +(212,60,o), +(132,60,cs), +(96,60,o), +(78,51,o), +(70,48,c), +(95,124,l), +(233,124,ls), +(246,124,o), +(256,133,o), +(259,146,cs), +(262,158,ls), +(265,171,o), +(257,180,o), +(244,180,cs), +(76,180,l), +(62,179,o), +(51,167,o), +(46,153,cs), +(0,7,ls), +(-5,-7,o), +(2,-19,o), +(16,-19,cs), +(43,-19,ls), +(63,-19,o), +(65,4,o), +(120,4,cs), +(160,4,o), +(181,-19,o), +(173,-56,cs), +(166,-90,o), +(133,-119,o), +(89,-119,cs), +(38,-119,o), +(31,-105,o), +(22,-87,cs), +(19,-81,o), +(13,-76,o), +(4,-76,cs), +(-16,-76,ls), +(-22,-76,o), +(-35,-82,o), +(-37,-95,cs), +(-43,-137,o), +(-1,-175,o), +(77,-175,cs) +); +} +); +width = 325; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,-175,o), +(267,-118,o), +(281,-51,cs), +(295,15,o), +(244,56,o), +(182,56,cs), +(149,56,o), +(132,51,o), +(111,39,c), +(122,72,l), +(261,72,ls), +(274,72,o), +(284,81,o), +(287,94,cs), +(301,158,ls), +(304,171,o), +(296,180,o), +(283,180,cs), +(71,180,l), +(57,179,o), +(45,167,o), +(41,153,cs), +(-9,-1,ls), +(-13,-15,o), +(-7,-27,o), +(7,-27,cs), +(98,-27,ls), +(105,-27,o), +(111,-16,o), +(129,-16,cs), +(147,-16,o), +(152,-32,o), +(149,-46,cs), +(146,-64,o), +(132,-73,o), +(117,-73,cs), +(87,-73,o), +(95,-52,o), +(77,-52,c), +(69,-52,o), +(60,-52,o), +(52,-52,c), +(-22,-52,ls), +(-28,-52,o), +(-41,-58,o), +(-43,-71,cs), +(-46,-102,o), +(-34,-175,o), +(95,-175,cs) +); +} +); +width = 365; +} +); +unicode = 8325; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 26; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 164; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = sixinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (-202, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(159,-175,o), +(232,-131,o), +(249,-52,cs), +(267,30,o), +(209,74,o), +(133,71,c), +(207,140,ls), +(214,147,o), +(222,154,o), +(223,160,cs), +(226,171,o), +(218,180,o), +(207,180,cs), +(189,180,ls), +(178,180,o), +(166,173,o), +(157,165,cs), +(47,59,ls), +(19,32,o), +(-13,4,o), +(-25,-52,cs), +(-42,-131,o), +(13,-175,o), +(86,-175,cs) +); +}, +{ +closed = 1; +nodes = ( +(48,-119,o), +(25,-90,o), +(33,-52,cs), +(41,-14,o), +(76,15,o), +(126,15,cs), +(176,15,o), +(199,-14,o), +(191,-52,cs), +(183,-90,o), +(148,-119,o), +(98,-119,cs) +); +} +); +width = 336; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(195,-175,o), +(272,-122,o), +(288,-46,cs), +(305,34,o), +(238,66,o), +(194,73,c), +(259,140,ls), +(267,148,o), +(271,154,o), +(272,160,cs), +(275,171,o), +(267,180,o), +(256,180,cs), +(171,180,ls), +(160,180,o), +(148,173,o), +(139,165,cs), +(34,58,ls), +(17,41,o), +(-28,-6,o), +(-37,-49,cs), +(-55,-131,o), +(7,-175,o), +(101,-175,cs) +); +}, +{ +closed = 1; +nodes = ( +(105,-78,o), +(93,-67,o), +(97,-48,cs), +(101,-29,o), +(117,-19,o), +(134,-19,cs), +(152,-19,o), +(164,-29,o), +(160,-48,cs), +(156,-67,o), +(139,-78,o), +(122,-78,cs) +); +} +); +width = 362; +} +); +unicode = 8326; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-55"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 25; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 309; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = seveninferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (8, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(33,-170,ls), +(47,-170,o), +(57,-158,o), +(64,-146,cs), +(229,115,ls), +(235,126,o), +(241,136,o), +(243,146,cs), +(246,158,ls), +(249,171,o), +(241,180,o), +(228,180,cs), +(32,180,ls), +(19,180,o), +(9,171,o), +(6,158,cs), +(3,146,ls), +(0,133,o), +(8,124,o), +(21,124,cs), +(172,124,l), +(9,-134,ls), +(6,-138,o), +(2,-146,o), +(2,-149,cs), +(-1,-161,o), +(4,-170,o), +(17,-170,cs) +); +} +); +width = 284; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(93,-170,ls), +(107,-170,o), +(116,-158,o), +(124,-146,cs), +(274,75,ls), +(278,81,o), +(283,89,o), +(285,100,cs), +(298,158,ls), +(301,171,o), +(293,180,o), +(280,180,cs), +(29,180,ls), +(16,180,o), +(6,171,o), +(3,158,cs), +(-12,89,ls), +(-15,76,o), +(-9,67,o), +(4,67,cs), +(129,67,l), +(-7,-134,ls), +(-10,-138,o), +(-14,-146,o), +(-14,-149,cs), +(-17,-161,o), +(-12,-170,o), +(1,-170,cs) +); +} +); +width = 329; +} +); +unicode = 8327; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 20; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 260; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = eightinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (-217, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(164,-175,o), +(229,-129,o), +(242,-67,cs), +(249,-32,o), +(242,-6,o), +(215,13,c), +(239,25,o), +(259,51,o), +(266,84,cs), +(277,137,o), +(243,185,o), +(162,185,cs), +(80,185,o), +(27,137,o), +(16,84,cs), +(9,51,o), +(20,24,o), +(39,13,c), +(3,-8,o), +(-19,-33,o), +(-26,-67,cs), +(-39,-130,o), +(5,-175,o), +(85,-175,cs) +); +}, +{ +closed = 1; +nodes = ( +(62,-119,o), +(25,-102,o), +(32,-67,cs), +(39,-32,o), +(81,-16,o), +(119,-16,cs), +(156,-16,o), +(192,-31,o), +(184,-67,cs), +(176,-103,o), +(131,-119,o), +(97,-119,cs) +); +}, +{ +closed = 1; +nodes = ( +(92,38,o), +(67,52,o), +(74,84,cs), +(80,114,o), +(114,129,o), +(150,129,cs), +(186,129,o), +(215,115,o), +(208,84,cs), +(201,53,o), +(167,38,o), +(130,38,cs) +); +} +); +width = 343; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(214,-175,o), +(269,-122,o), +(281,-65,cs), +(288,-32,o), +(277,0,o), +(253,14,c), +(278,30,o), +(291,52,o), +(297,80,cs), +(308,133,o), +(283,185,o), +(174,185,cs), +(65,185,o), +(15,132,o), +(4,79,cs), +(-2,51,o), +(4,29,o), +(21,14,c), +(-7,-1,o), +(-31,-29,o), +(-38,-62,cs), +(-50,-119,o), +(-20,-175,o), +(97,-175,cs) +); +}, +{ +closed = 1; +nodes = ( +(97,-89,o), +(85,-79,o), +(89,-63,cs), +(92,-46,o), +(109,-36,o), +(127,-36,cs), +(145,-36,o), +(155,-46,o), +(152,-63,cs), +(148,-79,o), +(133,-89,o), +(115,-89,cs) +); +}, +{ +closed = 1; +nodes = ( +(126,48,o), +(119,58,o), +(122,72,cs), +(124,85,o), +(137,96,o), +(155,96,cs), +(173,96,o), +(181,85,o), +(179,72,cs), +(176,58,o), +(162,48,o), +(144,48,cs) +); +} +); +width = 368; +} +); +unicode = 8328; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 88; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 30; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 308; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = nineinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (-88, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(51,-170,ls), +(62,-170,o), +(75,-163,o), +(83,-155,cs), +(189,-52,l), +(208,-35,o), +(253,4,o), +(265,62,cs), +(281,136,o), +(228,185,o), +(155,185,cs), +(82,185,o), +(7,136,o), +(-9,62,cs), +(-25,-15,o), +(34,-64,o), +(109,-61,c), +(34,-130,ls), +(26,-137,o), +(19,-144,o), +(17,-150,cs), +(15,-161,o), +(22,-170,o), +(33,-170,cs) +); +}, +{ +closed = 1; +nodes = ( +(64,-5,o), +(41,24,o), +(49,62,cs), +(57,100,o), +(93,129,o), +(143,129,cs), +(193,129,o), +(215,100,o), +(207,62,cs), +(199,24,o), +(164,-5,o), +(114,-5,cs) +); +} +); +width = 334; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(95,-171,ls), +(106,-171,o), +(118,-164,o), +(127,-156,cs), +(233,-49,ls), +(249,-32,o), +(294,15,o), +(304,58,cs), +(321,140,o), +(259,184,o), +(165,184,cs), +(71,184,o), +(-6,131,o), +(-22,55,cs), +(-39,-25,o), +(28,-57,o), +(73,-64,c), +(7,-131,ls), +(0,-139,o), +(-5,-145,o), +(-6,-151,cs), +(-8,-162,o), +(-1,-171,o), +(10,-171,cs) +); +}, +{ +closed = 1; +nodes = ( +(114,27,o), +(102,37,o), +(106,56,cs), +(110,75,o), +(127,86,o), +(144,86,cs), +(161,86,o), +(173,75,o), +(169,56,cs), +(165,37,o), +(149,27,o), +(132,27,cs) +); +} +); +width = 362; +} +); +unicode = 8329; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 167; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = zerosuperior; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = zeroinferior; +} +); +width = 362; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = zeroinferior; +} +); +width = 382; +} +); +unicode = 8304; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 345; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 10; +glyphname = onesuperior; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = oneinferior; +} +); +width = 269; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = oneinferior; +} +); +width = 332; +} +); +unicode = 185; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = twosuperior; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = twoinferior; +} +); +width = 335; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = twoinferior; +} +); +width = 369; +} +); +unicode = 178; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 10; +glyphname = threesuperior; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = threeinferior; +} +); +width = 336; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = threeinferior; +} +); +width = 365; +} +); +unicode = 179; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = foursuperior; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = fourinferior; +} +); +width = 330; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = fourinferior; +} +); +width = 399; +} +); +unicode = 8308; +}, +{ +color = 10; +glyphname = fivesuperior; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = fiveinferior; +} +); +width = 325; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = fiveinferior; +} +); +width = 365; +} +); +unicode = 8309; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = sixsuperior; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = sixinferior; +} +); +width = 336; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = sixinferior; +} +); +width = 362; +} +); +unicode = 8310; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = sevensuperior; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = seveninferior; +} +); +width = 284; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = seveninferior; +} +); +width = 329; +} +); +unicode = 8311; +}, +{ +color = 10; +glyphname = eightsuperior; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = eightinferior; +} +); +width = 343; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,520); +ref = eightinferior; +} +); +width = 368; +} +); +unicode = 8312; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = ninesuperior; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +pos = (111,520); +ref = nineinferior; +} +); +width = 334; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +pos = (111,521); +ref = nineinferior; +} +); +width = 362; +} +); +unicode = 8313; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 6; +glyphname = CR; +layers = ( +{ +layerId = UUID0; +width = 264; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +width = 188; +} +); +unicode = 13; +}, +{ +color = 6; +glyphname = .notdef; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(514,-117,ls), +(527,-117,o), +(538,-108,o), +(540,-95,cs), +(730,796,ls), +(732,809,o), +(725,818,o), +(712,818,cs), +(221,818,ls), +(208,818,o), +(197,809,o), +(195,796,cs), +(5,-95,ls), +(3,-108,o), +(10,-117,o), +(23,-117,cs) +); +}, +{ +closed = 1; +nodes = ( +(649,703,l), +(487,-59,l), +(114,-59,l) +); +}, +{ +closed = 1; +nodes = ( +(248,760,l), +(625,760,l), +(85,-9,l) +); +} +); +width = 696; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(514,-117,ls), +(527,-117,o), +(538,-108,o), +(540,-95,cs), +(730,796,ls), +(732,809,o), +(725,818,o), +(712,818,cs), +(221,818,ls), +(208,818,o), +(197,809,o), +(195,796,cs), +(5,-95,ls), +(3,-108,o), +(10,-117,o), +(23,-117,cs) +); +}, +{ +closed = 1; +nodes = ( +(649,703,l), +(487,-59,l), +(114,-59,l) +); +}, +{ +closed = 1; +nodes = ( +(248,760,l), +(625,760,l), +(85,-9,l) +); +} +); +width = 696; +} +); +}, +{ +color = 6; +glyphname = .null; +layers = ( +{ +layerId = UUID0; +width = 600; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +width = 600; +} +); +}, +{ +color = 6; +glyphname = space; +layers = ( +{ +layerId = UUID0; +width = 264; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +width = 188; +} +); +unicode = 32; +}, +{ +color = 6; +glyphname = nbspace; +layers = ( +{ +layerId = UUID0; +width = 264; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +width = 188; +} +); +metricWidth = space; +unicode = 160; +}, +{ +color = 6; +glyphname = "geresh-hb"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(138,433,ls), +(153,433,o), +(160,441,o), +(169,454,c), +(236,567,ls), +(240,574,o), +(242,580,o), +(244,585,cs), +(245,593,o), +(241,601,o), +(232,601,cs), +(187,601,ls), +(171,601,o), +(162,590,o), +(156,574,cs), +(112,454,ls), +(107,442,o), +(110,433,o), +(121,433,cs) +); +} +); +width = 213; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(166,298,ls), +(192,298,o), +(208,317,o), +(215,330,cs), +(362,572,ls), +(363,575,o), +(364,577,o), +(364,579,cs), +(367,591,o), +(359,601,o), +(347,601,cs), +(187,601,ls), +(160,601,o), +(142,580,o), +(136,562,c), +(47,320,l), +(45,308,o), +(53,298,o), +(65,298,cs) +); +} +); +width = 295; +} +); +unicode = 1523; +}, +{ +color = 6; +glyphname = "gershayim-hb"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(272,433,ls), +(287,433,o), +(294,441,o), +(303,454,c), +(370,567,ls), +(374,574,o), +(376,580,o), +(378,585,cs), +(379,593,o), +(375,601,o), +(366,601,cs), +(321,601,ls), +(305,601,o), +(296,590,o), +(290,574,cs), +(246,454,ls), +(241,442,o), +(244,433,o), +(255,433,cs) +); +}, +{ +closed = 1; +nodes = ( +(138,433,ls), +(153,433,o), +(160,441,o), +(169,454,c), +(236,567,ls), +(240,574,o), +(242,580,o), +(244,585,cs), +(245,593,o), +(241,601,o), +(232,601,cs), +(187,601,ls), +(171,601,o), +(162,590,o), +(156,574,cs), +(112,454,ls), +(107,442,o), +(110,433,o), +(121,433,cs) +); +} +); +width = 347; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(438,298,ls), +(464,298,o), +(480,317,o), +(487,330,cs), +(634,572,ls), +(635,575,o), +(636,577,o), +(636,579,cs), +(639,591,o), +(631,601,o), +(619,601,cs), +(459,601,ls), +(432,601,o), +(414,580,o), +(408,562,c), +(319,320,l), +(317,308,o), +(325,298,o), +(337,298,cs) +); +}, +{ +closed = 1; +nodes = ( +(166,298,ls), +(192,298,o), +(208,317,o), +(215,330,cs), +(362,572,ls), +(363,575,o), +(364,577,o), +(364,579,cs), +(367,591,o), +(359,601,o), +(347,601,cs), +(187,601,ls), +(160,601,o), +(142,580,o), +(136,562,c), +(47,320,l), +(45,308,o), +(53,298,o), +(65,298,cs) +); +} +); +width = 567; +} +); +unicode = 1524; +}, +{ +color = 6; +glyphname = "maqaf-hb"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(347,513,ls), +(360,513,o), +(371,522,o), +(374,535,cs), +(377,549,ls), +(380,562,o), +(373,571,o), +(360,571,cs), +(155,571,ls), +(142,571,o), +(131,562,o), +(128,549,cs), +(125,535,ls), +(122,522,o), +(129,513,o), +(142,513,cs) +); +} +); +width = 369; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(372,395,ls), +(385,395,o), +(396,404,o), +(399,417,cs), +(427,549,ls), +(430,562,o), +(423,571,o), +(410,571,cs), +(155,571,ls), +(142,571,o), +(131,562,o), +(128,549,cs), +(100,417,ls), +(97,404,o), +(104,395,o), +(117,395,cs) +); +} +); +width = 419; +} +); +unicode = 1470; +}, +{ +color = 6; +glyphname = period; +kernLeft = period; +kernRight = period; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(83,0,ls), +(96,0,o), +(107,9,o), +(110,22,cs), +(120,70,ls), +(123,83,o), +(115,93,o), +(102,93,cs), +(54,93,ls), +(41,93,o), +(30,83,o), +(27,70,cs), +(17,22,ls), +(14,9,o), +(22,0,o), +(35,0,cs) +); +} +); +width = 234; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,0,ls), +(196,0,o), +(210,12,o), +(213,27,cs), +(250,201,ls), +(253,216,o), +(244,228,o), +(229,228,cs), +(55,228,ls), +(40,228,o), +(25,216,o), +(22,201,cs), +(-15,27,ls), +(-18,12,o), +(-8,0,o), +(7,0,cs) +); +} +); +width = 310; +} +); +unicode = 46; +}, +{ +color = 6; +glyphname = comma; +kernLeft = period; +kernRight = period; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-11,-54,ls), +(-16,-66,o), +(-12,-75,o), +(-1,-75,c), +(16,-75,l), +(31,-75,o), +(38,-68,o), +(46,-54,cs), +(119,73,ls), +(125,83,o), +(118,93,o), +(109,93,c), +(64,93,l), +(48,93,o), +(40,82,o), +(34,66,cs) +); +} +); +width = 237; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(-54,-51,ls), +(-58,-63,o), +(-48,-75,o), +(-37,-75,cs), +(74,-75,ls), +(100,-75,o), +(115,-56,o), +(123,-43,cs), +(270,199,ls), +(277,211,o), +(272,228,o), +(255,228,cs), +(85,228,ls), +(58,228,o), +(41,207,o), +(34,189,cs) +); +} +); +width = 315; +} +); +unicode = 44; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-75"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 93; +} +); +}; +}, +{ +color = 6; +glyphname = colon; +kernLeft = colon; +kernRight = colon; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(156,350,ls), +(169,350,o), +(181,359,o), +(184,372,cs), +(194,420,ls), +(197,433,o), +(189,443,o), +(176,443,cs), +(128,443,ls), +(115,443,o), +(104,433,o), +(101,420,cs), +(91,372,ls), +(88,359,o), +(95,350,o), +(108,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(82,0,ls), +(95,0,o), +(106,9,o), +(109,22,cs), +(119,70,ls), +(122,83,o), +(114,93,o), +(101,93,cs), +(53,93,ls), +(40,93,o), +(29,83,o), +(26,70,cs), +(16,22,ls), +(13,9,o), +(21,0,o), +(34,0,cs) +); +} +); +width = 242; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(260,350,ls), +(275,350,o), +(289,362,o), +(293,377,cs), +(327,541,ls), +(331,556,o), +(321,568,o), +(306,568,cs), +(132,568,ls), +(117,568,o), +(103,556,o), +(99,541,cs), +(65,377,ls), +(61,362,o), +(71,350,o), +(86,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,0,ls), +(201,0,o), +(215,12,o), +(218,27,cs), +(253,191,ls), +(256,206,o), +(247,218,o), +(232,218,cs), +(58,218,ls), +(43,218,o), +(28,206,o), +(25,191,cs), +(-10,27,ls), +(-13,12,o), +(-3,0,o), +(12,0,cs) +); +} +); +width = 322; +} +); +unicode = 58; +}, +{ +color = 6; +glyphname = semicolon; +kernLeft = colon; +kernRight = colon; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(40,-75,ls), +(55,-75,o), +(62,-67,o), +(71,-54,c), +(138,59,ls), +(142,66,o), +(145,72,o), +(146,77,cs), +(147,85,o), +(143,93,o), +(134,93,cs), +(89,93,ls), +(73,93,o), +(64,82,o), +(58,66,cs), +(14,-54,ls), +(9,-66,o), +(12,-75,o), +(23,-75,cs) +); +}, +{ +closed = 1; +nodes = ( +(182,350,ls), +(195,350,o), +(207,359,o), +(209,372,cs), +(219,420,ls), +(222,433,o), +(214,443,o), +(201,443,cs), +(153,443,ls), +(140,443,o), +(129,433,o), +(126,420,cs), +(116,372,ls), +(114,359,o), +(121,350,o), +(134,350,cs) +); +} +); +width = 259; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,-75,ls), +(103,-75,o), +(119,-56,o), +(127,-43,cs), +(274,199,ls), +(275,202,o), +(276,204,o), +(276,206,cs), +(279,218,o), +(271,228,o), +(259,228,cs), +(99,228,ls), +(72,228,o), +(54,207,o), +(47,189,c), +(-41,-53,l), +(-44,-65,o), +(-36,-75,o), +(-24,-75,cs) +); +}, +{ +closed = 1; +nodes = ( +(288,350,ls), +(303,350,o), +(317,362,o), +(320,377,cs), +(355,541,ls), +(358,556,o), +(349,568,o), +(334,568,cs), +(160,568,ls), +(145,568,o), +(130,556,o), +(127,541,cs), +(92,377,ls), +(89,362,o), +(99,350,o), +(114,350,cs) +); +} +); +width = 325; +} +); +unicode = 59; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 171; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = ellipsis; +kernLeft = period; +kernRight = period; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(94,0,ls), +(107,0,o), +(119,9,o), +(122,22,cs), +(132,70,ls), +(135,83,o), +(127,93,o), +(114,93,cs), +(66,93,ls), +(53,93,o), +(42,83,o), +(39,70,cs), +(29,22,ls), +(26,9,o), +(33,0,o), +(46,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,0,ls), +(270,0,o), +(282,9,o), +(285,22,cs), +(295,70,ls), +(298,83,o), +(290,93,o), +(277,93,cs), +(229,93,ls), +(216,93,o), +(205,83,o), +(202,70,cs), +(192,22,ls), +(189,9,o), +(196,0,o), +(209,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(420,0,ls), +(433,0,o), +(445,9,o), +(448,22,cs), +(458,70,ls), +(461,83,o), +(453,93,o), +(440,93,cs), +(392,93,ls), +(379,93,o), +(368,83,o), +(365,70,cs), +(355,22,ls), +(352,9,o), +(359,0,o), +(372,0,cs) +); +} +); +width = 564; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(173,0,ls), +(188,0,o), +(203,12,o), +(206,27,cs), +(239,181,ls), +(242,196,o), +(232,208,o), +(217,208,cs), +(63,208,l), +(48,208,o), +(34,196,o), +(31,181,cs), +(-2,27,ls), +(-5,12,o), +(4,0,o), +(19,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(451,0,ls), +(466,0,o), +(481,12,o), +(484,27,cs), +(517,181,ls), +(520,196,o), +(510,208,o), +(495,208,cs), +(341,208,l), +(326,208,o), +(312,196,o), +(309,181,cs), +(276,27,ls), +(273,12,o), +(282,0,o), +(297,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(729,0,ls), +(744,0,o), +(759,12,o), +(762,27,cs), +(795,181,ls), +(798,196,o), +(788,208,o), +(773,208,cs), +(619,208,l), +(604,208,o), +(590,196,o), +(587,181,cs), +(554,27,ls), +(551,12,o), +(560,0,o), +(575,0,cs) +); +} +); +width = 846; +} +); +unicode = 8230; +}, +{ +color = 6; +glyphname = exclam; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(90,143,ls), +(103,143,o), +(114,152,o), +(117,165,cs), +(226,678,ls), +(228,691,o), +(221,700,o), +(208,700,cs), +(191,700,ls), +(178,700,o), +(167,691,o), +(165,678,cs), +(56,165,ls), +(53,152,o), +(60,143,o), +(73,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(70,0,ls), +(83,0,o), +(94,9,o), +(97,22,cs), +(105,60,ls), +(108,73,o), +(100,83,o), +(87,83,cs), +(49,83,ls), +(36,83,o), +(25,73,o), +(22,60,cs), +(14,22,ls), +(11,9,o), +(19,0,o), +(32,0,cs) +); +} +); +width = 227; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(245,268,ls), +(260,268,o), +(275,280,o), +(278,295,cs), +(359,673,ls), +(362,688,o), +(352,700,o), +(337,700,cs), +(163,700,ls), +(148,700,o), +(134,688,o), +(131,673,cs), +(50,295,ls), +(47,280,o), +(56,268,o), +(71,268,cs) +); +}, +{ +closed = 1; +nodes = ( +(189,0,ls), +(204,0,o), +(218,12,o), +(221,27,cs), +(258,201,ls), +(261,216,o), +(252,228,o), +(237,228,cs), +(63,228,ls), +(48,228,o), +(33,216,o), +(30,201,cs), +(-7,27,ls), +(-10,12,o), +(0,0,o), +(15,0,cs) +); +} +); +width = 329; +} +); +unicode = 33; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 143; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 83; +} +); +}; +}, +{ +color = 6; +glyphname = exclamdown; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(293,376,ls), +(280,376,o), +(269,367,o), +(266,354,cs), +(157,-159,ls), +(155,-172,o), +(162,-181,o), +(175,-181,cs), +(192,-181,ls), +(205,-181,o), +(216,-172,o), +(218,-159,cs), +(327,354,ls), +(330,367,o), +(323,376,o), +(310,376,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,519,ls), +(300,519,o), +(289,510,o), +(286,497,cs), +(278,459,ls), +(275,446,o), +(283,436,o), +(296,436,cs), +(334,436,ls), +(347,436,o), +(358,446,o), +(361,459,cs), +(369,497,ls), +(372,510,o), +(364,519,o), +(351,519,cs) +); +} +); +width = 217; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(244,249,ls), +(229,249,o), +(214,237,o), +(211,222,cs), +(130,-156,ls), +(127,-171,o), +(137,-183,o), +(152,-183,cs), +(326,-183,ls), +(341,-183,o), +(355,-171,o), +(358,-156,cs), +(439,222,ls), +(442,237,o), +(433,249,o), +(418,249,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,517,ls), +(285,517,o), +(271,505,o), +(268,490,cs), +(231,316,ls), +(228,301,o), +(237,289,o), +(252,289,cs), +(426,289,ls), +(441,289,o), +(456,301,o), +(459,316,cs), +(496,490,ls), +(499,505,o), +(489,517,o), +(474,517,cs) +); +} +); +width = 324; +} +); +unicode = 161; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 352; +} +); +}; +}, +{ +color = 6; +glyphname = question; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(246,143,ls), +(259,143,o), +(270,152,o), +(272,165,cs), +(276,181,o), +(279,197,o), +(282,213,cs), +(308,334,o), +(487,383,o), +(526,523,cs), +(553,617,o), +(504,710,o), +(357,710,cs), +(230,710,o), +(121,622,o), +(95,511,cs), +(92,499,o), +(100,491,o), +(112,491,cs), +(128,491,ls), +(138,491,o), +(149,495,o), +(156,513,cs), +(195,615,o), +(267,652,o), +(345,652,cs), +(423,652,o), +(493,605,o), +(465,522,cs), +(430,417,o), +(254,366,o), +(221,213,cs), +(218,197,o), +(215,181,o), +(211,165,cs), +(209,152,o), +(216,143,o), +(229,143,c) +); +}, +{ +closed = 1; +nodes = ( +(224,0,ls), +(237,0,o), +(249,9,o), +(252,22,cs), +(260,60,ls), +(263,73,o), +(255,83,o), +(242,83,cs), +(204,83,ls), +(191,83,o), +(180,73,o), +(177,60,cs), +(169,22,ls), +(166,9,o), +(173,0,o), +(186,0,cs) +); +} +); +width = 503; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(445,253,ls), +(462,253,o), +(469,262,o), +(487,282,cs), +(491,287,o), +(496,291,o), +(501,296,cs), +(564,357,o), +(668,416,o), +(690,523,cs), +(704,587,o), +(680,710,o), +(449,710,cs), +(227,710,o), +(103,585,o), +(78,484,cs), +(74,465,o), +(82,453,o), +(96,453,cs), +(282,453,ls), +(304,453,o), +(314,465,o), +(324,478,cs), +(336,495,o), +(350,515,o), +(390,515,cs), +(410,515,o), +(421,503,o), +(417,483,cs), +(407,435,o), +(267,372,o), +(219,279,cs), +(217,276,o), +(216,274,o), +(216,271,cs), +(214,262,o), +(221,253,o), +(231,253,cs) +); +}, +{ +closed = 1; +nodes = ( +(370,0,ls), +(385,0,o), +(400,12,o), +(403,27,cs), +(437,186,ls), +(440,201,o), +(430,213,o), +(415,213,cs), +(232,213,l), +(217,213,o), +(203,201,o), +(200,186,cs), +(166,27,ls), +(163,12,o), +(172,0,o), +(187,0,cs) +); +} +); +width = 653; +} +); +unicode = 63; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 605; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 304; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 236; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 270; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = questiondown; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(416,377,ls), +(403,377,o), +(392,368,o), +(390,355,cs), +(386,339,o), +(383,323,o), +(380,307,cs), +(354,186,o), +(175,137,o), +(136,-3,cs), +(109,-97,o), +(158,-190,o), +(305,-190,cs), +(432,-190,o), +(541,-102,o), +(567,9,cs), +(570,21,o), +(562,29,o), +(550,29,cs), +(534,29,ls), +(524,29,o), +(513,25,o), +(506,7,cs), +(467,-95,o), +(395,-132,o), +(317,-132,cs), +(239,-132,o), +(169,-85,o), +(197,-2,cs), +(232,103,o), +(408,154,o), +(441,307,cs), +(444,323,o), +(447,339,o), +(451,355,cs), +(453,368,o), +(446,377,o), +(433,377,c) +); +}, +{ +closed = 1; +nodes = ( +(438,520,ls), +(425,520,o), +(413,511,o), +(410,498,cs), +(402,460,ls), +(399,447,o), +(407,437,o), +(420,437,cs), +(458,437,ls), +(471,437,o), +(482,447,o), +(485,460,cs), +(493,498,ls), +(496,511,o), +(489,520,o), +(476,520,cs) +); +} +); +width = 496; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(366,265,ls), +(349,265,o), +(342,256,o), +(324,236,cs), +(320,231,o), +(315,227,o), +(310,222,cs), +(247,161,o), +(143,102,o), +(121,-5,cs), +(107,-69,o), +(131,-192,o), +(362,-192,cs), +(584,-192,o), +(708,-67,o), +(733,34,cs), +(737,53,o), +(729,65,o), +(715,65,cs), +(529,65,ls), +(507,65,o), +(497,53,o), +(487,40,cs), +(475,23,o), +(461,3,o), +(421,3,cs), +(401,3,o), +(390,15,o), +(394,35,cs), +(404,83,o), +(544,146,o), +(592,239,cs), +(594,242,o), +(595,244,o), +(595,247,cs), +(597,256,o), +(590,265,o), +(580,265,cs) +); +}, +{ +closed = 1; +nodes = ( +(441,518,ls), +(426,518,o), +(411,506,o), +(408,491,cs), +(374,332,ls), +(371,317,o), +(381,305,o), +(396,305,cs), +(579,305,l), +(594,305,o), +(608,317,o), +(611,332,cs), +(645,491,ls), +(648,506,o), +(639,518,o), +(624,518,cs) +); +} +); +width = 649; +} +); +unicode = 191; +}, +{ +color = 6; +glyphname = periodcentered; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(52,245,o), +(87,200,o), +(142,200,cs), +(197,200,o), +(252,245,o), +(263,300,cs), +(275,355,o), +(240,400,o), +(185,400,cs), +(130,400,o), +(75,355,o), +(63,300,cs) +); +} +); +width = 326; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(29,243,o), +(78,180,o), +(155,180,cs), +(232,180,o), +(309,243,o), +(325,320,cs), +(341,397,o), +(292,460,o), +(215,460,cs), +(138,460,o), +(61,397,o), +(45,320,cs) +); +} +); +width = 344; +} +); +unicode = 183; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +} +); +}; +}, +{ +color = 6; +glyphname = bullet; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(77,245,o), +(112,200,o), +(167,200,cs), +(222,200,o), +(277,245,o), +(288,300,cs), +(300,355,o), +(265,400,o), +(210,400,cs), +(155,400,o), +(100,355,o), +(88,300,cs) +); +} +); +width = 376; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,273,o), +(98,210,o), +(175,210,cs), +(252,210,o), +(329,273,o), +(345,350,cs), +(361,427,o), +(312,490,o), +(235,490,cs), +(158,490,o), +(81,427,o), +(65,350,cs) +); +} +); +width = 387; +} +); +unicode = 8226; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 150; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = asterisk; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(175,650,ls), +(167,655,o), +(153,654,o), +(145,640,cs), +(122,599,l), +(113,583,o), +(124,571,o), +(138,569,cs), +(239,556,l), +(147,484,ls), +(135,475,o), +(125,460,o), +(138,448,cs), +(166,422,ls), +(178,411,o), +(192,420,o), +(200,431,cs), +(269,531,l), +(295,435,l), +(298,420,o), +(312,414,o), +(327,423,cs), +(366,448,l), +(381,458,o), +(380,473,o), +(371,484,cs), +(309,555,l), +(420,570,l), +(436,572,o), +(448,578,o), +(446,596,cs), +(441,637,ls), +(438,657,o), +(420,653,o), +(408,647,cs), +(304,596,l), +(346,700,ls), +(351,713,o), +(350,730,o), +(331,730,cs), +(292,730,l), +(276,729,o), +(264,717,o), +(264,700,c), +(261,597,l) +); +} +); +width = 446; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,672,ls), +(171,680,o), +(151,675,o), +(144,661,cs), +(82,547,l), +(74,532,o), +(83,517,o), +(97,517,c), +(170,515,l), +(103,471,ls), +(91,463,o), +(83,446,o), +(95,435,c), +(176,363,l), +(189,352,o), +(208,364,o), +(214,375,c), +(253,444,l), +(262,375,ls), +(264,357,o), +(284,355,o), +(296,363,c), +(407,435,l), +(421,444,o), +(425,462,o), +(415,471,cs), +(366,515,l), +(439,517,l), +(454,517,o), +(470,531,o), +(468,547,cs), +(454,661,ls), +(452,678,o), +(433,679,o), +(421,672,cs), +(353,631,l), +(388,700,l), +(394,712,o), +(391,730,o), +(374,730,cs), +(254,730,ls), +(238,730,o), +(225,714,o), +(226,700,c), +(232,631,l) +); +} +); +width = 444; +} +); +unicode = 42; +}, +{ +color = 6; +glyphname = numbersign; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(163,39,l), +(176,39,o), +(185,48,o), +(190,60,c), +(237,191,l), +(404,191,l), +(356,60,l), +(351,48,o), +(360,39,o), +(372,39,c), +(390,39,l), +(403,39,o), +(412,48,o), +(417,60,c), +(464,191,l), +(593,191,l), +(606,191,o), +(617,200,o), +(619,213,c), +(622,227,l), +(625,240,o), +(618,249,o), +(605,249,c), +(485,249,l), +(556,445,l), +(673,445,l), +(686,445,o), +(697,454,o), +(699,467,c), +(702,481,l), +(705,494,o), +(698,503,o), +(685,503,c), +(576,503,l), +(624,634,l), +(628,646,o), +(620,655,o), +(608,655,c), +(590,655,l), +(577,655,o), +(568,645,o), +(564,634,c), +(516,503,l), +(349,503,l), +(397,634,l), +(401,646,o), +(393,655,o), +(381,655,c), +(363,655,l), +(350,655,o), +(341,645,o), +(337,634,c), +(289,503,l), +(158,503,l), +(145,503,o), +(134,494,o), +(131,481,c), +(128,467,l), +(126,454,o), +(133,445,o), +(146,445,c), +(268,445,l), +(197,249,l), +(78,249,l), +(65,249,o), +(54,240,o), +(51,227,c), +(48,213,l), +(46,200,o), +(53,191,o), +(66,191,c), +(177,191,l), +(129,60,l), +(124,48,o), +(133,39,o), +(145,39,c) +); +}, +{ +closed = 1; +nodes = ( +(329,445,l), +(495,445,l), +(424,249,l), +(258,249,l) +); +} +); +width = 701; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(199,39,l), +(212,39,o), +(223,48,o), +(228,60,c), +(255,136,l), +(319,136,l), +(292,61,l), +(290,49,o), +(298,39,o), +(310,39,c), +(426,39,l), +(439,39,o), +(450,48,o), +(455,60,c), +(482,136,l), +(566,136,l), +(580,136,o), +(593,147,o), +(596,161,c), +(622,279,l), +(624,293,o), +(616,304,o), +(602,304,c), +(543,304,l), +(574,390,l), +(646,390,l), +(660,390,o), +(673,401,o), +(676,415,c), +(702,533,l), +(704,547,o), +(696,558,o), +(682,558,c), +(635,558,l), +(662,633,l), +(664,645,o), +(656,655,o), +(644,655,c), +(528,655,l), +(515,655,o), +(504,645,o), +(500,634,c), +(472,558,l), +(408,558,l), +(435,633,l), +(437,645,o), +(429,655,o), +(417,655,c), +(301,655,l), +(288,655,o), +(277,645,o), +(273,634,c), +(245,558,l), +(161,558,l), +(147,558,o), +(133,547,o), +(131,533,c), +(105,415,l), +(102,401,o), +(111,390,o), +(125,390,c), +(184,390,l), +(153,304,l), +(81,304,l), +(67,304,o), +(53,293,o), +(51,279,c), +(25,161,l), +(22,147,o), +(31,136,o), +(45,136,c), +(92,136,l), +(65,61,ls), +(61,49,o), +(71,39,o), +(83,39,c) +); +}, +{ +closed = 1; +nodes = ( +(347,390,l), +(411,390,l), +(380,304,l), +(316,304,l) +); +} +); +width = 677; +} +); +unicode = 35; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 474; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 220; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 482; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 255; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = slash; +kernLeft = slash; +kernRight = slash; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-14,-84,l), +(-1,-84,o), +(8,-74,o), +(11,-69,c), +(532,757,l), +(544,775,o), +(532,786,o), +(519,786,c), +(502,786,l), +(489,786,o), +(480,776,o), +(477,771,c), +(-44,-55,l), +(-56,-73,o), +(-44,-84,o), +(-31,-84,c) +); +} +); +width = 465; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(98,-84,ls), +(125,-84,o), +(140,-67,o), +(148,-54,cs), +(658,755,ls), +(666,768,o), +(666,786,o), +(645,786,cs), +(508,786,ls), +(483,786,o), +(466,770,o), +(457,756,cs), +(-50,-53,ls), +(-59,-67,o), +(-52,-84,o), +(-36,-84,cs) +); +} +); +width = 584; +} +); +unicode = 47; +}, +{ +color = 6; +glyphname = backslash; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(339,-84,ls), +(352,-84,o), +(360,-75,o), +(357,-62,cs), +(187,764,ls), +(184,777,o), +(177,786,o), +(161,786,cs), +(144,786,ls), +(131,786,o), +(123,777,o), +(126,764,cs), +(296,-62,l), +(299,-75,o), +(306,-84,o), +(322,-84,cs) +); +} +); +width = 461; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(440,-84,ls), +(458,-84,o), +(469,-68,o), +(466,-53,cs), +(303,756,ls), +(300,770,o), +(291,786,o), +(266,786,cs), +(147,786,ls), +(128,786,o), +(117,771,o), +(120,755,cs), +(286,-54,l), +(288,-67,o), +(297,-84,o), +(324,-84,cs) +); +} +); +width = 563; +} +); +unicode = 92; +}, +{ +color = 6; +glyphname = periodcentered.loclCAT; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(66,313,ls), +(79,313,o), +(90,322,o), +(93,335,c), +(104,383,l), +(107,396,o), +(98,406,o), +(85,406,cs), +(37,406,ls), +(24,406,o), +(14,396,o), +(11,383,cs), +(0,335,ls), +(-3,322,o), +(5,313,o), +(18,313,c) +); +} +); +width = 80; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(157,272,ls), +(170,272,o), +(182,282,o), +(185,295,cs), +(213,426,ls), +(216,439,o), +(208,449,o), +(195,449,cs), +(64,449,l), +(51,449,o), +(39,439,o), +(36,426,cs), +(8,295,ls), +(5,282,o), +(13,272,o), +(26,272,cs) +); +} +); +width = 192; +} +); +}, +{ +color = 6; +glyphname = periodcentered.loclCAT.case; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-121,313,ls), +(-108,313,o), +(-97,322,o), +(-94,335,c), +(-83,383,l), +(-80,396,o), +(-89,406,o), +(-102,406,cs), +(-150,406,ls), +(-163,406,o), +(-173,396,o), +(-176,383,cs), +(-187,335,ls), +(-190,322,o), +(-182,313,o), +(-169,313,c) +); +} +); +width = 0; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(-58,309,ls), +(-45,309,o), +(-33,319,o), +(-30,332,cs), +(-1,468,ls), +(2,481,o), +(-6,491,o), +(-19,491,cs), +(-155,491,ls), +(-168,491,o), +(-180,481,o), +(-183,468,cs), +(-212,332,ls), +(-215,319,o), +(-207,309,o), +(-194,309,cs) +); +} +); +width = 6; +} +); +}, +{ +color = 6; +glyphname = hyphen; +kernLeft = hyphen; +kernRight = hyphen; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(385,271,ls), +(398,271,o), +(409,280,o), +(412,293,cs), +(415,307,ls), +(418,320,o), +(410,329,o), +(397,329,cs), +(102,329,ls), +(89,329,o), +(79,320,o), +(76,307,cs), +(73,293,ls), +(70,280,o), +(77,271,o), +(90,271,cs) +); +} +); +width = 488; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(376,202,ls), +(391,202,o), +(406,214,o), +(409,229,cs), +(439,371,ls), +(443,386,o), +(433,398,o), +(418,398,cs), +(93,398,ls), +(78,398,o), +(64,386,o), +(60,371,cs), +(30,229,ls), +(27,214,o), +(36,202,o), +(51,202,cs) +); +} +); +width = 469; +} +); +unicode = 45; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +} +); +}; +}, +{ +color = 10; +glyphname = softhyphen; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = hyphen; +} +); +width = 600; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = hyphen; +} +); +width = 600; +} +); +unicode = 173; +}, +{ +color = 6; +glyphname = endash; +kernLeft = hyphen; +kernRight = hyphen; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(475,271,ls), +(488,271,o), +(499,280,o), +(502,293,cs), +(505,307,ls), +(508,320,o), +(500,329,o), +(487,329,cs), +(102,329,ls), +(89,329,o), +(79,320,o), +(76,307,cs), +(73,293,ls), +(70,280,o), +(77,271,o), +(90,271,cs) +); +} +); +width = 578; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(466,202,ls), +(481,202,o), +(496,214,o), +(499,229,cs), +(529,371,ls), +(533,386,o), +(523,398,o), +(508,398,cs), +(93,398,ls), +(78,398,o), +(64,386,o), +(60,371,cs), +(30,229,ls), +(27,214,o), +(36,202,o), +(51,202,cs) +); +} +); +width = 559; +} +); +unicode = 8211; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +} +); +}; +}, +{ +color = 6; +glyphname = emdash; +kernLeft = hyphen; +kernRight = hyphen; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(665,271,l), +(678,271,o), +(689,280,o), +(692,293,cs), +(695,307,ls), +(698,320,o), +(690,329,o), +(677,329,c), +(102,329,ls), +(89,329,o), +(79,320,o), +(76,307,cs), +(73,293,ls), +(70,280,o), +(77,271,o), +(90,271,cs) +); +} +); +width = 768; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(656,202,ls), +(671,202,o), +(686,214,o), +(689,229,cs), +(719,371,ls), +(723,386,o), +(713,398,o), +(698,398,cs), +(93,398,ls), +(78,398,o), +(64,386,o), +(60,371,cs), +(30,229,ls), +(27,214,o), +(36,202,o), +(51,202,cs) +); +} +); +width = 749; +} +); +unicode = 8212; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +} +); +}; +}, +{ +color = 6; +glyphname = underscore; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(599,-28,l), +(612,-28,o), +(622,-19,o), +(625,-6,cs), +(628,8,ls), +(631,21,o), +(624,30,o), +(611,30,cs), +(36,30,ls), +(23,30,o), +(12,21,o), +(9,8,cs), +(6,-6,ls), +(3,-19,o), +(11,-28,o), +(24,-28,cs) +); +} +); +width = 749; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(583,-98,ls), +(598,-98,o), +(612,-86,o), +(615,-71,cs), +(646,71,ls), +(649,86,o), +(639,98,o), +(624,98,cs), +(19,98,ls), +(4,98,o), +(-10,86,o), +(-13,71,cs), +(-44,-71,ls), +(-47,-86,o), +(-37,-98,o), +(-22,-98,cs) +); +} +); +width = 724; +} +); +unicode = 95; +}, +{ +color = 6; +glyphname = hyphen.case; +kernLeft = hyphen.cap; +kernRight = hyphen.cap; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(398,321,ls), +(411,321,o), +(422,330,o), +(425,343,cs), +(428,357,ls), +(431,370,o), +(423,379,o), +(410,379,cs), +(115,379,ls), +(102,379,o), +(92,370,o), +(89,357,cs), +(86,343,ls), +(83,330,o), +(90,321,o), +(103,321,cs) +); +} +); +width = 495; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(393,252,ls), +(408,252,o), +(423,264,o), +(426,279,cs), +(456,421,l), +(460,436,o), +(450,448,o), +(435,448,cs), +(110,448,ls), +(95,448,o), +(81,436,o), +(77,421,c), +(47,279,ls), +(44,264,o), +(53,252,o), +(68,252,cs) +); +} +); +width = 482; +} +); +}, +{ +color = 6; +glyphname = endash.case; +kernLeft = hyphen.cap; +kernRight = hyphen.cap; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(488,321,ls), +(501,321,o), +(512,330,o), +(515,343,cs), +(518,357,ls), +(521,370,o), +(513,379,o), +(500,379,cs), +(115,379,ls), +(102,379,o), +(92,370,o), +(89,357,cs), +(86,343,ls), +(83,330,o), +(90,321,o), +(103,321,cs) +); +} +); +width = 585; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,252,ls), +(498,252,o), +(513,264,o), +(516,279,cs), +(546,421,l), +(550,436,o), +(540,448,o), +(525,448,cs), +(110,448,ls), +(95,448,o), +(81,436,o), +(77,421,c), +(47,279,ls), +(44,264,o), +(53,252,o), +(68,252,cs) +); +} +); +width = 572; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +} +); +}; +}, +{ +color = 6; +glyphname = emdash.case; +kernLeft = hyphen.cap; +kernRight = hyphen.cap; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(678,321,l), +(691,321,o), +(702,330,o), +(705,343,cs), +(708,357,ls), +(711,370,o), +(703,379,o), +(690,379,c), +(115,379,ls), +(102,379,o), +(92,370,o), +(89,357,cs), +(86,343,ls), +(83,330,o), +(90,321,o), +(103,321,cs) +); +} +); +width = 775; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(673,252,ls), +(688,252,o), +(703,264,o), +(706,279,cs), +(736,421,l), +(740,436,o), +(730,448,o), +(715,448,cs), +(110,448,ls), +(95,448,o), +(81,436,o), +(77,421,c), +(47,279,ls), +(44,264,o), +(53,252,o), +(68,252,cs) +); +} +); +width = 762; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +} +); +}; +}, +{ +color = 6; +glyphname = parenleftinferior; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(17,-169,o), +(9,-109,o), +(35,11,cs), +(60,131,o), +(98,189,o), +(143,189,cs), +(160,189,o), +(171,197,o), +(175,212,c), +(177,223,l), +(180,238,o), +(173,245,o), +(158,245,cs), +(62,245,o), +(13,183,o), +(-23,11,cs), +(-60,-161,o), +(-18,-225,o), +(58,-225,cs), +(73,-225,o), +(82,-218,o), +(86,-203,cs), +(89,-192,l), +(93,-177,o), +(84,-169,o), +(67,-169,cs) +); +} +); +width = 219; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(76,-103,o), +(66,-62,o), +(82,10,cs), +(97,82,o), +(124,123,o), +(173,134,cs), +(188,137,o), +(201,140,o), +(204,155,cs), +(219,223,ls), +(222,238,o), +(215,245,o), +(200,245,cs), +(87,245,o), +(4,203,o), +(-36,15,cs), +(-76,-173,o), +(47,-225,o), +(100,-225,cs), +(115,-225,o), +(125,-218,o), +(128,-203,cs), +(143,-135,ls), +(146,-120,o), +(134,-117,o), +(120,-114,cs) +); +} +); +width = 258; +} +); +unicode = 8333; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 245; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 5; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 83; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 205; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = parenrightinferior; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(35,-225,o), +(84,-163,o), +(120,9,cs), +(157,181,o), +(115,245,o), +(39,245,cs), +(24,245,o), +(15,238,o), +(11,223,cs), +(8,212,ls), +(4,197,o), +(13,189,o), +(30,189,cs), +(80,189,o), +(88,129,o), +(62,9,cs), +(37,-111,o), +(-1,-169,o), +(-46,-169,cs), +(-63,-169,o), +(-74,-177,o), +(-78,-192,cs), +(-80,-203,ls), +(-83,-218,o), +(-76,-225,o), +(-61,-225,cs) +); +} +); +width = 219; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(50,-225,o), +(135,-186,o), +(175,2,cs), +(215,190,o), +(90,245,o), +(37,245,cs), +(22,245,o), +(11,238,o), +(8,223,cs), +(-7,155,ls), +(-10,140,o), +(3,137,o), +(16,134,cs), +(61,123,o), +(70,82,o), +(55,10,cs), +(39,-62,o), +(13,-103,o), +(-37,-114,cs), +(-51,-117,o), +(-65,-120,o), +(-68,-135,cs), +(-82,-203,ls), +(-85,-218,o), +(-77,-225,o), +(-63,-225,cs) +); +} +); +width = 262; +} +); +unicode = 8334; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 245; +} +); +}; +}, +{ +color = 6; +glyphname = parenleft; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(186,-159,o), +(198,-149,o), +(200,-137,cs), +(203,-123,ls), +(206,-111,o), +(198,-101,o), +(189,-101,cs), +(77,-101,o), +(57,-8,o), +(124,309,cs), +(192,626,o), +(251,718,o), +(363,718,cs), +(372,718,o), +(384,728,o), +(387,740,cs), +(390,754,ls), +(392,766,o), +(384,776,o), +(372,776,cs), +(193,776,o), +(134,632,o), +(65,309,cs), +(-3,-14,o), +(15,-159,o), +(174,-159,cs) +); +} +); +width = 317; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(293,-159,o), +(307,-147,o), +(310,-132,cs), +(337,-5,ls), +(341,10,o), +(331,21,o), +(316,22,cs), +(210,32,o), +(213,165,o), +(243,309,cs), +(274,453,o), +(328,585,o), +(438,595,cs), +(453,596,o), +(468,607,o), +(471,622,cs), +(498,749,ls), +(501,764,o), +(491,776,o), +(476,776,cs), +(234,776,o), +(104,649,o), +(32,309,cs), +(-40,-31,o), +(136,-159,o), +(278,-159,cs) +); +} +); +width = 423; +} +); +unicode = 40; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-159"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 776; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 309; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 300; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = parenright; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(128,-159,o), +(187,-15,o), +(256,308,cs), +(324,631,o), +(306,776,o), +(147,776,cs), +(135,776,o), +(123,766,o), +(121,754,cs), +(118,740,ls), +(115,728,o), +(123,718,o), +(132,718,cs), +(244,718,o), +(264,625,o), +(197,308,cs), +(129,-9,o), +(70,-101,o), +(-42,-101,cs), +(-51,-101,o), +(-63,-111,o), +(-66,-123,cs), +(-69,-137,ls), +(-71,-149,o), +(-63,-159,o), +(-51,-159,cs) +); +} +); +width = 317; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(214,-159,o), +(324,-31,o), +(396,309,cs), +(468,649,o), +(292,776,o), +(150,776,cs), +(135,776,o), +(121,764,o), +(118,749,cs), +(91,622,ls), +(88,607,o), +(97,596,o), +(112,595,cs), +(218,585,o), +(216,453,o), +(185,309,cs), +(155,165,o), +(100,32,o), +(-10,22,cs), +(-25,21,o), +(-39,10,o), +(-43,-5,cs), +(-70,-132,ls), +(-72,-147,o), +(-63,-159,o), +(-48,-159,cs) +); +} +); +width = 422; +} +); +unicode = 41; +}, +{ +color = 6; +glyphname = braceleft; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (2, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(212,-159,ls), +(225,-159,o), +(236,-150,o), +(239,-137,cs), +(242,-123,ls), +(245,-110,o), +(238,-101,o), +(225,-101,cs), +(220,-101,ls), +(117,-100,o), +(128,-27,o), +(167,152,cs), +(183,230,o), +(170,278,o), +(125,309,c), +(183,340,o), +(217,388,o), +(233,466,cs), +(271,645,o), +(291,717,o), +(394,718,cs), +(399,718,ls), +(412,718,o), +(423,727,o), +(426,740,cs), +(428,754,ls), +(431,767,o), +(424,776,o), +(411,776,cs), +(406,776,ls), +(249,776,o), +(216,670,o), +(177,487,cs), +(161,412,o), +(136,382,o), +(94,356,c), +(87,352,l), +(66,340,o), +(59,331,o), +(55,315,cs), +(53,303,ls), +(49,287,o), +(53,278,o), +(69,266,c), +(73,263,l), +(105,237,o), +(117,207,o), +(101,131,cs), +(62,-52,o), +(50,-159,o), +(207,-159,cs) +); +} +); +width = 344; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(347,-158,l), +(359,-158,o), +(371,-148,o), +(373,-136,cs), +(402,1,ls), +(405,13,o), +(397,22,o), +(388,23,c), +(383,24,l), +(315,33,o), +(269,63,o), +(285,142,cs), +(302,222,o), +(282,296,o), +(248,309,c), +(288,322,o), +(338,388,o), +(356,476,cs), +(373,556,o), +(433,585,o), +(507,595,c), +(510,595,l), +(519,596,o), +(531,605,o), +(533,617,cs), +(562,754,ls), +(565,766,o), +(557,776,o), +(545,776,c), +(538,776,l), +(383,773,o), +(191,687,o), +(149,487,cs), +(140,444,o), +(115,400,o), +(73,384,cs), +(54,377,ls), +(32,368,o), +(21,356,o), +(16,335,cs), +(5,283,ls), +(1,262,o), +(7,250,o), +(25,241,cs), +(41,234,ls), +(77,218,o), +(82,174,o), +(73,131,cs), +(30,-70,o), +(186,-156,o), +(342,-158,c) +); +} +); +width = 474; +} +); +unicode = 123; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 776; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-159"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 323; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = braceright; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (2, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(165,776,ls), +(152,776,o), +(141,767,o), +(138,754,cs), +(136,740,ls), +(133,727,o), +(140,718,o), +(153,718,cs), +(158,718,ls), +(261,717,o), +(249,644,o), +(211,465,cs), +(194,387,o), +(207,339,o), +(253,308,c), +(194,277,o), +(161,229,o), +(144,151,cs), +(106,-28,o), +(87,-100,o), +(-16,-101,cs), +(-21,-101,ls), +(-34,-101,o), +(-45,-110,o), +(-48,-123,cs), +(-51,-137,ls), +(-54,-150,o), +(-47,-159,o), +(-34,-159,cs), +(-29,-159,ls), +(128,-159,o), +(162,-53,o), +(201,130,cs), +(217,205,o), +(241,235,o), +(284,261,c), +(291,265,l), +(311,277,o), +(319,286,o), +(322,302,cs), +(325,314,ls), +(328,330,o), +(324,339,o), +(309,351,c), +(304,354,l), +(273,380,o), +(260,410,o), +(277,486,cs), +(315,669,o), +(327,776,o), +(170,776,cs) +); +} +); +width = 344; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,776,l), +(149,776,o), +(137,766,o), +(134,754,cs), +(105,617,ls), +(103,605,o), +(111,596,o), +(120,595,c), +(124,594,l), +(193,585,o), +(239,555,o), +(222,476,cs), +(205,396,o), +(226,322,o), +(260,309,c), +(220,296,o), +(170,230,o), +(151,142,cs), +(134,62,o), +(75,33,o), +(1,23,c), +(-2,23,l), +(-11,22,o), +(-23,13,o), +(-26,1,cs), +(-55,-136,ls), +(-57,-148,o), +(-49,-158,o), +(-37,-158,c), +(-30,-158,l), +(125,-155,o), +(317,-69,o), +(359,131,cs), +(368,174,o), +(393,218,o), +(435,234,cs), +(453,241,ls), +(475,250,o), +(487,262,o), +(491,283,cs), +(502,335,ls), +(507,356,o), +(500,368,o), +(482,377,cs), +(467,384,ls), +(431,400,o), +(426,444,o), +(435,487,cs), +(477,688,o), +(322,774,o), +(166,776,c) +); +} +); +width = 474; +} +); +unicode = 125; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-159"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 776; +} +); +}; +}, +{ +color = 6; +glyphname = bracketleft; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(156,-159,ls), +(169,-159,o), +(180,-150,o), +(182,-137,cs), +(185,-123,ls), +(188,-110,o), +(181,-101,o), +(168,-101,cs), +(56,-101,l), +(230,718,l), +(342,718,ls), +(355,718,o), +(366,727,o), +(369,740,cs), +(372,754,ls), +(375,767,o), +(367,776,o), +(354,776,cs), +(202,776,ls), +(189,776,o), +(179,767,o), +(176,754,cs), +(-14,-137,ls), +(-16,-150,o), +(-9,-159,o), +(4,-159,cs) +); +} +); +width = 301; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,-159,ls), +(299,-159,o), +(313,-147,o), +(316,-132,cs), +(348,15,ls), +(351,30,o), +(341,42,o), +(326,42,cs), +(207,42,l), +(325,593,l), +(444,593,ls), +(459,593,o), +(473,605,o), +(476,620,cs), +(504,749,ls), +(507,764,o), +(497,776,o), +(482,776,cs), +(179,776,ls), +(164,776,o), +(150,764,o), +(147,749,cs), +(-41,-132,ls), +(-44,-147,o), +(-34,-159,o), +(-19,-159,cs) +); +} +); +width = 431; +} +); +unicode = 91; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 776; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-159"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 141; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = bracketright; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(150,776,ls), +(137,776,o), +(127,767,o), +(124,754,cs), +(121,740,ls), +(118,727,o), +(125,718,o), +(138,718,cs), +(250,718,l), +(76,-101,l), +(-36,-101,ls), +(-49,-101,o), +(-60,-110,o), +(-63,-123,cs), +(-66,-137,ls), +(-67,-150,o), +(-61,-159,o), +(-48,-159,cs), +(103,-159,ls), +(116,-159,o), +(127,-150,o), +(129,-137,cs), +(319,754,ls), +(322,767,o), +(314,776,o), +(301,776,cs) +); +} +); +width = 300; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(152,776,ls), +(137,776,o), +(123,764,o), +(120,749,cs), +(92,620,ls), +(89,605,o), +(99,593,o), +(114,593,cs), +(233,593,l), +(115,42,l), +(-4,42,ls), +(-19,42,o), +(-33,30,o), +(-36,15,cs), +(-68,-132,ls), +(-70,-147,o), +(-61,-159,o), +(-46,-159,cs), +(257,-159,ls), +(272,-159,o), +(286,-147,o), +(289,-132,cs), +(477,749,ls), +(480,764,o), +(470,776,o), +(455,776,cs) +); +} +); +width = 431; +} +); +unicode = 93; +}, +{ +color = 10; +glyphname = parenleftsuperior; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +alignment = -1; +pos = (99,520); +ref = parenleftinferior; +} +); +width = 219; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +alignment = -1; +pos = (110,520); +ref = parenleftinferior; +} +); +width = 258; +} +); +unicode = 8317; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 765; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 295; +} +); +}; +}, +{ +color = 10; +glyphname = parenrightsuperior; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +alignment = -1; +pos = (110,520); +ref = parenrightinferior; +} +); +width = 219; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +alignment = -1; +pos = (110,520); +ref = parenrightinferior; +} +); +width = 262; +} +); +unicode = 8318; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 765; +} +); +}; +}, +{ +color = 6; +glyphname = parenleft.case; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(198,-117,o), +(210,-107,o), +(212,-95,cs), +(215,-81,ls), +(218,-69,o), +(210,-59,o), +(201,-59,cs), +(89,-59,o), +(69,34,o), +(136,351,cs), +(204,668,o), +(263,760,o), +(375,760,cs), +(384,760,o), +(396,770,o), +(399,782,cs), +(402,796,ls), +(404,808,o), +(396,818,o), +(384,818,cs), +(205,818,o), +(146,674,o), +(77,351,cs), +(9,28,o), +(27,-117,o), +(186,-117,cs) +); +} +); +width = 334; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(311,-117,o), +(325,-105,o), +(328,-90,cs), +(355,37,l), +(359,52,o), +(349,63,o), +(334,64,cs), +(228,74,o), +(231,207,o), +(261,351,cs), +(292,495,o), +(346,627,o), +(456,637,cs), +(471,638,o), +(486,649,o), +(489,664,cs), +(516,791,ls), +(519,806,o), +(509,818,o), +(494,818,cs), +(252,818,o), +(122,691,o), +(50,351,cs), +(-22,11,o), +(154,-117,o), +(296,-117,cs) +); +} +); +width = 446; +} +); +}, +{ +color = 6; +glyphname = parenright.case; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(150,-117,o), +(209,27,o), +(278,350,cs), +(346,673,o), +(328,818,o), +(169,818,cs), +(157,818,o), +(145,808,o), +(143,796,cs), +(140,782,ls), +(137,770,o), +(145,760,o), +(154,760,cs), +(266,760,o), +(286,667,o), +(219,350,cs), +(151,33,o), +(92,-59,o), +(-20,-59,cs), +(-29,-59,o), +(-41,-69,o), +(-44,-81,cs), +(-47,-95,ls), +(-49,-107,o), +(-41,-117,o), +(-29,-117,cs) +); +} +); +width = 333; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(237,-117,o), +(347,11,o), +(419,351,cs), +(491,691,o), +(315,818,o), +(173,818,cs), +(158,818,o), +(144,806,o), +(141,791,cs), +(114,664,ls), +(111,649,o), +(120,638,o), +(135,637,cs), +(241,627,o), +(239,495,o), +(208,351,cs), +(178,207,o), +(123,74,o), +(13,64,cs), +(-2,63,o), +(-16,52,o), +(-20,37,cs), +(-47,-90,ls), +(-49,-105,o), +(-40,-117,o), +(-25,-117,cs) +); +} +); +width = 446; +} +); +}, +{ +color = 6; +glyphname = braceleft.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (44, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(225,-117,ls), +(238,-117,o), +(249,-108,o), +(252,-95,cs), +(255,-81,ls), +(258,-68,o), +(251,-59,o), +(238,-59,cs), +(233,-59,ls), +(130,-58,o), +(141,15,o), +(179,194,cs), +(196,272,o), +(183,320,o), +(138,351,c), +(196,382,o), +(230,430,o), +(246,508,cs), +(284,687,o), +(304,759,o), +(407,760,cs), +(412,760,ls), +(425,760,o), +(436,769,o), +(438,782,cs), +(441,796,ls), +(444,809,o), +(437,818,o), +(424,818,cs), +(419,818,ls), +(262,818,o), +(229,712,o), +(190,529,cs), +(174,454,o), +(149,424,o), +(107,398,c), +(100,394,l), +(79,382,o), +(71,373,o), +(68,357,cs), +(66,345,ls), +(62,329,o), +(66,320,o), +(82,308,c), +(86,305,l), +(118,279,o), +(130,249,o), +(114,173,cs), +(75,-10,o), +(63,-117,o), +(220,-117,cs) +); +} +); +width = 362; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(375,-116,l), +(387,-116,o), +(399,-106,o), +(401,-94,cs), +(430,43,ls), +(433,55,o), +(425,64,o), +(416,65,c), +(411,66,l), +(343,75,o), +(297,105,o), +(313,184,cs), +(330,264,o), +(310,338,o), +(276,351,c), +(316,364,o), +(366,430,o), +(384,518,cs), +(401,598,o), +(460,627,o), +(535,637,c), +(538,637,l), +(547,638,o), +(559,647,o), +(561,659,cs), +(590,796,ls), +(593,808,o), +(585,818,o), +(573,818,c), +(566,818,l), +(410,815,o), +(219,729,o), +(177,529,cs), +(168,486,o), +(143,442,o), +(101,426,cs), +(82,419,ls), +(60,410,o), +(49,398,o), +(44,377,cs), +(33,325,ls), +(29,304,o), +(35,292,o), +(53,283,cs), +(69,276,ls), +(104,260,o), +(110,216,o), +(101,173,cs), +(58,-28,o), +(214,-114,o), +(370,-116,c) +); +} +); +width = 507; +} +); +}, +{ +color = 6; +glyphname = braceright.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (44, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(187,819,ls), +(174,819,o), +(163,810,o), +(161,797,cs), +(158,783,ls), +(155,770,o), +(162,761,o), +(175,761,cs), +(180,761,ls), +(283,760,o), +(271,687,o), +(233,508,cs), +(217,430,o), +(229,382,o), +(275,351,c), +(216,320,o), +(183,272,o), +(166,194,cs), +(128,15,o), +(109,-57,o), +(6,-58,cs), +(1,-58,ls), +(-12,-58,o), +(-23,-67,o), +(-26,-80,cs), +(-29,-94,ls), +(-32,-107,o), +(-24,-116,o), +(-11,-116,cs), +(-6,-116,ls), +(151,-116,o), +(184,-10,o), +(223,173,cs), +(239,248,o), +(263,278,o), +(306,304,c), +(313,308,l), +(333,320,o), +(341,329,o), +(345,345,cs), +(347,357,ls), +(350,373,o), +(346,382,o), +(331,394,c), +(327,397,l), +(295,423,o), +(282,453,o), +(299,529,cs), +(338,712,o), +(349,819,o), +(192,819,cs) +); +} +); +width = 362; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(184,818,l), +(172,818,o), +(160,808,o), +(157,796,cs), +(128,659,ls), +(126,647,o), +(134,638,o), +(143,637,c), +(147,636,l), +(215,627,o), +(262,597,o), +(245,518,cs), +(228,438,o), +(249,364,o), +(283,351,c), +(243,338,o), +(193,272,o), +(174,184,cs), +(157,104,o), +(98,75,o), +(24,65,c), +(21,65,l), +(12,64,o), +(0,55,o), +(-3,43,cs), +(-32,-94,ls), +(-34,-106,o), +(-26,-116,o), +(-14,-116,c), +(-7,-116,l), +(148,-113,o), +(339,-27,o), +(382,173,cs), +(391,216,o), +(415,260,o), +(458,276,cs), +(476,283,ls), +(498,292,o), +(510,304,o), +(514,325,cs), +(525,377,ls), +(530,398,o), +(523,410,o), +(505,419,cs), +(490,426,ls), +(454,442,o), +(449,486,o), +(458,529,cs), +(500,730,o), +(345,816,o), +(189,818,c) +); +} +); +width = 507; +} +); +}, +{ +color = 6; +glyphname = bracketleft.case; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(168,-117,ls), +(181,-117,o), +(192,-108,o), +(194,-95,cs), +(197,-81,ls), +(200,-68,o), +(193,-59,o), +(180,-59,cs), +(68,-59,l), +(242,760,l), +(354,760,ls), +(367,760,o), +(378,769,o), +(381,782,cs), +(384,796,ls), +(387,809,o), +(379,818,o), +(366,818,cs), +(214,818,ls), +(201,818,o), +(191,809,o), +(188,796,cs), +(-2,-95,ls), +(-4,-108,o), +(3,-117,o), +(16,-117,cs) +); +} +); +width = 317; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,-117,ls), +(315,-117,o), +(329,-105,o), +(332,-90,cs), +(364,57,ls), +(367,72,o), +(357,84,o), +(342,84,cs), +(223,84,l), +(341,635,l), +(460,635,ls), +(475,635,o), +(489,647,o), +(492,662,cs), +(520,791,ls), +(523,806,o), +(513,818,o), +(498,818,cs), +(195,818,ls), +(180,818,o), +(166,806,o), +(163,791,cs), +(-25,-90,ls), +(-28,-105,o), +(-18,-117,o), +(-3,-117,cs) +); +} +); +width = 451; +} +); +}, +{ +color = 6; +glyphname = bracketright.case; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(171,818,ls), +(158,818,o), +(148,809,o), +(145,796,cs), +(142,782,ls), +(139,769,o), +(146,760,o), +(159,760,cs), +(271,760,l), +(97,-59,l), +(-15,-59,ls), +(-28,-59,o), +(-39,-68,o), +(-42,-81,cs), +(-45,-95,ls), +(-46,-108,o), +(-40,-117,o), +(-27,-117,cs), +(124,-117,ls), +(137,-117,o), +(148,-108,o), +(150,-95,cs), +(340,796,ls), +(343,809,o), +(335,818,o), +(322,818,cs) +); +} +); +width = 315; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(175,819,ls), +(160,819,o), +(146,807,o), +(143,792,cs), +(115,663,ls), +(112,648,o), +(122,636,o), +(137,636,cs), +(256,636,l), +(138,85,l), +(19,85,ls), +(4,85,o), +(-10,73,o), +(-13,58,cs), +(-45,-89,ls), +(-47,-104,o), +(-38,-116,o), +(-23,-116,cs), +(280,-116,ls), +(295,-116,o), +(309,-104,o), +(312,-89,cs), +(500,792,ls), +(503,807,o), +(493,819,o), +(478,819,cs) +); +} +); +width = 451; +} +); +}, +{ +color = 10; +glyphname = parenleft.denominator; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = parenleftinferior; +} +); +width = 219; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = parenleftinferior; +} +); +width = 258; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 765; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 295; +} +); +}; +}, +{ +color = 10; +glyphname = parenright.denominator; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = parenrightinferior; +} +); +width = 219; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = parenrightinferior; +} +); +width = 262; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 765; +} +); +}; +}, +{ +color = 10; +glyphname = parenleft.numerator; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +alignment = -1; +pos = (114,520); +ref = parenleftinferior; +} +); +width = 219; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +alignment = -1; +pos = (110,520); +ref = parenleftinferior; +} +); +width = 258; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 765; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 295; +} +); +}; +}, +{ +color = 10; +glyphname = parenright.numerator; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +alignment = -1; +pos = (122,520); +ref = parenrightinferior; +} +); +width = 219; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +alignment = -1; +pos = (127,520); +ref = parenrightinferior; +} +); +width = 262; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 765; +} +); +}; +}, +{ +color = 6; +glyphname = parenleft.tf; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(331,-117,o), +(343,-107,o), +(345,-95,cs), +(348,-81,ls), +(351,-69,o), +(343,-59,o), +(334,-59,cs), +(222,-59,o), +(202,34,o), +(269,351,cs), +(337,668,o), +(396,760,o), +(508,760,cs), +(517,760,o), +(529,770,o), +(532,782,cs), +(535,796,ls), +(537,808,o), +(529,818,o), +(517,818,cs), +(338,818,o), +(279,674,o), +(210,351,cs), +(142,28,o), +(160,-117,o), +(319,-117,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(438,-117,o), +(452,-105,o), +(455,-90,cs), +(482,37,l), +(486,52,o), +(476,63,o), +(461,64,cs), +(355,74,o), +(358,207,o), +(388,351,cs), +(419,495,o), +(473,627,o), +(583,637,cs), +(598,638,o), +(613,649,o), +(616,664,cs), +(643,791,ls), +(646,806,o), +(636,818,o), +(621,818,cs), +(379,818,o), +(249,691,o), +(177,351,cs), +(105,11,o), +(281,-117,o), +(423,-117,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = parenright.tf; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(284,-117,o), +(343,27,o), +(412,350,cs), +(480,673,o), +(462,818,o), +(303,818,cs), +(291,818,o), +(279,808,o), +(277,796,cs), +(274,782,ls), +(271,770,o), +(279,760,o), +(288,760,cs), +(400,760,o), +(420,667,o), +(353,350,cs), +(285,33,o), +(226,-59,o), +(114,-59,cs), +(105,-59,o), +(93,-69,o), +(90,-81,cs), +(87,-95,ls), +(85,-107,o), +(93,-117,o), +(105,-117,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(364,-117,o), +(474,11,o), +(546,351,cs), +(618,691,o), +(442,818,o), +(300,818,cs), +(285,818,o), +(271,806,o), +(268,791,cs), +(241,664,ls), +(238,649,o), +(247,638,o), +(262,637,cs), +(368,627,o), +(366,495,o), +(335,351,cs), +(305,207,o), +(250,74,o), +(140,64,cs), +(125,63,o), +(111,52,o), +(107,37,cs), +(80,-90,ls), +(78,-105,o), +(87,-117,o), +(102,-117,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = quotesinglbase; +kernLeft = period; +kernRight = period; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-11,-54,ls), +(-16,-66,o), +(-12,-75,o), +(-1,-75,c), +(16,-75,ls), +(31,-75,o), +(38,-68,o), +(46,-54,cs), +(118,68,l), +(124,78,o), +(127,93,o), +(109,93,c), +(64,93,ls), +(48,93,o), +(40,82,o), +(34,66,cs) +); +} +); +width = 238; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(-54,-51,ls), +(-58,-63,o), +(-48,-75,o), +(-37,-75,cs), +(74,-75,ls), +(100,-75,o), +(115,-56,o), +(123,-43,cs), +(270,199,ls), +(277,211,o), +(272,228,o), +(255,228,cs), +(85,228,ls), +(58,228,o), +(41,207,o), +(34,189,cs) +); +} +); +width = 314; +} +); +unicode = 8218; +}, +{ +color = 6; +glyphname = quotedblbase; +kernLeft = period; +kernRight = period; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-11,-54,ls), +(-16,-66,o), +(-12,-75,o), +(-1,-75,cs), +(16,-75,l), +(31,-75,o), +(38,-68,o), +(46,-54,cs), +(118,68,ls), +(124,78,o), +(127,93,o), +(109,93,cs), +(64,93,ls), +(48,93,o), +(40,82,o), +(34,66,cs) +); +}, +{ +closed = 1; +nodes = ( +(123,-54,ls), +(118,-66,o), +(122,-75,o), +(133,-75,cs), +(150,-75,ls), +(165,-75,o), +(172,-68,o), +(180,-54,c), +(252,68,ls), +(258,78,o), +(261,93,o), +(243,93,cs), +(198,93,ls), +(182,93,o), +(174,82,o), +(168,66,cs) +); +} +); +width = 372; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(-54,-51,ls), +(-58,-63,o), +(-48,-75,o), +(-37,-75,cs), +(74,-75,ls), +(100,-75,o), +(115,-56,o), +(123,-43,cs), +(270,199,ls), +(277,211,o), +(272,228,o), +(255,228,cs), +(85,228,ls), +(58,228,o), +(41,207,o), +(34,189,cs) +); +}, +{ +closed = 1; +nodes = ( +(228,-51,ls), +(224,-63,o), +(234,-75,o), +(245,-75,cs), +(356,-75,ls), +(382,-75,o), +(397,-56,o), +(405,-43,cs), +(552,199,ls), +(559,211,o), +(554,228,o), +(537,228,cs), +(367,228,ls), +(340,228,o), +(323,207,o), +(316,189,cs) +); +} +); +width = 596; +} +); +unicode = 8222; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-75"; +} +); +}; +}, +{ +color = 6; +glyphname = quotedblleft; +kernLeft = quoteleft; +kernRight = quoteleft; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(304,542,ls), +(320,542,o), +(328,553,o), +(334,569,cs), +(379,689,ls), +(384,701,o), +(380,710,o), +(369,710,cs), +(352,710,ls), +(337,710,o), +(330,703,o), +(322,689,cs), +(250,567,ls), +(244,557,o), +(241,542,o), +(259,542,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,542,ls), +(186,542,o), +(194,553,o), +(200,569,cs), +(245,689,ls), +(250,701,o), +(246,710,o), +(235,710,cs), +(218,710,ls), +(203,710,o), +(196,703,o), +(188,689,cs), +(116,567,ls), +(110,557,o), +(107,542,o), +(125,542,cs) +); +} +); +width = 357; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(515,407,ls), +(542,407,o), +(559,428,o), +(566,446,cs), +(654,686,ls), +(658,698,o), +(648,710,o), +(637,710,cs), +(526,710,ls), +(500,710,o), +(485,691,o), +(477,678,cs), +(330,436,ls), +(323,424,o), +(328,407,o), +(345,407,cs) +); +}, +{ +closed = 1; +nodes = ( +(231,407,ls), +(258,407,o), +(275,428,o), +(282,446,cs), +(370,686,ls), +(374,698,o), +(364,710,o), +(353,710,cs), +(242,710,ls), +(216,710,o), +(201,691,o), +(193,678,cs), +(46,436,ls), +(39,424,o), +(44,407,o), +(61,407,cs) +); +} +); +width = 595; +} +); +unicode = 8220; +}, +{ +color = 6; +glyphname = quotedblright; +kernLeft = quoteright; +kernRight = quoteright; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(118,563,ls), +(113,551,o), +(117,542,o), +(128,542,cs), +(145,542,ls), +(160,542,o), +(167,549,o), +(175,563,cs), +(247,685,ls), +(253,695,o), +(256,710,o), +(238,710,cs), +(193,710,ls), +(177,710,o), +(169,699,o), +(163,683,cs) +); +}, +{ +closed = 1; +nodes = ( +(252,563,ls), +(247,551,o), +(251,542,o), +(262,542,cs), +(279,542,ls), +(294,542,o), +(301,549,o), +(309,563,cs), +(381,685,ls), +(387,695,o), +(390,710,o), +(372,710,cs), +(327,710,ls), +(311,710,o), +(303,699,o), +(297,683,cs) +); +} +); +width = 350; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,431,ls), +(52,419,o), +(62,407,o), +(73,407,cs), +(184,407,ls), +(210,407,o), +(225,426,o), +(233,439,cs), +(380,681,ls), +(387,693,o), +(382,710,o), +(365,710,cs), +(195,710,ls), +(168,710,o), +(151,689,o), +(144,671,cs) +); +}, +{ +closed = 1; +nodes = ( +(338,431,ls), +(334,419,o), +(344,407,o), +(355,407,cs), +(466,407,ls), +(492,407,o), +(507,426,o), +(515,439,cs), +(662,681,ls), +(669,693,o), +(664,710,o), +(647,710,cs), +(477,710,ls), +(450,710,o), +(433,689,o), +(426,671,cs) +); +} +); +width = 588; +} +); +unicode = 8221; +}, +{ +color = 6; +glyphname = quoteleft; +kernLeft = quoteleft; +kernRight = quoteleft; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(245,689,ls), +(250,701,o), +(246,710,o), +(235,710,cs), +(218,710,ls), +(203,710,o), +(196,703,o), +(188,689,cs), +(116,567,ls), +(110,557,o), +(107,542,o), +(125,542,cs), +(170,542,ls), +(186,542,o), +(194,553,o), +(200,569,cs) +); +} +); +width = 223; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,686,ls), +(374,698,o), +(364,710,o), +(353,710,cs), +(242,710,ls), +(216,710,o), +(201,691,o), +(193,678,cs), +(46,436,ls), +(39,424,o), +(44,407,o), +(61,407,cs), +(231,407,ls), +(258,407,o), +(275,428,o), +(282,446,cs) +); +} +); +width = 311; +} +); +unicode = 8216; +}, +{ +color = 6; +glyphname = quoteright; +kernLeft = quoteright; +kernRight = quoteright; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(118,563,ls), +(113,551,o), +(117,542,o), +(128,542,cs), +(145,542,ls), +(160,542,o), +(167,549,o), +(175,563,c), +(247,685,ls), +(253,695,o), +(256,710,o), +(238,710,cs), +(193,710,ls), +(177,710,o), +(169,699,o), +(163,683,cs) +); +} +); +width = 216; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,431,ls), +(52,419,o), +(62,407,o), +(73,407,cs), +(184,407,ls), +(210,407,o), +(225,426,o), +(233,439,cs), +(380,681,ls), +(387,693,o), +(382,710,o), +(365,710,cs), +(195,710,ls), +(168,710,o), +(151,689,o), +(144,671,cs) +); +} +); +width = 306; +} +); +unicode = 8217; +}, +{ +color = 6; +glyphname = guillemetleft; +kernLeft = guilsinglleft; +kernRight = guilsinglleft; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(508,92,o), +(517,100,o), +(520,112,cs), +(524,129,ls), +(527,145,o), +(524,152,o), +(513,165,cs), +(379,329,l), +(583,493,l), +(599,506,o), +(605,513,o), +(609,529,cs), +(612,546,ls), +(615,558,o), +(609,566,o), +(597,566,cs), +(589,566,o), +(579,561,o), +(570,554,cs), +(343,372,ls), +(328,359,o), +(322,348,o), +(319,337,c), +(315,321,l), +(314,310,o), +(315,299,o), +(325,286,cs), +(474,104,ls), +(481,97,o), +(488,92,o), +(496,92,cs) +); +}, +{ +closed = 1; +nodes = ( +(259,92,o), +(268,100,o), +(271,112,cs), +(275,129,ls), +(278,145,o), +(275,152,o), +(264,165,cs), +(130,329,l), +(334,493,l), +(350,506,o), +(356,513,o), +(360,529,cs), +(363,546,ls), +(366,558,o), +(360,566,o), +(348,566,cs), +(340,566,o), +(330,561,o), +(321,554,cs), +(94,372,ls), +(79,359,o), +(73,348,o), +(70,337,c), +(66,321,l), +(65,310,o), +(66,299,o), +(76,286,cs), +(225,104,ls), +(232,97,o), +(239,92,o), +(247,92,cs) +); +} +); +width = 603; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,52,o), +(542,62,o), +(545,74,cs), +(575,215,ls), +(580,238,o), +(577,247,o), +(566,260,cs), +(512,329,l), +(596,398,ls), +(612,411,o), +(618,420,o), +(623,443,cs), +(653,584,ls), +(656,596,o), +(648,606,o), +(636,606,cs), +(635,606,o), +(628,606,o), +(621,601,cs), +(359,390,ls), +(350,383,o), +(342,374,o), +(339,362,cs), +(325,296,ls), +(323,284,o), +(327,275,o), +(333,268,cs), +(505,57,ls), +(510,52,o), +(517,52,o), +(518,52,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,52,o), +(252,62,o), +(255,74,cs), +(285,215,ls), +(290,238,o), +(287,247,o), +(276,260,cs), +(222,329,l), +(306,398,ls), +(322,411,o), +(328,420,o), +(333,443,cs), +(363,584,ls), +(366,596,o), +(358,606,o), +(346,606,cs), +(345,606,o), +(338,606,o), +(331,601,cs), +(69,390,ls), +(60,383,o), +(52,374,o), +(49,362,c), +(35,296,ls), +(33,284,o), +(37,275,o), +(43,268,cs), +(215,57,ls), +(220,52,o), +(227,52,o), +(228,52,cs) +); +} +); +width = 632; +} +); +unicode = 171; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 289; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = guillemetright; +kernLeft = guilsinglright; +kernRight = guilsinglright; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (179, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(306,92,o), +(315,97,o), +(324,104,cs), +(551,286,ls), +(567,299,o), +(572,310,o), +(575,321,c), +(579,337,l), +(580,348,o), +(580,359,o), +(569,372,cs), +(420,554,ls), +(413,561,o), +(407,566,o), +(399,566,cs), +(387,566,o), +(377,558,o), +(374,546,cs), +(371,529,ls), +(367,513,o), +(371,506,o), +(381,493,cs), +(515,329,l), +(311,165,ls), +(296,152,o), +(289,145,o), +(286,129,cs), +(282,112,ls), +(279,100,o), +(286,92,o), +(298,92,cs) +); +}, +{ +closed = 1; +nodes = ( +(57,92,o), +(66,97,o), +(75,104,cs), +(302,286,ls), +(318,299,o), +(323,310,o), +(326,321,c), +(330,337,l), +(331,348,o), +(331,359,o), +(320,372,cs), +(171,554,ls), +(164,561,o), +(158,566,o), +(150,566,cs), +(138,566,o), +(128,558,o), +(125,546,cs), +(122,529,ls), +(118,513,o), +(122,506,o), +(132,493,cs), +(266,329,l), +(62,165,ls), +(47,152,o), +(40,145,o), +(37,129,cs), +(33,112,ls), +(30,100,o), +(37,92,o), +(49,92,cs) +); +} +); +width = 603; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(329,52,o), +(336,52,o), +(343,57,cs), +(605,268,ls), +(615,275,o), +(623,284,o), +(625,296,cs), +(639,362,ls), +(642,374,o), +(638,383,o), +(631,390,cs), +(459,601,ls), +(454,606,o), +(447,606,o), +(446,606,cs), +(434,606,o), +(422,596,o), +(419,584,cs), +(389,443,ls), +(384,420,o), +(388,411,o), +(398,398,cs), +(452,329,l), +(368,260,ls), +(353,247,o), +(346,238,o), +(341,215,cs), +(311,74,ls), +(308,62,o), +(316,52,o), +(328,52,cs) +); +}, +{ +closed = 1; +nodes = ( +(39,52,o), +(46,52,o), +(53,57,cs), +(315,268,ls), +(325,275,o), +(333,284,o), +(335,296,cs), +(349,362,ls), +(352,374,o), +(348,383,o), +(341,390,cs), +(169,601,ls), +(164,606,o), +(157,606,o), +(156,606,cs), +(144,606,o), +(132,596,o), +(129,584,cs), +(99,443,ls), +(94,420,o), +(98,411,o), +(108,398,cs), +(162,329,l), +(78,260,ls), +(63,247,o), +(56,238,o), +(51,215,cs), +(21,74,ls), +(18,62,o), +(26,52,o), +(38,52,cs) +); +} +); +width = 632; +} +); +unicode = 187; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 329; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 649; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = guilsinglleft; +kernLeft = guilsinglleft; +kernRight = guilsinglleft; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (343, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(259,92,o), +(268,100,o), +(271,112,cs), +(275,129,ls), +(278,145,o), +(275,152,o), +(264,165,cs), +(130,329,l), +(334,493,l), +(350,506,o), +(356,513,o), +(360,529,cs), +(363,546,ls), +(366,558,o), +(360,566,o), +(348,566,cs), +(340,566,o), +(330,561,o), +(321,554,cs), +(94,372,ls), +(79,359,o), +(73,348,o), +(70,337,c), +(66,321,l), +(65,310,o), +(66,299,o), +(76,286,cs), +(225,104,ls), +(232,97,o), +(239,92,o), +(247,92,cs) +); +} +); +width = 354; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,52,o), +(252,62,o), +(255,74,cs), +(285,215,ls), +(290,238,o), +(287,247,o), +(276,260,cs), +(222,329,l), +(306,398,ls), +(322,411,o), +(328,420,o), +(333,443,cs), +(363,584,ls), +(366,596,o), +(358,606,o), +(346,606,cs), +(345,606,o), +(338,606,o), +(331,601,cs), +(69,390,ls), +(60,383,o), +(52,374,o), +(49,362,cs), +(35,296,ls), +(33,284,o), +(37,275,o), +(43,268,cs), +(215,57,ls), +(220,52,o), +(227,52,o), +(228,52,cs) +); +} +); +width = 342; +} +); +unicode = 8249; +}, +{ +color = 6; +glyphname = guilsinglright; +kernLeft = guilsinglright; +kernRight = guilsinglright; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (179, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(57,92,o), +(66,97,o), +(75,104,cs), +(302,286,ls), +(318,299,o), +(323,310,o), +(326,321,c), +(330,337,l), +(331,348,o), +(331,359,o), +(320,372,cs), +(171,554,ls), +(164,561,o), +(158,566,o), +(150,566,cs), +(138,566,o), +(128,558,o), +(125,546,cs), +(122,529,ls), +(118,513,o), +(122,506,o), +(132,493,cs), +(266,329,l), +(62,165,ls), +(47,152,o), +(40,145,o), +(37,129,cs), +(33,112,ls), +(30,100,o), +(37,92,o), +(49,92,cs) +); +} +); +width = 354; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(39,52,o), +(46,52,o), +(53,57,cs), +(315,268,ls), +(325,275,o), +(333,284,o), +(335,296,cs), +(349,362,ls), +(352,374,o), +(348,383,o), +(341,390,cs), +(169,601,ls), +(164,606,o), +(157,606,o), +(156,606,cs), +(144,606,o), +(132,596,o), +(129,584,cs), +(99,443,ls), +(94,420,o), +(98,411,o), +(108,398,cs), +(162,329,l), +(78,260,ls), +(63,247,o), +(56,238,o), +(51,215,cs), +(21,74,ls), +(18,62,o), +(26,52,o), +(38,52,cs) +); +} +); +width = 342; +} +); +unicode = 8250; +}, +{ +color = 6; +glyphname = quotedbl; +kernLeft = quotesingle; +kernRight = quotesingle; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(154,508,ls), +(165,508,o), +(173,516,o), +(176,527,cs), +(225,690,l), +(229,702,o), +(222,710,o), +(210,710,cs), +(165,710,ls), +(153,710,o), +(143,702,o), +(142,690,cs), +(123,527,ls), +(121,516,o), +(124,508,o), +(135,508,cs) +); +}, +{ +closed = 1; +nodes = ( +(287,508,ls), +(298,508,o), +(306,516,o), +(309,527,cs), +(358,690,l), +(362,702,o), +(355,710,o), +(343,710,cs), +(298,710,ls), +(286,710,o), +(276,702,o), +(275,690,cs), +(256,527,l), +(254,516,o), +(257,508,o), +(268,508,cs) +); +} +); +width = 340; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,408,ls), +(220,408,o), +(231,424,o), +(236,440,cs), +(313,674,ls), +(320,696,o), +(312,710,o), +(293,710,cs), +(141,710,ls), +(122,710,o), +(109,696,o), +(107,674,cs), +(84,440,ls), +(82,424,o), +(86,408,o), +(112,408,cs) +); +}, +{ +closed = 1; +nodes = ( +(449,408,ls), +(475,408,o), +(486,424,o), +(491,440,cs), +(568,674,ls), +(575,696,o), +(567,710,o), +(548,710,cs), +(396,710,ls), +(377,710,o), +(364,696,o), +(362,674,cs), +(339,440,ls), +(337,424,o), +(341,408,o), +(367,408,cs) +); +} +); +width = 517; +} +); +unicode = 34; +}, +{ +color = 6; +glyphname = quotesingle; +kernLeft = quotesingle; +kernRight = quotesingle; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(156,508,ls), +(168,508,o), +(172,513,o), +(175,524,c), +(225,690,l), +(229,702,o), +(222,710,o), +(210,710,c), +(165,710,ls), +(153,710,o), +(143,702,o), +(142,690,cs), +(123,527,l), +(121,516,o), +(124,508,o), +(135,508,cs) +); +} +); +width = 207; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,408,ls), +(220,408,o), +(231,424,o), +(236,440,cs), +(313,674,ls), +(320,696,o), +(312,710,o), +(293,710,cs), +(141,710,ls), +(122,710,o), +(109,696,o), +(107,674,cs), +(84,440,ls), +(82,424,o), +(86,408,o), +(112,408,cs) +); +} +); +width = 262; +} +); +unicode = 39; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 51; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = guillemetleft.case; +kernLeft = guilsinglleft.cap; +kernRight = guilsinglleft.cap; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(514,92,o), +(523,100,o), +(526,112,cs), +(530,129,ls), +(533,145,o), +(530,152,o), +(519,165,cs), +(385,329,l), +(589,493,l), +(605,506,o), +(611,513,o), +(615,529,cs), +(618,546,ls), +(621,558,o), +(615,566,o), +(603,566,cs), +(595,566,o), +(585,561,o), +(576,554,cs), +(349,372,ls), +(334,359,o), +(328,348,o), +(325,337,c), +(321,321,l), +(320,310,o), +(321,299,o), +(331,286,cs), +(480,104,ls), +(487,97,o), +(494,92,o), +(502,92,cs) +); +}, +{ +closed = 1; +nodes = ( +(265,92,o), +(274,100,o), +(277,112,cs), +(281,129,ls), +(284,145,o), +(281,152,o), +(270,165,cs), +(136,329,l), +(340,493,l), +(356,506,o), +(362,513,o), +(366,529,cs), +(369,546,ls), +(372,558,o), +(366,566,o), +(354,566,cs), +(346,566,o), +(336,561,o), +(327,554,cs), +(100,372,ls), +(85,359,o), +(79,348,o), +(76,337,c), +(72,321,l), +(71,310,o), +(72,299,o), +(82,286,cs), +(231,104,ls), +(238,97,o), +(245,92,o), +(253,92,cs) +); +} +); +width = 615; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(539,73,o), +(551,83,o), +(553,95,cs), +(583,236,ls), +(588,259,o), +(585,268,o), +(575,281,cs), +(521,350,l), +(604,419,ls), +(620,432,o), +(627,441,o), +(632,464,cs), +(662,605,ls), +(664,617,o), +(656,627,o), +(644,627,cs), +(643,627,o), +(636,627,o), +(629,622,cs), +(368,411,ls), +(358,404,o), +(350,395,o), +(348,383,cs), +(334,317,ls), +(331,305,o), +(335,296,o), +(342,289,cs), +(514,78,ls), +(519,73,o), +(526,73,o), +(527,73,cs) +); +}, +{ +closed = 1; +nodes = ( +(249,73,o), +(261,83,o), +(263,95,cs), +(293,236,ls), +(298,259,o), +(295,268,o), +(285,281,cs), +(231,350,l), +(314,419,ls), +(330,432,o), +(337,441,o), +(342,464,cs), +(372,605,ls), +(374,617,o), +(366,627,o), +(354,627,cs), +(353,627,o), +(346,627,o), +(339,622,cs), +(78,411,ls), +(68,404,o), +(60,395,o), +(58,383,c), +(44,317,ls), +(41,305,o), +(45,296,o), +(52,289,cs), +(224,78,ls), +(229,73,o), +(236,73,o), +(237,73,cs) +); +} +); +width = 637; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 289; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = guillemetright.case; +kernLeft = guilsinglright.cap; +kernRight = guilsinglright.cap; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(312,92,o), +(321,97,o), +(330,104,cs), +(557,286,ls), +(573,299,o), +(578,310,o), +(581,321,c), +(585,337,l), +(586,348,o), +(586,359,o), +(575,372,cs), +(426,554,ls), +(419,561,o), +(413,566,o), +(405,566,cs), +(393,566,o), +(383,558,o), +(380,546,cs), +(377,529,ls), +(373,513,o), +(377,506,o), +(387,493,cs), +(521,329,l), +(317,165,ls), +(302,152,o), +(295,145,o), +(292,129,cs), +(288,112,ls), +(285,100,o), +(292,92,o), +(304,92,cs) +); +}, +{ +closed = 1; +nodes = ( +(63,92,o), +(72,97,o), +(81,104,cs), +(308,286,ls), +(324,299,o), +(329,310,o), +(332,321,c), +(336,337,l), +(337,348,o), +(337,359,o), +(326,372,cs), +(177,554,ls), +(170,561,o), +(164,566,o), +(156,566,cs), +(144,566,o), +(134,558,o), +(131,546,cs), +(128,529,ls), +(124,513,o), +(128,506,o), +(138,493,cs), +(272,329,l), +(68,165,ls), +(53,152,o), +(46,145,o), +(43,129,cs), +(39,112,ls), +(36,100,o), +(43,92,o), +(55,92,cs) +); +} +); +width = 615; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(335,73,o), +(342,73,o), +(349,78,cs), +(611,289,ls), +(620,296,o), +(628,305,o), +(631,317,cs), +(645,383,ls), +(647,395,o), +(643,404,o), +(637,411,cs), +(464,622,ls), +(459,627,o), +(452,627,o), +(451,627,cs), +(439,627,o), +(427,617,o), +(425,605,cs), +(395,464,ls), +(390,441,o), +(393,432,o), +(403,419,cs), +(458,350,l), +(374,281,ls), +(358,268,o), +(351,259,o), +(346,236,cs), +(316,95,ls), +(314,83,o), +(322,73,o), +(334,73,cs) +); +}, +{ +closed = 1; +nodes = ( +(45,73,o), +(52,73,o), +(59,78,cs), +(321,289,ls), +(330,296,o), +(338,305,o), +(341,317,cs), +(355,383,ls), +(357,395,o), +(353,404,o), +(347,411,cs), +(174,622,ls), +(169,627,o), +(162,627,o), +(161,627,cs), +(149,627,o), +(137,617,o), +(135,605,cs), +(105,464,ls), +(100,441,o), +(103,432,o), +(113,419,cs), +(168,350,l), +(84,281,ls), +(68,268,o), +(61,259,o), +(56,236,cs), +(26,95,ls), +(24,83,o), +(32,73,o), +(44,73,cs) +); +} +); +width = 637; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 329; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 649; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = guilsinglleft.case; +kernLeft = guilsinglleft.cap; +kernRight = guilsinglleft.cap; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(265,92,o), +(274,100,o), +(277,112,cs), +(281,129,ls), +(284,145,o), +(281,152,o), +(270,165,cs), +(136,329,l), +(340,493,l), +(356,506,o), +(362,513,o), +(366,529,cs), +(369,546,ls), +(372,558,o), +(366,566,o), +(354,566,cs), +(346,566,o), +(336,561,o), +(327,554,cs), +(100,372,ls), +(85,359,o), +(79,348,o), +(76,337,c), +(72,321,l), +(71,310,o), +(72,299,o), +(82,286,cs), +(231,104,ls), +(238,97,o), +(245,92,o), +(253,92,cs) +); +} +); +width = 366; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,73,o), +(261,83,o), +(263,95,cs), +(293,236,ls), +(298,259,o), +(295,268,o), +(285,281,cs), +(231,350,l), +(314,419,ls), +(330,432,o), +(337,441,o), +(342,464,cs), +(372,605,ls), +(374,617,o), +(366,627,o), +(354,627,cs), +(353,627,o), +(346,627,o), +(339,622,cs), +(78,411,ls), +(68,404,o), +(60,395,o), +(58,383,cs), +(44,317,ls), +(41,305,o), +(45,296,o), +(52,289,cs), +(224,78,ls), +(229,73,o), +(236,73,o), +(237,73,cs) +); +} +); +width = 347; +} +); +}, +{ +color = 6; +glyphname = guilsinglright.case; +kernLeft = guilsinglright.cap; +kernRight = guilsinglright.cap; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(63,92,o), +(72,97,o), +(81,104,cs), +(308,286,ls), +(324,299,o), +(329,310,o), +(332,321,c), +(336,337,l), +(337,348,o), +(337,359,o), +(326,372,cs), +(177,554,ls), +(170,561,o), +(164,566,o), +(156,566,cs), +(144,566,o), +(134,558,o), +(131,546,cs), +(128,529,ls), +(124,513,o), +(128,506,o), +(138,493,cs), +(272,329,l), +(68,165,ls), +(53,152,o), +(46,145,o), +(43,129,cs), +(39,112,ls), +(36,100,o), +(43,92,o), +(55,92,cs) +); +} +); +width = 366; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(45,73,o), +(52,73,o), +(59,78,cs), +(321,289,ls), +(330,296,o), +(338,305,o), +(341,317,cs), +(355,383,ls), +(357,395,o), +(353,404,o), +(347,411,cs), +(174,622,ls), +(169,627,o), +(162,627,o), +(161,627,cs), +(149,627,o), +(137,617,o), +(135,605,cs), +(105,464,ls), +(100,441,o), +(103,432,o), +(113,419,cs), +(168,350,l), +(84,281,ls), +(68,268,o), +(61,259,o), +(56,236,cs), +(26,95,ls), +(24,83,o), +(32,73,o), +(44,73,cs) +); +} +); +width = 347; +} +); +}, +{ +color = 6; +glyphname = florin; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-55,-225,ls), +(66,-225,o), +(104,-151,o), +(124,-57,cs), +(235,462,l), +(367,462,ls), +(380,462,o), +(391,471,o), +(393,484,cs), +(396,498,ls), +(399,511,o), +(392,520,o), +(379,520,cs), +(247,520,l), +(258,572,ls), +(273,643,o), +(296,682,o), +(377,682,cs), +(423,682,ls), +(436,682,o), +(447,691,o), +(450,704,cs), +(453,718,ls), +(456,731,o), +(449,740,o), +(436,740,cs), +(377,740,ls), +(255,740,o), +(217,666,o), +(198,577,cs), +(186,520,l), +(97,520,ls), +(84,520,o), +(73,511,o), +(70,498,cs), +(67,484,ls), +(65,471,o), +(72,462,o), +(85,462,cs), +(174,462,l), +(63,-57,ls), +(50,-118,o), +(31,-167,o), +(-50,-167,cs), +(-57,-167,ls), +(-70,-167,o), +(-81,-176,o), +(-84,-189,cs), +(-87,-203,ls), +(-89,-216,o), +(-82,-225,o), +(-69,-225,cs) +); +} +); +width = 389; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(-35,-225,l), +(156,-225,o), +(257,-142,o), +(298,48,c), +(361,345,l), +(475,345,l), +(490,345,o), +(504,357,o), +(508,372,c), +(533,493,l), +(536,508,o), +(527,520,o), +(512,520,c), +(398,520,l), +(401,532,l), +(405,553,o), +(421,565,o), +(451,565,c), +(532,565,l), +(547,565,o), +(561,577,o), +(564,592,c), +(590,713,l), +(593,728,o), +(584,740,o), +(569,740,c), +(456,740,l), +(311,740,o), +(208,701,o), +(173,537,c), +(169,520,l), +(100,520,l), +(85,520,o), +(70,508,o), +(67,493,c), +(42,372,l), +(38,357,o), +(48,345,o), +(63,345,c), +(132,345,l), +(71,59,l), +(58,-2,o), +(30,-22,o), +(-13,-22,c), +(-52,-22,l), +(-66,-22,o), +(-81,-34,o), +(-84,-49,c), +(-116,-198,l), +(-119,-213,o), +(-109,-225,o), +(-94,-225,c) +); +} +); +width = 519; +} +); +unicode = 402; +}, +{ +color = 6; +glyphname = at; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (-205, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(486,-113,o), +(576,-63,o), +(641,-8,cs), +(644,-4,o), +(647,0,o), +(648,6,cs), +(651,18,o), +(644,27,o), +(632,27,cs), +(606,27,ls), +(594,27,o), +(585,19,o), +(579,15,cs), +(550,-4,o), +(494,-55,o), +(343,-55,cs), +(180,-55,o), +(101,35,o), +(117,192,cs), +(121,229,o), +(140,319,o), +(151,353,cs), +(204,512,o), +(319,603,o), +(482,603,cs), +(681,603,o), +(744,513,o), +(722,353,cs), +(715,299,o), +(701,247,o), +(696,231,cs), +(689,202,o), +(668,137,o), +(608,137,cs), +(570,137,o), +(548,167,o), +(561,230,cs), +(607,448,ls), +(610,461,o), +(603,470,o), +(590,470,cs), +(573,470,ls), +(560,470,o), +(549,461,o), +(546,448,cs), +(542,429,l), +(529,451,o), +(506,478,o), +(450,478,cs), +(352,478,o), +(270,405,o), +(242,273,cs), +(214,141,o), +(264,69,o), +(363,69,cs), +(439,69,o), +(481,111,o), +(503,138,c), +(509,124,o), +(530,79,o), +(596,79,cs), +(677,79,o), +(730,129,o), +(756,225,cs), +(760,241,o), +(776,304,o), +(784,358,cs), +(817,553,o), +(724,661,o), +(495,661,cs), +(295,661,o), +(154,548,o), +(91,358,cs), +(80,324,o), +(59,224,o), +(55,187,cs), +(35,-7,o), +(129,-113,o), +(330,-113,cs) +); +}, +{ +closed = 1; +nodes = ( +(299,127,o), +(287,198,o), +(303,273,cs), +(321,358,o), +(361,420,o), +(437,420,cs), +(516,420,o), +(527,358,o), +(509,273,cs), +(491,188,o), +(454,127,o), +(375,127,cs) +); +} +); +width = 826; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(540,-141,o), +(661,-76,o), +(734,-5,cs), +(739,0,o), +(743,4,o), +(744,10,cs), +(749,27,o), +(738,38,o), +(723,38,cs), +(625,38,ls), +(611,38,o), +(603,33,o), +(587,23,cs), +(538,-9,o), +(500,-20,o), +(391,-20,cs), +(207,-20,o), +(145,59,o), +(159,190,cs), +(163,228,o), +(181,316,o), +(193,351,cs), +(232,471,o), +(321,563,o), +(495,563,cs), +(700,563,o), +(750,499,o), +(726,351,cs), +(721,317,o), +(713,285,o), +(705,249,cs), +(699,219,o), +(682,200,o), +(652,200,cs), +(623,200,o), +(612,218,o), +(618,250,cs), +(659,443,ls), +(663,458,o), +(653,470,o), +(638,470,cs), +(566,470,ls), +(551,470,o), +(537,458,o), +(533,443,cs), +(531,434,l), +(516,463,o), +(492,478,o), +(442,478,cs), +(343,478,o), +(271,395,o), +(245,273,cs), +(219,151,o), +(260,69,o), +(360,69,cs), +(454,69,o), +(485,101,o), +(504,125,c), +(518,103,o), +(559,79,o), +(626,79,cs), +(702,79,o), +(798,133,o), +(826,234,cs), +(836,270,o), +(848,322,o), +(852,356,cs), +(874,532,o), +(824,684,o), +(521,684,cs), +(269,684,o), +(114,512,o), +(68,356,cs), +(57,321,o), +(36,222,o), +(32,185,cs), +(8,6,o), +(94,-141,o), +(365,-141,cs) +); +}, +{ +closed = 1; +nodes = ( +(380,190,o), +(356,208,o), +(370,273,cs), +(384,338,o), +(415,357,o), +(451,357,cs), +(490,357,o), +(511,338,o), +(497,273,cs), +(483,207,o), +(455,190,o), +(416,190,cs) +); +} +); +width = 856; +} +); +unicode = 64; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 193; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 470; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 684; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 135; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 486; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 378; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 419; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 769; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 531; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = ampersand; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (34, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (-150, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (-100, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (400, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(328,-10,o), +(410,30,o), +(472,84,c), +(530,10,ls), +(535,4,o), +(542,0,o), +(556,0,cs), +(578,0,ls), +(591,0,o), +(600,7,o), +(602,19,cs), +(603,24,o), +(601,30,o), +(597,35,cs), +(519,131,l), +(587,208,o), +(621,283,o), +(636,344,cs), +(639,357,o), +(632,366,o), +(619,366,cs), +(600,366,ls), +(587,366,o), +(577,357,o), +(573,344,cs), +(550,274,o), +(519,221,o), +(483,176,c), +(331,363,l), +(421,408,o), +(508,457,o), +(528,550,cs), +(548,642,o), +(489,710,o), +(388,710,cs), +(287,710,o), +(199,637,o), +(180,550,cs), +(168,491,o), +(183,447,o), +(236,375,c), +(152,331,o), +(71,278,o), +(51,184,cs), +(28,72,o), +(101,-10,o), +(230,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(161,50,o), +(96,97,o), +(114,184,cs), +(129,253,o), +(194,294,o), +(269,332,c), +(436,129,l), +(372,75,o), +(303,50,o), +(243,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(245,478,o), +(235,510,o), +(243,550,cs), +(256,612,o), +(316,650,o), +(375,650,cs), +(437,650,o), +(478,611,o), +(465,550,cs), +(451,485,o), +(378,447,o), +(298,407,c) +); +} +); +width = 674; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(328,-10,o), +(388,-3,o), +(452,34,c), +(474,10,ls), +(478,6,o), +(483,0,o), +(497,0,cs), +(701,0,ls), +(711,0,o), +(721,8,o), +(723,17,cs), +(724,22,o), +(723,27,o), +(720,31,cs), +(627,155,l), +(678,199,o), +(778,305,o), +(787,348,cs), +(789,358,o), +(783,366,o), +(773,366,cs), +(622,366,ls), +(611,366,o), +(603,361,o), +(600,356,cs), +(564,300,o), +(533,274,o), +(533,274,c), +(475,352,l), +(569,401,o), +(625,454,o), +(641,529,cs), +(660,621,o), +(603,710,o), +(451,710,cs), +(280,710,o), +(188,621,o), +(168,524,cs), +(159,482,o), +(166,436,o), +(198,391,c), +(102,343,o), +(45,282,o), +(28,201,cs), +(-1,64,o), +(88,-10,o), +(260,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(268,157,o), +(241,180,o), +(248,212,cs), +(253,232,o), +(271,252,o), +(289,260,c), +(358,169,l), +(341,160,o), +(322,157,o), +(296,157,cs) +); +}, +{ +closed = 1; +nodes = ( +(376,488,o), +(370,506,o), +(373,520,cs), +(377,542,o), +(399,557,o), +(418,557,cs), +(440,557,o), +(451,542,o), +(447,521,cs), +(442,500,o), +(421,485,o), +(390,472,c) +); +} +); +width = 783; +} +); +unicode = 38; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 366; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 550; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 285; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 589; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = paragraph; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(58,425,o), +(120,346,o), +(218,346,c), +(128,-78,ls), +(125,-91,o), +(132,-100,o), +(145,-100,cs), +(162,-100,ls), +(175,-100,o), +(186,-91,o), +(189,-78,cs), +(342,642,l), +(421,642,l), +(268,-78,ls), +(265,-91,o), +(272,-100,o), +(285,-100,cs), +(302,-100,ls), +(315,-100,o), +(326,-91,o), +(329,-78,cs), +(490,678,ls), +(492,691,o), +(485,700,o), +(472,700,cs), +(293,700,ls), +(195,700,o), +(99,621,o), +(79,523,cs) +); +} +); +width = 491; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(45,394,o), +(115,306,o), +(224,306,c), +(143,-73,ls), +(140,-88,o), +(149,-100,o), +(164,-100,cs), +(285,-100,ls), +(300,-100,o), +(315,-88,o), +(318,-73,cs), +(450,550,l), +(529,550,l), +(397,-73,ls), +(394,-88,o), +(403,-100,o), +(418,-100,cs), +(539,-100,ls), +(554,-100,o), +(569,-88,o), +(572,-73,cs), +(731,673,ls), +(734,688,o), +(724,700,o), +(709,700,cs), +(307,700,ls), +(198,700,o), +(92,612,o), +(68,503,cs) +); +} +); +width = 712; +} +); +unicode = 182; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-100"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 346; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 522; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 237; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = section; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (180, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(316,-140,o), +(394,-56,o), +(411,22,cs), +(418,57,o), +(418,86,o), +(404,110,c), +(453,142,o), +(497,183,o), +(509,240,cs), +(532,346,o), +(482,392,o), +(341,438,cs), +(239,471,o), +(214,486,o), +(227,548,cs), +(239,605,o), +(287,652,o), +(371,652,cs), +(466,652,o), +(482,612,o), +(488,576,cs), +(490,560,o), +(496,556,o), +(507,556,cs), +(525,556,ls), +(538,556,o), +(549,564,o), +(551,576,cs), +(560,633,o), +(520,710,o), +(383,710,cs), +(260,710,o), +(182,626,o), +(166,548,cs), +(158,513,o), +(158,484,o), +(173,460,c), +(123,428,o), +(79,387,o), +(67,330,cs), +(45,224,o), +(95,178,o), +(235,132,cs), +(337,99,o), +(363,84,o), +(350,22,cs), +(338,-35,o), +(290,-82,o), +(206,-82,cs), +(111,-82,o), +(94,-42,o), +(89,-6,cs), +(86,10,o), +(80,14,o), +(69,14,cs), +(51,14,ls), +(38,14,o), +(27,6,o), +(26,-6,cs), +(17,-63,o), +(56,-140,o), +(193,-140,cs) +); +}, +{ +closed = 1; +nodes = ( +(342,161,o), +(312,174,o), +(272,187,cs), +(134,231,o), +(115,269,o), +(128,329,cs), +(137,372,o), +(165,396,o), +(212,423,c), +(234,409,o), +(264,396,o), +(305,383,cs), +(442,339,o), +(461,301,o), +(448,241,cs), +(439,198,o), +(411,174,o), +(364,147,c) +); +} +); +width = 553; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(391,-140,o), +(499,-49,o), +(523,65,cs), +(529,93,o), +(528,116,o), +(522,137,c), +(574,171,o), +(608,219,o), +(620,275,cs), +(641,377,o), +(606,438,o), +(469,474,c), +(370,493,o), +(368,514,o), +(372,532,cs), +(375,547,o), +(387,559,o), +(402,559,cs), +(422,559,o), +(431,552,o), +(437,546,cs), +(445,539,o), +(449,532,o), +(464,532,cs), +(630,532,ls), +(642,532,o), +(655,540,o), +(657,555,cs), +(667,617,o), +(594,710,o), +(431,710,cs), +(268,710,o), +(161,619,o), +(137,505,cs), +(131,477,o), +(131,453,o), +(137,433,c), +(85,398,o), +(52,351,o), +(40,295,cs), +(18,193,o), +(53,132,o), +(191,96,c), +(290,77,o), +(291,56,o), +(287,38,cs), +(284,23,o), +(273,11,o), +(258,11,cs), +(236,11,o), +(227,19,o), +(221,27,cs), +(214,34,o), +(209,40,o), +(196,40,cs), +(30,40,ls), +(18,40,o), +(5,32,o), +(3,17,cs), +(-7,-45,o), +(65,-140,o), +(228,-140,cs) +); +}, +{ +closed = 1; +nodes = ( +(338,252,o), +(310,260,o), +(291,267,cs), +(256,279,o), +(247,289,o), +(251,308,cs), +(253,317,o), +(264,332,o), +(283,327,cs), +(309,320,o), +(331,314,o), +(371,302,cs), +(401,294,o), +(414,284,o), +(409,262,cs), +(406,250,o), +(395,239,o), +(377,242,cs) +); +} +); +width = 636; +} +); +unicode = 167; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-140"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 291; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 72; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 1276; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 511; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = copyright; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(555,-10,o), +(745,151,o), +(787,350,cs), +(829,549,o), +(697,710,o), +(498,710,cs), +(299,710,o), +(109,549,o), +(67,350,cs), +(25,151,o), +(157,-10,o), +(356,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(190,45,o), +(92,184,o), +(127,350,cs), +(162,516,o), +(332,655,o), +(498,655,cs), +(664,655,o), +(762,516,o), +(727,350,cs), +(692,184,o), +(522,45,o), +(356,45,cs) +); +}, +{ +closed = 1; +nodes = ( +(499,158,o), +(557,218,o), +(567,265,cs), +(570,278,o), +(563,287,o), +(550,287,cs), +(533,287,ls), +(519,287,o), +(511,279,o), +(505,268,cs), +(489,236,o), +(449,216,o), +(392,216,cs), +(312,216,o), +(312,276,o), +(319,317,c), +(322,337,o), +(328,365,o), +(333,385,c), +(344,426,o), +(382,486,o), +(462,486,cs), +(519,486,o), +(542,466,o), +(541,434,cs), +(541,424,o), +(546,415,o), +(560,415,cs), +(577,415,ls), +(590,415,o), +(601,424,o), +(603,437,cs), +(609,484,o), +(569,544,o), +(462,544,cs), +(361,544,o), +(294,471,o), +(272,385,cs), +(267,365,o), +(261,337,o), +(258,317,cs), +(243,231,o), +(291,158,o), +(392,158,cs) +); +} +); +width = 832; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(551,-10,o), +(727,141,o), +(769,340,cs), +(811,539,o), +(664,710,o), +(475,710,cs), +(266,710,o), +(91,559,o), +(49,360,cs), +(7,161,o), +(153,-10,o), +(342,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(207,85,o), +(118,204,o), +(149,350,cs), +(180,496,o), +(319,615,o), +(465,615,cs), +(611,615,o), +(700,496,o), +(669,350,cs), +(638,204,o), +(499,85,o), +(353,85,cs) +); +}, +{ +closed = 1; +nodes = ( +(511,158,o), +(560,230,o), +(576,287,cs), +(579,300,o), +(571,309,o), +(558,309,cs), +(462,309,ls), +(446,309,o), +(437,296,o), +(432,288,cs), +(417,268,o), +(407,263,o), +(388,263,cs), +(357,263,o), +(359,289,o), +(363,317,cs), +(364,327,o), +(374,375,o), +(377,385,cs), +(385,413,o), +(395,439,o), +(426,439,cs), +(445,439,o), +(453,434,o), +(458,414,c), +(461,406,o), +(464,393,o), +(480,393,cs), +(576,393,ls), +(589,393,o), +(601,402,o), +(603,415,cs), +(612,472,o), +(553,544,o), +(438,544,cs), +(322,544,o), +(265,484,o), +(240,390,cs), +(237,380,o), +(225,322,o), +(224,312,cs), +(209,218,o), +(280,158,o), +(376,158,cs) +); +} +); +width = 795; +} +); +unicode = 169; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 544; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 650; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 304; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 158; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 710; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 410; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = registered; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(558,-10,o), +(746,151,o), +(788,350,cs), +(830,549,o), +(699,710,o), +(498,710,cs), +(297,710,o), +(110,549,o), +(68,350,cs), +(26,151,o), +(156,-10,o), +(357,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,45,o), +(91,184,o), +(126,350,cs), +(161,516,o), +(337,655,o), +(498,655,cs), +(664,655,o), +(765,516,o), +(730,350,cs), +(695,184,o), +(520,45,o), +(357,45,cs) +); +}, +{ +closed = 1; +nodes = ( +(293,168,ls), +(306,168,o), +(317,177,o), +(320,190,cs), +(344,302,l), +(437,302,l), +(484,187,ls), +(489,175,o), +(495,168,o), +(509,168,cs), +(519,168,ls), +(534,168,o), +(544,179,o), +(546,190,cs), +(547,196,o), +(546,201,o), +(545,204,cs), +(499,313,l), +(547,329,o), +(583,364,o), +(593,418,cs), +(609,504,o), +(537,534,o), +(471,534,cs), +(354,534,ls), +(341,534,o), +(330,525,o), +(327,512,cs), +(259,190,ls), +(256,177,o), +(263,168,o), +(276,168,c) +); +}, +{ +closed = 1; +nodes = ( +(381,476,l), +(469,476,ls), +(533,476,o), +(539,448,o), +(532,418,cs), +(526,388,o), +(504,360,o), +(443,360,cs), +(356,360,l) +); +} +); +width = 833; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(551,-10,o), +(727,141,o), +(769,340,cs), +(811,539,o), +(664,710,o), +(475,710,cs), +(266,710,o), +(91,559,o), +(49,360,cs), +(7,161,o), +(153,-10,o), +(342,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(207,85,o), +(118,204,o), +(149,350,cs), +(180,496,o), +(319,615,o), +(465,615,cs), +(611,615,o), +(700,496,o), +(669,350,cs), +(638,204,o), +(499,85,o), +(353,85,cs) +); +}, +{ +closed = 1; +nodes = ( +(326,168,ls), +(339,168,o), +(350,177,o), +(353,190,cs), +(372,282,l), +(393,282,l), +(406,187,ls), +(408,174,o), +(417,168,o), +(431,168,cs), +(516,168,ls), +(531,168,o), +(541,179,o), +(543,190,cs), +(544,196,o), +(543,200,o), +(542,204,cs), +(519,307,l), +(552,323,o), +(585,356,o), +(596,409,cs), +(616,501,o), +(529,534,o), +(453,534,cs), +(317,534,ls), +(304,534,o), +(293,525,o), +(290,512,cs), +(222,190,ls), +(219,177,o), +(226,168,o), +(239,168,c) +); +}, +{ +closed = 1; +nodes = ( +(405,437,l), +(442,437,ls), +(458,437,o), +(465,425,o), +(461,409,cs), +(458,393,o), +(446,381,o), +(430,381,cs), +(393,381,l) +); +} +); +width = 795; +} +); +unicode = 174; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 534; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 418; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 168; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 567; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 411; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = trademark; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(346,434,ls), +(359,434,o), +(370,443,o), +(372,456,cs), +(400,585,l), +(427,518,ls), +(431,507,o), +(434,498,o), +(448,498,cs), +(456,498,ls), +(470,498,o), +(477,507,o), +(487,518,cs), +(542,585,l), +(514,456,ls), +(512,443,o), +(519,434,o), +(532,434,cs), +(546,434,ls), +(559,434,o), +(570,443,o), +(572,456,cs), +(620,678,ls), +(622,691,o), +(615,700,o), +(602,700,cs), +(588,700,ls), +(571,700,o), +(559,686,o), +(553,678,cs), +(470,579,l), +(429,678,ls), +(425,686,o), +(419,700,o), +(402,700,cs), +(388,700,ls), +(375,700,o), +(364,691,o), +(362,678,cs), +(314,456,ls), +(312,443,o), +(319,434,o), +(332,434,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,434,ls), +(197,434,o), +(208,443,o), +(210,456,cs), +(250,644,l), +(302,644,ls), +(315,644,o), +(326,653,o), +(329,666,cs), +(332,678,ls), +(334,691,o), +(327,700,o), +(314,700,cs), +(152,700,ls), +(139,700,o), +(128,691,o), +(126,678,cs), +(123,666,ls), +(120,653,o), +(127,644,o), +(140,644,cs), +(192,644,l), +(152,456,ls), +(150,443,o), +(157,434,o), +(170,434,cs) +); +} +); +width = 621; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(413,434,ls), +(426,434,o), +(437,443,o), +(439,456,cs), +(456,535,l), +(464,518,ls), +(468,507,o), +(471,498,o), +(485,498,cs), +(513,498,ls), +(527,498,o), +(534,507,o), +(544,518,cs), +(558,535,l), +(541,456,ls), +(539,443,o), +(546,434,o), +(559,434,cs), +(613,434,ls), +(626,434,o), +(637,443,o), +(639,456,cs), +(687,678,ls), +(689,691,o), +(682,700,o), +(669,700,cs), +(618,700,ls), +(604,700,o), +(594,689,o), +(585,678,cs), +(521,602,l), +(491,678,ls), +(486,689,o), +(480,700,o), +(466,700,cs), +(415,700,ls), +(402,700,o), +(391,691,o), +(389,678,cs), +(341,456,ls), +(339,443,o), +(346,434,o), +(359,434,cs) +); +}, +{ +closed = 1; +nodes = ( +(212,434,ls), +(225,434,o), +(236,443,o), +(238,456,cs), +(270,604,l), +(322,604,ls), +(335,604,o), +(346,613,o), +(349,626,cs), +(360,678,ls), +(362,691,o), +(355,700,o), +(342,700,cs), +(140,700,ls), +(127,700,o), +(116,691,o), +(114,678,c), +(103,626,ls), +(100,613,o), +(107,604,o), +(120,604,cs), +(172,604,l), +(140,456,ls), +(138,443,o), +(145,434,o), +(158,434,cs) +); +} +); +width = 658; +} +); +unicode = 8482; +}, +{ +color = 6; +glyphname = degree; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(299,448,o), +(366,504,o), +(382,579,cs), +(398,654,o), +(352,710,o), +(269,710,cs), +(193,710,o), +(126,654,o), +(110,579,cs), +(94,504,o), +(140,448,o), +(224,448,cs) +); +}, +{ +closed = 1; +nodes = ( +(177,503,o), +(161,534,o), +(170,579,cs), +(180,624,o), +(226,655,o), +(269,655,cs), +(314,655,o), +(332,624,o), +(322,579,cs), +(313,534,o), +(267,503,o), +(224,503,cs) +); +} +); +width = 377; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(328,328,o), +(434,411,o), +(457,519,cs), +(480,627,o), +(409,710,o), +(301,710,cs), +(193,710,o), +(88,627,o), +(65,519,cs), +(42,411,o), +(112,328,o), +(220,328,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,443,o), +(175,474,o), +(185,519,cs), +(194,564,o), +(232,595,o), +(277,595,cs), +(322,595,o), +(346,564,o), +(337,519,cs), +(327,474,o), +(290,443,o), +(245,443,cs) +); +} +); +width = 429; +} +); +unicode = 176; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +} +); +}; +}, +{ +color = 6; +glyphname = bar; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(11,-208,ls), +(24,-208,o), +(35,-199,o), +(38,-186,cs), +(263,874,ls), +(266,887,o), +(259,896,o), +(246,896,cs), +(229,896,ls), +(216,896,o), +(205,887,o), +(202,874,c), +(-23,-186,ls), +(-26,-199,o), +(-19,-208,o), +(-6,-208,cs) +); +} +); +width = 220; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(105,-208,ls), +(120,-208,o), +(135,-196,o), +(138,-181,cs), +(361,869,ls), +(364,884,o), +(355,896,o), +(340,896,cs), +(206,896,l), +(191,896,o), +(176,884,o), +(173,869,cs), +(-50,-181,ls), +(-53,-196,o), +(-44,-208,o), +(-29,-208,cs) +); +} +); +width = 291; +} +); +unicode = 124; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-208"; +} +); +}; +}, +{ +color = 6; +glyphname = brokenbar; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(160,475,ls), +(173,475,o), +(184,484,o), +(187,497,cs), +(253,807,l), +(256,820,o), +(249,829,o), +(236,829,cs), +(219,829,ls), +(206,829,o), +(195,820,o), +(192,807,cs), +(126,497,ls), +(123,484,o), +(130,475,o), +(143,475,cs) +); +}, +{ +closed = 1; +nodes = ( +(60,0,ls), +(73,0,o), +(83,9,o), +(86,22,cs), +(152,332,l), +(155,345,o), +(148,354,o), +(135,354,cs), +(118,354,ls), +(105,354,o), +(94,345,o), +(91,332,cs), +(25,22,ls), +(22,9,o), +(30,0,o), +(43,0,cs) +); +} +); +width = 228; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(252,475,ls), +(267,475,o), +(282,487,o), +(285,502,cs), +(349,802,ls), +(352,817,o), +(343,829,o), +(328,829,cs), +(194,829,l), +(179,829,o), +(164,817,o), +(161,802,cs), +(97,502,ls), +(94,487,o), +(103,475,o), +(118,475,cs) +); +}, +{ +closed = 1; +nodes = ( +(152,0,ls), +(167,0,o), +(181,12,o), +(184,27,cs), +(248,327,ls), +(251,342,o), +(242,354,o), +(227,354,cs), +(93,354,l), +(78,354,o), +(63,342,o), +(60,327,cs), +(-4,27,ls), +(-7,12,o), +(3,0,o), +(18,0,cs) +); +} +); +width = 294; +} +); +unicode = 166; +}, +{ +color = 6; +glyphname = dagger; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(149,0,ls), +(162,0,o), +(172,9,o), +(175,22,cs), +(270,466,l), +(387,466,ls), +(400,466,o), +(410,475,o), +(413,488,cs), +(416,502,ls), +(419,515,o), +(412,524,o), +(399,524,cs), +(282,524,l), +(315,678,ls), +(317,691,o), +(310,700,o), +(297,700,cs), +(280,700,ls), +(267,700,o), +(256,691,o), +(254,678,cs), +(221,524,l), +(104,524,ls), +(91,524,o), +(80,515,o), +(77,502,cs), +(74,488,ls), +(71,475,o), +(79,466,o), +(92,466,cs), +(209,466,l), +(114,22,ls), +(111,9,o), +(119,0,o), +(132,0,cs) +); +} +); +width = 407; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,ls), +(279,0,o), +(293,12,o), +(296,27,cs), +(362,338,l), +(474,338,ls), +(489,338,o), +(504,350,o), +(507,365,cs), +(535,497,ls), +(538,512,o), +(529,524,o), +(514,524,cs), +(402,524,l), +(434,673,ls), +(437,688,o), +(427,700,o), +(412,700,cs), +(278,700,ls), +(263,700,o), +(249,688,o), +(246,673,cs), +(214,524,l), +(102,524,l), +(87,524,o), +(72,512,o), +(69,497,cs), +(41,365,ls), +(38,350,o), +(47,338,o), +(62,338,cs), +(174,338,l), +(108,27,ls), +(105,12,o), +(115,0,o), +(130,0,cs) +); +} +); +width = 519; +} +); +unicode = 8224; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 55; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 395; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = daggerdbl; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(172,0,ls), +(185,0,o), +(195,9,o), +(198,22,cs), +(234,191,l), +(351,191,ls), +(364,191,o), +(375,200,o), +(378,213,cs), +(381,227,ls), +(384,240,o), +(376,249,o), +(363,249,cs), +(246,249,l), +(293,466,l), +(410,466,ls), +(423,466,o), +(433,475,o), +(436,488,cs), +(439,502,ls), +(442,515,o), +(435,524,o), +(422,524,cs), +(305,524,l), +(338,678,ls), +(340,691,o), +(333,700,o), +(320,700,cs), +(303,700,ls), +(290,700,o), +(279,691,o), +(277,678,cs), +(244,524,l), +(127,524,ls), +(114,524,o), +(103,515,o), +(100,502,cs), +(97,488,ls), +(94,475,o), +(102,466,o), +(115,466,cs), +(232,466,l), +(185,249,l), +(68,249,ls), +(55,249,o), +(45,240,o), +(42,227,cs), +(39,213,ls), +(36,200,o), +(43,191,o), +(56,191,cs), +(173,191,l), +(137,22,ls), +(134,9,o), +(142,0,o), +(155,0,cs) +); +} +); +width = 452; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(280,0,ls), +(295,0,o), +(309,12,o), +(312,27,cs), +(333,126,l), +(445,126,ls), +(460,126,o), +(475,138,o), +(478,153,cs), +(506,285,ls), +(509,300,o), +(500,312,o), +(485,312,cs), +(373,312,l), +(391,398,l), +(503,398,ls), +(518,398,o), +(533,410,o), +(536,425,cs), +(564,557,ls), +(567,572,o), +(558,584,o), +(543,584,cs), +(431,584,l), +(450,673,ls), +(453,688,o), +(443,700,o), +(428,700,cs), +(294,700,ls), +(279,700,o), +(265,688,o), +(262,673,cs), +(243,584,l), +(131,584,ls), +(116,584,o), +(101,572,o), +(98,557,cs), +(70,425,ls), +(67,410,o), +(76,398,o), +(91,398,cs), +(203,398,l), +(185,312,l), +(73,312,ls), +(58,312,o), +(43,300,o), +(40,285,cs), +(12,153,ls), +(9,138,o), +(18,126,o), +(33,126,cs), +(145,126,l), +(124,27,ls), +(121,12,o), +(131,0,o), +(146,0,cs) +); +} +); +width = 551; +} +); +unicode = 8225; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 55; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 394; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = estimated; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(404,-10,o), +(496,73,o), +(510,128,cs), +(514,140,o), +(506,148,o), +(494,148,cs), +(482,148,ls), +(468,148,o), +(458,146,o), +(449,132,cs), +(421,87,o), +(366,48,o), +(266,48,cs), +(164,48,o), +(106,121,o), +(133,271,cs), +(134,278,l), +(536,278,ls), +(549,278,o), +(561,287,o), +(564,300,cs), +(569,325,ls), +(606,501,o), +(526,610,o), +(386,610,cs), +(246,610,o), +(130,501,o), +(87,339,cs), +(82,319,o), +(75,284,o), +(71,264,cs), +(44,99,o), +(114,-10,o), +(254,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,339,ls), +(179,467,o), +(264,552,o), +(374,552,cs), +(484,552,o), +(537,467,o), +(511,339,cs), +(510,334,l), +(146,334,l) +); +} +); +width = 605; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(603,82,o), +(618,153,cs), +(621,169,o), +(613,179,o), +(599,179,cs), +(411,179,ls), +(393,179,o), +(388,177,o), +(372,163,cs), +(357,149,o), +(339,146,o), +(326,146,cs), +(294,146,o), +(279,171,o), +(287,209,cs), +(290,223,l), +(618,223,ls), +(634,223,o), +(650,238,o), +(654,256,cs), +(666,312,ls), +(703,488,o), +(632,610,o), +(426,610,cs), +(247,610,o), +(110,508,o), +(63,333,cs), +(60,323,o), +(52,285,o), +(51,275,cs), +(21,87,o), +(104,-10,o), +(295,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(323,381,ls), +(336,440,o), +(365,460,o), +(394,460,cs), +(421,460,o), +(446,450,o), +(431,381,cs), +(431,378,l), +(323,378,l) +); +} +); +width = 682; +} +); +unicode = 8494; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 298; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 541; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = numero; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(60,0,ls), +(74,0,o), +(84,9,o), +(87,22,cs), +(206,581,l), +(456,12,ls), +(458,7,o), +(462,0,o), +(475,0,cs), +(495,0,ls), +(508,0,o), +(518,9,o), +(521,23,cs), +(660,677,ls), +(663,691,o), +(656,700,o), +(642,700,cs), +(624,700,ls), +(611,700,o), +(600,691,o), +(597,677,cs), +(478,117,l), +(227,688,ls), +(225,693,o), +(221,700,o), +(208,700,cs), +(188,700,ls), +(175,700,o), +(165,691,o), +(162,677,cs), +(23,22,ls), +(20,9,o), +(28,0,o), +(41,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(987,0,ls), +(1000,0,o), +(1010,9,o), +(1013,22,cs), +(1016,36,ls), +(1019,49,o), +(1012,58,o), +(999,58,cs), +(599,58,ls), +(586,58,o), +(575,49,o), +(572,36,cs), +(569,22,ls), +(566,9,o), +(574,0,o), +(587,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(945,88,o), +(1048,185,o), +(1080,338,cs), +(1113,491,o), +(1039,588,o), +(905,588,cs), +(771,588,o), +(669,491,o), +(636,338,cs), +(604,185,o), +(677,88,o), +(811,88,cs) +); +}, +{ +closed = 1; +nodes = ( +(728,146,o), +(668,200,o), +(697,338,cs), +(727,476,o), +(822,530,o), +(905,530,cs), +(988,530,o), +(1049,476,o), +(1019,338,cs), +(990,200,o), +(894,146,o), +(811,146,cs) +); +} +); +width = 1126; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,0,ls), +(216,0,o), +(230,12,o), +(233,27,cs), +(280,248,l), +(341,23,ls), +(343,16,o), +(351,0,o), +(378,0,cs), +(536,0,ls), +(551,0,o), +(565,12,o), +(568,27,cs), +(706,673,ls), +(709,688,o), +(699,700,o), +(684,700,cs), +(503,700,ls), +(488,700,o), +(474,688,o), +(471,673,cs), +(419,430,l), +(362,677,l), +(361,685,o), +(353,700,o), +(326,700,cs), +(168,700,ls), +(153,700,o), +(139,688,o), +(136,673,cs), +(-2,27,ls), +(-5,12,o), +(5,0,o), +(20,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1146,0,ls), +(1161,0,o), +(1175,12,o), +(1178,27,cs), +(1188,71,ls), +(1191,86,o), +(1181,98,o), +(1166,98,cs), +(660,98,ls), +(645,98,o), +(631,86,o), +(628,71,cs), +(618,27,ls), +(615,12,o), +(625,0,o), +(640,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1124,128,o), +(1215,201,o), +(1253,378,cs), +(1290,555,o), +(1159,627,o), +(1006,627,cs), +(833,627,o), +(730,555,o), +(693,378,cs), +(655,201,o), +(776,128,o), +(940,128,cs) +); +}, +{ +closed = 1; +nodes = ( +(921,288,o), +(924,314,o), +(938,378,cs), +(951,439,o), +(959,467,o), +(992,467,cs), +(1025,467,o), +(1021,439,o), +(1008,378,cs), +(995,317,o), +(987,288,o), +(954,288,cs) +); +} +); +width = 1275; +} +); +unicode = 8470; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 588; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 338; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 959; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 1075; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = at.case; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(500,-47,o), +(590,3,o), +(655,58,cs), +(658,62,o), +(661,66,o), +(663,72,cs), +(665,84,o), +(658,93,o), +(646,93,cs), +(620,93,ls), +(608,93,o), +(599,85,o), +(593,81,cs), +(564,62,o), +(508,11,o), +(357,11,cs), +(194,11,o), +(115,101,o), +(131,258,cs), +(135,295,o), +(154,385,o), +(165,419,cs), +(218,578,o), +(333,669,o), +(496,669,cs), +(695,669,o), +(758,579,o), +(736,419,cs), +(729,365,o), +(715,313,o), +(710,297,cs), +(703,268,o), +(682,203,o), +(622,203,cs), +(584,203,o), +(562,233,o), +(575,296,cs), +(621,514,ls), +(624,527,o), +(617,536,o), +(604,536,cs), +(587,536,ls), +(574,536,o), +(563,527,o), +(560,514,cs), +(556,495,l), +(543,517,o), +(520,544,o), +(464,544,cs), +(366,544,o), +(284,471,o), +(256,339,cs), +(228,207,o), +(278,135,o), +(377,135,cs), +(453,135,o), +(495,177,o), +(517,204,c), +(523,190,o), +(544,145,o), +(610,145,cs), +(691,145,o), +(744,195,o), +(770,291,cs), +(774,307,o), +(790,370,o), +(798,424,cs), +(831,619,o), +(738,727,o), +(509,727,cs), +(309,727,o), +(168,614,o), +(105,424,cs), +(94,390,o), +(73,290,o), +(69,253,cs), +(49,59,o), +(143,-47,o), +(344,-47,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,193,o), +(301,264,o), +(317,339,cs), +(335,424,o), +(376,486,o), +(452,486,cs), +(531,486,o), +(541,424,o), +(523,339,cs), +(505,254,o), +(468,193,o), +(389,193,cs) +); +} +); +width = 813; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(555,-72,o), +(676,-7,o), +(749,64,cs), +(754,69,o), +(758,73,o), +(759,79,cs), +(764,96,o), +(753,107,o), +(738,107,cs), +(640,107,ls), +(626,107,o), +(618,102,o), +(602,92,cs), +(553,60,o), +(515,49,o), +(406,49,cs), +(222,49,o), +(159,128,o), +(173,259,cs), +(177,297,o), +(196,385,o), +(207,420,cs), +(247,540,o), +(336,632,o), +(510,632,cs), +(715,632,o), +(765,568,o), +(740,420,cs), +(735,386,o), +(727,354,o), +(720,318,cs), +(713,288,o), +(696,269,o), +(666,269,cs), +(637,269,o), +(626,287,o), +(633,319,cs), +(674,512,ls), +(677,527,o), +(668,539,o), +(653,539,cs), +(581,539,ls), +(566,539,o), +(551,527,o), +(548,512,cs), +(546,503,l), +(530,532,o), +(506,547,o), +(456,547,cs), +(357,547,o), +(286,464,o), +(260,342,cs), +(234,220,o), +(275,138,o), +(375,138,cs), +(469,138,o), +(499,170,o), +(518,194,c), +(533,172,o), +(574,148,o), +(641,148,cs), +(717,148,o), +(813,202,o), +(841,303,cs), +(850,339,o), +(862,391,o), +(867,425,cs), +(889,601,o), +(838,753,o), +(535,753,cs), +(283,753,o), +(129,581,o), +(83,425,cs), +(72,390,o), +(51,291,o), +(46,254,cs), +(23,75,o), +(109,-72,o), +(380,-72,cs) +); +}, +{ +closed = 1; +nodes = ( +(394,259,o), +(371,277,o), +(385,342,cs), +(399,407,o), +(430,426,o), +(466,426,cs), +(505,426,o), +(526,407,o), +(512,342,cs), +(498,276,o), +(469,259,o), +(430,259,cs) +); +} +); +width = 856; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 193; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 470; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 684; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 135; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 486; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 378; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 419; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 769; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 531; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = cent; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(198,-100,l), +(211,-100,o), +(221,-91,o), +(224,-78,c), +(238,-9,l), +(369,-3,o), +(439,80,o), +(457,149,cs), +(461,162,o), +(454,171,o), +(442,171,c), +(424,171,l), +(410,171,o), +(406,167,o), +(397,150,cs), +(358,74,o), +(292,48,o), +(222,48,cs), +(131,48,o), +(84,100,o), +(106,225,cs), +(110,245,o), +(116,275,o), +(121,295,cs), +(152,420,o), +(234,472,o), +(325,472,cs), +(400,472,o), +(447,441,o), +(444,365,cs), +(443,349,o), +(450,344,o), +(464,344,c), +(483,344,l), +(495,344,o), +(503,353,o), +(504,366,cs), +(511,433,o), +(476,518,o), +(353,529,c), +(366,588,l), +(369,601,o), +(361,610,o), +(348,610,c), +(331,610,l), +(318,610,o), +(308,601,o), +(305,588,c), +(292,528,l), +(170,516,o), +(93,431,o), +(61,300,cs), +(56,280,o), +(48,240,o), +(44,220,cs), +(21,94,o), +(75,11,o), +(178,-6,c), +(163,-78,l), +(160,-91,o), +(168,-100,o), +(181,-100,c) +); +} +); +width = 542; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,-100,l), +(317,-100,o), +(332,-88,o), +(335,-73,c), +(348,-1,l), +(510,31,o), +(571,147,o), +(582,184,cs), +(586,199,o), +(575,211,o), +(560,211,c), +(365,211,l), +(350,211,o), +(340,203,o), +(332,191,cs), +(320,172,o), +(313,161,o), +(289,161,cs), +(258,161,o), +(255,181,o), +(262,224,cs), +(265,243,o), +(270,266,o), +(277,295,cs), +(287,335,o), +(300,359,o), +(331,359,cs), +(351,359,o), +(356,348,o), +(361,329,cs), +(365,317,o), +(371,309,o), +(386,309,c), +(581,309,l), +(596,309,o), +(612,321,o), +(614,336,cs), +(620,378,o), +(578,475,o), +(460,514,c), +(474,583,l), +(478,598,o), +(468,610,o), +(453,610,c), +(304,610,l), +(289,610,o), +(275,598,o), +(271,583,c), +(258,520,l), +(144,494,o), +(64,418,o), +(33,300,cs), +(27,277,o), +(20,240,o), +(16,219,c), +(-1,111,o), +(58,39,o), +(147,8,c), +(132,-73,l), +(129,-88,o), +(138,-100,o), +(153,-100,c) +); +} +); +width = 633; +} +); +unicode = 162; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-100"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 610; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 269; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = currency; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(67,80,o), +(80,80,o), +(91,89,c), +(142,132,l), +(172,105,o), +(211,90,o), +(259,90,cs), +(306,90,o), +(354,105,o), +(394,132,c), +(427,89,l), +(434,80,o), +(447,80,o), +(458,89,c), +(473,101,l), +(484,110,o), +(486,123,o), +(479,132,c), +(445,174,l), +(479,209,o), +(504,252,o), +(514,300,cs), +(524,347,o), +(517,391,o), +(499,426,c), +(551,468,l), +(562,477,o), +(564,490,o), +(557,499,c), +(548,511,l), +(541,520,o), +(528,520,o), +(517,511,c), +(466,468,l), +(436,494,o), +(396,510,o), +(349,510,cs), +(301,510,o), +(254,494,o), +(214,468,c), +(181,511,l), +(174,520,o), +(161,520,o), +(150,511,c), +(135,499,l), +(124,490,o), +(122,477,o), +(129,468,c), +(163,426,l), +(128,391,o), +(104,347,o), +(94,300,cs), +(84,252,o), +(90,209,o), +(109,174,c), +(57,132,l), +(46,123,o), +(44,110,o), +(51,101,c), +(60,89,l) +); +}, +{ +closed = 1; +nodes = ( +(189,150,o), +(136,217,o), +(154,300,cs), +(172,383,o), +(253,450,o), +(336,450,cs), +(419,450,o), +(472,383,o), +(454,300,cs), +(436,217,o), +(355,150,o), +(272,150,cs) +); +} +); +width = 578; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(87,19,o), +(104,19,o), +(116,29,cs), +(173,76,l), +(203,59,o), +(239,50,o), +(279,50,cs), +(319,50,o), +(358,59,o), +(395,76,c), +(432,29,ls), +(440,19,o), +(457,19,o), +(470,29,cs), +(561,104,ls), +(574,115,o), +(577,132,o), +(569,142,cs), +(532,189,l), +(555,222,o), +(573,260,o), +(582,300,cs), +(590,340,o), +(588,377,o), +(580,411,c), +(637,458,ls), +(649,468,o), +(652,485,o), +(645,496,cs), +(586,571,ls), +(577,581,o), +(560,581,o), +(548,571,cs), +(491,524,l), +(460,540,o), +(425,550,o), +(385,550,cs), +(345,550,o), +(305,540,o), +(269,524,c), +(232,571,ls), +(224,581,o), +(207,581,o), +(194,571,cs), +(103,496,ls), +(90,485,o), +(87,468,o), +(95,458,cs), +(132,411,l), +(107,377,o), +(90,340,o), +(82,300,cs), +(73,260,o), +(74,222,o), +(84,189,c), +(27,142,ls), +(15,132,o), +(12,115,o), +(19,104,cs), +(78,29,ls) +); +}, +{ +closed = 1; +nodes = ( +(263,210,o), +(231,250,o), +(242,300,cs), +(253,350,o), +(301,390,o), +(351,390,cs), +(401,390,o), +(433,350,o), +(422,300,cs), +(411,250,o), +(363,210,o), +(313,210,cs) +); +} +); +width = 634; +} +); +unicode = 164; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 510; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 450; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 288; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = dollar; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(219,-100,l), +(232,-100,o), +(243,-91,o), +(246,-78,c), +(260,-9,l), +(403,-4,o), +(497,57,o), +(522,173,cs), +(545,283,o), +(484,329,o), +(345,377,cs), +(211,423,o), +(157,450,o), +(174,530,cs), +(192,612,o), +(275,650,o), +(374,650,cs), +(462,650,o), +(522,601,o), +(516,535,cs), +(515,519,o), +(527,515,o), +(534,515,c), +(554,515,l), +(568,515,o), +(577,525,o), +(579,535,cs), +(592,605,o), +(541,694,o), +(411,708,c), +(428,778,l), +(431,791,o), +(424,800,o), +(411,800,c), +(392,800,l), +(379,800,o), +(368,791,o), +(365,778,c), +(348,709,l), +(215,702,o), +(134,633,o), +(114,538,cs), +(91,428,o), +(142,379,o), +(275,333,cs), +(414,285,o), +(478,260,o), +(461,181,cs), +(444,101,o), +(369,50,o), +(239,50,cs), +(119,50,o), +(74,114,o), +(78,170,c), +(78,181,o), +(73,190,o), +(60,190,c), +(40,190,l), +(28,190,o), +(16,181,o), +(15,170,cs), +(5,83,o), +(64,5,o), +(198,-8,c), +(183,-78,l), +(180,-91,o), +(187,-100,o), +(200,-100,c) +); +} +); +width = 596; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(339,-100,l), +(354,-100,o), +(369,-88,o), +(372,-73,c), +(385,-6,l), +(548,10,o), +(644,84,o), +(671,212,cs), +(698,342,o), +(637,419,o), +(442,444,cs), +(354,455,o), +(336,468,o), +(340,487,cs), +(344,504,o), +(360,515,o), +(394,515,cs), +(422,515,o), +(437,503,o), +(443,497,cs), +(453,486,o), +(461,481,o), +(480,481,c), +(680,481,l), +(691,481,o), +(703,491,o), +(705,503,cs), +(718,572,o), +(640,663,o), +(516,697,c), +(532,773,l), +(535,788,o), +(526,800,o), +(511,800,c), +(390,800,l), +(375,800,o), +(360,788,o), +(357,773,c), +(342,705,l), +(201,686,o), +(108,611,o), +(84,494,c), +(55,361,o), +(139,281,o), +(293,260,cs), +(389,247,o), +(417,237,o), +(412,213,cs), +(408,195,o), +(376,185,o), +(331,185,cs), +(298,185,o), +(278,193,o), +(262,208,cs), +(250,219,o), +(243,225,o), +(222,225,c), +(32,225,l), +(20,225,o), +(8,215,o), +(6,203,cs), +(-12,110,o), +(58,23,o), +(211,-2,c), +(197,-73,l), +(194,-88,o), +(203,-100,o), +(218,-100,c) +); +} +); +width = 714; +} +); +unicode = 36; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-100"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 302; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = euro; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(528,-10,o), +(615,101,o), +(641,186,cs), +(645,198,o), +(636,206,o), +(624,206,c), +(604,206,l), +(593,206,o), +(585,201,o), +(578,185,cs), +(531,86,o), +(443,50,o), +(338,50,cs), +(214,50,o), +(161,117,o), +(191,272,cs), +(224,431,ls), +(260,583,o), +(355,650,o), +(478,650,cs), +(585,650,o), +(643,614,o), +(648,515,cs), +(649,499,o), +(655,494,o), +(666,494,c), +(690,494,l), +(702,494,o), +(711,502,o), +(711,514,cs), +(714,599,o), +(668,710,o), +(478,710,cs), +(294,710,o), +(200,592,o), +(161,434,cs), +(126,267,ls), +(94,117,o), +(153,-10,o), +(338,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(410,250,ls), +(423,250,o), +(433,259,o), +(436,272,cs), +(440,288,ls), +(443,301,o), +(435,310,o), +(422,310,cs), +(70,310,ls), +(57,310,o), +(47,301,o), +(44,288,cs), +(40,272,ls), +(37,259,o), +(45,250,o), +(58,250,cs) +); +}, +{ +closed = 1; +nodes = ( +(439,390,ls), +(452,390,o), +(464,399,o), +(466,412,cs), +(469,428,ls), +(471,441,o), +(465,450,o), +(452,450,cs), +(100,450,ls), +(87,450,o), +(76,441,o), +(73,428,c), +(70,412,ls), +(68,399,o), +(74,390,o), +(87,390,cs) +); +} +); +width = 723; +}, +{ +associatedMasterId = UUID0; +attr = { +axisRules = ( +{ +min = 125; +} +); +}; +color = 6; +layerId = "61465C6F-F7CE-48BA-A989-499B0262D75F"; +name = "[125]"; +shapes = ( +{ +closed = 1; +nodes = ( +(528,-10,o), +(615,101,o), +(641,186,cs), +(645,198,o), +(636,206,o), +(624,206,c), +(604,206,l), +(593,206,o), +(585,201,o), +(578,185,cs), +(531,86,o), +(443,50,o), +(338,50,cs), +(214,50,o), +(161,117,o), +(191,272,cs), +(224,431,ls), +(260,583,o), +(355,650,o), +(478,650,cs), +(585,650,o), +(643,614,o), +(648,515,cs), +(649,499,o), +(655,494,o), +(666,494,c), +(690,494,l), +(702,494,o), +(711,502,o), +(711,514,cs), +(714,599,o), +(668,710,o), +(478,710,cs), +(294,710,o), +(200,592,o), +(161,434,cs), +(126,267,ls), +(94,117,o), +(153,-10,o), +(338,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(425,320,ls), +(438,320,o), +(450,329,o), +(452,342,cs), +(455,358,ls), +(457,371,o), +(451,380,o), +(438,380,cs), +(86,380,ls), +(73,380,o), +(62,371,o), +(59,358,c), +(56,342,ls), +(54,329,o), +(60,320,o), +(73,320,cs) +); +} +); +width = 723; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(738,74,o), +(773,236,cs), +(775,248,o), +(767,258,o), +(755,258,cs), +(551,258,ls), +(529,258,o), +(518,251,o), +(504,229,cs), +(484,197,o), +(458,185,o), +(424,185,cs), +(374,185,o), +(349,211,o), +(374,293,c), +(398,412,l), +(410,491,o), +(445,515,o), +(494,515,cs), +(528,515,o), +(549,503,o), +(556,471,cs), +(560,449,o), +(568,442,o), +(590,442,cs), +(794,442,ls), +(806,442,o), +(819,452,o), +(821,464,cs), +(856,626,o), +(685,710,o), +(515,710,cs), +(309,710,o), +(184,629,o), +(140,425,cs), +(113,289,ls), +(55,75,o), +(213,-10,o), +(402,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(443,178,ls), +(458,178,o), +(473,190,o), +(476,205,cs), +(500,321,l), +(504,336,o), +(494,348,o), +(479,348,cs), +(67,348,ls), +(52,348,o), +(38,336,o), +(34,321,c), +(10,205,ls), +(7,190,o), +(16,178,o), +(31,178,cs) +); +}, +{ +closed = 1; +nodes = ( +(469,316,ls), +(484,316,o), +(499,328,o), +(502,343,cs), +(526,459,l), +(530,474,o), +(520,486,o), +(505,486,cs), +(93,486,ls), +(78,486,o), +(64,474,o), +(60,459,c), +(36,343,ls), +(33,328,o), +(42,316,o), +(57,316,cs) +); +} +); +width = 822; +}, +{ +associatedMasterId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +attr = { +axisRules = ( +{ +min = 125; +} +); +}; +color = 6; +layerId = "BE7A9555-1146-429C-BE5A-A0AAB5D5B713"; +name = "[125]"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-10,o), +(738,74,o), +(773,236,cs), +(775,248,o), +(767,258,o), +(755,258,cs), +(551,258,ls), +(529,258,o), +(518,251,o), +(504,229,cs), +(484,197,o), +(458,185,o), +(424,185,cs), +(374,185,o), +(349,211,o), +(374,293,c), +(398,412,l), +(410,491,o), +(445,515,o), +(494,515,cs), +(528,515,o), +(549,503,o), +(556,471,cs), +(560,449,o), +(568,442,o), +(590,442,cs), +(794,442,ls), +(806,442,o), +(819,452,o), +(821,464,cs), +(856,626,o), +(685,710,o), +(515,710,cs), +(309,710,o), +(184,629,o), +(140,425,cs), +(113,289,ls), +(55,75,o), +(213,-10,o), +(402,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(459,266,ls), +(474,266,o), +(489,278,o), +(492,293,cs), +(516,409,l), +(520,424,o), +(510,436,o), +(495,436,cs), +(83,436,ls), +(68,436,o), +(54,424,o), +(50,409,c), +(26,293,ls), +(23,278,o), +(32,266,o), +(47,266,cs) +); +} +); +width = 822; +} +); +unicode = 8364; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 349; +} +); +}; +}, +{ +color = 6; +glyphname = hryvnia; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(411,-10,o), +(524,79,o), +(544,170,cs), +(546,181,o), +(539,190,o), +(527,190,cs), +(507,190,ls), +(494,190,o), +(485,181,o), +(481,170,cs), +(459,114,o), +(392,50,o), +(262,50,cs), +(153,50,o), +(105,101,o), +(122,181,cs), +(139,260,o), +(198,298,o), +(344,341,cs), +(468,379,o), +(559,430,o), +(580,530,cs), +(602,631,o), +(547,710,o), +(418,710,cs), +(260,710,o), +(161,612,o), +(144,535,cs), +(142,525,o), +(147,515,o), +(161,515,cs), +(181,515,ls), +(188,515,o), +(202,519,o), +(207,535,cs), +(229,601,o), +(307,650,o), +(405,650,cs), +(486,650,o), +(535,612,o), +(517,530,cs), +(500,450,o), +(423,421,o), +(292,377,cs), +(162,336,o), +(80,281,o), +(59,181,cs), +(33,60,o), +(113,-10,o), +(249,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(543,268,ls), +(556,268,o), +(566,277,o), +(569,290,cs), +(571,296,ls), +(573,309,o), +(566,318,o), +(553,318,cs), +(73,318,ls), +(60,318,o), +(49,309,o), +(47,296,cs), +(45,290,ls), +(42,277,o), +(50,268,o), +(63,268,cs) +); +}, +{ +closed = 1; +nodes = ( +(566,378,ls), +(579,378,o), +(590,387,o), +(593,400,cs), +(594,406,ls), +(597,419,o), +(590,428,o), +(577,428,cs), +(97,428,ls), +(84,428,o), +(73,419,o), +(70,406,cs), +(69,400,ls), +(66,387,o), +(73,378,o), +(86,378,cs) +); +} +); +width = 620; +}, +{ +associatedMasterId = UUID0; +attr = { +axisRules = ( +{ +min = 125; +} +); +}; +color = 6; +layerId = "A8966C87-3315-45C7-84EC-9CFC332ED335"; +name = "[125]"; +shapes = ( +{ +closed = 1; +nodes = ( +(387,-10,o), +(489,79,o), +(509,170,cs), +(511,181,o), +(504,190,o), +(492,190,cs), +(472,190,ls), +(459,190,o), +(450,181,o), +(446,170,cs), +(424,114,o), +(367,50,o), +(257,50,cs), +(148,50,o), +(100,101,o), +(117,181,cs), +(134,260,o), +(193,298,o), +(339,341,cs), +(463,379,o), +(554,430,o), +(575,530,cs), +(597,631,o), +(542,710,o), +(413,710,cs), +(255,710,o), +(156,612,o), +(139,535,cs), +(137,525,o), +(142,515,o), +(156,515,cs), +(176,515,ls), +(183,515,o), +(197,519,o), +(202,535,cs), +(224,601,o), +(302,650,o), +(400,650,cs), +(481,650,o), +(530,612,o), +(512,530,cs), +(495,450,o), +(418,421,o), +(287,377,cs), +(157,336,o), +(75,281,o), +(54,181,cs), +(28,60,o), +(108,-10,o), +(244,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(238,317,l), +(346,367,l), +(84,367,ls), +(71,367,o), +(60,358,o), +(57,345,cs), +(56,339,ls), +(53,326,o), +(60,317,o), +(73,317,cs) +); +}, +{ +closed = 1; +nodes = ( +(546,307,ls), +(559,307,o), +(570,316,o), +(573,329,cs), +(574,335,ls), +(577,348,o), +(569,357,o), +(556,357,cs), +(338,357,l), +(231,307,l) +); +} +); +width = 615; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(485,-10,o), +(612,92,o), +(639,203,cs), +(641,215,o), +(633,225,o), +(621,225,cs), +(431,225,ls), +(410,225,o), +(401,219,o), +(385,208,cs), +(363,193,o), +(339,185,o), +(296,185,cs), +(265,185,o), +(243,196,o), +(249,223,cs), +(257,260,o), +(290,272,o), +(434,320,cs), +(568,362,o), +(641,388,o), +(665,500,cs), +(690,620,o), +(613,710,o), +(455,710,cs), +(242,710,o), +(95,590,o), +(77,503,cs), +(74,491,o), +(82,481,o), +(93,481,cs), +(293,481,ls), +(312,481,o), +(322,486,o), +(336,497,cs), +(355,510,o), +(375,518,o), +(414,518,cs), +(441,518,o), +(449,504,o), +(445,487,cs), +(438,455,o), +(407,433,o), +(271,390,cs), +(123,347,o), +(50,309,o), +(28,206,cs), +(2,80,o), +(103,-10,o), +(264,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(617,231,ls), +(632,231,o), +(646,243,o), +(649,258,cs), +(662,316,ls), +(665,331,o), +(656,343,o), +(641,343,cs), +(56,343,ls), +(41,343,o), +(26,331,o), +(23,316,cs), +(10,258,ls), +(7,243,o), +(17,231,o), +(32,231,cs) +); +}, +{ +closed = 1; +nodes = ( +(640,341,ls), +(655,341,o), +(670,353,o), +(673,368,cs), +(685,426,ls), +(688,441,o), +(679,453,o), +(664,453,cs), +(79,453,ls), +(64,453,o), +(49,441,o), +(46,426,cs), +(34,368,ls), +(31,353,o), +(40,341,o), +(55,341,cs) +); +} +); +width = 676; +}, +{ +associatedMasterId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +attr = { +axisRules = ( +{ +min = 125; +} +); +}; +color = 6; +layerId = "D71249B8-B56B-408F-99B3-4A5709FD9926"; +name = "[125]"; +shapes = ( +{ +closed = 1; +nodes = ( +(484,-10,o), +(611,92,o), +(638,203,cs), +(640,215,o), +(632,225,o), +(620,225,cs), +(430,225,ls), +(409,225,o), +(400,219,o), +(384,208,cs), +(362,193,o), +(338,185,o), +(295,185,cs), +(264,185,o), +(242,196,o), +(248,223,cs), +(256,260,o), +(289,272,o), +(433,320,cs), +(568,367,o), +(642,396,o), +(668,520,cs), +(691,629,o), +(612,710,o), +(454,710,cs), +(241,710,o), +(94,590,o), +(76,503,cs), +(73,491,o), +(81,481,o), +(92,481,cs), +(292,481,ls), +(311,481,o), +(321,486,o), +(335,497,cs), +(354,510,o), +(374,518,o), +(413,518,cs), +(440,518,o), +(448,504,o), +(444,487,cs), +(437,455,o), +(406,433,o), +(270,390,cs), +(122,347,o), +(49,309,o), +(27,206,cs), +(1,80,o), +(102,-10,o), +(263,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,317,l), +(471,429,l), +(73,429,ls), +(58,429,o), +(43,417,o), +(40,402,cs), +(28,344,ls), +(25,329,o), +(34,317,o), +(49,317,cs) +); +}, +{ +closed = 1; +nodes = ( +(634,297,ls), +(649,297,o), +(663,309,o), +(666,324,cs), +(679,382,ls), +(682,397,o), +(673,409,o), +(658,409,cs), +(451,409,l), +(231,297,l) +); +} +); +width = 678; +} +); +unicode = 8372; +}, +{ +color = 6; +glyphname = ruble; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(81,0,l), +(95,0,o), +(106,9,o), +(108,22,c), +(139,166,l), +(358,166,l), +(371,166,o), +(382,175,o), +(385,188,c), +(388,204,l), +(391,217,o), +(384,226,o), +(371,226,c), +(152,226,l), +(164,286,l), +(366,286,l), +(506,286,o), +(611,357,o), +(640,493,cs), +(669,629,o), +(594,700,o), +(454,700,c), +(211,700,l), +(198,700,o), +(187,691,o), +(185,677,c), +(114,346,l), +(36,346,l), +(23,346,o), +(12,337,o), +(9,324,c), +(6,308,l), +(3,295,o), +(10,286,o), +(23,286,c), +(101,286,l), +(89,226,l), +(11,226,l), +(-2,226,o), +(-13,217,o), +(-16,204,c), +(-19,188,l), +(-22,175,o), +(-15,166,o), +(-2,166,c), +(76,166,l), +(45,22,l), +(43,9,o), +(50,0,o), +(63,0,c) +); +}, +{ +closed = 1; +nodes = ( +(240,640,l), +(437,640,l), +(553,640,o), +(598,588,o), +(577,493,cs), +(557,398,o), +(490,346,o), +(374,346,c), +(177,346,l) +); +} +); +width = 638; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,0,ls), +(288,0,o), +(302,12,o), +(305,27,cs), +(318,87,l), +(401,87,ls), +(416,87,o), +(431,99,o), +(434,114,cs), +(445,166,ls), +(448,181,o), +(439,193,o), +(424,193,cs), +(341,193,l), +(350,238,l), +(420,238,ls), +(601,238,o), +(735,303,o), +(767,455,cs), +(803,621,o), +(699,700,o), +(518,700,cs), +(215,700,ls), +(200,700,o), +(186,688,o), +(183,673,cs), +(125,403,l), +(53,403,ls), +(38,403,o), +(24,391,o), +(21,376,cs), +(-3,265,ls), +(-6,250,o), +(3,238,o), +(18,238,cs), +(90,238,l), +(81,193,l), +(9,193,ls), +(-6,193,o), +(-21,181,o), +(-24,166,cs), +(-35,114,ls), +(-38,99,o), +(-29,87,o), +(-14,87,cs), +(58,87,l), +(45,27,ls), +(42,12,o), +(52,0,o), +(67,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(404,514,l), +(474,514,ls), +(510,514,o), +(513,482,o), +(508,457,cs), +(499,418,o), +(471,403,o), +(450,403,cs), +(380,403,l) +); +} +); +width = 753; +} +); +metricRight = P; +unicode = 8381; +}, +{ +color = 6; +glyphname = rupeeIndian; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(353,0,ls), +(363,0,o), +(374,4,o), +(376,15,cs), +(377,20,o), +(375,24,o), +(372,29,cs), +(181,327,l), +(189,301,l), +(219,301,ls), +(382,301,o), +(462,391,o), +(483,488,cs), +(500,569,o), +(487,649,o), +(395,668,c), +(437,640,l), +(583,640,ls), +(596,640,o), +(608,649,o), +(610,662,cs), +(613,678,ls), +(615,691,o), +(609,700,o), +(596,700,cs), +(210,700,ls), +(197,700,o), +(185,691,o), +(183,678,cs), +(180,662,ls), +(178,649,o), +(184,640,o), +(197,640,cs), +(312,640,ls), +(405,640,o), +(439,578,o), +(422,498,cs), +(405,418,o), +(360,356,o), +(219,356,cs), +(148,356,ls), +(135,356,o), +(123,347,o), +(121,334,cs), +(119,323,ls), +(116,308,o), +(119,305,o), +(125,296,cs), +(306,15,ls), +(312,6,o), +(318,0,o), +(332,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(549,480,ls), +(562,480,o), +(574,489,o), +(576,502,cs), +(579,518,ls), +(581,531,o), +(575,540,o), +(562,540,cs), +(176,540,ls), +(163,540,o), +(151,531,o), +(149,518,cs), +(146,502,ls), +(144,489,o), +(150,480,o), +(163,480,cs) +); +} +); +width = 580; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(452,0,ls), +(468,0,o), +(479,10,o), +(481,22,cs), +(482,27,o), +(479,33,o), +(475,40,cs), +(273,318,l), +(214,214,l), +(265,222,ls), +(387,241,o), +(507,323,o), +(536,457,cs), +(547,509,o), +(544,568,o), +(510,596,c), +(429,578,l), +(607,578,ls), +(622,578,o), +(637,590,o), +(640,605,cs), +(655,673,ls), +(658,688,o), +(648,700,o), +(633,700,cs), +(182,700,ls), +(167,700,o), +(153,688,o), +(150,673,cs), +(135,605,ls), +(132,590,o), +(141,578,o), +(156,578,cs), +(189,578,ls), +(276,578,o), +(291,530,o), +(279,475,cs), +(266,412,o), +(233,373,o), +(141,373,cs), +(113,373,ls), +(98,373,o), +(83,361,o), +(80,346,cs), +(64,273,ls), +(58,242,o), +(53,225,o), +(68,206,cs), +(207,27,ls), +(213,19,o), +(217,0,o), +(244,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(571,414,ls), +(586,414,o), +(601,426,o), +(604,441,cs), +(620,509,ls), +(623,524,o), +(613,536,o), +(598,536,cs), +(147,536,ls), +(132,536,o), +(118,524,o), +(115,509,cs), +(99,441,ls), +(96,426,o), +(105,414,o), +(120,414,cs) +); +} +); +width = 612; +} +); +unicode = 8377; +}, +{ +color = 6; +glyphname = sheqel; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(404,0,ls), +(584,0,o), +(659,89,o), +(692,244,cs), +(757,549,ls), +(760,562,o), +(753,571,o), +(740,571,cs), +(723,571,ls), +(710,571,o), +(699,562,o), +(696,549,cs), +(632,249,ls), +(607,129,o), +(536,58,o), +(401,58,cs), +(267,58,l), +(337,390,ls), +(340,403,o), +(333,412,o), +(320,412,cs), +(303,412,ls), +(290,412,o), +(279,403,o), +(276,390,c), +(198,22,l), +(195,9,o), +(203,0,o), +(216,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(53,0,ls), +(66,0,o), +(76,9,o), +(79,22,cs), +(184,513,l), +(318,513,ls), +(453,513,o), +(493,442,o), +(468,322,cs), +(438,182,ls), +(435,169,o), +(443,160,o), +(456,160,cs), +(473,160,ls), +(486,160,o), +(496,169,o), +(499,182,cs), +(530,327,ls), +(563,482,o), +(485,571,o), +(325,571,cs), +(157,571,ls), +(144,571,o), +(133,562,o), +(130,549,c), +(18,22,ls), +(15,9,o), +(23,0,o), +(36,0,cs) +); +} +); +width = 773; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(698,0,l), +(908,0,o), +(992,58,o), +(1033,254,cs), +(1095,544,ls), +(1098,559,o), +(1089,571,o), +(1074,571,cs), +(905,571,ls), +(890,571,o), +(876,560,o), +(872,545,cs), +(810,250,ls), +(799,200,o), +(769,175,o), +(720,175,cs), +(505,175,l), +(538,334,ls), +(542,349,o), +(532,361,o), +(517,361,cs), +(348,361,ls), +(333,361,o), +(319,349,o), +(315,334,cs), +(250,27,ls), +(247,12,o), +(257,0,o), +(272,0,c) +); +}, +{ +closed = 1; +nodes = ( +(185,0,ls), +(200,0,o), +(214,12,o), +(217,27,cs), +(296,396,l), +(511,396,ls), +(560,396,o), +(579,371,o), +(569,321,cs), +(551,236,ls), +(547,221,o), +(557,210,o), +(572,210,cs), +(741,210,ls), +(756,210,o), +(771,222,o), +(774,237,cs), +(791,317,ls), +(833,513,o), +(713,571,o), +(543,571,cs), +(137,571,ls), +(122,571,o), +(107,559,o), +(104,544,cs), +(-6,27,ls), +(-9,12,o), +(1,0,o), +(16,0,cs) +); +} +); +width = 1089; +} +); +unicode = 8362; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +} +); +}; +}, +{ +color = 6; +glyphname = sterling; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(485,-5,o), +(558,49,o), +(581,149,cs), +(583,159,o), +(578,168,o), +(566,168,cs), +(541,168,ls), +(531,168,o), +(520,156,o), +(518,149,cs), +(499,96,o), +(475,55,o), +(412,55,cs), +(330,55,o), +(315,151,o), +(221,169,c), +(230,221,o), +(232,267,o), +(235,315,c), +(437,315,ls), +(450,315,o), +(461,324,o), +(464,337,cs), +(467,353,ls), +(470,366,o), +(463,375,o), +(450,375,cs), +(239,375,l), +(241,400,o), +(246,426,o), +(252,455,cs), +(276,569,o), +(348,651,o), +(455,651,cs), +(552,651,o), +(591,593,o), +(587,494,cs), +(587,482,o), +(596,473,o), +(606,473,cs), +(624,473,ls), +(636,473,o), +(647,483,o), +(649,495,cs), +(670,607,o), +(618,711,o), +(468,711,cs), +(311,711,o), +(218,590,o), +(189,456,cs), +(183,427,o), +(178,400,o), +(175,375,c), +(105,375,ls), +(92,375,o), +(81,366,o), +(78,353,cs), +(75,337,ls), +(72,324,o), +(79,315,o), +(92,315,cs), +(169,315,l), +(166,261,o), +(165,216,o), +(158,171,c), +(91,160,o), +(30,114,o), +(7,19,cs), +(5,9,o), +(10,0,o), +(22,0,cs), +(45,0,ls), +(63,0,o), +(68,14,o), +(71,21,cs), +(90,74,o), +(112,113,o), +(175,113,cs), +(262,113,o), +(271,-5,o), +(399,-5,cs) +); +} +); +width = 658; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(566,-10,o), +(687,69,o), +(720,209,cs), +(722,219,o), +(717,228,o), +(705,228,cs), +(574,228,ls), +(564,228,o), +(559,224,o), +(554,219,cs), +(531,196,o), +(503,182,o), +(470,182,cs), +(428,182,o), +(401,189,o), +(357,199,c), +(362,217,o), +(366,234,o), +(369,250,c), +(477,250,ls), +(492,250,o), +(507,262,o), +(510,277,cs), +(534,389,ls), +(537,404,o), +(528,416,o), +(513,416,cs), +(400,416,l), +(401,425,o), +(403,435,o), +(405,445,cs), +(415,493,o), +(430,516,o), +(464,516,cs), +(488,516,o), +(499,504,o), +(506,472,cs), +(510,450,o), +(518,443,o), +(540,443,cs), +(744,443,ls), +(756,443,o), +(768,453,o), +(771,465,cs), +(802,627,o), +(685,711,o), +(505,711,cs), +(313,711,o), +(185,632,o), +(145,446,cs), +(143,435,o), +(141,425,o), +(140,416,c), +(105,416,ls), +(90,416,o), +(75,404,o), +(72,389,cs), +(48,277,ls), +(45,262,o), +(54,250,o), +(69,250,cs), +(144,250,l), +(143,235,o), +(142,219,o), +(138,202,c), +(63,166,o), +(12,96,o), +(-8,18,cs), +(-10,8,o), +(-3,0,o), +(7,0,cs), +(161,0,ls), +(168,0,o), +(174,4,o), +(178,9,cs), +(194,28,o), +(215,35,o), +(239,35,cs), +(307,35,o), +(369,-10,o), +(471,-10,cs) +); +} +); +width = 758; +} +); +unicode = 163; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 218; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = tenge; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(220,0,ls), +(234,0,o), +(245,9,o), +(247,22,cs), +(353,520,l), +(550,520,ls), +(564,520,o), +(575,529,o), +(578,542,cs), +(581,557,ls), +(584,571,o), +(577,580,o), +(563,580,cs), +(105,580,ls), +(92,580,o), +(81,571,o), +(78,557,cs), +(75,542,ls), +(72,529,o), +(79,520,o), +(92,520,cs), +(290,520,l), +(184,22,ls), +(182,9,o), +(189,0,o), +(202,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(576,640,ls), +(590,640,o), +(601,649,o), +(603,662,cs), +(607,677,ls), +(609,691,o), +(602,700,o), +(588,700,cs), +(130,700,ls), +(117,700,o), +(106,691,o), +(104,677,cs), +(100,662,ls), +(98,649,o), +(105,640,o), +(118,640,cs) +); +} +); +width = 550; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(373,0,ls), +(388,0,o), +(402,12,o), +(405,27,cs), +(475,352,l), +(641,352,ls), +(656,352,o), +(670,364,o), +(673,379,cs), +(697,490,ls), +(700,505,o), +(691,517,o), +(676,517,cs), +(90,517,ls), +(75,517,o), +(60,505,o), +(57,490,cs), +(33,379,ls), +(30,364,o), +(40,352,o), +(55,352,cs), +(221,352,l), +(151,27,ls), +(148,12,o), +(158,0,o), +(173,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(688,577,ls), +(703,577,o), +(718,589,o), +(721,604,cs), +(736,672,ls), +(739,687,o), +(729,699,o), +(714,699,cs), +(128,699,ls), +(113,699,o), +(99,687,o), +(96,672,cs), +(81,604,ls), +(78,589,o), +(87,577,o), +(102,577,cs) +); +} +); +width = 672; +} +); +metricLeft = T; +metricRight = T; +unicode = 8376; +}, +{ +color = 6; +glyphname = tugrik; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(220,0,ls), +(234,0,o), +(245,9,o), +(247,22,cs), +(379,640,l), +(576,640,ls), +(590,640,o), +(601,649,o), +(603,662,cs), +(607,677,ls), +(609,691,o), +(602,700,o), +(588,700,cs), +(130,700,ls), +(117,700,o), +(106,691,o), +(104,677,cs), +(100,662,ls), +(98,649,o), +(105,640,o), +(118,640,cs), +(316,640,l), +(184,22,ls), +(182,9,o), +(189,0,o), +(202,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(496,426,ls), +(510,429,o), +(520,435,o), +(523,448,cs), +(526,462,ls), +(529,475,o), +(522,487,o), +(508,484,cs), +(116,404,ls), +(103,401,o), +(93,395,o), +(90,382,cs), +(87,368,ls), +(84,355,o), +(91,343,o), +(104,346,cs) +); +}, +{ +closed = 1; +nodes = ( +(471,308,ls), +(485,311,o), +(495,317,o), +(498,330,cs), +(501,344,ls), +(503,357,o), +(497,369,o), +(483,366,cs), +(91,286,ls), +(78,283,o), +(67,277,o), +(65,264,cs), +(62,250,ls), +(59,237,o), +(65,225,o), +(79,228,cs) +); +} +); +width = 550; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(374,0,ls), +(389,0,o), +(403,12,o), +(406,27,cs), +(504,485,l), +(670,485,ls), +(685,485,o), +(699,497,o), +(702,512,cs), +(737,673,ls), +(740,688,o), +(730,700,o), +(715,700,cs), +(129,700,ls), +(114,700,o), +(100,688,o), +(97,673,cs), +(62,512,ls), +(59,497,o), +(69,485,o), +(84,485,cs), +(250,485,l), +(152,27,ls), +(149,12,o), +(159,0,o), +(174,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(542,307,ls), +(557,308,o), +(571,319,o), +(575,334,cs), +(589,402,ls), +(592,417,o), +(583,430,o), +(568,429,cs), +(155,399,ls), +(140,398,o), +(126,387,o), +(123,372,cs), +(108,304,ls), +(105,289,o), +(114,276,o), +(129,277,cs) +); +}, +{ +closed = 1; +nodes = ( +(506,137,ls), +(521,138,o), +(535,149,o), +(538,164,cs), +(553,232,ls), +(556,247,o), +(547,260,o), +(532,259,cs), +(119,229,ls), +(104,228,o), +(90,217,o), +(87,202,cs), +(72,134,ls), +(69,119,o), +(78,106,o), +(93,107,cs) +); +} +); +width = 673; +} +); +metricLeft = T; +metricRight = T; +unicode = 8366; +}, +{ +color = 6; +glyphname = yen; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(228,0,ls), +(242,0,o), +(253,9,o), +(255,22,cs), +(313,294,l), +(613,667,ls), +(616,671,o), +(619,675,o), +(620,680,cs), +(622,691,o), +(615,700,o), +(604,700,cs), +(578,700,ls), +(569,700,o), +(560,695,o), +(552,685,cs), +(291,361,l), +(168,685,ls), +(164,695,o), +(157,700,o), +(148,700,cs), +(129,700,ls), +(115,700,o), +(104,693,o), +(104,680,cs), +(104,676,o), +(105,672,o), +(107,667,cs), +(249,294,l), +(191,22,ls), +(189,9,o), +(196,0,o), +(209,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(425,123,ls), +(438,123,o), +(449,132,o), +(451,145,cs), +(455,161,ls), +(458,174,o), +(451,183,o), +(438,183,cs), +(78,183,ls), +(65,183,o), +(54,174,o), +(51,161,cs), +(47,145,ls), +(45,132,o), +(52,123,o), +(65,123,cs) +); +}, +{ +closed = 1; +nodes = ( +(450,243,ls), +(463,243,o), +(474,252,o), +(477,265,cs), +(480,281,ls), +(483,294,o), +(476,303,o), +(463,303,cs), +(103,303,ls), +(90,303,o), +(79,294,o), +(76,281,cs), +(73,265,ls), +(70,252,o), +(77,243,o), +(90,243,cs) +); +} +); +width = 586; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(399,0,ls), +(414,0,o), +(428,12,o), +(431,27,cs), +(473,221,l), +(793,669,ls), +(794,671,o), +(796,675,o), +(797,678,cs), +(799,690,o), +(791,700,o), +(779,700,cs), +(581,700,ls), +(554,700,o), +(538,681,o), +(534,675,cs), +(391,474,l), +(334,675,ls), +(332,681,o), +(324,700,o), +(297,700,cs), +(119,700,ls), +(107,700,o), +(95,690,o), +(93,678,cs), +(92,675,o), +(92,671,o), +(93,669,cs), +(222,220,l), +(181,27,ls), +(178,12,o), +(188,0,o), +(203,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(551,33,ls), +(566,33,o), +(580,45,o), +(583,60,cs), +(608,176,ls), +(611,191,o), +(602,203,o), +(587,203,cs), +(102,203,ls), +(87,203,o), +(72,191,o), +(69,176,cs), +(44,60,ls), +(41,45,o), +(51,33,o), +(66,33,cs) +); +}, +{ +closed = 1; +nodes = ( +(587,203,ls), +(602,203,o), +(616,215,o), +(619,230,cs), +(644,346,ls), +(647,361,o), +(638,373,o), +(623,373,cs), +(138,373,ls), +(123,373,o), +(108,361,o), +(105,346,cs), +(80,230,ls), +(77,215,o), +(87,203,o), +(102,203,cs) +); +} +); +width = 750; +}, +{ +associatedMasterId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +attr = { +axisRules = ( +{ +min = 125; +} +); +}; +color = 6; +layerId = "B7E11328-A21A-4B86-99D2-BE08455DD226"; +name = "[125]"; +shapes = ( +{ +closed = 1; +nodes = ( +(399,0,ls), +(414,0,o), +(428,12,o), +(431,27,cs), +(473,221,l), +(793,669,ls), +(794,671,o), +(796,675,o), +(797,678,cs), +(799,690,o), +(791,700,o), +(779,700,cs), +(582,700,ls), +(555,700,o), +(539,681,o), +(535,675,cs), +(392,474,l), +(335,675,ls), +(333,681,o), +(325,700,o), +(298,700,cs), +(119,700,ls), +(107,700,o), +(95,690,o), +(93,678,cs), +(92,675,o), +(92,671,o), +(93,669,cs), +(222,220,l), +(181,27,ls), +(178,12,o), +(188,0,o), +(203,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(572,133,ls), +(587,133,o), +(601,145,o), +(605,160,cs), +(629,276,ls), +(632,291,o), +(623,303,o), +(608,303,cs), +(123,303,ls), +(108,303,o), +(93,291,o), +(90,276,cs), +(66,160,ls), +(62,145,o), +(72,133,o), +(87,133,cs) +); +} +); +width = 750; +}, +{ +associatedMasterId = UUID0; +attr = { +axisRules = ( +{ +min = 125; +} +); +}; +color = 6; +layerId = "BD370EC2-F23E-4558-88F2-5561C5AA6EC5"; +name = "[125]"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,0,ls), +(242,0,o), +(253,9,o), +(255,22,cs), +(313,294,l), +(613,667,ls), +(616,671,o), +(619,675,o), +(620,680,cs), +(622,691,o), +(615,700,o), +(604,700,cs), +(578,700,ls), +(569,700,o), +(560,695,o), +(552,685,cs), +(291,361,l), +(168,685,ls), +(164,695,o), +(157,700,o), +(148,700,cs), +(129,700,ls), +(115,700,o), +(104,693,o), +(104,680,cs), +(104,676,o), +(105,672,o), +(107,667,cs), +(249,294,l), +(191,22,ls), +(189,9,o), +(196,0,o), +(209,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(440,193,ls), +(453,193,o), +(464,202,o), +(466,215,cs), +(470,231,ls), +(472,244,o), +(465,253,o), +(452,253,cs), +(92,253,ls), +(79,253,o), +(68,244,o), +(66,231,cs), +(62,215,ls), +(60,202,o), +(67,193,o), +(80,193,cs) +); +} +); +width = 586; +} +); +unicode = 165; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 322; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = divisionslash; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +ref = slash; +} +); +width = 465; +}, +{ +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = slash; +} +); +width = 584; +} +); +unicode = 8725; +}, +{ +color = 6; +glyphname = plus; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(263,33,ls), +(276,33,o), +(286,42,o), +(289,55,cs), +(336,274,l), +(554,274,ls), +(567,274,o), +(578,283,o), +(580,296,cs), +(583,310,ls), +(586,323,o), +(579,332,o), +(566,332,cs), +(348,332,l), +(393,545,ls), +(396,558,o), +(389,567,o), +(376,567,cs), +(361,567,ls), +(348,567,o), +(337,558,o), +(334,545,cs), +(289,332,l), +(72,332,ls), +(59,332,o), +(48,323,o), +(45,310,cs), +(42,296,ls), +(40,283,o), +(47,274,o), +(60,274,cs), +(277,274,l), +(230,55,ls), +(227,42,o), +(235,33,o), +(248,33,cs) +); +} +); +width = 622; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,33,ls), +(317,33,o), +(331,45,o), +(334,60,cs), +(368,221,l), +(521,221,ls), +(536,221,o), +(551,233,o), +(554,248,cs), +(577,357,ls), +(581,372,o), +(571,384,o), +(556,384,cs), +(403,384,l), +(436,540,ls), +(439,555,o), +(430,567,o), +(415,567,cs), +(293,567,ls), +(278,567,o), +(263,555,o), +(260,540,cs), +(227,384,l), +(72,384,ls), +(57,384,o), +(43,372,o), +(39,357,cs), +(16,248,ls), +(13,233,o), +(22,221,o), +(37,221,cs), +(192,221,l), +(158,60,ls), +(155,45,o), +(165,33,o), +(180,33,cs) +); +} +); +width = 591; +} +); +unicode = 43; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 319; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = minus; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(547,271,ls), +(560,271,o), +(571,280,o), +(574,293,cs), +(577,307,ls), +(580,320,o), +(572,329,o), +(559,329,cs), +(105,329,ls), +(92,329,o), +(82,320,o), +(79,307,cs), +(76,293,ls), +(73,280,o), +(80,271,o), +(93,271,cs) +); +} +); +width = 652; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(546,219,ls), +(561,219,o), +(576,231,o), +(579,246,cs), +(602,355,ls), +(605,370,o), +(596,382,o), +(581,382,cs), +(97,382,ls), +(82,382,o), +(67,370,o), +(64,355,cs), +(41,246,ls), +(38,231,o), +(47,219,o), +(62,219,cs) +); +} +); +width = 643; +} +); +unicode = 8722; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 558; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = multiply; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(52,95,o), +(65,95,o), +(76,104,cs), +(266,259,l), +(387,107,l), +(394,98,o), +(407,98,o), +(418,107,c), +(426,113,l), +(437,122,o), +(440,135,o), +(433,144,c), +(313,297,l), +(503,452,l), +(514,461,o), +(516,474,o), +(509,483,cs), +(498,497,ls), +(491,506,o), +(478,506,o), +(467,497,cs), +(276,338,l), +(158,495,l), +(151,504,o), +(138,504,o), +(127,495,cs), +(118,488,ls), +(107,479,o), +(105,466,o), +(112,457,cs), +(229,303,l), +(41,150,l), +(30,141,o), +(27,128,o), +(34,119,cs), +(45,104,ls) +); +} +); +width = 537; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(131,16,o), +(148,16,o), +(161,26,c), +(301,140,l), +(392,25,l), +(401,15,o), +(417,15,o), +(430,25,c), +(564,134,l), +(576,144,o), +(579,161,o), +(572,172,c), +(481,288,l), +(624,405,l), +(636,416,o), +(640,433,o), +(632,443,c), +(530,572,l), +(521,582,o), +(505,582,o), +(492,572,c), +(349,455,l), +(258,571,l), +(249,581,o), +(232,581,o), +(220,571,c), +(86,462,l), +(74,451,o), +(70,435,o), +(78,424,c), +(169,307,l), +(30,193,l), +(17,182,o), +(14,166,o), +(21,155,c), +(123,26,l) +); +} +); +width = 634; +} +); +unicode = 215; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 634; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 264; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 907; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = divide; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(258,80,ls), +(271,80,o), +(282,89,o), +(285,102,cs), +(295,150,ls), +(298,163,o), +(290,173,o), +(277,173,cs), +(229,173,ls), +(216,173,o), +(205,163,o), +(202,150,cs), +(192,102,ls), +(189,89,o), +(197,80,o), +(210,80,cs) +); +}, +{ +closed = 1; +nodes = ( +(332,430,ls), +(345,430,o), +(357,439,o), +(360,452,cs), +(370,500,ls), +(373,513,o), +(365,523,o), +(352,523,cs), +(304,523,ls), +(291,523,o), +(280,513,o), +(277,500,cs), +(267,452,ls), +(264,439,o), +(271,430,o), +(284,430,cs) +); +}, +{ +closed = 1; +nodes = ( +(462,272,ls), +(475,272,o), +(486,281,o), +(489,294,cs), +(492,308,ls), +(495,321,o), +(488,330,o), +(475,330,cs), +(100,330,ls), +(87,330,o), +(76,321,o), +(73,308,cs), +(70,294,ls), +(67,281,o), +(74,272,o), +(87,272,cs) +); +} +); +width = 561; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(261,24,ls), +(276,24,o), +(290,36,o), +(293,51,cs), +(318,165,ls), +(321,180,o), +(311,192,o), +(296,192,cs), +(172,192,ls), +(157,192,o), +(143,180,o), +(140,165,cs), +(115,51,ls), +(112,36,o), +(122,24,o), +(137,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(342,408,ls), +(357,408,o), +(372,420,o), +(375,435,cs), +(399,549,ls), +(402,564,o), +(393,576,o), +(378,576,cs), +(254,576,ls), +(239,576,o), +(224,564,o), +(221,549,cs), +(197,435,ls), +(194,420,o), +(203,408,o), +(218,408,cs) +); +}, +{ +closed = 1; +nodes = ( +(442,215,ls), +(457,215,o), +(472,227,o), +(475,242,cs), +(500,358,ls), +(503,373,o), +(493,385,o), +(478,385,cs), +(73,385,ls), +(58,385,o), +(44,373,o), +(41,358,cs), +(16,242,ls), +(13,227,o), +(22,215,o), +(37,215,cs) +); +} +); +width = 514; +} +); +unicode = 247; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 104; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 301; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 269; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = equal; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(443,146,ls), +(456,146,o), +(466,155,o), +(469,168,cs), +(472,182,ls), +(475,195,o), +(468,204,o), +(455,204,cs), +(80,204,ls), +(67,204,o), +(56,195,o), +(53,182,cs), +(50,168,ls), +(47,155,o), +(55,146,o), +(68,146,cs) +); +}, +{ +closed = 1; +nodes = ( +(496,396,ls), +(509,396,o), +(520,405,o), +(522,418,cs), +(525,432,ls), +(528,445,o), +(521,454,o), +(508,454,cs), +(133,454,ls), +(120,454,o), +(109,445,o), +(106,432,cs), +(103,418,ls), +(101,405,o), +(108,396,o), +(121,396,cs) +); +} +); +width = 574; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(441,90,ls), +(456,90,o), +(470,102,o), +(473,117,cs), +(498,233,ls), +(501,248,o), +(492,260,o), +(477,260,cs), +(72,260,ls), +(57,260,o), +(42,248,o), +(39,233,cs), +(14,117,ls), +(11,102,o), +(21,90,o), +(36,90,cs) +); +}, +{ +closed = 1; +nodes = ( +(494,340,ls), +(509,340,o), +(523,352,o), +(527,367,cs), +(551,483,ls), +(554,498,o), +(545,510,o), +(530,510,cs), +(125,510,ls), +(110,510,o), +(95,498,o), +(92,483,cs), +(68,367,ls), +(64,352,o), +(74,340,o), +(89,340,cs) +); +} +); +width = 564; +} +); +unicode = 61; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 489; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = notequal; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(110,21,ls), +(123,21,o), +(132,31,o), +(135,36,cs), +(204,146,l), +(426,146,ls), +(439,146,o), +(450,155,o), +(452,168,cs), +(455,182,ls), +(458,195,o), +(451,204,o), +(438,204,cs), +(241,204,l), +(362,396,l), +(479,396,ls), +(492,396,o), +(503,405,o), +(505,418,cs), +(508,432,ls), +(511,445,o), +(504,454,o), +(491,454,cs), +(399,454,l), +(460,551,ls), +(468,564,o), +(466,580,o), +(446,580,cs), +(423,580,ls), +(410,580,o), +(401,570,o), +(398,565,cs), +(328,454,l), +(116,454,ls), +(103,454,o), +(92,445,o), +(89,432,cs), +(86,418,ls), +(84,405,o), +(91,396,o), +(104,396,cs), +(291,396,l), +(170,204,l), +(63,204,ls), +(50,204,o), +(39,195,o), +(36,182,cs), +(33,168,ls), +(31,155,o), +(38,146,o), +(51,146,cs), +(133,146,l), +(74,52,ls), +(64,37,o), +(68,21,o), +(86,21,cs) +); +} +); +width = 540; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(147,21,l), +(174,21,o), +(189,39,o), +(197,51,c), +(222,90,l), +(436,90,l), +(451,90,o), +(465,102,o), +(468,117,c), +(493,233,l), +(496,248,o), +(487,260,o), +(472,260,c), +(330,260,l), +(380,340,l), +(489,340,l), +(504,340,o), +(518,352,o), +(522,367,c), +(546,483,l), +(549,498,o), +(540,510,o), +(525,510,c), +(487,510,l), +(512,549,l), +(521,563,o), +(515,580,o), +(499,580,c), +(405,580,l), +(380,580,o), +(363,564,o), +(354,550,c), +(329,510,l), +(120,510,l), +(105,510,o), +(90,498,o), +(87,483,c), +(63,367,l), +(59,352,o), +(69,340,o), +(84,340,c), +(223,340,l), +(173,260,l), +(67,260,l), +(52,260,o), +(37,248,o), +(34,233,c), +(9,117,l), +(6,102,o), +(16,90,o), +(31,90,c), +(66,90,l), +(43,52,ls), +(35,39,o), +(40,21,o), +(56,21,c) +); +} +); +width = 550; +} +); +unicode = 8800; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-348"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = greater; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (208, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(65,33,o), +(79,41,o), +(86,45,cs), +(424,249,ls), +(448,264,o), +(459,277,o), +(463,295,cs), +(465,307,l), +(469,325,o), +(464,338,o), +(446,353,cs), +(194,557,ls), +(189,561,o), +(179,569,o), +(170,569,cs), +(159,569,o), +(149,562,o), +(146,549,cs), +(142,532,ls), +(139,519,o), +(143,512,o), +(157,501,cs), +(403,301,l), +(72,101,ls), +(53,90,o), +(47,83,o), +(44,70,cs), +(40,53,ls), +(38,40,o), +(45,33,o), +(56,33,cs) +); +} +); +width = 480; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(15,-10,o), +(19,-10,o), +(25,-7,cs), +(482,263,ls), +(503,275,o), +(516,284,o), +(520,305,cs), +(529,347,l), +(534,368,o), +(524,377,o), +(509,389,cs), +(166,659,ls), +(162,662,o), +(158,662,o), +(156,662,cs), +(144,662,o), +(133,653,o), +(131,641,cs), +(96,479,ls), +(91,453,o), +(108,442,o), +(119,435,cs), +(271,326,l), +(72,216,ls), +(59,209,o), +(37,199,o), +(31,173,cs), +(-3,11,ls), +(-6,-1,o), +(1,-10,o), +(13,-10,cs) +); +} +); +width = 538; +} +); +unicode = 62; +}, +{ +color = 6; +glyphname = less; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (208, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(365,31,o), +(376,38,o), +(378,51,cs), +(382,68,ls), +(385,81,o), +(381,88,o), +(368,99,cs), +(121,299,l), +(453,499,ls), +(471,510,o), +(477,517,o), +(480,530,cs), +(484,547,ls), +(487,560,o), +(479,567,o), +(468,567,cs), +(459,567,o), +(445,559,o), +(438,555,cs), +(100,351,ls), +(76,336,o), +(65,323,o), +(61,305,c), +(59,293,ls), +(55,275,o), +(60,262,o), +(78,247,cs), +(330,43,ls), +(335,39,o), +(345,31,o), +(354,31,cs) +); +} +); +width = 481; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(426,-8,o), +(437,1,o), +(440,13,cs), +(474,175,ls), +(480,201,o), +(462,211,o), +(451,218,cs), +(300,328,l), +(498,437,ls), +(511,444,o), +(534,455,o), +(539,481,cs), +(574,643,ls), +(576,655,o), +(569,664,o), +(557,664,cs), +(555,664,o), +(551,664,o), +(545,661,cs), +(88,391,ls), +(67,379,o), +(55,370,o), +(50,349,cs), +(41,307,ls), +(37,286,o), +(46,277,o), +(61,265,cs), +(404,-5,ls), +(408,-8,o), +(412,-8,o), +(414,-8,cs) +); +} +); +width = 538; +} +); +unicode = 60; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 620; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 915; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = greaterequal; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (260, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(106,194,o), +(118,199,o), +(126,203,cs), +(452,349,l), +(476,361,o), +(486,372,o), +(490,390,cs), +(494,410,l), +(498,428,o), +(493,439,o), +(474,451,c), +(210,597,ls), +(203,601,o), +(194,606,o), +(185,606,cs), +(174,606,o), +(164,599,o), +(161,586,cs), +(158,572,ls), +(155,557,o), +(158,549,o), +(172,541,cs), +(429,400,l), +(112,259,ls), +(95,251,o), +(88,243,o), +(85,228,cs), +(82,214,ls), +(79,201,o), +(86,194,o), +(97,194,cs) +); +}, +{ +closed = 1; +nodes = ( +(385,0,l), +(398,0,o), +(409,9,o), +(412,22,cs), +(415,36,ls), +(418,49,o), +(411,58,o), +(398,58,cs), +(71,58,ls), +(58,58,o), +(47,49,o), +(44,36,cs), +(41,22,ls), +(38,9,o), +(45,0,o), +(58,0,cs) +); +} +); +width = 527; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,194,o), +(74,195,o), +(79,197,cs), +(517,377,ls), +(539,386,o), +(551,398,o), +(555,419,cs), +(564,461,l), +(569,482,o), +(562,494,o), +(544,503,cs), +(182,683,ls), +(178,685,o), +(174,686,o), +(172,686,cs), +(160,686,o), +(149,677,o), +(147,665,cs), +(121,543,ls), +(115,517,o), +(131,503,o), +(143,499,cs), +(306,440,l), +(118,380,ls), +(104,375,o), +(82,363,o), +(77,337,cs), +(51,215,ls), +(48,203,o), +(55,194,o), +(67,194,cs) +); +}, +{ +closed = 1; +nodes = ( +(439,0,ls), +(454,0,o), +(469,12,o), +(472,27,cs), +(495,136,ls), +(498,151,o), +(489,163,o), +(474,163,cs), +(67,163,l), +(52,163,o), +(37,151,o), +(34,136,cs), +(11,27,ls), +(8,12,o), +(17,0,o), +(32,0,cs) +); +} +); +width = 556; +} +); +unicode = 8805; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 400; +} +); +}; +}, +{ +color = 6; +glyphname = lessequal; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (240, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(425,194,o), +(436,201,o), +(439,214,cs), +(442,228,ls), +(445,243,o), +(442,251,o), +(427,259,cs), +(170,400,l), +(487,541,ls), +(505,549,o), +(512,557,o), +(515,572,cs), +(518,586,ls), +(521,599,o), +(513,606,o), +(502,606,cs), +(493,606,o), +(482,601,o), +(473,597,cs), +(147,451,l), +(124,439,o), +(113,428,o), +(109,410,cs), +(105,390,ls), +(101,372,o), +(107,361,o), +(125,349,c), +(389,203,ls), +(397,199,o), +(405,194,o), +(414,194,cs) +); +}, +{ +closed = 1; +nodes = ( +(371,0,ls), +(384,0,o), +(395,9,o), +(398,22,cs), +(401,36,ls), +(404,49,o), +(397,58,o), +(384,58,cs), +(57,58,ls), +(44,58,o), +(33,49,o), +(30,36,cs), +(27,22,ls), +(24,9,o), +(31,0,o), +(44,0,cs) +); +} +); +width = 527; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(485,194,o), +(496,203,o), +(499,215,cs), +(525,337,ls), +(530,363,o), +(514,375,o), +(502,380,cs), +(340,440,l), +(527,499,ls), +(541,503,o), +(563,517,o), +(569,543,cs), +(595,665,ls), +(597,677,o), +(590,686,o), +(578,686,cs), +(576,686,o), +(572,685,o), +(566,683,cs), +(128,503,ls), +(106,494,o), +(95,482,o), +(90,461,c), +(81,419,ls), +(77,398,o), +(83,386,o), +(101,377,cs), +(463,197,ls), +(468,195,o), +(471,194,o), +(473,194,cs) +); +}, +{ +closed = 1; +nodes = ( +(426,0,ls), +(441,0,o), +(456,12,o), +(459,27,cs), +(482,136,ls), +(485,151,o), +(476,163,o), +(461,163,c), +(54,163,ls), +(39,163,o), +(24,151,o), +(21,136,cs), +(-2,27,ls), +(-5,12,o), +(4,0,o), +(19,0,cs) +); +} +); +width = 556; +} +); +unicode = 8804; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 686; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 194; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 400; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 421; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = plusminus; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(267,193,ls), +(280,193,o), +(290,202,o), +(293,215,cs), +(327,373,l), +(484,373,ls), +(497,373,o), +(508,382,o), +(510,395,cs), +(513,409,ls), +(516,422,o), +(509,431,o), +(496,431,cs), +(339,431,l), +(372,585,ls), +(375,598,o), +(368,607,o), +(355,607,cs), +(339,607,ls), +(326,607,o), +(315,598,o), +(312,585,cs), +(279,431,l), +(122,431,ls), +(109,431,o), +(98,422,o), +(95,409,cs), +(92,395,ls), +(90,382,o), +(97,373,o), +(110,373,cs), +(267,373,l), +(233,215,ls), +(230,202,o), +(238,193,o), +(251,193,cs) +); +}, +{ +closed = 1; +nodes = ( +(395,0,ls), +(408,0,o), +(418,9,o), +(421,22,cs), +(424,36,ls), +(427,49,o), +(420,58,o), +(407,58,cs), +(53,58,ls), +(40,58,o), +(29,49,o), +(26,36,cs), +(23,22,ls), +(20,9,o), +(28,0,o), +(41,0,cs) +); +} +); +width = 553; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(327,186,ls), +(342,186,o), +(357,198,o), +(360,213,cs), +(390,354,l), +(523,354,ls), +(538,354,o), +(552,366,o), +(555,381,cs), +(579,490,ls), +(582,505,o), +(572,517,o), +(557,517,cs), +(424,517,l), +(453,653,ls), +(456,668,o), +(447,680,o), +(432,680,cs), +(310,680,ls), +(295,680,o), +(280,668,o), +(277,653,cs), +(248,517,l), +(113,517,ls), +(98,517,o), +(84,505,o), +(81,490,cs), +(57,381,ls), +(54,366,o), +(64,354,o), +(79,354,cs), +(214,354,l), +(184,213,ls), +(181,198,o), +(190,186,o), +(205,186,cs) +); +}, +{ +closed = 1; +nodes = ( +(438,0,ls), +(453,0,o), +(467,12,o), +(470,27,cs), +(493,136,ls), +(497,151,o), +(487,163,o), +(472,163,cs), +(48,163,ls), +(33,163,o), +(19,151,o), +(15,136,cs), +(-8,27,ls), +(-11,12,o), +(-1,0,o), +(14,0,cs) +); +} +); +width = 575; +} +); +unicode = 177; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 400; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 259; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 57; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = approxequal; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(130,377,o), +(136,379,o), +(141,382,cs), +(160,392,o), +(186,412,o), +(225,412,cs), +(300,412,o), +(328,377,o), +(408,377,cs), +(464,377,o), +(525,407,o), +(530,432,cs), +(535,455,ls), +(537,465,o), +(532,472,o), +(522,472,cs), +(518,472,o), +(513,471,o), +(509,468,cs), +(490,459,o), +(463,437,o), +(422,437,cs), +(350,437,o), +(323,472,o), +(239,472,cs), +(183,472,o), +(122,442,o), +(117,417,cs), +(112,394,ls), +(110,384,o), +(115,377,o), +(125,377,cs) +); +}, +{ +closed = 1; +nodes = ( +(76,127,o), +(82,129,o), +(87,132,cs), +(106,141,o), +(132,162,o), +(172,162,cs), +(247,162,o), +(275,127,o), +(355,127,cs), +(411,127,o), +(472,157,o), +(477,182,cs), +(482,205,ls), +(484,215,o), +(478,222,o), +(468,222,cs), +(465,222,o), +(462,221,o), +(458,219,cs), +(439,211,o), +(412,187,o), +(369,187,cs), +(297,187,o), +(269,222,o), +(185,222,cs), +(129,222,o), +(69,192,o), +(64,167,cs), +(59,144,ls), +(57,134,o), +(62,127,o), +(72,127,cs) +); +} +); +width = 563; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(101,317,o), +(107,321,o), +(113,325,cs), +(125,334,o), +(155,351,o), +(186,351,cs), +(279,351,o), +(309,309,o), +(408,309,cs), +(476,309,o), +(526,345,o), +(535,389,cs), +(558,497,ls), +(563,522,o), +(563,534,o), +(544,534,c), +(535,533,o), +(528,529,o), +(522,525,cs), +(510,516,o), +(480,499,o), +(449,499,cs), +(356,499,o), +(326,541,o), +(227,541,cs), +(159,541,o), +(110,505,o), +(100,461,cs), +(77,353,ls), +(72,328,o), +(72,316,o), +(91,316,c) +); +}, +{ +closed = 1; +nodes = ( +(47,67,o), +(54,71,o), +(60,75,cs), +(72,84,o), +(102,101,o), +(133,101,cs), +(226,101,o), +(256,59,o), +(355,59,cs), +(423,59,o), +(472,95,o), +(482,139,cs), +(505,247,ls), +(510,272,o), +(510,284,o), +(491,284,c), +(481,283,o), +(475,279,o), +(469,275,cs), +(457,266,o), +(427,249,o), +(396,249,cs), +(303,249,o), +(273,291,o), +(174,291,cs), +(106,291,o), +(56,255,o), +(47,211,cs), +(24,103,ls), +(19,78,o), +(19,66,o), +(38,66,c) +); +} +); +width = 551; +} +); +unicode = 8776; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 299; +} +); +}; +}, +{ +color = 6; +glyphname = asciitilde; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (197, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (162, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (197, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (102, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (137, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(103,252,o), +(107,254,o), +(113,256,cs), +(131,265,o), +(157,287,o), +(198,287,cs), +(273,287,o), +(302,252,o), +(382,252,cs), +(438,252,o), +(498,282,o), +(503,307,cs), +(508,330,ls), +(510,340,o), +(505,347,o), +(495,347,cs), +(491,347,o), +(487,345,o), +(481,343,cs), +(463,334,o), +(437,312,o), +(396,312,cs), +(324,312,o), +(296,347,o), +(212,347,cs), +(156,347,o), +(96,317,o), +(90,292,cs), +(85,269,ls), +(83,259,o), +(89,252,o), +(99,252,cs) +); +} +); +width = 563; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(73,192,o), +(80,196,o), +(86,200,cs), +(98,209,o), +(127,226,o), +(158,226,cs), +(251,226,o), +(281,184,o), +(380,184,cs), +(448,184,o), +(498,220,o), +(507,264,cs), +(530,372,ls), +(536,397,o), +(535,409,o), +(516,409,c), +(507,408,o), +(500,404,o), +(494,400,cs), +(482,391,o), +(453,374,o), +(422,374,cs), +(329,374,o), +(299,416,o), +(200,416,cs), +(132,416,o), +(82,380,o), +(73,336,cs), +(50,228,ls), +(44,203,o), +(45,191,o), +(64,191,c) +); +} +); +width = 549; +} +); +unicode = 126; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 480; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = logicalnot; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(458,170,ls), +(471,170,o), +(482,179,o), +(484,192,cs), +(513,328,ls), +(516,341,o), +(509,350,o), +(496,350,cs), +(111,350,ls), +(98,350,o), +(87,341,o), +(84,328,cs), +(81,314,ls), +(78,301,o), +(86,292,o), +(99,292,cs), +(444,292,l), +(422,192,ls), +(420,179,o), +(427,170,o), +(440,170,c) +); +} +); +width = 585; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(447,112,ls), +(462,112,o), +(476,124,o), +(480,139,cs), +(531,382,ls), +(534,397,o), +(525,409,o), +(510,409,cs), +(95,409,ls), +(80,409,o), +(65,397,o), +(62,382,cs), +(37,266,ls), +(34,251,o), +(44,239,o), +(59,239,cs), +(331,239,l), +(310,139,ls), +(306,124,o), +(316,112,o), +(331,112,cs) +); +} +); +width = 563; +} +); +unicode = 172; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 439; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = asciicircum; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(177,575,ls), +(185,575,o), +(198,578,o), +(204,582,cs), +(297,642,l), +(364,582,ls), +(368,578,o), +(379,575,o), +(387,575,cs), +(404,575,ls), +(414,575,o), +(419,578,o), +(421,586,cs), +(422,592,o), +(419,598,o), +(413,606,cs), +(344,691,ls), +(333,705,o), +(325,705,o), +(315,705,cs), +(305,705,ls), +(295,705,o), +(287,705,o), +(270,691,cs), +(165,606,ls), +(155,598,o), +(150,592,o), +(149,586,cs), +(147,578,o), +(150,575,o), +(160,575,cs) +); +} +); +width = 418; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(192,595,ls), +(205,595,o), +(218,595,o), +(233,602,cs), +(334,644,l), +(417,602,ls), +(430,595,o), +(443,595,o), +(456,595,cs), +(522,595,ls), +(532,595,o), +(539,601,o), +(541,611,cs), +(542,616,o), +(541,621,o), +(539,624,cs), +(453,746,ls), +(443,760,o), +(435,765,o), +(420,765,cs), +(300,765,ls), +(285,765,o), +(275,760,o), +(259,746,cs), +(121,624,ls), +(117,621,o), +(114,616,o), +(113,611,cs), +(111,601,o), +(116,595,o), +(126,595,cs) +); +} +); +width = 492; +} +); +unicode = 94; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 575; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 6; +glyphname = infinity; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(270,49,o), +(339,119,o), +(400,199,c), +(430,119,o), +(470,49,o), +(553,49,cs), +(677,49,o), +(739,156,o), +(763,271,cs), +(788,386,o), +(761,493,o), +(636,493,cs), +(553,493,o), +(483,416,o), +(418,331,c), +(390,416,o), +(352,493,o), +(266,493,cs), +(142,493,o), +(82,386,o), +(57,271,cs), +(33,156,o), +(61,49,o), +(184,49,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,109,o), +(94,161,o), +(117,271,cs), +(140,381,o), +(204,433,o), +(266,433,cs), +(324,433,o), +(349,358,o), +(375,274,c), +(311,188,o), +(250,109,o), +(184,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(492,108,o), +(466,176,o), +(442,255,c), +(507,346,o), +(566,433,o), +(636,433,cs), +(697,433,o), +(726,381,o), +(703,271,cs), +(680,161,o), +(617,108,o), +(553,108,cs) +); +} +); +width = 830; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(321,49,o), +(367,97,o), +(428,150,c), +(467,97,o), +(533,49,o), +(612,49,cs), +(776,49,o), +(854,156,o), +(876,261,cs), +(898,366,o), +(830,493,o), +(686,493,cs), +(587,493,o), +(541,445,o), +(480,393,c), +(441,445,o), +(385,493,o), +(296,493,cs), +(132,493,o), +(55,384,o), +(33,279,cs), +(11,174,o), +(78,49,o), +(222,49,cs) +); +}, +{ +closed = 1; +nodes = ( +(218,205,o), +(186,231,o), +(194,271,cs), +(203,311,o), +(236,337,o), +(278,337,cs), +(325,337,o), +(359,271,o), +(359,271,c), +(359,271,o), +(307,205,o), +(250,205,cs) +); +}, +{ +closed = 1; +nodes = ( +(583,205,o), +(549,271,o), +(549,271,c), +(549,271,o), +(601,337,o), +(658,337,cs), +(690,337,o), +(723,311,o), +(714,271,cs), +(706,231,o), +(672,205,o), +(630,205,cs) +); +} +); +width = 919; +} +); +unicode = 8734; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 407; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 404; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 214; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = integral; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-13,-225,ls), +(109,-225,o), +(147,-151,o), +(167,-57,cs), +(301,572,ls), +(316,643,o), +(349,682,o), +(420,682,cs), +(466,682,ls), +(479,682,o), +(490,691,o), +(493,704,cs), +(496,718,ls), +(499,731,o), +(492,740,o), +(479,740,cs), +(420,740,ls), +(298,740,o), +(260,666,o), +(241,577,cs), +(106,-57,ls), +(93,-118,o), +(68,-167,o), +(-13,-167,cs), +(-60,-167,l), +(-73,-167,o), +(-83,-176,o), +(-86,-189,cs), +(-89,-203,l), +(-92,-216,o), +(-84,-225,o), +(-72,-225,cs) +); +} +); +width = 423; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(6,-225,ls), +(126,-225,o), +(224,-147,o), +(252,-17,cs), +(356,472,ls), +(365,513,o), +(392,535,o), +(432,535,cs), +(463,535,ls), +(478,535,o), +(493,547,o), +(496,562,cs), +(520,673,ls), +(523,688,o), +(513,700,o), +(498,700,cs), +(427,700,ls), +(307,700,o), +(209,622,o), +(181,492,cs), +(77,3,ls), +(68,-38,o), +(41,-60,o), +(1,-60,cs), +(-30,-60,ls), +(-45,-60,o), +(-60,-72,o), +(-63,-87,cs), +(-86,-198,ls), +(-89,-213,o), +(-79,-225,o), +(-65,-225,cs) +); +} +); +width = 458; +} +); +unicode = 8747; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-200"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 532; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 740; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 441; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = increment; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(500,0,ls), +(515,0,o), +(529,12,o), +(532,27,c), +(535,42,l), +(537,50,o), +(536,59,o), +(535,67,c), +(436,627,l), +(432,647,o), +(426,660,o), +(399,660,cs), +(380,660,l), +(353,660,o), +(338,642,o), +(329,627,cs), +(-8,67,l), +(-13,59,o), +(-18,50,o), +(-20,42,c), +(-23,27,ls), +(-26,12,o), +(-16,0,o), +(-1,0,c) +); +}, +{ +closed = 1; +nodes = ( +(474,58,l), +(57,58,l), +(379,591,l) +); +} +); +width = 619; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(632,0,ls), +(647,0,o), +(661,12,o), +(664,27,cs), +(674,72,ls), +(678,90,o), +(675,94,o), +(674,102,cs), +(568,627,ls), +(565,641,o), +(557,660,o), +(530,660,cs), +(373,660,ls), +(346,660,o), +(330,641,o), +(321,627,cs), +(-9,102,ls), +(-14,94,o), +(-17,90,o), +(-21,72,cs), +(-31,27,ls), +(-34,12,o), +(-24,0,o), +(-9,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(462,174,l), +(249,174,l), +(417,462,l) +); +} +); +width = 746; +} +); +unicode = 8710; +}, +{ +color = 6; +glyphname = product; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(15,-200,ls), +(28,-200,o), +(39,-191,o), +(42,-178,cs), +(216,642,l), +(529,642,l), +(355,-178,ls), +(352,-191,o), +(359,-200,o), +(372,-200,cs), +(390,-200,ls), +(403,-200,o), +(414,-191,o), +(417,-178,cs), +(599,678,ls), +(601,691,o), +(594,700,o), +(581,700,cs), +(188,700,ls), +(175,700,o), +(164,691,o), +(162,678,cs), +(-20,-178,ls), +(-23,-191,o), +(-16,-200,o), +(-3,-200,cs) +); +} +); +width = 599; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(137,-200,ls), +(152,-200,o), +(167,-188,o), +(170,-173,cs), +(306,468,l), +(468,468,l), +(332,-173,ls), +(329,-188,o), +(338,-200,o), +(353,-200,cs), +(512,-200,ls), +(527,-200,o), +(542,-188,o), +(545,-173,cs), +(725,673,ls), +(728,688,o), +(718,700,o), +(703,700,cs), +(169,700,ls), +(154,700,o), +(140,688,o), +(137,673,cs), +(-43,-173,ls), +(-47,-189,o), +(-37,-200,o), +(-22,-200,cs) +); +} +); +width = 701; +} +); +unicode = 8719; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-200"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 477; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 101; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = summation; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (-328, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(334,-200,ls), +(347,-200,o), +(358,-191,o), +(360,-178,cs), +(363,-164,ls), +(366,-151,o), +(359,-142,o), +(346,-142,cs), +(44,-142,l), +(425,198,ls), +(436,208,o), +(444,216,o), +(447,231,cs), +(455,269,ls), +(459,284,o), +(454,292,o), +(447,302,cs), +(211,642,l), +(513,642,ls), +(526,642,o), +(537,651,o), +(539,664,cs), +(542,678,ls), +(545,691,o), +(538,700,o), +(525,700,cs), +(163,700,ls), +(150,700,o), +(139,691,o), +(136,678,cs), +(133,661,ls), +(131,651,o), +(133,642,o), +(140,630,cs), +(398,257,l), +(395,243,l), +(-21,-130,ls), +(-34,-142,o), +(-40,-151,o), +(-42,-161,cs), +(-46,-178,l), +(-48,-191,o), +(-41,-200,o), +(-28,-200,cs) +); +} +); +width = 509; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(511,-200,ls), +(526,-200,o), +(540,-188,o), +(543,-173,cs), +(581,5,ls), +(584,20,o), +(575,32,o), +(560,32,cs), +(343,32,l), +(588,192,ls), +(608,205,o), +(626,217,o), +(630,236,cs), +(636,264,ls), +(640,283,o), +(627,295,o), +(613,308,cs), +(436,468,l), +(653,468,ls), +(668,468,o), +(682,480,o), +(685,495,cs), +(723,673,ls), +(726,688,o), +(717,700,o), +(702,700,cs), +(168,700,ls), +(153,700,o), +(138,688,o), +(135,673,cs), +(103,519,ls), +(97,492,o), +(109,481,o), +(122,469,cs), +(356,252,l), +(355,249,l), +(29,31,ls), +(11,19,o), +(-6,8,o), +(-12,-19,cs), +(-45,-173,ls), +(-48,-188,o), +(-38,-200,o), +(-23,-200,cs) +); +} +); +width = 679; +} +); +unicode = 8721; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-200"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 250; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 476; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = radical; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(200,0,ls), +(213,0,o), +(222,9,o), +(230,25,c), +(611,802,l), +(731,802,ls), +(744,802,o), +(755,811,o), +(758,824,c), +(761,838,ls), +(764,851,o), +(756,860,o), +(743,860,c), +(587,860,l), +(573,860,o), +(564,849,o), +(558,838,cs), +(183,73,l), +(129,505,l), +(128,510,o), +(123,520,o), +(110,520,cs), +(93,520,ls), +(76,520,o), +(65,504,o), +(67,489,c), +(126,15,l), +(127,8,o), +(132,0,o), +(145,0,cs) +); +} +); +width = 662; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,0,ls), +(323,0,o), +(333,11,o), +(341,25,cs), +(703,700,l), +(826,700,ls), +(841,700,o), +(856,712,o), +(859,727,cs), +(882,833,ls), +(885,848,o), +(875,860,o), +(860,860,cs), +(597,860,ls), +(577,860,o), +(566,847,o), +(559,836,c), +(268,263,l), +(238,496,ls), +(236,507,o), +(230,520,o), +(210,520,cs), +(81,520,ls), +(62,520,o), +(49,505,o), +(51,489,c), +(115,25,l), +(117,11,o), +(123,0,o), +(143,0,cs) +); +} +); +width = 783; +} +); +unicode = 8730; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 719; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 546; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 276; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = partialdiff; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(366,-10,o), +(449,94,o), +(478,231,c), +(482,250,o), +(485,268,o), +(488,286,cs), +(522,511,o), +(458,594,o), +(371,687,cs), +(362,695,o), +(353,700,o), +(337,700,c), +(317,700,ls), +(305,700,o), +(295,691,o), +(295,679,cs), +(295,673,o), +(298,665,o), +(305,658,c), +(373,591,o), +(423,533,o), +(433,431,c), +(404,456,o), +(356,470,o), +(303,470,cs), +(159,470,o), +(68,368,o), +(40,231,c), +(9,94,o), +(68,-10,o), +(212,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(107,48,o), +(79,130,o), +(101,231,cs), +(102,238,o), +(104,244,o), +(106,250,cs), +(132,342,o), +(205,412,o), +(303,412,cs), +(402,412,o), +(434,341,o), +(420,249,cs), +(419,243,o), +(418,237,o), +(417,231,cs), +(395,130,o), +(317,48,o), +(212,48,cs) +); +} +); +width = 553; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(448,-10,o), +(542,60,o), +(584,217,cs), +(590,237,o), +(594,260,o), +(598,280,c), +(629,475,o), +(582,604,o), +(484,687,cs), +(475,694,o), +(460,700,o), +(433,700,cs), +(245,700,ls), +(233,700,o), +(221,690,o), +(219,678,cs), +(218,673,o), +(220,665,o), +(228,659,cs), +(291,609,o), +(346,543,o), +(361,470,c), +(356,470,o), +(352,470,o), +(347,470,cs), +(184,470,o), +(47,404,o), +(12,242,cs), +(-22,80,o), +(101,-10,o), +(265,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,150,o), +(240,171,o), +(246,204,cs), +(249,224,o), +(252,236,o), +(257,256,cs), +(266,288,o), +(276,310,o), +(313,310,cs), +(350,310,o), +(352,288,o), +(347,256,cs), +(344,236,o), +(341,223,o), +(336,203,cs), +(328,171,o), +(313,150,o), +(279,150,cs) +); +} +); +width = 633; +} +); +unicode = 8706; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 678; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 276; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = micro; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(10,-200,l), +(23,-200,o), +(34,-191,o), +(37,-178,cs), +(102,131,l), +(65,131,l), +(84,59,o), +(124,-10,o), +(235,-10,cs), +(313,-10,o), +(358,24,o), +(401,69,c), +(391,22,l), +(388,9,o), +(396,0,o), +(409,0,c), +(426,0,l), +(439,0,o), +(449,9,o), +(452,22,c), +(553,498,l), +(556,511,o), +(549,520,o), +(536,520,c), +(519,520,l), +(506,520,o), +(495,511,o), +(492,498,cs), +(433,219,l), +(410,112,o), +(310,48,o), +(235,48,cs), +(160,48,o), +(98,112,o), +(121,219,c), +(180,498,l), +(183,511,o), +(176,520,o), +(163,520,c), +(146,520,l), +(133,520,o), +(122,511,o), +(119,498,c), +(-24,-178,l), +(-27,-191,o), +(-20,-200,o), +(-7,-200,c) +); +} +); +width = 586; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,-199,ls), +(185,-199,o), +(200,-187,o), +(203,-172,cs), +(264,110,l), +(94,17,l), +(127,2,o), +(158,-3,o), +(189,-3,cs), +(260,-3,o), +(323,11,o), +(367,60,c), +(360,27,ls), +(357,12,o), +(367,0,o), +(382,0,cs), +(557,0,ls), +(572,0,o), +(586,12,o), +(589,27,cs), +(688,493,ls), +(691,508,o), +(682,520,o), +(667,520,cs), +(477,520,ls), +(462,520,o), +(447,508,o), +(444,493,cs), +(387,224,ls), +(379,188,o), +(357,169,o), +(325,169,cs), +(293,169,o), +(279,188,o), +(287,224,cs), +(344,493,ls), +(347,508,o), +(338,520,o), +(323,520,cs), +(127,520,ls), +(112,520,o), +(97,508,o), +(94,493,cs), +(-47,-172,ls), +(-50,-187,o), +(-41,-199,o), +(-26,-199,cs) +); +} +); +width = 697; +} +); +unicode = 181; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-200"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 287; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = percent; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(75,0,ls), +(93,0,o), +(100,7,o), +(112,19,cs), +(743,669,ls), +(755,681,o), +(752,700,o), +(733,700,cs), +(708,700,ls), +(690,700,o), +(683,693,o), +(671,681,cs), +(40,31,ls), +(28,19,o), +(31,0,o), +(50,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(595,-6,o), +(650,49,o), +(671,129,cs), +(680,163,o), +(684,181,o), +(690,218,cs), +(703,298,o), +(660,354,o), +(573,354,cs), +(486,354,o), +(431,298,o), +(410,218,cs), +(400,181,o), +(396,163,o), +(391,129,cs), +(378,49,o), +(426,-6,o), +(508,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(453,50,o), +(445,94,o), +(450,132,c), +(456,169,o), +(458,180,o), +(467,215,cs), +(478,255,o), +(509,298,o), +(573,298,cs), +(632,298,o), +(638,255,o), +(631,215,c), +(626,180,o), +(624,169,o), +(614,132,cs), +(603,94,o), +(568,50,o), +(508,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(296,345,o), +(351,400,o), +(372,480,cs), +(381,514,o), +(385,532,o), +(391,569,cs), +(404,649,o), +(361,705,o), +(274,705,cs), +(187,705,o), +(132,649,o), +(111,569,cs), +(101,532,o), +(97,514,o), +(92,480,cs), +(79,400,o), +(127,345,o), +(209,345,cs) +); +}, +{ +closed = 1; +nodes = ( +(154,401,o), +(146,445,o), +(151,483,c), +(157,520,o), +(159,531,o), +(168,566,cs), +(179,606,o), +(210,649,o), +(274,649,cs), +(333,649,o), +(339,606,o), +(332,566,c), +(327,531,o), +(325,520,o), +(315,483,cs), +(304,445,o), +(269,401,o), +(209,401,cs) +); +} +); +width = 760; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,0,ls), +(196,0,o), +(205,7,o), +(217,19,cs), +(849,669,ls), +(863,683,o), +(855,700,o), +(835,700,cs), +(727,700,ls), +(708,700,o), +(699,693,o), +(687,681,cs), +(55,31,ls), +(41,17,o), +(49,0,o), +(69,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(743,-5,o), +(797,42,o), +(820,122,cs), +(830,156,o), +(835,182,o), +(841,219,cs), +(853,300,o), +(785,355,o), +(697,355,cs), +(589,355,o), +(541,308,o), +(519,227,cs), +(509,190,o), +(502,164,o), +(498,130,cs), +(487,50,o), +(557,-5,o), +(640,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(636,103,o), +(632,116,o), +(635,133,c), +(638,160,o), +(645,191,o), +(652,216,cs), +(657,233,o), +(667,246,o), +(684,246,cs), +(701,246,o), +(705,233,o), +(702,216,c), +(699,191,o), +(692,160,o), +(685,133,cs), +(680,116,o), +(670,103,o), +(653,103,cs) +); +}, +{ +closed = 1; +nodes = ( +(312,345,o), +(366,392,o), +(389,472,cs), +(399,506,o), +(404,532,o), +(410,569,cs), +(422,650,o), +(354,705,o), +(266,705,cs), +(158,705,o), +(110,658,o), +(88,577,cs), +(78,540,o), +(71,514,o), +(67,480,cs), +(56,400,o), +(126,345,o), +(209,345,cs) +); +}, +{ +closed = 1; +nodes = ( +(205,453,o), +(201,466,o), +(204,483,c), +(207,510,o), +(214,541,o), +(221,566,cs), +(226,583,o), +(236,596,o), +(253,596,cs), +(270,596,o), +(274,583,o), +(271,566,c), +(268,541,o), +(261,510,o), +(254,483,cs), +(249,466,o), +(239,453,o), +(222,453,cs) +); +} +); +width = 885; +} +); +unicode = 37; +}, +{ +color = 6; +glyphname = perthousand; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(75,0,ls), +(93,0,o), +(100,7,o), +(112,19,cs), +(743,669,ls), +(755,681,o), +(752,700,o), +(733,700,cs), +(708,700,ls), +(690,700,o), +(683,693,o), +(671,681,cs), +(40,31,ls), +(28,19,o), +(31,0,o), +(50,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(595,-6,o), +(650,49,o), +(671,129,cs), +(680,163,o), +(684,181,o), +(690,218,cs), +(703,298,o), +(660,354,o), +(573,354,cs), +(486,354,o), +(431,298,o), +(410,218,cs), +(400,181,o), +(396,163,o), +(391,129,cs), +(378,49,o), +(426,-6,o), +(508,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(453,50,o), +(445,94,o), +(450,132,c), +(456,169,o), +(458,180,o), +(467,215,cs), +(478,255,o), +(509,298,o), +(573,298,cs), +(632,298,o), +(638,255,o), +(631,215,c), +(626,180,o), +(624,169,o), +(614,132,cs), +(603,94,o), +(568,50,o), +(508,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(296,345,o), +(351,400,o), +(372,480,cs), +(381,514,o), +(385,532,o), +(391,569,cs), +(404,649,o), +(361,705,o), +(274,705,cs), +(187,705,o), +(132,649,o), +(111,569,cs), +(101,532,o), +(97,514,o), +(92,480,cs), +(79,400,o), +(127,345,o), +(209,345,cs) +); +}, +{ +closed = 1; +nodes = ( +(154,401,o), +(146,445,o), +(151,483,c), +(157,520,o), +(159,531,o), +(168,566,cs), +(179,606,o), +(210,649,o), +(274,649,cs), +(333,649,o), +(339,606,o), +(332,566,c), +(327,531,o), +(325,520,o), +(315,483,cs), +(304,445,o), +(269,401,o), +(209,401,cs) +); +}, +{ +closed = 1; +nodes = ( +(918,-6,o), +(973,49,o), +(994,129,cs), +(1003,163,o), +(1007,181,o), +(1013,218,cs), +(1026,298,o), +(983,354,o), +(896,354,cs), +(809,354,o), +(754,298,o), +(733,218,cs), +(723,181,o), +(719,163,o), +(714,129,cs), +(701,49,o), +(749,-6,o), +(831,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(776,50,o), +(768,94,o), +(773,132,c), +(779,169,o), +(781,180,o), +(790,215,cs), +(801,255,o), +(832,298,o), +(896,298,cs), +(955,298,o), +(961,255,o), +(954,215,c), +(949,180,o), +(947,169,o), +(937,132,cs), +(926,94,o), +(891,50,o), +(831,50,cs) +); +} +); +width = 1071; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,0,ls), +(196,0,o), +(205,7,o), +(217,19,cs), +(849,669,ls), +(863,683,o), +(855,700,o), +(835,700,cs), +(727,700,ls), +(708,700,o), +(699,693,o), +(687,681,cs), +(55,31,ls), +(41,17,o), +(49,0,o), +(69,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(743,-5,o), +(797,42,o), +(820,122,cs), +(830,156,o), +(835,182,o), +(841,219,cs), +(853,300,o), +(785,355,o), +(697,355,cs), +(589,355,o), +(541,308,o), +(519,227,cs), +(509,190,o), +(502,164,o), +(498,130,cs), +(487,50,o), +(557,-5,o), +(640,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(636,103,o), +(632,116,o), +(635,133,c), +(638,160,o), +(645,191,o), +(652,216,cs), +(657,233,o), +(667,246,o), +(684,246,cs), +(701,246,o), +(705,233,o), +(702,216,c), +(699,191,o), +(692,160,o), +(685,133,cs), +(680,116,o), +(670,103,o), +(653,103,cs) +); +}, +{ +closed = 1; +nodes = ( +(312,345,o), +(366,392,o), +(389,472,cs), +(399,506,o), +(404,532,o), +(410,569,cs), +(422,650,o), +(354,705,o), +(266,705,cs), +(158,705,o), +(110,658,o), +(88,577,cs), +(78,540,o), +(71,514,o), +(67,480,cs), +(56,400,o), +(126,345,o), +(209,345,cs) +); +}, +{ +closed = 1; +nodes = ( +(205,453,o), +(201,466,o), +(204,483,c), +(207,510,o), +(214,541,o), +(221,566,cs), +(226,583,o), +(236,596,o), +(253,596,cs), +(270,596,o), +(274,583,o), +(271,566,c), +(268,541,o), +(261,510,o), +(254,483,cs), +(249,466,o), +(239,453,o), +(222,453,cs) +); +}, +{ +closed = 1; +nodes = ( +(1111,-5,o), +(1165,42,o), +(1188,122,cs), +(1198,156,o), +(1203,182,o), +(1209,219,cs), +(1221,300,o), +(1153,355,o), +(1065,355,cs), +(957,355,o), +(909,308,o), +(887,227,cs), +(877,190,o), +(870,164,o), +(866,130,cs), +(855,50,o), +(925,-5,o), +(1008,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(1004,103,o), +(1000,116,o), +(1003,133,c), +(1006,160,o), +(1013,191,o), +(1020,216,cs), +(1025,233,o), +(1035,246,o), +(1052,246,cs), +(1069,246,o), +(1073,233,o), +(1070,216,c), +(1067,191,o), +(1060,160,o), +(1053,133,cs), +(1048,116,o), +(1038,103,o), +(1021,103,cs) +); +} +); +width = 1253; +} +); +unicode = 8240; +}, +{ +color = 6; +glyphname = plus.case; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(274,80,ls), +(287,80,o), +(297,89,o), +(300,102,cs), +(347,321,l), +(565,321,ls), +(578,321,o), +(589,330,o), +(591,343,cs), +(594,357,ls), +(597,370,o), +(590,379,o), +(577,379,cs), +(359,379,l), +(404,592,ls), +(407,605,o), +(400,614,o), +(387,614,cs), +(372,614,ls), +(359,614,o), +(348,605,o), +(345,592,cs), +(300,379,l), +(83,379,ls), +(70,379,o), +(59,370,o), +(56,357,cs), +(53,343,ls), +(51,330,o), +(58,321,o), +(71,321,cs), +(288,321,l), +(241,102,ls), +(238,89,o), +(246,80,o), +(259,80,cs) +); +} +); +width = 625; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(314,82,ls), +(329,82,o), +(343,94,o), +(346,109,cs), +(380,270,l), +(533,270,ls), +(548,270,o), +(563,282,o), +(566,297,cs), +(589,406,l), +(593,421,o), +(583,433,o), +(568,433,cs), +(415,433,l), +(448,589,ls), +(451,604,o), +(442,616,o), +(427,616,cs), +(305,616,ls), +(290,616,o), +(275,604,o), +(272,589,cs), +(239,433,l), +(84,433,ls), +(69,433,o), +(55,421,o), +(51,406,c), +(28,297,ls), +(25,282,o), +(34,270,o), +(49,270,cs), +(204,270,l), +(170,109,ls), +(167,94,o), +(177,82,o), +(192,82,cs) +); +} +); +width = 593; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 319; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = minus.case; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(557,321,ls), +(570,321,o), +(581,330,o), +(584,343,cs), +(587,357,ls), +(590,370,o), +(582,379,o), +(569,379,cs), +(115,379,ls), +(102,379,o), +(92,370,o), +(89,357,cs), +(86,343,ls), +(83,330,o), +(90,321,o), +(103,321,cs) +); +} +); +width = 654; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(560,285,ls), +(575,285,o), +(590,297,o), +(593,312,cs), +(616,421,ls), +(619,436,o), +(610,448,o), +(595,448,cs), +(111,448,ls), +(96,448,o), +(81,436,o), +(78,421,cs), +(55,312,ls), +(52,297,o), +(61,285,o), +(76,285,cs) +); +} +); +width = 642; +} +); +}, +{ +color = 6; +glyphname = multiply.case; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(60,147,o), +(73,147,o), +(84,156,cs), +(274,311,l), +(395,159,l), +(402,150,o), +(415,150,o), +(426,159,c), +(434,165,l), +(445,174,o), +(448,187,o), +(441,196,c), +(321,349,l), +(511,504,l), +(522,513,o), +(524,526,o), +(517,535,cs), +(506,549,ls), +(499,558,o), +(486,558,o), +(475,549,cs), +(284,390,l), +(166,547,l), +(159,556,o), +(146,556,o), +(135,547,cs), +(126,540,ls), +(115,531,o), +(113,518,o), +(120,509,cs), +(237,355,l), +(49,202,l), +(38,193,o), +(35,180,o), +(42,171,cs), +(53,156,ls) +); +} +); +width = 537; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(135,71,o), +(152,71,o), +(165,81,c), +(305,195,l), +(396,80,l), +(405,70,o), +(421,70,o), +(434,80,c), +(568,189,l), +(580,199,o), +(583,216,o), +(576,227,c), +(485,343,l), +(628,460,l), +(640,471,o), +(644,488,o), +(636,498,c), +(534,627,l), +(525,637,o), +(509,637,o), +(496,627,c), +(353,510,l), +(262,626,l), +(253,636,o), +(236,636,o), +(224,626,c), +(90,517,l), +(78,506,o), +(74,490,o), +(82,479,c), +(173,362,l), +(34,248,l), +(21,237,o), +(18,221,o), +(25,210,c), +(127,81,l) +); +} +); +width = 635; +} +); +}, +{ +color = 6; +glyphname = divide.case; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(470,321,ls), +(483,321,o), +(494,330,o), +(497,343,cs), +(500,357,ls), +(503,370,o), +(496,379,o), +(483,379,cs), +(108,379,ls), +(95,379,o), +(84,370,o), +(81,357,cs), +(78,343,ls), +(75,330,o), +(82,321,o), +(95,321,cs) +); +}, +{ +closed = 1; +nodes = ( +(266,129,ls), +(279,129,o), +(290,138,o), +(293,151,cs), +(303,199,ls), +(306,212,o), +(298,222,o), +(285,222,cs), +(237,222,ls), +(224,222,o), +(213,212,o), +(210,199,cs), +(200,151,ls), +(197,138,o), +(205,129,o), +(218,129,cs) +); +}, +{ +closed = 1; +nodes = ( +(340,479,ls), +(353,479,o), +(365,488,o), +(368,501,cs), +(378,549,ls), +(381,562,o), +(373,572,o), +(360,572,cs), +(312,572,ls), +(299,572,o), +(288,562,o), +(285,549,cs), +(275,501,ls), +(272,488,o), +(279,479,o), +(292,479,cs) +); +} +); +width = 556; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(457,278,ls), +(472,278,o), +(487,290,o), +(490,305,cs), +(515,421,ls), +(518,436,o), +(508,448,o), +(493,448,cs), +(88,448,ls), +(73,448,o), +(59,436,o), +(56,421,cs), +(31,305,ls), +(28,290,o), +(37,278,o), +(52,278,cs) +); +}, +{ +closed = 1; +nodes = ( +(276,87,ls), +(291,87,o), +(305,99,o), +(308,114,cs), +(333,228,ls), +(336,243,o), +(326,255,o), +(311,255,cs), +(187,255,ls), +(172,255,o), +(158,243,o), +(155,228,cs), +(130,114,ls), +(127,99,o), +(137,87,o), +(152,87,cs) +); +}, +{ +closed = 1; +nodes = ( +(357,471,ls), +(372,471,o), +(387,483,o), +(390,498,cs), +(414,612,ls), +(417,627,o), +(408,639,o), +(393,639,cs), +(269,639,ls), +(254,639,o), +(239,627,o), +(236,612,cs), +(212,498,ls), +(209,483,o), +(218,471,o), +(233,471,cs) +); +} +); +width = 518; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 104; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 301; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 269; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = equal.case; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(452,196,ls), +(465,196,o), +(475,205,o), +(478,218,cs), +(481,232,ls), +(484,245,o), +(477,254,o), +(464,254,cs), +(89,254,ls), +(76,254,o), +(65,245,o), +(62,232,cs), +(59,218,ls), +(56,205,o), +(64,196,o), +(77,196,cs) +); +}, +{ +closed = 1; +nodes = ( +(505,446,ls), +(518,446,o), +(529,455,o), +(531,468,cs), +(534,482,ls), +(537,495,o), +(530,504,o), +(517,504,cs), +(142,504,ls), +(129,504,o), +(118,495,o), +(115,482,cs), +(112,468,ls), +(110,455,o), +(117,446,o), +(130,446,cs) +); +} +); +width = 574; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,140,ls), +(466,140,o), +(480,152,o), +(483,167,cs), +(508,283,ls), +(511,298,o), +(502,310,o), +(487,310,cs), +(82,310,ls), +(67,310,o), +(52,298,o), +(49,283,cs), +(24,167,ls), +(21,152,o), +(31,140,o), +(46,140,cs) +); +}, +{ +closed = 1; +nodes = ( +(504,390,ls), +(519,390,o), +(533,402,o), +(537,417,cs), +(561,533,ls), +(564,548,o), +(555,560,o), +(540,560,cs), +(135,560,ls), +(120,560,o), +(105,548,o), +(102,533,cs), +(78,417,ls), +(74,402,o), +(84,390,o), +(99,390,cs) +); +} +); +width = 563; +} +); +}, +{ +color = 6; +glyphname = notequal.case; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(125,71,ls), +(138,71,o), +(147,81,o), +(150,86,cs), +(219,196,l), +(441,196,ls), +(454,196,o), +(465,205,o), +(467,218,cs), +(470,232,ls), +(473,245,o), +(466,254,o), +(453,254,cs), +(256,254,l), +(377,446,l), +(494,446,ls), +(507,446,o), +(518,455,o), +(520,468,cs), +(523,482,ls), +(526,495,o), +(519,504,o), +(506,504,cs), +(414,504,l), +(475,601,ls), +(483,614,o), +(481,630,o), +(461,630,cs), +(438,630,ls), +(425,630,o), +(416,620,o), +(413,615,cs), +(343,504,l), +(131,504,ls), +(118,504,o), +(107,495,o), +(104,482,cs), +(101,468,ls), +(99,455,o), +(106,446,o), +(119,446,cs), +(306,446,l), +(185,254,l), +(78,254,ls), +(65,254,o), +(54,245,o), +(51,232,cs), +(48,218,ls), +(46,205,o), +(53,196,o), +(66,196,cs), +(148,196,l), +(89,102,ls), +(79,87,o), +(83,71,o), +(101,71,cs) +); +} +); +width = 549; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,71,ls), +(188,71,o), +(203,89,o), +(211,101,cs), +(236,140,l), +(450,140,ls), +(465,140,o), +(479,152,o), +(482,167,cs), +(507,283,ls), +(510,298,o), +(501,310,o), +(486,310,cs), +(344,310,l), +(394,390,l), +(503,390,ls), +(518,390,o), +(532,402,o), +(536,417,c), +(560,533,ls), +(563,548,o), +(554,560,o), +(539,560,cs), +(501,560,l), +(526,599,ls), +(535,613,o), +(529,630,o), +(513,630,cs), +(419,630,ls), +(394,630,o), +(377,614,o), +(368,600,cs), +(343,560,l), +(134,560,ls), +(119,560,o), +(104,548,o), +(101,533,cs), +(77,417,l), +(73,402,o), +(83,390,o), +(98,390,cs), +(237,390,l), +(187,310,l), +(81,310,ls), +(66,310,o), +(51,298,o), +(48,283,cs), +(23,167,ls), +(20,152,o), +(30,140,o), +(45,140,cs), +(80,140,l), +(57,102,ls), +(49,89,o), +(54,71,o), +(70,71,cs) +); +} +); +width = 560; +} +); +}, +{ +color = 6; +glyphname = approxequal.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (373, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (338, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (373, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (278, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (313, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (123, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (88, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (123, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (28, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (63, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(140,428,o), +(143,429,o), +(147,430,cs), +(165,436,o), +(193,463,o), +(238,463,cs), +(313,463,o), +(341,428,o), +(421,428,cs), +(477,428,o), +(538,458,o), +(543,483,cs), +(548,506,ls), +(550,516,o), +(544,523,o), +(534,523,cs), +(531,523,o), +(529,522,o), +(526,521,cs), +(507,514,o), +(480,488,o), +(435,488,cs), +(363,488,o), +(335,523,o), +(251,523,cs), +(195,523,o), +(135,493,o), +(130,468,cs), +(125,445,ls), +(123,435,o), +(128,428,o), +(138,428,cs) +); +}, +{ +closed = 1; +nodes = ( +(87,178,o), +(90,179,o), +(93,180,cs), +(112,187,o), +(139,213,o), +(184,213,cs), +(259,213,o), +(288,178,o), +(368,178,cs), +(424,178,o), +(484,208,o), +(490,233,cs), +(495,256,ls), +(497,266,o), +(491,273,o), +(481,273,cs), +(479,273,o), +(476,272,o), +(474,271,cs), +(455,265,o), +(427,238,o), +(382,238,cs), +(310,238,o), +(282,273,o), +(198,273,cs), +(142,273,o), +(82,243,o), +(77,218,cs), +(72,195,ls), +(70,185,o), +(75,178,o), +(85,178,cs) +); +} +); +width = 566; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,367,o), +(121,371,o), +(127,375,cs), +(139,384,o), +(168,401,o), +(199,401,cs), +(292,401,o), +(323,359,o), +(422,359,cs), +(490,359,o), +(539,395,o), +(549,439,cs), +(571,547,ls), +(577,572,o), +(576,584,o), +(557,584,c), +(548,583,o), +(541,579,o), +(535,575,cs), +(524,566,o), +(494,549,o), +(463,549,cs), +(370,549,o), +(340,591,o), +(241,591,cs), +(173,591,o), +(123,555,o), +(114,511,cs), +(91,403,ls), +(86,378,o), +(86,366,o), +(105,366,c) +); +}, +{ +closed = 1; +nodes = ( +(61,117,o), +(68,121,o), +(74,125,cs), +(86,134,o), +(115,151,o), +(146,151,cs), +(239,151,o), +(269,109,o), +(368,109,cs), +(436,109,o), +(486,145,o), +(495,189,cs), +(518,297,ls), +(524,322,o), +(523,334,o), +(504,334,c), +(495,333,o), +(488,329,o), +(482,325,cs), +(470,316,o), +(441,299,o), +(410,299,cs), +(317,299,o), +(287,341,o), +(188,341,cs), +(120,341,o), +(70,305,o), +(61,261,cs), +(38,153,ls), +(32,128,o), +(33,116,o), +(52,116,c) +); +} +); +width = 559; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 299; +} +); +}; +}, +{ +color = 6; +glyphname = asciitilde.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (248, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (213, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (248, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (153, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (188, 0); +type = Tag; +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(115,303,o), +(117,304,o), +(120,305,cs), +(140,312,o), +(166,338,o), +(211,338,cs), +(286,338,o), +(315,303,o), +(395,303,cs), +(451,303,o), +(511,333,o), +(516,358,cs), +(521,381,ls), +(523,391,o), +(518,398,o), +(508,398,cs), +(505,398,o), +(501,397,o), +(497,395,cs), +(478,387,o), +(451,363,o), +(408,363,cs), +(336,363,o), +(309,398,o), +(225,398,cs), +(169,398,o), +(108,368,o), +(103,343,cs), +(98,320,ls), +(96,310,o), +(102,303,o), +(112,303,cs) +); +} +); +width = 565; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(84,242,o), +(90,246,o), +(96,250,cs), +(108,259,o), +(138,276,o), +(169,276,cs), +(262,276,o), +(292,234,o), +(391,234,cs), +(459,234,o), +(509,270,o), +(518,314,cs), +(541,422,ls), +(546,447,o), +(546,459,o), +(527,459,c), +(518,458,o), +(511,454,o), +(505,450,cs), +(493,441,o), +(463,424,o), +(432,424,cs), +(339,424,o), +(309,466,o), +(210,466,cs), +(142,466,o), +(93,430,o), +(83,386,cs), +(60,278,ls), +(55,253,o), +(55,241,o), +(74,241,c) +); +} +); +width = 548; +} +); +}, +{ +color = 6; +glyphname = lozenge; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(208,0,ls), +(238,0,o), +(254,18,o), +(264,32,c), +(480,327,ls), +(486,335,o), +(492,344,o), +(494,355,c), +(496,366,o), +(494,375,o), +(492,383,c), +(401,677,ls), +(396,693,o), +(385,710,o), +(358,710,cs), +(346,710,ls), +(318,710,o), +(304,698,o), +(289,677,cs), +(74,383,l), +(68,375,o), +(62,366,o), +(60,355,cs), +(58,344,o), +(60,335,o), +(62,327,cs), +(154,30,l), +(158,16,o), +(168,0,o), +(196,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(121,345,l), +(344,650,l), +(431,363,l), +(210,62,l) +); +} +); +width = 529; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,0,ls), +(319,0,o), +(338,20,o), +(349,33,cs), +(600,333,ls), +(607,341,o), +(611,348,o), +(613,355,cs), +(614,362,o), +(613,369,o), +(610,377,cs), +(485,677,ls), +(480,690,o), +(469,710,o), +(442,710,cs), +(356,710,ls), +(329,710,o), +(310,690,o), +(299,677,cs), +(48,377,ls), +(41,369,o), +(36,362,o), +(35,355,cs), +(33,348,o), +(35,341,o), +(38,333,cs), +(163,33,ls), +(168,20,o), +(179,0,o), +(206,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(223,331,l), +(370,506,l), +(425,378,l), +(278,203,l) +); +} +); +width = 623; +} +); +unicode = 9674; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 277; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "brevecomb-cy"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (176,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(303,590,o), +(343,649,o), +(355,706,cs), +(357,716,o), +(352,725,o), +(340,725,cs), +(325,725,ls), +(313,725,o), +(304,716,o), +(302,706,cs), +(296,674,o), +(261,640,o), +(191,640,cs), +(121,640,o), +(122,674,o), +(128,706,cs), +(130,716,o), +(125,725,o), +(113,725,cs), +(98,725,ls), +(86,725,o), +(77,716,o), +(75,706,cs), +(64,649,o), +(89,590,o), +(191,590,cs) +); +} +); +width = 410; +}, +{ +anchors = ( +{ +name = _top; +pos = (276,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(412,586,o), +(489,654,o), +(509,746,cs), +(511,756,o), +(506,765,o), +(494,765,cs), +(375,765,ls), +(363,765,o), +(354,756,o), +(352,746,cs), +(347,721,o), +(334,701,o), +(302,701,cs), +(270,701,o), +(267,721,o), +(272,746,cs), +(274,756,o), +(269,765,o), +(257,765,cs), +(138,765,ls), +(125,765,o), +(117,756,o), +(115,746,cs), +(95,654,o), +(144,586,o), +(278,586,cs) +); +} +); +width = 594; +} +); +}, +{ +color = 6; +glyphname = "brevecomb-cy.case"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (162,700); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(288,740,o), +(328,799,o), +(340,856,cs), +(342,866,o), +(337,875,o), +(325,875,cs), +(310,875,ls), +(298,875,o), +(289,866,o), +(287,856,cs), +(281,824,o), +(256,790,o), +(181,790,cs), +(106,790,o), +(97,824,o), +(103,856,cs), +(105,866,o), +(100,875,o), +(88,875,cs), +(73,875,ls), +(61,875,o), +(52,866,o), +(50,856,cs), +(38,799,o), +(54,740,o), +(171,740,cs) +); +} +); +width = 370; +}, +{ +anchors = ( +{ +name = _top; +pos = (271,700); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(412,741,o), +(489,809,o), +(509,901,cs), +(511,911,o), +(506,920,o), +(494,920,cs), +(375,920,ls), +(363,920,o), +(354,911,o), +(352,901,cs), +(347,876,o), +(334,856,o), +(302,856,cs), +(270,856,o), +(267,876,o), +(272,901,cs), +(274,911,o), +(269,920,o), +(257,920,cs), +(138,920,ls), +(125,920,o), +(117,911,o), +(115,901,cs), +(95,809,o), +(144,741,o), +(278,741,cs) +); +} +); +width = 594; +} +); +}, +{ +color = 6; +export = 0; +glyphname = "descender-cy"; +layers = ( +{ +anchors = ( +{ +name = _bottomright; +pos = (52,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(90,-130,ls), +(103,-130,o), +(114,-121,o), +(117,-108,cs), +(147,36,ls), +(150,49,o), +(143,58,o), +(130,58,cs), +(20,58,l), +(39,0,l), +(79,0,l), +(56,-108,ls), +(53,-121,o), +(60,-130,o), +(73,-130,cs) +); +} +); +width = 186; +}, +{ +anchors = ( +{ +name = _bottomright; +pos = (59,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(242,-110,ls), +(257,-110,o), +(271,-98,o), +(274,-83,cs), +(324,148,ls), +(327,163,o), +(317,175,o), +(302,175,cs), +(30,175,l), +(35,0,l), +(59,0,l), +(41,-83,ls), +(38,-98,o), +(48,-110,o), +(63,-110,cs) +); +} +); +width = 349; +} +); +}, +{ +color = 6; +export = 0; +glyphname = "descender-cy.case"; +layers = ( +{ +anchors = ( +{ +name = _bottomright; +pos = (37,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(92,-140,ls), +(106,-140,o), +(116,-131,o), +(119,-118,cs), +(153,38,ls), +(156,51,o), +(148,60,o), +(134,60,cs), +(21,60,l), +(39,0,l), +(82,0,l), +(56,-118,ls), +(53,-131,o), +(61,-140,o), +(74,-140,cs) +); +} +); +width = 186; +}, +{ +anchors = ( +{ +name = _bottomright; +pos = (93,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(257,-140,ls), +(272,-140,o), +(286,-128,o), +(289,-113,cs), +(355,193,ls), +(358,208,o), +(348,220,o), +(333,220,cs), +(38,220,l), +(41,0,l), +(63,0,l), +(39,-113,ls), +(36,-128,o), +(46,-140,o), +(61,-140,cs) +); +} +); +width = 372; +} +); +}, +{ +color = 6; +glyphname = "shindot-hb"; +layers = ( +{ +anchors = ( +{ +name = _topright; +pos = (62,415); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(7,533,ls), +(20,533,o), +(30,542,o), +(33,555,cs), +(38,578,ls), +(41,591,o), +(34,600,o), +(21,600,cs), +(-2,600,ls), +(-15,600,o), +(-26,591,o), +(-29,578,cs), +(-34,555,ls), +(-37,542,o), +(-29,533,o), +(-16,533,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _topright; +pos = (60,415); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(-12,493,ls), +(1,493,o), +(12,502,o), +(15,515,cs), +(28,578,ls), +(31,591,o), +(24,600,o), +(11,600,cs), +(-52,600,ls), +(-65,600,o), +(-76,591,o), +(-79,578,cs), +(-92,515,ls), +(-95,502,o), +(-88,493,o), +(-75,493,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +} +); +unicode = 1473; +}, +{ +color = 6; +glyphname = "sheva-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (-48,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-68,-146,ls), +(-55,-146,o), +(-44,-137,o), +(-41,-124,cs), +(-36,-101,ls), +(-33,-88,o), +(-41,-79,o), +(-54,-79,cs), +(-77,-79,ls), +(-90,-79,o), +(-100,-88,o), +(-103,-101,cs), +(-108,-124,ls), +(-111,-137,o), +(-104,-146,o), +(-91,-146,cs) +); +}, +{ +closed = 1; +nodes = ( +(-89,-245,ls), +(-76,-245,o), +(-65,-236,o), +(-62,-223,cs), +(-57,-200,ls), +(-55,-187,o), +(-62,-178,o), +(-75,-178,cs), +(-98,-178,ls), +(-111,-178,o), +(-122,-187,o), +(-124,-200,cs), +(-129,-223,ls), +(-132,-236,o), +(-125,-245,o), +(-112,-245,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 600; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-48,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(-50,-182,ls), +(-37,-182,o), +(-27,-173,o), +(-24,-160,cs), +(-10,-97,ls), +(-8,-84,o), +(-15,-75,o), +(-28,-75,cs), +(-101,-75,ls), +(-114,-75,o), +(-125,-84,o), +(-127,-97,cs), +(-141,-160,ls), +(-144,-173,o), +(-136,-182,o), +(-123,-182,cs) +); +}, +{ +closed = 1; +nodes = ( +(-77,-306,ls), +(-64,-306,o), +(-53,-297,o), +(-50,-284,cs), +(-37,-221,ls), +(-34,-208,o), +(-41,-199,o), +(-54,-199,cs), +(-127,-199,ls), +(-140,-199,o), +(-151,-208,o), +(-154,-221,cs), +(-167,-284,ls), +(-170,-297,o), +(-163,-306,o), +(-150,-306,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +} +); +unicode = 1456; +}, +{ +color = 10; +glyphname = "hatafsegol-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (-44,0); +} +); +layerId = UUID0; +shapes = ( +{ +ref = "sheva-hb"; +}, +{ +ref = "segol-hb"; +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-44,0); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "sheva-hb"; +}, +{ +ref = "segol-hb"; +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +} +); +unicode = 1457; +}, +{ +color = 10; +glyphname = "hatafpatah-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (-47,0); +} +); +layerId = UUID0; +shapes = ( +{ +ref = "sheva-hb"; +}, +{ +ref = "patah-hb"; +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-47,0); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "sheva-hb"; +}, +{ +ref = "patah-hb"; +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +} +); +unicode = 1458; +}, +{ +color = 10; +glyphname = "hatafqamats-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (-50,0); +} +); +layerId = UUID0; +shapes = ( +{ +ref = "sheva-hb"; +}, +{ +ref = "qamatsqatan-hb"; +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-50,0); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = "sheva-hb"; +}, +{ +ref = "qamatsqatan-hb"; +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +} +); +unicode = 1459; +}, +{ +color = 6; +glyphname = "hiriq-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (-49,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-68,-146,ls), +(-55,-146,o), +(-44,-137,o), +(-41,-124,cs), +(-36,-101,ls), +(-33,-88,o), +(-41,-79,o), +(-54,-79,cs), +(-77,-79,ls), +(-90,-79,o), +(-100,-88,o), +(-103,-101,cs), +(-108,-124,ls), +(-111,-137,o), +(-104,-146,o), +(-91,-146,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-48,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(-50,-182,ls), +(-37,-182,o), +(-27,-173,o), +(-24,-160,cs), +(-10,-97,ls), +(-8,-84,o), +(-15,-75,o), +(-28,-75,cs), +(-101,-75,ls), +(-114,-75,o), +(-125,-84,o), +(-127,-97,cs), +(-141,-160,ls), +(-144,-173,o), +(-136,-182,o), +(-123,-182,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +} +); +unicode = 1460; +}, +{ +color = 6; +glyphname = "tsere-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (-48,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-129,-146,ls), +(-116,-146,o), +(-105,-137,o), +(-102,-124,cs), +(-97,-101,ls), +(-94,-88,o), +(-102,-79,o), +(-115,-79,cs), +(-138,-79,ls), +(-151,-79,o), +(-161,-88,o), +(-164,-101,cs), +(-169,-124,ls), +(-172,-137,o), +(-165,-146,o), +(-152,-146,cs) +); +}, +{ +closed = 1; +nodes = ( +(-4,-146,ls), +(9,-146,o), +(20,-137,o), +(23,-124,cs), +(28,-101,ls), +(31,-88,o), +(23,-79,o), +(10,-79,cs), +(-13,-79,ls), +(-26,-79,o), +(-36,-88,o), +(-39,-101,cs), +(-44,-124,ls), +(-47,-137,o), +(-40,-146,o), +(-27,-146,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-47,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(-120,-182,ls), +(-107,-182,o), +(-97,-173,o), +(-94,-160,cs), +(-80,-97,ls), +(-78,-84,o), +(-85,-75,o), +(-98,-75,cs), +(-171,-75,ls), +(-184,-75,o), +(-195,-84,o), +(-197,-97,cs), +(-211,-160,ls), +(-214,-173,o), +(-206,-182,o), +(-193,-182,cs) +); +}, +{ +closed = 1; +nodes = ( +(24,-182,ls), +(37,-182,o), +(47,-173,o), +(50,-160,cs), +(64,-97,ls), +(66,-84,o), +(59,-75,o), +(46,-75,cs), +(-27,-75,ls), +(-40,-75,o), +(-51,-84,o), +(-53,-97,cs), +(-67,-160,ls), +(-70,-173,o), +(-62,-182,o), +(-49,-182,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +} +); +unicode = 1461; +}, +{ +color = 6; +glyphname = "segol-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (-48,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-4,-146,ls), +(9,-146,o), +(20,-137,o), +(23,-124,cs), +(28,-101,ls), +(31,-88,o), +(23,-79,o), +(10,-79,cs), +(-13,-79,ls), +(-26,-79,o), +(-36,-88,o), +(-39,-101,cs), +(-44,-124,ls), +(-47,-137,o), +(-40,-146,o), +(-27,-146,cs) +); +}, +{ +closed = 1; +nodes = ( +(-89,-245,ls), +(-76,-245,o), +(-65,-236,o), +(-62,-223,cs), +(-57,-200,ls), +(-55,-187,o), +(-62,-178,o), +(-75,-178,cs), +(-98,-178,ls), +(-111,-178,o), +(-122,-187,o), +(-124,-200,cs), +(-129,-223,ls), +(-132,-236,o), +(-125,-245,o), +(-112,-245,cs) +); +}, +{ +closed = 1; +nodes = ( +(-129,-146,ls), +(-116,-146,o), +(-105,-137,o), +(-102,-124,cs), +(-97,-101,ls), +(-94,-88,o), +(-102,-79,o), +(-115,-79,cs), +(-138,-79,ls), +(-151,-79,o), +(-161,-88,o), +(-164,-101,cs), +(-169,-124,ls), +(-172,-137,o), +(-165,-146,o), +(-152,-146,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-47,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(24,-182,ls), +(37,-182,o), +(47,-173,o), +(50,-160,cs), +(64,-97,ls), +(66,-84,o), +(59,-75,o), +(46,-75,cs), +(-27,-75,ls), +(-40,-75,o), +(-51,-84,o), +(-53,-97,cs), +(-67,-160,ls), +(-70,-173,o), +(-62,-182,o), +(-49,-182,cs) +); +}, +{ +closed = 1; +nodes = ( +(-76,-307,ls), +(-63,-307,o), +(-52,-298,o), +(-49,-285,cs), +(-36,-222,ls), +(-33,-209,o), +(-40,-200,o), +(-53,-200,c), +(-126,-200,ls), +(-139,-200,o), +(-150,-209,o), +(-153,-222,cs), +(-166,-285,ls), +(-169,-298,o), +(-162,-307,o), +(-149,-307,cs) +); +}, +{ +closed = 1; +nodes = ( +(-120,-182,ls), +(-107,-182,o), +(-97,-173,o), +(-94,-160,cs), +(-80,-97,ls), +(-78,-84,o), +(-85,-75,o), +(-98,-75,cs), +(-171,-75,ls), +(-184,-75,o), +(-195,-84,o), +(-197,-97,cs), +(-211,-160,ls), +(-214,-173,o), +(-206,-182,o), +(-193,-182,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +} +); +unicode = 1462; +}, +{ +color = 6; +glyphname = "patah-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (-48,-5); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(29,-131,ls), +(42,-131,o), +(53,-122,o), +(56,-109,cs), +(58,-101,ls), +(61,-88,o), +(53,-79,o), +(40,-79,cs), +(-168,-79,ls), +(-181,-79,o), +(-191,-88,o), +(-194,-101,cs), +(-196,-109,ls), +(-199,-122,o), +(-192,-131,o), +(-179,-131,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-47,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(19,-182,ls), +(32,-182,o), +(42,-173,o), +(45,-160,cs), +(59,-97,ls), +(61,-84,o), +(54,-75,o), +(41,-75,cs), +(-167,-75,ls), +(-180,-75,o), +(-191,-84,o), +(-193,-97,cs), +(-207,-160,ls), +(-210,-173,o), +(-202,-182,o), +(-189,-182,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +} +); +unicode = 1463; +}, +{ +color = 6; +glyphname = uni05B8; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (-49,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(56,-109,ls), +(53.32,-122.4,o), +(42.4,-131,o), +(29,-131,cs), +(-50,-131,l), +(-70,-223,l), +(-72.68,-236.4,o), +(-83.6,-245,o), +(-97,-245,cs), +(-104,-245,ls), +(-117.4,-245,o), +(-123.68,-236.4,o), +(-121,-223,c), +(-101,-131,l), +(-179,-131,ls), +(-192.4,-131,o), +(-198.68,-122.4,o), +(-196,-109,cs), +(-194,-101,ls), +(-191.32,-87.6,o), +(-181.4,-79,o), +(-168,-79,cs), +(40,-79,ls), +(53.4,-79,o), +(60.68,-87.6,o), +(58,-101,cs) +); +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-48,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(45,-160,ls), +(42.32,-173.4,o), +(32.4,-182,o), +(19,-182,cs), +(-42,-182,l), +(-54,-239,l), +(-55.34,-252.4,o), +(-66.6,-261,o), +(-80,-261,cs), +(-127,-261,ls), +(-140.4,-261,o), +(-147.68,-252.4,o), +(-145,-239,cs), +(-133,-182,l), +(-189,-182,ls), +(-202.4,-182,o), +(-209.68,-173.4,o), +(-207,-160,cs), +(-193,-97,l), +(-191.66,-83.6,o), +(-180.4,-75,o), +(-167,-75,cs), +(41,-75,ls), +(54.4,-75,o), +(61.68,-83.6,o), +(59,-97,cs) +); +} +); +width = 0; +} +); +unicode = 1464; +}, +{ +color = 6; +glyphname = "holam-hb"; +layers = ( +{ +anchors = ( +{ +name = _topleft; +pos = (90,415); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(77,533,ls), +(90,533,o), +(100,542,o), +(103,555,cs), +(108,578,ls), +(111,591,o), +(104,600,o), +(91,600,cs), +(68,600,ls), +(55,600,o), +(44,591,o), +(41,578,cs), +(36,555,ls), +(33,542,o), +(41,533,o), +(54,533,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _topleft; +pos = (93,415); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(105,533,ls), +(118,533,o), +(128,542,o), +(131,555,cs), +(145,618,ls), +(147,631,o), +(140,640,o), +(127,640,cs), +(54,640,ls), +(41,640,o), +(30,631,o), +(28,618,cs), +(14,555,ls), +(11,542,o), +(19,533,o), +(32,533,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +} +); +unicode = 1465; +}, +{ +color = 6; +glyphname = "holamhaser-hb"; +layers = ( +{ +anchors = ( +{ +name = _topleft; +pos = (36,415); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(7,533,ls), +(20,533,o), +(30,542,o), +(33,555,cs), +(38,578,ls), +(41,591,o), +(34,600,o), +(21,600,cs), +(-2,600,ls), +(-15,600,o), +(-26,591,o), +(-29,578,cs), +(-34,555,ls), +(-37,542,o), +(-29,533,o), +(-16,533,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _topleft; +pos = (41,415); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(32,533,ls), +(45,533,o), +(55,542,o), +(58,555,cs), +(72,618,ls), +(74,631,o), +(67,640,o), +(54,640,cs), +(-19,640,ls), +(-32,640,o), +(-43,631,o), +(-45,618,cs), +(-59,555,ls), +(-62,542,o), +(-54,533,o), +(-41,533,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +} +); +unicode = 1466; +}, +{ +color = 6; +glyphname = "qubuts-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (-49,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(16,-264,ls), +(29,-264,o), +(40,-255,o), +(43,-242,cs), +(48,-219,ls), +(50,-206,o), +(43,-197,o), +(30,-197,cs), +(7,-197,ls), +(-6,-197,o), +(-17,-206,o), +(-19,-219,cs), +(-24,-242,ls), +(-27,-255,o), +(-20,-264,o), +(-7,-264,cs) +); +}, +{ +closed = 1; +nodes = ( +(-99,-146,ls), +(-86,-146,o), +(-75,-137,o), +(-72,-124,cs), +(-67,-101,ls), +(-64,-88,o), +(-72,-79,o), +(-85,-79,cs), +(-108,-79,ls), +(-121,-79,o), +(-131,-88,o), +(-134,-101,cs), +(-139,-124,ls), +(-142,-137,o), +(-135,-146,o), +(-122,-146,cs) +); +}, +{ +closed = 1; +nodes = ( +(-42,-206,ls), +(-29,-206,o), +(-18,-197,o), +(-15,-184,cs), +(-10,-161,ls), +(-7,-148,o), +(-14,-139,o), +(-27,-139,cs), +(-50,-139,ls), +(-63,-139,o), +(-74,-148,o), +(-77,-161,cs), +(-82,-184,ls), +(-85,-197,o), +(-78,-206,o), +(-65,-206,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-48,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,-307,ls), +(69,-307,o), +(80,-298,o), +(83,-285,cs), +(96,-222,ls), +(99,-209,o), +(92,-200,o), +(79,-200,cs), +(6,-200,ls), +(-7,-200,o), +(-18,-209,o), +(-21,-222,cs), +(-34,-285,ls), +(-37,-298,o), +(-30,-307,o), +(-17,-307,cs) +); +}, +{ +closed = 1; +nodes = ( +(-175,-182,ls), +(-162,-182,o), +(-152,-173,o), +(-149,-160,cs), +(-135,-97,ls), +(-133,-84,o), +(-140,-75,o), +(-153,-75,cs), +(-226,-75,ls), +(-239,-75,o), +(-250,-84,o), +(-252,-97,cs), +(-266,-160,ls), +(-269,-173,o), +(-261,-182,o), +(-248,-182,cs) +); +}, +{ +closed = 1; +nodes = ( +(-63,-245,ls), +(-50,-245,o), +(-39,-236,o), +(-36,-223,cs), +(-23,-160,ls), +(-20,-147,o), +(-27,-138,o), +(-40,-138,cs), +(-113,-138,ls), +(-126,-138,o), +(-137,-147,o), +(-140,-160,cs), +(-153,-223,ls), +(-156,-236,o), +(-149,-245,o), +(-136,-245,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +} +); +unicode = 1467; +}, +{ +color = 6; +glyphname = "dagesh-hb"; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (14,289); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(24,285,ls), +(37,285,o), +(48,294,o), +(50,307,cs), +(55,330,ls), +(58,343,o), +(51,352,o), +(38,352,cs), +(15,352,ls), +(2,352,o), +(-9,343,o), +(-12,330,cs), +(-17,307,ls), +(-19,294,o), +(-12,285,o), +(1,285,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _center; +pos = (70,286); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(98,265,ls), +(111,265,o), +(121,274,o), +(124,287,cs), +(138,350,ls), +(140,363,o), +(133,372,o), +(120,372,cs), +(57,372,ls), +(44,372,o), +(33,363,o), +(31,350,cs), +(17,287,ls), +(14,274,o), +(22,265,o), +(35,265,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 117; +}; +width = 0; +} +); +unicode = 1468; +}, +{ +color = 6; +glyphname = "sindot-hb"; +layers = ( +{ +anchors = ( +{ +name = _topleft; +pos = (-31,415); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(96,533,ls), +(109,533,o), +(119,542,o), +(122,555,cs), +(127,578,ls), +(130,591,o), +(123,600,o), +(110,600,cs), +(87,600,ls), +(74,600,o), +(63,591,o), +(60,578,cs), +(55,555,ls), +(52,542,o), +(60,533,o), +(73,533,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _topleft; +pos = (-31,415); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(217,493,ls), +(230,493,o), +(241,502,o), +(244,515,cs), +(257,578,ls), +(260,591,o), +(253,600,o), +(240,600,cs), +(177,600,ls), +(164,600,o), +(153,591,o), +(150,578,cs), +(137,515,ls), +(134,502,o), +(141,493,o), +(154,493,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +} +); +unicode = 1474; +}, +{ +color = 6; +glyphname = "qamatsqatan-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (-47,0); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(29,-131,ls), +(42,-131,o), +(53,-122,o), +(56,-109,cs), +(58,-101,ls), +(61,-88,o), +(53,-79,o), +(40,-79,cs), +(-168,-79,ls), +(-181,-79,o), +(-191,-88,o), +(-194,-101,cs), +(-196,-109,ls), +(-199,-122,o), +(-192,-131,o), +(-179,-131,cs) +); +}, +{ +closed = 1; +nodes = ( +(-97,-245,ls), +(-84,-245,o), +(-73,-236,o), +(-70,-223,cs), +(-51,-134,ls), +(-46,-111,o), +(-56,-112,o), +(-69,-112,cs), +(-76,-112,ls), +(-89,-112,o), +(-97,-111,o), +(-102,-134,cs), +(-121,-223,ls), +(-124,-236,o), +(-117,-245,o), +(-104,-245,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-47,0); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(19,-182,ls), +(32,-182,o), +(42,-173,o), +(45,-160,cs), +(59,-97,ls), +(61,-84,o), +(54,-75,o), +(41,-75,cs), +(-167,-75,ls), +(-180,-75,o), +(-191,-84,o), +(-193,-97,cs), +(-207,-160,ls), +(-210,-173,o), +(-202,-182,o), +(-189,-182,cs) +); +}, +{ +closed = 1; +nodes = ( +(-80,-261,ls), +(-67,-261,o), +(-56,-252,o), +(-54,-239,cs), +(-35,-150,ls), +(-30,-127,o), +(-39,-128,o), +(-52,-128,cs), +(-99,-128,ls), +(-112,-128,o), +(-121,-127,o), +(-126,-150,cs), +(-145,-239,ls), +(-147,-252,o), +(-140,-261,o), +(-127,-261,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 100; +}; +width = 0; +} +); +unicode = 1479; +}, +{ +color = 10; +glyphname = dieresiscomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (123,520); +}, +{ +name = top; +pos = (162,710); +} +); +layerId = UUID0; +shapes = ( +{ +ref = dieresis; +} +); +width = 277; +}, +{ +anchors = ( +{ +name = _top; +pos = (214,520); +}, +{ +name = top; +pos = (267,765); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = dieresis; +} +); +width = 467; +} +); +unicode = 776; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 575; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 153; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = dotaccentcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (57,520); +}, +{ +name = top; +pos = (93,710); +} +); +layerId = UUID0; +shapes = ( +{ +ref = dotaccent; +} +); +width = 136; +}, +{ +anchors = ( +{ +name = _top; +pos = (99,520); +}, +{ +name = top; +pos = (152,772); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = dotaccent; +} +); +width = 237; +} +); +unicode = 775; +}, +{ +color = 10; +glyphname = gravecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (130,520); +}, +{ +name = top; +pos = (120,725); +} +); +layerId = UUID0; +shapes = ( +{ +ref = grave; +} +); +width = 182; +}, +{ +anchors = ( +{ +name = _top; +pos = (231,520); +}, +{ +name = top; +pos = (213,765); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = grave; +} +); +width = 360; +} +); +unicode = 768; +}, +{ +color = 10; +glyphname = acutecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (53,520); +}, +{ +name = top; +pos = (141,725); +} +); +layerId = UUID0; +shapes = ( +{ +ref = acute; +} +); +width = 224; +}, +{ +anchors = ( +{ +name = _top; +pos = (109,520); +}, +{ +name = top; +pos = (237,765); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = acute; +} +); +width = 408; +} +); +unicode = 769; +}, +{ +color = 10; +glyphname = hungarumlautcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (120,520); +}, +{ +name = top; +pos = (193,725); +} +); +layerId = UUID0; +shapes = ( +{ +ref = hungarumlaut; +} +); +width = 329; +}, +{ +anchors = ( +{ +name = _top; +pos = (213,520); +}, +{ +name = top; +pos = (323,765); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = hungarumlaut; +} +); +width = 580; +} +); +unicode = 779; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 10; +glyphname = caroncomb.alt; +layers = ( +{ +anchors = ( +{ +name = _topright; +pos = (222,700); +} +); +layerId = UUID0; +shapes = ( +{ +alignment = -1; +pos = (202,750); +ref = commaaccentcomb; +} +); +width = 351; +}, +{ +anchors = ( +{ +name = _topright; +pos = (305,700); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +alignment = -1; +pos = (305,750); +ref = commaaccentcomb; +} +); +width = 529; +} +); +}, +{ +color = 10; +glyphname = circumflexcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (155,520); +}, +{ +name = top; +pos = (192,725); +} +); +layerId = UUID0; +shapes = ( +{ +ref = circumflex; +} +); +width = 304; +}, +{ +anchors = ( +{ +name = _top; +pos = (228,520); +}, +{ +name = top; +pos = (278,765); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = circumflex; +} +); +width = 460; +} +); +unicode = 770; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 10; +glyphname = caroncomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (125,520); +}, +{ +name = top; +pos = (169,725); +} +); +layerId = UUID0; +shapes = ( +{ +ref = caron; +} +); +width = 304; +}, +{ +anchors = ( +{ +name = _top; +pos = (196,520); +}, +{ +name = top; +pos = (248,765); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = caron; +} +); +width = 460; +} +); +unicode = 780; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 10; +glyphname = brevecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (104,520); +}, +{ +name = top; +pos = (148,725); +} +); +layerId = UUID0; +shapes = ( +{ +ref = breve; +} +); +width = 255; +}, +{ +anchors = ( +{ +name = _top; +pos = (158,520); +}, +{ +name = top; +pos = (210,765); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = breve; +} +); +width = 379; +} +); +unicode = 774; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 591; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 300; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 185; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ringcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (81,520); +}, +{ +name = top; +pos = (127,740); +} +); +layerId = UUID0; +shapes = ( +{ +ref = ring; +} +); +width = 194; +}, +{ +anchors = ( +{ +name = _top; +pos = (103,520); +}, +{ +name = top; +pos = (153,780); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = ring; +} +); +width = 236; +} +); +unicode = 778; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +} +); +}; +}, +{ +color = 10; +glyphname = tildecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (132,520); +}, +{ +name = top; +pos = (166,684); +} +); +layerId = UUID0; +shapes = ( +{ +ref = tilde; +} +); +width = 283; +}, +{ +anchors = ( +{ +name = _top; +pos = (206,520); +}, +{ +name = top; +pos = (268,770); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = tilde; +} +); +width = 467; +} +); +unicode = 771; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 680; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 179; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = macroncomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (127,520); +}, +{ +name = top; +pos = (160,680); +} +); +layerId = UUID0; +shapes = ( +{ +ref = macron; +} +); +width = 278; +}, +{ +anchors = ( +{ +name = _top; +pos = (199,520); +}, +{ +name = top; +pos = (244,745); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = macron; +} +); +width = 427; +} +); +unicode = 772; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 6; +glyphname = commaturnedabovecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (322,520); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(347,595,ls), +(363,595,o), +(372,606,o), +(378,622,cs), +(419,734,ls), +(423,746,o), +(420,755,o), +(409,755,cs), +(391,755,ls), +(376,755,o), +(370,747,o), +(361,734,c), +(299,629,ls), +(295,622,o), +(292,616,o), +(291,611,cs), +(289,603,o), +(293,595,o), +(302,595,cs) +); +} +); +width = 579; +}, +{ +anchors = ( +{ +name = _top; +pos = (373,520); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,595,ls), +(478,595,o), +(496,616,o), +(503,634,c), +(553,773,l), +(556,785,o), +(548,795,o), +(536,795,cs), +(431,795,ls), +(405,795,o), +(389,776,o), +(381,763,cs), +(297,624,ls), +(295,621,o), +(295,619,o), +(294,617,cs), +(292,605,o), +(299,595,o), +(311,595,cs) +); +} +); +width = 665; +} +); +unicode = 786; +}, +{ +color = 6; +glyphname = commaaccentcomb; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (86,0); +}, +{ +name = bottom; +pos = (31,-210); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(13,-210,ls), +(28,-210,o), +(34,-202,o), +(43,-189,c), +(105,-84,ls), +(109,-77,o), +(112,-71,o), +(113,-66,cs), +(115,-58,o), +(111,-50,o), +(102,-50,cs), +(57,-50,ls), +(41,-50,o), +(32,-61,o), +(26,-77,cs), +(-15,-189,ls), +(-19,-201,o), +(-16,-210,o), +(-5,-210,cs) +); +} +); +width = 245; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (134,0); +}, +{ +name = bottom; +pos = (61,-250); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(75,-250,ls), +(101,-250,o), +(117,-231,o), +(125,-218,cs), +(209,-79,ls), +(211,-76,o), +(211,-74,o), +(212,-72,cs), +(214,-60,o), +(207,-50,o), +(195,-50,cs), +(55,-50,ls), +(28,-50,o), +(10,-71,o), +(3,-89,c), +(-47,-228,l), +(-50,-240,o), +(-42,-250,o), +(-30,-250,cs) +); +} +); +width = 326; +} +); +unicode = 806; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-210"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-217"; +} +); +}; +}, +{ +color = 10; +glyphname = cedillacomb; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (157,0); +}, +{ +name = bottom; +pos = (110,-220); +} +); +layerId = UUID0; +shapes = ( +{ +ref = cedilla; +} +); +width = 250; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (156,0); +}, +{ +name = bottom; +pos = (109,-220); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = cedilla; +} +); +width = 254; +} +); +unicode = 807; +}, +{ +color = 10; +glyphname = ogonekcomb; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +pos = (236,57); +} +); +layerId = UUID0; +shapes = ( +{ +ref = ogonek; +} +); +width = 232; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (285,122); +} +); +color = 10; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +ref = ogonek; +} +); +width = 280; +} +); +unicode = 808; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +} +); +}; +}, +{ +color = 6; +glyphname = strokeshortcomb; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (194,300); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(311,271,ls), +(324,271,o), +(335,280,o), +(338,293,cs), +(340,307,ls), +(343,320,o), +(336,329,o), +(323,329,cs), +(78,329,ls), +(65,329,o), +(54,320,o), +(51,307,cs), +(49,293,ls), +(46,280,o), +(53,271,o), +(66,271,cs) +); +} +); +width = 529; +}, +{ +anchors = ( +{ +name = _center; +pos = (245,292); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(399,231,ls), +(414,231,o), +(429,243,o), +(432,258,cs), +(446,326,ls), +(449,341,o), +(440,353,o), +(425,353,cs), +(90,353,ls), +(75,353,o), +(60,341,o), +(57,326,cs), +(43,258,ls), +(40,243,o), +(49,231,o), +(64,231,cs) +); +} +); +width = 569; +} +); +unicode = 821; +}, +{ +color = 6; +glyphname = slashshortcomb; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (218,243); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-19,-45,ls), +(-4,-45,o), +(2,-38,o), +(10,-30,cs), +(482,501,ls), +(487,506,o), +(489,511,o), +(489,516,cs), +(489,524,o), +(481,530,o), +(474,530,cs), +(457,530,ls), +(441,530,o), +(435,523,o), +(427,515,cs), +(-45,-16,ls), +(-50,-21,o), +(-52,-26,o), +(-52,-30,cs), +(-52,-39,o), +(-43,-45,o), +(-36,-45,cs) +); +} +); +width = 465; +}, +{ +anchors = ( +{ +name = _center; +pos = (279,260); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(-13,-28,ls), +(1,-28,o), +(12,-20,o), +(20,-13,cs), +(610,509,ls), +(616,515,o), +(618,522,o), +(618,527,cs), +(618,538,o), +(609,547,o), +(598,547,cs), +(560,547,ls), +(547,547,o), +(538,541,o), +(528,532,cs), +(-60,12,ls), +(-67,5,o), +(-71,0,o), +(-71,-8,cs), +(-71,-19,o), +(-62,-28,o), +(-51,-28,cs) +); +} +); +width = 584; +} +); +unicode = 823; +}, +{ +color = 6; +glyphname = slashlongcomb; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (243,351); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-35,-64,ls), +(-22,-64,o), +(-13,-54,o), +(-10,-49,cs), +(551,737,ls), +(563,755,o), +(551,766,o), +(538,766,cs), +(521,766,ls), +(508,766,o), +(499,756,o), +(496,751,cs), +(-65,-35,ls), +(-78,-53,o), +(-65,-64,o), +(-52,-64,cs) +); +} +); +width = 465; +}, +{ +anchors = ( +{ +name = _center; +pos = (286,351); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(-49,-64,ls), +(-33,-64,o), +(-27,-53,o), +(-24,-49,cs), +(677,729,ls), +(689,742,o), +(681,766,o), +(663,766,cs), +(618,766,ls), +(605,766,o), +(598,756,o), +(595,752,cs), +(-104,-25,ls), +(-118,-41,o), +(-109,-64,o), +(-91,-64,cs) +); +} +); +width = 584; +} +); +unicode = 824; +}, +{ +color = 6; +glyphname = dieresiscomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (149,700); +}, +{ +name = top; +pos = (177,833); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(269,750,ls), +(282,750,o), +(294,759,o), +(297,772,cs), +(305,810,ls), +(308,823,o), +(300,833,o), +(287,833,cs), +(249,833,ls), +(236,833,o), +(225,823,o), +(222,810,cs), +(214,772,ls), +(211,759,o), +(218,750,o), +(231,750,cs) +); +}, +{ +closed = 1; +nodes = ( +(86,750,ls), +(99,750,o), +(111,759,o), +(114,772,cs), +(122,810,ls), +(125,823,o), +(117,833,o), +(104,833,cs), +(66,833,ls), +(53,833,o), +(42,823,o), +(39,810,cs), +(31,772,ls), +(28,759,o), +(35,750,o), +(48,750,cs) +); +} +); +width = 306; +}, +{ +anchors = ( +{ +name = _top; +pos = (238,700); +}, +{ +name = top; +pos = (282,920); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(442,750,ls), +(455,750,o), +(467,760,o), +(470,773,cs), +(496,897,ls), +(499,910,o), +(491,920,o), +(478,920,cs), +(354,920,ls), +(341,920,o), +(329,910,o), +(326,897,cs), +(300,773,ls), +(297,760,o), +(305,750,o), +(318,750,cs) +); +}, +{ +closed = 1; +nodes = ( +(173,750,ls), +(186,750,o), +(198,760,o), +(201,773,cs), +(227,897,ls), +(230,910,o), +(222,920,o), +(209,920,cs), +(85,920,ls), +(72,920,o), +(60,910,o), +(57,897,cs), +(31,773,ls), +(28,760,o), +(36,750,o), +(49,750,cs) +); +} +); +width = 497; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 750; +} +); +}; +}, +{ +color = 6; +glyphname = dotaccentcomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (62,700); +}, +{ +name = top; +pos = (92,843); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(96,750,l), +(109,750,o), +(121,759,o), +(124,772,c), +(134,820,l), +(137,833,o), +(129,843,o), +(116,843,cs), +(68,843,ls), +(55,843,o), +(44,833,o), +(41,820,cs), +(31,772,ls), +(28,759,o), +(35,750,o), +(48,750,cs) +); +} +); +width = 135; +}, +{ +anchors = ( +{ +name = _top; +pos = (111,700); +}, +{ +name = top; +pos = (156,932); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,750,ls), +(198,750,o), +(210,760,o), +(213,773,cs), +(242,909,ls), +(245,922,o), +(237,932,o), +(224,932,cs), +(88,932,l), +(75,932,o), +(63,922,o), +(60,909,cs), +(31,773,ls), +(28,760,o), +(36,750,o), +(49,750,cs) +); +} +); +width = 243; +} +); +}, +{ +color = 6; +glyphname = gravecomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (139,700); +}, +{ +name = top; +pos = (123,880); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(167,750,ls), +(177,750,o), +(184,757,o), +(186,766,cs), +(187,770,o), +(186,775,o), +(184,779,cs), +(133,862,l), +(124,875,o), +(120,880,o), +(100,880,cs), +(54,880,ls), +(42,880,o), +(33,872,o), +(31,862,cs), +(30,857,o), +(31,851,o), +(36,846,cs), +(123,760,l), +(132,751,o), +(139,750,o), +(152,750,c) +); +} +); +width = 187; +}, +{ +anchors = ( +{ +name = _top; +pos = (247,700); +}, +{ +name = top; +pos = (208,920); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,750,ls), +(340,750,o), +(347,756,o), +(349,766,cs), +(350,771,o), +(349,776,o), +(347,779,cs), +(273,901,l), +(262,918,o), +(255,920,o), +(240,920,cs), +(54,920,ls), +(42,920,o), +(33,912,o), +(31,900,cs), +(30,895,o), +(30,891,o), +(33,888,cs), +(155,767,ls), +(164,758,o), +(172,750,o), +(193,750,cs) +); +} +); +width = 350; +} +); +}, +{ +color = 6; +glyphname = acutecomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (48,700); +}, +{ +name = top; +pos = (143,880); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(58,750,l), +(71,750,o), +(78,751,o), +(91,760,c), +(219,849,ls), +(225,853,o), +(228,860,o), +(228,866,cs), +(228,873,o), +(223,880,o), +(212,880,cs), +(166,880,ls), +(146,880,o), +(138,875,o), +(125,862,c), +(36,777,l), +(32,773,o), +(29,767,o), +(29,762,cs), +(29,756,o), +(33,750,o), +(43,750,cs) +); +} +); +width = 230; +}, +{ +anchors = ( +{ +name = _top; +pos = (128,700); +}, +{ +name = top; +pos = (242,920); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(191,750,ls), +(212,750,o), +(224,758,o), +(237,767,cs), +(409,888,ls), +(413,891,o), +(416,895,o), +(417,900,cs), +(419,912,o), +(414,920,o), +(402,920,cs), +(206,920,ls), +(191,920,o), +(184,918,o), +(165,901,c), +(39,779,ls), +(35,776,o), +(32,771,o), +(31,766,cs), +(29,756,o), +(34,750,o), +(44,750,cs) +); +} +); +width = 418; +} +); +}, +{ +color = 6; +glyphname = hungarumlautcomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (125,700); +}, +{ +name = top; +pos = (215,880); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(207,750,ls), +(220,750,o), +(230,755,o), +(240,764,cs), +(331,850,ls), +(336,855,o), +(338,861,o), +(338,866,cs), +(338,874,o), +(333,880,o), +(322,880,cs), +(282,880,ls), +(261,880,o), +(249,874,o), +(241,861,cs), +(183,774,ls), +(180,770,o), +(178,765,o), +(178,761,cs), +(178,755,o), +(182,750,o), +(192,750,cs) +); +}, +{ +closed = 1; +nodes = ( +(59,750,ls), +(72,750,o), +(82,755,o), +(92,764,cs), +(183,850,ls), +(188,855,o), +(190,861,o), +(190,866,cs), +(190,874,o), +(185,880,o), +(174,880,cs), +(134,880,ls), +(113,880,o), +(101,874,o), +(93,861,cs), +(35,774,ls), +(32,770,o), +(30,765,o), +(30,761,cs), +(30,755,o), +(34,750,o), +(44,750,cs) +); +} +); +width = 339; +}, +{ +anchors = ( +{ +name = _top; +pos = (224,700); +}, +{ +name = top; +pos = (323,920); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(392,750,ls), +(405,750,o), +(419,755,o), +(429,764,cs), +(569,888,ls), +(573,891,o), +(577,896,o), +(578,901,cs), +(581,913,o), +(574,920,o), +(562,920,cs), +(405,920,ls), +(384,920,o), +(373,914,o), +(364,901,cs), +(285,781,ls), +(282,777,o), +(277,771,o), +(276,766,cs), +(274,756,o), +(279,750,o), +(289,750,cs) +); +}, +{ +closed = 1; +nodes = ( +(147,750,ls), +(160,750,o), +(174,755,o), +(184,764,cs), +(324,888,ls), +(328,891,o), +(332,896,o), +(333,901,cs), +(336,913,o), +(329,920,o), +(317,920,cs), +(160,920,ls), +(139,920,o), +(128,914,o), +(119,901,cs), +(40,781,ls), +(37,777,o), +(32,771,o), +(31,766,cs), +(29,756,o), +(34,750,o), +(44,750,cs) +); +} +); +width = 579; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 750; +} +); +}; +}, +{ +color = 6; +glyphname = circumflexcomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (160,700); +}, +{ +name = top; +pos = (192,880); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(76,750,ls), +(84,750,o), +(88,753,o), +(95,757,cs), +(186,817,l), +(251,757,ls), +(255,753,o), +(260,750,o), +(268,750,cs), +(288,750,ls), +(295,750,o), +(302,755,o), +(303,761,cs), +(304,766,o), +(303,771,o), +(299,776,cs), +(226,866,ls), +(215,880,o), +(207,880,o), +(197,880,cs), +(187,880,ls), +(177,880,o), +(169,880,o), +(152,866,cs), +(40,775,ls), +(34,770,o), +(31,764,o), +(31,760,cs), +(31,754,o), +(35,750,o), +(42,750,cs) +); +} +); +width = 304; +}, +{ +anchors = ( +{ +name = _top; +pos = (248,700); +}, +{ +name = top; +pos = (283,920); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,750,ls), +(136,750,o), +(149,751,o), +(164,757,cs), +(265,799,l), +(348,757,ls), +(361,750,o), +(374,750,o), +(387,750,cs), +(450,750,ls), +(460,750,o), +(467,756,o), +(469,766,cs), +(470,771,o), +(469,776,o), +(467,779,cs), +(381,901,ls), +(371,915,o), +(363,920,o), +(348,920,cs), +(218,920,ls), +(203,920,o), +(193,915,o), +(177,901,cs), +(39,779,ls), +(35,776,o), +(32,771,o), +(31,766,cs), +(29,756,o), +(34,750,o), +(44,750,cs) +); +} +); +width = 470; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 750; +} +); +}; +}, +{ +color = 6; +glyphname = caroncomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (131,700); +}, +{ +name = top; +pos = (169,880); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(147,750,ls), +(157,750,o), +(165,750,o), +(182,764,cs), +(294,855,ls), +(300,860,o), +(303,866,o), +(303,870,cs), +(303,876,o), +(299,880,o), +(292,880,cs), +(258,880,ls), +(250,880,o), +(246,877,o), +(239,873,cs), +(148,813,l), +(83,873,ls), +(79,877,o), +(74,880,o), +(66,880,cs), +(46,880,ls), +(39,880,o), +(32,875,o), +(31,869,cs), +(30,864,o), +(31,859,o), +(35,854,cs), +(108,764,ls), +(119,750,o), +(127,750,o), +(137,750,cs) +); +} +); +width = 304; +}, +{ +anchors = ( +{ +name = _top; +pos = (211,700); +}, +{ +name = top; +pos = (253,920); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(282,750,ls), +(297,750,o), +(307,755,o), +(323,769,cs), +(461,891,ls), +(465,894,o), +(468,899,o), +(469,904,cs), +(471,914,o), +(466,920,o), +(456,920,cs), +(377,920,ls), +(364,920,o), +(351,919,o), +(336,913,cs), +(235,871,l), +(152,913,ls), +(139,920,o), +(126,920,o), +(113,920,cs), +(50,920,ls), +(40,920,o), +(33,914,o), +(31,904,cs), +(30,899,o), +(31,894,o), +(33,891,cs), +(119,769,ls), +(129,755,o), +(137,750,o), +(152,750,cs) +); +} +); +width = 470; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 750; +} +); +}; +}, +{ +color = 6; +glyphname = brevecomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (116,700); +}, +{ +name = top; +pos = (151,875); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(217,740,o), +(250,799,o), +(262,856,c), +(264,866,o), +(259,875,o), +(247,875,cs), +(232,875,ls), +(220,875,o), +(212,866,o), +(209,856,c), +(200,824,o), +(177,790,o), +(131,790,cs), +(85,790,o), +(79,824,o), +(85,856,cs), +(87,866,o), +(82,875,o), +(70,875,cs), +(55,875,l), +(43,875,o), +(34,866,o), +(32,856,cs), +(20,799,o), +(46,740,o), +(129,740,cs) +); +} +); +width = 264; +}, +{ +anchors = ( +{ +name = _top; +pos = (174,700); +}, +{ +name = top; +pos = (215,920); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,745,o), +(369,811,o), +(388,901,cs), +(390,911,o), +(385,920,o), +(373,920,cs), +(274,920,ls), +(262,920,o), +(253,911,o), +(251,901,cs), +(245,871,o), +(231,846,o), +(199,846,cs), +(167,846,o), +(165,871,o), +(171,901,cs), +(173,911,o), +(168,920,o), +(156,920,cs), +(57,920,ls), +(45,920,o), +(36,911,o), +(34,901,cs), +(15,811,o), +(78,745,o), +(188,745,cs) +); +} +); +width = 389; +} +); +}, +{ +color = 6; +glyphname = ringcomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (87,700); +}, +{ +name = top; +pos = (127,890); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(142,740,o), +(181,770,o), +(191,815,cs), +(201,859,o), +(168,890,o), +(124,890,cs), +(80,890,o), +(41,859,o), +(31,815,cs), +(21,772,o), +(54,740,o), +(98,740,cs) +); +}, +{ +closed = 1; +nodes = ( +(85,785,o), +(77,798,o), +(81,815,cs), +(85,832,o), +(100,845,o), +(120,845,cs), +(139,845,o), +(145,832,o), +(141,815,cs), +(137,798,o), +(121,785,o), +(101,785,cs) +); +} +); +width = 194; +}, +{ +anchors = ( +{ +name = _top; +pos = (110,700); +}, +{ +name = top; +pos = (153,930); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(168,740,o), +(221,780,o), +(233,835,cs), +(245,890,o), +(208,930,o), +(153,930,cs), +(98,930,o), +(45,890,o), +(33,835,cs), +(21,780,o), +(58,740,o), +(113,740,cs) +); +}, +{ +closed = 1; +nodes = ( +(110,805,o), +(99,818,o), +(103,835,cs), +(107,852,o), +(122,865,o), +(139,865,cs), +(156,865,o), +(167,852,o), +(163,835,cs), +(159,818,o), +(144,805,o), +(127,805,cs) +); +} +); +width = 236; +} +); +}, +{ +color = 6; +glyphname = tildecomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (142,700); +}, +{ +name = top; +pos = (172,844); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(247,745,o), +(288,786,o), +(293,824,cs), +(294,832,o), +(290,840,o), +(280,840,cs), +(260,840,ls), +(238,840,o), +(241,810,o), +(207,810,cs), +(178,810,o), +(164,844,o), +(117,844,cs), +(76,844,o), +(36,804,o), +(31,766,cs), +(30,758,o), +(34,750,o), +(44,750,cs), +(64,750,ls), +(85,750,o), +(84,779,o), +(117,779,cs), +(145,779,o), +(161,745,o), +(207,745,cs) +); +} +); +width = 294; +}, +{ +anchors = ( +{ +name = _top; +pos = (216,700); +}, +{ +name = top; +pos = (268,925); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(416,745,o), +(456,855,o), +(466,901,cs), +(468,911,o), +(463,920,o), +(451,920,cs), +(367,920,ls), +(345,920,o), +(340,889,o), +(310,889,cs), +(271,889,o), +(250,925,o), +(190,925,cs), +(80,925,o), +(41,814,o), +(31,768,cs), +(29,758,o), +(36,750,o), +(46,750,cs), +(130,750,ls), +(152,750,o), +(156,781,o), +(187,781,cs), +(226,781,o), +(247,745,o), +(307,745,cs) +); +} +); +width = 467; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 750; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 833; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 880; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 246; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = macroncomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (137,700); +}, +{ +name = top; +pos = (162,816); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(247,750,ls), +(260,750,o), +(272,759,o), +(274,772,cs), +(278,794,l), +(280,807,o), +(274,816,o), +(261,816,cs), +(62,816,ls), +(49,816,o), +(37,807,o), +(35,794,cs), +(31,772,l), +(29,759,o), +(35,750,o), +(48,750,cs) +); +} +); +width = 279; +}, +{ +anchors = ( +{ +name = _top; +pos = (504,700); +}, +{ +name = top; +pos = (542,900); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(699,750,ls), +(712,750,o), +(724,760,o), +(727,773,cs), +(749,877,ls), +(752,890,o), +(744,900,o), +(731,900,cs), +(354,900,ls), +(341,900,o), +(329,890,o), +(326,877,cs), +(304,773,ls), +(301,760,o), +(309,750,o), +(322,750,cs) +); +} +); +width = 750; +} +); +}, +{ +color = 6; +glyphname = commaaccentcomb.case; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (130,0); +}, +{ +name = bottom; +pos = (78,-210); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(60,-210,ls), +(75,-210,o), +(82,-202,o), +(90,-189,cs), +(153,-84,ls), +(157,-77,o), +(159,-71,o), +(160,-66,cs), +(162,-58,o), +(158,-50,o), +(149,-50,cs), +(104,-50,ls), +(88,-50,o), +(79,-61,o), +(73,-77,cs), +(32,-189,ls), +(28,-201,o), +(31,-210,o), +(42,-210,cs) +); +} +); +width = 161; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (219,0); +}, +{ +name = bottom; +pos = (146,-250); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(165,-250,ls), +(191,-250,o), +(207,-231,o), +(215,-218,cs), +(300,-79,l), +(302,-75,o), +(303,-72,o), +(303,-68,cs), +(303,-59,o), +(296,-50,o), +(285,-50,cs), +(134,-50,ls), +(107,-50,o), +(90,-71,o), +(83,-89,cs), +(32,-226,l), +(27,-238,o), +(36,-250,o), +(49,-250,cs) +); +} +); +width = 304; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-210"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +} +); +}; +}, +{ +color = 6; +glyphname = cedillacomb.case; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (157,0); +}, +{ +name = bottom; +pos = (110,-220); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(122,27,l), +(70,-53,ls), +(64,-63,o), +(54,-75,o), +(59,-83,cs), +(71,-100,ls), +(83,-116,o), +(100,-96,o), +(132,-96,cs), +(155,-96,o), +(172,-110,o), +(167,-134,cs), +(162,-159,o), +(139,-174,o), +(116,-174,cs), +(69,-174,o), +(68,-142,o), +(51,-156,cs), +(35,-169,ls), +(15,-184,o), +(59,-220,o), +(116,-220,cs), +(174,-220,o), +(207,-183,o), +(217,-135,cs), +(228,-87,o), +(199,-50,o), +(160,-50,cs), +(145,-50,o), +(129,-53,o), +(120,-58,c), +(180,27,l) +); +} +); +width = 250; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (156,0); +}, +{ +name = bottom; +pos = (109,-220); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(105,27,l), +(59,-42,ls), +(46,-61,o), +(46,-69,o), +(53,-78,cs), +(74,-106,ls), +(84,-119,o), +(110,-106,o), +(128,-106,cs), +(148,-106,o), +(153,-118,o), +(151,-130,cs), +(148,-142,o), +(137,-154,o), +(118,-154,cs), +(84,-154,o), +(83,-136,o), +(62,-151,cs), +(38,-169,ls), +(10,-189,o), +(61,-220,o), +(114,-220,cs), +(174,-220,o), +(210,-188,o), +(221,-135,cs), +(232,-82,o), +(211,-40,o), +(160,-40,cs), +(156,-40,o), +(138,-42,o), +(129,-45,c), +(181,27,l) +); +} +); +width = 254; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 222; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = ogonekcomb.case; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +pos = (236,57); +} +); +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(155,-220,ls), +(169,-220,o), +(175,-216,o), +(179,-203,cs), +(184,-185,ls), +(187,-172,o), +(180,-163,o), +(167,-163,cs), +(149,-163,ls), +(115,-163,o), +(82,-133,o), +(93,-82,cs), +(104,-31,o), +(150,0,o), +(194,0,cs), +(202,0,ls), +(215,0,o), +(225,9,o), +(228,22,cs), +(231,35,ls), +(234,48,o), +(227,57,o), +(214,57,cs), +(194,57,ls), +(113,57,o), +(48,3,o), +(33,-82,cs), +(18,-167,o), +(78,-220,o), +(149,-220,cs) +); +} +); +width = 232; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (285,122); +} +); +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,-220,ls), +(200,-220,o), +(214,-208,o), +(217,-193,cs), +(232,-125,ls), +(235,-110,o), +(226,-98,o), +(211,-98,cs), +(201,-98,ls), +(162,-98,o), +(157,-70,o), +(161,-49,cs), +(166,-28,o), +(183,0,o), +(222,0,cs), +(232,0,ls), +(247,0,o), +(261,12,o), +(264,27,cs), +(279,95,ls), +(282,110,o), +(272,122,o), +(257,122,cs), +(223,122,ls), +(112,122,o), +(55,56,o), +(35,-39,cs), +(15,-134,o), +(60,-220,o), +(181,-220,cs) +); +} +); +width = 280; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-82"; +} +); +}; +}, +{ +color = 6; +glyphname = dieresis; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(240,627,ls), +(253,627,o), +(264,636,o), +(267,649,cs), +(276,687,ls), +(279,700,o), +(270,710,o), +(257,710,cs), +(219,710,ls), +(206,710,o), +(195,700,o), +(193,687,c), +(184,649,l), +(182,636,o), +(189,627,o), +(202,627,cs) +); +}, +{ +closed = 1; +nodes = ( +(87,627,ls), +(100,627,o), +(111,636,o), +(114,649,cs), +(123,687,ls), +(126,700,o), +(117,710,o), +(104,710,cs), +(66,710,ls), +(53,710,o), +(42,700,o), +(40,687,c), +(31,649,l), +(29,636,o), +(36,627,o), +(49,627,cs) +); +} +); +width = 277; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(412,595,ls), +(425,595,o), +(437,605,o), +(440,618,cs), +(466,742,ls), +(469,755,o), +(461,765,o), +(448,765,cs), +(324,765,ls), +(311,765,o), +(299,755,o), +(296,742,cs), +(270,618,ls), +(267,605,o), +(275,595,o), +(288,595,cs) +); +}, +{ +closed = 1; +nodes = ( +(173,595,ls), +(186,595,o), +(198,605,o), +(201,618,cs), +(227,742,ls), +(230,755,o), +(222,765,o), +(209,765,cs), +(85,765,ls), +(72,765,o), +(60,755,o), +(57,742,cs), +(31,618,ls), +(28,605,o), +(36,595,o), +(49,595,cs) +); +} +); +width = 467; +} +); +unicode = 168; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 575; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 153; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = dotaccent; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(97,617,ls), +(110,617,o), +(121,626,o), +(124,639,c), +(135,687,l), +(138,700,o), +(129,710,o), +(116,710,cs), +(68,710,ls), +(55,710,o), +(45,700,o), +(42,687,cs), +(31,639,ls), +(28,626,o), +(36,617,o), +(49,617,c) +); +} +); +width = 136; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,595,ls), +(193,595,o), +(205,605,o), +(208,618,cs), +(236,749,ls), +(238,762,o), +(231,772,o), +(218,772,cs), +(87,772,ls), +(74,772,o), +(61,762,o), +(59,749,cs), +(31,618,ls), +(28,605,o), +(36,595,o), +(49,595,cs) +); +} +); +width = 237; +} +); +unicode = 729; +}, +{ +color = 6; +glyphname = grave; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(162,595,ls), +(172,595,o), +(179,602,o), +(181,610,cs), +(182,615,o), +(181,621,o), +(178,626,cs), +(128,707,l), +(120,720,o), +(115,725,o), +(95,725,cs), +(52,725,ls), +(42,725,o), +(33,717,o), +(31,707,cs), +(30,702,o), +(31,696,o), +(36,691,cs), +(123,605,ls), +(132,596,o), +(139,595,o), +(152,595,c) +); +} +); +width = 182; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,595,ls), +(350,595,o), +(357,601,o), +(359,611,cs), +(360,616,o), +(359,621,o), +(357,624,cs), +(283,746,l), +(272,763,o), +(265,765,o), +(250,765,cs), +(54,765,ls), +(42,765,o), +(33,757,o), +(31,745,cs), +(30,740,o), +(31,736,o), +(33,733,cs), +(155,612,ls), +(164,603,o), +(172,595,o), +(193,595,cs) +); +} +); +width = 360; +} +); +unicode = 96; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 725; +} +); +}; +}, +{ +color = 6; +glyphname = acute; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(54,595,ls), +(67,595,o), +(74,596,o), +(87,605,cs), +(215,694,ls), +(221,698,o), +(223,704,o), +(223,710,cs), +(223,718,o), +(218,725,o), +(208,725,cs), +(167,725,ls), +(147,725,o), +(140,720,o), +(126,707,cs), +(39,624,ls), +(34,619,o), +(32,615,o), +(31,611,cs), +(29,602,o), +(34,595,o), +(43,595,cs) +); +} +); +width = 224; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(181,595,ls), +(202,595,o), +(214,603,o), +(227,612,cs), +(399,733,ls), +(403,736,o), +(406,740,o), +(407,745,cs), +(409,757,o), +(404,765,o), +(392,765,cs), +(206,765,ls), +(191,765,o), +(184,763,o), +(165,746,c), +(39,624,ls), +(35,621,o), +(32,616,o), +(31,611,cs), +(29,601,o), +(34,595,o), +(44,595,cs) +); +} +); +width = 408; +} +); +unicode = 180; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 6; +glyphname = hungarumlaut; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(197,595,ls), +(210,595,o), +(220,600,o), +(230,609,cs), +(321,695,ls), +(326,700,o), +(328,706,o), +(328,711,cs), +(328,719,o), +(323,725,o), +(312,725,cs), +(277,725,ls), +(256,725,o), +(244,719,o), +(236,706,cs), +(178,619,ls), +(175,615,o), +(173,610,o), +(173,606,cs), +(173,600,o), +(177,595,o), +(187,595,cs) +); +}, +{ +closed = 1; +nodes = ( +(54,595,ls), +(67,595,o), +(77,600,o), +(87,609,cs), +(178,695,ls), +(183,700,o), +(185,706,o), +(185,711,cs), +(185,719,o), +(180,725,o), +(169,725,cs), +(134,725,ls), +(113,725,o), +(101,719,o), +(93,706,cs), +(35,619,ls), +(32,615,o), +(30,610,o), +(30,606,cs), +(30,600,o), +(34,595,o), +(44,595,cs) +); +} +); +width = 329; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(393,595,ls), +(406,595,o), +(420,600,o), +(430,609,cs), +(570,733,ls), +(574,736,o), +(578,741,o), +(579,746,cs), +(582,758,o), +(575,765,o), +(563,765,cs), +(416,765,ls), +(395,765,o), +(384,759,o), +(375,746,cs), +(296,626,ls), +(293,622,o), +(288,616,o), +(287,611,cs), +(285,601,o), +(290,595,o), +(300,595,cs) +); +}, +{ +closed = 1; +nodes = ( +(137,595,ls), +(150,595,o), +(164,600,o), +(174,609,cs), +(314,733,ls), +(318,736,o), +(322,741,o), +(323,746,cs), +(326,758,o), +(319,765,o), +(307,765,cs), +(160,765,ls), +(139,765,o), +(128,759,o), +(119,746,cs), +(40,626,ls), +(37,622,o), +(32,616,o), +(31,611,cs), +(29,601,o), +(34,595,o), +(44,595,cs) +); +} +); +width = 580; +} +); +unicode = 733; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 6; +glyphname = circumflex; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(76,595,ls), +(84,595,o), +(88,598,o), +(95,602,cs), +(186,662,l), +(251,602,ls), +(255,598,o), +(260,595,o), +(268,595,cs), +(288,595,ls), +(295,595,o), +(302,600,o), +(303,606,cs), +(304,611,o), +(303,616,o), +(299,621,cs), +(226,711,ls), +(215,725,o), +(207,725,o), +(197,725,cs), +(187,725,ls), +(177,725,o), +(169,725,o), +(152,711,cs), +(40,620,ls), +(34,615,o), +(31,609,o), +(31,605,cs), +(31,599,o), +(35,595,o), +(42,595,cs) +); +} +); +width = 304; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(118,595,ls), +(131,595,o), +(144,595,o), +(159,602,cs), +(260,644,l), +(343,602,ls), +(356,595,o), +(369,595,o), +(382,595,cs), +(440,595,ls), +(450,595,o), +(457,601,o), +(459,611,cs), +(460,616,o), +(459,621,o), +(457,624,cs), +(371,746,ls), +(361,760,o), +(353,765,o), +(338,765,cs), +(218,765,ls), +(203,765,o), +(193,760,o), +(177,746,cs), +(39,624,ls), +(35,621,o), +(32,616,o), +(31,611,cs), +(29,601,o), +(34,595,o), +(44,595,cs) +); +} +); +width = 460; +} +); +unicode = 710; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 6; +glyphname = caron; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(147,595,ls), +(157,595,o), +(165,595,o), +(182,609,cs), +(294,700,l), +(300,705,o), +(303,711,o), +(303,715,cs), +(303,721,o), +(299,725,o), +(292,725,cs), +(258,725,ls), +(250,725,o), +(246,722,o), +(239,718,cs), +(148,658,l), +(83,718,ls), +(79,722,o), +(74,725,o), +(66,725,cs), +(46,725,ls), +(38,725,o), +(30,719,o), +(30,711,cs), +(30,707,o), +(32,703,o), +(35,699,cs), +(108,609,ls), +(119,595,o), +(127,595,o), +(137,595,cs) +); +} +); +width = 304; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(272,595,ls), +(287,595,o), +(297,600,o), +(313,614,cs), +(451,736,ls), +(455,739,o), +(458,744,o), +(459,749,cs), +(461,759,o), +(456,765,o), +(446,765,cs), +(372,765,ls), +(359,765,o), +(346,765,o), +(331,758,cs), +(230,716,l), +(147,758,ls), +(134,765,o), +(121,765,o), +(108,765,cs), +(50,765,ls), +(40,765,o), +(33,759,o), +(31,749,cs), +(30,744,o), +(31,739,o), +(33,736,cs), +(119,614,ls), +(129,600,o), +(137,595,o), +(152,595,cs) +); +} +); +width = 460; +} +); +unicode = 711; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 6; +glyphname = breve; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(214,590,o), +(242,649,o), +(254,706,cs), +(256,716,o), +(251,725,o), +(239,725,cs), +(224,725,l), +(212,725,o), +(204,716,o), +(201,706,c), +(192,674,o), +(174,640,o), +(128,640,cs), +(82,640,o), +(80,674,o), +(87,706,cs), +(89,716,o), +(84,725,o), +(72,725,cs), +(57,725,ls), +(45,725,o), +(36,716,o), +(34,706,cs), +(22,649,o), +(43,590,o), +(126,590,cs) +); +} +); +width = 255; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,590,o), +(359,656,o), +(378,746,cs), +(380,756,o), +(375,765,o), +(363,765,cs), +(269,765,ls), +(257,765,o), +(248,756,o), +(246,746,cs), +(240,716,o), +(224,691,o), +(194,691,cs), +(164,691,o), +(160,716,o), +(166,746,cs), +(168,756,o), +(163,765,o), +(151,765,cs), +(57,765,ls), +(45,765,o), +(36,756,o), +(34,746,cs), +(15,656,o), +(83,590,o), +(183,590,cs) +); +} +); +width = 379; +} +); +unicode = 728; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 591; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 300; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 185; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = ring; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(142,590,o), +(181,620,o), +(191,665,cs), +(201,709,o), +(168,740,o), +(124,740,cs), +(80,740,o), +(41,709,o), +(31,665,cs), +(21,622,o), +(54,590,o), +(98,590,cs) +); +}, +{ +closed = 1; +nodes = ( +(85,635,o), +(77,648,o), +(81,665,cs), +(85,682,o), +(100,695,o), +(120,695,cs), +(139,695,o), +(145,682,o), +(141,665,cs), +(137,648,o), +(121,635,o), +(101,635,cs) +); +} +); +width = 194; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(168,590,o), +(221,630,o), +(233,685,cs), +(245,740,o), +(208,780,o), +(153,780,cs), +(98,780,o), +(45,740,o), +(33,685,cs), +(21,630,o), +(58,590,o), +(113,590,cs) +); +}, +{ +closed = 1; +nodes = ( +(110,655,o), +(99,668,o), +(103,685,cs), +(107,702,o), +(122,715,o), +(139,715,cs), +(156,715,o), +(167,702,o), +(163,685,cs), +(159,668,o), +(144,655,o), +(127,655,cs) +); +} +); +width = 236; +} +); +unicode = 730; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +} +); +}; +}, +{ +color = 6; +glyphname = tilde; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(239,590,o), +(277,626,o), +(282,664,c), +(283,672,o), +(279,680,o), +(269,680,cs), +(249,680,ls), +(227,680,o), +(223,650,o), +(199,650,cs), +(170,650,o), +(162,684,o), +(115,684,cs), +(74,684,o), +(36,649,o), +(31,611,cs), +(30,603,o), +(34,595,o), +(44,595,cs), +(64,595,ls), +(85,595,o), +(92,624,o), +(115,624,cs), +(143,624,o), +(153,590,o), +(199,590,cs) +); +} +); +width = 283; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(416,590,o), +(456,700,o), +(466,746,cs), +(468,756,o), +(463,765,o), +(451,765,cs), +(367,765,ls), +(345,765,o), +(341,734,o), +(311,734,cs), +(272,734,o), +(250,770,o), +(190,770,cs), +(80,770,o), +(41,659,o), +(31,613,cs), +(29,603,o), +(36,595,o), +(46,595,cs), +(130,595,ls), +(152,595,o), +(156,626,o), +(187,626,cs), +(226,626,o), +(247,590,o), +(307,590,cs) +); +} +); +width = 467; +} +); +unicode = 732; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 680; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 179; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = macron; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(248,622,ls), +(261,622,o), +(272,631,o), +(274,644,cs), +(277,658,ls), +(280,671,o), +(273,680,o), +(260,680,cs), +(61,680,ls), +(48,680,o), +(37,671,o), +(34,658,cs), +(31,644,ls), +(29,631,o), +(36,622,o), +(49,622,cs) +); +} +); +width = 278; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(376,595,ls), +(389,595,o), +(401,605,o), +(404,618,cs), +(426,722,ls), +(429,735,o), +(421,745,o), +(408,745,cs), +(81,745,ls), +(68,745,o), +(56,735,o), +(53,722,cs), +(31,618,ls), +(28,605,o), +(36,595,o), +(49,595,cs) +); +} +); +width = 427; +} +); +unicode = 175; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 6; +glyphname = cedilla; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(174,-220,o), +(207,-183,o), +(217,-135,cs), +(228,-87,o), +(199,-50,o), +(160,-50,cs), +(145,-50,o), +(129,-53,o), +(120,-58,c), +(180,27,l), +(122,27,l), +(70,-53,ls), +(64,-63,o), +(54,-75,o), +(59,-83,cs), +(71,-100,ls), +(83,-116,o), +(100,-96,o), +(132,-96,cs), +(155,-96,o), +(172,-110,o), +(167,-134,cs), +(162,-159,o), +(139,-174,o), +(116,-174,cs), +(69,-174,o), +(68,-142,o), +(51,-156,cs), +(35,-169,ls), +(15,-184,o), +(59,-220,o), +(116,-220,cs) +); +} +); +width = 250; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,-220,o), +(210,-188,o), +(221,-135,cs), +(232,-82,o), +(211,-40,o), +(160,-40,cs), +(156,-40,o), +(138,-42,o), +(129,-45,c), +(181,27,l), +(105,27,l), +(59,-42,ls), +(46,-61,o), +(46,-69,o), +(53,-78,cs), +(74,-106,ls), +(84,-119,o), +(110,-106,o), +(128,-106,cs), +(148,-106,o), +(153,-118,o), +(151,-130,cs), +(148,-142,o), +(137,-154,o), +(118,-154,cs), +(84,-154,o), +(83,-136,o), +(62,-151,cs), +(38,-169,ls), +(10,-189,o), +(61,-220,o), +(114,-220,cs) +); +} +); +width = 254; +} +); +unicode = 184; +}, +{ +color = 6; +glyphname = ogonek; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(155,-220,ls), +(169,-220,o), +(175,-216,o), +(179,-203,cs), +(184,-185,l), +(187,-172,o), +(180,-163,o), +(167,-163,c), +(149,-163,ls), +(115,-163,o), +(82,-133,o), +(93,-82,cs), +(104,-31,o), +(150,0,o), +(194,0,cs), +(202,0,ls), +(215,0,o), +(225,9,o), +(228,22,cs), +(231,35,ls), +(234,48,o), +(227,57,o), +(214,57,cs), +(194,57,ls), +(113,57,o), +(48,3,o), +(33,-82,cs), +(18,-167,o), +(78,-220,o), +(149,-220,cs) +); +} +); +width = 232; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,-220,ls), +(200,-220,o), +(214,-208,o), +(217,-193,cs), +(232,-125,ls), +(235,-110,o), +(226,-98,o), +(211,-98,cs), +(201,-98,ls), +(162,-98,o), +(157,-70,o), +(161,-49,cs), +(166,-28,o), +(183,0,o), +(222,0,cs), +(232,0,ls), +(247,0,o), +(261,12,o), +(264,27,cs), +(279,95,ls), +(282,110,o), +(272,122,o), +(257,122,cs), +(213,122,ls), +(102,122,o), +(55,56,o), +(35,-39,cs), +(15,-134,o), +(60,-220,o), +(181,-220,cs) +); +} +); +width = 280; +} +); +unicode = 731; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +} +); +}; +}, +{ +color = 6; +glyphname = apostrophemod; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(-77.646,635,ls), +(-62.646,635,o), +(-54.945,643,o), +(-43.181,656,c), +(41.142,761,ls), +(47.63,768,o), +(50.905,774,o), +(52.968,779,cs), +(56.669,787,o), +(54.37,795,o), +(45.37,795,cs), +(0.37,795,ls), +(-15.63,795,o), +(-27.969,784,o), +(-36.37,768,cs), +(-101.181,656,ls), +(-108.733,644,o), +(-106.646,635,o), +(-95.646,635,cs) +); +} +); +width = 102; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(3.85,595,ls), +(29.85,595,o), +(49.889,614,o), +(60.653,627,cs), +(174.205,766,ls), +(176.842,769,o), +(177.268,771,o), +(178.693,773,cs), +(183.244,785,o), +(178.37,795,o), +(166.37,795,cs), +(26.37,795,ls), +(-0.63,795,o), +(-23.095,774,o), +(-33.921,756,c), +(-113.473,617,l), +(-119.024,605,o), +(-113.15,595,o), +(-101.15,595,cs) +); +} +); +width = 226; +} +); +unicode = 700; +}, +{ +color = 6; +export = 0; +glyphname = "verticalbar-cy"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(76,155,ls), +(73,142,o), +(80,133,o), +(93,133,cs), +(97,133,ls), +(110,133,o), +(121,142,o), +(124,155,cs), +(172,380,ls), +(175,393,o), +(168,402,o), +(155,402,cs), +(151,402,ls), +(138,402,o), +(127,393,o), +(124,380,cs) +); +} +); +width = 248; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,160,ls), +(74,145,o), +(83,133,o), +(98,133,cs), +(110,133,ls), +(125,133,o), +(140,145,o), +(143,160,cs), +(189,375,ls), +(192,390,o), +(183,402,o), +(168,402,cs), +(156,402,ls), +(141,402,o), +(126,390,o), +(123,375,cs) +); +} +); +width = 266; +} +); +}, +{ +color = 6; +export = 0; +glyphname = "verticalbar-cy.case"; +layers = ( +{ +layerId = UUID0; +shapes = ( +{ +closed = 1; +nodes = ( +(72,225,ls), +(69,212,o), +(76,203,o), +(89,203,cs), +(93,203,ls), +(106,203,o), +(117,212,o), +(120,225,cs), +(176,490,ls), +(179,503,o), +(172,512,o), +(159,512,cs), +(155,512,ls), +(142,512,o), +(131,503,o), +(128,490,cs) +); +} +); +width = 248; +}, +{ +color = 6; +layerId = "A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3"; +shapes = ( +{ +closed = 1; +nodes = ( +(69,210,ls), +(65,195,o), +(75,183,o), +(90,183,cs), +(102,183,ls), +(117,183,o), +(131,195,o), +(135,210,cs), +(197,505,ls), +(201,520,o), +(191,532,o), +(176,532,cs), +(164,532,ls), +(149,532,o), +(135,520,o), +(131,505,cs) +); +} +); +width = 266; +} +); +} +); +instances = ( +{ +axesValues = ( +60 +); +instanceInterpolations = { +UUID0 = 1; +}; +isItalic = 1; +linkStyle = Light; +name = "Light Italic"; +weightClass = 300; +}, +{ +axesValues = ( +90 +); +instanceInterpolations = { +"A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3" = 0.1875; +UUID0 = 0.8125; +}; +isItalic = 1; +name = Italic; +}, +{ +axesValues = ( +125 +); +instanceInterpolations = { +"A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3" = 0.40625; +UUID0 = 0.59375; +}; +isItalic = 1; +linkStyle = Medium; +name = "Medium Italic"; +weightClass = 500; +}, +{ +axesValues = ( +142 +); +instanceInterpolations = { +"A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3" = 0.5125; +UUID0 = 0.4875; +}; +isItalic = 1; +linkStyle = SemiBold; +name = "SemiBold Italic"; +weightClass = 600; +}, +{ +axesValues = ( +160 +); +instanceInterpolations = { +"A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3" = 0.625; +UUID0 = 0.375; +}; +isBold = 1; +isItalic = 1; +name = "Bold Italic"; +weightClass = 700; +}, +{ +axesValues = ( +190 +); +instanceInterpolations = { +"A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3" = 0.8125; +UUID0 = 0.1875; +}; +isItalic = 1; +linkStyle = ExtraBold; +name = "ExtraBold Italic"; +weightClass = 800; +}, +{ +axesValues = ( +220 +); +instanceInterpolations = { +"A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3" = 1; +}; +isItalic = 1; +linkStyle = Black; +name = "Black Italic"; +weightClass = 900; +}, +{ +axesValues = ( +0 +); +customParameters = ( +{ +name = "Variable Font Origin"; +value = UUID0; +} +); +instanceInterpolations = { +UUID0 = 1; +}; +name = Regular; +type = variable; +} +); +kerningLTR = { +UUID0 = { +"@MMK_L_A" = { +"@MMK_R_J" = -12; +"@MMK_R_O" = -16; +"@MMK_R_S" = -13; +"@MMK_R_T" = -80; +"@MMK_R_U" = -17; +"@MMK_R_W" = -33; +"@MMK_R_Y" = -77; +"@MMK_R_ae" = -5; +"@MMK_R_d" = -9; +"@MMK_R_f" = -21; +"@MMK_R_g" = -9; +"@MMK_R_guilsinglleft" = -27; +"@MMK_R_guilsinglleft.cap" = -32; +"@MMK_R_hyphen" = -27; +"@MMK_R_hyphen.cap" = -33; +"@MMK_R_o" = -9; +"@MMK_R_quoteleft" = -73; +"@MMK_R_quoteright" = -74; +"@MMK_R_quotesingle" = -72; +"@MMK_R_s" = -5; +"@MMK_R_t" = -24; +"@MMK_R_u" = -9; +"@MMK_R_w" = -19; +"@MMK_R_y" = -31; +V = -49; +asterisk = -65; +backslash = -70; +bracketright = -28; +bracketright.case = -19; +copyright = -19; +eight = -10; +jcircumflex = -17; +longs = -20; +one = -45; +ordfeminine = -60; +ordmasculine = -63; +parenright = -29; +parenright.case = -17; +registered = -19; +space = -31; +trademark = -71; +v = -30; +zero = -12; +}; +"@MMK_L_C" = { +"@MMK_R_A" = -6; +"@MMK_R_AE" = -7; +"@MMK_R_T" = -7; +"@MMK_R_Y" = -23; +"@MMK_R_hyphen" = -19; +"@MMK_R_hyphen.cap" = -18; +"@MMK_R_period" = -12; +V = -21; +X = -5; +backslash = -12; +bracketright = -22; +bracketright.case = -26; +parenright = -29; +parenright.case = -32; +trademark = -8; +}; +"@MMK_L_D" = { +"@MMK_R_A" = -11; +"@MMK_R_AE" = -12; +"@MMK_R_T" = -29; +"@MMK_R_W" = -6; +"@MMK_R_Y" = -39; +"@MMK_R_Z" = -6; +"@MMK_R_period" = -17; +"@MMK_R_quoteleft" = -9; +"@MMK_R_quoteright" = -11; +"@MMK_R_quotesingle" = -10; +"@MMK_R_slash" = -12; +Tbar = -21; +V = -23; +X = -18; +backslash = -22; +bracketright = -25; +bracketright.case = -29; +parenright = -34; +parenright.case = -37; +slashlongcomb = -12; +trademark = -14; +}; +"@MMK_L_E" = { +"@MMK_R_AE" = -5; +"@MMK_R_O" = -5; +"@MMK_R_d" = -7; +"@MMK_R_f" = -8; +"@MMK_R_g" = -7; +"@MMK_R_hyphen" = -17; +"@MMK_R_hyphen.cap" = -16; +"@MMK_R_o" = -7; +"@MMK_R_t" = -6; +"@MMK_R_u" = -8; +"@MMK_R_w" = -10; +"@MMK_R_y" = -18; +V = -13; +jcircumflex = -7; +longs = -7; +v = -17; +}; +"@MMK_L_G" = { +"@MMK_R_A" = -12; +"@MMK_R_AE" = -13; +"@MMK_R_T" = -17; +"@MMK_R_W" = 0; +"@MMK_R_Y" = -30; +"@MMK_R_period" = -14; +"@MMK_R_quoteright" = -8; +V = -28; +X = -13; +backslash = -17; +bracketright = -22; +bracketright.case = -26; +parenright = -30; +parenright.case = -33; +trademark = -11; +}; +"@MMK_L_I" = { +"@MMK_R_hyphen" = -10; +"@MMK_R_hyphen.cap" = -9; +"@MMK_R_period" = -10; +bracketright = -12; +bracketright.case = -14; +parenright = -14; +parenright.case = -16; +}; +"@MMK_L_K" = { +"@MMK_R_J" = -10; +"@MMK_R_O" = -37; +"@MMK_R_S" = -9; +"@MMK_R_U" = 0; +"@MMK_R_ae" = -8; +"@MMK_R_d" = -36; +"@MMK_R_f" = -9; +"@MMK_R_g" = -35; +"@MMK_R_guilsinglleft" = -60; +"@MMK_R_guilsinglleft.cap" = -49; +"@MMK_R_hyphen" = -68; +"@MMK_R_hyphen.cap" = -69; +"@MMK_R_o" = -36; +"@MMK_R_quoteleft" = 0; +"@MMK_R_s" = -9; +"@MMK_R_t" = -8; +"@MMK_R_u" = -23; +"@MMK_R_w" = -36; +"@MMK_R_y" = -51; +copyright = -22; +four = -23; +jcircumflex = -8; +longs = -8; +registered = -22; +space = -15; +v = -50; +}; +"@MMK_L_L" = { +"@MMK_R_O" = -17; +"@MMK_R_T" = -121; +"@MMK_R_U" = -23; +"@MMK_R_W" = -47; +"@MMK_R_Y" = -113; +"@MMK_R_d" = -19; +"@MMK_R_f" = -26; +"@MMK_R_g" = -18; +"@MMK_R_guilsinglleft" = -86; +"@MMK_R_guilsinglleft.cap" = -88; +"@MMK_R_guilsinglright" = -20; +"@MMK_R_guilsinglright.cap" = -25; +"@MMK_R_hyphen" = -91; +"@MMK_R_hyphen.cap" = -100; +"@MMK_R_o" = -18; +"@MMK_R_quoteleft" = -112; +"@MMK_R_quoteright" = -108; +"@MMK_R_quotesingle" = -104; +"@MMK_R_t" = -39; +"@MMK_R_u" = -22; +"@MMK_R_w" = -65; +"@MMK_R_y" = -99; +V = -101; +asterisk = -116; +backslash = -81; +bracketright = -20; +bracketright.case = -13; +copyright = -39; +four = -35; +jcircumflex = -21; +longs = -25; +one = -64; +ordfeminine = -115; +ordmasculine = -115; +parenright = -20; +parenright.case = -10; +periodcentered = -203; +registered = -39; +space = -32; +trademark = -115; +v = -93; +zero = -13; +}; +"@MMK_L_O" = { +"@MMK_R_A" = -13; +"@MMK_R_AE" = -14; +"@MMK_R_T" = -23; +"@MMK_R_W" = -5; +"@MMK_R_Y" = -36; +"@MMK_R_Z" = -6; +"@MMK_R_period" = -18; +"@MMK_R_quoteleft" = -8; +"@MMK_R_quoteright" = -10; +"@MMK_R_quotesingle" = -9; +"@MMK_R_slash" = -12; +Tbar = -17; +V = -23; +X = -17; +backslash = -21; +bracketright = -25; +bracketright.case = -28; +parenright = -33; +parenright.case = -37; +slashlongcomb = -12; +trademark = -13; +}; +"@MMK_L_R" = { +"@MMK_R_AE" = -5; +"@MMK_R_J" = -5; +"@MMK_R_O" = 0; +"@MMK_R_T" = -15; +"@MMK_R_U" = 0; +"@MMK_R_W" = 0; +"@MMK_R_Y" = -27; +"@MMK_R_d" = -6; +"@MMK_R_g" = -6; +"@MMK_R_hyphen" = -21; +"@MMK_R_hyphen.cap" = -10; +"@MMK_R_o" = -6; +V = -25; +backslash = -12; +bracketright = -21; +bracketright.case = -17; +parenright = -25; +parenright.case = -17; +}; +"@MMK_L_S" = { +"@MMK_R_A" = -8; +"@MMK_R_AE" = -9; +"@MMK_R_T" = -12; +"@MMK_R_W" = 0; +"@MMK_R_Y" = -28; +"@MMK_R_hyphen" = -13; +"@MMK_R_hyphen.cap" = -21; +"@MMK_R_quotesingle" = 0; +"@MMK_R_y" = 0; +V = -27; +X = -7; +backslash = -14; +bracketright = -21; +bracketright.case = -23; +parenright = -27; +parenright.case = -29; +trademark = -9; +}; +"@MMK_L_T" = { +"@MMK_R_A" = -77; +"@MMK_R_AE" = -79; +"@MMK_R_J" = 0; +"@MMK_R_O" = -8; +"@MMK_R_ae" = -93; +"@MMK_R_colon" = -52; +"@MMK_R_d" = -88; +"@MMK_R_f" = -56; +"@MMK_R_g" = -88; +"@MMK_R_guilsinglleft" = -66; +"@MMK_R_guilsinglleft.cap" = -55; +"@MMK_R_guilsinglright" = -35; +"@MMK_R_h" = -20; +"@MMK_R_hyphen" = -65; +"@MMK_R_hyphen.cap" = -65; +"@MMK_R_i" = -20; +"@MMK_R_l" = -20; +"@MMK_R_n" = -73; +"@MMK_R_o" = -88; +"@MMK_R_period" = -66; +"@MMK_R_s" = -97; +"@MMK_R_slash" = -61; +"@MMK_R_t" = -40; +"@MMK_R_u" = -71; +"@MMK_R_w" = -83; +"@MMK_R_y" = -80; +"@MMK_R_z" = -93; +bracketright.case = -12; +copyright = -25; +four = -53; +iacute = -32; +ibreve = 1; +icircumflex = 1; +idieresis = 10; +idotless = -73; +igrave = 20; +imacron = 14; +itilde = 1; +j = -20; +jcircumflex = 11; +longs = -54; +parenright.case = -11; +rcaron = -66; +registered = -25; +slashlongcomb = -61; +space = -25; +v = -80; +x = -83; +}; +"@MMK_L_U" = { +"@MMK_R_A" = -6; +"@MMK_R_AE" = -7; +"@MMK_R_hyphen" = -8; +"@MMK_R_n" = -5; +"@MMK_R_period" = -19; +"@MMK_R_slash" = -15; +bracketright = -12; +bracketright.case = -20; +parenright = -14; +parenright.case = -24; +slashlongcomb = -15; +}; +"@MMK_L_W" = { +"@MMK_R_A" = -23; +"@MMK_R_AE" = -25; +"@MMK_R_ae" = -16; +"@MMK_R_d" = -14; +"@MMK_R_g" = -15; +"@MMK_R_guilsinglleft" = -10; +"@MMK_R_hyphen" = -20; +"@MMK_R_hyphen.cap" = -16; +"@MMK_R_n" = -10; +"@MMK_R_o" = -14; +"@MMK_R_period" = -37; +"@MMK_R_s" = -11; +"@MMK_R_slash" = -30; +"@MMK_R_u" = -9; +"@MMK_R_z" = 0; +bracketright.case = -10; +idotless = -10; +igrave = 6; +jcircumflex = 15; +parenright.case = -10; +slashlongcomb = -30; +space = -18; +}; +"@MMK_L_Y" = { +"@MMK_R_A" = -65; +"@MMK_R_AE" = -69; +"@MMK_R_J" = -20; +"@MMK_R_O" = -26; +"@MMK_R_S" = -23; +"@MMK_R_ae" = -92; +"@MMK_R_colon" = -46; +"@MMK_R_d" = -81; +"@MMK_R_f" = -35; +"@MMK_R_g" = -81; +"@MMK_R_guilsinglleft" = -61; +"@MMK_R_guilsinglleft.cap" = -52; +"@MMK_R_guilsinglright" = -23; +"@MMK_R_guilsinglright.cap" = -19; +"@MMK_R_h" = -16; +"@MMK_R_hyphen" = -75; +"@MMK_R_hyphen.cap" = -64; +"@MMK_R_i" = -15; +"@MMK_R_l" = -17; +"@MMK_R_n" = -65; +"@MMK_R_o" = -81; +"@MMK_R_period" = -87; +"@MMK_R_quoteleft" = 0; +"@MMK_R_s" = -73; +"@MMK_R_slash" = -82; +"@MMK_R_t" = -29; +"@MMK_R_u" = -62; +"@MMK_R_w" = -49; +"@MMK_R_y" = -51; +"@MMK_R_z" = -55; +bracketright.case = -30; +copyright = -32; +eight = -22; +five = -18; +four = -66; +hbar = -9; +iacute = -26; +ibreve = -8; +icircumflex = -8; +idieresis = 1; +idotless = -65; +igrave = 14; +imacron = 2; +itilde = -8; +j = -12; +longs = -33; +one = -19; +parenright.case = -29; +rcaron = -58; +registered = -32; +slashlongcomb = -82; +space = -30; +v = -51; +x = -48; +zero = -22; +}; +"@MMK_L_Z" = { +"@MMK_R_O" = -6; +"@MMK_R_ae" = -6; +"@MMK_R_d" = -27; +"@MMK_R_f" = -8; +"@MMK_R_g" = -26; +"@MMK_R_guilsinglleft" = -40; +"@MMK_R_guilsinglleft.cap" = -34; +"@MMK_R_hyphen" = -59; +"@MMK_R_hyphen.cap" = -52; +"@MMK_R_n" = -6; +"@MMK_R_o" = -26; +"@MMK_R_s" = -6; +"@MMK_R_t" = -5; +"@MMK_R_u" = -23; +"@MMK_R_w" = -19; +"@MMK_R_y" = -24; +copyright = -14; +four = -22; +jcircumflex = 10; +longs = -7; +registered = -14; +v = -24; +}; +"@MMK_L_afii10020" = { +"@MMK_R_afii10029" = -25; +"@MMK_R_afii10032" = -7; +"@MMK_R_afii10074" = -101; +"@MMK_R_afii10077" = -122; +"@MMK_R_afii10080" = -114; +"@MMK_R_afii10085" = -70; +"@MMK_R_afii10103" = -10; +"@MMK_R_afii10108" = 0; +"@MMK_R_colon" = -52; +"@MMK_R_guilsinglleft" = -66; +"@MMK_R_guilsinglleft.cap" = -32; +"@MMK_R_guilsinglright" = -25; +"@MMK_R_hyphen" = -73; +"@MMK_R_hyphen.cap" = -65; +"@MMK_R_period" = -99; +"@MMK_R_slash" = -74; +bracketright.case = -15; +parenright.case = -15; +slashlongcomb = -74; +}; +"@MMK_L_afii10022" = { +"@MMK_R_afii10032" = -5; +"@MMK_R_afii10080" = -7; +"@MMK_R_afii10085" = -17; +"@MMK_R_hyphen" = -17; +"@MMK_R_hyphen.cap" = -16; +}; +"@MMK_L_afii10026" = { +"@MMK_R_hyphen" = -10; +"@MMK_R_hyphen.cap" = -9; +"@MMK_R_period" = -10; +bracketright = -12; +bracketright.case = -14; +parenright = -14; +parenright.case = -15; +}; +"@MMK_L_afii10028" = { +"@MMK_R_afii10032" = -37; +"@MMK_R_afii10080" = -36; +"@MMK_R_afii10085" = -50; +"@MMK_R_afii10108" = 0; +"@MMK_R_guilsinglleft" = -60; +"@MMK_R_guilsinglleft.cap" = -49; +"@MMK_R_hyphen" = -68; +"@MMK_R_hyphen.cap" = -69; +"@MMK_R_quoteleft" = 0; +}; +"@MMK_L_afii10032" = { +"@MMK_R_afii10029" = -8; +"@MMK_R_afii10037" = -8; +"@MMK_R_afii10077" = -11; +"@MMK_R_period" = -18; +"@MMK_R_quoteleft" = -8; +"@MMK_R_quoteright" = -10; +"@MMK_R_quotesingle" = -9; +"@MMK_R_slash" = -12; +backslash = -21; +bracketright = -25; +bracketright.case = -28; +parenright = -33; +parenright.case = -37; +slashlongcomb = -12; +}; +"@MMK_L_afii10037" = { +"@MMK_R_afii10029" = -29; +"@MMK_R_afii10032" = -11; +"@MMK_R_afii10074" = -43; +"@MMK_R_afii10077" = -80; +"@MMK_R_afii10080" = -57; +"@MMK_R_afii10085" = -16; +"@MMK_R_afii10108" = 0; +"@MMK_R_colon" = -30; +"@MMK_R_guilsinglleft" = -40; +"@MMK_R_guilsinglleft.cap" = -31; +"@MMK_R_guilsinglright" = 0; +"@MMK_R_hyphen" = -54; +"@MMK_R_hyphen.cap" = -43; +"@MMK_R_period" = -88; +"@MMK_R_slash" = -72; +bracketright.case = -18; +parenright.case = -18; +slashlongcomb = -72; +}; +"@MMK_L_afii10040" = { +"@MMK_R_afii10032" = 0; +"@MMK_R_afii10080" = -6; +"@MMK_R_afii10085" = -6; +"@MMK_R_afii10108" = 0; +"@MMK_R_guilsinglleft" = 0; +"@MMK_R_guilsinglleft.cap" = 0; +"@MMK_R_hyphen" = -14; +"@MMK_R_hyphen.cap" = -13; +"@MMK_R_quoteleft" = -8; +"@MMK_R_quoteright" = 0; +"@MMK_R_quotesingle" = 0; +}; +"@MMK_L_afii10046" = { +"@MMK_R_afii10037" = -10; +"@MMK_R_afii10085" = -29; +"@MMK_R_afii10108" = 0; +"@MMK_R_hyphen.cap" = -12; +"@MMK_R_quoteleft" = -90; +"@MMK_R_quoteright" = -92; +"@MMK_R_quotesingle" = -84; +asterisk = -66; +backslash = -57; +bracketright = -27; +bracketright.case = -29; +parenright = -38; +parenright.case = -37; +}; +"@MMK_L_afii10068" = { +"@MMK_R_afii10077" = -25; +"@MMK_R_afii10080" = -8; +"@MMK_R_hyphen" = -48; +"@MMK_R_period" = -87; +"@MMK_R_slash" = -56; +bracketright = -27; +parenright = -39; +slashlongcomb = -56; +}; +"@MMK_L_afii10070" = { +"@MMK_R_afii10077" = 0; +"@MMK_R_afii10085" = -21; +"@MMK_R_afii10108" = 0; +"@MMK_R_quoteleft" = -41; +"@MMK_R_quoteright" = -42; +"@MMK_R_quotesingle" = -36; +asterisk = -25; +backslash = -46; +bracketright = -31; +parenright = -42; +}; +"@MMK_L_afii10074" = { +"@MMK_R_afii10108" = 0; +"@MMK_R_quoteleft" = -13; +"@MMK_R_quoteright" = -13; +"@MMK_R_quotesingle" = -12; +asterisk = -12; +backslash = -33; +bracketright = -29; +parenright = -38; +}; +"@MMK_L_afii10076" = { +"@MMK_R_afii10080" = -26; +"@MMK_R_guilsinglleft" = -20; +"@MMK_R_hyphen" = -42; +"@MMK_R_quoteleft" = -9; +"@MMK_R_quoteright" = -9; +backslash = -28; +bracketright = -24; +parenright = -27; +}; +"@MMK_L_afii10080" = { +"@MMK_R_afii10077" = -7; +"@MMK_R_afii10085" = -21; +"@MMK_R_afii10108" = 0; +"@MMK_R_period" = -8; +"@MMK_R_quoteleft" = -44; +"@MMK_R_quoteright" = -45; +"@MMK_R_quotesingle" = -38; +"@MMK_R_slash" = -10; +asterisk = -27; +backslash = -49; +bracketright = -33; +parenright = -46; +slashlongcomb = -10; +}; +"@MMK_L_afii10082" = { +"@MMK_R_afii10077" = -8; +"@MMK_R_afii10085" = -22; +"@MMK_R_afii10108" = 0; +"@MMK_R_period" = -9; +"@MMK_R_quoteleft" = -45; +"@MMK_R_quoteright" = -46; +"@MMK_R_quotesingle" = -39; +"@MMK_R_slash" = -10; +asterisk = -28; +backslash = -50; +bracketright = -34; +parenright = -46; +slashlongcomb = -10; +}; +"@MMK_L_afii10085" = { +"@MMK_R_afii10077" = -25; +"@MMK_R_afii10080" = -17; +"@MMK_R_guilsinglleft" = -13; +"@MMK_R_hyphen" = -21; +"@MMK_R_period" = -59; +"@MMK_R_slash" = -42; +backslash = -24; +bracketright = -32; +parenright = -42; +slashlongcomb = -42; +}; +"@MMK_L_afii10088" = { +"@MMK_R_afii10080" = -4; +"@MMK_R_afii10085" = -6; +"@MMK_R_afii10108" = 0; +"@MMK_R_guilsinglleft" = 0; +"@MMK_R_hyphen" = -9; +"@MMK_R_quoteleft" = -18; +"@MMK_R_quoteright" = -19; +"@MMK_R_quotesingle" = -17; +asterisk = -17; +backslash = -40; +}; +"@MMK_L_afii10094" = { +"@MMK_R_afii10085" = -39; +"@MMK_R_afii10108" = 0; +"@MMK_R_quoteleft" = -92; +"@MMK_R_quoteright" = -93; +"@MMK_R_quotesingle" = -92; +asterisk = -72; +backslash = -64; +bracketright = -33; +parenright = -44; +}; +"@MMK_L_b" = { +"@MMK_R_A" = -6; +"@MMK_R_T" = -92; +"@MMK_R_U" = -6; +"@MMK_R_W" = -24; +"@MMK_R_Y" = -86; +"@MMK_R_Z" = -9; +"@MMK_R_f" = -10; +"@MMK_R_period" = -8; +"@MMK_R_quoteleft" = -54; +"@MMK_R_quoteright" = -55; +"@MMK_R_quotesingle" = -44; +"@MMK_R_slash" = -11; +"@MMK_R_t" = -7; +"@MMK_R_w" = -12; +"@MMK_R_y" = -22; +"@MMK_R_z" = -5; +V = -55; +X = -13; +asterisk = -30; +backslash = -50; +bracketright = -34; +jcircumflex = -9; +longs = -9; +ordfeminine = -24; +ordmasculine = -28; +parenright = -46; +slashlongcomb = -11; +trademark = -37; +v = -21; +x = -10; +}; +"@MMK_L_bethebrew" = { +"@MMK_R_guilsinglright" = -28; +"@MMK_R_hyphen" = -42; +"@MMK_R_kafhebrew" = -12; +"@MMK_R_slash" = -13; +"@MMK_R_tethebrew" = -10; +slashlongcomb = -13; +}; +"@MMK_L_c" = { +"@MMK_R_A" = 0; +"@MMK_R_T" = -108; +"@MMK_R_W" = -17; +"@MMK_R_Y" = -93; +"@MMK_R_quoteleft" = -38; +"@MMK_R_quoteright" = -39; +"@MMK_R_quotesingle" = -32; +"@MMK_R_w" = -10; +"@MMK_R_y" = -18; +V = -52; +X = -5; +asterisk = -22; +backslash = -43; +bracketright = -31; +ordfeminine = -16; +ordmasculine = -19; +parenright = -43; +trademark = -28; +v = -17; +}; +"@MMK_L_colon" = { +"@MMK_R_T" = -54; +"@MMK_R_W" = -9; +"@MMK_R_Y" = -51; +"@MMK_R_afii10085" = -8; +"@MMK_R_quoteright" = -29; +"@MMK_R_quotesingle" = -18; +"@MMK_R_y" = -10; +Tbar = -38; +V = -31; +v = -8; +}; +"@MMK_L_d" = { +"@MMK_R_T" = -32; +"@MMK_R_Y" = -5; +parenright = -10; +}; +"@MMK_L_dalethebrew" = { +"@MMK_R_bethebrew" = -41; +"@MMK_R_colon" = -43; +"@MMK_R_gimelhebrew" = -43; +"@MMK_R_guilsinglright" = -45; +"@MMK_R_hethebrew" = -33; +"@MMK_R_hyphen" = -77; +"@MMK_R_kafhebrew" = -22; +"@MMK_R_period" = -77; +"@MMK_R_tethebrew" = -16; +backslash = -62; +space = -28; +}; +"@MMK_L_dcaron" = { +"@MMK_R_colon" = 0; +"@MMK_R_d" = 0; +"@MMK_R_f" = 0; +"@MMK_R_g" = 0; +"@MMK_R_guilsinglright" = 0; +"@MMK_R_h" = 45; +"@MMK_R_hyphen" = 0; +"@MMK_R_i" = 39; +"@MMK_R_l" = 28; +"@MMK_R_o" = 0; +"@MMK_R_period" = 0; +"@MMK_R_quoteleft" = 0; +"@MMK_R_quoteright" = 8; +"@MMK_R_quotesingle" = 29; +"@MMK_R_s" = 0; +"@MMK_R_t" = 0; +"@MMK_R_w" = 0; +"@MMK_R_y" = 0; +asterisk = 37; +backslash = 33; +bar = 7; +bracketright = 34; +exclam = 18; +j = 31; +ordfeminine = 6; +ordmasculine = 9; +parenright = 37; +trademark = 72; +zcaron = 7; +}; +"@MMK_L_e" = { +"@MMK_R_A" = -5; +"@MMK_R_T" = -99; +"@MMK_R_W" = -22; +"@MMK_R_Y" = -105; +"@MMK_R_Z" = -6; +"@MMK_R_f" = -7; +"@MMK_R_quoteleft" = -41; +"@MMK_R_quoteright" = -42; +"@MMK_R_quotesingle" = -36; +"@MMK_R_t" = -5; +"@MMK_R_w" = -13; +"@MMK_R_y" = -22; +"@MMK_R_z" = 0; +V = -61; +X = -8; +asterisk = -25; +backslash = -46; +bracketright = -31; +jcircumflex = -6; +longs = -6; +ordfeminine = -19; +ordmasculine = -22; +parenright = -42; +trademark = -31; +v = -20; +x = -6; +}; +"@MMK_L_f" = { +"@MMK_R_A" = -28; +"@MMK_R_T" = 0; +"@MMK_R_W" = 0; +"@MMK_R_Y" = -6; +"@MMK_R_ae" = 0; +"@MMK_R_d" = -6; +"@MMK_R_g" = -6; +"@MMK_R_hyphen" = -36; +"@MMK_R_o" = -6; +"@MMK_R_period" = -38; +"@MMK_R_quotesingle" = 0; +"@MMK_R_slash" = -31; +bracketright = 11; +ibreve = 23; +idieresis = 28; +igrave = 50; +parenright = 12; +slashlongcomb = -31; +space = -23; +trademark = 13; +}; +"@MMK_L_gimelhebrew" = { +"@MMK_R_dalethebrew" = 0; +"@MMK_R_guilsinglright" = -15; +"@MMK_R_hyphen" = -22; +"@MMK_R_kafhebrew" = 0; +"@MMK_R_lamedhebrew" = 0; +"@MMK_R_quoteright" = -8; +"@MMK_R_slash" = -20; +"@MMK_R_tethebrew" = 0; +"@MMK_R_zayinhebrew" = 0; +slashlongcomb = -20; +}; +"@MMK_L_guilsinglleft" = { +"@MMK_R_T" = -49; +"@MMK_R_Y" = -27; +"@MMK_R_dalethebrew" = -13; +"@MMK_R_gimelhebrew" = -16; +"@MMK_R_zayinhebrew" = -13; +Tbar = -41; +V = -15; +}; +"@MMK_L_guilsinglleft.cap" = { +"@MMK_R_T" = -23; +"@MMK_R_Y" = -24; +V = -16; +}; +"@MMK_L_guilsinglright" = { +"@MMK_R_A" = -20; +"@MMK_R_AE" = -21; +"@MMK_R_T" = -68; +"@MMK_R_W" = -18; +"@MMK_R_Y" = -72; +"@MMK_R_Z" = -32; +"@MMK_R_afii10029" = -29; +"@MMK_R_afii10037" = -40; +"@MMK_R_afii10077" = -21; +"@MMK_R_afii10085" = -16; +"@MMK_R_f" = -13; +"@MMK_R_quoteright" = -54; +"@MMK_R_quotesingle" = -47; +"@MMK_R_y" = -17; +"@MMK_R_z" = -19; +Tbar = -48; +V = -41; +X = -40; +v = -16; +x = -20; +}; +"@MMK_L_guilsinglright.cap" = { +"@MMK_R_A" = -24; +"@MMK_R_AE" = -25; +"@MMK_R_T" = -67; +"@MMK_R_W" = -15; +"@MMK_R_Y" = -68; +"@MMK_R_Z" = -33; +"@MMK_R_afii10029" = -27; +"@MMK_R_afii10037" = -33; +"@MMK_R_quoteright" = -41; +"@MMK_R_quotesingle" = -35; +Tbar = -43; +V = -39; +X = -37; +}; +"@MMK_L_hyphen" = { +"@MMK_R_A" = -26; +"@MMK_R_AE" = -26; +"@MMK_R_I" = -11; +"@MMK_R_J" = -9; +"@MMK_R_S" = -16; +"@MMK_R_T" = -66; +"@MMK_R_U" = -10; +"@MMK_R_W" = -24; +"@MMK_R_Y" = -78; +"@MMK_R_Z" = -41; +"@MMK_R_ae" = -9; +"@MMK_R_afii10026" = -11; +"@MMK_R_afii10029" = -35; +"@MMK_R_afii10037" = -52; +"@MMK_R_afii10077" = -27; +"@MMK_R_afii10085" = -27; +"@MMK_R_afii10108" = 0; +"@MMK_R_bethebrew" = -11; +"@MMK_R_dalethebrew" = -26; +"@MMK_R_f" = -24; +"@MMK_R_gimelhebrew" = -18; +"@MMK_R_quoteright" = -93; +"@MMK_R_quotesingle" = -85; +"@MMK_R_s" = -10; +"@MMK_R_t" = -19; +"@MMK_R_tsadihebrew" = -8; +"@MMK_R_w" = -15; +"@MMK_R_y" = -28; +"@MMK_R_z" = -35; +"@MMK_R_zayinhebrew" = -26; +Tbar = -53; +V = -48; +X = -47; +five = -12; +j = -13; +jcircumflex = -21; +one = -52; +v = -25; +x = -35; +}; +"@MMK_L_hyphen.cap" = { +"@MMK_R_A" = -32; +"@MMK_R_AE" = -32; +"@MMK_R_I" = -10; +"@MMK_R_J" = -20; +"@MMK_R_S" = -23; +"@MMK_R_T" = -66; +"@MMK_R_U" = -9; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -69; +"@MMK_R_Z" = -51; +"@MMK_R_afii10026" = -10; +"@MMK_R_afii10029" = -34; +"@MMK_R_afii10037" = -46; +"@MMK_R_quoteright" = -69; +"@MMK_R_quotesingle" = -31; +Tbar = -48; +V = -41; +X = -54; +eight = -12; +five = -11; +four = -11; +one = -35; +}; +"@MMK_L_i" = { +"@MMK_R_T" = 0; +"@MMK_R_W" = -5; +V = -9; +}; +"@MMK_L_k" = { +"@MMK_R_J" = -16; +"@MMK_R_O" = -11; +"@MMK_R_T" = -88; +"@MMK_R_U" = 0; +"@MMK_R_W" = 0; +"@MMK_R_Y" = -55; +"@MMK_R_ae" = -11; +"@MMK_R_d" = -26; +"@MMK_R_g" = -26; +"@MMK_R_guilsinglleft" = -18; +"@MMK_R_hyphen" = -42; +"@MMK_R_o" = -26; +"@MMK_R_quoteleft" = -14; +"@MMK_R_quoteright" = -15; +"@MMK_R_quotesingle" = -9; +"@MMK_R_s" = -5; +"@MMK_R_u" = 0; +V = -23; +asterisk = -8; +backslash = -27; +bracketright = -24; +parenright = -27; +space = -14; +trademark = -16; +}; +"@MMK_L_kafhebrew" = { +"@MMK_R_guilsinglright" = -28; +"@MMK_R_hyphen" = -44; +"@MMK_R_kafhebrew" = -12; +"@MMK_R_slash" = -10; +"@MMK_R_tethebrew" = -11; +slashlongcomb = -10; +}; +"@MMK_L_l" = { +"@MMK_R_T" = -32; +"@MMK_R_Y" = -5; +parenright = -10; +periodcentered = -41; +}; +"@MMK_L_lamedhebrew" = { +"@MMK_R_bethebrew" = -37; +"@MMK_R_colon" = -36; +"@MMK_R_gimelhebrew" = -39; +"@MMK_R_guilsinglright" = -44; +"@MMK_R_hethebrew" = -28; +"@MMK_R_hyphen" = -82; +"@MMK_R_kafhebrew" = -20; +"@MMK_R_period" = -52; +"@MMK_R_quoteright" = 0; +"@MMK_R_tethebrew" = -15; +backslash = -45; +space = -26; +}; +"@MMK_L_memhebrew" = { +"@MMK_R_guilsinglright" = -20; +"@MMK_R_hyphen" = -27; +"@MMK_R_kafhebrew" = -5; +"@MMK_R_slash" = -13; +"@MMK_R_tethebrew" = 0; +slashlongcomb = -13; +}; +"@MMK_L_n" = { +"@MMK_R_T" = -99; +"@MMK_R_U" = -9; +"@MMK_R_W" = -22; +"@MMK_R_Y" = -89; +"@MMK_R_f" = -11; +"@MMK_R_quoteleft" = -41; +"@MMK_R_quoteright" = -42; +"@MMK_R_quotesingle" = -36; +"@MMK_R_t" = -9; +"@MMK_R_w" = -10; +"@MMK_R_y" = -22; +V = -50; +asterisk = -26; +backslash = -49; +bracketright = -32; +jcircumflex = -9; +longs = -10; +ordfeminine = -20; +ordmasculine = -23; +parenright = -40; +trademark = -32; +v = -19; +}; +"@MMK_L_nunhebrew" = { +"@MMK_R_guilsinglright" = -27; +"@MMK_R_hyphen" = -42; +"@MMK_R_kafhebrew" = -8; +"@MMK_R_slash" = -10; +"@MMK_R_tethebrew" = -6; +slashlongcomb = -10; +}; +"@MMK_L_o" = { +"@MMK_R_A" = -6; +"@MMK_R_T" = -92; +"@MMK_R_U" = -5; +"@MMK_R_W" = -24; +"@MMK_R_Y" = -86; +"@MMK_R_Z" = -10; +"@MMK_R_f" = -10; +"@MMK_R_period" = -8; +"@MMK_R_quoteleft" = -44; +"@MMK_R_quoteright" = -45; +"@MMK_R_quotesingle" = -38; +"@MMK_R_slash" = -10; +"@MMK_R_t" = -7; +"@MMK_R_w" = -12; +"@MMK_R_y" = -22; +"@MMK_R_z" = -5; +V = -56; +X = -14; +asterisk = -27; +backslash = -49; +bracketright = -33; +jcircumflex = -8; +longs = -9; +ordfeminine = -21; +ordmasculine = -24; +parenright = -46; +slashlongcomb = -10; +trademark = -33; +v = -20; +x = -10; +}; +"@MMK_L_pehebrew" = { +"@MMK_R_hyphen" = -17; +"@MMK_R_kafhebrew" = 0; +"@MMK_R_slash" = -16; +slashlongcomb = -16; +}; +"@MMK_L_period" = { +"@MMK_R_I" = -8; +"@MMK_R_J" = -9; +"@MMK_R_O" = -24; +"@MMK_R_S" = -11; +"@MMK_R_T" = -65; +"@MMK_R_U" = -23; +"@MMK_R_W" = -40; +"@MMK_R_Y" = -85; +"@MMK_R_afii10026" = -9; +"@MMK_R_afii10032" = -24; +"@MMK_R_afii10080" = -15; +"@MMK_R_afii10085" = -59; +"@MMK_R_afii10108" = 0; +"@MMK_R_d" = -15; +"@MMK_R_dalethebrew" = -27; +"@MMK_R_f" = -24; +"@MMK_R_g" = -15; +"@MMK_R_hyphen" = -74; +"@MMK_R_hyphen.cap" = -94; +"@MMK_R_kafhebrew" = -11; +"@MMK_R_lamedhebrew" = -10; +"@MMK_R_o" = -15; +"@MMK_R_quoteleft" = -112; +"@MMK_R_quoteright" = -108; +"@MMK_R_quotesingle" = -104; +"@MMK_R_t" = -25; +"@MMK_R_tethebrew" = -9; +"@MMK_R_u" = -14; +"@MMK_R_w" = -40; +"@MMK_R_y" = -60; +"@MMK_R_yodhebrew" = -68; +"@MMK_R_zayinhebrew" = -27; +V = -76; +eight = -16; +five = -10; +four = -27; +j = -12; +jcircumflex = -20; +one = -67; +v = -57; +zero = -21; +}; +"@MMK_L_quoteleft" = { +"@MMK_R_A" = -74; +"@MMK_R_AE" = -72; +"@MMK_R_O" = -8; +"@MMK_R_ae" = -35; +"@MMK_R_afii10029" = -32; +"@MMK_R_afii10032" = -8; +"@MMK_R_afii10074" = -11; +"@MMK_R_afii10077" = -34; +"@MMK_R_afii10080" = -37; +"@MMK_R_afii10108" = 0; +"@MMK_R_bethebrew" = -41; +"@MMK_R_d" = -48; +"@MMK_R_g" = -37; +"@MMK_R_gimelhebrew" = -45; +"@MMK_R_hethebrew" = -32; +"@MMK_R_kafhebrew" = -30; +"@MMK_R_n" = -11; +"@MMK_R_o" = -37; +"@MMK_R_period" = -112; +"@MMK_R_s" = -26; +"@MMK_R_tethebrew" = -26; +"@MMK_R_u" = -10; +igrave = 8; +jcircumflex = 13; +}; +"@MMK_L_quoteright" = { +"@MMK_R_A" = -75; +"@MMK_R_AE" = -73; +"@MMK_R_O" = -10; +"@MMK_R_T" = 0; +"@MMK_R_Y" = 0; +"@MMK_R_ae" = -40; +"@MMK_R_afii10029" = -32; +"@MMK_R_afii10032" = -10; +"@MMK_R_afii10037" = 0; +"@MMK_R_afii10074" = -14; +"@MMK_R_afii10077" = -38; +"@MMK_R_afii10080" = -42; +"@MMK_R_afii10108" = 0; +"@MMK_R_bethebrew" = -42; +"@MMK_R_colon" = -22; +"@MMK_R_d" = -53; +"@MMK_R_g" = -42; +"@MMK_R_gimelhebrew" = -47; +"@MMK_R_guilsinglleft" = -52; +"@MMK_R_guilsinglleft.cap" = -26; +"@MMK_R_hethebrew" = -33; +"@MMK_R_hyphen" = -75; +"@MMK_R_hyphen.cap" = -53; +"@MMK_R_kafhebrew" = -31; +"@MMK_R_lamedhebrew" = -8; +"@MMK_R_n" = -14; +"@MMK_R_o" = -42; +"@MMK_R_period" = -108; +"@MMK_R_s" = -30; +"@MMK_R_slash" = -73; +"@MMK_R_tethebrew" = -28; +"@MMK_R_u" = -13; +"@MMK_R_z" = -9; +copyright = -17; +igrave = 19; +jcircumflex = 7; +registered = -17; +slashlongcomb = -73; +}; +"@MMK_L_quotesingle" = { +"@MMK_R_A" = -68; +"@MMK_R_AE" = -66; +"@MMK_R_ae" = -26; +"@MMK_R_afii10029" = -31; +"@MMK_R_afii10077" = -29; +"@MMK_R_afii10080" = -27; +"@MMK_R_bethebrew" = -36; +"@MMK_R_d" = -33; +"@MMK_R_g" = -27; +"@MMK_R_gimelhebrew" = -42; +"@MMK_R_guilsinglleft" = -35; +"@MMK_R_guilsinglleft.cap" = -16; +"@MMK_R_hethebrew" = -27; +"@MMK_R_hyphen" = -63; +"@MMK_R_kafhebrew" = -26; +"@MMK_R_o" = -27; +"@MMK_R_period" = -104; +"@MMK_R_s" = -17; +"@MMK_R_slash" = -68; +"@MMK_R_tethebrew" = -23; +four = -49; +jcircumflex = 13; +slashlongcomb = -68; +}; +"@MMK_L_r" = { +"@MMK_R_A" = -49; +"@MMK_R_I" = -5; +"@MMK_R_J" = -45; +"@MMK_R_T" = -93; +"@MMK_R_W" = -11; +"@MMK_R_Y" = -60; +"@MMK_R_Z" = -53; +"@MMK_R_ae" = -6; +"@MMK_R_d" = -9; +"@MMK_R_g" = -10; +"@MMK_R_hyphen" = -45; +"@MMK_R_o" = -9; +"@MMK_R_period" = -54; +"@MMK_R_slash" = -43; +V = -27; +X = -32; +bracketright = -28; +parenright = -38; +slashlongcomb = -43; +space = -23; +}; +"@MMK_L_s" = { +"@MMK_R_A" = 0; +"@MMK_R_T" = -96; +"@MMK_R_U" = -6; +"@MMK_R_W" = -23; +"@MMK_R_Y" = -94; +"@MMK_R_f" = -4; +"@MMK_R_hyphen" = -14; +"@MMK_R_quoteleft" = -35; +"@MMK_R_quoteright" = -36; +"@MMK_R_quotesingle" = -30; +"@MMK_R_t" = 0; +"@MMK_R_w" = -12; +"@MMK_R_y" = -20; +V = -57; +asterisk = -21; +backslash = -44; +bracketright = -31; +ordfeminine = -15; +ordmasculine = -18; +parenright = -41; +trademark = -28; +v = -19; +}; +"@MMK_L_shinhebrew" = { +"@MMK_R_bethebrew" = -4; +"@MMK_R_gimelhebrew" = 0; +"@MMK_R_period" = -14; +"@MMK_R_quoteright" = -8; +"@MMK_R_slash" = -20; +backslash = -16; +slashlongcomb = -20; +}; +"@MMK_L_slash" = { +"@MMK_R_A" = -61; +"@MMK_R_AE" = -62; +"@MMK_R_O" = -13; +"@MMK_R_afii10029" = -26; +"@MMK_R_afii10032" = -13; +"@MMK_R_afii10074" = -30; +"@MMK_R_afii10077" = -54; +"@MMK_R_afii10080" = -41; +"@MMK_R_afii10085" = -25; +"@MMK_R_d" = -42; +"@MMK_R_dalethebrew" = -22; +"@MMK_R_g" = -41; +"@MMK_R_kafhebrew" = -11; +"@MMK_R_lamedhebrew" = -10; +"@MMK_R_n" = -30; +"@MMK_R_o" = -41; +"@MMK_R_s" = -35; +"@MMK_R_u" = -28; +"@MMK_R_w" = -22; +"@MMK_R_y" = -24; +"@MMK_R_yodhebrew" = -31; +"@MMK_R_z" = -24; +"@MMK_R_zayinhebrew" = -22; +Icircumflex = 38; +Idieresis = 27; +Imacron = 14; +Itilde = 22; +eight = -12; +four = -49; +igrave = 22; +slash = -189; +v = -24; +x = -22; +zero = -11; +}; +"@MMK_L_t" = { +"@MMK_R_T" = -68; +"@MMK_R_W" = 0; +"@MMK_R_Y" = -44; +"@MMK_R_hyphen" = -9; +V = -18; +backslash = -16; +bracketright = -16; +parenright = -20; +}; +"@MMK_L_tavhebrew" = { +"@MMK_R_guilsinglright" = -15; +"@MMK_R_hyphen" = -22; +"@MMK_R_kafhebrew" = -5; +"@MMK_R_slash" = -11; +"@MMK_R_tethebrew" = -4; +slashlongcomb = -11; +}; +"@MMK_L_tethebrew" = { +"@MMK_R_bethebrew" = -7; +"@MMK_R_gimelhebrew" = -6; +"@MMK_R_period" = -18; +"@MMK_R_quoteright" = -8; +"@MMK_R_slash" = -19; +backslash = -20; +slashlongcomb = -19; +}; +"@MMK_L_tsadihebrew" = { +"@MMK_R_guilsinglright" = -23; +"@MMK_R_hyphen" = -38; +"@MMK_R_kafhebrew" = -7; +"@MMK_R_tethebrew" = -5; +}; +"@MMK_L_u" = { +"@MMK_R_T" = -94; +"@MMK_R_U" = -5; +"@MMK_R_W" = -17; +"@MMK_R_Y" = -76; +"@MMK_R_Z" = -6; +"@MMK_R_quoteleft" = -13; +"@MMK_R_quoteright" = -13; +"@MMK_R_quotesingle" = -12; +V = -47; +asterisk = -12; +backslash = -33; +bracketright = -29; +parenright = -37; +trademark = -17; +}; +"@MMK_L_vavhebrew" = { +"@MMK_R_quoteright" = -9; +"@MMK_R_slash" = -21; +slashlongcomb = -21; +}; +"@MMK_L_w" = { +"@MMK_R_A" = -18; +"@MMK_R_J" = -14; +"@MMK_R_T" = -87; +"@MMK_R_W" = -7; +"@MMK_R_Y" = -59; +"@MMK_R_Z" = -32; +"@MMK_R_ae" = -13; +"@MMK_R_d" = -12; +"@MMK_R_g" = -12; +"@MMK_R_hyphen" = -12; +"@MMK_R_o" = -12; +"@MMK_R_period" = -39; +"@MMK_R_s" = -11; +"@MMK_R_slash" = -30; +"@MMK_R_z" = 0; +V = -23; +X = -27; +backslash = -24; +bracketright = -30; +parenright = -42; +slashlongcomb = -30; +space = -21; +}; +"@MMK_L_y" = { +"@MMK_R_A" = -31; +"@MMK_R_J" = -25; +"@MMK_R_T" = -100; +"@MMK_R_W" = -8; +"@MMK_R_Y" = -58; +"@MMK_R_Z" = -46; +"@MMK_R_ae" = -18; +"@MMK_R_d" = -17; +"@MMK_R_g" = -17; +"@MMK_R_guilsinglleft" = -14; +"@MMK_R_hyphen" = -22; +"@MMK_R_o" = -17; +"@MMK_R_period" = -59; +"@MMK_R_s" = -16; +"@MMK_R_slash" = -42; +V = -22; +X = -38; +backslash = -24; +bracketright = -32; +parenright = -42; +slashlongcomb = -42; +space = -26; +}; +"@MMK_L_yodhebrew" = { +"@MMK_R_bethebrew" = 0; +"@MMK_R_gimelhebrew" = -13; +"@MMK_R_period" = -84; +"@MMK_R_slash" = -16; +backslash = -34; +slashlongcomb = -16; +}; +"@MMK_L_z" = { +"@MMK_R_J" = -10; +"@MMK_R_T" = -104; +"@MMK_R_U" = -8; +"@MMK_R_W" = -13; +"@MMK_R_Y" = -68; +"@MMK_R_d" = -7; +"@MMK_R_g" = -7; +"@MMK_R_guilsinglleft" = -13; +"@MMK_R_hyphen" = -27; +"@MMK_R_o" = -7; +"@MMK_R_quoteleft" = -8; +"@MMK_R_quoteright" = -8; +"@MMK_R_quotesingle" = 0; +"@MMK_R_y" = 0; +V = -33; +backslash = -27; +bracketright = -25; +parenright = -29; +trademark = -14; +}; +"@MMK_L_zayinhebrew" = { +"@MMK_R_bethebrew" = -41; +"@MMK_R_colon" = -39; +"@MMK_R_gimelhebrew" = -39; +"@MMK_R_guilsinglright" = -42; +"@MMK_R_hethebrew" = -31; +"@MMK_R_hyphen" = -65; +"@MMK_R_kafhebrew" = -21; +"@MMK_R_period" = -65; +"@MMK_R_tethebrew" = -15; +backslash = -57; +space = -28; +}; +B = { +"@MMK_R_T" = -20; +"@MMK_R_W" = -5; +"@MMK_R_Y" = -27; +"@MMK_R_hyphen" = -10; +"@MMK_R_hyphen.cap" = -13; +"@MMK_R_period" = -9; +V = -15; +X = -12; +backslash = -18; +bracketright = -24; +bracketright.case = -28; +parenright = -31; +parenright.case = -35; +trademark = -8; +}; +F = { +"@MMK_R_A" = -34; +"@MMK_R_AE" = -40; +"@MMK_R_ae" = -25; +"@MMK_R_colon" = -10; +"@MMK_R_d" = -12; +"@MMK_R_f" = -14; +"@MMK_R_g" = -13; +"@MMK_R_hyphen" = -13; +"@MMK_R_hyphen.cap" = -12; +"@MMK_R_i" = -5; +"@MMK_R_n" = -18; +"@MMK_R_o" = -12; +"@MMK_R_period" = -57; +"@MMK_R_s" = -18; +"@MMK_R_slash" = -42; +"@MMK_R_t" = -9; +"@MMK_R_u" = -15; +"@MMK_R_w" = -17; +"@MMK_R_y" = -25; +"@MMK_R_z" = -35; +V = -8; +bracketright.case = -19; +idotless = -18; +igrave = 1; +j = -7; +longs = -13; +parenright.case = -21; +slashlongcomb = -42; +space = -16; +v = -23; +x = -34; +}; +IJ = { +"@MMK_R_A" = -5; +"@MMK_R_hyphen" = -9; +"@MMK_R_hyphen.cap" = -8; +"@MMK_R_n" = -5; +"@MMK_R_period" = -17; +"@MMK_R_slash" = -14; +bracketright = -12; +bracketright.case = -20; +parenright = -14; +parenright.case = -24; +slashlongcomb = -14; +}; +Ibreve = { +bracketright.case = -7; +parenright.case = -5; +}; +Icircumflex = { +backslash = 27; +bracketright = 25; +bracketright.case = 9; +parenright = 28; +parenright.case = 11; +}; +Idieresis = { +backslash = 32; +bracketright = 26; +bracketright.case = 17; +parenright = 29; +parenright.case = 19; +}; +Imacron = { +backslash = 21; +bracketright = 15; +bracketright.case = 6; +parenright = 18; +parenright.case = 8; +}; +Itilde = { +backslash = 10; +bracketright = -3; +bracketright.case = 4; +parenright = 1; +parenright.case = 6; +}; +P = { +"@MMK_R_A" = -32; +"@MMK_R_AE" = -38; +"@MMK_R_J" = -7; +"@MMK_R_Y" = -22; +"@MMK_R_Z" = -9; +"@MMK_R_ae" = -6; +"@MMK_R_hyphen" = -15; +"@MMK_R_period" = -63; +"@MMK_R_slash" = -42; +V = -23; +X = -21; +bracketright = -23; +bracketright.case = -30; +jcircumflex = 6; +parenright = -30; +parenright.case = -40; +slashlongcomb = -42; +space = -23; +}; +Tbar = { +"@MMK_R_A" = -69; +"@MMK_R_colon" = -37; +"@MMK_R_d" = -65; +"@MMK_R_f" = -43; +"@MMK_R_g" = -65; +"@MMK_R_guilsinglleft" = -43; +"@MMK_R_guilsinglleft.cap" = -31; +"@MMK_R_h" = -12; +"@MMK_R_hyphen" = -49; +"@MMK_R_hyphen.cap" = -46; +"@MMK_R_i" = -12; +"@MMK_R_l" = -12; +"@MMK_R_n" = -62; +"@MMK_R_o" = -65; +"@MMK_R_s" = -70; +"@MMK_R_t" = -29; +"@MMK_R_u" = -60; +"@MMK_R_w" = -64; +"@MMK_R_y" = -67; +a = -41; +copyright = -14; +j = -12; +longs = -41; +q = -43; +registered = -14; +v = -65; +x = -73; +}; +Thorn = { +"@MMK_R_A" = -16; +"@MMK_R_T" = -87; +"@MMK_R_W" = -8; +"@MMK_R_Y" = -65; +"@MMK_R_Z" = -16; +"@MMK_R_period" = -35; +"@MMK_R_quoteleft" = -33; +"@MMK_R_quoteright" = -36; +"@MMK_R_quotesingle" = -27; +"@MMK_R_slash" = -20; +"@MMK_R_y" = -5; +"@MMK_R_z" = -5; +V = -31; +X = -29; +asterisk = -16; +backslash = -29; +bracketright = -27; +bracketright.case = -30; +ordfeminine = -8; +ordmasculine = -12; +parenright = -38; +parenright.case = -42; +slashlongcomb = -20; +trademark = -23; +v = -6; +x = -7; +}; +V = { +"@MMK_R_A" = -44; +"@MMK_R_AE" = -47; +"@MMK_R_J" = -22; +"@MMK_R_O" = -24; +"@MMK_R_S" = -24; +"@MMK_R_ae" = -53; +"@MMK_R_colon" = -27; +"@MMK_R_d" = -50; +"@MMK_R_f" = -14; +"@MMK_R_g" = -50; +"@MMK_R_guilsinglleft" = -35; +"@MMK_R_guilsinglleft.cap" = -31; +"@MMK_R_guilsinglright" = -12; +"@MMK_R_guilsinglright.cap" = -11; +"@MMK_R_hyphen" = -45; +"@MMK_R_hyphen.cap" = -38; +"@MMK_R_n" = -36; +"@MMK_R_o" = -50; +"@MMK_R_period" = -75; +"@MMK_R_s" = -41; +"@MMK_R_slash" = -67; +"@MMK_R_t" = -11; +"@MMK_R_u" = -32; +"@MMK_R_w" = -17; +"@MMK_R_y" = -18; +"@MMK_R_z" = -25; +bracketright.case = -29; +copyright = -20; +eight = -17; +five = -13; +four = -41; +idotless = -36; +igrave = 8; +jcircumflex = 13; +longs = -13; +one = -12; +parenright.case = -30; +rcaron = -27; +registered = -20; +slashlongcomb = -67; +space = -28; +v = -19; +x = -21; +zero = -17; +}; +X = { +"@MMK_R_J" = -6; +"@MMK_R_O" = -17; +"@MMK_R_S" = -7; +"@MMK_R_ae" = -9; +"@MMK_R_d" = -32; +"@MMK_R_f" = -7; +"@MMK_R_g" = -31; +"@MMK_R_guilsinglleft" = -46; +"@MMK_R_guilsinglleft.cap" = -39; +"@MMK_R_hyphen" = -55; +"@MMK_R_hyphen.cap" = -54; +"@MMK_R_n" = -6; +"@MMK_R_o" = -31; +"@MMK_R_s" = -9; +"@MMK_R_t" = -5; +"@MMK_R_u" = -25; +"@MMK_R_w" = -25; +"@MMK_R_y" = -31; +copyright = -16; +four = -20; +idotless = -6; +igrave = 9; +longs = -7; +registered = -16; +v = -31; +}; +asterisk = { +"@MMK_R_A" = -60; +"@MMK_R_AE" = -59; +"@MMK_R_J" = -11; +"@MMK_R_ae" = -21; +"@MMK_R_afii10029" = -31; +"@MMK_R_afii10074" = -8; +"@MMK_R_afii10077" = -31; +"@MMK_R_afii10080" = -18; +"@MMK_R_bethebrew" = -29; +"@MMK_R_d" = -21; +"@MMK_R_g" = -19; +"@MMK_R_gimelhebrew" = -36; +"@MMK_R_hethebrew" = -21; +"@MMK_R_kafhebrew" = -19; +"@MMK_R_n" = -8; +"@MMK_R_o" = -18; +"@MMK_R_s" = -14; +"@MMK_R_tethebrew" = -18; +icircumflex = 22; +j = -8; +jcircumflex = 34; +}; +backslash = { +"@MMK_R_O" = -21; +"@MMK_R_T" = -67; +"@MMK_R_U" = -22; +"@MMK_R_W" = -39; +"@MMK_R_Y" = -88; +"@MMK_R_afii10032" = -21; +"@MMK_R_afii10080" = -17; +"@MMK_R_afii10085" = -34; +"@MMK_R_bethebrew" = -53; +"@MMK_R_d" = -19; +"@MMK_R_f" = -25; +"@MMK_R_gimelhebrew" = -59; +"@MMK_R_hethebrew" = -44; +"@MMK_R_kafhebrew" = -41; +"@MMK_R_lamedhebrew" = -22; +"@MMK_R_o" = -17; +"@MMK_R_quoteright" = -71; +"@MMK_R_quotesingle" = -69; +"@MMK_R_t" = -29; +"@MMK_R_tethebrew" = -39; +"@MMK_R_tsadihebrew" = -20; +"@MMK_R_u" = -17; +"@MMK_R_vavhebrew" = -23; +"@MMK_R_w" = -36; +"@MMK_R_y" = -37; +"@MMK_R_yodhebrew" = -18; +V = -76; +backslash = -200; +eight = -12; +four = -11; +one = -57; +v = -49; +zero = -20; +}; +bar = { +jcircumflex = 6; +}; +bracketleft = { +"@MMK_R_A" = -30; +"@MMK_R_AE" = -30; +"@MMK_R_O" = -22; +"@MMK_R_S" = -17; +"@MMK_R_U" = -10; +"@MMK_R_ae" = -31; +"@MMK_R_afii10029" = -16; +"@MMK_R_afii10032" = -22; +"@MMK_R_afii10074" = -29; +"@MMK_R_afii10077" = -28; +"@MMK_R_afii10080" = -34; +"@MMK_R_d" = -35; +"@MMK_R_f" = -20; +"@MMK_R_n" = -29; +"@MMK_R_o" = -34; +"@MMK_R_s" = -31; +"@MMK_R_t" = -15; +"@MMK_R_u" = -31; +"@MMK_R_w" = -31; +"@MMK_R_y" = -25; +"@MMK_R_z" = -26; +Icircumflex = 38; +Idieresis = 26; +Imacron = 13; +Itilde = 21; +eight = -20; +four = -28; +ibreve = 7; +igrave = 33; +j = 27; +one = -22; +v = -36; +x = -26; +zero = -21; +}; +bracketleft.case = { +"@MMK_R_A" = -27; +"@MMK_R_AE" = -28; +"@MMK_R_I" = -13; +"@MMK_R_J" = -11; +"@MMK_R_O" = -29; +"@MMK_R_S" = -24; +"@MMK_R_T" = -13; +"@MMK_R_U" = -18; +"@MMK_R_W" = -17; +"@MMK_R_Y" = -30; +"@MMK_R_afii10026" = -13; +"@MMK_R_afii10032" = -29; +Icircumflex = 25; +Idieresis = 18; +Imacron = 7; +Itilde = 12; +V = -27; +eight = -28; +five = -21; +four = -33; +one = -31; +zero = -28; +}; +copyright = { +"@MMK_R_A" = -13; +"@MMK_R_AE" = -13; +"@MMK_R_T" = -37; +"@MMK_R_Y" = -45; +"@MMK_R_Z" = -14; +"@MMK_R_quoteright" = -17; +"@MMK_R_quotesingle" = -15; +Tbar = -25; +V = -28; +X = -17; +}; +degree = { +four = -40; +}; +divide = { +one = -38; +}; +divide.case = { +one = -27; +}; +eight = { +"@MMK_R_T" = -15; +"@MMK_R_Y" = -30; +"@MMK_R_hyphen" = -10; +"@MMK_R_hyphen.cap" = -17; +V = -22; +backslash = -21; +bracketright = -24; +bracketright.case = -27; +divide.case = -11; +minus = -10; +minus.case = -17; +parenright = -31; +parenright.case = -33; +}; +five = { +"@MMK_R_Y" = -11; +"@MMK_R_hyphen.cap" = -11; +V = -10; +bracketright.case = -20; +minus.case = -11; +one = -14; +parenright.case = -23; +}; +four = { +"@MMK_R_T" = -20; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -38; +"@MMK_R_hyphen.cap" = -21; +"@MMK_R_period" = -11; +"@MMK_R_quotesingle" = -21; +V = -31; +backslash = -26; +bracketright = -21; +bracketright.case = -25; +divide.case = -17; +minus.case = -21; +one = -15; +parenright = -27; +parenright.case = -31; +}; +iacute = { +"@MMK_R_quotesingle" = 13; +backslash = 24; +bracketright = 33; +parenright = 35; +trademark = 37; +}; +ibreve = { +trademark = 12; +}; +icircumflex = { +asterisk = 21; +ordmasculine = 9; +}; +idieresis = { +trademark = 23; +}; +imacron = { +asterisk = 6; +trademark = 25; +}; +itilde = { +trademark = 26; +}; +longs = { +"@MMK_R_i" = 38; +iacute = 1; +ibreve = 109; +icircumflex = 63; +idieresis = 114; +idotless = 1; +igrave = 136; +imacron = 90; +itilde = 58; +j = 30; +rcaron = 52; +}; +minus = { +five = -10; +one = -51; +}; +minus.case = { +eight = -12; +five = -11; +four = -11; +one = -35; +}; +one = { +bracketright.case = -11; +parenright.case = -13; +}; +parenleft = { +"@MMK_R_A" = -35; +"@MMK_R_AE" = -35; +"@MMK_R_I" = -10; +"@MMK_R_O" = -28; +"@MMK_R_S" = -21; +"@MMK_R_U" = -11; +"@MMK_R_ae" = -42; +"@MMK_R_afii10026" = -10; +"@MMK_R_afii10029" = -18; +"@MMK_R_afii10032" = -28; +"@MMK_R_afii10074" = -39; +"@MMK_R_afii10077" = -33; +"@MMK_R_afii10080" = -47; +"@MMK_R_d" = -47; +"@MMK_R_f" = -25; +"@MMK_R_n" = -39; +"@MMK_R_o" = -47; +"@MMK_R_s" = -42; +"@MMK_R_t" = -20; +"@MMK_R_u" = -43; +"@MMK_R_w" = -42; +"@MMK_R_y" = -29; +"@MMK_R_z" = -33; +Icircumflex = 42; +Idieresis = 30; +Imacron = 17; +Itilde = 25; +eight = -25; +five = -10; +four = -42; +ibreve = 10; +igrave = 36; +j = 29; +one = -25; +v = -47; +x = -33; +zero = -26; +}; +parenleft.case = { +"@MMK_R_A" = -27; +"@MMK_R_AE" = -28; +"@MMK_R_I" = -15; +"@MMK_R_J" = -14; +"@MMK_R_O" = -37; +"@MMK_R_S" = -30; +"@MMK_R_T" = -11; +"@MMK_R_U" = -22; +"@MMK_R_W" = -18; +"@MMK_R_Y" = -28; +"@MMK_R_afii10026" = -15; +"@MMK_R_afii10032" = -37; +Icircumflex = 26; +Idieresis = 20; +Imacron = 9; +Itilde = 14; +V = -26; +eight = -35; +five = -25; +four = -46; +one = -39; +zero = -36; +}; +periodcentered = { +"@MMK_R_l" = -41; +one = -35; +}; +plus = { +one = -38; +}; +plus.case = { +one = -21; +}; +racute = { +bracketright = -11; +parenright = -9; +}; +rcaron = { +bracketright = -10; +parenright = -8; +}; +registered = { +"@MMK_R_A" = -13; +"@MMK_R_AE" = -13; +"@MMK_R_T" = -37; +"@MMK_R_Y" = -45; +"@MMK_R_Z" = -14; +"@MMK_R_quoteright" = -17; +"@MMK_R_quotesingle" = -15; +Tbar = -25; +V = -28; +X = -17; +}; +slashlongcomb = { +"@MMK_R_A" = -61; +"@MMK_R_AE" = -62; +"@MMK_R_O" = -13; +"@MMK_R_ae" = -42; +"@MMK_R_afii10029" = -26; +"@MMK_R_afii10032" = -13; +"@MMK_R_afii10074" = -30; +"@MMK_R_afii10077" = -54; +"@MMK_R_afii10080" = -41; +"@MMK_R_afii10085" = -25; +"@MMK_R_d" = -42; +"@MMK_R_dalethebrew" = -22; +"@MMK_R_g" = -41; +"@MMK_R_kafhebrew" = -11; +"@MMK_R_lamedhebrew" = -10; +"@MMK_R_n" = -30; +"@MMK_R_o" = -41; +"@MMK_R_s" = -35; +"@MMK_R_u" = -28; +"@MMK_R_w" = -22; +"@MMK_R_y" = -24; +"@MMK_R_yodhebrew" = -31; +"@MMK_R_z" = -24; +"@MMK_R_zayinhebrew" = -22; +Icircumflex = 38; +Idieresis = 27; +Imacron = 14; +Itilde = 22; +eight = -12; +four = -49; +igrave = 22; +slashlongcomb = -189; +v = -24; +x = -22; +zero = -11; +}; +space = { +"@MMK_R_A" = -26; +"@MMK_R_AE" = -25; +"@MMK_R_T" = -30; +"@MMK_R_Y" = -35; +"@MMK_R_dalethebrew" = -22; +"@MMK_R_f" = -22; +"@MMK_R_gimelhebrew" = -28; +"@MMK_R_t" = -21; +"@MMK_R_w" = -24; +"@MMK_R_y" = -29; +"@MMK_R_zayinhebrew" = -23; +V = -33; +jcircumflex = -17; +v = -29; +}; +tcaron = { +"@MMK_R_guilsinglright" = 32; +"@MMK_R_h" = 55; +"@MMK_R_hyphen" = -9; +"@MMK_R_i" = 66; +"@MMK_R_l" = 55; +"@MMK_R_quoteleft" = 40; +"@MMK_R_quoteright" = 60; +"@MMK_R_quotesingle" = 78; +"@MMK_R_t" = 21; +asterisk = 72; +backslash = 83; +bar = 57; +bracketright = 85; +exclam = 68; +iacute = 33; +j = 57; +ordfeminine = 58; +ordmasculine = 60; +parenright = 87; +scaron = 28; +trademark = 107; +}; +v = { +"@MMK_R_A" = -27; +"@MMK_R_J" = -21; +"@MMK_R_T" = -97; +"@MMK_R_W" = -8; +"@MMK_R_Y" = -59; +"@MMK_R_Z" = -42; +"@MMK_R_ae" = -18; +"@MMK_R_d" = -17; +"@MMK_R_g" = -17; +"@MMK_R_guilsinglleft" = -13; +"@MMK_R_hyphen" = -19; +"@MMK_R_o" = -17; +"@MMK_R_period" = -54; +"@MMK_R_s" = -15; +"@MMK_R_slash" = -41; +V = -23; +X = -36; +backslash = -25; +bracketright = -33; +parenright = -45; +slashlongcomb = -41; +space = -25; +}; +x = { +"@MMK_R_J" = -17; +"@MMK_R_T" = -88; +"@MMK_R_W" = -7; +"@MMK_R_Y" = -56; +"@MMK_R_ae" = -5; +"@MMK_R_d" = -10; +"@MMK_R_g" = -10; +"@MMK_R_hyphen" = -27; +"@MMK_R_o" = -10; +V = -24; +backslash = -21; +bracketright = -25; +parenright = -30; +}; +zero = { +"@MMK_R_T" = -16; +"@MMK_R_Y" = -30; +"@MMK_R_period" = -17; +"@MMK_R_slash" = -11; +V = -21; +backslash = -20; +bracketright = -24; +bracketright.case = -28; +parenright = -32; +parenright.case = -36; +slashlongcomb = -11; +}; +}; +"A0D8A2CD-35BA-4362-A7DB-C0E331BFD9A3" = { +"@MMK_L_A" = { +"@MMK_R_J" = -15; +"@MMK_R_O" = -25; +"@MMK_R_S" = -17; +"@MMK_R_T" = -73; +"@MMK_R_U" = -27; +"@MMK_R_W" = -39; +"@MMK_R_Y" = -95; +"@MMK_R_ae" = -5; +"@MMK_R_d" = -9; +"@MMK_R_f" = -28; +"@MMK_R_g" = -12; +"@MMK_R_guilsinglleft" = -19; +"@MMK_R_guilsinglleft.cap" = -25; +"@MMK_R_hyphen" = -19; +"@MMK_R_hyphen.cap" = -24; +"@MMK_R_o" = -10; +"@MMK_R_quoteleft" = -51; +"@MMK_R_quoteright" = -56; +"@MMK_R_quotesingle" = -64; +"@MMK_R_s" = -6; +"@MMK_R_t" = -43; +"@MMK_R_u" = -8; +"@MMK_R_w" = -33; +"@MMK_R_y" = -49; +V = -67; +asterisk = -63; +backslash = -81; +bracketright = 5; +copyright = -25; +eight = -11; +five = -10; +longs = -28; +one = -47; +ordfeminine = -63; +ordmasculine = -67; +parenright = 5; +registered = -25; +space = -26; +trademark = -77; +v = -48; +zero = -15; +}; +"@MMK_L_C" = { +"@MMK_R_A" = -12; +"@MMK_R_AE" = -13; +"@MMK_R_T" = 0; +"@MMK_R_Y" = -26; +"@MMK_R_hyphen" = 0; +"@MMK_R_hyphen.cap" = 0; +"@MMK_R_period" = 0; +"@MMK_R_slash" = -19; +V = -24; +X = -32; +backslash = -26; +bracketright = -14; +bracketright.case = -13; +icircumflex = 7; +parenright = -17; +parenright.case = -20; +slashlongcomb = -19; +trademark = -14; +}; +"@MMK_L_D" = { +"@MMK_R_A" = -19; +"@MMK_R_AE" = -19; +"@MMK_R_T" = -11; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -45; +"@MMK_R_Z" = -6; +"@MMK_R_period" = 0; +"@MMK_R_quoteleft" = 0; +"@MMK_R_quoteright" = 0; +"@MMK_R_quotesingle" = 0; +"@MMK_R_slash" = -25; +V = -29; +X = -45; +backslash = -37; +bracketright = -25; +bracketright.case = -23; +parenright = -28; +parenright.case = -29; +slashlongcomb = -25; +trademark = -25; +x = -10; +}; +"@MMK_L_E" = { +"@MMK_R_AE" = 0; +"@MMK_R_O" = -5; +"@MMK_R_d" = 0; +"@MMK_R_f" = 0; +"@MMK_R_g" = 0; +"@MMK_R_hyphen" = 0; +"@MMK_R_hyphen.cap" = -8; +"@MMK_R_o" = 0; +"@MMK_R_t" = 0; +"@MMK_R_u" = 0; +"@MMK_R_w" = 0; +"@MMK_R_y" = 0; +icircumflex = 41; +idieresis = 25; +igrave = 29; +imacron = 7; +itilde = 23; +}; +"@MMK_L_G" = { +"@MMK_R_A" = -18; +"@MMK_R_AE" = -19; +"@MMK_R_T" = 0; +"@MMK_R_W" = -7; +"@MMK_R_Y" = -33; +"@MMK_R_period" = 0; +"@MMK_R_quoteright" = 0; +"@MMK_R_slash" = -23; +V = -27; +X = -41; +backslash = -29; +bracketright = -19; +bracketright.case = -19; +parenright = -21; +parenright.case = -24; +slashlongcomb = -23; +trademark = -18; +x = -7; +}; +"@MMK_L_I" = { +"@MMK_R_hyphen" = 0; +"@MMK_R_hyphen.cap" = 0; +"@MMK_R_period" = 0; +icircumflex = 31; +idieresis = 15; +igrave = 20; +itilde = 13; +}; +"@MMK_L_K" = { +"@MMK_R_J" = -13; +"@MMK_R_O" = -35; +"@MMK_R_S" = -24; +"@MMK_R_U" = -5; +"@MMK_R_ae" = -13; +"@MMK_R_d" = -32; +"@MMK_R_f" = -29; +"@MMK_R_g" = -44; +"@MMK_R_guilsinglleft" = -37; +"@MMK_R_guilsinglleft.cap" = -40; +"@MMK_R_hyphen" = -35; +"@MMK_R_hyphen.cap" = -37; +"@MMK_R_o" = -39; +"@MMK_R_quoteleft" = -11; +"@MMK_R_s" = -18; +"@MMK_R_t" = -33; +"@MMK_R_u" = -25; +"@MMK_R_w" = -37; +"@MMK_R_y" = -44; +copyright = -23; +ibreve = 8; +icircumflex = 46; +idieresis = 55; +igrave = 61; +imacron = 37; +itilde = 50; +longs = -29; +one = -15; +registered = -23; +trademark = 10; +v = -41; +}; +"@MMK_L_L" = { +"@MMK_R_O" = -10; +"@MMK_R_T" = -99; +"@MMK_R_U" = -12; +"@MMK_R_W" = -31; +"@MMK_R_Y" = -99; +"@MMK_R_d" = 0; +"@MMK_R_f" = -37; +"@MMK_R_g" = 0; +"@MMK_R_guilsinglleft" = -26; +"@MMK_R_guilsinglleft.cap" = -27; +"@MMK_R_guilsinglright" = 0; +"@MMK_R_guilsinglright.cap" = 0; +"@MMK_R_hyphen" = -10; +"@MMK_R_hyphen.cap" = -47; +"@MMK_R_o" = 0; +"@MMK_R_quoteleft" = -110; +"@MMK_R_quoteright" = -111; +"@MMK_R_quotesingle" = -112; +"@MMK_R_t" = -62; +"@MMK_R_u" = 0; +"@MMK_R_w" = -47; +"@MMK_R_y" = -83; +V = -89; +asterisk = -111; +backslash = -80; +longs = -37; +one = -75; +ordfeminine = -112; +ordmasculine = -113; +periodcentered = -114; +space = -22; +trademark = -113; +v = -79; +}; +"@MMK_L_O" = { +"@MMK_R_A" = -18; +"@MMK_R_AE" = -18; +"@MMK_R_T" = -10; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -43; +"@MMK_R_Z" = -5; +"@MMK_R_period" = 0; +"@MMK_R_quoteleft" = 0; +"@MMK_R_quoteright" = 0; +"@MMK_R_quotesingle" = 0; +"@MMK_R_slash" = -24; +V = -28; +X = -41; +backslash = -36; +bracketright = -23; +bracketright.case = -21; +parenright = -25; +parenright.case = -26; +slashlongcomb = -24; +trademark = -24; +x = -9; +}; +"@MMK_L_R" = { +"@MMK_R_AE" = 0; +"@MMK_R_J" = -11; +"@MMK_R_O" = -5; +"@MMK_R_T" = -7; +"@MMK_R_U" = -5; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -36; +"@MMK_R_d" = -5; +"@MMK_R_g" = -6; +"@MMK_R_hyphen" = 0; +"@MMK_R_hyphen.cap" = 0; +"@MMK_R_o" = -7; +V = -26; +backslash = -32; +trademark = -17; +}; +"@MMK_L_S" = { +"@MMK_R_A" = -12; +"@MMK_R_AE" = -13; +"@MMK_R_T" = -9; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -40; +"@MMK_R_hyphen" = 0; +"@MMK_R_hyphen.cap" = 0; +"@MMK_R_quotesingle" = -8; +"@MMK_R_y" = -6; +V = -28; +X = -32; +backslash = -34; +bracketright = -12; +parenright = -17; +parenright.case = -11; +trademark = -23; +v = -5; +x = -6; +}; +"@MMK_L_T" = { +"@MMK_R_A" = -73; +"@MMK_R_AE" = -72; +"@MMK_R_J" = -7; +"@MMK_R_O" = 0; +"@MMK_R_ae" = -75; +"@MMK_R_colon" = 0; +"@MMK_R_d" = -62; +"@MMK_R_f" = -6; +"@MMK_R_g" = -58; +"@MMK_R_guilsinglleft" = -24; +"@MMK_R_guilsinglleft.cap" = -14; +"@MMK_R_guilsinglright" = 0; +"@MMK_R_h" = -8; +"@MMK_R_hyphen" = -50; +"@MMK_R_hyphen.cap" = -31; +"@MMK_R_i" = -10; +"@MMK_R_l" = -8; +"@MMK_R_n" = -20; +"@MMK_R_o" = -75; +"@MMK_R_period" = -58; +"@MMK_R_s" = -52; +"@MMK_R_slash" = -67; +"@MMK_R_t" = 0; +"@MMK_R_u" = -16; +"@MMK_R_w" = 0; +"@MMK_R_y" = 0; +"@MMK_R_z" = -16; +asterisk = 10; +four = -43; +hbar = 18; +ibreve = 2; +icircumflex = 69; +idieresis = 53; +idotless = -21; +igrave = 53; +imacron = 35; +itilde = 51; +j = -11; +jcircumflex = -5; +longs = -6; +slashlongcomb = -67; +space = -21; +trademark = 6; +x = -11; +}; +"@MMK_L_U" = { +"@MMK_R_A" = -14; +"@MMK_R_AE" = -15; +"@MMK_R_hyphen" = 0; +"@MMK_R_n" = 0; +"@MMK_R_period" = 0; +"@MMK_R_slash" = -26; +X = -5; +icircumflex = 36; +idieresis = 21; +igrave = 26; +itilde = 19; +slashlongcomb = -26; +}; +"@MMK_L_W" = { +"@MMK_R_A" = -25; +"@MMK_R_AE" = -27; +"@MMK_R_ae" = -13; +"@MMK_R_d" = -11; +"@MMK_R_g" = -11; +"@MMK_R_guilsinglleft" = 0; +"@MMK_R_hyphen" = -9; +"@MMK_R_hyphen.cap" = 0; +"@MMK_R_n" = -7; +"@MMK_R_o" = -12; +"@MMK_R_period" = -17; +"@MMK_R_s" = -9; +"@MMK_R_slash" = -28; +"@MMK_R_u" = -6; +"@MMK_R_z" = -8; +icircumflex = 50; +idieresis = 40; +igrave = 43; +imacron = 21; +itilde = 33; +slashlongcomb = -28; +x = -6; +}; +"@MMK_L_Y" = { +"@MMK_R_A" = -83; +"@MMK_R_AE" = -84; +"@MMK_R_J" = -16; +"@MMK_R_O" = -26; +"@MMK_R_S" = -22; +"@MMK_R_ae" = -101; +"@MMK_R_colon" = -21; +"@MMK_R_d" = -87; +"@MMK_R_f" = -34; +"@MMK_R_g" = -87; +"@MMK_R_guilsinglleft" = -43; +"@MMK_R_guilsinglleft.cap" = -40; +"@MMK_R_guilsinglright" = -15; +"@MMK_R_guilsinglright.cap" = 0; +"@MMK_R_h" = 0; +"@MMK_R_hyphen" = -49; +"@MMK_R_hyphen.cap" = -39; +"@MMK_R_i" = 0; +"@MMK_R_l" = 0; +"@MMK_R_n" = -60; +"@MMK_R_o" = -91; +"@MMK_R_period" = -68; +"@MMK_R_quoteleft" = -11; +"@MMK_R_s" = -85; +"@MMK_R_slash" = -84; +"@MMK_R_t" = -26; +"@MMK_R_u" = -56; +"@MMK_R_w" = -42; +"@MMK_R_y" = -45; +"@MMK_R_z" = -59; +copyright = -25; +ecircumflex = -83; +edieresis = -79; +egrave = -77; +eight = -16; +five = -15; +four = -61; +hbar = 11; +iacute = -26; +ibreve = 20; +icircumflex = 56; +idieresis = 66; +idotless = -60; +igrave = 71; +imacron = 48; +itilde = 60; +jcircumflex = -15; +longs = -33; +ograve = -84; +one = -14; +registered = -25; +scircumflex = -61; +slashlongcomb = -84; +space = -26; +trademark = 20; +v = -42; +x = -51; +zero = -16; +}; +"@MMK_L_Z" = { +"@MMK_R_O" = -6; +"@MMK_R_ae" = 0; +"@MMK_R_d" = 0; +"@MMK_R_f" = -6; +"@MMK_R_g" = -6; +"@MMK_R_guilsinglleft" = -13; +"@MMK_R_guilsinglleft.cap" = -20; +"@MMK_R_hyphen" = -14; +"@MMK_R_hyphen.cap" = -20; +"@MMK_R_n" = 0; +"@MMK_R_o" = -5; +"@MMK_R_s" = 0; +"@MMK_R_t" = -5; +"@MMK_R_u" = 0; +"@MMK_R_w" = 0; +"@MMK_R_y" = -5; +icircumflex = 40; +idieresis = 24; +igrave = 28; +imacron = 6; +itilde = 23; +longs = -6; +v = -5; +}; +"@MMK_L_afii10020" = { +"@MMK_R_afii10029" = -40; +"@MMK_R_afii10032" = 0; +"@MMK_R_afii10074" = -18; +"@MMK_R_afii10077" = -72; +"@MMK_R_afii10080" = -77; +"@MMK_R_afii10085" = 0; +"@MMK_R_afii10103" = -6; +"@MMK_R_afii10108" = 24; +"@MMK_R_colon" = 0; +"@MMK_R_guilsinglleft" = -12; +"@MMK_R_guilsinglleft.cap" = -11; +"@MMK_R_guilsinglright" = 0; +"@MMK_R_hyphen" = -43; +"@MMK_R_hyphen.cap" = -27; +"@MMK_R_period" = -76; +"@MMK_R_slash" = -77; +asterisk = 12; +slashlongcomb = -77; +}; +"@MMK_L_afii10022" = { +"@MMK_R_afii10032" = -5; +"@MMK_R_afii10080" = 0; +"@MMK_R_afii10085" = 0; +"@MMK_R_hyphen" = 0; +"@MMK_R_hyphen.cap" = -8; +}; +"@MMK_L_afii10026" = { +"@MMK_R_hyphen" = 0; +"@MMK_R_hyphen.cap" = 0; +"@MMK_R_period" = 0; +}; +"@MMK_L_afii10028" = { +"@MMK_R_afii10032" = -35; +"@MMK_R_afii10080" = -39; +"@MMK_R_afii10085" = -44; +"@MMK_R_afii10108" = 14; +"@MMK_R_guilsinglleft" = -37; +"@MMK_R_guilsinglleft.cap" = -40; +"@MMK_R_hyphen" = -35; +"@MMK_R_hyphen.cap" = -37; +"@MMK_R_quoteleft" = -11; +}; +"@MMK_L_afii10032" = { +"@MMK_R_afii10029" = -6; +"@MMK_R_afii10037" = -13; +"@MMK_R_afii10077" = -7; +"@MMK_R_period" = 0; +"@MMK_R_quoteleft" = 0; +"@MMK_R_quoteright" = 0; +"@MMK_R_quotesingle" = 0; +"@MMK_R_slash" = -24; +backslash = -36; +bracketright = -23; +bracketright.case = -21; +parenright = -25; +parenright.case = -26; +slashlongcomb = -24; +}; +"@MMK_L_afii10037" = { +"@MMK_R_afii10029" = -45; +"@MMK_R_afii10032" = -23; +"@MMK_R_afii10074" = -39; +"@MMK_R_afii10077" = -91; +"@MMK_R_afii10080" = -70; +"@MMK_R_afii10085" = -16; +"@MMK_R_afii10108" = 28; +"@MMK_R_colon" = -17; +"@MMK_R_guilsinglleft" = -33; +"@MMK_R_guilsinglleft.cap" = -28; +"@MMK_R_guilsinglright" = -13; +"@MMK_R_hyphen" = -39; +"@MMK_R_hyphen.cap" = -31; +"@MMK_R_period" = -64; +"@MMK_R_slash" = -88; +parenright = 6; +slashlongcomb = -88; +}; +"@MMK_L_afii10040" = { +"@MMK_R_afii10032" = -8; +"@MMK_R_afii10080" = 0; +"@MMK_R_afii10085" = -47; +"@MMK_R_afii10108" = -6; +"@MMK_R_guilsinglleft" = -13; +"@MMK_R_guilsinglleft.cap" = -19; +"@MMK_R_hyphen" = 0; +"@MMK_R_hyphen.cap" = -20; +"@MMK_R_quoteleft" = -31; +"@MMK_R_quoteright" = -32; +"@MMK_R_quotesingle" = -32; +asterisk = -31; +backslash = -39; +}; +"@MMK_L_afii10046" = { +"@MMK_R_afii10037" = -7; +"@MMK_R_afii10085" = -29; +"@MMK_R_afii10108" = -10; +"@MMK_R_hyphen.cap" = 0; +"@MMK_R_quoteleft" = -29; +"@MMK_R_quoteright" = -36; +"@MMK_R_quotesingle" = -51; +"@MMK_R_slash" = -11; +asterisk = -47; +backslash = -67; +bracketright = -23; +parenright = -28; +parenright.case = -13; +slashlongcomb = -11; +}; +"@MMK_L_afii10068" = { +"@MMK_R_afii10077" = -33; +"@MMK_R_afii10080" = 0; +"@MMK_R_hyphen" = 0; +"@MMK_R_period" = -56; +"@MMK_R_slash" = -61; +backslash = -34; +bracketright = -49; +parenright = -50; +slashlongcomb = -61; +}; +"@MMK_L_afii10070" = { +"@MMK_R_afii10077" = -5; +"@MMK_R_afii10085" = -32; +"@MMK_R_afii10108" = -17; +"@MMK_R_quoteleft" = -12; +"@MMK_R_quoteright" = -16; +"@MMK_R_quotesingle" = -26; +"@MMK_R_slash" = -21; +asterisk = -28; +backslash = -66; +bracketright = -27; +parenright = -32; +slashlongcomb = -21; +}; +"@MMK_L_afii10074" = { +"@MMK_R_afii10108" = -6; +"@MMK_R_quoteleft" = 0; +"@MMK_R_quoteright" = 0; +"@MMK_R_quotesingle" = 0; +backslash = -49; +}; +"@MMK_L_afii10076" = { +"@MMK_R_afii10080" = -21; +"@MMK_R_guilsinglleft" = 0; +"@MMK_R_hyphen" = -17; +"@MMK_R_quoteleft" = 0; +"@MMK_R_quoteright" = 0; +backslash = -37; +}; +"@MMK_L_afii10080" = { +"@MMK_R_afii10077" = -6; +"@MMK_R_afii10085" = -30; +"@MMK_R_afii10108" = -17; +"@MMK_R_period" = 0; +"@MMK_R_quoteleft" = -9; +"@MMK_R_quoteright" = -14; +"@MMK_R_quotesingle" = -23; +"@MMK_R_slash" = -23; +asterisk = -25; +backslash = -65; +bracketright = -29; +parenright = -34; +slashlongcomb = -23; +}; +"@MMK_L_afii10082" = { +"@MMK_R_afii10077" = -5; +"@MMK_R_afii10085" = -26; +"@MMK_R_afii10108" = -15; +"@MMK_R_period" = 0; +"@MMK_R_quoteleft" = 0; +"@MMK_R_quoteright" = -10; +"@MMK_R_quotesingle" = -19; +"@MMK_R_slash" = -22; +asterisk = -22; +backslash = -63; +bracketright = -27; +parenright = -32; +slashlongcomb = -22; +}; +"@MMK_L_afii10085" = { +"@MMK_R_afii10077" = -35; +"@MMK_R_afii10080" = -20; +"@MMK_R_guilsinglleft" = 0; +"@MMK_R_hyphen" = -15; +"@MMK_R_period" = -40; +"@MMK_R_slash" = -60; +asterisk = 6; +backslash = -36; +bracketright = -44; +parenright = -45; +slashlongcomb = -60; +}; +"@MMK_L_afii10088" = { +"@MMK_R_afii10080" = -7; +"@MMK_R_afii10085" = -42; +"@MMK_R_afii10108" = -15; +"@MMK_R_guilsinglleft" = -18; +"@MMK_R_hyphen" = -17; +"@MMK_R_quoteleft" = -20; +"@MMK_R_quoteright" = -23; +"@MMK_R_quotesingle" = -30; +asterisk = -30; +backslash = -72; +}; +"@MMK_L_afii10094" = { +"@MMK_R_afii10085" = -46; +"@MMK_R_afii10108" = -16; +"@MMK_R_quoteleft" = -41; +"@MMK_R_quoteright" = -46; +"@MMK_R_quotesingle" = -55; +"@MMK_R_slash" = -15; +asterisk = -53; +backslash = -76; +bracketright = -22; +parenright = -27; +slashlongcomb = -15; +}; +"@MMK_L_b" = { +"@MMK_R_A" = -7; +"@MMK_R_T" = -80; +"@MMK_R_U" = 0; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -88; +"@MMK_R_Z" = 0; +"@MMK_R_f" = -5; +"@MMK_R_period" = 0; +"@MMK_R_quoteleft" = -9; +"@MMK_R_quoteright" = -14; +"@MMK_R_quotesingle" = -22; +"@MMK_R_slash" = -22; +"@MMK_R_t" = -4; +"@MMK_R_w" = -16; +"@MMK_R_y" = -27; +"@MMK_R_z" = 0; +V = -58; +X = -26; +asterisk = -24; +backslash = -63; +bracketright = -27; +jcircumflex = -8; +longs = -5; +ordfeminine = -24; +ordmasculine = -31; +parenright = -31; +slashlongcomb = -22; +trademark = -43; +v = -23; +x = -19; +}; +"@MMK_L_bethebrew" = { +"@MMK_R_guilsinglright" = 0; +"@MMK_R_hyphen" = -8; +"@MMK_R_kafhebrew" = -6; +"@MMK_R_slash" = -32; +"@MMK_R_tethebrew" = -5; +slashlongcomb = -32; +}; +"@MMK_L_c" = { +"@MMK_R_A" = -5; +"@MMK_R_T" = -94; +"@MMK_R_W" = -15; +"@MMK_R_Y" = -105; +"@MMK_R_quoteleft" = 0; +"@MMK_R_quoteright" = -12; +"@MMK_R_quotesingle" = -22; +"@MMK_R_slash" = -20; +"@MMK_R_w" = -14; +"@MMK_R_y" = -24; +V = -51; +X = -24; +asterisk = -24; +backslash = -62; +bracketright = -26; +ordfeminine = -26; +ordmasculine = -35; +parenright = -31; +slashlongcomb = -20; +trademark = -45; +v = -21; +x = -16; +}; +"@MMK_L_colon" = { +"@MMK_R_T" = 0; +"@MMK_R_W" = 0; +"@MMK_R_Y" = -24; +"@MMK_R_afii10085" = 0; +"@MMK_R_quoteright" = 0; +"@MMK_R_quotesingle" = 0; +"@MMK_R_y" = 0; +V = -17; +}; +"@MMK_L_d" = { +"@MMK_R_T" = -12; +"@MMK_R_Y" = 0; +icircumflex = 39; +idieresis = 23; +igrave = 34; +itilde = 21; +}; +"@MMK_L_dalethebrew" = { +"@MMK_R_bethebrew" = -40; +"@MMK_R_colon" = 0; +"@MMK_R_gimelhebrew" = -63; +"@MMK_R_guilsinglright" = 0; +"@MMK_R_hethebrew" = -10; +"@MMK_R_hyphen" = -10; +"@MMK_R_kafhebrew" = -14; +"@MMK_R_period" = -57; +"@MMK_R_slash" = -17; +"@MMK_R_tethebrew" = -9; +asterisk = 14; +backslash = -65; +slashlongcomb = -17; +space = -20; +}; +"@MMK_L_dcaron" = { +"@MMK_R_colon" = 20; +"@MMK_R_d" = -41; +"@MMK_R_f" = 26; +"@MMK_R_g" = -37; +"@MMK_R_guilsinglright" = 35; +"@MMK_R_h" = 66; +"@MMK_R_hyphen" = -44; +"@MMK_R_i" = 81; +"@MMK_R_l" = 86; +"@MMK_R_o" = -48; +"@MMK_R_period" = -48; +"@MMK_R_quoteleft" = 9; +"@MMK_R_quoteright" = 54; +"@MMK_R_quotesingle" = 93; +"@MMK_R_s" = -27; +"@MMK_R_slash" = -54; +"@MMK_R_t" = 33; +"@MMK_R_w" = 28; +"@MMK_R_y" = 31; +asterisk = 76; +backslash = 69; +bar = 67; +bracketright = 96; +exclam = 79; +j = 69; +longs = 26; +ordfeminine = 65; +ordmasculine = 73; +parenright = 97; +slashlongcomb = -54; +trademark = 111; +v = 35; +x = 16; +zcaron = 16; +}; +"@MMK_L_e" = { +"@MMK_R_A" = -7; +"@MMK_R_T" = -90; +"@MMK_R_W" = -21; +"@MMK_R_Y" = -102; +"@MMK_R_Z" = 0; +"@MMK_R_f" = -8; +"@MMK_R_quoteleft" = -12; +"@MMK_R_quoteright" = -16; +"@MMK_R_quotesingle" = -26; +"@MMK_R_slash" = -21; +"@MMK_R_t" = -6; +"@MMK_R_w" = -19; +"@MMK_R_y" = -32; +"@MMK_R_z" = -4; +V = -62; +X = -27; +asterisk = -28; +backslash = -66; +bracketright = -27; +jcircumflex = -6; +longs = -8; +ordfeminine = -29; +ordmasculine = -37; +parenright = -32; +slashlongcomb = -21; +trademark = -48; +v = -28; +x = -20; +}; +"@MMK_L_f" = { +"@MMK_R_A" = -33; +"@MMK_R_T" = 10; +"@MMK_R_W" = 7; +"@MMK_R_Y" = 24; +"@MMK_R_ae" = -6; +"@MMK_R_d" = 0; +"@MMK_R_g" = 0; +"@MMK_R_hyphen" = 0; +"@MMK_R_o" = 0; +"@MMK_R_period" = -36; +"@MMK_R_quotesingle" = 13; +"@MMK_R_slash" = -47; +V = 12; +X = 14; +asterisk = 15; +bracketright = 14; +ibreve = 31; +icircumflex = 85; +idieresis = 68; +igrave = 115; +imacron = 50; +itilde = 67; +ordmasculine = 15; +parenright = 17; +slashlongcomb = -47; +space = -18; +trademark = 20; +}; +"@MMK_L_gimelhebrew" = { +"@MMK_R_dalethebrew" = -6; +"@MMK_R_guilsinglright" = -10; +"@MMK_R_hyphen" = -14; +"@MMK_R_kafhebrew" = -6; +"@MMK_R_lamedhebrew" = -4; +"@MMK_R_quoteright" = -13; +"@MMK_R_slash" = -38; +"@MMK_R_tethebrew" = -5; +"@MMK_R_zayinhebrew" = -7; +slashlongcomb = -38; +}; +"@MMK_L_guilsinglleft" = { +"@MMK_R_T" = 0; +"@MMK_R_Y" = -18; +"@MMK_R_dalethebrew" = 0; +"@MMK_R_gimelhebrew" = -22; +"@MMK_R_zayinhebrew" = 0; +V = -14; +icircumflex = 35; +idieresis = 18; +itilde = 19; +}; +"@MMK_L_guilsinglleft.cap" = { +"@MMK_R_T" = 0; +"@MMK_R_Y" = 0; +}; +"@MMK_L_guilsinglright" = { +"@MMK_R_A" = -15; +"@MMK_R_AE" = -16; +"@MMK_R_T" = -39; +"@MMK_R_W" = 0; +"@MMK_R_Y" = -52; +"@MMK_R_Z" = 0; +"@MMK_R_afii10029" = -10; +"@MMK_R_afii10037" = -20; +"@MMK_R_afii10077" = 0; +"@MMK_R_afii10085" = 0; +"@MMK_R_f" = 0; +"@MMK_R_quoteright" = 0; +"@MMK_R_quotesingle" = -14; +"@MMK_R_y" = 0; +"@MMK_R_z" = 0; +Tbar = -25; +V = -29; +X = -38; +x = -14; +}; +"@MMK_L_guilsinglright.cap" = { +"@MMK_R_A" = -20; +"@MMK_R_AE" = -21; +"@MMK_R_T" = -24; +"@MMK_R_W" = 0; +"@MMK_R_Y" = -47; +"@MMK_R_Z" = -17; +"@MMK_R_afii10029" = -19; +"@MMK_R_afii10037" = -28; +"@MMK_R_quoteright" = 0; +"@MMK_R_quotesingle" = 0; +Tbar = -17; +V = -27; +X = -46; +}; +"@MMK_L_hyphen" = { +"@MMK_R_A" = -16; +"@MMK_R_AE" = -17; +"@MMK_R_I" = 0; +"@MMK_R_J" = 0; +"@MMK_R_S" = 0; +"@MMK_R_T" = -56; +"@MMK_R_U" = 0; +"@MMK_R_W" = -13; +"@MMK_R_Y" = -53; +"@MMK_R_Z" = -10; +"@MMK_R_ae" = 0; +"@MMK_R_afii10026" = 0; +"@MMK_R_afii10029" = -9; +"@MMK_R_afii10037" = -17; +"@MMK_R_afii10077" = -13; +"@MMK_R_afii10085" = -21; +"@MMK_R_afii10108" = -11; +"@MMK_R_bethebrew" = -12; +"@MMK_R_dalethebrew" = 0; +"@MMK_R_f" = 0; +"@MMK_R_gimelhebrew" = -26; +"@MMK_R_quoteright" = -8; +"@MMK_R_quotesingle" = -19; +"@MMK_R_s" = 0; +"@MMK_R_t" = 0; +"@MMK_R_tsadihebrew" = 0; +"@MMK_R_w" = -11; +"@MMK_R_y" = -21; +"@MMK_R_z" = 0; +"@MMK_R_zayinhebrew" = 0; +Tbar = -41; +V = -34; +X = -36; +j = -9; +one = -20; +v = -18; +x = -21; +}; +"@MMK_L_hyphen.cap" = { +"@MMK_R_A" = -22; +"@MMK_R_AE" = -23; +"@MMK_R_I" = 0; +"@MMK_R_J" = 0; +"@MMK_R_S" = 0; +"@MMK_R_T" = -39; +"@MMK_R_U" = 0; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -43; +"@MMK_R_Z" = -19; +"@MMK_R_afii10026" = 0; +"@MMK_R_afii10029" = -25; +"@MMK_R_afii10037" = -25; +"@MMK_R_quoteright" = 0; +"@MMK_R_quotesingle" = 0; +Tbar = -29; +V = -29; +X = -43; +}; +"@MMK_L_i" = { +"@MMK_R_T" = -17; +"@MMK_R_W" = 0; +"@MMK_R_h" = 20; +icircumflex = 34; +idieresis = 17; +igrave = 71; +itilde = 15; +}; +"@MMK_L_k" = { +"@MMK_R_J" = -15; +"@MMK_R_O" = -6; +"@MMK_R_T" = -15; +"@MMK_R_U" = -5; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -55; +"@MMK_R_ae" = -11; +"@MMK_R_d" = -17; +"@MMK_R_g" = -20; +"@MMK_R_guilsinglleft" = 0; +"@MMK_R_hyphen" = -17; +"@MMK_R_o" = -21; +"@MMK_R_quoteleft" = 0; +"@MMK_R_quoteright" = 0; +"@MMK_R_quotesingle" = 0; +"@MMK_R_s" = -10; +"@MMK_R_u" = -5; +V = -30; +backslash = -40; +trademark = -20; +}; +"@MMK_L_kafhebrew" = { +"@MMK_R_guilsinglright" = 0; +"@MMK_R_hyphen" = 0; +"@MMK_R_kafhebrew" = -6; +"@MMK_R_slash" = -30; +"@MMK_R_tethebrew" = -5; +slashlongcomb = -30; +}; +"@MMK_L_l" = { +"@MMK_R_T" = -14; +"@MMK_R_Y" = 0; +icircumflex = 39; +idieresis = 23; +igrave = 35; +itilde = 21; +periodcentered = -41; +}; +"@MMK_L_lamedhebrew" = { +"@MMK_R_bethebrew" = -34; +"@MMK_R_colon" = 0; +"@MMK_R_gimelhebrew" = -53; +"@MMK_R_guilsinglright" = 0; +"@MMK_R_hethebrew" = -9; +"@MMK_R_hyphen" = -8; +"@MMK_R_kafhebrew" = -12; +"@MMK_R_period" = -42; +"@MMK_R_quoteright" = 5; +"@MMK_R_tethebrew" = -8; +asterisk = 11; +backslash = -56; +space = -19; +}; +"@MMK_L_memhebrew" = { +"@MMK_R_guilsinglright" = 0; +"@MMK_R_hyphen" = -11; +"@MMK_R_kafhebrew" = -9; +"@MMK_R_slash" = -30; +"@MMK_R_tethebrew" = -8; +slashlongcomb = -30; +}; +"@MMK_L_n" = { +"@MMK_R_T" = -77; +"@MMK_R_U" = -5; +"@MMK_R_W" = -21; +"@MMK_R_Y" = -88; +"@MMK_R_f" = -6; +"@MMK_R_quoteleft" = 0; +"@MMK_R_quoteright" = -11; +"@MMK_R_quotesingle" = -20; +"@MMK_R_t" = -5; +"@MMK_R_w" = -14; +"@MMK_R_y" = -26; +V = -57; +asterisk = -22; +backslash = -64; +longs = -6; +ordfeminine = -21; +ordmasculine = -28; +trademark = -41; +v = -23; +}; +"@MMK_L_nunhebrew" = { +"@MMK_R_guilsinglright" = 0; +"@MMK_R_hyphen" = 0; +"@MMK_R_kafhebrew" = -6; +"@MMK_R_slash" = -30; +"@MMK_R_tethebrew" = -5; +slashlongcomb = -30; +}; +"@MMK_L_o" = { +"@MMK_R_A" = -7; +"@MMK_R_T" = -83; +"@MMK_R_U" = 0; +"@MMK_R_W" = -21; +"@MMK_R_Y" = -93; +"@MMK_R_Z" = 0; +"@MMK_R_f" = -6; +"@MMK_R_period" = 0; +"@MMK_R_quoteleft" = -9; +"@MMK_R_quoteright" = -14; +"@MMK_R_quotesingle" = -23; +"@MMK_R_slash" = -23; +"@MMK_R_t" = -5; +"@MMK_R_w" = -17; +"@MMK_R_y" = -29; +"@MMK_R_z" = -4; +V = -61; +X = -29; +asterisk = -25; +backslash = -65; +bracketright = -29; +jcircumflex = -9; +longs = -6; +ordfeminine = -26; +ordmasculine = -34; +parenright = -34; +slashlongcomb = -23; +trademark = -45; +v = -26; +x = -21; +}; +"@MMK_L_pehebrew" = { +"@MMK_R_hyphen" = 0; +"@MMK_R_kafhebrew" = -4; +"@MMK_R_slash" = -31; +slashlongcomb = -31; +}; +"@MMK_L_period" = { +"@MMK_R_I" = 0; +"@MMK_R_J" = 0; +"@MMK_R_O" = -8; +"@MMK_R_S" = 0; +"@MMK_R_T" = -57; +"@MMK_R_U" = -11; +"@MMK_R_W" = -22; +"@MMK_R_Y" = -68; +"@MMK_R_afii10026" = 0; +"@MMK_R_afii10032" = -8; +"@MMK_R_afii10080" = 0; +"@MMK_R_afii10085" = -46; +"@MMK_R_afii10108" = -10; +"@MMK_R_d" = 0; +"@MMK_R_dalethebrew" = -20; +"@MMK_R_f" = -22; +"@MMK_R_g" = 0; +"@MMK_R_hyphen" = 0; +"@MMK_R_hyphen.cap" = -13; +"@MMK_R_kafhebrew" = 0; +"@MMK_R_lamedhebrew" = 0; +"@MMK_R_o" = 0; +"@MMK_R_quoteleft" = -89; +"@MMK_R_quoteright" = -92; +"@MMK_R_quotesingle" = -100; +"@MMK_R_t" = -30; +"@MMK_R_tethebrew" = 0; +"@MMK_R_u" = 0; +"@MMK_R_w" = -29; +"@MMK_R_y" = -46; +"@MMK_R_yodhebrew" = -12; +"@MMK_R_zayinhebrew" = -20; +V = -52; +one = -64; +v = -42; +}; +"@MMK_L_quoteleft" = { +"@MMK_R_A" = -63; +"@MMK_R_AE" = -63; +"@MMK_R_O" = 0; +"@MMK_R_ae" = -22; +"@MMK_R_afii10029" = -31; +"@MMK_R_afii10032" = 0; +"@MMK_R_afii10074" = 0; +"@MMK_R_afii10077" = -27; +"@MMK_R_afii10080" = -18; +"@MMK_R_afii10108" = 8; +"@MMK_R_bethebrew" = -20; +"@MMK_R_d" = -19; +"@MMK_R_g" = -15; +"@MMK_R_gimelhebrew" = -29; +"@MMK_R_hethebrew" = 0; +"@MMK_R_kafhebrew" = 0; +"@MMK_R_n" = 0; +"@MMK_R_o" = -18; +"@MMK_R_period" = -82; +"@MMK_R_s" = -13; +"@MMK_R_tethebrew" = 0; +"@MMK_R_u" = 0; +ibreve = 14; +icircumflex = 63; +idieresis = 57; +igrave = 71; +imacron = 39; +itilde = 48; +}; +"@MMK_L_quoteright" = { +"@MMK_R_A" = -69; +"@MMK_R_AE" = -70; +"@MMK_R_O" = -8; +"@MMK_R_T" = 5; +"@MMK_R_Y" = 19; +"@MMK_R_ae" = -34; +"@MMK_R_afii10029" = -31; +"@MMK_R_afii10032" = -8; +"@MMK_R_afii10037" = 18; +"@MMK_R_afii10074" = -15; +"@MMK_R_afii10077" = -36; +"@MMK_R_afii10080" = -31; +"@MMK_R_afii10108" = 17; +"@MMK_R_bethebrew" = -24; +"@MMK_R_colon" = 0; +"@MMK_R_d" = -31; +"@MMK_R_g" = -26; +"@MMK_R_gimelhebrew" = -33; +"@MMK_R_guilsinglleft" = -19; +"@MMK_R_guilsinglleft.cap" = -16; +"@MMK_R_hethebrew" = 0; +"@MMK_R_hyphen" = -29; +"@MMK_R_hyphen.cap" = -16; +"@MMK_R_kafhebrew" = -10; +"@MMK_R_lamedhebrew" = 0; +"@MMK_R_n" = -15; +"@MMK_R_o" = -31; +"@MMK_R_period" = -93; +"@MMK_R_s" = -24; +"@MMK_R_slash" = -66; +"@MMK_R_tethebrew" = 0; +"@MMK_R_u" = -13; +"@MMK_R_z" = -15; +V = 7; +X = 9; +copyright = -10; +hbar = 6; +ibreve = 30; +icircumflex = 65; +idieresis = 74; +igrave = 91; +imacron = 56; +itilde = 63; +registered = -10; +slashlongcomb = -66; +x = -12; +}; +"@MMK_L_quotesingle" = { +"@MMK_R_A" = -61; +"@MMK_R_AE" = -62; +"@MMK_R_ae" = -20; +"@MMK_R_afii10029" = -31; +"@MMK_R_afii10077" = -25; +"@MMK_R_afii10080" = -16; +"@MMK_R_bethebrew" = -33; +"@MMK_R_d" = -17; +"@MMK_R_g" = -13; +"@MMK_R_gimelhebrew" = -42; +"@MMK_R_guilsinglleft" = 0; +"@MMK_R_guilsinglleft.cap" = 0; +"@MMK_R_hethebrew" = -17; +"@MMK_R_hyphen" = -11; +"@MMK_R_kafhebrew" = -20; +"@MMK_R_o" = -16; +"@MMK_R_period" = -80; +"@MMK_R_s" = -10; +"@MMK_R_slash" = -60; +"@MMK_R_tethebrew" = -16; +four = -27; +ibreve = 6; +icircumflex = 62; +idieresis = 51; +igrave = 64; +imacron = 33; +itilde = 45; +slashlongcomb = -60; +}; +"@MMK_L_r" = { +"@MMK_R_A" = -39; +"@MMK_R_I" = 0; +"@MMK_R_J" = -8; +"@MMK_R_T" = -8; +"@MMK_R_W" = 0; +"@MMK_R_Y" = -44; +"@MMK_R_Z" = -12; +"@MMK_R_ae" = -8; +"@MMK_R_d" = 0; +"@MMK_R_g" = 0; +"@MMK_R_hyphen" = 0; +"@MMK_R_o" = 0; +"@MMK_R_period" = -49; +"@MMK_R_slash" = -55; +V = -16; +X = -77; +backslash = -34; +bracketright = -47; +parenright = -49; +slashlongcomb = -55; +space = -17; +trademark = -14; +x = -4; +}; +"@MMK_L_s" = { +"@MMK_R_A" = -5; +"@MMK_R_T" = -87; +"@MMK_R_U" = -5; +"@MMK_R_W" = -22; +"@MMK_R_Y" = -99; +"@MMK_R_f" = -7; +"@MMK_R_hyphen" = 0; +"@MMK_R_quoteleft" = 0; +"@MMK_R_quoteright" = -11; +"@MMK_R_quotesingle" = -21; +"@MMK_R_slash" = -11; +"@MMK_R_t" = -5; +"@MMK_R_w" = -17; +"@MMK_R_y" = -28; +V = -62; +X = -12; +asterisk = -22; +backslash = -64; +bracketright = -15; +jcircumflex = -4; +longs = -6; +ordfeminine = -22; +ordmasculine = -30; +parenright = -20; +slashlongcomb = -11; +trademark = -42; +v = -25; +x = -11; +}; +"@MMK_L_shinhebrew" = { +"@MMK_R_bethebrew" = -10; +"@MMK_R_gimelhebrew" = -30; +"@MMK_R_period" = 0; +"@MMK_R_quoteright" = 0; +"@MMK_R_slash" = -30; +backslash = -32; +slashlongcomb = -30; +}; +"@MMK_L_slash" = { +"@MMK_R_A" = -76; +"@MMK_R_AE" = -76; +"@MMK_R_O" = -25; +"@MMK_R_S" = -19; +"@MMK_R_afii10029" = -35; +"@MMK_R_afii10032" = -25; +"@MMK_R_afii10074" = -46; +"@MMK_R_afii10077" = -67; +"@MMK_R_afii10080" = -59; +"@MMK_R_afii10085" = -39; +"@MMK_R_d" = -59; +"@MMK_R_dalethebrew" = -33; +"@MMK_R_f" = -30; +"@MMK_R_g" = -57; +"@MMK_R_kafhebrew" = -23; +"@MMK_R_lamedhebrew" = -26; +"@MMK_R_n" = -46; +"@MMK_R_o" = -59; +"@MMK_R_s" = -55; +"@MMK_R_t" = -25; +"@MMK_R_tethebrew" = -22; +"@MMK_R_tsadihebrew" = -11; +"@MMK_R_u" = -43; +"@MMK_R_w" = -35; +"@MMK_R_y" = -39; +"@MMK_R_yodhebrew" = -38; +"@MMK_R_z" = -46; +"@MMK_R_zayinhebrew" = -33; +Icircumflex = 62; +Idieresis = 53; +Imacron = 45; +Itilde = 38; +agrave = -44; +egrave = -35; +eight = -27; +five = -22; +four = -62; +ibreve = 26; +icircumflex = 18; +idieresis = 57; +igrave = 118; +imacron = 30; +itilde = 19; +j = -12; +jcircumflex = -38; +ograve = -41; +one = -20; +rcaron = -35; +slash = -245; +v = -36; +x = -41; +ygrave = -29; +zero = -26; +}; +"@MMK_L_t" = { +"@MMK_R_T" = -18; +"@MMK_R_W" = -7; +"@MMK_R_Y" = -57; +"@MMK_R_hyphen" = 0; +V = -27; +backslash = -43; +trademark = -22; +}; +"@MMK_L_tavhebrew" = { +"@MMK_R_guilsinglright" = 0; +"@MMK_R_hyphen" = -11; +"@MMK_R_kafhebrew" = -7; +"@MMK_R_slash" = -30; +"@MMK_R_tethebrew" = -6; +slashlongcomb = -30; +}; +"@MMK_L_tethebrew" = { +"@MMK_R_bethebrew" = -11; +"@MMK_R_gimelhebrew" = -32; +"@MMK_R_period" = 0; +"@MMK_R_quoteright" = 0; +"@MMK_R_slash" = -30; +backslash = -34; +slashlongcomb = -30; +}; +"@MMK_L_tsadihebrew" = { +"@MMK_R_guilsinglright" = 0; +"@MMK_R_hyphen" = -13; +"@MMK_R_kafhebrew" = -5; +"@MMK_R_slash" = -25; +"@MMK_R_tethebrew" = -4; +slashlongcomb = -25; +}; +"@MMK_L_u" = { +"@MMK_R_T" = -29; +"@MMK_R_U" = 0; +"@MMK_R_W" = -12; +"@MMK_R_Y" = -69; +"@MMK_R_Z" = 0; +"@MMK_R_quoteleft" = 0; +"@MMK_R_quoteright" = 0; +"@MMK_R_quotesingle" = 0; +V = -36; +backslash = -49; +trademark = -24; +}; +"@MMK_L_vavhebrew" = { +"@MMK_R_quoteright" = 0; +"@MMK_R_slash" = -33; +slashlongcomb = -33; +}; +"@MMK_L_w" = { +"@MMK_R_A" = -32; +"@MMK_R_J" = -7; +"@MMK_R_T" = -10; +"@MMK_R_W" = 0; +"@MMK_R_Y" = -48; +"@MMK_R_Z" = 0; +"@MMK_R_ae" = -17; +"@MMK_R_d" = -14; +"@MMK_R_g" = -14; +"@MMK_R_hyphen" = -9; +"@MMK_R_o" = -15; +"@MMK_R_period" = -27; +"@MMK_R_s" = -13; +"@MMK_R_slash" = -49; +"@MMK_R_z" = -7; +V = -21; +X = -49; +backslash = -37; +bracketright = -38; +parenright = -40; +slashlongcomb = -49; +space = -20; +trademark = -12; +}; +"@MMK_L_y" = { +"@MMK_R_A" = -47; +"@MMK_R_J" = -12; +"@MMK_R_T" = 0; +"@MMK_R_W" = -6; +"@MMK_R_Y" = -46; +"@MMK_R_Z" = -6; +"@MMK_R_ae" = -23; +"@MMK_R_d" = -18; +"@MMK_R_g" = -17; +"@MMK_R_guilsinglleft" = 0; +"@MMK_R_hyphen" = -14; +"@MMK_R_o" = -19; +"@MMK_R_period" = -40; +"@MMK_R_s" = -16; +"@MMK_R_slash" = -60; +V = -20; +X = -57; +asterisk = 6; +backslash = -36; +bracketright = -44; +parenright = -45; +slashlongcomb = -60; +space = -24; +trademark = -12; +}; +"@MMK_L_yodhebrew" = { +"@MMK_R_bethebrew" = -14; +"@MMK_R_gimelhebrew" = -30; +"@MMK_R_period" = -19; +"@MMK_R_slash" = -21; +backslash = -40; +slashlongcomb = -21; +}; +"@MMK_L_z" = { +"@MMK_R_J" = 0; +"@MMK_R_T" = -32; +"@MMK_R_U" = -7; +"@MMK_R_W" = -16; +"@MMK_R_Y" = -75; +"@MMK_R_d" = -4; +"@MMK_R_g" = -5; +"@MMK_R_guilsinglleft" = 0; +"@MMK_R_hyphen" = 0; +"@MMK_R_o" = -5; +"@MMK_R_quoteleft" = 0; +"@MMK_R_quoteright" = 0; +"@MMK_R_quotesingle" = -8; +"@MMK_R_y" = -9; +V = -42; +asterisk = -8; +backslash = -52; +ordmasculine = -8; +trademark = -27; +v = -9; +}; +"@MMK_L_zayinhebrew" = { +"@MMK_R_bethebrew" = -36; +"@MMK_R_colon" = 0; +"@MMK_R_gimelhebrew" = -57; +"@MMK_R_guilsinglright" = 0; +"@MMK_R_hethebrew" = -10; +"@MMK_R_hyphen" = -10; +"@MMK_R_kafhebrew" = -13; +"@MMK_R_period" = -42; +"@MMK_R_slash" = -17; +"@MMK_R_tethebrew" = -9; +asterisk = 13; +backslash = -57; +slashlongcomb = -17; +space = -20; +}; +B = { +"@MMK_R_A" = -14; +"@MMK_R_AE" = -15; +"@MMK_R_T" = -6; +"@MMK_R_W" = -9; +"@MMK_R_Y" = -32; +"@MMK_R_slash" = -16; +V = -24; +X = -32; +backslash = -29; +bracketright = -14; +bracketright.case = -11; +icircumflex = 10; +parenright = -17; +parenright.case = -17; +slashlongcomb = -16; +trademark = -13; +x = -6; +}; +Eogonek = { +j = 59; +}; +F = { +"@MMK_R_A" = -30; +"@MMK_R_AE" = -33; +"@MMK_R_ae" = -10; +"@MMK_R_d" = -6; +"@MMK_R_g" = -6; +"@MMK_R_n" = -5; +"@MMK_R_o" = -6; +"@MMK_R_period" = -16; +"@MMK_R_s" = -7; +"@MMK_R_slash" = -46; +"@MMK_R_z" = -7; +icircumflex = 51; +idieresis = 36; +igrave = 40; +imacron = 17; +itilde = 33; +slashlongcomb = -46; +space = -14; +x = -8; +}; +IJ = { +"@MMK_R_A" = -12; +"@MMK_R_slash" = -24; +X = -5; +slashlongcomb = -24; +}; +Iacute = { +bar = 56; +}; +Icircumflex = { +backslash = 48; +bar = 16; +bracketright = 42; +bracketright.case = 32; +parenright = 45; +parenright.case = 32; +}; +Idieresis = { +backslash = 57; +bar = 26; +bracketright = 49; +bracketright.case = 41; +parenright = 52; +parenright.case = 42; +}; +Imacron = { +backslash = 49; +bar = 18; +bracketright = 41; +bracketright.case = 33; +parenright = 44; +parenright.case = 34; +}; +Itilde = { +backslash = 6; +bar = 11; +bracketright.case = 6; +parenright.case = 7; +}; +Lcaron = { +"@MMK_R_T" = -10; +"@MMK_R_W" = -14; +"@MMK_R_Y" = 5; +"@MMK_R_quoteright" = -61; +"@MMK_R_quotesingle" = -21; +V = -8; +asterisk = -42; +backslash = -44; +ordfeminine = -51; +ordmasculine = -43; +trademark = 1; +}; +Oslashacute = { +"@MMK_R_t" = 7; +asterisk = 17; +v = 7; +}; +P = { +"@MMK_R_A" = -43; +"@MMK_R_AE" = -46; +"@MMK_R_J" = -6; +"@MMK_R_Y" = -27; +"@MMK_R_Z" = -7; +"@MMK_R_ae" = -8; +"@MMK_R_period" = -39; +"@MMK_R_slash" = -58; +V = -28; +X = -58; +backslash = -23; +bracketright = -23; +bracketright.case = -34; +icircumflex = 15; +parenright = -24; +parenright.case = -35; +slashlongcomb = -58; +space = -21; +trademark = -11; +}; +Tbar = { +"@MMK_R_A" = -67; +"@MMK_R_d" = -46; +"@MMK_R_g" = -42; +"@MMK_R_guilsinglleft" = -14; +"@MMK_R_hyphen" = -36; +"@MMK_R_hyphen.cap" = -23; +"@MMK_R_n" = -14; +"@MMK_R_o" = -54; +"@MMK_R_s" = -41; +"@MMK_R_w" = -8; +"@MMK_R_y" = -7; +a = -29; +q = -29; +}; +Thorn = { +"@MMK_R_A" = -23; +"@MMK_R_T" = -18; +"@MMK_R_W" = -10; +"@MMK_R_Y" = -59; +"@MMK_R_Z" = -10; +"@MMK_R_period" = -10; +"@MMK_R_quotesingle" = -8; +"@MMK_R_slash" = -33; +"@MMK_R_y" = -6; +V = -32; +X = -65; +backslash = -41; +bracketright = -37; +bracketright.case = -38; +ordmasculine = -17; +parenright = -41; +parenright.case = -43; +slashlongcomb = -33; +trademark = -30; +v = -6; +x = -18; +}; +V = { +"@MMK_R_A" = -65; +"@MMK_R_AE" = -66; +"@MMK_R_J" = -20; +"@MMK_R_O" = -24; +"@MMK_R_S" = -24; +"@MMK_R_ae" = -56; +"@MMK_R_colon" = -15; +"@MMK_R_d" = -47; +"@MMK_R_f" = -15; +"@MMK_R_g" = -46; +"@MMK_R_guilsinglleft" = -23; +"@MMK_R_guilsinglleft.cap" = -21; +"@MMK_R_hyphen" = -31; +"@MMK_R_hyphen.cap" = -26; +"@MMK_R_n" = -30; +"@MMK_R_o" = -50; +"@MMK_R_period" = -50; +"@MMK_R_s" = -41; +"@MMK_R_slash" = -74; +"@MMK_R_t" = -11; +"@MMK_R_u" = -26; +"@MMK_R_w" = -17; +"@MMK_R_y" = -20; +"@MMK_R_z" = -30; +copyright = -19; +eight = -17; +five = -17; +four = -37; +hbar = 7; +iacute = -14; +ibreve = 6; +icircumflex = 54; +idieresis = 53; +idotless = -30; +igrave = 58; +imacron = 35; +itilde = 48; +jcircumflex = -11; +longs = -14; +one = -14; +registered = -19; +slashlongcomb = -74; +space = -24; +trademark = 7; +v = -17; +x = -28; +zero = -16; +}; +X = { +"@MMK_R_J" = -14; +"@MMK_R_O" = -39; +"@MMK_R_S" = -28; +"@MMK_R_ae" = -18; +"@MMK_R_d" = -39; +"@MMK_R_f" = -30; +"@MMK_R_g" = -51; +"@MMK_R_guilsinglleft" = -41; +"@MMK_R_guilsinglleft.cap" = -43; +"@MMK_R_hyphen" = -39; +"@MMK_R_hyphen.cap" = -40; +"@MMK_R_n" = -5; +"@MMK_R_o" = -47; +"@MMK_R_quoteleft" = -10; +"@MMK_R_s" = -24; +"@MMK_R_t" = -33; +"@MMK_R_u" = -29; +"@MMK_R_w" = -39; +"@MMK_R_y" = -45; +copyright = -24; +ibreve = 13; +icircumflex = 49; +idieresis = 61; +igrave = 64; +imacron = 42; +itilde = 52; +longs = -29; +one = -16; +registered = -24; +trademark = 15; +v = -43; +zero = -10; +}; +asterisk = { +"@MMK_R_A" = -57; +"@MMK_R_AE" = -58; +"@MMK_R_T" = 11; +"@MMK_R_ae" = -19; +"@MMK_R_afii10029" = -30; +"@MMK_R_afii10077" = -23; +"@MMK_R_afii10080" = -17; +"@MMK_R_afii10108" = 34; +"@MMK_R_bethebrew" = -33; +"@MMK_R_d" = -17; +"@MMK_R_g" = -13; +"@MMK_R_gimelhebrew" = -42; +"@MMK_R_hethebrew" = -17; +"@MMK_R_kafhebrew" = -20; +"@MMK_R_o" = -17; +"@MMK_R_s" = -11; +"@MMK_R_tethebrew" = -17; +hbar = 24; +icircumflex = 62; +idieresis = 42; +igrave = 12; +imacron = 24; +itilde = 43; +v = 9; +}; +backslash = { +"@MMK_R_J" = -18; +"@MMK_R_O" = -35; +"@MMK_R_S" = -20; +"@MMK_R_T" = -72; +"@MMK_R_U" = -36; +"@MMK_R_W" = -40; +"@MMK_R_Y" = -88; +"@MMK_R_ae" = -14; +"@MMK_R_afii10032" = -35; +"@MMK_R_afii10037" = -10; +"@MMK_R_afii10080" = -29; +"@MMK_R_afii10085" = -18; +"@MMK_R_afii10108" = -26; +"@MMK_R_bethebrew" = -74; +"@MMK_R_d" = -27; +"@MMK_R_dalethebrew" = -26; +"@MMK_R_f" = -42; +"@MMK_R_gimelhebrew" = -87; +"@MMK_R_hethebrew" = -59; +"@MMK_R_kafhebrew" = -61; +"@MMK_R_lamedhebrew" = -33; +"@MMK_R_o" = -29; +"@MMK_R_quoteright" = -55; +"@MMK_R_quotesingle" = -61; +"@MMK_R_s" = -19; +"@MMK_R_t" = -55; +"@MMK_R_tethebrew" = -58; +"@MMK_R_tsadihebrew" = -29; +"@MMK_R_u" = -28; +"@MMK_R_vavhebrew" = -36; +"@MMK_R_w" = -53; +"@MMK_R_y" = -54; +"@MMK_R_yodhebrew" = -24; +"@MMK_R_zayinhebrew" = -26; +V = -79; +backslash = -250; +eight = -27; +five = -19; +four = -12; +j = 74; +one = -70; +v = -66; +zero = -35; +}; +bar = { +Icircumflex = 32; +Idieresis = 24; +Igrave = 47; +Imacron = 16; +Itilde = 8; +icircumflex = 47; +idieresis = 30; +igrave = 90; +imacron = 12; +itilde = 29; +j = 43; +}; +bracketleft = { +"@MMK_R_O" = -18; +"@MMK_R_ae" = -24; +"@MMK_R_afii10032" = -18; +"@MMK_R_afii10080" = -40; +"@MMK_R_afii10085" = -12; +"@MMK_R_afii10108" = 14; +"@MMK_R_d" = -35; +"@MMK_R_f" = -21; +"@MMK_R_o" = -40; +"@MMK_R_s" = -27; +"@MMK_R_t" = -22; +"@MMK_R_u" = -28; +"@MMK_R_w" = -26; +"@MMK_R_y" = -26; +Icircumflex = 57; +Idieresis = 47; +Imacron = 39; +Itilde = 33; +eight = -10; +five = -11; +four = -37; +hbar = 10; +ibreve = 26; +icircumflex = 75; +idieresis = 59; +igrave = 118; +imacron = 40; +itilde = 57; +j = 71; +one = -19; +parenleft = -11; +v = -30; +zero = -12; +}; +bracketleft.case = { +"@MMK_R_O" = -25; +"@MMK_R_S" = -11; +"@MMK_R_afii10032" = -25; +Icircumflex = 48; +Idieresis = 40; +Imacron = 32; +Itilde = 24; +eight = -21; +five = -12; +four = -21; +one = -33; +parenleft.case = -12; +zero = -25; +}; +cacute = { +backslash = -55; +}; +comma = { +Tbar = -51; +}; +copyright = { +"@MMK_R_A" = -15; +"@MMK_R_AE" = -15; +"@MMK_R_Y" = -42; +V = -29; +X = -24; +}; +dcroat = { +asterisk = 33; +bracketright = 15; +ordmasculine = 15; +parenright = 16; +trademark = 31; +}; +degree = { +four = -18; +}; +divide = { +one = -22; +}; +eacute = { +backslash = -57; +}; +eight = { +"@MMK_R_Y" = -31; +"@MMK_R_slash" = -16; +V = -25; +backslash = -39; +bracketright = -17; +bracketright.case = -10; +parenright = -21; +parenright.case = -18; +slashlongcomb = -16; +}; +eng = { +j = 21; +}; +f_f_i = { +itilde = 21; +}; +f_f_l = { +igrave = 70; +}; +fi = { +itilde = 21; +}; +five = { +"@MMK_R_slash" = -12; +V = -14; +backslash = -16; +slashlongcomb = -12; +}; +fl = { +igrave = 69; +}; +four = { +"@MMK_R_T" = -28; +"@MMK_R_Y" = -38; +"@MMK_R_quotesingle" = -25; +V = -36; +backslash = -46; +bracketright = -16; +one = -29; +parenright = -21; +parenright.case = -16; +}; +g = { +j = 20; +}; +gbreve = { +j = 20; +}; +gcircumflex = { +j = 20; +}; +gcommaaccent = { +j = 20; +}; +gdotaccent = { +j = 20; +}; +iacute = { +"@MMK_R_h" = 36; +"@MMK_R_i" = 60; +"@MMK_R_l" = 17; +"@MMK_R_quoteright" = 17; +"@MMK_R_quotesingle" = 56; +backslash = 101; +bar = 75; +bracketright = 103; +ccaron = 21; +exclam = 42; +iacute = 1; +j = 47; +ordfeminine = 15; +ordmasculine = 20; +parenright = 104; +rcaron = 61; +scaron = 40; +trademark = 55; +zcaron = 38; +}; +ibreve = { +"@MMK_R_quotesingle" = 19; +backslash = 24; +bracketright = 25; +parenright = 27; +trademark = 25; +}; +icircumflex = { +"@MMK_R_guilsinglright" = 28; +"@MMK_R_h" = 23; +"@MMK_R_i" = 20; +"@MMK_R_l" = 23; +"@MMK_R_quoteright" = 33; +"@MMK_R_quotesingle" = 49; +asterisk = 49; +bar = 32; +bracketright = 58; +exclam = 45; +j = 7; +ordfeminine = 38; +ordmasculine = 58; +parenright = 59; +trademark = 61; +}; +idieresis = { +"@MMK_R_guilsinglright" = 24; +"@MMK_R_h" = 22; +"@MMK_R_i" = 19; +"@MMK_R_l" = 22; +"@MMK_R_quoteright" = 30; +"@MMK_R_quotesingle" = 55; +asterisk = 45; +backslash = 55; +bar = 31; +bracketright = 59; +egrave = 17; +exclam = 44; +j = 6; +ordfeminine = 41; +ordmasculine = 55; +parenright = 60; +trademark = 62; +}; +ij = { +j = 18; +}; +imacron = { +"@MMK_R_quoteright" = 12; +"@MMK_R_quotesingle" = 37; +asterisk = 32; +backslash = 29; +bar = 13; +bracketright = 41; +exclam = 25; +ordfeminine = 23; +ordmasculine = 37; +parenright = 42; +trademark = 44; +}; +itilde = { +"@MMK_R_h" = 34; +"@MMK_R_i" = 15; +"@MMK_R_l" = 14; +"@MMK_R_quoteright" = 9; +"@MMK_R_quotesingle" = 47; +asterisk = 18; +backslash = 56; +bar = 29; +bracketright = 57; +exclam = 37; +ordfeminine = 20; +ordmasculine = 27; +parenright = 59; +trademark = 52; +}; +j = { +j = 18; +}; +jcircumflex = { +j = 8; +}; +lacute = { +bar = 78; +}; +lcaron = { +ccaron = 2; +ocircumflex = 10; +scaron = 22; +}; +longs = { +"@MMK_R_i" = 80; +acircumflex = 21; +adieresis = 8; +agrave = 57; +ccaron = 21; +ccircumflex = 38; +ecaron = 13; +ecircumflex = 48; +edieresis = 28; +egrave = 67; +emacron = 15; +gcircumflex = 31; +iacute = 66; +ibreve = 136; +icircumflex = 190; +idieresis = 173; +idotless = 1; +igrave = 220; +imacron = 155; +itilde = 172; +j = 68; +napostrophe = 46; +ocircumflex = 34; +odieresis = 14; +ograve = 60; +ohungarumlaut = 20; +omacron = 6; +otilde = 13; +rcaron = 63; +ucircumflex = 28; +udieresis = 6; +ugrave = 60; +ycircumflex = 48; +ydieresis = 27; +}; +minus = { +one = -24; +}; +ohungarumlaut = { +backslash = 2; +bracketright = 3; +parenright = 5; +trademark = -27; +}; +oslashacute = { +"@MMK_R_quoteleft" = 1; +}; +parenleft = { +"@MMK_R_O" = -19; +"@MMK_R_Y" = 5; +"@MMK_R_ae" = -30; +"@MMK_R_afii10032" = -19; +"@MMK_R_afii10074" = -13; +"@MMK_R_afii10080" = -45; +"@MMK_R_afii10085" = -12; +"@MMK_R_afii10108" = 18; +"@MMK_R_d" = -41; +"@MMK_R_f" = -22; +"@MMK_R_n" = -13; +"@MMK_R_o" = -45; +"@MMK_R_s" = -33; +"@MMK_R_t" = -22; +"@MMK_R_u" = -32; +"@MMK_R_w" = -27; +"@MMK_R_y" = -27; +Icircumflex = 59; +Idieresis = 49; +Imacron = 41; +Itilde = 35; +egrave = -33; +eight = -11; +five = -11; +four = -44; +hbar = 13; +ibreve = 29; +icircumflex = 77; +idieresis = 61; +igrave = 120; +imacron = 43; +itilde = 59; +j = 74; +one = -19; +parenleft = -12; +v = -30; +zero = -13; +}; +parenleft.case = { +"@MMK_R_O" = -26; +"@MMK_R_S" = -15; +"@MMK_R_afii10032" = -26; +Icircumflex = 50; +Idieresis = 41; +Imacron = 33; +Itilde = 25; +eight = -23; +five = -16; +four = -34; +one = -34; +parenleft.case = -12; +zero = -27; +}; +parenright = { +parenright = -10; +}; +parenright.case = { +parenright.case = -11; +}; +periodcentered = { +"@MMK_R_l" = -41; +}; +plus = { +one = -22; +}; +q = { +j = 25; +}; +quotedblbase = { +Tbar = -51; +}; +quotesinglbase = { +Tbar = -51; +}; +racute = { +backslash = 17; +bracketright = 19; +parenright = 19; +}; +rcaron = { +backslash = -25; +bracketright = -24; +parenright = -23; +}; +registered = { +"@MMK_R_A" = -15; +"@MMK_R_AE" = -15; +"@MMK_R_Y" = -42; +V = -29; +X = -24; +}; +sacute = { +backslash = -50; +}; +slashlongcomb = { +"@MMK_R_A" = -76; +"@MMK_R_AE" = -76; +"@MMK_R_O" = -25; +"@MMK_R_S" = -19; +"@MMK_R_ae" = -63; +"@MMK_R_afii10029" = -35; +"@MMK_R_afii10032" = -25; +"@MMK_R_afii10074" = -46; +"@MMK_R_afii10077" = -67; +"@MMK_R_afii10080" = -59; +"@MMK_R_afii10085" = -39; +"@MMK_R_d" = -59; +"@MMK_R_dalethebrew" = -33; +"@MMK_R_f" = -30; +"@MMK_R_g" = -57; +"@MMK_R_kafhebrew" = -23; +"@MMK_R_lamedhebrew" = -26; +"@MMK_R_n" = -46; +"@MMK_R_o" = -59; +"@MMK_R_s" = -55; +"@MMK_R_t" = -25; +"@MMK_R_tethebrew" = -22; +"@MMK_R_tsadihebrew" = -11; +"@MMK_R_u" = -43; +"@MMK_R_w" = -35; +"@MMK_R_y" = -39; +"@MMK_R_yodhebrew" = -38; +"@MMK_R_z" = -46; +"@MMK_R_zayinhebrew" = -33; +Icircumflex = 62; +Idieresis = 53; +Imacron = 45; +Itilde = 38; +agrave = -44; +egrave = -35; +eight = -27; +five = -22; +four = -62; +ibreve = 26; +icircumflex = 18; +idieresis = 57; +igrave = 118; +imacron = 30; +itilde = 19; +j = -12; +jcircumflex = -38; +ograve = -41; +one = -20; +rcaron = -35; +slashlongcomb = -245; +v = -36; +x = -41; +ygrave = -29; +zero = -26; +}; +space = { +"@MMK_R_A" = -23; +"@MMK_R_AE" = -23; +"@MMK_R_T" = -22; +"@MMK_R_Y" = -29; +"@MMK_R_f" = -13; +"@MMK_R_gimelhebrew" = -21; +"@MMK_R_t" = -19; +"@MMK_R_w" = -21; +"@MMK_R_y" = -26; +V = -27; +igrave = 8; +v = -26; +}; +tcaron = { +"@MMK_R_colon" = 43; +"@MMK_R_d" = -19; +"@MMK_R_f" = 51; +"@MMK_R_g" = -16; +"@MMK_R_guilsinglright" = 58; +"@MMK_R_h" = 109; +"@MMK_R_hyphen" = -32; +"@MMK_R_i" = 105; +"@MMK_R_l" = 109; +"@MMK_R_n" = 21; +"@MMK_R_o" = -23; +"@MMK_R_period" = -27; +"@MMK_R_quoteleft" = 32; +"@MMK_R_quoteright" = 77; +"@MMK_R_quotesingle" = 115; +"@MMK_R_s" = -9; +"@MMK_R_slash" = -35; +"@MMK_R_t" = 58; +"@MMK_R_u" = 27; +"@MMK_R_w" = 53; +"@MMK_R_y" = 55; +"@MMK_R_z" = 24; +adieresis = 34; +asterisk = 100; +backslash = 93; +bar = 90; +bracketright = 118; +ccaron = 24; +copyright = 11; +ecaron = 16; +exclam = 102; +iacute = 65; +j = 92; +longs = 51; +ordfeminine = 86; +ordmasculine = 93; +parenright = 120; +registered = 11; +scaron = 45; +slashlongcomb = -35; +space = 21; +trademark = 134; +v = 61; +x = 40; +}; +uhungarumlaut = { +backslash = -12; +}; +v = { +"@MMK_R_A" = -46; +"@MMK_R_J" = -12; +"@MMK_R_W" = -6; +"@MMK_R_Y" = -47; +"@MMK_R_Z" = -6; +"@MMK_R_ae" = -23; +"@MMK_R_d" = -18; +"@MMK_R_g" = -18; +"@MMK_R_hyphen" = -15; +"@MMK_R_o" = -20; +"@MMK_R_period" = -39; +"@MMK_R_s" = -17; +"@MMK_R_slash" = -61; +V = -20; +X = -57; +backslash = -37; +bracketright = -45; +parenright = -46; +slashlongcomb = -61; +space = -24; +trademark = -13; +}; +x = { +"@MMK_R_J" = -14; +"@MMK_R_O" = -5; +"@MMK_R_T" = -7; +"@MMK_R_W" = -7; +"@MMK_R_Y" = -47; +"@MMK_R_ae" = -14; +"@MMK_R_d" = -19; +"@MMK_R_g" = -21; +"@MMK_R_hyphen" = -16; +"@MMK_R_o" = -22; +"@MMK_R_s" = -12; +V = -24; +backslash = -35; +trademark = -15; +}; +zero = { +"@MMK_R_A" = -11; +"@MMK_R_Y" = -29; +"@MMK_R_slash" = -25; +V = -20; +X = -10; +backslash = -35; +bracketright = -21; +bracketright.case = -22; +parenright = -24; +parenright.case = -26; +slashlongcomb = -25; +}; +}; +}; +metrics = ( +{ +type = ascender; +}, +{ +type = "cap height"; +}, +{ +type = "x-height"; +}, +{ +type = baseline; +}, +{ +type = descender; +}, +{ +type = "italic angle"; +} +); +properties = ( +{ +key = copyrights; +values = ( +{ +language = dflt; +value = "Copyright 2015 The Rubik Project Authors (https://github.com/googlefonts/rubik)"; +} +); +}, +{ +key = designers; +values = ( +{ +language = dflt; +value = "Hubert and Fischer"; +} +); +}, +{ +key = designerURL; +value = "http://www.hubertfischer.com"; +}, +{ +key = manufacturers; +values = ( +{ +language = dflt; +value = "Hubert & Fischer"; +} +); +}, +{ +key = manufacturerURL; +value = "http://www.google.com/fonts"; +}, +{ +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://scripts.sil.org/OFL"; +} +); +}, +{ +key = licenseURL; +value = "https://scripts.sil.org/OFL"; +} +); +settings = { +disablesNiceNames = 1; +}; +stems = ( +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem1; +}, +{ +name = vStem0; +} +); +unitsPerEm = 1000; +userData = { +com.fontlab.v2.tth = { +stems = { +"X: 233" = { +horizontal = 0; +round = { +"0" = 1; +"11" = 3; +"15" = 4; +"19" = 5; +"24" = 6; +"8" = 2; +}; +width = 233; +}; +"X: 250" = { +horizontal = 0; +round = { +"0" = 1; +"11" = 3; +"15" = 4; +"19" = 5; +"22" = 6; +"8" = 2; +}; +width = 250; +}; +"X: 79" = { +horizontal = 0; +round = { +"0" = 1; +"19" = 2; +"32" = 3; +"44" = 4; +"57" = 5; +"70" = 6; +}; +width = 79; +}; +"Y: 160" = { +horizontal = 1; +round = { +"0" = 1; +"10" = 2; +"15" = 3; +"20" = 4; +"29" = 5; +"35" = 6; +}; +width = 160; +}; +"Y: 175" = { +horizontal = 1; +round = { +"0" = 1; +"15" = 3; +"20" = 4; +"25" = 5; +"32" = 6; +"8" = 2; +}; +width = 175; +}; +"Y: 195" = { +horizontal = 1; +round = { +"0" = 1; +"11" = 3; +"20" = 4; +"25" = 5; +"29" = 6; +"8" = 2; +}; +width = 195; +}; +"Y: 80" = { +horizontal = 1; +round = { +"0" = 1; +"19" = 2; +"32" = 3; +"44" = 4; +"57" = 5; +"69" = 6; +}; +width = 80; +}; +}; +zones = { +"b: 0" = { +position = 0; +top = 0; +width = 10; +}; +"b: 1" = { +position = "-190"; +top = 0; +width = 30; +}; +"t: 0" = { +position = 520; +top = 1; +width = 10; +}; +"t: 1" = { +position = 700; +top = 1; +width = 10; +}; +}; +}; +com.schriftgestaltung.Glyphs.groupsNotInFeature = ( +); +com.schriftgestaltung.Glyphs.originalKerningGroups = { +public.kern1.A = ( +A, +Aacute, +Abreve, +Acircumflex, +Adieresis, +Agrave, +Amacron, +Aogonek, +Aring, +Atilde +); +public.kern1.C = ( +C, +Cacute, +Ccaron, +Ccedilla, +Ccircumflex, +Cdotaccent +); +public.kern1.D = ( +D, +Eth, +Dcaron, +Dcroat +); +public.kern1.E = ( +AE, +AEacute, +E, +Eacute, +Ebreve, +Ecaron, +Ecircumflex, +Edieresis, +Edotaccent, +Egrave, +Emacron, +Eogonek, +OE +); +public.kern1.G = ( +G, +Gbreve, +Gcircumflex, +Gcommaaccent, +Gdotaccent +); +public.kern1.I = ( +H, +Hbar, +Hcircumflex, +I, +Iacute, +Ibreve, +Icircumflex, +Idieresis, +Idotaccent, +Igrave, +Imacron, +Iogonek, +Itilde, +M, +N, +Nacute, +Ncaron, +Ncommaaccent, +Eng, +Ntilde +); +public.kern1.K = ( +K, +Kcommaaccent +); +public.kern1.L = ( +L, +Lacute, +Lcaron, +Lcommaaccent, +Ldot, +Lslash +); +public.kern1.O = ( +O, +Oacute, +Obreve, +Ocircumflex, +Odieresis, +Ograve, +Ohungarumlaut, +Omacron, +Oslash, +Oslashacute, +Otilde, +Q +); +public.kern1.R = ( +R, +Racute, +Rcaron, +Rcommaaccent +); +public.kern1.S = ( +S, +Sacute, +Scaron, +Scedilla, +Scircumflex, +Scommaaccent +); +public.kern1.T = ( +T, +Tbar, +Tcaron, +Tcommaaccent +); +public.kern1.U = ( +J, +Jcircumflex, +U, +Uacute, +Ubreve, +Ucircumflex, +Udieresis, +Ugrave, +Uhungarumlaut, +Umacron, +Uogonek, +Uring, +Utilde +); +public.kern1.W = ( +W, +Wacute, +Wcircumflex, +Wdieresis, +Wgrave +); +public.kern1.Y = ( +Y, +Yacute, +Ycircumflex, +Ydieresis, +Ygrave +); +public.kern1.Z = ( +Z, +Zacute, +Zcaron, +Zdotaccent +); +public.kern1.a = ( +a, +aacute, +abreve, +acircumflex, +adieresis, +agrave, +amacron, +aogonek, +aring, +atilde +); +public.kern1.afii10020 = ( +"Ge-cy", +"Gje-cy" +); +public.kern1.afii10022 = ( +"Ie-cy", +"Iegrave-cy", +"Io-cy" +); +public.kern1.afii10026 = ( +"Ii-cy", +"Iishort-cy", +"Iigrave-cy", +"El-cy", +"Em-cy", +"En-cy", +"Pe-cy", +"Che-cy", +"Sha-cy", +"Dzhe-cy", +"Yeru-cy", +"I-cy", +"Yi-cy", +"Ia-cy" +); +public.kern1.afii10028 = ( +"Ka-cy", +"Kje-cy" +); +public.kern1.afii10032 = ( +"O-cy", +"Ereversed-cy", +"Iu-cy" +); +public.kern1.afii10037 = ( +"U-cy", +"Ushort-cy" +); +public.kern1.afii10040 = ( +"Tse-cy", +"Shcha-cy" +); +public.kern1.afii10046 = ( +"Softsign-cy", +"Hardsign-cy", +"Lje-cy", +"Nje-cy" +); +public.kern1.afii10068 = ( +"ge-cy", +"gje-cy" +); +public.kern1.afii10070 = ( +"ie-cy", +"iegrave-cy", +"io-cy" +); +public.kern1.afii10074 = ( +"ii-cy", +"iishort-cy", +"iigrave-cy", +"el-cy", +"em-cy", +"en-cy", +"pe-cy", +"che-cy", +"sha-cy", +"dzhe-cy", +"yeru-cy", +"ia-cy" +); +public.kern1.afii10076 = ( +"ka-cy", +"kje-cy" +); +public.kern1.afii10080 = ( +"o-cy", +"ereversed-cy", +"iu-cy" +); +public.kern1.afii10082 = ( +"er-cy", +"ef-cy" +); +public.kern1.afii10085 = ( +"u-cy", +"ushort-cy" +); +public.kern1.afii10088 = ( +"tse-cy", +"shcha-cy" +); +public.kern1.afii10094 = ( +"softsign-cy", +"hardsign-cy", +"lje-cy", +"nje-cy" +); +public.kern1.afii10103 = ( +"i-cy", +"yi-cy", +"je-cy" +); +public.kern1.b = ( +b, +p, +thorn +); +public.kern1.bethebrew = ( +"bet-hb", +"betdagesh-hb" +); +public.kern1.c = ( +c, +cacute, +ccaron, +ccedilla, +ccircumflex, +cdotaccent +); +public.kern1.colon = ( +colon, +semicolon +); +public.kern1.d = ( +d, +dcroat +); +public.kern1.dalethebrew = ( +"dalet-hb", +"finalkaf-hb", +"daletdagesh-hb", +"finalkafdagesh-hb" +); +public.kern1.dcaron = ( +dcaron, +lcaron +); +public.kern1.e = ( +ae, +aeacute, +e, +eacute, +ebreve, +ecaron, +ecircumflex, +edieresis, +edotaccent, +egrave, +emacron, +eogonek, +oe +); +public.kern1.f = ( +f, +f_f +); +public.kern1.gimelhebrew = ( +"gimel-hb", +"gimeldagesh-hb" +); +public.kern1.guilsinglleft = ( +guillemetleft, +guilsinglleft +); +public.kern1.guilsinglleft.cap = ( +guillemetleft.case, +guilsinglleft.case +); +public.kern1.guilsinglright = ( +guillemetright, +guilsinglright +); +public.kern1.guilsinglright.cap = ( +guillemetright.case, +guilsinglright.case +); +public.kern1.hyphen = ( +emdash, +endash, +hyphen +); +public.kern1.hyphen.cap = ( +emdash.case, +endash.case, +hyphen.case +); +public.kern1.i = ( +i, +idotless, +iacute, +ibreve, +icircumflex, +idieresis, +igrave, +ij, +imacron, +iogonek, +itilde, +j, +jdotless, +jcircumflex, +f_f_i, +fi +); +public.kern1.k = ( +k, +kcommaaccent, +kgreenlandic +); +public.kern1.kafhebrew = ( +"kaf-hb", +"kafdagesh-hb" +); +public.kern1.l = ( +l, +lacute, +lcommaaccent, +lslash, +f_f_l, +fl +); +public.kern1.lamedhebrew = ( +"lamed-hb", +"lameddagesh-hb" +); +public.kern1.memhebrew = ( +"mem-hb", +"memdagesh-hb" +); +public.kern1.n = ( +h, +hbar, +hcircumflex, +m, +n, +nacute, +napostrophe, +ncaron, +ncommaaccent, +eng, +ntilde +); +public.kern1.nunhebrew = ( +"nun-hb", +"nundagesh-hb" +); +public.kern1.o = ( +o, +oacute, +obreve, +ocircumflex, +odieresis, +ograve, +ohungarumlaut, +omacron, +oslash, +oslashacute, +otilde +); +public.kern1.pehebrew = ( +"pe-hb", +"pedagesh-hb", +"pedagesh-hb.black" +); +public.kern1.period = ( +comma, +ellipsis, +period, +quotedblbase, +quotesinglbase +); +public.kern1.quoteleft = ( +quotedblleft, +quoteleft +); +public.kern1.quoteright = ( +quotedblright, +quoteright +); +public.kern1.quotesingle = ( +quotedbl, +quotesingle +); +public.kern1.r = ( +r, +racute, +rcaron, +rcommaaccent +); +public.kern1.s = ( +s, +sacute, +scaron, +scedilla, +scircumflex, +scommaaccent +); +public.kern1.shinhebrew = ( +"shin-hb", +"shinshindot-hb", +"shinsindot-hb", +"shindageshshindot-hb", +"shindageshsindot-hb", +"shindagesh-hb" +); +public.kern1.t = ( +t, +tbar, +tcommaaccent +); +public.kern1.tavhebrew = ( +"tav-hb", +"tavdagesh-hb" +); +public.kern1.tethebrew = ( +"tet-hb", +"samekh-hb", +"tetdagesh-hb", +"samekhdagesh-hb" +); +public.kern1.tsadihebrew = ( +"tsadi-hb", +"tsadidagesh-hb" +); +public.kern1.u = ( +g, +gbreve, +gcircumflex, +gcommaaccent, +gdotaccent, +q, +u, +uacute, +ubreve, +ucircumflex, +udieresis, +ugrave, +uhungarumlaut, +umacron, +uogonek, +uring, +utilde +); +public.kern1.vavhebrew = ( +"he-hb", +"vav-hb", +"het-hb", +"finalmem-hb", +"finalnun-hb", +"qof-hb", +"hedagesh-hb", +"qofdagesh-hb" +); +public.kern1.w = ( +w, +wacute, +wcircumflex, +wdieresis, +wgrave +); +public.kern1.y = ( +y, +yacute, +ycircumflex, +ydieresis, +ygrave +); +public.kern1.yodhebrew = ( +"yod-hb", +"yoddagesh-hb" +); +public.kern1.z = ( +z, +zacute, +zcaron, +zdotaccent +); +public.kern1.zayinhebrew = ( +"zayin-hb", +"zayindagesh-hb" +); +public.kern2.A = ( +A, +Aacute, +Abreve, +Acircumflex, +Adieresis, +Agrave, +Amacron, +Aogonek, +Aring, +Atilde +); +public.kern2.AE = ( +AE, +AEacute +); +public.kern2.I = ( +B, +D, +Eth, +Dcaron, +Dcroat, +E, +Eacute, +Ebreve, +Ecaron, +Ecircumflex, +Edieresis, +Edotaccent, +Egrave, +Emacron, +Eogonek, +F, +H, +Hbar, +Hcircumflex, +I, +IJ, +Iacute, +Ibreve, +Icircumflex, +Idieresis, +Idotaccent, +Igrave, +Imacron, +Iogonek, +Itilde, +K, +Kcommaaccent, +L, +Lacute, +Lcaron, +Lcommaaccent, +Ldot, +Lslash, +M, +N, +Nacute, +Ncaron, +Ncommaaccent, +Eng, +Ntilde, +P, +Thorn, +R, +Racute, +Rcaron, +Rcommaaccent +); +public.kern2.J = ( +J, +Jcircumflex +); +public.kern2.O = ( +C, +Cacute, +Ccaron, +Ccedilla, +Ccircumflex, +Cdotaccent, +G, +Gbreve, +Gcircumflex, +Gcommaaccent, +Gdotaccent, +O, +Oacute, +Obreve, +Ocircumflex, +Odieresis, +Ograve, +Ohungarumlaut, +Omacron, +Oslash, +Oslashacute, +Otilde, +OE, +Q +); +public.kern2.S = ( +S, +Sacute, +Scaron, +Scedilla, +Scircumflex, +Scommaaccent +); +public.kern2.T = ( +T, +Tbar, +Tcaron, +Tcommaaccent +); +public.kern2.U = ( +U, +Uacute, +Ubreve, +Ucircumflex, +Udieresis, +Ugrave, +Uhungarumlaut, +Umacron, +Uogonek, +Uring, +Utilde +); +public.kern2.W = ( +W, +Wacute, +Wcircumflex, +Wdieresis, +Wgrave +); +public.kern2.Y = ( +Y, +Yacute, +Ycircumflex, +Ydieresis, +Ygrave +); +public.kern2.Z = ( +Z, +Zacute, +Zcaron, +Zdotaccent +); +public.kern2.a = ( +a, +aacute, +abreve, +acircumflex, +adieresis, +agrave, +amacron, +aogonek, +aring, +atilde, +ae, +aeacute +); +public.kern2.afii10026 = ( +"Be-cy", +"Ve-cy", +"Ge-cy", +"Gje-cy", +"Ie-cy", +"Iegrave-cy", +"Io-cy", +"Ii-cy", +"Iishort-cy", +"Iigrave-cy", +"Ka-cy", +"Kje-cy", +"Em-cy", +"En-cy", +"Pe-cy", +"Er-cy", +"Tse-cy", +"Sha-cy", +"Shcha-cy", +"Dzhe-cy", +"Softsign-cy", +"Yeru-cy", +"Nje-cy", +"I-cy", +"Yi-cy", +"Iu-cy" +); +public.kern2.afii10029 = ( +"El-cy", +"Lje-cy" +); +public.kern2.afii10032 = ( +"O-cy", +"Es-cy", +"E-cy" +); +public.kern2.afii10037 = ( +"U-cy", +"Ushort-cy" +); +public.kern2.afii10074 = ( +"ve-cy", +"ge-cy", +"gje-cy", +"ii-cy", +"iishort-cy", +"iigrave-cy", +"ka-cy", +"kje-cy", +"em-cy", +"en-cy", +"pe-cy", +"er-cy", +"tse-cy", +"sha-cy", +"shcha-cy", +"dzhe-cy", +"softsign-cy", +"yeru-cy", +"nje-cy", +"iu-cy" +); +public.kern2.afii10077 = ( +"el-cy", +"lje-cy" +); +public.kern2.afii10080 = ( +"ie-cy", +"iegrave-cy", +"io-cy", +"o-cy", +"es-cy", +"e-cy" +); +public.kern2.afii10085 = ( +"u-cy", +"ushort-cy" +); +public.kern2.afii10103 = ( +"i-cy", +"yi-cy" +); +public.kern2.afii10108 = ( +"tshe-cy", +"dje-cy" +); +public.kern2.bethebrew = ( +"bet-hb", +"betdagesh-hb" +); +public.kern2.colon = ( +colon, +semicolon +); +public.kern2.d = ( +d, +dcaron, +dcroat, +q +); +public.kern2.dalethebrew = ( +"dalet-hb", +"finalkaf-hb", +"daletdagesh-hb", +"finalkafdagesh-hb" +); +public.kern2.dotlessj = ( +jdotless, +jcircumflex +); +public.kern2.f = ( +f, +f_f, +f_f_i, +f_f_l, +fi, +fl +); +public.kern2.g = ( +g, +gbreve, +gcircumflex, +gcommaaccent, +gdotaccent +); +public.kern2.gimelhebrew = ( +"gimel-hb", +"gimeldagesh-hb" +); +public.kern2.guilsinglleft = ( +guillemetleft, +guilsinglleft +); +public.kern2.guilsinglleft.cap = ( +guillemetleft.case, +guilsinglleft.case +); +public.kern2.guilsinglright = ( +guillemetright, +guilsinglright +); +public.kern2.guilsinglright.cap = ( +guillemetright.case, +guilsinglright.case +); +public.kern2.h = ( +b, +h, +hbar, +hcircumflex, +k, +kcommaaccent, +thorn, +germandbls +); +public.kern2.hethebrew = ( +"he-hb", +"het-hb", +"finalmem-hb", +"mem-hb", +"nun-hb", +"finalpe-hb", +"resh-hb", +"tav-hb", +"hedagesh-hb", +"memdagesh-hb", +"nundagesh-hb", +"tavdagesh-hb", +"finalpedagesh-hb.black" +); +public.kern2.hyphen = ( +emdash, +endash, +hyphen +); +public.kern2.hyphen.cap = ( +emdash.case, +endash.case, +hyphen.case +); +public.kern2.i = ( +i, +idotless, +iacute, +ibreve, +icircumflex, +idieresis, +igrave, +ij, +imacron, +iogonek, +itilde +); +public.kern2.kafhebrew = ( +"kaf-hb", +"kafdagesh-hb" +); +public.kern2.l = ( +l, +lacute, +lcaron, +lcommaaccent, +ldot, +lslash +); +public.kern2.lamedhebrew = ( +"lamed-hb", +"qof-hb", +"shin-hb", +"shinshindot-hb", +"shinsindot-hb", +"shindageshshindot-hb", +"shindageshsindot-hb", +"lameddagesh-hb", +"qofdagesh-hb", +"shindagesh-hb" +); +public.kern2.n = ( +kgreenlandic, +m, +n, +nacute, +napostrophe, +ncaron, +ncommaaccent, +eng, +ntilde, +p, +r, +racute, +rcaron, +rcommaaccent +); +public.kern2.o = ( +c, +cacute, +ccaron, +ccedilla, +ccircumflex, +cdotaccent, +e, +eacute, +ebreve, +ecaron, +ecircumflex, +edieresis, +edotaccent, +egrave, +emacron, +eogonek, +o, +oacute, +obreve, +ocircumflex, +odieresis, +ograve, +ohungarumlaut, +omacron, +oslash, +oslashacute, +otilde, +oe +); +public.kern2.period = ( +comma, +ellipsis, +period, +quotedblbase, +quotesinglbase +); +public.kern2.quoteleft = ( +quotedblleft, +quoteleft +); +public.kern2.quoteright = ( +quotedblright, +quoteright +); +public.kern2.quotesingle = ( +quotedbl, +quotesingle +); +public.kern2.s = ( +s, +sacute, +scaron, +scedilla, +scircumflex, +scommaaccent +); +public.kern2.t = ( +t, +tbar, +tcaron, +tcommaaccent +); +public.kern2.tethebrew = ( +"tet-hb", +"samekh-hb", +"pe-hb", +"tetdagesh-hb", +"samekhdagesh-hb", +"pedagesh-hb", +"pedagesh-hb.black" +); +public.kern2.tsadihebrew = ( +"tsadi-hb", +"tsadidagesh-hb" +); +public.kern2.u = ( +u, +uacute, +ubreve, +ucircumflex, +udieresis, +ugrave, +uhungarumlaut, +umacron, +uogonek, +uring, +utilde +); +public.kern2.vavhebrew = ( +"vav-hb", +"finalnun-hb", +"vavdagesh-hb" +); +public.kern2.w = ( +w, +wacute, +wcircumflex, +wdieresis, +wgrave +); +public.kern2.y = ( +y, +yacute, +ycircumflex, +ydieresis, +ygrave +); +public.kern2.yodhebrew = ( +"yod-hb", +"yoddagesh-hb" +); +public.kern2.z = ( +z, +zacute, +zcaron, +zdotaccent +); +public.kern2.zayinhebrew = ( +"zayin-hb", +"zayindagesh-hb" +); +}; +}; +versionMajor = 2; +versionMinor = 102; +} diff --git a/sources/Rubik.glyphs b/sources/Rubik.glyphs new file mode 100644 index 00000000..43b5af32 --- /dev/null +++ b/sources/Rubik.glyphs @@ -0,0 +1,88516 @@ +{ +.appVersion = "3135"; +.formatVersion = 3; +axes = ( +{ +name = Weight; +tag = wght; +} +); +classes = ( +{ +code = "alef-hb bet-hb gimel-hb dalet-hb he-hb vav-hb zayin-hb het-hb tet-hb yod-hb finalkaf-hb kaf-hb lamed-hb finalmem-hb mem-hb finalnun-hb nun-hb samekh-hb ayin-hb finalpe-hb pe-hb finaltsadi-hb tsadi-hb qof-hb resh-hb shin-hb tav-hb"; +name = HebrewLetters; +}, +{ +automatic = 1; +code = "A Aacute Abreve Acircumflex Adieresis Agrave Amacron Aogonek Aring Atilde AE AEacute B C Cacute Ccaron Ccedilla Ccircumflex Cdotaccent D Eth Dcaron Dcroat E Eacute Ebreve Ecaron Ecircumflex Edieresis Edotaccent Egrave Emacron Eogonek F G Gbreve Gcircumflex Gcommaaccent Gdotaccent H Hbar Hcircumflex I IJ Iacute Ibreve Icircumflex Idieresis Idotaccent Igrave Imacron Iogonek Itilde J Jacute Jcircumflex K Kcommaaccent L Lacute Lcaron Lcommaaccent Ldot Lslash M N Nacute Ncaron Ncommaaccent Ntilde Eng O Oacute Obreve Ocircumflex Odieresis Ograve Ohungarumlaut Omacron Oslash Oslashacute Otilde OE P Thorn Q R Racute Rcaron Rcommaaccent S Sacute Scaron Scedilla Scircumflex Scommaaccent T Tbar Tcaron Tcommaaccent U Uacute Ubreve Ucircumflex Udieresis Ugrave Uhungarumlaut Umacron Uogonek Uring Utilde V W Wacute Wcircumflex Wdieresis Wgrave X Y Yacute Ycircumflex Ydieresis Ygrave Z Zacute Zcaron Zdotaccent A-cy Be-cy Ve-cy Ge-cy Gje-cy Gheupturn-cy Gedescender-cy Ghestroke-cy Ghemiddlehook-cy De-cy Ie-cy Iegrave-cy Io-cy Zhe-cy Ze-cy Ii-cy Iishort-cy Iigrave-cy Ka-cy Kje-cy El-cy Em-cy En-cy O-cy Pe-cy Er-cy Es-cy Te-cy U-cy Ushort-cy Ef-cy Ha-cy Che-cy Tse-cy Sha-cy Shcha-cy Dzhe-cy Softsign-cy Yeru-cy Hardsign-cy Lje-cy Nje-cy Dze-cy E-cy Ereversed-cy I-cy Yi-cy Je-cy Tshe-cy Iu-cy Ia-cy Dje-cy Yat-cy Yusbig-cy Fita-cy Izhitsa-cy Zhedescender-cy Zedescender-cy Kadescender-cy Kaverticalstroke-cy Kabashkir-cy Endescender-cy Enghe-cy Pedescender-cy Esdescender-cy Ustrait-cy Ustraitstroke-cy Chedescender-cy Cheverticalstroke-cy Shha-cy Palochka-cy Zhebreve-cy Chekhakassian-cy Abreve-cy Adieresis-cy Aie-cy Iebreve-cy Schwa-cy Zhedieresis-cy Zedieresis-cy Imacron-cy Idieresis-cy Odieresis-cy Obarred-cy Umacron-cy Udieresis-cy Uhungarumlaut-cy Chedieresis-cy Yerudieresis-cy Qa-cy We-cy"; +name = Uppercase; +} +); +customParameters = ( +{ +name = panose; +value = ( +0, +0, +0, +0, +0, +0, +0, +0, +0, +0 +); +}, +{ +name = fsType; +value = ( +); +}, +{ +name = "Write lastChange"; +value = 0; +}, +{ +name = "Use Typo Metrics"; +value = 1; +}, +{ +name = "Use Line Breaks"; +value = 1; +}, +{ +name = "Axis Mappings"; +value = { +wght = { +300 = 60; +400 = 90; +500 = 125; +600 = 142; +700 = 160; +800 = 190; +900 = 220; +}; +}; +}, +{ +name = "Enforce Compatibility Check"; +value = 0; +} +); +date = "2017-03-21 06:32:22 +0000"; +familyName = Rubik; +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; +languagesystem latn NLD; + +languagesystem hebr dflt; +languagesystem hebr IWR; +"; +name = Languagesystems; +} +); +features = ( +{ +automatic = 1; +code = "feature locl; +feature subs; +feature sinf; +feature sups; +feature numr; +feature dnom; +feature frac; +feature ordn; +feature pnum; +feature tnum; +feature case; +feature zero; +"; +tag = aalt; +}, +{ +code = "lookup ccmp_Other_1 { + @CombiningTopAccents = [acutecomb brevecomb caroncomb circumflexcomb commaturnedabovecomb dieresiscomb dotaccentcomb gravecomb hungarumlautcomb macroncomb ringcomb tildecomb]; + @CombiningNonTopAccents = [cedillacomb ogonekcomb slashlongcomb slashshortcomb strokeshortcomb]; + sub [i j]' @CombiningTopAccents by [idotless jdotless]; + sub [i j]' @CombiningNonTopAccents @CombiningTopAccents by [idotless jdotless]; + @Markscomb = [brevecomb-cy dieresiscomb dotaccentcomb gravecomb acutecomb hungarumlautcomb circumflexcomb caroncomb brevecomb ringcomb tildecomb macroncomb commaaccentcomb cedillacomb ogonekcomb]; + @MarkscombCase = [brevecomb-cy.case dieresiscomb.case dotaccentcomb.case gravecomb.case acutecomb.case hungarumlautcomb.case circumflexcomb.case caroncomb.case brevecomb.case ringcomb.case tildecomb.case macroncomb.case commaaccentcomb.case cedillacomb.case ogonekcomb.case]; + sub @Markscomb @Markscomb' by @MarkscombCase; + sub @Uppercase @Markscomb' by @MarkscombCase; +} ccmp_Other_1; + +lookup ccmp_Other_2 { + sub @Markscomb' @MarkscombCase by @MarkscombCase; + sub @MarkscombCase @Markscomb' by @MarkscombCase; +} ccmp_Other_2; + +lookup ccmp_Other_3 { + sub yod-hb dagesh-hb by yoddagesh-hb; + sub vav-hb dagesh-hb by vavdagesh-hb; + sub pe-hb dagesh-hb by pedagesh-hb; + sub finalpe-hb dagesh-hb by finalpedagesh-hb; +} ccmp_Other_3; + +lookup ccmp_latn_1 { + sub fi by f i; + sub fl by f l; + sub Ldot by L periodcentered.loclCAT.case; +} ccmp_latn_1; + +script latn; +lookup ccmp_latn_1; +"; +tag = ccmp; +}, +{ +automatic = 1; +code = "lookup locl_latn_0 { + script latn; + language AZE; + sub i by idotaccent; + language CRT; + sub i by idotaccent; + language KAZ; + sub i by idotaccent; + language TAT; + sub i by idotaccent; + language TRK; + sub i by idotaccent; +} locl_latn_0; + +lookup locl_latn_1 { + script latn; + language ROM; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; + language MOL; + sub Scedilla by Scommaaccent; + sub scedilla by scommaaccent; +} locl_latn_1; + +lookup locl_latn_2 { + script latn; + language CAT; + sub l periodcentered' l by periodcentered.loclCAT; + sub L periodcentered' L by periodcentered.loclCAT.case; +} locl_latn_2; + +lookup locl_latn_3 { + script latn; + language NLD; + sub iacute j' by jacute; + sub Iacute J' by Jacute; +} locl_latn_3; +"; +tag = locl; +}, +{ +automatic = 1; +code = "sub zero by zeroinferior; +sub one by oneinferior; +sub two by twoinferior; +sub three by threeinferior; +sub four by fourinferior; +sub five by fiveinferior; +sub six by sixinferior; +sub seven by seveninferior; +sub eight by eightinferior; +sub nine by nineinferior; +sub parenleft by parenleftinferior; +sub parenright by parenrightinferior; +"; +tag = subs; +}, +{ +automatic = 1; +code = "sub zero by zeroinferior; +sub one by oneinferior; +sub two by twoinferior; +sub three by threeinferior; +sub four by fourinferior; +sub five by fiveinferior; +sub six by sixinferior; +sub seven by seveninferior; +sub eight by eightinferior; +sub nine by nineinferior; +sub parenleft by parenleftinferior; +sub parenright by parenrightinferior; +"; +tag = sinf; +}, +{ +automatic = 1; +code = "sub zero by zerosuperior; +sub one by onesuperior; +sub two by twosuperior; +sub three by threesuperior; +sub four by foursuperior; +sub five by fivesuperior; +sub six by sixsuperior; +sub seven by sevensuperior; +sub eight by eightsuperior; +sub nine by ninesuperior; +sub parenleft by parenleftsuperior; +sub parenright by parenrightsuperior; +"; +tag = sups; +}, +{ +automatic = 1; +code = "sub zero by zero.numr; +sub one by one.numr; +sub two by two.numr; +sub three by three.numr; +sub four by four.numr; +sub five by five.numr; +sub six by six.numr; +sub seven by seven.numr; +sub eight by eight.numr; +sub nine by nine.numr; +"; +tag = numr; +}, +{ +automatic = 1; +code = "sub zero by zero.dnom; +sub one by one.dnom; +sub two by two.dnom; +sub three by three.dnom; +sub four by four.dnom; +sub five by five.dnom; +sub six by six.dnom; +sub seven by seven.dnom; +sub eight by eight.dnom; +sub nine by nine.dnom; +"; +tag = dnom; +}, +{ +automatic = 1; +code = "lookup FRAC { + sub slash by fraction; +} FRAC; +lookup UP { + sub [zero one two three four five six seven eight nine] by [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]; +} UP; +lookup DOWN { + sub fraction [zero.numr one.numr two.numr three.numr four.numr five.numr six.numr seven.numr eight.numr nine.numr]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; + sub [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]' by [zero.dnom one.dnom two.dnom three.dnom four.dnom five.dnom six.dnom seven.dnom eight.dnom nine.dnom]; +} DOWN; +"; +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 parenleft.tf by parenleft; +sub parenright.tf by parenright; +"; +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 parenleft by parenleft.tf; +sub parenright by parenright.tf; +"; +tag = tnum; +}, +{ +automatic = 1; +code = "sub periodcentered.loclCAT by periodcentered.loclCAT.case; +sub hyphen by hyphen.case; +sub endash by endash.case; +sub emdash by emdash.case; +sub parenleft by parenleft.case; +sub parenright by parenright.case; +sub braceleft by braceleft.case; +sub braceright by braceright.case; +sub bracketleft by bracketleft.case; +sub bracketright by bracketright.case; +sub guillemetleft by guillemetleft.case; +sub guillemetright by guillemetright.case; +sub guilsinglleft by guilsinglleft.case; +sub guilsinglright by guilsinglright.case; +sub at by at.case; +sub plus by plus.case; +sub minus by minus.case; +sub multiply by multiply.case; +sub divide by divide.case; +sub equal by equal.case; +sub notequal by notequal.case; +sub approxequal by approxequal.case; +sub asciitilde by asciitilde.case; +sub brevecomb-cy by brevecomb-cy.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; +sub commaaccentcomb by commaaccentcomb.case; +sub cedillacomb by cedillacomb.case; +sub ogonekcomb by ogonekcomb.case; +"; +tag = case; +}, +{ +automatic = 1; +code = "lookupflag IgnoreMarks; +sub f f i by f_f_i; +sub f f l by f_f_l; +sub f f by f_f; +sub f i by fi; +sub f l by fl; +"; +tag = liga; +}, +{ +code = ""; +disabled = 1; +tag = dlig; +}, +{ +automatic = 1; +code = "sub zero by zero.zero; +sub zero.tf by zero.tf.zero; +"; +tag = zero; +} +); +fontMaster = ( +{ +axesValues = ( +60 +); +customParameters = ( +{ +name = hheaAscender; +value = 935; +}, +{ +name = hheaDescender; +value = -250; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 935; +}, +{ +name = typoDescender; +value = -250; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = underlinePosition; +value = -50; +}, +{ +name = winAscent; +value = 945; +}, +{ +name = winDescent; +value = 307; +}, +{ +name = TTFStems; +value = ( +{ +horizontal = 1; +name = "X: 79"; +width = 79; +}, +{ +horizontal = 1; +name = "Y: 80"; +width = 80; +}, +{ +horizontal = 1; +name = "Y: 160"; +width = 160; +}, +{ +horizontal = 1; +name = "Y: 175"; +width = 175; +}, +{ +horizontal = 1; +name = "Y: 195"; +width = 195; +}, +{ +horizontal = 1; +name = "X: 233"; +width = 233; +}, +{ +horizontal = 1; +name = "X: 250"; +width = 250; +} +); +}, +{ +name = "Master Icon Glyph Name"; +value = r; +}, +{ +name = "Alignment Zones"; +value = ( +{ +pos = "-190"; +size = "-30"; +} +); +} +); +iconName = Light; +id = "581BC726-83A6-4935-8633-5A6508251040"; +metricValues = ( +{ +pos = 750; +}, +{ +over = 10; +pos = 700; +}, +{ +over = 10; +pos = 520; +}, +{ +over = -10; +}, +{ +pos = -225; +}, +{ +} +); +name = Light; +stemValues = ( +60, +60, +60 +); +userData = { +com.defcon.sortDescriptor = ( +{ +ascending = ( +space, +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, +zero, +one, +two, +three, +four, +five, +six, +seven, +eight, +nine, +exclam, +exclamdown, +question, +questiondown, +comma, +period, +colon, +semicolon, +ellipsis, +periodcentered, +hyphen, +quotesingle, +quotedbl, +quoteleft, +quoteright, +quotesinglbase, +quotedblleft, +quotedblright, +quotedblbase, +parenleft, +parenright, +bracketleft, +bracketright, +braceleft, +braceright, +ampersand, +Aacute, +Abreve, +Acircumflex, +Adieresis, +Agrave, +Amacron, +Aogonek, +Aring, +Atilde, +AE, +AEacute, +Cacute, +Ccaron, +Ccedilla, +Ccircumflex, +Cdotaccent, +Eth, +Dcaron, +Dcroat, +Eacute, +Ebreve, +Ecaron, +Ecircumflex, +Edieresis, +Edotaccent, +Egrave, +Emacron, +Eogonek, +Gbreve, +Gcircumflex, +Gcommaaccent, +Gdotaccent, +Hbar, +Hcircumflex, +IJ, +Iacute, +Ibreve, +Icircumflex, +Idieresis, +Idotaccent, +Igrave, +Imacron, +Iogonek, +Itilde, +Jcircumflex, +Kcommaaccent, +Lacute, +Lcaron, +Lcommaaccent, +Ldot, +Lslash, +Nacute, +Ncaron, +Ncommaaccent, +Eng, +Ntilde, +Oacute, +Obreve, +Ocircumflex, +Odieresis, +Ograve, +Ohungarumlaut, +Omacron, +Oslash, +Oslashacute, +Otilde, +OE, +Thorn, +Racute, +Rcaron, +Rcommaaccent, +Sacute, +Scaron, +Scedilla, +Scircumflex, +Scommaaccent, +Tbar, +Tcaron, +Tcommaaccent, +Uacute, +Ubreve, +Ucircumflex, +Udieresis, +Ugrave, +Uhungarumlaut, +Umacron, +Uogonek, +Uring, +Utilde, +Wacute, +Wcircumflex, +Wdieresis, +Wgrave, +Yacute, +Ycircumflex, +Ydieresis, +Ygrave, +Zacute, +Zcaron, +Zdotaccent, +aacute, +abreve, +acircumflex, +adieresis, +agrave, +amacron, +aogonek, +aring, +atilde, +ae, +aeacute, +cacute, +ccaron, +ccedilla, +ccircumflex, +cdotaccent, +eth, +dcaron, +dcroat, +eacute, +ebreve, +ecaron, +ecircumflex, +edieresis, +edotaccent, +egrave, +emacron, +eogonek, +gbreve, +gcircumflex, +gcommaaccent, +gdotaccent, +hbar, +hcircumflex, +idotless, +iacute, +ibreve, +icircumflex, +idieresis, +igrave, +ij, +imacron, +iogonek, +itilde, +jdotless, +jcircumflex, +kcommaaccent, +kgreenlandic, +lacute, +lcaron, +lcommaaccent, +ldot, +lslash, +nacute, +napostrophe, +ncaron, +ncommaaccent, +eng, +ntilde, +oacute, +obreve, +ocircumflex, +odieresis, +ograve, +ohungarumlaut, +omacron, +oslash, +oslashacute, +otilde, +oe, +thorn, +racute, +rcaron, +rcommaaccent, +sacute, +scaron, +scedilla, +scircumflex, +scommaaccent, +germandbls, +longs, +tbar, +tcaron, +tcommaaccent, +uacute, +ubreve, +ucircumflex, +udieresis, +ugrave, +uhungarumlaut, +umacron, +uogonek, +uring, +utilde, +wacute, +wcircumflex, +wdieresis, +wgrave, +yacute, +ycircumflex, +ydieresis, +ygrave, +zacute, +zcaron, +zdotaccent, +f_f, +f_f_i, +f_f_l, +fi, +fl, +ordfeminine, +ordmasculine, +"A-cy", +"Be-cy", +"Ve-cy", +"Ge-cy", +"Gje-cy", +"Gheupturn-cy", +"De-cy", +"Ie-cy", +"Iegrave-cy", +"Io-cy", +"Zhe-cy", +"Ze-cy", +"Ii-cy", +"Iishort-cy", +"Iigrave-cy", +"Ka-cy", +"Kje-cy", +"El-cy", +"Em-cy", +"En-cy", +"O-cy", +"Pe-cy", +"Er-cy", +"Es-cy", +"Te-cy", +"U-cy", +"Ushort-cy", +"Ef-cy", +"Ha-cy", +"Che-cy", +"Tse-cy", +"Sha-cy", +"Shcha-cy", +"Dzhe-cy", +"Softsign-cy", +"Hardsign-cy", +"Yeru-cy", +"Lje-cy", +"Nje-cy", +"Dze-cy", +"E-cy", +"Ereversed-cy", +"I-cy", +"Yi-cy", +"Je-cy", +"Tshe-cy", +"Iu-cy", +"Ia-cy", +"Dje-cy", +"Yat-cy", +"Yusbig-cy", +"Fita-cy", +"Izhitsa-cy", +"Ghestroke-cy", +"Ghemiddlehook-cy", +"Zhedescender-cy", +"Zedescender-cy", +"Kadescender-cy", +"Kaverticalstroke-cy", +"Kabashkir-cy", +"Endescender-cy", +"Enghe-cy", +"Pedescender-cy", +"Esdescender-cy", +"Ustrait-cy", +"Ustraitstroke-cy", +"Chedescender-cy", +"Cheverticalstroke-cy", +"Shha-cy", +"Palochka-cy", +"Zhebreve-cy", +"Chekhakassian-cy", +"Abreve-cy", +"Adieresis-cy", +"Aie-cy", +"Iebreve-cy", +"Schwa-cy", +"Zhedieresis-cy", +"Zedieresis-cy", +"Imacron-cy", +"Idieresis-cy", +"Odieresis-cy", +"Obarred-cy", +"Umacron-cy", +"Udieresis-cy", +"Uhungarumlaut-cy", +"Chedieresis-cy", +"Gedescender-cy", +"Yerudieresis-cy", +"Qa-cy", +"We-cy", +"a-cy", +"be-cy", +"ve-cy", +"ge-cy", +"gje-cy", +"gheupturn-cy", +"de-cy", +"ie-cy", +"iegrave-cy", +"io-cy", +"zhe-cy", +"ze-cy", +"ii-cy", +"iishort-cy", +"iigrave-cy", +"ka-cy", +"kje-cy", +"el-cy", +"em-cy", +"en-cy", +"o-cy", +"pe-cy", +"er-cy", +"es-cy", +"te-cy", +"u-cy", +"ushort-cy", +"ef-cy", +"ha-cy", +"che-cy", +"tse-cy", +"sha-cy", +"shcha-cy", +"dzhe-cy", +"softsign-cy", +"hardsign-cy", +"yeru-cy", +"lje-cy", +"nje-cy", +"dze-cy", +"e-cy", +"ereversed-cy", +"i-cy", +"yi-cy", +"je-cy", +"tshe-cy", +"iu-cy", +"ia-cy", +"dje-cy", +"yat-cy", +"yusbig-cy", +"fita-cy", +"izhitsa-cy", +"ghestroke-cy", +"ghemiddlehook-cy", +"zhedescender-cy", +"zedescender-cy", +"kadescender-cy", +"kaverticalstroke-cy", +"kabashkir-cy", +"endescender-cy", +"enghe-cy", +"pedescender-cy", +"esdescender-cy", +"ustrait-cy", +"ustraitstroke-cy", +"chedescender-cy", +"cheverticalstroke-cy", +"shha-cy", +"palochka-cy", +"zhebreve-cy", +"chekhakassian-cy", +"abreve-cy", +"adieresis-cy", +"aie-cy", +"iebreve-cy", +"schwa-cy", +"zhedieresis-cy", +"zedieresis-cy", +"imacron-cy", +"idieresis-cy", +"odieresis-cy", +"obarred-cy", +"umacron-cy", +"udieresis-cy", +"uhungarumlaut-cy", +"chedieresis-cy", +"gedescender-cy", +"yerudieresis-cy", +"qa-cy", +"we-cy", +"yodyod-hb", +"alef-hb", +"bet-hb", +"gimel-hb", +"dalet-hb", +"he-hb", +"vav-hb", +"zayin-hb", +"het-hb", +"tet-hb", +"yod-hb", +"finalkaf-hb", +"kaf-hb", +"lamed-hb", +"finalmem-hb", +"mem-hb", +"finalnun-hb", +"nun-hb", +"samekh-hb", +"ayin-hb", +"finalpe-hb", +"pe-hb", +"finaltsadi-hb", +"tsadi-hb", +"qof-hb", +"resh-hb", +"shin-hb", +"tav-hb", +"shinshindot-hb", +"shinsindot-hb", +"shindageshshindot-hb", +"shindageshsindot-hb", +"alefpatah-hb", +"alefqamats-hb", +"alefdagesh-hb", +"betdagesh-hb", +"gimeldagesh-hb", +"daletdagesh-hb", +"hedagesh-hb", +"vavdagesh-hb", +"zayindagesh-hb", +"tetdagesh-hb", +"yoddagesh-hb", +"finalkafdagesh-hb", +"kafdagesh-hb", +"lameddagesh-hb", +"memdagesh-hb", +"nundagesh-hb", +"samekhdagesh-hb", +"finalpedagesh-hb", +"pedagesh-hb", +"tsadidagesh-hb", +"qofdagesh-hb", +"reshdagesh-hb", +"shindagesh-hb", +"tavdagesh-hb", +"vavholam-hb", +"finalpedagesh-hb.black", +"pedagesh-hb.black", +zero.denominator, +one.denominator, +two.denominator, +three.denominator, +four.denominator, +five.denominator, +six.denominator, +seven.denominator, +eight.denominator, +nine.denominator, +zero.numerator, +one.numerator, +two.numerator, +three.numerator, +four.numerator, +five.numerator, +six.numerator, +seven.numerator, +eight.numerator, +nine.numerator, +zero.otlf, +one.otlf, +two.otlf, +three.otlf, +four.otlf, +five.otlf, +six.otlf, +seven.otlf, +eight.otlf, +nine.otlf, +zeroinferior, +oneinferior, +twoinferior, +threeinferior, +fourinferior, +fiveinferior, +sixinferior, +seveninferior, +eightinferior, +nineinferior, +zerosuperior, +onesuperior, +twosuperior, +threesuperior, +foursuperior, +fivesuperior, +sixsuperior, +sevensuperior, +eightsuperior, +ninesuperior, +fraction, +onehalf, +onethird, +twothirds, +onequarter, +threequarters, +oneeighth, +threeeighths, +fiveeighths, +seveneighths, +asterisk, +backslash, +bullet, +numbersign, +slash, +underscore, +parenleftinferior, +parenrightinferior, +parenleftsuperior, +parenrightsuperior, +braceleft.case, +braceright.case, +bracketleft.case, +bracketright.case, +parenleft.case, +parenright.case, +parenleft.denominator, +parenright.denominator, +parenleft.numerator, +parenright.numerator, +parenleft.otlf, +parenright.otlf, +emdash, +endash, +softhyphen, +emdash.case, +endash.case, +hyphen.case, +guillemetleft, +guillemetright, +guilsinglleft, +guilsinglright, +guillemetleft.case, +guillemetright.case, +guilsinglleft.case, +guilsinglright.case, +"geresh-hb", +"gershayim-hb", +"maqaf-hb", +nbspace, +CR, +.notdef, +cent, +currency, +dollar, +euro, +florin, +hryvnia, +ruble, +sheqel, +sterling, +tenge, +tugrik, +yen, +divisionslash, +plus, +minus, +multiply, +divide, +equal, +notequal, +greater, +less, +greaterequal, +lessequal, +plusminus, +approxequal, +asciitilde, +logicalnot, +infinity, +integral, +increment, +product, +summation, +radical, +partialdiff, +micro, +percent, +perthousand, +plus.case, +minus.case, +multiply.case, +divide.case, +equal.case, +notequal.case, +approxequal.case, +asciitilde.case, +lozenge, +at, +paragraph, +section, +copyright, +registered, +trademark, +degree, +bar, +brokenbar, +dagger, +daggerdbl, +estimated, +numero, +asciicircum, +at.case, +dieresiscomb, +dotaccentcomb, +gravecomb, +acutecomb, +hungarumlautcomb, +circumflexcomb, +caroncomb, +brevecomb, +ringcomb, +tildecomb, +macroncomb, +commaaccentcomb, +cedillacomb, +ogonekcomb, +strokeshortcomb, +dieresiscomb.case, +dotaccentcomb.case, +gravecomb.case, +acutecomb.case, +hungarumlautcomb.case, +circumflexcomb.case, +caroncomb.case, +brevecomb.case, +ringcomb.case, +tildecomb.case, +macroncomb.case, +commaaccentcomb.case, +cedillacomb.case, +ogonekcomb.case, +apostrophemod, +acute, +breve, +caron, +cedilla, +circumflex, +dieresis, +dotaccent, +grave, +hungarumlaut, +macron, +ogonek, +ring, +tilde, +"sheva-hb", +"hatafsegol-hb", +"hatafpatah-hb", +"hatafqamats-hb", +"hiriq-hb", +"tsere-hb", +"segol-hb", +"patah-hb", +"holam-hb", +"holamhaser-hb", +"qubuts-hb", +"dagesh-hb", +"shindot-hb", +"sindot-hb", +"qamatsqatan-hb", +"brevecomb-cy", +"brevecomb-cy.case", +"descender-cy", +"descender-cy.case", +NULL, +"verticalbar-cy", +"verticalbar-cy.case", +euro.BRACKET.125, +hryvnia.BRACKET.125, +yen.BRACKET.125 +); +type = glyphList; +} +); +com.github.googlei18n.ufo2ft.filters = ( +{ +name = propagateAnchors; +pre = 1; +}, +{ +name = flattenComponents; +} +); +com.typemytype.robofont.compileSettings.autohint = 1; +com.typemytype.robofont.compileSettings.checkOutlines = 0; +com.typemytype.robofont.compileSettings.createDummyDSIG = 1; +com.typemytype.robofont.compileSettings.decompose = 0; +com.typemytype.robofont.compileSettings.generateFormat = 0; +com.typemytype.robofont.compileSettings.releaseMode = 0; +com.typemytype.robofont.italicSlantOffset = 0; +com.typemytype.robofont.segmentType = curve; +com.typemytype.robofont.shouldAddPointsInSplineConversion = 1; +com.typemytype.robofont.smartSets.uniqueKey = "4957720720"; +}; +visible = 1; +}, +{ +axesValues = ( +220 +); +customParameters = ( +{ +name = hheaAscender; +value = 935; +}, +{ +name = hheaDescender; +value = -250; +}, +{ +name = hheaLineGap; +value = 0; +}, +{ +name = typoAscender; +value = 935; +}, +{ +name = typoDescender; +value = -250; +}, +{ +name = typoLineGap; +value = 0; +}, +{ +name = underlinePosition; +value = -75; +}, +{ +name = winAscent; +value = 945; +}, +{ +name = winDescent; +value = 307; +}, +{ +name = TTFStems; +value = ( +{ +horizontal = 1; +name = "X: 79"; +width = 79; +}, +{ +horizontal = 1; +name = "Y: 80"; +width = 80; +}, +{ +horizontal = 1; +name = "Y: 160"; +width = 160; +}, +{ +horizontal = 1; +name = "Y: 175"; +width = 175; +}, +{ +horizontal = 1; +name = "Y: 195"; +width = 195; +}, +{ +horizontal = 1; +name = "X: 233"; +width = 233; +}, +{ +horizontal = 1; +name = "X: 250"; +width = 250; +} +); +}, +{ +name = "Master Icon Glyph Name"; +value = r; +}, +{ +name = "Alignment Zones"; +value = ( +{ +pos = "-190"; +size = "-30"; +} +); +} +); +iconName = Bold; +id = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +metricValues = ( +{ +pos = 750; +}, +{ +over = 10; +pos = 700; +}, +{ +over = 10; +pos = 520; +}, +{ +over = -10; +}, +{ +pos = -225; +}, +{ +} +); +name = Black; +stemValues = ( +160, +220, +250 +); +userData = { +com.defcon.sortDescriptor = ( +{ +ascending = ( +space, +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, +zero, +one, +two, +three, +four, +five, +six, +seven, +eight, +nine, +exclam, +exclamdown, +question, +questiondown, +comma, +period, +colon, +semicolon, +ellipsis, +periodcentered, +hyphen, +quotesingle, +quotedbl, +quoteleft, +quoteright, +quotesinglbase, +quotedblleft, +quotedblright, +quotedblbase, +parenleft, +parenright, +bracketleft, +bracketright, +braceleft, +braceright, +ampersand, +Aacute, +Abreve, +Acircumflex, +Adieresis, +Agrave, +Amacron, +Aogonek, +Aring, +Atilde, +AE, +AEacute, +Cacute, +Ccaron, +Ccedilla, +Ccircumflex, +Cdotaccent, +Eth, +Dcaron, +Dcroat, +Eacute, +Ebreve, +Ecaron, +Ecircumflex, +Edieresis, +Edotaccent, +Egrave, +Emacron, +Eogonek, +Gbreve, +Gcircumflex, +Gcommaaccent, +Gdotaccent, +Hbar, +Hcircumflex, +IJ, +Iacute, +Ibreve, +Icircumflex, +Idieresis, +Idotaccent, +Igrave, +Imacron, +Iogonek, +Itilde, +Jcircumflex, +Kcommaaccent, +Lacute, +Lcaron, +Lcommaaccent, +Ldot, +Lslash, +Nacute, +Ncaron, +Ncommaaccent, +Eng, +Ntilde, +Oacute, +Obreve, +Ocircumflex, +Odieresis, +Ograve, +Ohungarumlaut, +Omacron, +Oslash, +Oslashacute, +Otilde, +OE, +Thorn, +Racute, +Rcaron, +Rcommaaccent, +Sacute, +Scaron, +Scedilla, +Scircumflex, +Scommaaccent, +Tbar, +Tcaron, +Tcommaaccent, +Uacute, +Ubreve, +Ucircumflex, +Udieresis, +Ugrave, +Uhungarumlaut, +Umacron, +Uogonek, +Uring, +Utilde, +Wacute, +Wcircumflex, +Wdieresis, +Wgrave, +Yacute, +Ycircumflex, +Ydieresis, +Ygrave, +Zacute, +Zcaron, +Zdotaccent, +aacute, +abreve, +acircumflex, +adieresis, +agrave, +amacron, +aogonek, +aring, +atilde, +ae, +aeacute, +cacute, +ccaron, +ccedilla, +ccircumflex, +cdotaccent, +eth, +dcaron, +dcroat, +eacute, +ebreve, +ecaron, +ecircumflex, +edieresis, +edotaccent, +egrave, +emacron, +eogonek, +gbreve, +gcircumflex, +gcommaaccent, +gdotaccent, +hbar, +hcircumflex, +idotless, +iacute, +ibreve, +icircumflex, +idieresis, +igrave, +ij, +imacron, +iogonek, +itilde, +jdotless, +jcircumflex, +kcommaaccent, +kgreenlandic, +lacute, +lcaron, +lcommaaccent, +ldot, +lslash, +nacute, +napostrophe, +ncaron, +ncommaaccent, +eng, +ntilde, +oacute, +obreve, +ocircumflex, +odieresis, +ograve, +ohungarumlaut, +omacron, +oslash, +oslashacute, +otilde, +oe, +thorn, +racute, +rcaron, +rcommaaccent, +sacute, +scaron, +scedilla, +scircumflex, +scommaaccent, +germandbls, +longs, +tbar, +tcaron, +tcommaaccent, +uacute, +ubreve, +ucircumflex, +udieresis, +ugrave, +uhungarumlaut, +umacron, +uogonek, +uring, +utilde, +wacute, +wcircumflex, +wdieresis, +wgrave, +yacute, +ycircumflex, +ydieresis, +ygrave, +zacute, +zcaron, +zdotaccent, +f_f, +f_f_i, +f_f_l, +fi, +fl, +ordfeminine, +ordmasculine, +"A-cy", +"Be-cy", +"Ve-cy", +"Ge-cy", +"Gje-cy", +"Gheupturn-cy", +"De-cy", +"Ie-cy", +"Iegrave-cy", +"Io-cy", +"Zhe-cy", +"Ze-cy", +"Ii-cy", +"Iishort-cy", +"Iigrave-cy", +"Ka-cy", +"Kje-cy", +"El-cy", +"Em-cy", +"En-cy", +"O-cy", +"Pe-cy", +"Er-cy", +"Es-cy", +"Te-cy", +"U-cy", +"Ushort-cy", +"Ef-cy", +"Ha-cy", +"Che-cy", +"Tse-cy", +"Sha-cy", +"Shcha-cy", +"Dzhe-cy", +"Softsign-cy", +"Hardsign-cy", +"Yeru-cy", +"Lje-cy", +"Nje-cy", +"Dze-cy", +"E-cy", +"Ereversed-cy", +"I-cy", +"Yi-cy", +"Je-cy", +"Tshe-cy", +"Iu-cy", +"Ia-cy", +"Dje-cy", +"Yat-cy", +"Yusbig-cy", +"Fita-cy", +"Izhitsa-cy", +"Ghestroke-cy", +"Ghemiddlehook-cy", +"Zhedescender-cy", +"Zedescender-cy", +"Kadescender-cy", +"Kaverticalstroke-cy", +"Kabashkir-cy", +"Endescender-cy", +"Enghe-cy", +"Pedescender-cy", +"Esdescender-cy", +"Ustrait-cy", +"Ustraitstroke-cy", +"Chedescender-cy", +"Cheverticalstroke-cy", +"Shha-cy", +"Palochka-cy", +"Zhebreve-cy", +"Chekhakassian-cy", +"Abreve-cy", +"Adieresis-cy", +"Aie-cy", +"Iebreve-cy", +"Schwa-cy", +"Zhedieresis-cy", +"Zedieresis-cy", +"Imacron-cy", +"Idieresis-cy", +"Odieresis-cy", +"Obarred-cy", +"Umacron-cy", +"Udieresis-cy", +"Uhungarumlaut-cy", +"Chedieresis-cy", +"Gedescender-cy", +"Yerudieresis-cy", +"Qa-cy", +"We-cy", +"a-cy", +"be-cy", +"ve-cy", +"ge-cy", +"gje-cy", +"gheupturn-cy", +"de-cy", +"ie-cy", +"iegrave-cy", +"io-cy", +"zhe-cy", +"ze-cy", +"ii-cy", +"iishort-cy", +"iigrave-cy", +"ka-cy", +"kje-cy", +"el-cy", +"em-cy", +"en-cy", +"o-cy", +"pe-cy", +"er-cy", +"es-cy", +"te-cy", +"u-cy", +"ushort-cy", +"ef-cy", +"ha-cy", +"che-cy", +"tse-cy", +"sha-cy", +"shcha-cy", +"dzhe-cy", +"softsign-cy", +"hardsign-cy", +"yeru-cy", +"lje-cy", +"nje-cy", +"dze-cy", +"e-cy", +"ereversed-cy", +"i-cy", +"yi-cy", +"je-cy", +"tshe-cy", +"iu-cy", +"ia-cy", +"dje-cy", +"yat-cy", +"yusbig-cy", +"fita-cy", +"izhitsa-cy", +"ghestroke-cy", +"ghemiddlehook-cy", +"zhedescender-cy", +"zedescender-cy", +"kadescender-cy", +"kaverticalstroke-cy", +"kabashkir-cy", +"endescender-cy", +"enghe-cy", +"pedescender-cy", +"esdescender-cy", +"ustrait-cy", +"ustraitstroke-cy", +"chedescender-cy", +"cheverticalstroke-cy", +"shha-cy", +"palochka-cy", +"zhebreve-cy", +"chekhakassian-cy", +"abreve-cy", +"adieresis-cy", +"aie-cy", +"iebreve-cy", +"schwa-cy", +"zhedieresis-cy", +"zedieresis-cy", +"imacron-cy", +"idieresis-cy", +"odieresis-cy", +"obarred-cy", +"umacron-cy", +"udieresis-cy", +"uhungarumlaut-cy", +"chedieresis-cy", +"gedescender-cy", +"yerudieresis-cy", +"qa-cy", +"we-cy", +"yodyod-hb", +"alef-hb", +"bet-hb", +"gimel-hb", +"dalet-hb", +"he-hb", +"vav-hb", +"zayin-hb", +"het-hb", +"tet-hb", +"yod-hb", +"finalkaf-hb", +"kaf-hb", +"lamed-hb", +"finalmem-hb", +"mem-hb", +"finalnun-hb", +"nun-hb", +"samekh-hb", +"ayin-hb", +"finalpe-hb", +"pe-hb", +"finaltsadi-hb", +"tsadi-hb", +"qof-hb", +"resh-hb", +"shin-hb", +"tav-hb", +"shinshindot-hb", +"shinsindot-hb", +"shindageshshindot-hb", +"shindageshsindot-hb", +"alefpatah-hb", +"alefqamats-hb", +"alefdagesh-hb", +"betdagesh-hb", +"gimeldagesh-hb", +"daletdagesh-hb", +"hedagesh-hb", +"vavdagesh-hb", +"zayindagesh-hb", +"tetdagesh-hb", +"yoddagesh-hb", +"finalkafdagesh-hb", +"kafdagesh-hb", +"lameddagesh-hb", +"memdagesh-hb", +"nundagesh-hb", +"samekhdagesh-hb", +"finalpedagesh-hb", +"pedagesh-hb", +"tsadidagesh-hb", +"qofdagesh-hb", +"reshdagesh-hb", +"shindagesh-hb", +"tavdagesh-hb", +"vavholam-hb", +"finalpedagesh-hb.black", +"pedagesh-hb.black", +zero.denominator, +one.denominator, +two.denominator, +three.denominator, +four.denominator, +five.denominator, +six.denominator, +seven.denominator, +eight.denominator, +nine.denominator, +zero.numerator, +one.numerator, +two.numerator, +three.numerator, +four.numerator, +five.numerator, +six.numerator, +seven.numerator, +eight.numerator, +nine.numerator, +zero.otlf, +one.otlf, +two.otlf, +three.otlf, +four.otlf, +five.otlf, +six.otlf, +seven.otlf, +eight.otlf, +nine.otlf, +zeroinferior, +oneinferior, +twoinferior, +threeinferior, +fourinferior, +fiveinferior, +sixinferior, +seveninferior, +eightinferior, +nineinferior, +zerosuperior, +onesuperior, +twosuperior, +threesuperior, +foursuperior, +fivesuperior, +sixsuperior, +sevensuperior, +eightsuperior, +ninesuperior, +fraction, +onehalf, +onethird, +twothirds, +onequarter, +threequarters, +oneeighth, +threeeighths, +fiveeighths, +seveneighths, +asterisk, +backslash, +bullet, +numbersign, +slash, +underscore, +parenleftinferior, +parenrightinferior, +parenleftsuperior, +parenrightsuperior, +braceleft.case, +braceright.case, +bracketleft.case, +bracketright.case, +parenleft.case, +parenright.case, +parenleft.denominator, +parenright.denominator, +parenleft.numerator, +parenright.numerator, +parenleft.otlf, +parenright.otlf, +emdash, +endash, +softhyphen, +emdash.case, +endash.case, +hyphen.case, +guillemetleft, +guillemetright, +guilsinglleft, +guilsinglright, +guillemetleft.case, +guillemetright.case, +guilsinglleft.case, +guilsinglright.case, +"geresh-hb", +"gershayim-hb", +"maqaf-hb", +nbspace, +CR, +.notdef, +cent, +currency, +dollar, +euro, +florin, +hryvnia, +ruble, +sheqel, +sterling, +tenge, +tugrik, +yen, +divisionslash, +plus, +minus, +multiply, +divide, +equal, +notequal, +greater, +less, +greaterequal, +lessequal, +plusminus, +approxequal, +asciitilde, +logicalnot, +infinity, +integral, +increment, +product, +summation, +radical, +partialdiff, +micro, +percent, +perthousand, +plus.case, +minus.case, +multiply.case, +divide.case, +equal.case, +notequal.case, +approxequal.case, +asciitilde.case, +lozenge, +at, +paragraph, +section, +copyright, +registered, +trademark, +degree, +bar, +brokenbar, +dagger, +daggerdbl, +estimated, +numero, +asciicircum, +at.case, +dieresiscomb, +dotaccentcomb, +gravecomb, +acutecomb, +hungarumlautcomb, +circumflexcomb, +caroncomb, +brevecomb, +ringcomb, +tildecomb, +macroncomb, +commaaccentcomb, +cedillacomb, +ogonekcomb, +strokeshortcomb, +dieresiscomb.case, +dotaccentcomb.case, +gravecomb.case, +acutecomb.case, +hungarumlautcomb.case, +circumflexcomb.case, +caroncomb.case, +brevecomb.case, +ringcomb.case, +tildecomb.case, +macroncomb.case, +commaaccentcomb.case, +cedillacomb.case, +ogonekcomb.case, +apostrophemod, +acute, +breve, +caron, +cedilla, +circumflex, +dieresis, +dotaccent, +grave, +hungarumlaut, +macron, +ogonek, +ring, +tilde, +"sheva-hb", +"hatafsegol-hb", +"hatafpatah-hb", +"hatafqamats-hb", +"hiriq-hb", +"tsere-hb", +"segol-hb", +"patah-hb", +"holam-hb", +"holamhaser-hb", +"qubuts-hb", +"dagesh-hb", +"shindot-hb", +"sindot-hb", +"qamatsqatan-hb", +"brevecomb-cy", +"brevecomb-cy.case", +"descender-cy", +"descender-cy.case", +NULL, +"verticalbar-cy", +"verticalbar-cy.case", +euro.BRACKET.125, +hryvnia.BRACKET.125, +yen.BRACKET.125 +); +type = glyphList; +} +); +com.github.googlei18n.ufo2ft.filters = ( +{ +name = propagateAnchors; +pre = 1; +}, +{ +name = flattenComponents; +} +); +com.typemytype.robofont.compileSettings.autohint = 1; +com.typemytype.robofont.compileSettings.checkOutlines = 0; +com.typemytype.robofont.compileSettings.createDummyDSIG = 1; +com.typemytype.robofont.compileSettings.decompose = 0; +com.typemytype.robofont.compileSettings.generateFormat = 0; +com.typemytype.robofont.compileSettings.releaseMode = 0; +com.typemytype.robofont.italicSlantOffset = 0; +com.typemytype.robofont.segmentType = curve; +com.typemytype.robofont.shouldAddPointsInSplineConversion = 1; +com.typemytype.robofont.smartSets.uniqueKey = "4646187664"; +}; +visible = 1; +} +); +glyphs = ( +{ +color = 6; +glyphname = A; +kernLeft = A; +kernRight = A; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = ogonek; +pos = (615,57); +}, +{ +name = top; +pos = (325,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(64,0,ls), +(77,0,o), +(84,10,o), +(86,15,cs), +(148,175,l), +(502,175,l), +(564,15,ls), +(566,10,o), +(573,0,o), +(586,0,cs), +(606,0,ls), +(617,0,o), +(626,9,o), +(626,20,cs), +(626,22,o), +(625,28,o), +(624,31,cs), +(371,680,ls), +(366,693,o), +(358,700,o), +(342,700,cs), +(308,700,ls), +(292,700,o), +(284,693,o), +(279,680,cs), +(26,31,ls), +(25,28,o), +(24,22,o), +(24,20,cs), +(24,9,o), +(33,0,o), +(44,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(325,629,l), +(478,235,l), +(172,235,l) +); +} +); +width = 650; +}, +{ +anchors = ( +{ +name = bottom; +pos = (378,0); +}, +{ +name = ogonek; +pos = (700,122); +}, +{ +name = top; +pos = (378,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(207,0,ls), +(233,0,o), +(242,14,o), +(246,25,cs), +(270,91,l), +(485,91,l), +(509,25,ls), +(513,14,o), +(522,0,o), +(548,0,cs), +(733,0,ls), +(745,0,o), +(755,10,o), +(755,22,cs), +(755,24,o), +(755,26,o), +(754,29,cs), +(531,667,l), +(527,682,o), +(513,700,o), +(486,700,cs), +(269,700,ls), +(242,700,o), +(228,682,o), +(224,667,c), +(1,29,ls), +(0,26,o), +(0,24,o), +(0,22,cs), +(0,10,o), +(10,0,o), +(22,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(377,472,l), +(434,286,l), +(321,286,l) +); +} +); +width = 755; +} +); +unicode = 65; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 680; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 35; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 637; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Aacute; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = A; +}, +{ +pos = (197,0); +ref = acutecomb.case; +} +); +width = 650; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = A; +}, +{ +pos = (189,0); +ref = acutecomb.case; +} +); +width = 755; +} +); +unicode = 193; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Abreve; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = A; +}, +{ +pos = (140,0); +ref = brevecomb.case; +} +); +width = 650; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = A; +}, +{ +pos = (151,0); +ref = brevecomb.case; +} +); +width = 755; +} +); +unicode = 258; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Acaron; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = A; +}, +{ +pos = (119,0); +ref = caroncomb.case; +} +); +width = 650; +}, +{ +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = A; +}, +{ +pos = (103,0); +ref = caroncomb.case; +} +); +width = 755; +} +); +unicode = 461; +}, +{ +color = 10; +glyphname = Acircumflex; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = A; +}, +{ +pos = (119,0); +ref = circumflexcomb.case; +} +); +width = 650; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = A; +}, +{ +pos = (103,0); +ref = circumflexcomb.case; +} +); +width = 755; +} +); +unicode = 194; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Adieresis; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = A; +}, +{ +pos = (122,0); +ref = dieresiscomb.case; +} +); +width = 650; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = A; +}, +{ +pos = (108,0); +ref = dieresiscomb.case; +} +); +width = 755; +} +); +unicode = 196; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Agrave; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = A; +}, +{ +pos = (87,0); +ref = gravecomb.case; +} +); +width = 650; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = A; +}, +{ +pos = (29,0); +ref = gravecomb.case; +} +); +width = 755; +} +); +unicode = 192; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Amacron; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = A; +}, +{ +pos = (133,0); +ref = macroncomb.case; +} +); +width = 650; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = A; +}, +{ +pos = (116,0); +ref = macroncomb.case; +} +); +width = 755; +} +); +unicode = 256; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Aogonek; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(592,-220,ls), +(605,-220,o), +(614,-211,o), +(614,-198,cs), +(614,-185,ls), +(614,-172,o), +(605,-163,o), +(592,-163,cs), +(577,-163,ls), +(533,-163,o), +(501,-133,o), +(501,-82,cs), +(501,-31,o), +(533,0,o), +(577,0,cs), +(606,0,ls), +(617,0,o), +(626,9,o), +(626,20,cs), +(626,22,o), +(625,28,o), +(624,31,cs), +(371,680,ls), +(366,693,o), +(358,700,o), +(342,700,cs), +(308,700,ls), +(292,700,o), +(284,693,o), +(279,680,cs), +(26,31,ls), +(25,28,o), +(24,22,o), +(24,20,cs), +(24,9,o), +(33,0,o), +(44,0,cs), +(64,0,ls), +(77,0,o), +(84,10,o), +(86,15,cs), +(148,175,l), +(502,175,l), +(545,63,l), +(546,60,o), +(547,58,o), +(548,55,c), +(482,45,o), +(441,-6,o), +(441,-82,cs), +(441,-167,o), +(492,-220,o), +(573,-220,cs) +); +}, +{ +closed = 1; +nodes = ( +(325,629,l), +(478,235,l), +(172,235,l) +); +} +); +width = 650; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(718,-220,ls), +(733,-220,o), +(745,-208,o), +(745,-193,cs), +(745,-125,ls), +(745,-110,o), +(733,-98,o), +(718,-98,cs), +(708,-98,ls), +(669,-98,o), +(658,-70,o), +(658,-49,cs), +(658,-29,o), +(668,-2,o), +(702,0,c), +(733,0,ls), +(745,0,o), +(755,10,o), +(755,22,cs), +(755,24,o), +(755,26,o), +(754,29,cs), +(531,667,l), +(527,682,o), +(513,700,o), +(486,700,cs), +(269,700,ls), +(242,700,o), +(228,682,o), +(224,667,c), +(1,29,ls), +(0,26,o), +(0,24,o), +(0,22,cs), +(0,10,o), +(10,0,o), +(22,0,cs), +(207,0,ls), +(233,0,o), +(242,14,o), +(246,25,cs), +(270,91,l), +(485,91,l), +(509,25,ls), +(512,15,o), +(519,3,o), +(537,0,c), +(534,-15,o), +(532,-31,o), +(532,-49,cs), +(532,-144,o), +(583,-220,o), +(704,-220,cs) +); +}, +{ +closed = 1; +nodes = ( +(377,472,l), +(434,286,l), +(321,286,l) +); +} +); +width = 755; +} +); +unicode = 260; +}, +{ +color = 10; +glyphname = Aring; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = A; +}, +{ +pos = (175,0); +ref = ringcomb.case; +} +); +width = 650; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = A; +}, +{ +pos = (228,0); +ref = ringcomb.case; +} +); +width = 755; +} +); +unicode = 197; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 336; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Atilde; +kernLeft = A; +kernRight = A; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = A; +}, +{ +pos = (130,0); +ref = tildecomb.case; +} +); +width = 650; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = A; +}, +{ +pos = (124,0); +ref = tildecomb.case; +} +); +width = 755; +} +); +unicode = 195; +}, +{ +color = 6; +glyphname = AE; +kernLeft = AE; +kernRight = E; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (460,0); +}, +{ +name = top; +pos = (460,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(48,0,ls), +(57,0,o), +(65,6,o), +(70,15,c), +(70,15,o), +(71,17,o), +(160,175,c), +(422,175,l), +(422,22,ls), +(422,9,o), +(431,0,o), +(444,0,cs), +(842,0,ls), +(856,0,o), +(865,9,o), +(865,22,cs), +(865,37,ls), +(865,51,o), +(856,60,o), +(842,60,cs), +(485,60,l), +(485,325,l), +(812,325,ls), +(826,325,o), +(835,334,o), +(835,347,cs), +(835,362,ls), +(835,376,o), +(826,385,o), +(812,385,cs), +(485,385,l), +(485,640,l), +(834,640,ls), +(848,640,o), +(857,649,o), +(857,662,cs), +(857,677,ls), +(857,691,o), +(848,700,o), +(834,700,cs), +(401,700,ls), +(392,700,o), +(383,696,o), +(375,681,cs), +(17,49,o), +(9,34,o), +(9,34,c), +(7,30,o), +(5,25,o), +(5,20,cs), +(5,9,o), +(14,0,o), +(25,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(421,633,l), +(422,633,l), +(422,235,l), +(194,235,l) +); +} +); +width = 920; +}, +{ +anchors = ( +{ +name = bottom; +pos = (503,0); +}, +{ +name = top; +pos = (503,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,0,ls), +(237,0,o), +(246,14,o), +(250,25,cs), +(258,47,o), +(266,69,o), +(274,91,c), +(423,91,l), +(423,27,ls), +(423,12,o), +(435,0,o), +(450,0,cs), +(941,0,ls), +(956,0,o), +(968,12,o), +(968,27,cs), +(968,168,ls), +(968,183,o), +(956,195,o), +(941,195,cs), +(663,195,l), +(663,258,l), +(911,258,ls), +(926,258,o), +(938,270,o), +(938,285,cs), +(938,415,ls), +(938,430,o), +(926,442,o), +(911,442,cs), +(663,442,l), +(663,505,l), +(933,505,ls), +(948,505,o), +(960,517,o), +(960,532,cs), +(960,673,ls), +(960,688,o), +(948,700,o), +(933,700,cs), +(273,700,ls), +(246,700,o), +(232,682,o), +(228,667,c), +(154,454,o), +(79,242,o), +(5,29,cs), +(4,26,o), +(4,24,o), +(4,22,cs), +(4,10,o), +(14,0,o), +(26,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(391,505,l), +(423,505,l), +(423,286,l), +(325,286,l) +); +} +); +width = 1005; +} +); +unicode = 198; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 505; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 431; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = AEacute; +kernLeft = AE; +kernRight = E; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = AE; +}, +{ +pos = (332,0); +ref = acutecomb.case; +} +); +width = 920; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = AE; +}, +{ +pos = (314,0); +ref = acutecomb.case; +} +); +width = 1005; +} +); +unicode = 508; +}, +{ +color = 6; +glyphname = B; +kernLeft = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (327,0); +}, +{ +name = top; +pos = (327,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,0,l), +(520,0,o), +(592,97,o), +(592,198,cs), +(592,282,o), +(543,342,o), +(490,369,c), +(530,388,o), +(578,435,o), +(578,521,cs), +(578,616,o), +(517,700,o), +(377,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,336,l), +(374,336,l), +(473,336,o), +(529,279,o), +(529,198,cs), +(529,118,o), +(473,60,o), +(374,60,cs), +(157,60,l) +); +}, +{ +closed = 1; +nodes = ( +(157,640,l), +(364,640,l), +(463,640,o), +(515,600,o), +(515,521,cs), +(515,442,o), +(463,396,o), +(364,396,cs), +(157,396,l) +); +} +); +width = 653; +}, +{ +anchors = ( +{ +name = bottom; +pos = (367,0); +}, +{ +name = top; +pos = (367,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(424,0,ls), +(605,0,o), +(706,70,o), +(706,220,cs), +(706,286,o), +(662,344,o), +(611,365,c), +(643,381,o), +(691,426,o), +(691,490,cs), +(691,630,o), +(605,700,o), +(414,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(305,270,l), +(398,270,ls), +(428,270,o), +(444,245,o), +(444,221,cs), +(444,199,o), +(431,172,o), +(398,172,cs), +(305,172,l) +); +}, +{ +closed = 1; +nodes = ( +(305,528,l), +(389,528,ls), +(418,528,o), +(430,503,o), +(430,482,cs), +(430,461,o), +(418,437,o), +(389,437,cs), +(305,437,l) +); +} +); +width = 734; +} +); +unicode = 66; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 271; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 437; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 521; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 198; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 355; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 583; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = C; +kernLeft = O; +kernRight = C; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (326,0); +}, +{ +name = top; +pos = (326,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(521,-10,o), +(593,111,o), +(598,206,cs), +(599,218,o), +(589,226,o), +(577,226,cs), +(557,226,ls), +(546,226,o), +(538,221,o), +(535,205,cs), +(509,86,o), +(438,50,o), +(331,50,cs), +(209,50,o), +(134,115,o), +(129,266,cs), +(127,323,o), +(127,379,o), +(129,434,cs), +(134,585,o), +(209,650,o), +(331,650,cs), +(438,650,o), +(509,614,o), +(535,495,cs), +(538,479,o), +(546,474,o), +(557,474,cs), +(577,474,ls), +(589,474,o), +(599,482,o), +(598,494,cs), +(593,589,o), +(521,710,o), +(331,710,cs), +(149,710,o), +(72,595,o), +(66,439,cs), +(64,382,o), +(64,315,o), +(66,261,cs), +(72,105,o), +(149,-10,o), +(331,-10,cs) +); +} +); +width = 651; +}, +{ +anchors = ( +{ +name = bottom; +pos = (367,0); +}, +{ +name = top; +pos = (367,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(542,-10,o), +(706,64,o), +(709,246,cs), +(709,258,o), +(699,268,o), +(687,268,c), +(483,268,l), +(461,268,o), +(453,262,o), +(446,239,cs), +(433,199,o), +(405,185,o), +(371,185,cs), +(327,185,o), +(299,205,o), +(297,266,cs), +(295,323,o), +(295,379,o), +(297,434,c), +(299,495,o), +(327,515,o), +(371,515,cs), +(405,515,o), +(431,504,o), +(446,461,cs), +(454,439,o), +(461,432,o), +(483,432,c), +(687,432,l), +(699,432,o), +(709,442,o), +(709,454,cs), +(706,636,o), +(542,710,o), +(372,710,cs), +(185,710,o), +(45,625,o), +(37,439,c), +(35,382,o), +(35,315,o), +(37,261,c), +(45,70,o), +(180,-10,o), +(372,-10,cs) +); +} +); +width = 733; +} +); +unicode = 67; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 434; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 266; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 599; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 209; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 149; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Cacute; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = C; +}, +{ +pos = (198,0); +ref = acutecomb.case; +} +); +width = 651; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = C; +}, +{ +pos = (178,0); +ref = acutecomb.case; +} +); +width = 733; +} +); +unicode = 262; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ccaron; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = C; +}, +{ +pos = (120,0); +ref = caroncomb.case; +} +); +width = 651; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = C; +}, +{ +pos = (92,0); +ref = caroncomb.case; +} +); +width = 733; +} +); +unicode = 268; +}, +{ +color = 6; +glyphname = Ccedilla; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(391,-221,o), +(422,-180,o), +(422,-132,cs), +(422,-84,o), +(390,-50,o), +(346,-50,cs), +(331,-50,o), +(316,-53,o), +(308,-58,c), +(331,-10,l), +(521,-10,o), +(593,111,o), +(598,206,cs), +(599,218,o), +(589,226,o), +(577,226,c), +(557,226,l), +(546,226,o), +(538,221,o), +(535,205,cs), +(509,86,o), +(438,50,o), +(331,50,cs), +(209,50,o), +(134,115,o), +(129,266,cs), +(127,323,o), +(127,379,o), +(129,434,cs), +(134,585,o), +(209,650,o), +(331,650,cs), +(438,650,o), +(509,614,o), +(535,495,cs), +(538,479,o), +(546,474,o), +(557,474,c), +(577,474,l), +(589,474,o), +(599,482,o), +(598,494,cs), +(593,589,o), +(521,710,o), +(331,710,cs), +(149,710,o), +(72,595,o), +(66,439,cs), +(64,382,o), +(64,315,o), +(66,261,cs), +(71,121,o), +(133,15,o), +(277,-6,c), +(257,-53,l), +(253,-63,o), +(245,-75,o), +(252,-83,c), +(268,-100,l), +(283,-116,o), +(296,-96,o), +(328,-96,cs), +(351,-96,o), +(371,-110,o), +(371,-134,cs), +(371,-159,o), +(351,-174,o), +(328,-174,cs), +(284,-174,o), +(277,-140,o), +(260,-156,c), +(246,-169,l), +(230,-184,o), +(271,-219,o), +(328,-220,cs) +); +} +); +width = 651; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(426,-220,o), +(465,-183,o), +(465,-130,cs), +(465,-77,o), +(435,-40,o), +(384,-40,cs), +(380,-40,o), +(362,-42,o), +(354,-45,c), +(372,-10,l), +(542,-10,o), +(706,64,o), +(709,246,cs), +(709,258,o), +(699,268,o), +(687,268,c), +(483,268,l), +(461,268,o), +(453,262,o), +(446,239,cs), +(433,199,o), +(405,185,o), +(371,185,cs), +(327,185,o), +(299,205,o), +(297,266,cs), +(295,323,o), +(295,379,o), +(297,434,cs), +(299,495,o), +(327,515,o), +(371,515,cs), +(405,515,o), +(431,504,o), +(446,461,cs), +(454,439,o), +(461,432,o), +(483,432,c), +(687,432,l), +(699,432,o), +(709,442,o), +(709,454,cs), +(706,636,o), +(542,710,o), +(372,710,cs), +(185,710,o), +(45,625,o), +(37,439,cs), +(35,382,o), +(35,315,o), +(37,261,cs), +(44,91,o), +(151,10,o), +(309,-6,c), +(289,-52,l), +(280,-71,o), +(282,-76,o), +(291,-85,c), +(312,-106,l), +(325,-119,o), +(348,-106,o), +(366,-106,cs), +(386,-106,o), +(394,-118,o), +(394,-130,cs), +(394,-142,o), +(385,-154,o), +(366,-154,cs), +(332,-154,o), +(327,-136,o), +(310,-151,c), +(289,-169,l), +(266,-189,o), +(313,-220,o), +(366,-220,cs) +); +} +); +width = 733; +} +); +unicode = 199; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-174"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-96"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-135"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 342; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ccircumflex; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = C; +}, +{ +pos = (120,0); +ref = circumflexcomb.case; +} +); +width = 651; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = C; +}, +{ +pos = (92,0); +ref = circumflexcomb.case; +} +); +width = 733; +} +); +unicode = 264; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Cdotaccent; +kernLeft = O; +kernRight = C; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = C; +}, +{ +pos = (209,0); +ref = dotaccentcomb.case; +} +); +width = 651; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = C; +}, +{ +pos = (226,0); +ref = dotaccentcomb.case; +} +); +width = 733; +} +); +unicode = 266; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = D; +kernLeft = I; +kernRight = D; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (339,0); +}, +{ +name = center; +pos = (339,350); +}, +{ +name = top; +pos = (339,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(334,0,ls), +(540,0,o), +(603,87,o), +(607,271,cs), +(608,331,o), +(608,370,o), +(607,430,cs), +(604,604,o), +(541,700,o), +(329,700,c), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,640,l), +(324,640,ls), +(484,640,o), +(541,571,o), +(544,425,cs), +(545,365,o), +(545,336,o), +(544,276,cs), +(541,120,o), +(488,60,o), +(329,60,cs), +(157,60,l) +); +} +); +width = 677; +}, +{ +anchors = ( +{ +name = bottom; +pos = (370,0); +}, +{ +name = center; +pos = (370,350); +}, +{ +name = top; +pos = (364,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(375,0,ls), +(566,0,o), +(696,87,o), +(704,276,cs), +(706,330,o), +(706,368,o), +(704,425,cs), +(697,604,o), +(557,700,o), +(370,700,c), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(305,505,l), +(365,505,ls), +(410,505,o), +(447,481,o), +(450,425,cs), +(453,370,o), +(453,333,o), +(450,276,cs), +(447,220,o), +(414,195,o), +(370,195,cs), +(305,195,l) +); +} +); +width = 740; +} +); +unicode = 68; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 425; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 276; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 320; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 603; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Eth; +kernLeft = I; +kernRight = D; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,0,ls), +(546,0,o), +(609,87,o), +(613,271,cs), +(614,331,o), +(614,370,o), +(613,430,cs), +(610,604,o), +(547,700,o), +(335,700,c), +(122,700,ls), +(109,700,o), +(100,691,o), +(100,677,cs), +(100,382,l), +(37,382,ls), +(24,382,o), +(15,373,o), +(15,360,cs), +(15,344,ls), +(15,331,o), +(24,322,o), +(37,322,cs), +(100,322,l), +(100,22,ls), +(100,9,o), +(109,0,o), +(122,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(163,322,l), +(313,322,ls), +(326,322,o), +(335,331,o), +(335,344,cs), +(335,360,ls), +(335,373,o), +(326,382,o), +(313,382,cs), +(163,382,l), +(163,640,l), +(330,640,ls), +(490,640,o), +(547,571,o), +(550,425,cs), +(551,365,o), +(551,336,o), +(550,276,cs), +(547,120,o), +(494,60,o), +(335,60,cs), +(163,60,l) +); +} +); +width = 683; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(395,0,ls), +(586,0,o), +(729,87,o), +(729,276,cs), +(729,326,o), +(729,375,o), +(729,425,cs), +(729,604,o), +(581,700,o), +(394,700,cs), +(106,700,ls), +(91,700,o), +(79,688,o), +(79,673,cs), +(79,429,l), +(41,429,l), +(26,429,o), +(14,417,o), +(14,402,cs), +(14,301,ls), +(14,286,o), +(26,274,o), +(41,274,cs), +(79,274,l), +(79,27,ls), +(79,12,o), +(91,0,o), +(106,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(329,274,l), +(385,274,ls), +(400,274,o), +(412,286,o), +(412,301,cs), +(412,402,ls), +(412,417,o), +(400,429,o), +(385,429,cs), +(329,429,l), +(329,505,l), +(394,505,ls), +(439,505,o), +(469,481,o), +(469,425,cs), +(469,375,o), +(469,326,o), +(469,276,cs), +(469,220,o), +(438,195,o), +(394,195,cs), +(329,195,l) +); +} +); +width = 766; +} +); +unicode = 208; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = Dcaron; +kernLeft = I; +kernRight = D; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = D; +}, +{ +pos = (133,0); +ref = caroncomb.case; +} +); +width = 677; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = D; +}, +{ +pos = (89,0); +ref = caroncomb.case; +} +); +width = 740; +} +); +unicode = 270; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 321; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Dcroat; +kernLeft = I; +kernRight = D; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,0,ls), +(546,0,o), +(609,87,o), +(613,271,cs), +(614,331,o), +(614,370,o), +(613,430,cs), +(610,604,o), +(547,700,o), +(335,700,c), +(122,700,ls), +(109,700,o), +(100,691,o), +(100,677,cs), +(100,382,l), +(37,382,ls), +(24,382,o), +(15,373,o), +(15,360,cs), +(15,344,ls), +(15,331,o), +(24,322,o), +(37,322,cs), +(100,322,l), +(100,22,ls), +(100,9,o), +(109,0,o), +(122,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(163,322,l), +(313,322,ls), +(326,322,o), +(335,331,o), +(335,344,cs), +(335,360,ls), +(335,373,o), +(326,382,o), +(313,382,cs), +(163,382,l), +(163,640,l), +(330,640,ls), +(490,640,o), +(547,571,o), +(550,425,cs), +(551,365,o), +(551,336,o), +(550,276,cs), +(547,120,o), +(494,60,o), +(335,60,cs), +(163,60,l) +); +} +); +width = 683; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(395,0,ls), +(586,0,o), +(720,87,o), +(728,276,cs), +(730,330,o), +(730,368,o), +(728,425,cs), +(721,604,o), +(581,700,o), +(394,700,c), +(106,700,ls), +(91,700,o), +(79,688,o), +(79,673,cs), +(79,430,l), +(41,430,ls), +(26,430,o), +(14,418,o), +(14,403,cs), +(14,302,ls), +(14,287,o), +(26,275,o), +(41,275,cs), +(79,275,l), +(79,27,ls), +(79,12,o), +(91,0,o), +(106,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(329,275,l), +(385,275,ls), +(400,275,o), +(412,287,o), +(412,302,cs), +(412,403,ls), +(412,418,o), +(400,430,o), +(385,430,cs), +(329,430,l), +(329,505,l), +(394,505,ls), +(439,505,o), +(471,481,o), +(474,425,cs), +(477,370,o), +(477,333,o), +(474,276,cs), +(471,220,o), +(438,195,o), +(394,195,cs), +(329,195,l) +); +} +); +width = 764; +} +); +unicode = 272; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 352; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 340; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 105; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = E; +kernLeft = I; +kernRight = E; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (296,0); +}, +{ +name = ogonek; +pos = (533,57); +}, +{ +name = top; +pos = (296,700); +}, +{ +name = topleft; +pos = (20,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(514,0,ls), +(528,0,o), +(537,9,o), +(537,22,cs), +(537,37,ls), +(537,51,o), +(528,60,o), +(514,60,c), +(157,60,l), +(157,325,l), +(484,325,ls), +(498,325,o), +(507,334,o), +(507,347,cs), +(507,362,ls), +(507,376,o), +(498,385,o), +(484,385,cs), +(157,385,l), +(157,640,l), +(506,640,ls), +(520,640,o), +(529,649,o), +(529,662,cs), +(529,677,ls), +(529,691,o), +(520,700,o), +(506,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +width = 592; +}, +{ +anchors = ( +{ +name = bottom; +pos = (334,0); +}, +{ +name = ogonek; +pos = (626,122); +}, +{ +name = top; +pos = (334,700); +}, +{ +name = topleft; +pos = (20,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(603,0,ls), +(618,0,o), +(630,12,o), +(630,27,cs), +(630,168,ls), +(630,183,o), +(618,195,o), +(603,195,cs), +(295,195,l), +(295,258,l), +(573,258,ls), +(588,258,o), +(600,270,o), +(600,285,cs), +(600,415,ls), +(600,430,o), +(588,442,o), +(573,442,cs), +(295,442,l), +(295,505,l), +(595,505,ls), +(610,505,o), +(622,517,o), +(622,532,cs), +(622,673,ls), +(622,688,o), +(610,700,o), +(595,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 667; +} +); +unicode = 69; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 334; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 376; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 649; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 664; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 511; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Eacute; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = E; +}, +{ +pos = (168,0); +ref = acutecomb.case; +} +); +width = 592; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = E; +}, +{ +pos = (145,0); +ref = acutecomb.case; +} +); +width = 667; +} +); +unicode = 201; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 304; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ebreve; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = E; +}, +{ +pos = (111,0); +ref = brevecomb.case; +} +); +width = 592; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = E; +}, +{ +pos = (107,0); +ref = brevecomb.case; +} +); +width = 667; +} +); +unicode = 276; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ecaron; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = E; +}, +{ +pos = (90,0); +ref = caroncomb.case; +} +); +width = 592; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = E; +}, +{ +pos = (59,0); +ref = caroncomb.case; +} +); +width = 667; +} +); +unicode = 282; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 750; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ecircumflex; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = E; +}, +{ +pos = (90,0); +ref = circumflexcomb.case; +} +); +width = 592; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = E; +}, +{ +pos = (59,0); +ref = circumflexcomb.case; +} +); +width = 667; +} +); +unicode = 202; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Edieresis; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = E; +}, +{ +pos = (93,0); +ref = dieresiscomb.case; +} +); +width = 592; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = E; +}, +{ +pos = (64,0); +ref = dieresiscomb.case; +} +); +width = 667; +} +); +unicode = 203; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Edotaccent; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = E; +}, +{ +pos = (179,0); +ref = dotaccentcomb.case; +} +); +width = 592; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = E; +}, +{ +pos = (193,0); +ref = dotaccentcomb.case; +} +); +width = 667; +} +); +unicode = 278; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Egrave; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = E; +}, +{ +pos = (58,0); +ref = gravecomb.case; +} +); +width = 592; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = E; +}, +{ +pos = (-15,0); +ref = gravecomb.case; +} +); +width = 667; +} +); +unicode = 200; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Emacron; +kernLeft = I; +kernRight = E; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = E; +}, +{ +pos = (104,0); +ref = macroncomb.case; +} +); +width = 592; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = E; +}, +{ +pos = (72,0); +ref = macroncomb.case; +} +); +width = 667; +} +); +unicode = 274; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 308; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Eogonek; +kernLeft = I; +kernRight = E; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (296,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(515,-220,ls), +(528,-220,o), +(537,-211,o), +(537,-198,cs), +(537,-185,ls), +(537,-172,o), +(528,-163,o), +(515,-163,cs), +(500,-163,ls), +(456,-163,o), +(424,-133,o), +(424,-82,cs), +(424,-33,o), +(453,-3,o), +(493,0,c), +(514,0,ls), +(528,0,o), +(537,9,o), +(537,22,cs), +(537,37,ls), +(537,51,o), +(528,60,o), +(514,60,cs), +(157,60,l), +(157,325,l), +(484,325,ls), +(498,325,o), +(507,334,o), +(507,347,cs), +(507,362,ls), +(507,376,o), +(498,385,o), +(484,385,cs), +(157,385,l), +(157,640,l), +(506,640,ls), +(520,640,o), +(529,649,o), +(529,662,cs), +(529,677,ls), +(529,691,o), +(520,700,o), +(506,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs), +(385,0,l), +(371,-22,o), +(364,-50,o), +(364,-82,cs), +(364,-167,o), +(415,-220,o), +(496,-220,cs) +); +} +); +width = 592; +}, +{ +anchors = ( +{ +name = top; +pos = (334,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(603,-220,ls), +(618,-220,o), +(630,-208,o), +(630,-193,cs), +(630,-125,ls), +(630,-110,o), +(618,-98,o), +(603,-98,cs), +(593,-98,ls), +(554,-98,o), +(543,-70,o), +(543,-49,cs), +(543,-28,o), +(554,0,o), +(593,0,cs), +(603,0,ls), +(618,0,o), +(630,12,o), +(630,27,cs), +(630,168,ls), +(630,183,o), +(618,195,o), +(603,195,cs), +(295,195,l), +(295,258,l), +(573,258,ls), +(588,258,o), +(600,270,o), +(600,285,cs), +(600,415,ls), +(600,430,o), +(588,442,o), +(573,442,cs), +(295,442,l), +(295,505,l), +(595,505,ls), +(610,505,o), +(622,517,o), +(622,532,cs), +(622,673,ls), +(622,688,o), +(610,700,o), +(595,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs), +(422,0,l), +(419,-16,o), +(417,-31,o), +(417,-49,cs), +(417,-144,o), +(468,-220,o), +(589,-220,cs) +); +} +); +width = 667; +} +); +unicode = 280; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 355; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = F; +kernLeft = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = top; +pos = (285,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,311,l), +(482,311,ls), +(496,311,o), +(505,320,o), +(505,333,cs), +(505,348,ls), +(505,362,o), +(496,371,o), +(482,371,cs), +(157,371,l), +(157,640,l), +(502,640,ls), +(516,640,o), +(525,649,o), +(525,662,cs), +(525,677,ls), +(525,691,o), +(516,700,o), +(502,700,cs), +(116,700,l), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +width = 570; +}, +{ +anchors = ( +{ +name = bottom; +pos = (323,0); +}, +{ +name = top; +pos = (323,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,0,ls), +(288,0,o), +(300,12,o), +(300,27,cs), +(300,215,l), +(566,215,ls), +(581,215,o), +(593,227,o), +(593,242,cs), +(593,393,ls), +(593,408,o), +(581,420,o), +(566,420,cs), +(300,420,l), +(300,494,l), +(586,494,ls), +(601,494,o), +(613,506,o), +(613,521,cs), +(613,673,ls), +(613,688,o), +(601,700,o), +(586,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 646; +} +); +unicode = 70; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 320; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 649; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 362; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 761; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 487; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 139; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = G; +kernLeft = O; +kernRight = G; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (346,0); +}, +{ +name = top; +pos = (339,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(506,-10,o), +(604,100,o), +(604,260,cs), +(604,348,ls), +(604,362,o), +(595,371,o), +(581,371,cs), +(367,371,ls), +(354,371,o), +(345,362,o), +(345,348,cs), +(345,334,ls), +(345,320,o), +(354,311,o), +(367,311,cs), +(541,311,l), +(541,260,ls), +(541,115,o), +(452,50,o), +(334,50,cs), +(215,50,o), +(135,110,o), +(130,260,cs), +(128,320,o), +(128,380,o), +(130,440,cs), +(135,590,o), +(215,650,o), +(334,650,cs), +(453,650,o), +(510,587,o), +(530,525,cs), +(535,510,o), +(539,505,o), +(551,505,cs), +(573,505,ls), +(586,505,o), +(595,513,o), +(594,525,cs), +(591,582,o), +(519,710,o), +(334,710,cs), +(163,710,o), +(72,602,o), +(67,445,cs), +(65,385,o), +(65,315,o), +(67,255,cs), +(72,99,o), +(162,-10,o), +(334,-10,cs) +); +} +); +width = 664; +}, +{ +anchors = ( +{ +name = bottom; +pos = (377,0); +}, +{ +name = top; +pos = (377,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(576,-10,o), +(718,85,o), +(718,265,cs), +(718,395,ls), +(718,410,o), +(706,422,o), +(691,422,cs), +(416,422,ls), +(401,422,o), +(389,410,o), +(389,395,cs), +(389,284,ls), +(389,269,o), +(401,257,o), +(416,257,cs), +(463,257,l), +(463,256,l), +(463,205,o), +(428,185,o), +(378,185,cs), +(329,185,o), +(299,210,o), +(297,270,c), +(295,327,o), +(295,385,o), +(297,440,c), +(299,490,o), +(325,515,o), +(374,515,cs), +(423,515,o), +(438,486,o), +(446,476,cs), +(452,469,o), +(460,465,o), +(475,465,cs), +(696,465,ls), +(708,465,o), +(718,475,o), +(718,487,cs), +(715,608,o), +(585,710,o), +(374,710,cs), +(177,710,o), +(44,622,o), +(37,445,c), +(35,388,o), +(35,319,o), +(37,265,cs), +(45,79,o), +(172,-10,o), +(374,-10,cs) +); +} +); +width = 753; +} +); +unicode = 71; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 260; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 440; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 334; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 133; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 604; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 67; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Gbreve; +kernLeft = O; +kernRight = G; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = G; +}, +{ +pos = (154,0); +ref = brevecomb.case; +} +); +width = 664; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = G; +}, +{ +pos = (150,0); +ref = brevecomb.case; +} +); +width = 753; +} +); +unicode = 286; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 339; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Gcircumflex; +kernLeft = O; +kernRight = G; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = G; +}, +{ +pos = (133,0); +ref = circumflexcomb.case; +} +); +width = 664; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = G; +}, +{ +pos = (102,0); +ref = circumflexcomb.case; +} +); +width = 753; +} +); +unicode = 284; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 339; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Gcommaaccent; +kernLeft = O; +kernRight = G; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = G; +}, +{ +pos = (210,0); +ref = commaaccentcomb.case; +} +); +width = 664; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = G; +}, +{ +pos = (194,0); +ref = commaaccentcomb.case; +} +); +width = 753; +} +); +unicode = 290; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 339; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Gdotaccent; +kernLeft = O; +kernRight = G; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = G; +}, +{ +pos = (222,0); +ref = dotaccentcomb.case; +} +); +width = 664; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = G; +}, +{ +pos = (236,0); +ref = dotaccentcomb.case; +} +); +width = 753; +} +); +unicode = 288; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 339; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = H; +kernLeft = I; +kernRight = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (350,0); +}, +{ +name = center; +pos = (350,350); +}, +{ +name = top; +pos = (350,700); +}, +{ +name = topleft; +pos = (20,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,325,l), +(543,325,l), +(543,22,ls), +(543,9,o), +(552,0,o), +(565,0,cs), +(583,0,ls), +(597,0,o), +(606,9,o), +(606,22,cs), +(606,677,ls), +(606,691,o), +(597,700,o), +(583,700,cs), +(565,700,l), +(552,700,o), +(543,691,o), +(543,677,cs), +(543,385,l), +(157,385,l), +(157,677,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +width = 700; +}, +{ +anchors = ( +{ +name = bottom; +pos = (386,0); +}, +{ +name = center; +pos = (386,350); +}, +{ +name = top; +pos = (386,700); +}, +{ +name = topleft; +pos = (20,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,243,l), +(467,243,l), +(467,27,ls), +(467,12,o), +(479,0,o), +(494,0,cs), +(690,0,ls), +(705,0,o), +(717,12,o), +(717,27,cs), +(717,673,ls), +(717,688,o), +(705,700,o), +(690,700,cs), +(494,700,ls), +(479,700,o), +(467,688,o), +(467,673,cs), +(467,463,l), +(305,463,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,11,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 772; +} +); +unicode = 72; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 139; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 543; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 588; +y = 0; +} +); +}; +}, +{ +color = 3; +glyphname = Hbar; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(667,513,ls), +(680,513,o), +(689,522,o), +(689,535,cs), +(689,549,ls), +(689,562,o), +(680,571,o), +(667,571,cs), +(43,571,ls), +(30,571,o), +(21,562,o), +(21,549,cs), +(21,535,ls), +(21,522,o), +(30,513,o), +(43,513,cs) +); +}, +{ +ref = H; +} +); +width = 700; +}, +{ +color = 3; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(682,521,ls), +(697,521,o), +(709,533,o), +(709,548,cs), +(709,616,ls), +(709,631,o), +(697,643,o), +(682,643,cs), +(88,643,ls), +(73,643,o), +(61,631,o), +(61,616,cs), +(61,548,ls), +(61,533,o), +(73,521,o), +(88,521,cs) +); +}, +{ +ref = H; +} +); +width = 772; +}, +{ +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +color = 6; +hints = ( +{ +horizontal = 1; +place = (571, 0); +type = Tag; +} +); +layerId = "9F89FD77-DC2E-4404-8D47-3D5086EDA98C"; +name = "Light Jan 19 16, 17:03"; +shapes = ( +{ +closed = 1; +nodes = ( +(139,0,ls), +(153,0,o), +(162,9,o), +(162,22,cs), +(162,325,l), +(548,325,l), +(548,22,ls), +(548,9,o), +(557,0,o), +(570,0,cs), +(588,0,ls), +(602,0,o), +(611,9,o), +(611,22,cs), +(611,511,l), +(668,511,ls), +(682,511,o), +(691,520,o), +(691,533,cs), +(691,548,ls), +(691,562,o), +(682,571,o), +(668,571,cs), +(611,571,l), +(611,677,ls), +(611,691,o), +(602,700,o), +(588,700,cs), +(570,700,ls), +(557,700,o), +(548,691,o), +(548,677,cs), +(548,571,l), +(162,571,l), +(162,677,ls), +(162,691,o), +(153,700,o), +(139,700,cs), +(121,700,ls), +(108,700,o), +(99,691,o), +(99,677,cs), +(99,571,l), +(41,571,ls), +(28,571,o), +(19,562,o), +(19,548,cs), +(19,533,ls), +(19,520,o), +(28,511,o), +(41,511,cs), +(99,511,l), +(99,22,ls), +(99,9,o), +(108,0,o), +(121,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(162,511,l), +(548,511,l), +(548,385,l), +(162,385,l) +); +} +); +width = 700; +}, +{ +associatedMasterId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "FF0B9B16-2378-4A37-8098-43DBF73F83A5"; +name = "Bold Jan 19 16, 17:03"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,243,l), +(467,243,l), +(467,27,ls), +(467,12,o), +(479,0,o), +(494,0,cs), +(690,0,ls), +(705,0,o), +(717,12,o), +(717,27,cs), +(717,673,ls), +(717,688,o), +(705,700,o), +(690,700,cs), +(494,700,l), +(479,700,o), +(467,688,o), +(467,673,cs), +(467,644,l), +(305,644,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,11,o), +(67,0,o), +(82,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(305,519,l), +(467,519,l), +(467,463,l), +(305,463,l) +); +} +); +width = 772; +} +); +unicode = 294; +}, +{ +color = 10; +glyphname = Hcircumflex; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = H; +}, +{ +pos = (144,0); +ref = circumflexcomb.case; +} +); +width = 700; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = H; +}, +{ +pos = (111,0); +ref = circumflexcomb.case; +} +); +width = 772; +} +); +unicode = 292; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 341; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = I; +kernLeft = I; +kernRight = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (126,0); +}, +{ +name = ogonek; +pos = (157,57); +}, +{ +name = top; +pos = (126,700); +}, +{ +name = topleft; +pos = (20,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(135,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,678,ls), +(157,691,o), +(148,700,o), +(135,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,678,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +width = 251; +}, +{ +anchors = ( +{ +name = bottom; +pos = (184,0); +}, +{ +name = ogonek; +pos = (301,122); +}, +{ +name = top; +pos = (184,700); +}, +{ +name = topleft; +pos = (20,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,0,ls), +(301,0,o), +(313,12,o), +(313,27,cs), +(313,673,ls), +(313,688,o), +(301,700,o), +(286,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 368; +} +); +unicode = 73; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 85; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 148; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = IJ; +kernLeft = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(416,-10,o), +(501,99,o), +(501,255,c), +(501,677,l), +(501,691,o), +(492,700,o), +(478,700,c), +(460,700,l), +(447,700,o), +(438,691,o), +(438,678,c), +(438,256,l), +(438,135,o), +(376,50,o), +(259,50,cs), +(246,50,o), +(237,41,o), +(237,27,c), +(237,12,l), +(237,-1,o), +(246,-10,o), +(259,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(135,0,l), +(148,0,o), +(157,9,o), +(157,22,c), +(157,678,l), +(157,691,o), +(148,700,o), +(135,700,c), +(116,700,l), +(103,700,o), +(94,691,o), +(94,678,c), +(94,22,l), +(94,9,o), +(103,0,o), +(116,0,c) +); +} +); +width = 589; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(628,-10,o), +(758,45,o), +(758,258,cs), +(758,673,ls), +(758,688,o), +(746,700,o), +(731,700,cs), +(526,700,ls), +(511,700,o), +(499,688,o), +(499,673,c), +(499,298,ls), +(499,227,o), +(476,205,o), +(420,205,cs), +(405,205,o), +(393,193,o), +(393,178,cs), +(393,17,ls), +(393,2,o), +(405,-10,o), +(420,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(286,0,ls), +(301,0,o), +(313,12,o), +(313,27,cs), +(313,673,ls), +(313,688,o), +(301,700,o), +(286,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 807; +} +); +unicode = 306; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 642; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Iacute; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-2,0); +ref = acutecomb.case; +} +); +width = 251; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-5,0); +ref = acutecomb.case; +} +); +width = 368; +} +); +unicode = 205; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 119; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ibreve; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-59,0); +ref = brevecomb.case; +} +); +width = 251; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-43,0); +ref = brevecomb.case; +} +); +width = 368; +} +); +unicode = 300; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Icircumflex; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-80,0); +ref = circumflexcomb.case; +} +); +width = 251; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-91,0); +ref = circumflexcomb.case; +} +); +width = 368; +} +); +unicode = 206; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Idieresis; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-77,0); +ref = dieresiscomb.case; +} +); +width = 251; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-86,0); +ref = dieresiscomb.case; +} +); +width = 368; +} +); +unicode = 207; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Idotaccent; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = I; +}, +{ +pos = (9,0); +ref = dotaccentcomb.case; +} +); +width = 251; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = I; +}, +{ +pos = (43,0); +ref = dotaccentcomb.case; +} +); +width = 368; +} +); +unicode = 304; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Igrave; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-112,0); +ref = gravecomb.case; +} +); +width = 251; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-165,0); +ref = gravecomb.case; +} +); +width = 368; +} +); +unicode = 204; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Imacron; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-66,0); +ref = macroncomb.case; +} +); +width = 251; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-78,0); +ref = macroncomb.case; +} +); +width = 368; +} +); +unicode = 298; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Iogonek; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,-220,ls), +(166,-220,o), +(175,-211,o), +(175,-198,cs), +(175,-185,ls), +(175,-172,o), +(166,-163,o), +(153,-163,cs), +(138,-163,ls), +(94,-163,o), +(62,-133,o), +(62,-82,cs), +(62,-31,o), +(94,0,o), +(138,0,cs), +(153,0,ls), +(166,0,o), +(175,9,o), +(175,22,cs), +(175,678,ls), +(175,691,o), +(166,700,o), +(153,700,cs), +(134,700,ls), +(121,700,o), +(112,691,o), +(112,678,cs), +(112,74,l), +(112,71,o), +(112,67,o), +(112,64,c), +(112,55,l), +(44,46,o), +(2,-5,o), +(2,-82,cs), +(2,-167,o), +(53,-220,o), +(134,-220,cs) +); +} +); +width = 269; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,-222,ls), +(301,-222,o), +(313,-210,o), +(313,-195,cs), +(313,-127,ls), +(313,-112,o), +(301,-100,o), +(286,-100,cs), +(276,-100,l), +(237,-100,o), +(226,-71,o), +(226,-50,cs), +(226,-29,o), +(237,0,o), +(276,0,cs), +(286,0,ls), +(301,0,o), +(313,12,o), +(313,27,cs), +(313,673,ls), +(313,688,o), +(301,700,o), +(286,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs), +(105,0,l), +(102,-16,o), +(100,-32,o), +(100,-50,cs), +(100,-145,o), +(151,-222,o), +(272,-222,cs) +); +} +); +width = 368; +} +); +unicode = 302; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 110; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Itilde; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-69,0); +ref = tildecomb.case; +} +); +width = 251; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-70,0); +ref = tildecomb.case; +} +); +width = 368; +} +); +unicode = 296; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = J; +kernLeft = J; +kernRight = U; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (309,0); +}, +{ +name = top; +pos = (303,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(445,-10,o), +(530,99,o), +(530,255,c), +(530,677,ls), +(530,691,o), +(521,700,o), +(507,700,cs), +(98,700,ls), +(85,700,o), +(76,691,o), +(76,678,cs), +(76,662,ls), +(76,649,o), +(85,640,o), +(98,640,cs), +(467,640,l), +(467,256,ls), +(467,135,o), +(405,50,o), +(288,50,cs), +(196,50,o), +(116,91,o), +(108,195,cs), +(107,207,o), +(99,216,o), +(86,216,cs), +(66,216,ls), +(52,216,o), +(45,206,o), +(45,194,cs), +(50,52,o), +(158,-10,o), +(288,-10,cs) +); +} +); +width = 618; +}, +{ +anchors = ( +{ +name = bottom; +pos = (351,0); +}, +{ +name = top; +pos = (371,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(653,73,o), +(653,258,cs), +(653,673,ls), +(653,688,o), +(641,700,o), +(626,700,cs), +(97,700,ls), +(82,700,o), +(70,688,o), +(70,673,cs), +(70,524,ls), +(70,509,o), +(82,497,o), +(97,497,cs), +(394,497,l), +(394,266,ls), +(394,205,o), +(371,185,o), +(335,185,cs), +(302,185,o), +(290,198,o), +(277,225,cs), +(267,247,o), +(258,257,o), +(236,257,cs), +(32,257,ls), +(20,257,o), +(10,247,o), +(10,235,cs), +(13,78,o), +(162,-10,o), +(327,-10,cs) +); +} +); +width = 702; +} +); +unicode = 74; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 133; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 677; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 303; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 91; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Jacute; +kernLeft = J; +kernRight = U; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = J; +}, +{ +pos = (175,0); +ref = acutecomb.case; +} +); +width = 618; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = J; +}, +{ +pos = (182,0); +ref = acutecomb.case; +} +); +width = 702; +} +); +}, +{ +color = 10; +glyphname = Jcircumflex; +kernLeft = J; +kernRight = U; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = J; +}, +{ +pos = (97,0); +ref = circumflexcomb.case; +} +); +width = 618; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = J; +}, +{ +pos = (96,0); +ref = circumflexcomb.case; +} +); +width = 702; +} +); +unicode = 308; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = K; +kernLeft = I; +kernRight = K; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (304,0); +}, +{ +name = top; +pos = (288,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,311,l), +(481,15,ls), +(486,11,o), +(498,0,o), +(519,0,cs), +(536,0,ls), +(547,0,o), +(556,9,o), +(556,20,cs), +(556,24,o), +(555,29,o), +(550,34,cs), +(190,365,l), +(529,667,ls), +(533,671,o), +(534,676,o), +(534,680,cs), +(534,691,o), +(525,700,o), +(514,700,cs), +(498,700,ls), +(477,700,o), +(465,689,o), +(460,685,cs), +(157,417,l), +(157,677,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +width = 575; +}, +{ +anchors = ( +{ +name = bottom; +pos = (358,0); +}, +{ +name = top; +pos = (358,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,0,ls), +(288,0,o), +(300,12,o), +(300,27,cs), +(300,241,l), +(422,23,ls), +(425,17,o), +(436,0,o), +(463,0,cs), +(691,0,ls), +(703,0,o), +(713,10,o), +(713,22,cs), +(713,25,o), +(712,30,o), +(710,33,cs), +(513,365,l), +(693,667,ls), +(695,670,o), +(696,674,o), +(696,678,cs), +(696,690,o), +(686,700,o), +(674,700,cs), +(453,700,ls), +(431,700,o), +(419,689,o), +(413,678,cs), +(300,475,l), +(300,673,ls), +(300,688,o), +(288,700,o), +(273,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 715; +} +); +unicode = 75; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 365; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 547; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 139; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Kcommaaccent; +kernLeft = I; +kernRight = K; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = K; +}, +{ +pos = (168,0); +ref = commaaccentcomb.case; +} +); +width = 575; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = K; +}, +{ +pos = (175,0); +ref = commaaccentcomb.case; +} +); +width = 715; +} +); +unicode = 310; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 321; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = L; +kernLeft = I; +kernRight = L; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (307,0); +}, +{ +name = center; +pos = (274,350); +}, +{ +name = top; +pos = (124,700); +}, +{ +name = topright; +pos = (325,690); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(502,0,l), +(516,0,o), +(525,9,o), +(525,22,c), +(525,37,l), +(525,51,o), +(516,60,o), +(502,60,c), +(157,60,l), +(157,678,l), +(157,691,o), +(148,700,o), +(135,700,c), +(116,700,l), +(103,700,o), +(94,691,o), +(94,678,c), +(94,22,l), +(94,9,o), +(103,0,o), +(116,0,c) +); +} +); +width = 548; +}, +{ +anchors = ( +{ +name = bottom; +pos = (313,0); +}, +{ +name = center; +pos = (313,350); +}, +{ +name = top; +pos = (173,700); +}, +{ +name = topright; +pos = (486,649); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(586,0,ls), +(601,0,o), +(613,12,o), +(613,27,cs), +(613,178,ls), +(613,193,o), +(601,205,o), +(586,205,cs), +(309,205,l), +(309,673,ls), +(309,688,o), +(297,700,o), +(282,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 626; +} +); +unicode = 76; +}, +{ +color = 10; +glyphname = Lacute; +kernLeft = I; +kernRight = L; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = L; +}, +{ +pos = (-4,0); +ref = acutecomb.case; +} +); +width = 548; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = L; +}, +{ +pos = (-16,0); +ref = acutecomb.case; +} +); +width = 626; +} +); +unicode = 313; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-134"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 118; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Lcaron; +kernLeft = I; +kernRight = L; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = L; +}, +{ +pos = (170,-10); +ref = caroncomb.alt; +} +); +width = 548; +}, +{ +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = L; +}, +{ +pos = (174,-51); +ref = caroncomb.alt; +} +); +width = 626; +} +); +unicode = 317; +}, +{ +color = 10; +glyphname = Lcommaaccent; +kernLeft = I; +kernRight = L; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = L; +}, +{ +pos = (171,0); +ref = commaaccentcomb.case; +} +); +width = 548; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = L; +}, +{ +pos = (130,0); +ref = commaaccentcomb.case; +} +); +width = 626; +} +); +unicode = 315; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 297; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ldot; +kernLeft = I; +kernRight = L; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (548,0); +ref = periodcentered.loclCAT.case; +} +); +width = 558; +}, +{ +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = L; +}, +{ +alignment = 1; +pos = (626,0); +ref = periodcentered.loclCAT.case; +} +); +width = 629; +} +); +unicode = 319; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 360; +} +); +}; +}, +{ +color = 6; +glyphname = Lslash; +kernLeft = I; +kernRight = L; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(511,0,ls), +(524,0,o), +(533,9,o), +(533,22,cs), +(533,38,ls), +(533,51,o), +(524,60,o), +(511,60,cs), +(165,60,l), +(165,317,l), +(320,377,ls), +(336,383,o), +(342,387,o), +(342,402,cs), +(342,421,ls), +(342,433,o), +(334,439,o), +(323,439,cs), +(319,439,o), +(315,438,o), +(310,436,cs), +(165,380,l), +(165,678,ls), +(165,691,o), +(156,700,o), +(143,700,cs), +(124,700,ls), +(111,700,o), +(102,691,o), +(102,678,cs), +(102,355,l), +(34,329,ls), +(18,323,o), +(12,319,o), +(12,304,cs), +(12,285,ls), +(12,273,o), +(20,267,o), +(31,267,cs), +(35,267,o), +(39,268,o), +(44,270,cs), +(102,292,l), +(102,22,ls), +(102,9,o), +(111,0,o), +(124,0,cs) +); +} +); +width = 556; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(594,0,ls), +(609,0,o), +(621,12,o), +(621,27,cs), +(621,178,ls), +(621,193,o), +(609,205,o), +(594,205,cs), +(317,205,l), +(317,325,l), +(472,386,ls), +(488,392,o), +(494,401,o), +(494,419,cs), +(494,527,ls), +(494,539,o), +(485,548,o), +(473,548,cs), +(471,548,o), +(467,547,o), +(462,545,cs), +(317,488,l), +(317,673,ls), +(317,688,o), +(305,700,o), +(290,700,cs), +(90,700,ls), +(75,700,o), +(63,688,o), +(63,673,cs), +(63,388,l), +(35,377,ls), +(19,371,o), +(13,362,o), +(13,344,cs), +(13,236,ls), +(13,224,o), +(22,215,o), +(34,215,cs), +(36,215,o), +(40,216,o), +(45,218,cs), +(63,225,l), +(63,27,ls), +(63,12,o), +(75,0,o), +(90,0,cs) +); +} +); +width = 634; +} +); +unicode = 321; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 215; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 548; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 438; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 267; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 353; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 129; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 325; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-5"; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = M; +kernLeft = I; +kernRight = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (390,0); +}, +{ +name = top; +pos = (390,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(135,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,564,l), +(348,188,ls), +(354,175,o), +(363,168,o), +(379,168,cs), +(401,168,ls), +(417,168,o), +(426,175,o), +(432,188,cs), +(623,564,l), +(623,22,ls), +(623,9,o), +(632,0,o), +(645,0,cs), +(663,0,ls), +(677,0,o), +(686,9,o), +(686,22,cs), +(686,677,ls), +(686,691,o), +(677,700,o), +(663,700,cs), +(639,700,ls), +(626,700,o), +(620,691,o), +(618,687,cs), +(390,245,l), +(163,687,ls), +(161,691,o), +(155,700,o), +(142,700,cs), +(117,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(117,0,cs) +); +} +); +width = 780; +}, +{ +anchors = ( +{ +name = bottom; +pos = (428,0); +}, +{ +name = top; +pos = (428,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(263,0,ls), +(278,0,o), +(290,12,o), +(290,27,cs), +(290,301,l), +(356,193,ls), +(363,182,o), +(373,168,o), +(393,168,cs), +(463,168,ls), +(483,168,o), +(493,182,o), +(500,193,cs), +(566,301,l), +(566,27,ls), +(566,12,o), +(578,0,o), +(593,0,cs), +(774,0,ls), +(789,0,o), +(801,12,o), +(801,27,cs), +(801,673,ls), +(801,688,o), +(789,700,o), +(774,700,cs), +(616,700,ls), +(589,700,o), +(577,680,o), +(573,673,cs), +(428,433,l), +(283,673,ls), +(279,680,o), +(267,700,o), +(240,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 856; +} +); +unicode = 77; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 168; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 126; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 636; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = N; +kernLeft = I; +kernRight = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (345,0); +}, +{ +name = top; +pos = (342,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,574,l), +(525,12,l), +(527,9,o), +(533,0,o), +(546,0,cs), +(568,0,ls), +(581,0,o), +(590,9,o), +(590,23,cs), +(590,677,ls), +(590,691,o), +(581,700,o), +(567,700,cs), +(549,700,ls), +(536,700,o), +(527,691,o), +(527,677,cs), +(527,124,l), +(158,688,ls), +(156,691,o), +(150,700,o), +(137,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +width = 684; +}, +{ +anchors = ( +{ +name = bottom; +pos = (374,0); +}, +{ +name = top; +pos = (370,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(263,0,ls), +(278,0,o), +(290,12,o), +(290,27,cs), +(290,278,l), +(459,23,ls), +(463,17,o), +(473,0,o), +(500,0,cs), +(658,0,ls), +(673,0,o), +(685,12,o), +(685,27,cs), +(685,673,ls), +(685,688,o), +(673,700,o), +(658,700,cs), +(477,700,ls), +(462,700,o), +(450,688,o), +(450,673,cs), +(450,400,l), +(281,677,ls), +(277,684,o), +(267,700,o), +(240,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 740; +} +); +unicode = 78; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 540; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 125; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Nacute; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = N; +}, +{ +pos = (214,0); +ref = acutecomb.case; +} +); +width = 684; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = N; +}, +{ +pos = (181,0); +ref = acutecomb.case; +} +); +width = 740; +} +); +unicode = 323; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 333; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ncaron; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = N; +}, +{ +pos = (136,0); +ref = caroncomb.case; +} +); +width = 684; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = N; +}, +{ +pos = (95,0); +ref = caroncomb.case; +} +); +width = 740; +} +); +unicode = 327; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 333; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ncommaaccent; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = N; +}, +{ +pos = (209,0); +ref = commaaccentcomb.case; +} +); +width = 684; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = N; +}, +{ +pos = (191,0); +ref = commaaccentcomb.case; +} +); +width = 740; +} +); +unicode = 325; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 333; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ntilde; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = N; +}, +{ +pos = (147,0); +ref = tildecomb.case; +} +); +width = 684; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = N; +}, +{ +pos = (116,0); +ref = tildecomb.case; +} +); +width = 740; +} +); +unicode = 209; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 333; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Eng; +kernLeft = I; +kernRight = I; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(439,-225,l), +(564,-225,o), +(590,-151,o), +(590,-57,c), +(590,677,l), +(590,691,o), +(581,700,o), +(567,700,c), +(549,700,l), +(536,700,o), +(527,691,o), +(527,677,c), +(527,124,l), +(158,688,l), +(156,691,o), +(150,700,o), +(137,700,c), +(116,700,l), +(103,700,o), +(94,691,o), +(94,677,c), +(94,22,l), +(94,9,o), +(103,0,o), +(116,0,c), +(134,0,l), +(148,0,o), +(157,9,o), +(157,22,c), +(157,574,l), +(527,8,l), +(527,-57,l), +(527,-118,o), +(515,-165,o), +(439,-165,c), +(435,-165,l), +(422,-165,o), +(413,-174,o), +(413,-187,c), +(413,-203,l), +(413,-216,o), +(422,-225,o), +(435,-225,c) +); +} +); +width = 684; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,-225,ls), +(541,-225,o), +(685,-145,o), +(685,26,cs), +(685,673,ls), +(685,688,o), +(673,700,o), +(658,700,cs), +(477,700,ls), +(462,700,o), +(450,688,o), +(450,673,cs), +(450,400,l), +(281,677,ls), +(277,684,o), +(267,700,o), +(240,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs), +(263,0,ls), +(278,0,o), +(290,12,o), +(290,27,cs), +(290,278,l), +(450,38,l), +(450,36,l), +(450,2,o), +(426,-22,o), +(383,-22,cs), +(343,-22,ls), +(328,-22,o), +(316,-34,o), +(316,-49,c), +(316,-198,ls), +(316,-213,o), +(328,-225,o), +(343,-225,cs) +); +} +); +width = 740; +} +); +unicode = 330; +}, +{ +color = 6; +glyphname = O; +kernLeft = O; +kernRight = O; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = center; +pos = (331,350); +}, +{ +name = ogonek; +pos = (596,10); +}, +{ +name = top; +pos = (331,700); +}, +{ +name = topleft; +pos = (20,700); +}, +{ +name = topright; +pos = (642,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(497,-10,o), +(590,77,o), +(595,266,cs), +(597,326,o), +(597,374,o), +(595,434,cs), +(590,620,o), +(487,710,o), +(331,710,cs), +(175,710,o), +(72,620,o), +(67,434,cs), +(65,374,o), +(65,326,o), +(67,266,cs), +(72,77,o), +(165,-10,o), +(331,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(217,50,o), +(135,115,o), +(130,271,cs), +(128,331,o), +(128,369,o), +(130,429,cs), +(135,585,o), +(218,650,o), +(331,650,cs), +(444,650,o), +(527,585,o), +(532,429,cs), +(534,369,o), +(534,331,o), +(532,271,cs), +(527,115,o), +(445,50,o), +(331,50,cs) +); +} +); +width = 662; +}, +{ +anchors = ( +{ +name = bottom; +pos = (371,0); +}, +{ +name = center; +pos = (371,350); +}, +{ +name = ogonek; +pos = (668,10); +}, +{ +name = top; +pos = (371,700); +}, +{ +name = topleft; +pos = (20,700); +}, +{ +name = topright; +pos = (722,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(567,-10,o), +(697,81,o), +(705,260,cs), +(707,314,o), +(707,379,o), +(705,436,cs), +(698,611,o), +(567,710,o), +(371,710,cs), +(175,710,o), +(44,611,o), +(37,436,cs), +(35,379,o), +(35,314,o), +(37,260,cs), +(45,81,o), +(175,-10,o), +(371,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(327,185,o), +(299,210,o), +(297,266,cs), +(295,323,o), +(295,379,o), +(297,434,cs), +(299,490,o), +(328,515,o), +(371,515,cs), +(414,515,o), +(443,490,o), +(445,434,cs), +(447,379,o), +(447,323,o), +(445,266,cs), +(443,210,o), +(415,185,o), +(371,185,cs) +); +} +); +width = 742; +} +); +unicode = 79; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 335; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 434; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 266; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 496; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Oacute; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = O; +}, +{ +pos = (203,0); +ref = acutecomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = O; +}, +{ +pos = (182,0); +ref = acutecomb.case; +} +); +width = 742; +} +); +unicode = 211; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Obreve; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = O; +}, +{ +pos = (146,0); +ref = brevecomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = O; +}, +{ +pos = (144,0); +ref = brevecomb.case; +} +); +width = 742; +} +); +unicode = 334; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ocircumflex; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = O; +}, +{ +pos = (125,0); +ref = circumflexcomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = O; +}, +{ +pos = (96,0); +ref = circumflexcomb.case; +} +); +width = 742; +} +); +unicode = 212; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Odieresis; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = O; +}, +{ +pos = (128,0); +ref = dieresiscomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = O; +}, +{ +pos = (101,0); +ref = dieresiscomb.case; +} +); +width = 742; +} +); +unicode = 214; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ograve; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = O; +}, +{ +pos = (93,0); +ref = gravecomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = O; +}, +{ +pos = (22,0); +ref = gravecomb.case; +} +); +width = 742; +} +); +unicode = 210; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ohungarumlaut; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = O; +}, +{ +pos = (158,0); +ref = hungarumlautcomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = O; +}, +{ +pos = (132,0); +ref = hungarumlautcomb.case; +} +); +width = 742; +} +); +unicode = 336; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Omacron; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = O; +}, +{ +pos = (139,0); +ref = macroncomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = O; +}, +{ +pos = (109,0); +ref = macroncomb.case; +} +); +width = 742; +} +); +unicode = 332; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Oslash; +kernLeft = O; +kernRight = O; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = O; +}, +{ +pos = (100,-1); +ref = slashlongcomb; +} +); +width = 662; +}, +{ +anchors = ( +{ +name = bottom; +pos = (371,0); +}, +{ +name = top; +pos = (371,700); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = O; +}, +{ +pos = (86,-1); +ref = slashlongcomb; +} +); +width = 742; +} +); +unicode = 216; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 145; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 351; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 679; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 85; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 20; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Oslashacute; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = Oslash; +}, +{ +pos = (203,0); +ref = acutecomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = Oslash; +}, +{ +pos = (182,0); +ref = acutecomb.case; +} +); +width = 742; +} +); +unicode = 510; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 349; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Otilde; +kernLeft = O; +kernRight = O; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = O; +}, +{ +pos = (136,0); +ref = tildecomb.case; +} +); +width = 662; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = O; +}, +{ +pos = (117,0); +ref = tildecomb.case; +} +); +width = 742; +} +); +unicode = 213; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 331; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = OE; +kernLeft = O; +kernRight = E; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (450,0); +}, +{ +name = top; +pos = (450,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(823,0,l), +(837,0,o), +(846,9,o), +(846,22,c), +(846,37,l), +(846,51,o), +(837,60,o), +(823,60,c), +(506,60,l), +(506,325,l), +(793,325,l), +(807,325,o), +(816,334,o), +(816,347,c), +(816,362,l), +(816,376,o), +(807,385,o), +(793,385,c), +(506,385,l), +(506,640,l), +(815,640,l), +(829,640,o), +(838,649,o), +(838,662,c), +(838,677,l), +(838,691,o), +(829,700,o), +(815,700,c), +(348,700,l), +(136,700,o), +(73,604,o), +(70,430,cs), +(69,370,o), +(69,331,o), +(70,271,cs), +(74,87,o), +(137,0,o), +(343,0,c) +); +}, +{ +closed = 1; +nodes = ( +(189,60,o), +(136,120,o), +(133,276,cs), +(132,336,o), +(132,365,o), +(133,425,cs), +(136,571,o), +(193,640,o), +(353,640,c), +(443,640,l), +(443,60,l), +(348,60,l) +); +} +); +width = 900; +}, +{ +anchors = ( +{ +name = bottom; +pos = (501,0); +}, +{ +name = top; +pos = (501,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(937,0,l), +(952,0,o), +(964,12,o), +(964,27,c), +(964,168,l), +(964,183,o), +(952,195,o), +(937,195,c), +(649,195,l), +(649,258,l), +(907,258,l), +(922,258,o), +(934,270,o), +(934,285,c), +(934,415,l), +(934,430,o), +(922,442,o), +(907,442,c), +(649,442,l), +(649,505,l), +(929,505,l), +(944,505,o), +(956,517,o), +(956,532,c), +(956,673,l), +(956,688,o), +(944,700,o), +(929,700,c), +(369,700,l), +(182,700,o), +(42,604,o), +(35,425,cs), +(33,368,o), +(33,330,o), +(35,276,cs), +(43,87,o), +(173,0,o), +(364,0,c) +); +}, +{ +closed = 1; +nodes = ( +(325,195,o), +(292,220,o), +(289,276,cs), +(286,333,o), +(286,370,o), +(289,425,cs), +(292,481,o), +(329,505,o), +(374,505,c), +(410,505,l), +(410,195,l), +(369,195,l) +); +} +); +width = 1002; +} +); +unicode = 338; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 842; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 66; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 439; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 502; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = P; +kernLeft = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (314,0); +}, +{ +name = top; +pos = (314,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,286,l), +(359,286,ls), +(499,286,o), +(589,357,o), +(589,493,cs), +(589,629,o), +(499,700,o), +(359,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,640,l), +(354,640,ls), +(470,640,o), +(526,588,o), +(526,493,cs), +(526,398,o), +(470,346,o), +(354,346,cs), +(157,346,l) +); +} +); +width = 628; +}, +{ +anchors = ( +{ +name = bottom; +pos = (353,0); +}, +{ +name = top; +pos = (353,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,0,ls), +(303,0,o), +(315,12,o), +(315,27,cs), +(315,218,l), +(385,218,ls), +(566,218,o), +(686,289,o), +(686,455,cs), +(686,621,o), +(566,700,o), +(385,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,514,l), +(380,514,ls), +(416,514,o), +(426,482,o), +(426,457,cs), +(426,418,o), +(401,403,o), +(380,403,cs), +(310,403,l) +); +} +); +width = 705; +} +); +unicode = 80; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 493; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 403; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 218; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 310; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 345; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 139; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Thorn; +kernLeft = I; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (317,0); +}, +{ +name = top; +pos = (317,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,l), +(148,0,o), +(157,9,o), +(157,22,c), +(157,143,l), +(359,143,l), +(499,143,o), +(589,214,o), +(589,350,cs), +(589,486,o), +(499,557,o), +(359,557,c), +(157,557,l), +(157,678,l), +(157,691,o), +(148,700,o), +(135,700,c), +(116,700,l), +(103,700,o), +(94,691,o), +(94,678,c), +(94,22,l), +(94,9,o), +(103,0,o), +(116,0,c) +); +}, +{ +closed = 1; +nodes = ( +(157,497,l), +(354,497,l), +(470,497,o), +(526,445,o), +(526,350,cs), +(526,255,o), +(470,203,o), +(354,203,c), +(157,203,l) +); +} +); +width = 633; +}, +{ +anchors = ( +{ +name = bottom; +pos = (353,0); +}, +{ +name = top; +pos = (353,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,0,ls), +(303,0,o), +(315,12,o), +(315,27,cs), +(315,119,l), +(380,119,ls), +(566,119,o), +(686,190,o), +(686,356,cs), +(686,522,o), +(566,601,o), +(380,601,c), +(315,601,l), +(315,673,ls), +(315,688,o), +(303,700,o), +(288,700,cs), +(82,700,l), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,415,l), +(380,415,ls), +(416,415,o), +(426,383,o), +(426,358,cs), +(426,319,o), +(401,304,o), +(380,304,cs), +(310,304,l) +); +} +); +width = 705; +} +); +unicode = 222; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 119; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 601; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 570; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 6; +glyphname = Q; +kernLeft = O; +kernRight = O; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(569,-65,l), +(580,-65,o), +(589,-56,o), +(589,-45,cs), +(589,-39,o), +(587,-36,o), +(586,-34,c), +(522,56,l), +(568,101,o), +(592,171,o), +(595,266,cs), +(597,326,o), +(597,374,o), +(595,434,cs), +(590,620,o), +(487,710,o), +(331,710,cs), +(175,710,o), +(72,620,o), +(67,434,cs), +(65,374,o), +(65,326,o), +(67,266,cs), +(72,77,o), +(165,-10,o), +(331,-10,cs), +(386,-10,o), +(432,0,o), +(471,19,c), +(515,-42,l), +(521,-50,o), +(532,-65,o), +(547,-65,c) +); +}, +{ +closed = 1; +nodes = ( +(217,50,o), +(135,115,o), +(130,271,cs), +(128,331,o), +(128,369,o), +(130,429,cs), +(135,585,o), +(218,650,o), +(331,650,cs), +(444,650,o), +(527,585,o), +(532,429,cs), +(534,369,o), +(534,331,o), +(532,271,cs), +(527,115,o), +(445,50,o), +(331,50,cs) +); +} +); +width = 662; +}, +{ +anchors = ( +{ +name = bottom; +pos = (371,0); +}, +{ +name = top; +pos = (371,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(694,-65,l), +(706,-65,o), +(716,-55,o), +(714,-43,cs), +(714,-40,o), +(712,-36,o), +(711,-34,c), +(632,79,l), +(675,123,o), +(700,184,o), +(704,260,cs), +(706,314,o), +(706,379,o), +(704,436,cs), +(697,611,o), +(566,710,o), +(370,710,cs), +(174,710,o), +(43,611,o), +(36,436,cs), +(34,379,o), +(34,314,o), +(36,260,cs), +(44,81,o), +(174,-10,o), +(370,-10,cs), +(390,-10,o), +(410,-9,o), +(428,-7,c), +(456,-42,l), +(462,-50,o), +(473,-65,o), +(498,-65,c) +); +}, +{ +closed = 1; +nodes = ( +(326,185,o), +(298,210,o), +(296,266,cs), +(294,323,o), +(294,379,o), +(296,434,cs), +(298,490,o), +(327,515,o), +(370,515,cs), +(413,515,o), +(442,490,o), +(444,434,cs), +(446,379,o), +(446,323,o), +(444,266,cs), +(442,210,o), +(414,185,o), +(370,185,cs) +); +} +); +width = 742; +} +); +unicode = 81; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-56"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 82; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 750; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 580; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = R; +kernLeft = I; +kernRight = R; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (324,0); +}, +{ +name = top; +pos = (299,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,296,l), +(363,296,l), +(522,27,ls), +(530,13,o), +(538,0,o), +(560,0,cs), +(572,0,ls), +(583,0,o), +(592,9,o), +(592,20,cs), +(592,24,o), +(591,27,o), +(589,31,cs), +(428,305,l), +(523,327,o), +(579,391,o), +(579,498,cs), +(579,634,o), +(489,700,o), +(349,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,640,l), +(344,640,ls), +(460,640,o), +(516,593,o), +(516,498,cs), +(516,403,o), +(460,356,o), +(344,356,cs), +(157,356,l) +); +} +); +width = 640; +}, +{ +anchors = ( +{ +name = bottom; +pos = (369,0); +}, +{ +name = top; +pos = (341,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,218,l), +(346,218,l), +(432,27,ls), +(436,18,o), +(448,0,o), +(475,0,cs), +(680,0,ls), +(692,0,o), +(702,10,o), +(702,22,cs), +(702,27,o), +(701,29,o), +(699,33,cs), +(576,261,l), +(639,301,o), +(684,367,o), +(684,457,cs), +(684,608,o), +(570,700,o), +(378,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(305,514,l), +(378,514,ls), +(411,514,o), +(424,485,o), +(424,459,cs), +(424,432,o), +(409,408,o), +(378,408,cs), +(305,408,l) +); +} +); +width = 722; +} +); +unicode = 82; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 616; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 574; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 94; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 139; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Racute; +kernLeft = I; +kernRight = R; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = R; +}, +{ +pos = (171,0); +ref = acutecomb.case; +} +); +width = 640; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = R; +}, +{ +pos = (152,0); +ref = acutecomb.case; +} +); +width = 722; +} +); +unicode = 340; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 333; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Rcaron; +kernLeft = I; +kernRight = R; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = R; +}, +{ +pos = (93,0); +ref = caroncomb.case; +} +); +width = 640; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = R; +}, +{ +pos = (66,0); +ref = caroncomb.case; +} +); +width = 722; +} +); +unicode = 344; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 335; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Rcommaaccent; +kernLeft = I; +kernRight = R; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = R; +}, +{ +pos = (188,0); +ref = commaaccentcomb.case; +} +); +width = 640; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = R; +}, +{ +pos = (186,0); +ref = commaaccentcomb.case; +} +); +width = 722; +} +); +unicode = 342; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 335; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = S; +kernLeft = S; +kernRight = S; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = top; +pos = (303,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(459,-10,o), +(555,60,o), +(555,181,cs), +(555,291,o), +(484,329,o), +(334,377,cs), +(191,423,o), +(131,450,o), +(131,530,cs), +(131,612,o), +(200,650,o), +(299,650,cs), +(397,650,o), +(464,601,o), +(472,535,cs), +(474,519,o), +(487,515,o), +(494,515,cs), +(514,515,ls), +(528,515,o), +(535,525,o), +(535,535,cs), +(532,612,o), +(457,710,o), +(299,710,cs), +(151,710,o), +(68,631,o), +(68,530,cs), +(68,420,o), +(131,379,o), +(274,333,cs), +(423,285,o), +(492,260,o), +(492,181,cs), +(492,101,o), +(434,50,o), +(304,50,cs), +(174,50,o), +(119,114,o), +(111,170,cs), +(109,181,o), +(102,190,o), +(89,190,cs), +(69,190,ls), +(57,190,o), +(48,181,o), +(48,170,cs), +(51,79,o), +(142,-10,o), +(304,-10,cs) +); +} +); +width = 605; +}, +{ +anchors = ( +{ +name = bottom; +pos = (349,0); +}, +{ +name = top; +pos = (349,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,-10,o), +(679,80,o), +(679,226,cs), +(679,356,o), +(603,419,o), +(403,444,cs), +(313,455,o), +(292,468,o), +(292,487,cs), +(292,504,o), +(306,515,o), +(340,515,cs), +(368,515,o), +(386,503,o), +(393,497,cs), +(405,486,o), +(414,481,o), +(433,481,cs), +(633,481,ls), +(644,481,o), +(654,491,o), +(654,503,cs), +(651,590,o), +(540,710,o), +(340,710,cs), +(158,710,o), +(35,616,o), +(35,480,cs), +(35,347,o), +(135,281,o), +(293,260,cs), +(392,247,o), +(422,237,o), +(422,213,cs), +(422,195,o), +(392,185,o), +(347,185,cs), +(314,185,o), +(292,193,o), +(273,208,cs), +(259,219,o), +(251,225,o), +(230,225,cs), +(40,225,ls), +(28,225,o), +(18,215,o), +(18,203,cs), +(21,92,o), +(126,-10,o), +(347,-10,cs) +); +} +); +width = 697; +} +); +unicode = 83; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 355; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Sacute; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = S; +}, +{ +pos = (175,0); +ref = acutecomb.case; +} +); +width = 605; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = S; +}, +{ +pos = (160,0); +ref = acutecomb.case; +} +); +width = 697; +} +); +unicode = 346; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 303; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Scaron; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = S; +}, +{ +pos = (97,0); +ref = caroncomb.case; +} +); +width = 605; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = S; +}, +{ +pos = (74,0); +ref = caroncomb.case; +} +); +width = 697; +} +); +unicode = 352; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 303; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Scedilla; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(364,-221,o), +(395,-180,o), +(395,-132,cs), +(395,-84,o), +(363,-50,o), +(319,-50,cs), +(304,-50,o), +(289,-53,o), +(281,-58,c), +(304,-10,l), +(459,-10,o), +(555,60,o), +(555,181,cs), +(555,291,o), +(484,329,o), +(334,377,cs), +(191,423,o), +(131,450,o), +(131,530,cs), +(131,612,o), +(200,650,o), +(299,650,cs), +(397,650,o), +(464,601,o), +(472,535,cs), +(474,519,o), +(487,515,o), +(494,515,c), +(514,515,l), +(528,515,o), +(535,525,o), +(535,535,cs), +(532,612,o), +(457,710,o), +(299,710,cs), +(151,710,o), +(68,631,o), +(68,530,cs), +(68,420,o), +(131,379,o), +(274,333,cs), +(423,285,o), +(492,260,o), +(492,181,cs), +(492,101,o), +(434,50,o), +(304,50,cs), +(174,50,o), +(119,114,o), +(111,170,cs), +(109,181,o), +(102,190,o), +(89,190,c), +(69,190,l), +(57,190,o), +(48,181,o), +(48,170,cs), +(50,89,o), +(122,10,o), +(250,-6,c), +(230,-53,l), +(226,-63,o), +(218,-75,o), +(225,-83,c), +(241,-100,l), +(256,-116,o), +(269,-96,o), +(301,-96,cs), +(324,-96,o), +(344,-110,o), +(344,-134,cs), +(344,-159,o), +(324,-174,o), +(301,-174,cs), +(257,-174,o), +(250,-140,o), +(233,-156,c), +(219,-169,l), +(203,-184,o), +(244,-219,o), +(301,-220,cs) +); +} +); +width = 605; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-220,o), +(444,-183,o), +(444,-130,cs), +(444,-77,o), +(414,-40,o), +(363,-40,cs), +(359,-40,o), +(341,-42,o), +(333,-45,c), +(351,-10,l), +(538,-8,o), +(679,81,o), +(679,226,cs), +(679,356,o), +(603,419,o), +(403,444,cs), +(313,455,o), +(292,468,o), +(292,487,cs), +(292,504,o), +(306,515,o), +(340,515,cs), +(368,515,o), +(386,503,o), +(393,497,cs), +(405,486,o), +(414,481,o), +(433,481,c), +(633,481,l), +(644,481,o), +(654,491,o), +(654,503,cs), +(651,590,o), +(540,710,o), +(340,710,cs), +(158,710,o), +(35,616,o), +(35,480,cs), +(35,347,o), +(135,281,o), +(293,260,cs), +(392,247,o), +(422,237,o), +(422,213,cs), +(422,195,o), +(392,185,o), +(347,185,cs), +(314,185,o), +(292,193,o), +(273,208,cs), +(259,219,o), +(251,225,o), +(230,225,c), +(40,225,l), +(28,225,o), +(18,215,o), +(18,203,cs), +(20,102,o), +(107,9,o), +(288,-7,c), +(268,-52,l), +(259,-71,o), +(261,-76,o), +(270,-85,c), +(291,-106,l), +(304,-119,o), +(327,-106,o), +(345,-106,cs), +(365,-106,o), +(373,-118,o), +(373,-130,cs), +(373,-142,o), +(364,-154,o), +(345,-154,cs), +(311,-154,o), +(306,-136,o), +(289,-151,c), +(268,-169,l), +(245,-189,o), +(292,-220,o), +(345,-220,cs) +); +} +); +width = 697; +} +); +unicode = 350; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Scircumflex; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = S; +}, +{ +pos = (97,0); +ref = circumflexcomb.case; +} +); +width = 605; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = S; +}, +{ +pos = (74,0); +ref = circumflexcomb.case; +} +); +width = 697; +} +); +unicode = 348; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 303; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Scommaaccent; +kernLeft = S; +kernRight = S; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = S; +}, +{ +pos = (169,0); +ref = commaaccentcomb.case; +} +); +width = 605; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = S; +}, +{ +pos = (166,0); +ref = commaaccentcomb.case; +} +); +width = 697; +} +); +unicode = 536; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-215"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 303; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Germandbls; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (286,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,0,ls), +(136,0,o), +(145,9,o), +(145,22,cs), +(145,457,ls), +(145,598,o), +(216,652,o), +(332,652,cs), +(412,652,o), +(477,617,o), +(477,586,cs), +(477,574,o), +(469,564,o), +(456,551,cs), +(294,389,ls), +(281,376,o), +(279,372,o), +(279,361,cs), +(279,350,ls), +(279,337,o), +(288,328,o), +(301,328,cs), +(346,328,ls), +(461,328,o), +(519,285,o), +(519,201,cs), +(519,106,o), +(460,58,o), +(342,58,cs), +(227,58,ls), +(214,58,o), +(205,49,o), +(205,36,cs), +(205,22,ls), +(205,9,o), +(214,0,o), +(227,0,cs), +(352,0,ls), +(492,0,o), +(580,77,o), +(580,201,cs), +(580,318,o), +(490,386,o), +(336,386,c), +(334,346,l), +(510,523,ls), +(529,542,o), +(542,557,o), +(542,588,cs), +(542,652,o), +(449,710,o), +(337,710,cs), +(181,710,o), +(84,634,o), +(84,462,cs), +(84,22,ls), +(84,9,o), +(93,0,o), +(106,0,cs) +); +} +); +width = 598; +}, +{ +anchors = ( +{ +name = bottom; +pos = (341,0); +} +); +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,0,ls), +(265,0,o), +(277,12,o), +(277,27,c), +(277,459,ls), +(277,516,o), +(299,541,o), +(348,541,cs), +(376,541,o), +(395,531,o), +(395,517,cs), +(395,513,o), +(393,510,o), +(389,506,cs), +(325,432,ls), +(310,414,o), +(307,409,o), +(307,391,cs), +(307,298,ls), +(307,281,o), +(317,271,o), +(336,271,cs), +(377,271,ls), +(436,271,o), +(459,250,o), +(459,219,cs), +(459,188,o), +(437,168,o), +(378,168,cs), +(340,168,ls), +(320,168,o), +(307,157,o), +(307,141,cs), +(307,27,ls), +(307,11,o), +(320,0,o), +(340,0,c), +(435,0,ls), +(593,0,o), +(705,81,o), +(705,207,cs), +(705,307,o), +(632,394,o), +(463,394,cs), +(491,290,l), +(651,469,ls), +(676,496,o), +(679,508,o), +(679,526,cs), +(679,610,o), +(553,710,o), +(362,710,cs), +(170,710,o), +(45,617,o), +(45,452,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 715; +} +); +unicode = 7838; +}, +{ +color = 6; +glyphname = T; +kernLeft = T; +kernRight = T; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (279,0); +}, +{ +name = center; +pos = (279,350); +}, +{ +name = top; +pos = (279,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,0,ls), +(301,0,o), +(310,9,o), +(310,22,cs), +(310,640,l), +(507,640,ls), +(521,640,o), +(530,649,o), +(530,662,cs), +(530,677,ls), +(530,691,o), +(521,700,o), +(507,700,cs), +(49,700,ls), +(36,700,o), +(27,691,o), +(27,677,cs), +(27,662,ls), +(27,649,o), +(36,640,o), +(49,640,cs), +(247,640,l), +(247,22,ls), +(247,9,o), +(256,0,o), +(269,0,cs) +); +} +); +width = 557; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = center; +pos = (337,350); +}, +{ +name = top; +pos = (337,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(437,0,ls), +(452,0,o), +(464,12,o), +(464,27,cs), +(464,485,l), +(630,485,ls), +(645,485,o), +(657,497,o), +(657,512,cs), +(657,673,ls), +(657,688,o), +(645,700,o), +(630,700,cs), +(44,700,ls), +(29,700,o), +(17,688,o), +(17,673,cs), +(17,512,ls), +(17,497,o), +(29,485,o), +(44,485,cs), +(210,485,l), +(210,27,ls), +(210,12,o), +(222,0,o), +(237,0,cs) +); +} +); +width = 674; +} +); +unicode = 84; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 495; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 649; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 324; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 59; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 544; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Tbar; +kernLeft = T; +kernRight = T; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(292,0,ls), +(306,0,o), +(315,9,o), +(315,22,cs), +(315,350,l), +(432,350,ls), +(446,350,o), +(455,359,o), +(455,372,cs), +(455,387,ls), +(455,401,o), +(446,410,o), +(432,410,cs), +(315,410,l), +(315,640,l), +(512,640,ls), +(526,640,o), +(535,649,o), +(535,662,cs), +(535,677,ls), +(535,691,o), +(526,700,o), +(512,700,cs), +(54,700,ls), +(41,700,o), +(32,691,o), +(32,677,cs), +(32,662,ls), +(32,649,o), +(41,640,o), +(54,640,cs), +(252,640,l), +(252,410,l), +(134,410,ls), +(121,410,o), +(112,401,o), +(112,387,cs), +(112,372,ls), +(112,359,o), +(121,350,o), +(134,350,cs), +(252,350,l), +(252,22,ls), +(252,9,o), +(261,0,o), +(274,0,cs) +); +} +); +width = 567; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(441,0,ls), +(456,0,o), +(468,12,o), +(468,27,cs), +(468,258,l), +(558,258,ls), +(573,258,o), +(585,270,o), +(585,285,cs), +(585,356,ls), +(585,371,o), +(573,383,o), +(558,383,cs), +(468,383,l), +(468,485,l), +(634,485,ls), +(649,485,o), +(661,497,o), +(661,512,cs), +(661,673,ls), +(661,688,o), +(649,700,o), +(634,700,cs), +(48,700,ls), +(33,700,o), +(21,688,o), +(21,673,cs), +(21,512,ls), +(21,497,o), +(33,485,o), +(48,485,cs), +(214,485,l), +(214,383,l), +(124,383,ls), +(109,383,o), +(97,371,o), +(97,356,cs), +(97,285,ls), +(97,270,o), +(109,258,o), +(124,258,cs), +(214,258,l), +(214,27,ls), +(214,12,o), +(226,0,o), +(241,0,cs) +); +} +); +width = 682; +} +); +unicode = 358; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 380; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 301; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Tcaron; +kernLeft = T; +kernRight = T; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = T; +}, +{ +pos = (73,0); +ref = caroncomb.case; +} +); +width = 557; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = T; +}, +{ +pos = (62,0); +ref = caroncomb.case; +} +); +width = 674; +} +); +unicode = 356; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 302; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Tcommaaccent; +kernLeft = T; +kernRight = T; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = T; +}, +{ +pos = (143,0); +ref = commaaccentcomb.case; +} +); +width = 557; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = T; +}, +{ +pos = (154,0); +ref = commaaccentcomb.case; +} +); +width = 674; +} +); +unicode = 538; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 302; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = U; +kernLeft = U; +kernRight = U; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (346,0); +}, +{ +name = ogonek; +pos = (410,50); +}, +{ +name = top; +pos = (346,700); +}, +{ +name = topright; +pos = (671,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(509,-10,o), +(603,77,o), +(603,271,cs), +(603,677,l), +(603,691,o), +(594,700,o), +(581,700,c), +(563,700,l), +(549,700,o), +(540,691,o), +(540,677,c), +(540,268,ls), +(540,118,o), +(465,50,o), +(346,50,cs), +(226,50,o), +(151,118,o), +(151,268,cs), +(151,677,l), +(151,691,o), +(142,700,o), +(128,700,c), +(110,700,l), +(97,700,o), +(88,691,o), +(88,677,c), +(88,271,ls), +(88,77,o), +(184,-10,o), +(346,-10,cs) +); +} +); +width = 691; +}, +{ +anchors = ( +{ +name = bottom; +pos = (373,0); +}, +{ +name = ogonek; +pos = (469,115); +}, +{ +name = top; +pos = (373,700); +}, +{ +name = topright; +pos = (726,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(564,-10,o), +(697,75,o), +(697,264,cs), +(697,673,ls), +(697,688,o), +(685,700,o), +(670,700,cs), +(474,700,ls), +(459,700,o), +(447,688,o), +(447,673,cs), +(447,268,ls), +(447,218,o), +(422,191,o), +(373,191,cs), +(324,191,o), +(299,218,o), +(299,268,cs), +(299,673,ls), +(299,688,o), +(287,700,o), +(272,700,cs), +(76,700,ls), +(61,700,o), +(49,688,o), +(49,673,cs), +(49,264,ls), +(49,75,o), +(182,-10,o), +(374,-10,cs) +); +} +); +width = 746; +} +); +unicode = 85; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 267; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 333; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 535; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 580; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 84; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 129; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Uacute; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = U; +}, +{ +pos = (218,0); +ref = acutecomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = U; +}, +{ +pos = (184,0); +ref = acutecomb.case; +} +); +width = 746; +} +); +unicode = 218; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ubreve; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = U; +}, +{ +pos = (161,0); +ref = brevecomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = U; +}, +{ +pos = (146,0); +ref = brevecomb.case; +} +); +width = 746; +} +); +unicode = 364; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ucircumflex; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = U; +}, +{ +pos = (140,0); +ref = circumflexcomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = U; +}, +{ +pos = (98,0); +ref = circumflexcomb.case; +} +); +width = 746; +} +); +unicode = 219; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Udieresis; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = U; +}, +{ +pos = (143,0); +ref = dieresiscomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = U; +}, +{ +pos = (103,0); +ref = dieresiscomb.case; +} +); +width = 746; +} +); +unicode = 220; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ugrave; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = U; +}, +{ +pos = (108,0); +ref = gravecomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = U; +}, +{ +pos = (24,0); +ref = gravecomb.case; +} +); +width = 746; +} +); +unicode = 217; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Uhungarumlaut; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = U; +}, +{ +pos = (173,0); +ref = hungarumlautcomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = U; +}, +{ +pos = (134,0); +ref = hungarumlautcomb.case; +} +); +width = 746; +} +); +unicode = 368; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Umacron; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = U; +}, +{ +pos = (154,0); +ref = macroncomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = U; +}, +{ +pos = (111,0); +ref = macroncomb.case; +} +); +width = 746; +} +); +unicode = 362; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Uogonek; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(428,-220,l), +(441,-220,o), +(450,-211,o), +(450,-198,c), +(450,-185,l), +(450,-172,o), +(441,-163,o), +(428,-163,c), +(413,-163,l), +(369,-163,o), +(337,-133,o), +(337,-82,cs), +(337,-31,o), +(369,-14,o), +(412,-5,c), +(534,16,o), +(603,105,o), +(603,271,cs), +(603,677,l), +(603,691,o), +(594,700,o), +(581,700,c), +(563,700,l), +(549,700,o), +(540,691,o), +(540,677,c), +(540,268,ls), +(540,118,o), +(465,50,o), +(346,50,cs), +(226,50,o), +(151,118,o), +(151,268,cs), +(151,677,l), +(151,691,o), +(142,700,o), +(128,700,c), +(110,700,l), +(97,700,o), +(88,691,o), +(88,677,c), +(88,271,ls), +(88,99,o), +(163,11,o), +(292,-6,c), +(282,-24,o), +(277,-47,o), +(277,-82,cs), +(277,-167,o), +(328,-220,o), +(409,-220,c) +); +} +); +width = 691; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(471,-220,l), +(486,-220,o), +(498,-208,o), +(498,-193,c), +(498,-125,l), +(498,-110,o), +(486,-98,o), +(471,-98,c), +(461,-98,l), +(422,-98,o), +(411,-70,o), +(411,-49,cs), +(411,-30,o), +(416,-11,o), +(448,-5,cs), +(596,21,o), +(697,100,o), +(697,264,c), +(697,673,l), +(697,688,o), +(685,700,o), +(670,700,c), +(474,700,l), +(459,700,o), +(447,688,o), +(447,673,c), +(447,268,l), +(447,218,o), +(422,191,o), +(373,191,cs), +(324,191,o), +(299,218,o), +(299,268,c), +(299,673,l), +(299,688,o), +(287,700,o), +(272,700,c), +(76,700,l), +(61,700,o), +(49,688,o), +(49,673,c), +(49,264,l), +(49,104,o), +(144,19,o), +(289,-3,c), +(286,-18,o), +(285,-33,o), +(285,-49,cs), +(285,-144,o), +(336,-220,o), +(457,-220,c) +); +} +); +width = 746; +} +); +unicode = 370; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-187"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Uring; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = U; +}, +{ +pos = (196,0); +ref = ringcomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = U; +}, +{ +pos = (223,0); +ref = ringcomb.case; +} +); +width = 746; +} +); +unicode = 366; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Utilde; +kernLeft = U; +kernRight = U; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = U; +}, +{ +pos = (151,0); +ref = tildecomb.case; +} +); +width = 691; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = U; +}, +{ +pos = (119,0); +ref = tildecomb.case; +} +); +width = 746; +} +); +unicode = 360; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 332; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = V; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (319,0); +}, +{ +name = top; +pos = (319,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(333,0,ls), +(351,0,o), +(361,8,o), +(367,24,cs), +(599,669,ls), +(600,672,o), +(601,678,o), +(601,680,cs), +(601,691,o), +(592,700,o), +(581,700,cs), +(560,700,ls), +(547,700,o), +(540,690,o), +(538,685,cs), +(319,73,l), +(100,685,ls), +(98,690,o), +(91,700,o), +(78,700,cs), +(57,700,ls), +(46,700,o), +(37,691,o), +(37,680,cs), +(37,678,o), +(38,672,o), +(39,669,cs), +(271,24,ls), +(277,8,o), +(287,0,o), +(305,0,cs) +); +} +); +width = 638; +}, +{ +anchors = ( +{ +name = bottom; +pos = (363,0); +}, +{ +name = top; +pos = (363,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(477,0,ls), +(504,0,o), +(518,18,o), +(522,33,cs), +(710,671,ls), +(711,675,o), +(711,676,o), +(711,678,cs), +(711,690,o), +(701,700,o), +(689,700,cs), +(503,700,ls), +(476,700,o), +(462,682,o), +(458,667,cs), +(363,295,l), +(268,667,ls), +(264,682,o), +(250,700,o), +(223,700,cs), +(37,700,ls), +(25,700,o), +(15,690,o), +(15,678,cs), +(15,676,o), +(15,675,o), +(16,671,cs), +(204,33,ls), +(208,18,o), +(222,0,o), +(249,0,cs) +); +} +); +width = 726; +} +); +unicode = 86; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 24; +} +); +}; +}, +{ +color = 6; +glyphname = W; +kernLeft = W; +kernRight = W; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (394,0); +}, +{ +name = top; +pos = (394,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,0,l), +(246,0,o), +(256,8,o), +(261,24,c), +(394,446,l), +(527,24,l), +(532,8,o), +(542,0,o), +(558,0,c), +(573,0,l), +(589,0,o), +(597,7,o), +(601,24,c), +(738,668,l), +(739,673,o), +(740,678,o), +(740,680,cs), +(740,691,o), +(731,700,o), +(720,700,c), +(699,700,l), +(686,700,o), +(679,694,o), +(677,685,c), +(560,115,l), +(436,522,l), +(432,534,o), +(423,545,o), +(405,545,c), +(383,545,l), +(365,545,o), +(356,534,o), +(352,522,c), +(228,115,l), +(111,685,l), +(109,694,o), +(102,700,o), +(89,700,c), +(68,700,l), +(57,700,o), +(48,691,o), +(48,680,cs), +(48,678,o), +(49,673,o), +(50,668,c), +(187,24,l), +(191,7,o), +(199,0,o), +(215,0,c) +); +} +); +width = 788; +}, +{ +anchors = ( +{ +name = bottom; +pos = (428,0); +}, +{ +name = top; +pos = (428,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(305,0,ls), +(332,0,o), +(343,19,o), +(346,27,cs), +(428,232,l), +(510,27,ls), +(513,19,o), +(524,0,o), +(551,0,cs), +(694,0,ls), +(721,0,o), +(738,20,o), +(740,38,c), +(832,675,l), +(832,676,o), +(832,677,o), +(832,678,cs), +(832,690,o), +(822,700,o), +(810,700,cs), +(624,700,ls), +(601,700,o), +(590,693,o), +(588,673,cs), +(554,392,l), +(513,516,ls), +(510,525,o), +(503,545,o), +(479,545,cs), +(377,545,ls), +(353,545,o), +(346,525,o), +(343,516,cs), +(302,391,l), +(268,673,ls), +(266,693,o), +(255,700,o), +(232,700,cs), +(46,700,ls), +(34,700,o), +(24,690,o), +(24,678,cs), +(24,677,o), +(24,676,o), +(24,675,c), +(116,38,l), +(118,20,o), +(135,0,o), +(162,0,cs) +); +} +); +width = 856; +} +); +unicode = 87; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 545; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 670; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 24; +} +); +}; +}, +{ +color = 10; +glyphname = Wacute; +kernLeft = W; +kernRight = W; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = W; +}, +{ +pos = (266,0); +ref = acutecomb.case; +} +); +width = 788; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = W; +}, +{ +pos = (239,0); +ref = acutecomb.case; +} +); +width = 856; +} +); +unicode = 7810; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 401; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Wcircumflex; +kernLeft = W; +kernRight = W; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = W; +}, +{ +pos = (188,0); +ref = circumflexcomb.case; +} +); +width = 788; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = W; +}, +{ +pos = (153,0); +ref = circumflexcomb.case; +} +); +width = 856; +} +); +unicode = 372; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 401; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Wdieresis; +kernLeft = W; +kernRight = W; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = W; +}, +{ +pos = (191,0); +ref = dieresiscomb.case; +} +); +width = 788; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = W; +}, +{ +pos = (158,0); +ref = dieresiscomb.case; +} +); +width = 856; +} +); +unicode = 7812; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 401; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Wgrave; +kernLeft = W; +kernRight = W; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = W; +}, +{ +pos = (156,0); +ref = gravecomb.case; +} +); +width = 788; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = W; +}, +{ +pos = (79,0); +ref = gravecomb.case; +} +); +width = 856; +} +); +unicode = 7808; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 401; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = X; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = top; +pos = (305,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(72,0,l), +(81,0,o), +(88,5,o), +(95,15,c), +(304,304,l), +(513,15,l), +(520,5,o), +(527,0,o), +(536,0,c), +(560,0,l), +(571,0,o), +(580,9,o), +(580,20,cs), +(580,25,o), +(578,30,o), +(576,33,c), +(344,354,l), +(565,667,l), +(567,670,o), +(569,675,o), +(569,680,cs), +(569,691,o), +(560,700,o), +(549,700,c), +(527,700,l), +(518,700,o), +(511,695,o), +(504,685,c), +(307,405,l), +(106,685,l), +(99,695,o), +(92,700,o), +(83,700,c), +(59,700,l), +(48,700,o), +(39,691,o), +(39,680,cs), +(39,675,o), +(41,670,o), +(43,667,c), +(267,356,l), +(34,33,l), +(32,30,o), +(30,25,o), +(30,20,cs), +(30,9,o), +(39,0,o), +(50,0,c) +); +} +); +width = 609; +}, +{ +anchors = ( +{ +name = bottom; +pos = (370,0); +}, +{ +name = top; +pos = (370,700); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,0,ls), +(266,0,o), +(278,18,o), +(281,23,cs), +(364,157,l), +(451,23,ls), +(454,18,o), +(466,0,o), +(492,0,cs), +(717,0,ls), +(729,0,o), +(739,10,o), +(739,22,cs), +(739,24,o), +(739,28,o), +(736,33,cs), +(523,361,l), +(716,667,ls), +(719,672,o), +(719,673,o), +(719,678,cs), +(719,690,o), +(709,700,o), +(697,700,cs), +(490,700,ls), +(464,700,o), +(452,682,o), +(448,675,cs), +(372,553,l), +(302,675,ls), +(298,682,o), +(286,700,o), +(260,700,cs), +(43,700,ls), +(31,700,o), +(21,690,o), +(21,678,cs), +(21,673,o), +(22,671,o), +(24,667,cs), +(213,358,l), +(3,33,ls), +(0,28,o), +(0,24,o), +(0,22,cs), +(0,10,o), +(10,0,o), +(22,0,cs) +); +} +); +width = 739; +} +); +unicode = 88; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 28; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 580; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Y; +kernLeft = Y; +kernRight = Y; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (316,0); +}, +{ +name = top; +pos = (316,700); +}, +{ +name = topleft; +pos = (20,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(325,0,ls), +(339,0,o), +(348,9,o), +(348,22,cs), +(348,267,l), +(592,667,ls), +(594,671,o), +(596,675,o), +(596,680,cs), +(596,691,o), +(587,700,o), +(576,700,cs), +(556,700,ls), +(547,700,o), +(539,695,o), +(533,685,cs), +(316,332,l), +(99,685,ls), +(93,695,o), +(85,700,o), +(76,700,cs), +(56,700,ls), +(45,700,o), +(36,691,o), +(36,680,cs), +(36,675,o), +(38,671,o), +(40,667,cs), +(284,267,l), +(284,22,ls), +(284,9,o), +(293,0,o), +(306,0,cs) +); +} +); +width = 632; +}, +{ +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = top; +pos = (355,700); +}, +{ +name = topleft; +pos = (20,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(453,0,ls), +(468,0,o), +(480,12,o), +(480,27,cs), +(480,224,l), +(705,669,ls), +(706,671,o), +(707,675,o), +(707,678,cs), +(707,690,o), +(697,700,o), +(685,700,cs), +(497,700,ls), +(470,700,o), +(458,681,o), +(455,675,cs), +(355,474,l), +(255,675,ls), +(252,681,o), +(240,700,o), +(213,700,cs), +(25,700,ls), +(13,700,o), +(3,690,o), +(3,678,cs), +(3,675,o), +(4,671,o), +(5,669,cs), +(230,224,l), +(230,27,ls), +(230,12,o), +(242,0,o), +(257,0,cs) +); +} +); +width = 710; +} +); +unicode = 89; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 310; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Yacute; +kernLeft = Y; +kernRight = Y; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (188,0); +ref = acutecomb.case; +} +); +width = 632; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (166,0); +ref = acutecomb.case; +} +); +width = 710; +} +); +unicode = 221; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 310; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ycircumflex; +kernLeft = Y; +kernRight = Y; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (110,0); +ref = circumflexcomb.case; +} +); +width = 632; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (80,0); +ref = circumflexcomb.case; +} +); +width = 710; +} +); +unicode = 374; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 310; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ydieresis; +kernLeft = Y; +kernRight = Y; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (113,0); +ref = dieresiscomb.case; +} +); +width = 632; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (85,0); +ref = dieresiscomb.case; +} +); +width = 710; +} +); +unicode = 376; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 310; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Ygrave; +kernLeft = Y; +kernRight = Y; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (78,0); +ref = gravecomb.case; +} +); +width = 632; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = Y; +}, +{ +pos = (6,0); +ref = gravecomb.case; +} +); +width = 710; +} +); +unicode = 7922; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 310; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = Z; +kernLeft = Z; +kernRight = Z; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (290,0); +}, +{ +name = center; +pos = (290,350); +}, +{ +name = top; +pos = (280,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(514,0,ls), +(528,0,o), +(537,9,o), +(537,22,cs), +(537,37,ls), +(537,51,o), +(528,60,o), +(514,60,cs), +(122,60,l), +(514,621,ls), +(520,630,o), +(527,640,o), +(527,657,cs), +(527,677,ls), +(527,691,o), +(518,700,o), +(504,700,cs), +(73,700,ls), +(60,700,o), +(51,691,o), +(51,677,cs), +(51,662,ls), +(51,649,o), +(60,640,o), +(73,640,cs), +(451,640,l), +(57,81,ls), +(53,75,o), +(42,63,o), +(42,43,cs), +(42,23,ls), +(42,9,o), +(51,0,o), +(64,0,cs) +); +} +); +width = 579; +}, +{ +anchors = ( +{ +name = bottom; +pos = (347,0); +}, +{ +name = center; +pos = (347,350); +}, +{ +name = top; +pos = (337,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(633,0,ls), +(648,0,o), +(660,12,o), +(660,27,cs), +(660,178,ls), +(660,193,o), +(648,205,o), +(633,205,cs), +(369,205,l), +(634,498,ls), +(642,506,o), +(647,517,o), +(647,531,cs), +(647,673,ls), +(647,688,o), +(635,700,o), +(620,700,cs), +(72,700,ls), +(57,700,o), +(45,688,o), +(45,673,cs), +(45,524,ls), +(45,509,o), +(57,497,o), +(72,497,cs), +(330,497,l), +(50,206,ls), +(45,201,o), +(35,190,o), +(35,171,cs), +(35,27,ls), +(35,12,o), +(47,0,o), +(62,0,cs) +); +} +); +width = 693; +} +); +unicode = 90; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 51; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 691; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 649; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 189; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 815; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 732; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-431"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 74; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 541; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Zacute; +kernLeft = Z; +kernRight = Z; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (152,0); +ref = acutecomb.case; +} +); +width = 579; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (148,0); +ref = acutecomb.case; +} +); +width = 693; +} +); +unicode = 377; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 312; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Zcaron; +kernLeft = Z; +kernRight = Z; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (74,0); +ref = caroncomb.case; +} +); +width = 579; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (62,0); +ref = caroncomb.case; +} +); +width = 693; +} +); +unicode = 381; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 312; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = Zdotaccent; +kernLeft = Z; +kernRight = Z; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (163,0); +ref = dotaccentcomb.case; +} +); +width = 579; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = Z; +}, +{ +pos = (196,0); +ref = dotaccentcomb.case; +} +); +width = 693; +} +); +unicode = 379; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 312; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = a; +kernLeft = a; +kernRight = a; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (268,0); +}, +{ +name = ogonek; +pos = (458,58); +}, +{ +name = top; +pos = (265,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(324,-10,o), +(374,33,o), +(398,69,c), +(398,22,ls), +(398,9,o), +(407,0,o), +(420,0,cs), +(437,0,ls), +(450,0,o), +(459,9,o), +(459,22,cs), +(459,355,ls), +(459,435,o), +(420,530,o), +(262,530,cs), +(129,530,o), +(77,442,o), +(77,405,cs), +(77,393,o), +(83,383,o), +(99,383,c), +(115,383,l), +(125,383,o), +(131,389,o), +(134,398,cs), +(150,442,o), +(192,472,o), +(262,472,cs), +(356,472,o), +(398,429,o), +(398,358,cs), +(398,323,l), +(240,301,ls), +(123,285,o), +(42,229,o), +(42,139,cs), +(42,55,o), +(125,-10,o), +(221,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(169,48,o), +(103,78,o), +(103,144,cs), +(103,198,o), +(160,235,o), +(269,250,cs), +(398,268,l), +(398,234,ls), +(398,108,o), +(323,48,o), +(231,48,cs) +); +} +); +width = 536; +}, +{ +anchors = ( +{ +name = bottom; +pos = (311,0); +}, +{ +name = ogonek; +pos = (580,122); +}, +{ +name = top; +pos = (310,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,-10,o), +(324,15,o), +(353,55,c), +(353,27,ls), +(353,12,o), +(365,0,o), +(380,0,cs), +(555,0,ls), +(570,0,o), +(582,12,o), +(582,27,cs), +(582,314,ls), +(582,451,o), +(495,530,o), +(314,530,cs), +(127,530,o), +(54,431,o), +(51,380,cs), +(50,367,o), +(60,358,o), +(73,358,c), +(243,358,l), +(255,358,o), +(264,362,o), +(271,369,cs), +(284,382,o), +(293,390,o), +(312,390,cs), +(340,390,o), +(342,375,o), +(342,340,c), +(342,339,l), +(236,322,l), +(103,299,o), +(17,246,o), +(17,149,cs), +(17,59,o), +(96,-10,o), +(211,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,138,o), +(242,151,o), +(242,166,cs), +(242,180,o), +(251,195,o), +(286,203,cs), +(345,216,l), +(345,215,l), +(345,162,o), +(319,138,o), +(280,138,cs) +); +} +); +width = 622; +} +); +unicode = 97; +}, +{ +color = 10; +glyphname = aacute; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = a; +}, +{ +pos = (165,0); +ref = acutecomb; +} +); +width = 536; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = a; +}, +{ +pos = (159,0); +ref = acutecomb; +} +); +width = 622; +} +); +unicode = 225; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = abreve; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = a; +}, +{ +pos = (80,0); +ref = brevecomb; +} +); +width = 536; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = a; +}, +{ +pos = (88,0); +ref = brevecomb; +} +); +width = 622; +} +); +unicode = 259; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = acaron; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = a; +}, +{ +pos = (59,0); +ref = caroncomb; +} +); +width = 536; +}, +{ +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = a; +}, +{ +pos = (46,0); +ref = caroncomb; +} +); +width = 622; +} +); +unicode = 462; +}, +{ +color = 10; +glyphname = acircumflex; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = a; +}, +{ +pos = (59,0); +ref = circumflexcomb; +} +); +width = 536; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = a; +}, +{ +pos = (46,0); +ref = circumflexcomb; +} +); +width = 622; +} +); +unicode = 226; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = adieresis; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = a; +}, +{ +pos = (77,0); +ref = dieresiscomb; +} +); +width = 536; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = a; +}, +{ +pos = (55,0); +ref = dieresiscomb; +} +); +width = 622; +} +); +unicode = 228; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = agrave; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = a; +}, +{ +pos = (65,0); +ref = gravecomb; +} +); +width = 536; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = a; +}, +{ +pos = (12,0); +ref = gravecomb; +} +); +width = 622; +} +); +unicode = 224; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = amacron; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = a; +}, +{ +pos = (73,0); +ref = macroncomb; +} +); +width = 536; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = a; +}, +{ +pos = (73,0); +ref = macroncomb; +} +); +width = 622; +} +); +unicode = 257; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = aogonek; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(437,-220,ls), +(450,-220,o), +(459,-211,o), +(459,-198,cs), +(459,-185,ls), +(459,-172,o), +(450,-163,o), +(437,-163,cs), +(432,-163,ls), +(398,-163,o), +(376,-141,o), +(376,-90,cs), +(376,-44,o), +(399,-22,o), +(443,0,cs), +(445,1,ls), +(455,6,o), +(459,14,o), +(459,22,cs), +(459,355,ls), +(459,435,o), +(420,530,o), +(262,530,cs), +(129,530,o), +(77,442,o), +(77,405,cs), +(77,393,o), +(87,383,o), +(99,383,cs), +(113,383,ls), +(125,383,o), +(132,388,o), +(137,404,cs), +(148,437,o), +(188,472,o), +(262,472,cs), +(356,472,o), +(398,429,o), +(398,358,cs), +(398,323,l), +(240,301,ls), +(123,285,o), +(42,229,o), +(42,139,cs), +(42,55,o), +(125,-10,o), +(221,-10,cs), +(324,-10,o), +(374,33,o), +(398,69,c), +(398,38,l), +(398,37,o), +(398,36,o), +(398,35,c), +(362,18,o), +(316,-26,o), +(316,-90,cs), +(316,-175,o), +(367,-220,o), +(428,-220,cs) +); +}, +{ +closed = 1; +nodes = ( +(169,48,o), +(103,78,o), +(103,144,cs), +(103,198,o), +(160,235,o), +(269,250,cs), +(398,268,l), +(398,234,ls), +(398,108,o), +(323,48,o), +(231,48,cs) +); +} +); +width = 536; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(555,-220,l), +(570,-220,o), +(582,-208,o), +(582,-193,c), +(582,-125,l), +(582,-110,o), +(570,-98,o), +(555,-98,c), +(545,-98,l), +(506,-98,o), +(495,-70,o), +(495,-49,cs), +(495,-29,o), +(505,-2,o), +(539,0,c), +(555,0,l), +(570,0,o), +(582,12,o), +(582,27,c), +(582,314,l), +(582,451,o), +(495,530,o), +(314,530,cs), +(127,530,o), +(54,431,o), +(51,380,cs), +(50,367,o), +(60,358,o), +(73,358,c), +(240,358,l), +(241,358,o), +(242,358,o), +(243,358,c), +(275,358,o), +(278,390,o), +(312,390,cs), +(340,390,o), +(342,375,o), +(342,340,c), +(342,339,l), +(236,322,l), +(103,299,o), +(17,246,o), +(17,149,cs), +(17,59,o), +(96,-10,o), +(211,-10,cs), +(273,-10,o), +(324,15,o), +(353,55,c), +(353,27,l), +(353,14,o), +(361,3,o), +(373,0,c), +(370,-14,o), +(369,-33,o), +(369,-49,cs), +(369,-144,o), +(420,-220,o), +(541,-220,c) +); +}, +{ +closed = 1; +nodes = ( +(255,138,o), +(242,151,o), +(242,166,cs), +(242,180,o), +(251,195,o), +(286,203,c), +(345,216,l), +(345,215,l), +(345,162,o), +(319,138,o), +(280,138,cs) +); +} +); +width = 622; +} +); +metricLeft = a; +metricRight = a; +unicode = 261; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 22; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 472; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = aring; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = a; +}, +{ +pos = (115,0); +ref = ringcomb; +} +); +width = 536; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = a; +}, +{ +pos = (160,0); +ref = ringcomb; +} +); +width = 622; +} +); +unicode = 229; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 570; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = atilde; +kernLeft = a; +kernRight = a; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = a; +}, +{ +pos = (75,0); +ref = tildecomb; +} +); +width = 536; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = a; +}, +{ +pos = (56,0); +ref = tildecomb; +} +); +width = 622; +} +); +unicode = 227; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 575; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 263; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = ae; +kernLeft = a; +kernRight = e; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (441,0); +}, +{ +name = top; +pos = (443,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(320,-10,o), +(388,26,o), +(427,100,c), +(458,36,o), +(516,-10,o), +(614,-10,cs), +(749,-10,o), +(816,81,o), +(816,111,cs), +(816,123,o), +(807,131,o), +(795,131,c), +(783,131,l), +(768,131,o), +(764,129,o), +(753,113,cs), +(721,67,o), +(666,48,o), +(614,48,cs), +(545,48,o), +(465,95,o), +(461,225,c), +(461,235,l), +(807,235,l), +(820,235,o), +(830,244,o), +(830,257,c), +(830,272,l), +(830,373,o), +(801,530,o), +(615,530,cs), +(531,530,o), +(475,494,o), +(441,442,c), +(417,491,o), +(364,530,o), +(263,530,cs), +(130,530,o), +(77,442,o), +(77,405,cs), +(77,393,o), +(87,383,o), +(99,383,c), +(113,383,l), +(125,383,o), +(132,388,o), +(137,404,cs), +(148,437,o), +(189,472,o), +(263,472,cs), +(357,472,o), +(399,429,o), +(399,358,c), +(399,326,l), +(241,304,l), +(124,288,o), +(43,229,o), +(43,139,cs), +(43,55,o), +(116,-10,o), +(222,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,48,o), +(104,78,o), +(104,144,cs), +(104,198,o), +(161,235,o), +(270,250,c), +(399,268,l), +(399,234,l), +(399,108,o), +(324,48,o), +(232,48,cs) +); +}, +{ +closed = 1; +nodes = ( +(461,295,l), +(465,416,o), +(539,472,o), +(615,472,cs), +(720,472,o), +(769,396,o), +(769,295,c), +(769,291,l), +(461,291,l) +); +} +); +width = 881; +}, +{ +anchors = ( +{ +name = bottom; +pos = (468,0); +}, +{ +name = top; +pos = (468,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(290,-10,o), +(367,-1,o), +(428,51,c), +(476,11,o), +(544,-10,o), +(625,-10,cs), +(810,-10,o), +(896,94,o), +(896,145,cs), +(896,158,o), +(887,167,o), +(874,167,cs), +(685,167,ls), +(669,167,o), +(664,165,o), +(652,153,cs), +(641,142,o), +(635,135,o), +(623,135,cs), +(594,135,o), +(584,156,o), +(584,196,cs), +(584,201,l), +(882,201,ls), +(897,201,o), +(909,213,o), +(909,228,cs), +(909,258,ls), +(909,405,o), +(820,530,o), +(624,530,cs), +(565,530,o), +(514,516,o), +(471,493,c), +(438,517,o), +(388,530,o), +(314,530,cs), +(127,530,o), +(51,431,o), +(51,380,cs), +(51,367,o), +(60,358,o), +(73,358,cs), +(240,358,l), +(241,358,o), +(242,358,o), +(243,358,cs), +(275,358,o), +(278,390,o), +(312,390,cs), +(339,390,o), +(342,376,o), +(342,342,c), +(342,339,l), +(236,322,l), +(103,299,o), +(17,246,o), +(17,149,cs), +(17,59,o), +(95,-10,o), +(231,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(255,138,o), +(242,151,o), +(242,166,cs), +(242,180,o), +(251,195,o), +(286,203,cs), +(345,216,l), +(345,215,l), +(345,162,o), +(319,138,o), +(280,138,cs) +); +}, +{ +closed = 1; +nodes = ( +(584,330,ls), +(584,371,o), +(598,390,o), +(624,390,cs), +(649,390,o), +(664,371,o), +(664,330,cs), +(664,326,l), +(584,326,l) +); +} +); +width = 935; +} +); +unicode = 230; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 530; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 473; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-379"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 453; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = aeacute; +kernLeft = a; +kernRight = e; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = ae; +}, +{ +pos = (343,0); +ref = acutecomb; +} +); +width = 881; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = ae; +}, +{ +pos = (317,0); +ref = acutecomb; +} +); +width = 935; +} +); +unicode = 509; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 453; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = b; +kernLeft = h; +kernRight = b; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (290,0); +}, +{ +name = top; +pos = (290,750); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(467,-10,o), +(521,115,o), +(525,232,cs), +(526,252,o), +(526,268,o), +(525,288,cs), +(521,405,o), +(467,530,o), +(311,530,cs), +(228,530,o), +(176,495,o), +(143,451,c), +(143,688,ls), +(143,701,o), +(134,710,o), +(121,710,cs), +(104,710,ls), +(91,710,o), +(82,701,o), +(82,688,cs), +(82,22,ls), +(82,9,o), +(91,0,o), +(104,0,cs), +(121,0,ls), +(134,0,o), +(143,9,o), +(143,22,cs), +(143,69,l), +(176,24,o), +(228,-10,o), +(311,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,48,o), +(146,142,o), +(143,224,cs), +(142,244,o), +(142,282,o), +(143,302,cs), +(145,382,o), +(194,472,o), +(305,472,cs), +(422,472,o), +(460,384,o), +(464,288,cs), +(465,268,o), +(465,252,o), +(464,232,cs), +(460,136,o), +(422,48,o), +(305,48,cs) +); +} +); +width = 580; +}, +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,750); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-10,o), +(622,54,o), +(629,221,cs), +(630,251,o), +(630,270,o), +(629,300,cs), +(623,457,o), +(533,530,o), +(417,530,cs), +(361,530,o), +(316,512,o), +(284,483,c), +(284,683,ls), +(284,698,o), +(272,710,o), +(257,710,cs), +(72,710,ls), +(57,710,o), +(45,698,o), +(45,683,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs), +(242,0,ls), +(257,0,o), +(269,12,o), +(269,27,cs), +(269,50,l), +(301,14,o), +(348,-10,o), +(417,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(297,169,o), +(286,191,o), +(284,227,cs), +(282,257,o), +(282,271,o), +(284,301,cs), +(286,333,o), +(300,351,o), +(334,351,cs), +(371,351,o), +(380,329,o), +(384,293,cs), +(386,273,o), +(386,247,o), +(384,227,cs), +(380,191,o), +(371,169,o), +(334,169,cs) +); +} +); +width = 661; +} +); +unicode = 98; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 530; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 288; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 232; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 451; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 69; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 121; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 79; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = c; +kernLeft = o; +kernRight = c; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (268,0); +}, +{ +name = top; +pos = (271,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(419,-10,o), +(482,77,o), +(485,149,cs), +(486,162,o), +(475,171,o), +(463,171,cs), +(449,171,ls), +(435,171,o), +(431,166,o), +(425,150,cs), +(397,74,o), +(348,48,o), +(278,48,cs), +(187,48,o), +(122,100,o), +(118,225,cs), +(117,245,o), +(117,275,o), +(118,295,cs), +(122,420,o), +(187,472,o), +(278,472,cs), +(348,472,o), +(397,446,o), +(425,370,cs), +(431,354,o), +(435,349,o), +(449,349,cs), +(463,349,ls), +(475,349,o), +(486,358,o), +(485,371,cs), +(482,443,o), +(419,530,o), +(278,530,cs), +(137,530,o), +(61,443,o), +(57,300,cs), +(56,280,o), +(56,240,o), +(57,220,cs), +(61,77,o), +(137,-10,o), +(278,-10,cs) +); +} +); +width = 536; +}, +{ +anchors = ( +{ +name = bottom; +pos = (311,0); +}, +{ +name = top; +pos = (311,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(531,-10,o), +(600,141,o), +(603,184,cs), +(604,199,o), +(591,211,o), +(576,211,cs), +(381,211,ls), +(366,211,o), +(357,203,o), +(352,191,cs), +(344,172,o), +(339,161,o), +(315,161,cs), +(284,161,o), +(277,181,o), +(275,224,cs), +(274,243,o), +(274,266,o), +(275,295,cs), +(276,335,o), +(284,359,o), +(315,359,cs), +(335,359,o), +(343,348,o), +(352,329,cs), +(358,317,o), +(366,309,o), +(381,309,cs), +(576,309,ls), +(591,309,o), +(604,321,o), +(603,336,cs), +(600,389,o), +(521,530,o), +(310,530,cs), +(157,530,o), +(37,448,o), +(30,300,cs), +(29,277,o), +(29,240,o), +(30,219,cs), +(38,71,o), +(157,-10,o), +(310,-10,cs) +); +} +); +width = 622; +} +); +unicode = 99; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 295; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 225; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 445; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 484; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 137; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 270; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = cacute; +kernLeft = o; +kernRight = c; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = c; +}, +{ +pos = (171,0); +ref = acutecomb; +} +); +width = 536; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = c; +}, +{ +pos = (160,0); +ref = acutecomb; +} +); +width = 622; +} +); +unicode = 263; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 270; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ccaron; +kernLeft = o; +kernRight = c; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = c; +}, +{ +pos = (65,0); +ref = caroncomb; +} +); +width = 536; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = c; +}, +{ +pos = (47,0); +ref = caroncomb; +} +); +width = 622; +} +); +unicode = 269; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 270; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = ccedilla; +kernLeft = o; +kernRight = c; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,-221,o), +(369,-180,o), +(369,-132,cs), +(369,-84,o), +(337,-50,o), +(293,-50,cs), +(278,-50,o), +(263,-53,o), +(255,-58,c), +(278,-10,l), +(419,-10,o), +(482,77,o), +(485,149,cs), +(486,162,o), +(475,171,o), +(463,171,c), +(449,171,l), +(435,171,o), +(431,166,o), +(425,150,cs), +(397,74,o), +(348,48,o), +(278,48,cs), +(187,48,o), +(122,100,o), +(118,225,cs), +(117,245,o), +(117,275,o), +(118,295,cs), +(122,420,o), +(187,472,o), +(278,472,cs), +(348,472,o), +(397,446,o), +(425,370,cs), +(431,354,o), +(435,349,o), +(449,349,c), +(463,349,l), +(475,349,o), +(486,358,o), +(485,371,cs), +(482,443,o), +(419,530,o), +(278,530,cs), +(137,530,o), +(61,443,o), +(57,300,cs), +(56,280,o), +(56,240,o), +(57,220,cs), +(60,96,o), +(118,14,o), +(225,-5,c), +(204,-53,l), +(200,-63,o), +(192,-75,o), +(199,-83,c), +(215,-100,l), +(230,-116,o), +(243,-96,o), +(275,-96,cs), +(298,-96,o), +(318,-110,o), +(318,-134,cs), +(318,-159,o), +(298,-174,o), +(275,-174,cs), +(231,-174,o), +(224,-140,o), +(207,-156,c), +(193,-169,l), +(177,-184,o), +(218,-219,o), +(275,-220,cs) +); +} +); +width = 536; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(371,-220,o), +(410,-183,o), +(410,-130,cs), +(410,-77,o), +(380,-40,o), +(329,-40,cs), +(325,-40,o), +(307,-42,o), +(299,-45,c), +(317,-10,l), +(532,-7,o), +(600,141,o), +(603,184,cs), +(604,199,o), +(591,211,o), +(576,211,c), +(381,211,l), +(366,211,o), +(357,203,o), +(352,191,cs), +(344,172,o), +(339,161,o), +(315,161,cs), +(284,161,o), +(277,181,o), +(275,224,cs), +(274,243,o), +(274,266,o), +(275,295,cs), +(276,335,o), +(284,359,o), +(315,359,cs), +(335,359,o), +(343,348,o), +(352,329,cs), +(358,317,o), +(366,309,o), +(381,309,c), +(576,309,l), +(591,309,o), +(604,321,o), +(603,336,cs), +(600,389,o), +(521,530,o), +(310,530,cs), +(157,530,o), +(37,448,o), +(30,300,cs), +(29,277,o), +(29,240,o), +(30,219,cs), +(37,89,o), +(129,11,o), +(254,-6,c), +(234,-52,l), +(225,-71,o), +(227,-76,o), +(236,-85,c), +(257,-106,l), +(270,-119,o), +(293,-106,o), +(311,-106,cs), +(331,-106,o), +(339,-118,o), +(339,-130,cs), +(339,-142,o), +(330,-154,o), +(311,-154,cs), +(277,-154,o), +(272,-136,o), +(255,-151,c), +(234,-169,l), +(211,-189,o), +(258,-220,o), +(311,-220,cs) +); +} +); +width = 622; +} +); +unicode = 231; +}, +{ +color = 10; +glyphname = ccircumflex; +kernLeft = o; +kernRight = c; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = c; +}, +{ +pos = (65,0); +ref = circumflexcomb; +} +); +width = 536; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = c; +}, +{ +pos = (47,0); +ref = circumflexcomb; +} +); +width = 622; +} +); +unicode = 265; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 270; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = cdotaccent; +kernLeft = o; +kernRight = c; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = c; +}, +{ +pos = (154,0); +ref = dotaccentcomb; +} +); +width = 536; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = c; +}, +{ +pos = (172,0); +ref = dotaccentcomb; +} +); +width = 622; +} +); +unicode = 267; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 270; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = d; +kernLeft = d; +kernRight = d; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (290,0); +}, +{ +name = center; +pos = (438,615); +}, +{ +name = top; +pos = (290,750); +}, +{ +name = topright; +pos = (565,710); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(352,-10,o), +(404,24,o), +(437,69,c), +(437,22,ls), +(437,9,o), +(446,0,o), +(459,0,cs), +(476,0,ls), +(489,0,o), +(498,9,o), +(498,22,cs), +(498,688,ls), +(498,701,o), +(489,710,o), +(476,710,cs), +(459,710,ls), +(446,710,o), +(437,701,o), +(437,688,cs), +(437,451,l), +(404,495,o), +(352,530,o), +(269,530,cs), +(113,530,o), +(59,405,o), +(55,288,cs), +(54,268,o), +(54,252,o), +(55,232,cs), +(59,115,o), +(113,-10,o), +(269,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(158,48,o), +(120,136,o), +(116,232,cs), +(115,252,o), +(115,268,o), +(116,288,cs), +(120,384,o), +(158,472,o), +(275,472,cs), +(386,472,o), +(435,382,o), +(437,302,cs), +(438,282,o), +(438,244,o), +(437,224,cs), +(434,142,o), +(389,48,o), +(275,48,cs) +); +} +); +width = 580; +}, +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = center; +pos = (466,612); +}, +{ +name = top; +pos = (331,750); +}, +{ +name = topright; +pos = (781,710); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(360,14,o), +(392,50,c), +(392,27,ls), +(392,12,o), +(404,0,o), +(419,0,cs), +(589,0,ls), +(604,0,o), +(616,12,o), +(616,27,cs), +(616,683,ls), +(616,698,o), +(604,710,o), +(589,710,cs), +(404,710,ls), +(389,710,o), +(377,698,o), +(377,683,cs), +(377,483,l), +(345,512,o), +(300,530,o), +(244,530,cs), +(128,530,o), +(38,457,o), +(32,300,cs), +(31,270,o), +(31,251,o), +(32,221,cs), +(39,54,o), +(128,-10,o), +(244,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(290,169,o), +(281,191,o), +(277,227,cs), +(275,247,o), +(275,273,o), +(277,293,cs), +(281,329,o), +(290,351,o), +(327,351,cs), +(361,351,o), +(375,333,o), +(377,301,cs), +(379,271,o), +(379,257,o), +(377,227,cs), +(375,191,o), +(364,169,o), +(327,169,cs) +); +} +); +width = 661; +} +); +unicode = 100; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 650; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 530; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 438; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 499; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = eth; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(416,-10,o), +(492,92,o), +(492,229,cs), +(492,230,o), +(492,231,o), +(492,232,cs), +(490,402,o), +(455,501,o), +(398,575,c), +(460,599,l), +(476,605,o), +(482,609,o), +(482,624,c), +(482,643,l), +(482,655,o), +(474,661,o), +(463,661,cs), +(459,661,o), +(455,660,o), +(450,658,c), +(357,622,l), +(336,644,o), +(313,665,o), +(288,687,cs), +(278,695,o), +(268,700,o), +(252,700,c), +(232,700,l), +(220,700,o), +(212,692,o), +(212,680,cs), +(212,675,o), +(215,669,o), +(229,658,cs), +(253,638,o), +(276,618,o), +(296,599,c), +(234,575,l), +(218,569,o), +(212,565,o), +(212,550,c), +(212,531,l), +(212,519,o), +(220,513,o), +(231,513,cs), +(235,513,o), +(239,514,o), +(244,516,c), +(340,553,l), +(368,518,o), +(389,479,o), +(405,431,c), +(371,456,o), +(326,470,o), +(273,470,cs), +(129,470,o), +(53,368,o), +(54,231,c), +(53,94,o), +(129,-10,o), +(273,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,48,o), +(117,127,o), +(115,226,cs), +(115,227,o), +(115,229,o), +(115,232,cs), +(115,332,o), +(168,412,o), +(273,412,cs), +(378,412,o), +(431,332,o), +(431,232,cs), +(431,230,o), +(431,229,o), +(431,228,cs), +(430,128,o), +(377,48,o), +(273,48,cs) +); +} +); +width = 550; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(489,-10,o), +(597,68,o), +(606,225,cs), +(607,245,o), +(607,268,o), +(606,288,cs), +(599,424,o), +(560,524,o), +(498,601,c), +(539,617,l), +(555,623,o), +(561,632,o), +(561,650,c), +(561,678,l), +(561,690,o), +(552,699,o), +(540,699,cs), +(538,699,o), +(534,698,o), +(529,696,c), +(439,661,l), +(429,670,o), +(417,678,o), +(406,687,cs), +(396,694,o), +(380,700,o), +(353,700,c), +(165,700,l), +(153,700,o), +(143,690,o), +(143,678,cs), +(143,673,o), +(147,665,o), +(156,659,cs), +(188,637,o), +(219,613,o), +(246,586,c), +(172,557,l), +(156,551,o), +(150,542,o), +(150,524,c), +(150,496,l), +(150,484,o), +(159,475,o), +(171,475,cs), +(173,475,o), +(177,476,o), +(182,478,c), +(300,524,l), +(312,506,o), +(322,488,o), +(330,470,c), +(325,470,o), +(321,470,o), +(316,470,c), +(153,470,o), +(26,392,o), +(26,230,cs), +(26,68,o), +(142,-10,o), +(316,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(279,150,o), +(272,171,o), +(271,204,cs), +(270,224,o), +(270,236,o), +(271,256,cs), +(273,288,o), +(279,310,o), +(316,310,cs), +(353,310,o), +(359,288,o), +(361,256,cs), +(362,236,o), +(362,223,o), +(361,203,cs), +(360,171,o), +(350,150,o), +(316,150,cs) +); +} +); +width = 638; +} +); +unicode = 240; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 512; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 214; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 484; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = dcaron; +kernLeft = d; +kernRight = dcaron; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = d; +}, +{ +pos = (410,10); +ref = caroncomb.alt; +} +); +width = 580; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +alignment = -1; +ref = d; +}, +{ +pos = (469,10); +ref = caroncomb.alt; +} +); +width = 814; +} +); +metricLeft = d; +unicode = 271; +}, +{ +color = 6; +glyphname = dcroat; +kernLeft = d; +kernRight = d; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(353,-10,o), +(405,24,o), +(438,69,c), +(438,22,ls), +(438,9,o), +(447,0,o), +(460,0,cs), +(477,0,ls), +(490,0,o), +(499,9,o), +(499,22,cs), +(499,571,l), +(557,571,ls), +(570,571,o), +(579,580,o), +(579,593,cs), +(579,607,ls), +(579,620,o), +(570,629,o), +(557,629,cs), +(499,629,l), +(499,688,ls), +(499,701,o), +(490,710,o), +(477,710,cs), +(460,710,ls), +(447,710,o), +(438,701,o), +(438,688,cs), +(438,629,l), +(380,629,ls), +(367,629,o), +(358,620,o), +(358,607,cs), +(358,593,ls), +(358,580,o), +(367,571,o), +(380,571,cs), +(438,571,l), +(438,451,l), +(405,495,o), +(353,530,o), +(270,530,cs), +(94,530,o), +(59,385,o), +(56,288,cs), +(55,268,o), +(55,252,o), +(56,232,cs), +(59,135,o), +(94,-10,o), +(270,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,48,o), +(120,136,o), +(117,232,cs), +(116,252,o), +(116,268,o), +(117,288,cs), +(120,384,o), +(159,472,o), +(276,472,cs), +(387,472,o), +(436,382,o), +(438,302,cs), +(439,282,o), +(439,244,o), +(438,224,cs), +(435,142,o), +(390,48,o), +(276,48,cs) +); +} +); +width = 580; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,-10,o), +(362,18,o), +(392,57,c), +(392,27,ls), +(392,12,o), +(404,0,o), +(419,0,cs), +(589,0,ls), +(604,0,o), +(616,12,o), +(616,27,cs), +(616,548,l), +(646,548,ls), +(661,548,o), +(673,560,o), +(673,575,cs), +(673,626,ls), +(673,641,o), +(661,653,o), +(646,653,cs), +(616,653,l), +(616,683,ls), +(616,698,o), +(604,710,o), +(589,710,cs), +(404,710,ls), +(389,710,o), +(377,698,o), +(377,683,cs), +(377,653,l), +(347,653,ls), +(332,653,o), +(320,641,o), +(320,626,cs), +(320,575,ls), +(320,560,o), +(332,548,o), +(347,548,cs), +(377,548,l), +(377,483,l), +(345,512,o), +(300,530,o), +(244,530,cs), +(128,530,o), +(38,457,o), +(32,300,cs), +(31,270,o), +(31,251,o), +(32,221,cs), +(39,54,o), +(128,-10,o), +(244,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(290,169,o), +(281,191,o), +(277,227,cs), +(275,247,o), +(275,273,o), +(277,293,cs), +(281,329,o), +(290,351,o), +(327,351,cs), +(361,351,o), +(375,333,o), +(377,301,cs), +(379,271,o), +(379,257,o), +(377,227,cs), +(375,191,o), +(364,169,o), +(327,169,cs) +); +} +); +width = 662; +} +); +unicode = 273; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 600; +} +); +}; +}, +{ +color = 6; +glyphname = e; +kernLeft = o; +kernRight = e; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (273,0); +}, +{ +name = ogonek; +pos = (381,60); +}, +{ +name = top; +pos = (274,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,-10,o), +(478,73,o), +(480,111,cs), +(481,123,o), +(471,131,o), +(459,131,cs), +(443,131,ls), +(428,131,o), +(425,130,o), +(413,113,cs), +(402,97,o), +(359,48,o), +(274,48,cs), +(177,48,o), +(120,134,o), +(116,225,cs), +(116,228,o), +(116,235,o), +(116,235,c), +(472,235,ls), +(485,235,o), +(495,244,o), +(495,257,cs), +(495,272,ls), +(495,432,o), +(413,530,o), +(274,530,cs), +(144,530,o), +(65,436,o), +(55,300,cs), +(54,280,o), +(54,240,o), +(55,220,cs), +(65,83,o), +(145,-10,o), +(274,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(116,295,ls), +(116,395,o), +(174,472,o), +(274,472,cs), +(374,472,o), +(434,395,o), +(434,295,cs), +(434,291,l), +(116,291,l) +); +} +); +width = 546; +}, +{ +anchors = ( +{ +name = bottom; +pos = (312,0); +}, +{ +name = ogonek; +pos = (561,10); +}, +{ +name = top; +pos = (312,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(499,-10,o), +(582,94,o), +(585,145,cs), +(586,158,o), +(576,167,o), +(563,167,cs), +(374,167,ls), +(358,167,o), +(353,165,o), +(341,153,cs), +(330,142,o), +(324,135,o), +(312,135,cs), +(283,135,o), +(273,156,o), +(273,196,cs), +(273,198,o), +(273,199,o), +(273,201,c), +(571,201,ls), +(586,201,o), +(598,213,o), +(598,228,cs), +(598,258,ls), +(598,405,o), +(509,530,o), +(313,530,cs), +(142,530,o), +(31,438,o), +(28,266,cs), +(28,264,o), +(28,261,o), +(28,259,cs), +(28,72,o), +(139,-10,o), +(314,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,327,l), +(273,371,o), +(287,390,o), +(313,390,cs), +(339,390,o), +(353,371,o), +(353,327,c), +(353,326,l), +(273,326,l) +); +} +); +width = 623; +} +); +unicode = 101; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 496; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 61; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 122; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 430; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = eacute; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = e; +}, +{ +pos = (174,0); +ref = acutecomb; +} +); +width = 546; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = e; +}, +{ +pos = (161,0); +ref = acutecomb; +} +); +width = 623; +} +); +unicode = 233; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ebreve; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = e; +}, +{ +pos = (89,0); +ref = brevecomb; +} +); +width = 546; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = e; +}, +{ +pos = (90,0); +ref = brevecomb; +} +); +width = 623; +} +); +unicode = 277; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ecaron; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = e; +}, +{ +pos = (68,0); +ref = caroncomb; +} +); +width = 546; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = e; +}, +{ +pos = (48,0); +ref = caroncomb; +} +); +width = 623; +} +); +unicode = 283; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ecircumflex; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = e; +}, +{ +pos = (68,0); +ref = circumflexcomb; +} +); +width = 546; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = e; +}, +{ +pos = (48,0); +ref = circumflexcomb; +} +); +width = 623; +} +); +unicode = 234; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = edieresis; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = e; +}, +{ +pos = (86,0); +ref = dieresiscomb; +} +); +width = 546; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = e; +}, +{ +pos = (57,0); +ref = dieresiscomb; +} +); +width = 623; +} +); +unicode = 235; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = edotaccent; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = e; +}, +{ +pos = (157,0); +ref = dotaccentcomb; +} +); +width = 546; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = e; +}, +{ +pos = (173,0); +ref = dotaccentcomb; +} +); +width = 623; +} +); +unicode = 279; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = egrave; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = e; +}, +{ +pos = (74,0); +ref = gravecomb; +} +); +width = 546; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = e; +}, +{ +pos = (14,0); +ref = gravecomb; +} +); +width = 623; +} +); +unicode = 232; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = emacron; +kernLeft = o; +kernRight = e; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = e; +}, +{ +pos = (82,0); +ref = macroncomb; +} +); +width = 546; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = e; +}, +{ +pos = (75,0); +ref = macroncomb; +} +); +width = 623; +} +); +unicode = 275; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = eogonek; +kernLeft = o; +kernRight = e; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (274,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(345,-220,l), +(358,-220,o), +(367,-211,o), +(367,-198,c), +(367,-185,l), +(367,-172,o), +(358,-163,o), +(345,-163,c), +(330,-163,l), +(286,-163,o), +(254,-133,o), +(254,-82,cs), +(254,-35,o), +(280,-14,o), +(320,-6,cs), +(418,14,o), +(479,77,o), +(481,111,cs), +(482,123,o), +(472,131,o), +(460,131,cs), +(444,131,ls), +(429,131,o), +(426,130,o), +(414,113,cs), +(403,97,o), +(360,48,o), +(275,48,cs), +(178,48,o), +(121,134,o), +(117,225,cs), +(117,235,l), +(473,235,ls), +(486,235,o), +(496,244,o), +(496,257,cs), +(496,272,ls), +(496,432,o), +(414,530,o), +(275,530,cs), +(145,530,o), +(66,436,o), +(56,300,cs), +(55,280,o), +(55,240,o), +(56,220,cs), +(64,106,o), +(120,23,o), +(213,-2,c), +(200,-23,o), +(194,-51,o), +(194,-82,cs), +(194,-167,o), +(245,-220,o), +(326,-220,c) +); +}, +{ +closed = 1; +nodes = ( +(116,295,ls), +(116,395,o), +(174,472,o), +(274,472,cs), +(374,472,o), +(434,395,o), +(434,295,cs), +(434,291,l), +(116,291,l) +); +} +); +width = 547; +}, +{ +anchors = ( +{ +name = top; +pos = (312,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(382,-220,l), +(397,-220,o), +(409,-208,o), +(409,-193,c), +(409,-125,l), +(409,-110,o), +(397,-98,o), +(382,-98,c), +(372,-98,l), +(333,-98,o), +(322,-70,o), +(322,-49,cs), +(322,-28,o), +(338,-12,o), +(380,-5,c), +(519,15,o), +(582,100,o), +(585,145,cs), +(586,158,o), +(576,167,o), +(563,167,c), +(374,167,l), +(358,167,o), +(353,165,o), +(341,153,cs), +(330,142,o), +(324,135,o), +(312,135,cs), +(283,135,o), +(273,156,o), +(273,196,c), +(273,201,l), +(571,201,l), +(586,201,o), +(598,213,o), +(598,228,c), +(598,258,l), +(598,405,o), +(509,530,o), +(313,530,cs), +(142,530,o), +(30,437,o), +(28,264,cs), +(28,262,o), +(28,261,o), +(28,259,cs), +(28,116,o), +(93,34,o), +(202,3,c), +(198,-13,o), +(196,-30,o), +(196,-49,cs), +(196,-144,o), +(247,-220,o), +(368,-220,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,327,l), +(273,371,o), +(287,390,o), +(313,390,cs), +(339,390,o), +(353,371,o), +(353,327,c), +(353,326,l), +(273,326,l) +); +} +); +width = 623; +} +); +unicode = 281; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 259; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 339; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = f; +kernLeft = f; +kernRight = f; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (180,0); +}, +{ +name = top; +pos = (180,710); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,0,ls), +(182,0,o), +(191,9,o), +(191,22,cs), +(191,462,l), +(323,462,ls), +(336,462,o), +(345,471,o), +(345,484,cs), +(345,498,ls), +(345,511,o), +(336,520,o), +(323,520,cs), +(191,520,l), +(191,572,ls), +(191,643,o), +(210,682,o), +(281,682,cs), +(333,682,ls), +(346,682,o), +(355,691,o), +(355,704,cs), +(355,718,ls), +(355,731,o), +(346,740,o), +(333,740,cs), +(281,740,ls), +(159,740,o), +(130,666,o), +(130,577,cs), +(130,520,l), +(41,520,ls), +(28,520,o), +(19,511,o), +(19,498,cs), +(19,484,ls), +(19,471,o), +(28,462,o), +(41,462,cs), +(130,462,l), +(130,22,ls), +(130,9,o), +(139,0,o), +(152,0,cs) +); +} +); +width = 360; +}, +{ +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,750); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,0,ls), +(328,0,o), +(340,12,o), +(340,27,cs), +(340,345,l), +(454,345,ls), +(469,345,o), +(481,357,o), +(481,372,cs), +(481,493,ls), +(481,508,o), +(469,520,o), +(454,520,cs), +(340,520,l), +(340,532,ls), +(340,553,o), +(353,565,o), +(383,565,cs), +(464,565,ls), +(479,565,o), +(491,577,o), +(491,592,cs), +(491,713,ls), +(491,728,o), +(479,740,o), +(464,740,cs), +(371,740,ls), +(226,740,o), +(111,701,o), +(111,537,cs), +(111,520,l), +(42,520,ls), +(27,520,o), +(15,508,o), +(15,493,cs), +(15,372,ls), +(15,357,o), +(27,345,o), +(42,345,cs), +(111,345,l), +(111,27,ls), +(111,12,o), +(123,0,o), +(138,0,cs) +); +} +); +width = 492; +} +); +unicode = 102; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 345; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 740; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 297; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 371; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = g; +kernLeft = g; +kernRight = u; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (291,-225); +}, +{ +name = top; +pos = (278,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(453,-220,o), +(499,-118,o), +(499,10,cs), +(499,497,ls), +(499,510,o), +(489,520,o), +(476,520,cs), +(460,520,ls), +(447,520,o), +(438,510,o), +(438,497,cs), +(438,451,l), +(405,495,o), +(352,530,o), +(270,530,cs), +(114,530,o), +(59,405,o), +(56,288,cs), +(55,268,o), +(55,252,o), +(56,232,cs), +(59,115,o), +(114,-10,o), +(270,-10,cs), +(352,-10,o), +(405,24,o), +(438,69,c), +(438,0,ls), +(438,-127,o), +(379,-162,o), +(270,-162,cs), +(166,-162,o), +(137,-103,o), +(126,-71,cs), +(120,-53,o), +(112,-50,o), +(102,-50,cs), +(88,-50,ls), +(76,-50,o), +(65,-60,o), +(66,-73,cs), +(68,-113,o), +(105,-220,o), +(275,-220,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,48,o), +(120,136,o), +(117,232,cs), +(116,252,o), +(116,268,o), +(117,288,cs), +(120,384,o), +(159,472,o), +(276,472,cs), +(390,472,o), +(434,378,o), +(438,296,c), +(439,276,o), +(439,244,o), +(438,224,c), +(434,142,o), +(390,48,o), +(276,48,cs) +); +} +); +width = 581; +}, +{ +anchors = ( +{ +name = bottom; +pos = (333,-225); +}, +{ +name = top; +pos = (327,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(496,-220,o), +(621,-151,o), +(621,17,c), +(620,493,l), +(620,508,o), +(608,520,o), +(593,520,c), +(418,520,l), +(403,520,o), +(391,508,o), +(391,493,c), +(391,462,l), +(359,502,o), +(308,530,o), +(243,530,cs), +(117,530,o), +(39,457,o), +(31,300,c), +(30,280,o), +(30,269,o), +(31,249,c), +(40,82,o), +(117,23,o), +(243,23,cs), +(301,23,o), +(345,39,o), +(376,66,c), +(376,0,l), +(376,-40,o), +(362,-59,o), +(333,-59,cs), +(309,-59,o), +(300,-51,o), +(291,-34,cs), +(285,-22,o), +(278,-14,o), +(263,-14,c), +(68,-14,l), +(53,-14,o), +(40,-26,o), +(41,-41,cs), +(44,-84,o), +(112,-220,o), +(338,-220,cs) +); +}, +{ +closed = 1; +nodes = ( +(289,197,o), +(279,219,o), +(276,255,cs), +(275,265,o), +(275,283,o), +(276,293,c), +(279,329,o), +(289,351,o), +(326,351,cs), +(360,351,o), +(373,333,o), +(376,301,cs), +(377,291,o), +(377,257,o), +(376,247,cs), +(373,215,o), +(360,197,o), +(326,197,cs) +); +} +); +width = 666; +} +); +unicode = 103; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 530; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 288; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 232; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 56; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 270; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = gbreve; +kernLeft = g; +kernRight = u; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = g; +}, +{ +pos = (93,0); +ref = brevecomb; +} +); +width = 581; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = g; +}, +{ +pos = (105,0); +ref = brevecomb; +} +); +width = 666; +} +); +unicode = 287; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 277; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = gcircumflex; +kernLeft = g; +kernRight = u; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = g; +}, +{ +pos = (72,0); +ref = circumflexcomb; +} +); +width = 581; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = g; +}, +{ +pos = (63,0); +ref = circumflexcomb; +} +); +width = 666; +} +); +unicode = 285; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 277; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = gcommaaccent; +kernLeft = g; +kernRight = u; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = g; +}, +{ +pos = (1,0); +ref = commaturnedabovecomb; +} +); +width = 581; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = g; +}, +{ +pos = (-10,0); +ref = commaturnedabovecomb; +} +); +width = 666; +} +); +unicode = 291; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 277; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = gdotaccent; +kernLeft = g; +kernRight = u; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = g; +}, +{ +pos = (161,0); +ref = dotaccentcomb; +} +); +width = 581; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = g; +}, +{ +pos = (188,0); +ref = dotaccentcomb; +} +); +width = 666; +} +); +unicode = 289; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 277; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = h; +kernLeft = h; +kernRight = n; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (296,0); +}, +{ +name = center; +pos = (143,597); +}, +{ +name = top; +pos = (298,675); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,0,ls), +(134,0,o), +(143,9,o), +(143,22,cs), +(143,301,ls), +(143,408,o), +(206,472,o), +(301,472,cs), +(401,472,o), +(454,407,o), +(454,301,cs), +(454,22,ls), +(454,9,o), +(463,0,o), +(476,0,cs), +(493,0,ls), +(506,0,o), +(515,9,o), +(515,22,cs), +(515,306,ls), +(515,433,o), +(447,530,o), +(311,530,cs), +(225,530,o), +(179,498,o), +(143,451,c), +(143,688,ls), +(143,701,o), +(134,710,o), +(121,710,cs), +(104,710,ls), +(91,710,o), +(82,701,o), +(82,688,cs), +(82,22,ls), +(82,9,o), +(91,0,o), +(104,0,cs) +); +} +); +width = 591; +}, +{ +anchors = ( +{ +name = bottom; +pos = (343,0); +}, +{ +name = center; +pos = (187,599); +}, +{ +name = top; +pos = (343,676); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(267,0,ls), +(282,0,o), +(294,12,o), +(294,27,cs), +(294,296,ls), +(294,332,o), +(313,351,o), +(345,351,cs), +(377,351,o), +(395,332,o), +(395,296,cs), +(395,27,ls), +(395,12,o), +(407,0,o), +(422,0,cs), +(618,0,ls), +(633,0,o), +(645,12,o), +(645,27,cs), +(645,303,ls), +(645,461,o), +(547,530,o), +(446,530,cs), +(384,530,o), +(329,506,o), +(294,468,c), +(294,683,ls), +(294,698,o), +(282,710,o), +(267,710,cs), +(72,710,ls), +(57,710,o), +(45,698,o), +(45,683,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 685; +} +); +unicode = 104; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 301; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 414; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 79; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 291; +y = 0; +} +); +}; +}, +{ +color = 3; +glyphname = hbar; +kernLeft = h; +kernRight = n; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(200,571,ls), +(213,571,o), +(222,580,o), +(222,593,cs), +(222,607,ls), +(222,620,o), +(213,629,o), +(200,629,cs), +(23,629,ls), +(10,629,o), +(1,620,o), +(1,607,cs), +(1,593,ls), +(1,580,o), +(10,571,o), +(23,571,cs) +); +}, +{ +ref = h; +} +); +width = 591; +}, +{ +color = 3; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,538,ls), +(334,538,o), +(346,550,o), +(346,565,cs), +(346,616,ls), +(346,631,o), +(334,643,o), +(319,643,cs), +(20,643,ls), +(5,643,o), +(-7,631,o), +(-7,616,cs), +(-7,565,ls), +(-7,550,o), +(5,538,o), +(20,538,cs) +); +}, +{ +ref = h; +} +); +width = 685; +} +); +metricRight = h; +unicode = 295; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 189; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 110; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = hcircumflex; +kernLeft = h; +kernRight = n; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = h; +}, +{ +pos = (92,155); +ref = circumflexcomb; +} +); +width = 591; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = h; +}, +{ +pos = (79,156); +ref = circumflexcomb; +} +); +width = 685; +} +); +unicode = 293; +}, +{ +color = 6; +glyphname = i; +kernLeft = i; +kernRight = i; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (112,0); +}, +{ +name = top; +pos = (112,710); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(130,627,ls), +(143,627,o), +(153,636,o), +(153,649,cs), +(153,687,ls), +(153,700,o), +(143,710,o), +(130,710,cs), +(92,710,ls), +(79,710,o), +(70,700,o), +(70,687,cs), +(70,649,ls), +(70,636,o), +(79,627,o), +(92,627,cs) +); +} +); +width = 223; +}, +{ +anchors = ( +{ +name = bottom; +pos = (162,0); +}, +{ +name = top; +pos = (166,772); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(266,0,o), +(278,12,o), +(278,27,cs), +(278,493,ls), +(278,508,o), +(266,520,o), +(251,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,575,ls), +(261,575,o), +(273,587,o), +(273,602,cs), +(273,723,ls), +(273,738,o), +(261,750,o), +(246,750,cs), +(77,750,ls), +(62,750,o), +(50,738,o), +(50,723,cs), +(50,602,ls), +(50,587,o), +(62,575,o), +(77,575,cs) +); +} +); +width = 323; +} +); +unicode = 105; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 510; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 22; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 627; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 79; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 121; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 131; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = idotless; +kernLeft = i; +kernRight = i; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (112,0); +}, +{ +name = ogonek; +pos = (141,57); +}, +{ +name = top; +pos = (112,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +width = 223; +}, +{ +anchors = ( +{ +name = bottom; +pos = (162,0); +}, +{ +name = ogonek; +pos = (291,10); +}, +{ +name = top; +pos = (162,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,l), +(266,0,o), +(278,12,o), +(278,27,cs), +(278,493,ls), +(278,508,o), +(266,520,o), +(251,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 323; +} +); +unicode = 305; +}, +{ +color = 10; +glyphname = iacute; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (12,0); +ref = acutecomb; +} +); +width = 223; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (11,0); +ref = acutecomb; +} +); +width = 323; +} +); +unicode = 237; +}, +{ +color = 10; +glyphname = ibreve; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-73,0); +ref = brevecomb; +} +); +width = 223; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-60,0); +ref = brevecomb; +} +); +width = 323; +} +); +unicode = 301; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 100; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = icircumflex; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-94,0); +ref = circumflexcomb; +} +); +width = 223; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-102,0); +ref = circumflexcomb; +} +); +width = 323; +} +); +unicode = 238; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-359"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 100; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = idieresis; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-76,0); +ref = dieresiscomb; +} +); +width = 223; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-93,0); +ref = dieresiscomb; +} +); +width = 323; +} +); +unicode = 239; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 100; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = idotaccent; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-5,0); +ref = dotaccentcomb; +} +); +width = 223; +}, +{ +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (23,0); +ref = dotaccentcomb; +} +); +width = 323; +} +); +}, +{ +color = 10; +glyphname = igrave; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-88,0); +ref = gravecomb; +} +); +width = 223; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-136,0); +ref = gravecomb; +} +); +width = 323; +} +); +unicode = 236; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 100; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ij; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = i; +}, +{ +pos = (223,0); +ref = j; +} +); +width = 456; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = i; +}, +{ +pos = (367,0); +ref = j; +} +); +width = 712; +} +); +unicode = 307; +}, +{ +color = 10; +glyphname = imacron; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-80,0); +ref = macroncomb; +} +); +width = 223; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-75,0); +ref = macroncomb; +} +); +width = 323; +} +); +unicode = 299; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 100; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = iogonek; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,-220,l), +(164,-220,o), +(173,-211,o), +(173,-198,c), +(173,-185,l), +(173,-172,o), +(164,-163,o), +(151,-163,c), +(136,-163,l), +(92,-163,o), +(60,-133,o), +(60,-82,cs), +(60,-31,o), +(92,0,o), +(136,0,c), +(141,0,l), +(154,0,o), +(163,9,o), +(163,22,c), +(163,498,l), +(163,511,o), +(154,520,o), +(141,520,c), +(124,520,l), +(111,520,o), +(102,511,o), +(102,498,c), +(102,64,l), +(102,62,o), +(102,60,o), +(102,58,c), +(102,54,l), +(39,42,o), +(0,-8,o), +(0,-82,cs), +(0,-167,o), +(51,-220,o), +(132,-220,c) +); +}, +{ +closed = 1; +nodes = ( +(151,627,l), +(164,627,o), +(174,636,o), +(174,649,c), +(174,687,l), +(174,700,o), +(164,710,o), +(151,710,c), +(113,710,l), +(100,710,o), +(91,700,o), +(91,687,c), +(91,649,l), +(91,636,o), +(100,627,o), +(113,627,c) +); +} +); +width = 244; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,-192,ls), +(266,-192,o), +(278,-180,o), +(278,-165,cs), +(278,-107,ls), +(278,-92,o), +(266,-80,o), +(251,-80,c), +(241,-80,ls), +(202,-80,o), +(191,-61,o), +(191,-40,cs), +(191,-19,o), +(202,0,o), +(241,0,cs), +(251,0,ls), +(266,0,o), +(278,12,o), +(278,27,cs), +(278,493,ls), +(278,508,o), +(266,520,o), +(251,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs), +(79,0,l), +(76,-12,o), +(75,-26,o), +(75,-40,cs), +(75,-125,o), +(126,-192,o), +(237,-192,cs) +); +}, +{ +closed = 1; +nodes = ( +(246,575,ls), +(261,575,o), +(273,587,o), +(273,602,cs), +(273,723,ls), +(273,738,o), +(261,750,o), +(246,750,cs), +(77,750,ls), +(62,750,o), +(50,738,o), +(50,723,cs), +(50,602,ls), +(50,587,o), +(62,575,o), +(77,575,cs) +); +} +); +width = 323; +} +); +unicode = 303; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 22; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 131; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = itilde; +kernLeft = i; +kernRight = i; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-78,0); +ref = tildecomb; +} +); +width = 223; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-92,0); +ref = tildecomb; +} +); +width = 323; +} +); +unicode = 297; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 100; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = j; +kernRight = i; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (120,710); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(0,-190,ls), +(122,-190,o), +(151,-116,o), +(151,-22,cs), +(151,498,ls), +(151,511,o), +(142,520,o), +(129,520,cs), +(112,520,ls), +(99,520,o), +(90,511,o), +(90,498,cs), +(90,-22,ls), +(90,-83,o), +(81,-132,o), +(0,-132,cs), +(-4,-132,ls), +(-17,-132,o), +(-26,-141,o), +(-26,-154,cs), +(-26,-168,ls), +(-26,-181,o), +(-17,-190,o), +(-4,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(139,627,ls), +(152,627,o), +(162,636,o), +(162,649,cs), +(162,687,ls), +(162,700,o), +(152,710,o), +(139,710,cs), +(101,710,ls), +(88,710,o), +(79,700,o), +(79,687,cs), +(79,649,ls), +(79,636,o), +(88,627,o), +(101,627,cs) +); +} +); +width = 233; +}, +{ +anchors = ( +{ +name = top; +pos = (179,772); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(45,-190,ls), +(190,-190,o), +(300,-121,o), +(300,29,cs), +(300,493,ls), +(300,508,o), +(288,520,o), +(273,520,cs), +(85,520,ls), +(70,520,o), +(58,508,o), +(58,493,cs), +(58,35,ls), +(58,4,o), +(45,-15,o), +(15,-15,cs), +(-43,-15,ls), +(-58,-15,o), +(-70,-27,o), +(-70,-42,cs), +(-70,-163,ls), +(-70,-178,o), +(-58,-190,o), +(-43,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(268,575,ls), +(283,575,o), +(295,587,o), +(295,602,cs), +(295,723,ls), +(295,738,o), +(283,750,o), +(268,750,cs), +(90,750,ls), +(75,750,o), +(63,738,o), +(63,723,cs), +(63,602,ls), +(63,587,o), +(75,575,o), +(90,575,cs) +); +} +); +width = 345; +} +); +unicode = 106; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 740; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-190"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-46"; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = jdotless; +kernLeft = dotlessj; +kernRight = i; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (135,-225); +}, +{ +name = top; +pos = (115,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(36,-190,ls), +(158,-190,o), +(187,-116,o), +(187,-22,cs), +(187,498,ls), +(187,511,o), +(178,520,o), +(165,520,cs), +(42,520,ls), +(29,520,o), +(20,511,o), +(20,498,cs), +(20,484,ls), +(20,471,o), +(29,462,o), +(42,462,cs), +(126,462,l), +(126,-22,ls), +(126,-83,o), +(117,-132,o), +(36,-132,cs), +(32,-132,ls), +(19,-132,o), +(10,-141,o), +(10,-154,cs), +(10,-168,ls), +(10,-181,o), +(19,-190,o), +(32,-190,cs) +); +} +); +width = 269; +}, +{ +anchors = ( +{ +name = bottom; +pos = (241,-225); +}, +{ +name = top; +pos = (241,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(182,-190,l), +(327,-190,o), +(437,-94,o), +(437,70,cs), +(437,493,ls), +(437,508,o), +(425,520,o), +(410,520,cs), +(52,520,ls), +(37,520,o), +(25,508,o), +(25,493,cs), +(25,364,ls), +(25,349,o), +(37,337,o), +(52,337,cs), +(193,337,l), +(193,70,ls), +(193,39,o), +(180,20,o), +(150,20,cs), +(49,20,ls), +(34,20,o), +(22,8,o), +(22,-7,cs), +(22,-163,ls), +(22,-178,o), +(34,-190,o), +(49,-190,cs) +); +} +); +width = 482; +} +); +unicode = 567; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-190"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 45; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = jacute; +kernLeft = dotlessj; +kernRight = i; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (15,0); +ref = acutecomb; +} +); +width = 269; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (90,0); +ref = acutecomb; +} +); +width = 482; +} +); +}, +{ +color = 10; +glyphname = jcircumflex; +kernLeft = dotlessj; +kernRight = i; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-91,0); +ref = circumflexcomb; +} +); +width = 269; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = jdotless; +}, +{ +pos = (-23,0); +ref = circumflexcomb; +} +); +width = 482; +} +); +unicode = 309; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 192; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = k; +kernLeft = h; +kernRight = k; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = top; +pos = (244,750); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,0,ls), +(134,0,o), +(143,9,o), +(143,22,cs), +(143,240,l), +(394,17,ls), +(412,1,o), +(416,0,o), +(436,0,cs), +(452,0,ls), +(464,0,o), +(472,8,o), +(472,20,cs), +(472,25,o), +(468,32,o), +(459,40,cs), +(181,288,l), +(434,480,ls), +(444,487,o), +(447,495,o), +(447,500,cs), +(447,512,o), +(439,520,o), +(427,520,cs), +(408,520,ls), +(388,520,o), +(385,517,o), +(366,503,cs), +(143,334,l), +(143,688,ls), +(143,701,o), +(134,710,o), +(121,710,cs), +(104,710,ls), +(91,710,o), +(82,701,o), +(82,688,cs), +(82,22,ls), +(82,9,o), +(91,0,o), +(104,0,cs) +); +} +); +width = 487; +}, +{ +anchors = ( +{ +name = bottom; +pos = (322,0); +}, +{ +name = top; +pos = (322,750); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,0,ls), +(262,0,o), +(274,12,o), +(274,27,cs), +(274,187,l), +(376,17,ls), +(378,14,o), +(387,0,o), +(407,0,cs), +(617,0,ls), +(630,0,o), +(641,11,o), +(641,24,cs), +(641,30,o), +(639,34,o), +(637,37,cs), +(475,286,l), +(612,481,ls), +(614,484,o), +(617,490,o), +(617,496,cs), +(617,509,o), +(606,520,o), +(593,520,cs), +(391,520,ls), +(373,520,o), +(365,508,o), +(362,503,cs), +(274,359,l), +(274,683,ls), +(274,698,o), +(262,710,o), +(247,710,cs), +(72,710,ls), +(57,710,o), +(45,698,o), +(45,683,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 643; +} +); +unicode = 107; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 520; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 260; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 460; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 430; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = kcommaaccent; +kernLeft = h; +kernRight = k; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = k; +}, +{ +pos = (106,0); +ref = commaaccentcomb; +} +); +width = 487; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = k; +}, +{ +pos = (145,0); +ref = commaaccentcomb; +} +); +width = 643; +} +); +unicode = 311; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 268; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = kgreenlandic; +kernLeft = n; +kernRight = k; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (244,0); +}, +{ +name = top; +pos = (244,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,212,l), +(391,17,l), +(408,4,o), +(413,0,o), +(433,0,cs), +(451,0,ls), +(463,0,o), +(471,8,o), +(471,20,cs), +(471,25,o), +(467,33,o), +(458,40,cs), +(178,260,l), +(438,480,l), +(448,487,o), +(451,495,o), +(451,500,cs), +(451,512,o), +(443,520,o), +(431,520,cs), +(415,520,ls), +(395,520,o), +(392,517,o), +(373,503,c), +(142,308,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +width = 488; +}, +{ +anchors = ( +{ +name = bottom; +pos = (322,0); +}, +{ +name = top; +pos = (322,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,0,ls), +(262,0,o), +(274,12,o), +(274,27,cs), +(274,187,l), +(376,17,ls), +(378,14,o), +(387,0,o), +(407,0,cs), +(617,0,ls), +(630,0,o), +(641,11,o), +(641,24,cs), +(641,30,o), +(639,34,o), +(637,37,cs), +(485,266,l), +(612,481,ls), +(614,484,o), +(617,490,o), +(617,496,cs), +(617,509,o), +(606,520,o), +(593,520,cs), +(401,520,ls), +(383,520,o), +(375,508,o), +(372,503,cs), +(274,329,l), +(274,493,ls), +(274,508,o), +(262,520,o), +(247,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 643; +} +); +unicode = 312; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 520; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 260; +} +); +}; +}, +{ +color = 6; +glyphname = l; +kernLeft = l; +kernRight = l; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (113,0); +}, +{ +name = center; +pos = (113,375); +}, +{ +name = top; +pos = (113,676); +}, +{ +name = topright; +pos = (210,710); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,0,ls), +(134,0,o), +(143,9,o), +(143,22,cs), +(143,688,ls), +(143,701,o), +(134,710,o), +(121,710,cs), +(104,710,ls), +(91,710,o), +(82,701,o), +(82,688,cs), +(82,22,ls), +(82,9,o), +(91,0,o), +(104,0,cs) +); +} +); +width = 225; +}, +{ +anchors = ( +{ +name = bottom; +pos = (162,0); +}, +{ +name = center; +pos = (162,375); +}, +{ +name = top; +pos = (162,675); +}, +{ +name = topright; +pos = (440,710); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(266,0,o), +(278,12,o), +(278,27,cs), +(278,683,ls), +(278,698,o), +(266,710,o), +(251,710,cs), +(72,710,ls), +(57,710,o), +(45,698,o), +(45,683,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 323; +} +); +unicode = 108; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +} +); +}; +}, +{ +color = 10; +glyphname = lacute; +kernLeft = l; +kernRight = l; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = l; +}, +{ +pos = (13,156); +ref = acutecomb; +} +); +width = 225; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = l; +}, +{ +pos = (11,155); +ref = acutecomb; +} +); +width = 323; +} +); +unicode = 314; +}, +{ +color = 10; +glyphname = lcaron; +kernLeft = l; +kernRight = dcaron; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +pos = (55,10); +ref = caroncomb.alt; +} +); +width = 235; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +alignment = -1; +ref = l; +}, +{ +pos = (128,10); +ref = caroncomb.alt; +} +); +width = 473; +} +); +metricLeft = l; +unicode = 318; +}, +{ +color = 10; +glyphname = lcommaaccent; +kernLeft = l; +kernRight = l; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-25,0); +ref = commaaccentcomb; +} +); +width = 225; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = l; +}, +{ +pos = (-15,0); +ref = commaaccentcomb; +} +); +width = 323; +} +); +unicode = 316; +}, +{ +color = 10; +glyphname = ldot; +kernLeft = l; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (1,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (225,0); +ref = periodcentered.loclCAT; +} +); +width = 286; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = l; +}, +{ +alignment = 1; +pos = (323,0); +ref = periodcentered.loclCAT; +} +); +width = 500; +} +); +unicode = 320; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 360; +} +); +}; +}, +{ +color = 6; +glyphname = lslash; +kernLeft = l; +kernRight = l; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(133,0,ls), +(146,0,o), +(155,9,o), +(155,22,cs), +(155,341,l), +(203,360,ls), +(219,366,o), +(225,370,o), +(225,385,cs), +(225,404,ls), +(225,416,o), +(217,422,o), +(206,422,cs), +(202,422,o), +(198,421,o), +(193,419,cs), +(155,404,l), +(155,688,ls), +(155,701,o), +(146,710,o), +(133,710,cs), +(116,710,ls), +(103,710,o), +(94,701,o), +(94,688,cs), +(94,381,l), +(46,363,ls), +(30,357,o), +(24,353,o), +(24,338,cs), +(24,319,ls), +(24,307,o), +(32,301,o), +(43,301,cs), +(47,301,o), +(51,302,o), +(56,304,cs), +(94,318,l), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +width = 247; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(290,0,ls), +(305,0,o), +(317,12,o), +(317,27,cs), +(317,319,l), +(355,334,ls), +(371,340,o), +(377,349,o), +(377,367,cs), +(377,475,ls), +(377,487,o), +(368,496,o), +(356,496,cs), +(354,496,o), +(350,495,o), +(345,493,cs), +(317,482,l), +(317,683,ls), +(317,698,o), +(305,710,o), +(290,710,cs), +(111,710,ls), +(96,710,o), +(84,698,o), +(84,683,cs), +(84,391,l), +(46,377,ls), +(30,371,o), +(24,362,o), +(24,344,cs), +(24,236,ls), +(24,224,o), +(33,215,o), +(45,215,cs), +(47,215,o), +(51,216,o), +(56,218,cs), +(84,229,l), +(84,27,ls), +(84,12,o), +(96,0,o), +(111,0,cs) +); +} +); +width = 400; +} +); +unicode = 322; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 355; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 231; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 100; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 30; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = m; +kernLeft = n; +kernRight = n; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (439,0); +}, +{ +name = top; +pos = (439,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,304,ls), +(142,434,o), +(214,472,o), +(275,472,cs), +(342,472,o), +(411,434,o), +(411,303,cs), +(411,22,ls), +(411,9,o), +(420,0,o), +(433,0,cs), +(450,0,ls), +(463,0,o), +(472,9,o), +(472,22,cs), +(472,303,ls), +(472,434,o), +(544,472,o), +(605,472,cs), +(677,472,o), +(741,434,o), +(741,303,cs), +(741,22,ls), +(741,9,o), +(750,0,o), +(763,0,cs), +(780,0,ls), +(793,0,o), +(802,9,o), +(802,22,cs), +(802,313,ls), +(802,456,o), +(721,530,o), +(615,530,cs), +(538,530,o), +(476,493,o), +(445,436,c), +(414,497,o), +(360,530,o), +(285,530,cs), +(219,530,o), +(175,506,o), +(142,463,c), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +width = 878; +}, +{ +anchors = ( +{ +name = bottom; +pos = (469,0); +}, +{ +name = top; +pos = (469,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(252,0,ls), +(267,0,o), +(279,12,o), +(279,27,cs), +(279,302,ls), +(279,333,o), +(294,351,o), +(319,351,cs), +(344,351,o), +(359,334,o), +(359,302,cs), +(359,27,ls), +(359,12,o), +(371,0,o), +(386,0,cs), +(562,0,ls), +(577,0,o), +(589,12,o), +(589,27,cs), +(589,302,ls), +(589,334,o), +(603,351,o), +(628,351,cs), +(653,351,o), +(668,334,o), +(668,302,cs), +(668,27,ls), +(668,12,o), +(680,0,o), +(695,0,cs), +(871,0,ls), +(886,0,o), +(898,12,o), +(898,27,cs), +(898,307,ls), +(898,465,o), +(815,530,o), +(714,530,cs), +(653,530,o), +(592,494,o), +(561,448,c), +(534,506,o), +(482,533,o), +(403,530,cs), +(337,527,o), +(287,490,o), +(264,460,c), +(264,493,ls), +(264,508,o), +(252,520,o), +(237,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 938; +} +); +unicode = 109; +}, +{ +color = 6; +glyphname = n; +kernLeft = n; +kernRight = n; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (297,0); +}, +{ +name = top; +pos = (297,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,301,ls), +(142,408,o), +(205,472,o), +(300,472,cs), +(400,472,o), +(453,407,o), +(453,301,cs), +(453,22,ls), +(453,9,o), +(462,0,o), +(475,0,cs), +(492,0,ls), +(505,0,o), +(514,9,o), +(514,22,cs), +(514,306,ls), +(514,433,o), +(446,530,o), +(310,530,cs), +(224,530,o), +(178,498,o), +(142,451,c), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +width = 590; +}, +{ +anchors = ( +{ +name = bottom; +pos = (343,0); +}, +{ +name = top; +pos = (340,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(262,0,ls), +(277,0,o), +(289,12,o), +(289,27,cs), +(289,296,ls), +(289,332,o), +(307,351,o), +(339,351,cs), +(371,351,o), +(389,332,o), +(389,296,cs), +(389,27,ls), +(389,12,o), +(401,0,o), +(416,0,cs), +(607,0,ls), +(622,0,o), +(634,12,o), +(634,27,cs), +(634,303,ls), +(634,461,o), +(541,530,o), +(440,530,cs), +(369,530,o), +(307,499,o), +(274,460,c), +(274,493,ls), +(274,508,o), +(262,520,o), +(247,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 674; +} +); +unicode = 110; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 530; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 301; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 650; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 407; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 451; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 291; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 131; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = nacute; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = n; +}, +{ +pos = (197,0); +ref = acutecomb; +} +); +width = 590; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = n; +}, +{ +pos = (189,0); +ref = acutecomb; +} +); +width = 674; +} +); +unicode = 324; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 286; +y = 0; +} +); +}; +}, +{ +color = 3; +glyphname = napostrophe; +kernLeft = n; +kernRight = n; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(31,582,ls), +(46,582,o), +(52,590,o), +(57,603,cs), +(97,708,ls), +(100,715,o), +(101,721,o), +(101,726,cs), +(101,734,o), +(95,742,o), +(86,742,cs), +(41,742,ls), +(25,742,o), +(18,731,o), +(16,715,cs), +(-1,603,ls), +(-3,591,o), +(2,582,o), +(13,582,cs) +); +}, +{ +ref = n; +} +); +width = 590; +}, +{ +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(30,550,ls), +(56,550,o), +(68,569,o), +(73,582,cs), +(128,721,ls), +(129,724,o), +(129,726,o), +(129,728,cs), +(129,740,o), +(119,750,o), +(107,750,cs), +(-33,750,ls), +(-60,750,o), +(-73,729,o), +(-76,711,c), +(-97,572,l), +(-97,560,o), +(-87,550,o), +(-75,550,cs) +); +}, +{ +ref = n; +} +); +width = 674; +} +); +metricRight = n; +unicode = 329; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 575; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 286; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ncaron; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = n; +}, +{ +pos = (91,0); +ref = caroncomb; +} +); +width = 590; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = n; +}, +{ +pos = (76,0); +ref = caroncomb; +} +); +width = 674; +} +); +unicode = 328; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 286; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ncommaaccent; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = n; +}, +{ +pos = (159,0); +ref = commaaccentcomb; +} +); +width = 590; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = n; +}, +{ +pos = (166,0); +ref = commaaccentcomb; +} +); +width = 674; +} +); +unicode = 326; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 286; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ntilde; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = n; +}, +{ +pos = (107,0); +ref = tildecomb; +} +); +width = 590; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = n; +}, +{ +pos = (86,0); +ref = tildecomb; +} +); +width = 674; +} +); +unicode = 241; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 286; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = eng; +kernLeft = n; +kernRight = n; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(363,-225,l), +(485,-225,o), +(514,-151,o), +(514,-57,c), +(514,306,l), +(514,433,o), +(446,530,o), +(310,530,cs), +(224,530,o), +(178,498,o), +(142,451,c), +(142,498,l), +(142,511,o), +(133,520,o), +(120,520,c), +(103,520,l), +(90,520,o), +(81,511,o), +(81,498,c), +(81,22,l), +(81,9,o), +(90,0,o), +(103,0,c), +(120,0,l), +(133,0,o), +(142,9,o), +(142,22,c), +(142,301,l), +(142,408,o), +(205,472,o), +(300,472,cs), +(400,472,o), +(453,407,o), +(453,301,c), +(453,-57,l), +(453,-118,o), +(444,-167,o), +(363,-167,c), +(359,-167,l), +(346,-167,o), +(337,-176,o), +(337,-189,c), +(337,-203,l), +(337,-216,o), +(346,-225,o), +(359,-225,c) +); +} +); +width = 590; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(312,-225,ls), +(494,-225,o), +(634,-142,o), +(634,48,cs), +(634,303,ls), +(634,461,o), +(541,530,o), +(440,530,cs), +(369,530,o), +(307,499,o), +(274,460,c), +(274,493,ls), +(274,508,o), +(262,520,o), +(247,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs), +(262,0,ls), +(277,0,o), +(289,12,o), +(289,27,cs), +(289,296,ls), +(289,332,o), +(307,351,o), +(339,351,cs), +(371,351,o), +(389,332,o), +(389,296,cs), +(389,59,ls), +(389,-2,o), +(365,-22,o), +(322,-22,cs), +(283,-22,ls), +(268,-22,o), +(256,-34,o), +(256,-49,c), +(256,-198,ls), +(256,-213,o), +(268,-225,o), +(283,-225,cs) +); +} +); +width = 674; +} +); +unicode = 331; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-300"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 225; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = o; +kernLeft = o; +kernRight = o; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (279,0); +}, +{ +name = center; +pos = (279,260); +}, +{ +name = ogonek; +pos = (502,10); +}, +{ +name = top; +pos = (279,520); +}, +{ +name = topright; +pos = (538,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-10,o), +(497,89,o), +(501,218,cs), +(502,238,o), +(502,282,o), +(501,302,cs), +(497,431,o), +(423,530,o), +(279,530,cs), +(135,530,o), +(61,431,o), +(57,302,cs), +(56,282,o), +(56,238,o), +(57,218,cs), +(61,89,o), +(135,-10,o), +(279,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,48,o), +(122,109,o), +(118,223,cs), +(117,243,o), +(117,277,o), +(118,297,cs), +(122,411,o), +(186,472,o), +(279,472,cs), +(372,472,o), +(436,411,o), +(440,297,cs), +(441,277,o), +(441,243,o), +(440,223,cs), +(436,109,o), +(372,48,o), +(279,48,cs) +); +} +); +width = 558; +}, +{ +anchors = ( +{ +name = bottom; +pos = (321,0); +}, +{ +name = center; +pos = (321,260); +}, +{ +name = ogonek; +pos = (578,10); +}, +{ +name = top; +pos = (321,520); +}, +{ +name = topright; +pos = (622,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,-10,o), +(601,66,o), +(611,213,cs), +(613,243,o), +(613,277,o), +(611,307,cs), +(601,454,o), +(494,530,o), +(321,530,cs), +(148,530,o), +(41,454,o), +(31,307,cs), +(29,277,o), +(29,243,o), +(31,213,cs), +(41,66,o), +(137,-10,o), +(321,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,150,o), +(279,171,o), +(276,218,cs), +(275,238,o), +(275,282,o), +(276,302,cs), +(279,346,o), +(283,370,o), +(321,370,cs), +(359,370,o), +(363,346,o), +(366,302,cs), +(367,282,o), +(367,238,o), +(366,218,cs), +(363,171,o), +(359,150,o), +(321,150,cs) +); +} +); +width = 642; +} +); +unicode = 111; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 302; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 218; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 411; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 109; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 56; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 500; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = oacute; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = o; +}, +{ +pos = (179,0); +ref = acutecomb; +} +); +width = 558; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = o; +}, +{ +pos = (170,0); +ref = acutecomb; +} +); +width = 642; +} +); +unicode = 243; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = obreve; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = o; +}, +{ +pos = (94,0); +ref = brevecomb; +} +); +width = 558; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = o; +}, +{ +pos = (99,0); +ref = brevecomb; +} +); +width = 642; +} +); +unicode = 335; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ocircumflex; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = o; +}, +{ +pos = (73,0); +ref = circumflexcomb; +} +); +width = 558; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = o; +}, +{ +pos = (57,0); +ref = circumflexcomb; +} +); +width = 642; +} +); +unicode = 244; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = odieresis; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = o; +}, +{ +pos = (91,0); +ref = dieresiscomb; +} +); +width = 558; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = o; +}, +{ +pos = (66,0); +ref = dieresiscomb; +} +); +width = 642; +} +); +unicode = 246; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ograve; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = o; +}, +{ +pos = (79,0); +ref = gravecomb; +} +); +width = 558; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = o; +}, +{ +pos = (23,0); +ref = gravecomb; +} +); +width = 642; +} +); +unicode = 242; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ohungarumlaut; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = o; +}, +{ +pos = (104,0); +ref = hungarumlautcomb; +} +); +width = 558; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = o; +}, +{ +pos = (59,0); +ref = hungarumlautcomb; +} +); +width = 642; +} +); +unicode = 337; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = omacron; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = o; +}, +{ +pos = (87,0); +ref = macroncomb; +} +); +width = 558; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = o; +}, +{ +pos = (84,0); +ref = macroncomb; +} +); +width = 642; +} +); +unicode = 333; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = oslash; +kernLeft = o; +kernRight = o; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (279,520); +} +); +hints = ( +{ +horizontal = 1; +place = (515, 0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = o; +}, +{ +pos = (55,17); +ref = slashshortcomb; +} +); +width = 558; +}, +{ +anchors = ( +{ +name = top; +pos = (321,520); +} +); +color = 10; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = o; +}, +{ +pos = (-3,0); +ref = slashshortcomb; +} +); +width = 642; +} +); +unicode = 248; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 259; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 370; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 80; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 584; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 141; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 20; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = oslashacute; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = oslash; +}, +{ +pos = (179,0); +ref = acutecomb; +} +); +width = 558; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = oslash; +}, +{ +pos = (170,0); +ref = acutecomb; +} +); +width = 642; +} +); +unicode = 511; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 302; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = otilde; +kernLeft = o; +kernRight = o; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = o; +}, +{ +pos = (89,0); +ref = tildecomb; +} +); +width = 558; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = o; +}, +{ +pos = (67,0); +ref = tildecomb; +} +); +width = 642; +} +); +unicode = 245; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 278; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = oe; +kernLeft = o; +kernRight = e; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (466,0); +}, +{ +name = top; +pos = (466,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(376,-10,o), +(440,33,o), +(474,101,c), +(510,32,o), +(575,-10,o), +(662,-10,cs), +(783,-10,o), +(861,73,o), +(863,111,cs), +(864,123,o), +(854,131,o), +(842,131,cs), +(826,131,ls), +(811,131,o), +(808,130,o), +(796,113,cs), +(785,97,o), +(742,48,o), +(662,48,cs), +(565,48,o), +(508,134,o), +(504,225,cs), +(504,235,l), +(860,235,ls), +(873,235,o), +(883,244,o), +(883,257,cs), +(883,272,ls), +(883,432,o), +(801,530,o), +(662,530,cs), +(574,530,o), +(510,487,o), +(474,418,c), +(440,486,o), +(376,530,o), +(280,530,cs), +(136,530,o), +(62,431,o), +(58,302,cs), +(57,282,o), +(57,238,o), +(58,218,cs), +(62,89,o), +(136,-10,o), +(280,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(187,48,o), +(123,109,o), +(119,223,cs), +(118,243,o), +(118,277,o), +(119,297,cs), +(123,411,o), +(187,472,o), +(280,472,cs), +(373,472,o), +(437,411,o), +(441,297,cs), +(442,277,o), +(442,243,o), +(441,223,cs), +(437,109,o), +(373,48,o), +(280,48,cs) +); +}, +{ +closed = 1; +nodes = ( +(504,295,ls), +(504,395,o), +(562,472,o), +(662,472,cs), +(762,472,o), +(822,395,o), +(822,295,cs), +(822,291,l), +(504,291,l) +); +} +); +width = 931; +}, +{ +anchors = ( +{ +name = bottom; +pos = (482,0); +}, +{ +name = top; +pos = (482,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(391,-10,o), +(448,1,o), +(492,22,c), +(536,0,o), +(591,-10,o), +(654,-10,cs), +(839,-10,o), +(922,94,o), +(925,145,cs), +(926,158,o), +(916,167,o), +(903,167,c), +(714,167,l), +(698,167,o), +(693,165,o), +(681,153,cs), +(670,142,o), +(664,135,o), +(652,135,cs), +(623,135,o), +(613,156,o), +(613,196,c), +(613,201,l), +(911,201,l), +(926,201,o), +(938,213,o), +(938,228,c), +(938,258,l), +(938,405,o), +(849,530,o), +(653,530,cs), +(591,530,o), +(538,518,o), +(494,494,c), +(448,518,o), +(389,530,o), +(321,530,cs), +(148,530,o), +(41,454,o), +(31,307,cs), +(29,277,o), +(29,243,o), +(31,213,cs), +(41,66,o), +(137,-10,o), +(321,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,150,o), +(279,171,o), +(276,218,cs), +(275,238,o), +(275,282,o), +(276,302,cs), +(279,346,o), +(283,370,o), +(321,370,cs), +(359,370,o), +(363,346,o), +(366,302,cs), +(367,282,o), +(367,238,o), +(366,218,cs), +(363,171,o), +(359,150,o), +(321,150,cs) +); +}, +{ +closed = 1; +nodes = ( +(613,327,l), +(613,371,o), +(627,390,o), +(653,390,cs), +(679,390,o), +(693,371,o), +(693,327,c), +(693,326,l), +(613,326,l) +); +} +); +width = 963; +} +); +unicode = 339; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 51; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 495; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = p; +kernLeft = n; +kernRight = b; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,-190,ls), +(134,-190,o), +(143,-181,o), +(143,-168,cs), +(143,69,l), +(176,25,o), +(228,-10,o), +(311,-10,cs), +(467,-10,o), +(521,110,o), +(525,227,cs), +(526,247,o), +(526,273,o), +(525,293,cs), +(521,410,o), +(467,530,o), +(311,530,cs), +(228,530,o), +(176,496,o), +(143,451,c), +(143,498,ls), +(143,511,o), +(134,520,o), +(121,520,cs), +(104,520,ls), +(91,520,o), +(82,511,o), +(82,498,cs), +(82,-168,ls), +(82,-181,o), +(91,-190,o), +(104,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,48,o), +(145,138,o), +(143,218,cs), +(142,238,o), +(142,276,o), +(143,296,cs), +(146,378,o), +(191,472,o), +(305,472,cs), +(422,472,o), +(460,384,o), +(464,288,cs), +(465,268,o), +(465,252,o), +(464,232,cs), +(460,136,o), +(422,48,o), +(305,48,cs) +); +} +); +width = 581; +}, +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(257,-190,ls), +(272,-190,o), +(284,-178,o), +(284,-163,cs), +(284,50,l), +(314,7,o), +(361,-10,o), +(417,-10,cs), +(533,-10,o), +(623,63,o), +(629,220,cs), +(630,250,o), +(630,269,o), +(629,299,cs), +(622,466,o), +(533,530,o), +(417,530,cs), +(348,530,o), +(299,502,o), +(269,463,c), +(269,493,ls), +(269,508,o), +(257,520,o), +(242,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,-163,ls), +(45,-178,o), +(57,-190,o), +(72,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(300,169,o), +(286,187,o), +(284,219,cs), +(282,249,o), +(282,263,o), +(284,293,cs), +(286,329,o), +(297,351,o), +(334,351,cs), +(371,351,o), +(380,329,o), +(384,293,cs), +(386,273,o), +(386,247,o), +(384,227,cs), +(380,191,o), +(371,169,o), +(334,169,cs) +); +} +); +width = 661; +} +); +unicode = 112; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 530; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 422; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-190"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 419; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-609"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 79; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 122; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 291; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = thorn; +kernLeft = h; +kernRight = b; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,-190,ls), +(134,-190,o), +(143,-181,o), +(143,-168,cs), +(143,69,l), +(176,25,o), +(228,-10,o), +(311,-10,cs), +(467,-10,o), +(521,110,o), +(525,227,cs), +(526,247,o), +(526,273,o), +(525,293,cs), +(521,410,o), +(467,530,o), +(311,530,cs), +(228,530,o), +(176,496,o), +(143,451,c), +(143,688,ls), +(143,701,o), +(134,710,o), +(121,710,cs), +(104,710,ls), +(91,710,o), +(82,701,o), +(82,688,cs), +(82,-168,ls), +(82,-181,o), +(91,-190,o), +(104,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(194,48,o), +(145,138,o), +(143,218,cs), +(142,238,o), +(142,276,o), +(143,296,cs), +(146,378,o), +(191,472,o), +(305,472,cs), +(422,472,o), +(460,384,o), +(464,288,cs), +(465,268,o), +(465,252,o), +(464,232,cs), +(460,136,o), +(422,48,o), +(305,48,cs) +); +} +); +width = 581; +}, +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(258,-190,ls), +(273,-190,o), +(285,-178,o), +(285,-163,cs), +(285,50,l), +(315,7,o), +(362,-10,o), +(418,-10,cs), +(534,-10,o), +(624,63,o), +(630,220,cs), +(631,250,o), +(631,269,o), +(630,299,cs), +(623,466,o), +(534,530,o), +(418,530,cs), +(349,530,o), +(315,512,o), +(285,473,c), +(285,683,ls), +(285,698,o), +(273,710,o), +(258,710,cs), +(73,710,ls), +(58,710,o), +(46,698,o), +(46,683,cs), +(46,-163,ls), +(46,-178,o), +(58,-190,o), +(73,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(301,169,o), +(287,187,o), +(285,219,cs), +(283,249,o), +(283,263,o), +(285,293,cs), +(287,329,o), +(298,351,o), +(335,351,cs), +(372,351,o), +(381,329,o), +(385,293,cs), +(387,273,o), +(387,247,o), +(385,227,cs), +(381,191,o), +(372,169,o), +(335,169,cs) +); +} +); +width = 662; +} +); +unicode = 254; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +} +); +}; +}, +{ +color = 6; +glyphname = q; +kernLeft = d; +kernRight = u; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (291,0); +}, +{ +name = top; +pos = (291,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(477,-190,ls), +(490,-190,o), +(499,-181,o), +(499,-168,cs), +(499,498,ls), +(499,511,o), +(490,520,o), +(477,520,cs), +(460,520,ls), +(447,520,o), +(438,511,o), +(438,498,cs), +(438,451,l), +(405,496,o), +(353,530,o), +(270,530,cs), +(114,530,o), +(60,410,o), +(56,293,cs), +(55,273,o), +(55,247,o), +(56,227,cs), +(60,110,o), +(114,-10,o), +(270,-10,cs), +(353,-10,o), +(405,25,o), +(438,69,c), +(438,-168,ls), +(438,-181,o), +(447,-190,o), +(460,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(159,48,o), +(121,136,o), +(117,232,cs), +(116,252,o), +(116,268,o), +(117,288,cs), +(121,384,o), +(159,472,o), +(276,472,cs), +(390,472,o), +(435,378,o), +(438,296,cs), +(439,276,o), +(439,238,o), +(438,218,cs), +(436,138,o), +(387,48,o), +(276,48,cs) +); +} +); +width = 581; +}, +{ +anchors = ( +{ +name = bottom; +pos = (331,0); +}, +{ +name = top; +pos = (331,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(589,-190,ls), +(604,-190,o), +(616,-178,o), +(616,-163,cs), +(616,493,ls), +(616,508,o), +(604,520,o), +(589,520,cs), +(419,520,ls), +(404,520,o), +(392,508,o), +(392,493,cs), +(392,463,l), +(362,502,o), +(313,530,o), +(244,530,cs), +(128,530,o), +(39,466,o), +(32,299,cs), +(31,269,o), +(31,250,o), +(32,220,cs), +(38,63,o), +(128,-10,o), +(244,-10,cs), +(300,-10,o), +(347,7,o), +(377,50,c), +(377,-163,ls), +(377,-178,o), +(389,-190,o), +(404,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(290,169,o), +(281,191,o), +(277,227,cs), +(275,247,o), +(275,273,o), +(277,293,cs), +(281,329,o), +(290,351,o), +(327,351,cs), +(364,351,o), +(375,329,o), +(377,293,cs), +(379,263,o), +(379,249,o), +(377,219,cs), +(375,187,o), +(361,169,o), +(327,169,cs) +); +} +); +width = 661; +} +); +unicode = 113; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 530; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-190"; +} +); +}; +}, +{ +color = 6; +glyphname = r; +kernLeft = n; +kernRight = r; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (112,0); +}, +{ +name = top; +pos = (191,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(119,0,ls), +(132,0,o), +(142,9,o), +(142,22,cs), +(142,332,ls), +(142,412,o), +(192,462,o), +(272,462,cs), +(315,462,ls), +(328,462,o), +(337,471,o), +(337,484,cs), +(337,498,ls), +(337,511,o), +(328,520,o), +(315,520,cs), +(278,520,ls), +(211,520,o), +(166,497,o), +(142,451,c), +(142,497,ls), +(142,510,o), +(132,520,o), +(119,520,cs), +(103,520,ls), +(90,520,o), +(81,510,o), +(81,497,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +width = 348; +}, +{ +anchors = ( +{ +name = bottom; +pos = (164,0); +}, +{ +name = top; +pos = (277,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(262,0,ls), +(277,0,o), +(289,12,o), +(289,27,cs), +(289,250,ls), +(289,290,o), +(309,310,o), +(349,310,cs), +(478,310,ls), +(493,310,o), +(505,322,o), +(505,337,cs), +(505,493,ls), +(505,508,o), +(493,520,o), +(478,520,cs), +(430,520,ls), +(370,520,o), +(316,495,o), +(274,458,c), +(274,493,ls), +(274,508,o), +(262,520,o), +(247,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 518; +} +); +unicode = 114; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 462; +} +); +}; +}, +{ +color = 10; +glyphname = racute; +kernLeft = n; +kernRight = r; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = r; +}, +{ +pos = (91,0); +ref = acutecomb; +} +); +width = 348; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = r; +}, +{ +pos = (126,0); +ref = acutecomb; +} +); +width = 518; +} +); +unicode = 341; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 285; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = rcaron; +kernLeft = n; +kernRight = r; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-15,0); +ref = caroncomb; +} +); +width = 348; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = r; +}, +{ +pos = (13,0); +ref = caroncomb; +} +); +width = 518; +} +); +unicode = 345; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = rcommaaccent; +kernLeft = n; +kernRight = r; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-26,0); +ref = commaaccentcomb; +} +); +width = 348; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = r; +}, +{ +pos = (-13,0); +ref = commaaccentcomb; +} +); +width = 518; +} +); +unicode = 343; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 198; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = s; +kernLeft = s; +kernRight = s; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (243,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(376,-10,o), +(445,59,o), +(445,139,cs), +(445,214,o), +(404,259,o), +(276,288,cs), +(149,317,o), +(123,340,o), +(123,385,cs), +(123,435,o), +(161,472,o), +(241,472,cs), +(321,472,o), +(345,443,o), +(366,411,cs), +(371,403,o), +(377,398,o), +(388,398,cs), +(403,398,ls), +(415,398,o), +(426,407,o), +(425,420,cs), +(423,449,o), +(371,530,o), +(241,530,cs), +(121,530,o), +(62,455,o), +(62,385,cs), +(62,320,o), +(89,270,o), +(216,241,cs), +(342,212,o), +(384,194,o), +(384,139,cs), +(384,79,o), +(326,48,o), +(246,48,cs), +(166,48,o), +(131,79,o), +(106,114,cs), +(97,126,o), +(92,127,o), +(84,127,cs), +(69,127,ls), +(60,127,o), +(46,120,o), +(47,105,cs), +(49,78,o), +(106,-10,o), +(246,-10,cs) +); +} +); +width = 492; +}, +{ +anchors = ( +{ +name = bottom; +pos = (295,0); +}, +{ +name = top; +pos = (295,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(469,-10,o), +(569,55,o), +(569,162,cs), +(569,230,o), +(518,309,o), +(374,330,cs), +(270,345,o), +(264,357,o), +(264,374,cs), +(264,383,o), +(274,390,o), +(284,390,cs), +(313,390,o), +(328,360,o), +(357,360,cs), +(360,360,o), +(364,360,o), +(367,360,c), +(525,360,ls), +(537,360,o), +(548,372,o), +(547,387,cs), +(544,444,o), +(450,530,o), +(285,530,cs), +(120,530,o), +(32,445,o), +(32,359,cs), +(32,254,o), +(122,209,o), +(215,192,cs), +(314,174,o), +(319,162,o), +(319,145,cs), +(319,135,o), +(307,130,o), +(296,130,cs), +(265,130,o), +(250,157,o), +(224,160,cs), +(223,160,o), +(221,160,o), +(220,160,cs), +(46,160,ls), +(32,160,o), +(21,148,o), +(22,133,cs), +(25,80,o), +(97,-10,o), +(289,-10,cs) +); +} +); +width = 590; +} +); +unicode = 115; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 265; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 139; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 250; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = sacute; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = s; +}, +{ +pos = (143,0); +ref = acutecomb; +} +); +width = 492; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = s; +}, +{ +pos = (144,0); +ref = acutecomb; +} +); +width = 590; +} +); +unicode = 347; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 249; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = scaron; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = s; +}, +{ +pos = (37,0); +ref = caroncomb; +} +); +width = 492; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = s; +}, +{ +pos = (31,0); +ref = caroncomb; +} +); +width = 590; +} +); +unicode = 353; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 249; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = scedilla; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,-221,o), +(354,-180,o), +(354,-132,cs), +(354,-84,o), +(322,-50,o), +(278,-50,cs), +(263,-50,o), +(248,-53,o), +(240,-58,c), +(263,-10,l), +(382,-4,o), +(445,62,o), +(445,139,cs), +(445,214,o), +(404,259,o), +(276,288,cs), +(149,317,o), +(123,340,o), +(123,385,cs), +(123,435,o), +(161,472,o), +(241,472,cs), +(321,472,o), +(345,443,o), +(366,411,cs), +(371,403,o), +(377,398,o), +(388,398,cs), +(403,398,ls), +(415,398,o), +(426,407,o), +(425,420,cs), +(423,449,o), +(371,530,o), +(241,530,cs), +(121,530,o), +(62,455,o), +(62,385,cs), +(62,320,o), +(89,270,o), +(216,241,cs), +(342,212,o), +(384,194,o), +(384,139,cs), +(384,79,o), +(326,48,o), +(246,48,cs), +(166,48,o), +(131,79,o), +(106,114,cs), +(97,126,o), +(92,127,o), +(84,127,cs), +(69,127,ls), +(60,127,o), +(46,120,o), +(47,105,cs), +(48,79,o), +(94,7,o), +(208,-7,c), +(189,-53,ls), +(185,-63,o), +(177,-75,o), +(184,-83,cs), +(200,-100,ls), +(215,-116,o), +(228,-96,o), +(260,-96,cs), +(283,-96,o), +(303,-110,o), +(303,-134,cs), +(303,-159,o), +(283,-174,o), +(260,-174,cs), +(216,-174,o), +(209,-140,o), +(192,-156,cs), +(178,-169,ls), +(162,-184,o), +(203,-219,o), +(260,-220,cs) +); +} +); +width = 492; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,-220,o), +(398,-183,o), +(398,-130,cs), +(398,-77,o), +(368,-40,o), +(317,-40,cs), +(313,-40,o), +(295,-42,o), +(287,-45,c), +(305,-10,l), +(474,-6,o), +(569,58,o), +(569,162,cs), +(569,230,o), +(518,309,o), +(374,330,cs), +(270,345,o), +(264,357,o), +(264,374,cs), +(264,383,o), +(274,390,o), +(284,390,cs), +(313,390,o), +(328,360,o), +(357,360,cs), +(360,360,o), +(362,360,o), +(365,360,cs), +(525,360,ls), +(537,360,o), +(548,372,o), +(547,387,cs), +(544,444,o), +(450,530,o), +(285,530,cs), +(120,530,o), +(32,445,o), +(32,359,cs), +(32,254,o), +(122,209,o), +(215,192,cs), +(314,174,o), +(319,162,o), +(319,145,cs), +(319,135,o), +(307,130,o), +(296,130,cs), +(263,130,o), +(249,160,o), +(220,160,cs), +(217,160,o), +(215,160,o), +(212,160,cs), +(46,160,ls), +(32,160,o), +(21,148,o), +(22,133,cs), +(24,84,o), +(85,9,o), +(242,-7,c), +(222,-52,ls), +(213,-71,o), +(215,-76,o), +(224,-85,cs), +(245,-106,ls), +(258,-119,o), +(281,-106,o), +(299,-106,cs), +(319,-106,o), +(327,-118,o), +(327,-130,cs), +(327,-142,o), +(318,-154,o), +(299,-154,cs), +(265,-154,o), +(260,-136,o), +(243,-151,cs), +(222,-169,ls), +(199,-189,o), +(246,-220,o), +(299,-220,cs) +); +} +); +width = 590; +} +); +unicode = 351; +}, +{ +color = 10; +glyphname = scircumflex; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = s; +}, +{ +pos = (37,0); +ref = circumflexcomb; +} +); +width = 492; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = s; +}, +{ +pos = (31,0); +ref = circumflexcomb; +} +); +width = 590; +} +); +unicode = 349; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 249; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = scommaaccent; +kernLeft = s; +kernRight = s; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = s; +}, +{ +pos = (108,0); +ref = commaaccentcomb; +} +); +width = 492; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = s; +}, +{ +pos = (118,0); +ref = commaaccentcomb; +} +); +width = 590; +} +); +unicode = 537; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 249; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = germandbls; +kernLeft = h; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = top; +pos = (284,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,0,ls), +(134,0,o), +(143,9,o), +(143,22,cs), +(143,497,ls), +(143,601,o), +(199,652,o), +(284,652,cs), +(369,652,o), +(426,600,o), +(426,528,cs), +(426,449,o), +(379,406,o), +(280,405,cs), +(225,405,ls), +(212,405,o), +(203,396,o), +(203,383,cs), +(203,369,ls), +(203,356,o), +(212,347,o), +(225,347,cs), +(290,347,ls), +(399,347,o), +(455,283,o), +(455,202,cs), +(455,122,o), +(399,58,o), +(290,58,c), +(225,58,ls), +(212,58,o), +(203,49,o), +(203,36,cs), +(203,22,ls), +(203,9,o), +(212,0,o), +(225,0,cs), +(300,0,ls), +(456,0,o), +(516,113,o), +(516,202,cs), +(516,272,o), +(492,347,o), +(397,377,c), +(437,395,o), +(487,442,o), +(487,528,cs), +(487,613,o), +(429,710,o), +(284,710,cs), +(139,710,o), +(82,611,o), +(82,502,cs), +(82,22,ls), +(82,9,o), +(91,0,o), +(104,0,cs) +); +} +); +width = 568; +}, +{ +anchors = ( +{ +name = bottom; +pos = (341,0); +}, +{ +name = top; +pos = (341,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,0,ls), +(265,0,o), +(277,12,o), +(277,27,c), +(277,459,ls), +(277,518,o), +(301,541,o), +(340,541,c), +(379,541,o), +(403,518,o), +(403,489,cs), +(403,460,o), +(376,439,o), +(339,438,c), +(336,438,l), +(311,438,o), +(307,426,o), +(307,411,cs), +(307,313,ls), +(307,298,o), +(315,286,o), +(336,286,c), +(338,286,l), +(384,286,o), +(409,262,o), +(409,227,cs), +(409,191,o), +(380,168,o), +(342,168,c), +(340,168,l), +(319,169,o), +(307,156,o), +(307,141,cs), +(307,27,ls), +(307,12,o), +(319,0,o), +(340,0,c), +(375,0,l), +(569,0,o), +(655,113,o), +(655,216,cs), +(655,303,o), +(620,348,o), +(566,375,c), +(607,407,o), +(625,447,o), +(625,502,cs), +(625,608,o), +(546,709,o), +(340,710,c), +(134,709,o), +(45,598,o), +(45,452,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 682; +} +); +unicode = 223; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 527; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 601; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 267; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 499; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = longs; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (136,0); +}, +{ +name = top; +pos = (136,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,0,ls), +(182,0,o), +(191,9,o), +(191,22,cs), +(191,572,l), +(191,633,o), +(200,682,o), +(281,682,cs), +(333,682,ls), +(346,682,o), +(355,691,o), +(355,704,cs), +(355,718,ls), +(355,731,o), +(346,740,o), +(333,740,cs), +(281,740,ls), +(159,740,o), +(130,666,o), +(130,572,cs), +(130,520,l), +(41,520,ls), +(28,520,o), +(19,511,o), +(19,498,cs), +(19,484,ls), +(19,471,o), +(28,462,o), +(41,462,cs), +(130,462,l), +(130,22,ls), +(130,9,o), +(139,0,o), +(152,0,cs) +); +} +); +width = 272; +}, +{ +anchors = ( +{ +name = bottom; +pos = (194,0); +}, +{ +name = top; +pos = (194,520); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(314,0,ls), +(329,0,o), +(341,12,o), +(341,27,cs), +(341,532,l), +(341,553,o), +(354,565,o), +(384,565,cs), +(465,565,ls), +(480,565,o), +(492,577,o), +(492,592,cs), +(492,713,ls), +(492,728,o), +(480,740,o), +(465,740,cs), +(372,740,ls), +(227,740,o), +(112,701,o), +(112,537,cs), +(112,520,l), +(43,520,ls), +(28,520,o), +(16,508,o), +(16,493,cs), +(16,372,ls), +(16,357,o), +(28,345,o), +(43,345,cs), +(112,345,l), +(112,27,ls), +(112,12,o), +(124,0,o), +(139,0,cs) +); +} +); +width = 387; +} +); +unicode = 383; +}, +{ +color = 6; +glyphname = t; +kernLeft = t; +kernRight = t; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (230,0); +}, +{ +name = center; +pos = (180,260); +}, +{ +name = top; +pos = (180,520); +}, +{ +name = topright; +pos = (275,770); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,0,ls), +(328,0,o), +(337,9,o), +(337,22,cs), +(337,36,ls), +(337,49,o), +(328,58,o), +(315,58,cs), +(261,58,ls), +(201,58,o), +(181,100,o), +(181,171,cs), +(181,462,l), +(305,462,ls), +(318,462,o), +(327,471,o), +(327,484,cs), +(327,498,ls), +(327,511,o), +(318,520,o), +(305,520,cs), +(181,520,l), +(181,688,ls), +(181,701,o), +(172,710,o), +(159,710,cs), +(142,710,ls), +(129,710,o), +(120,701,o), +(120,688,cs), +(120,520,l), +(42,520,ls), +(29,520,o), +(20,511,o), +(20,498,cs), +(20,484,ls), +(20,471,o), +(29,462,o), +(42,462,cs), +(120,462,l), +(120,167,ls), +(120,73,o), +(151,0,o), +(256,0,cs) +); +} +); +width = 359; +}, +{ +anchors = ( +{ +name = bottom; +pos = (311,0); +}, +{ +name = center; +pos = (242,260); +}, +{ +name = top; +pos = (266,520); +}, +{ +name = topright; +pos = (512,810); +} +); +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(480,0,ls), +(495,0,o), +(507,12,o), +(507,27,cs), +(507,158,ls), +(507,173,o), +(495,185,o), +(480,185,cs), +(389,185,ls), +(359,185,o), +(346,204,o), +(346,235,cs), +(346,345,l), +(472,345,ls), +(487,345,o), +(499,357,o), +(499,372,cs), +(499,493,ls), +(499,508,o), +(487,520,o), +(472,520,cs), +(346,520,l), +(346,683,ls), +(346,698,o), +(334,710,o), +(319,710,cs), +(144,710,ls), +(129,710,o), +(117,698,o), +(117,683,cs), +(117,520,l), +(38,520,ls), +(23,520,o), +(11,508,o), +(11,493,cs), +(11,372,ls), +(11,357,o), +(23,345,o), +(38,345,cs), +(117,345,l), +(117,215,ls), +(117,51,o), +(222,0,o), +(367,0,cs) +); +} +); +width = 532; +} +); +unicode = 116; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 175; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 342; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 35; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = tbar; +kernLeft = t; +kernRight = t; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(320,0,ls), +(333,0,o), +(342,9,o), +(342,22,cs), +(342,36,ls), +(342,49,o), +(333,58,o), +(320,58,cs), +(266,58,ls), +(206,58,o), +(186,100,o), +(186,171,cs), +(186,304,l), +(310,304,ls), +(323,304,o), +(332,313,o), +(332,326,cs), +(332,340,ls), +(332,353,o), +(323,362,o), +(310,362,cs), +(186,362,l), +(186,462,l), +(310,462,ls), +(323,462,o), +(332,471,o), +(332,484,cs), +(332,498,ls), +(332,511,o), +(323,520,o), +(310,520,cs), +(186,520,l), +(186,688,ls), +(186,701,o), +(177,710,o), +(164,710,cs), +(147,710,ls), +(134,710,o), +(125,701,o), +(125,688,cs), +(125,520,l), +(47,520,ls), +(34,520,o), +(25,511,o), +(25,498,cs), +(25,484,ls), +(25,471,o), +(34,462,o), +(47,462,cs), +(125,462,l), +(125,362,l), +(47,362,ls), +(34,362,o), +(25,353,o), +(25,340,cs), +(25,326,ls), +(25,313,o), +(34,304,o), +(47,304,cs), +(125,304,l), +(125,167,ls), +(125,73,o), +(156,0,o), +(261,0,cs) +); +} +); +width = 367; +}, +{ +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(481,0,ls), +(496,0,o), +(508,12,o), +(508,27,cs), +(508,158,ls), +(508,173,o), +(496,185,o), +(481,185,cs), +(390,185,ls), +(360,185,o), +(347,204,o), +(347,235,cs), +(347,265,l), +(473,265,ls), +(488,265,o), +(500,277,o), +(500,292,cs), +(500,343,ls), +(500,358,o), +(488,370,o), +(473,370,cs), +(347,370,l), +(347,415,l), +(473,415,ls), +(488,415,o), +(500,427,o), +(500,442,cs), +(500,493,ls), +(500,508,o), +(488,520,o), +(473,520,cs), +(347,520,l), +(347,683,ls), +(347,698,o), +(335,710,o), +(320,710,cs), +(145,710,ls), +(130,710,o), +(118,698,o), +(118,683,cs), +(118,520,l), +(39,520,ls), +(24,520,o), +(12,508,o), +(12,493,cs), +(12,442,ls), +(12,427,o), +(24,415,o), +(39,415,cs), +(118,415,l), +(118,370,l), +(39,370,ls), +(24,370,o), +(12,358,o), +(12,343,cs), +(12,292,ls), +(12,277,o), +(24,265,o), +(39,265,cs), +(118,265,l), +(118,215,ls), +(118,51,o), +(223,0,o), +(368,0,cs) +); +} +); +width = 533; +} +); +unicode = 359; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 342; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = tcaron; +kernLeft = t; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = t; +}, +{ +pos = (120,70); +ref = caroncomb.alt; +} +); +width = 359; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = t; +}, +{ +pos = (200,110); +ref = caroncomb.alt; +} +); +width = 532; +} +); +unicode = 357; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 343; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = tcommaaccent; +kernLeft = t; +kernRight = t; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = t; +}, +{ +pos = (92,0); +ref = commaaccentcomb; +} +); +width = 359; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = t; +}, +{ +pos = (134,0); +ref = commaaccentcomb; +} +); +width = 532; +} +); +unicode = 539; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 167; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = u; +kernLeft = u; +kernRight = u; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (293,0); +}, +{ +name = ogonek; +pos = (503,57); +}, +{ +name = top; +pos = (289,520); +}, +{ +name = topright; +pos = (565,520); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,6); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,22); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(362,-10,o), +(407,22,o), +(443,69,c), +(443,22,ls), +(443,9,o), +(452,0,o), +(465,0,cs), +(482,0,ls), +(495,0,o), +(504,9,o), +(504,22,cs), +(504,498,ls), +(504,511,o), +(495,520,o), +(482,520,cs), +(465,520,ls), +(452,520,o), +(443,511,o), +(443,498,cs), +(443,219,ls), +(443,112,o), +(381,48,o), +(286,48,cs), +(186,48,o), +(137,106,o), +(137,219,cs), +(137,498,ls), +(137,511,o), +(128,520,o), +(115,520,cs), +(98,520,ls), +(85,520,o), +(76,511,o), +(76,498,cs), +(76,214,ls), +(76,87,o), +(140,-10,o), +(276,-10,cs) +); +} +); +width = 585; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = ogonek; +pos = (607,10); +}, +{ +name = top; +pos = (337,520); +}, +{ +name = topright; +pos = (654,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(305,-10,o), +(367,11,o), +(400,60,c), +(400,27,ls), +(400,12,o), +(412,0,o), +(427,0,cs), +(602,0,ls), +(617,0,o), +(629,12,o), +(629,27,cs), +(629,493,ls), +(629,508,o), +(617,520,o), +(602,520,cs), +(412,520,ls), +(397,520,o), +(385,508,o), +(385,493,cs), +(385,224,ls), +(385,188,o), +(367,169,o), +(335,169,cs), +(303,169,o), +(285,188,o), +(285,224,cs), +(285,493,ls), +(285,508,o), +(273,520,o), +(258,520,cs), +(67,520,ls), +(52,520,o), +(40,508,o), +(40,493,cs), +(40,217,l), +(40,59,o), +(133,-10,o), +(234,-10,cs) +); +} +); +width = 674; +} +); +unicode = 117; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 432; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 126; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 65; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = uacute; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = u; +}, +{ +pos = (189,0); +ref = acutecomb; +} +); +width = 585; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = u; +}, +{ +pos = (186,0); +ref = acutecomb; +} +); +width = 674; +} +); +unicode = 250; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ubreve; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = u; +}, +{ +pos = (104,0); +ref = brevecomb; +} +); +width = 585; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = u; +}, +{ +pos = (115,0); +ref = brevecomb; +} +); +width = 674; +} +); +unicode = 365; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ucircumflex; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = u; +}, +{ +pos = (83,0); +ref = circumflexcomb; +} +); +width = 585; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = u; +}, +{ +pos = (73,0); +ref = circumflexcomb; +} +); +width = 674; +} +); +unicode = 251; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-1041"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = udieresis; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = u; +}, +{ +pos = (101,0); +ref = dieresiscomb; +} +); +width = 585; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = u; +}, +{ +pos = (82,0); +ref = dieresiscomb; +} +); +width = 674; +} +); +unicode = 252; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ugrave; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = u; +}, +{ +pos = (89,0); +ref = gravecomb; +} +); +width = 585; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = u; +}, +{ +pos = (39,0); +ref = gravecomb; +} +); +width = 674; +} +); +unicode = 249; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = uhungarumlaut; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = u; +}, +{ +pos = (114,0); +ref = hungarumlautcomb; +} +); +width = 585; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = u; +}, +{ +pos = (75,0); +ref = hungarumlautcomb; +} +); +width = 674; +} +); +unicode = 369; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = umacron; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = u; +}, +{ +pos = (97,0); +ref = macroncomb; +} +); +width = 585; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = u; +}, +{ +pos = (100,0); +ref = macroncomb; +} +); +width = 674; +} +); +unicode = 363; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = uogonek; +kernLeft = u; +kernRight = u; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(482,-220,ls), +(495,-220,o), +(504,-211,o), +(504,-198,cs), +(504,-185,ls), +(504,-172,o), +(495,-163,o), +(482,-163,cs), +(477,-163,ls), +(443,-163,o), +(421,-141,o), +(421,-90,cs), +(421,-45,o), +(442,-21,o), +(485,-2,c), +(488,0,l), +(500,6,o), +(504,14,o), +(504,22,cs), +(504,498,ls), +(504,511,o), +(495,520,o), +(482,520,cs), +(465,520,ls), +(452,520,o), +(443,511,o), +(443,498,cs), +(443,219,ls), +(443,112,o), +(381,48,o), +(286,48,cs), +(186,48,o), +(137,106,o), +(137,219,cs), +(137,498,ls), +(137,511,o), +(128,520,o), +(115,520,cs), +(98,520,ls), +(85,520,o), +(76,511,o), +(76,498,cs), +(76,214,ls), +(76,87,o), +(140,-10,o), +(276,-10,cs), +(362,-10,o), +(407,22,o), +(443,69,c), +(443,43,l), +(443,40,o), +(443,38,o), +(443,35,c), +(407,18,o), +(361,-26,o), +(361,-90,cs), +(361,-175,o), +(412,-220,o), +(473,-220,cs) +); +} +); +width = 585; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-220,ls), +(617,-220,o), +(629,-208,o), +(629,-193,cs), +(629,-125,ls), +(629,-110,o), +(617,-98,o), +(602,-98,cs), +(592,-98,ls), +(553,-98,o), +(542,-70,o), +(542,-49,cs), +(542,-29,o), +(552,-2,o), +(586,0,c), +(602,0,ls), +(617,0,o), +(629,12,o), +(629,27,cs), +(629,493,ls), +(629,508,o), +(617,520,o), +(602,520,cs), +(412,520,ls), +(397,520,o), +(385,508,o), +(385,493,cs), +(385,224,ls), +(385,188,o), +(367,169,o), +(335,169,cs), +(303,169,o), +(285,188,o), +(285,224,cs), +(285,493,ls), +(285,508,o), +(273,520,o), +(258,520,cs), +(67,520,ls), +(52,520,o), +(40,508,o), +(40,493,cs), +(40,217,ls), +(40,59,o), +(133,-10,o), +(234,-10,cs), +(305,-10,o), +(367,11,o), +(400,60,c), +(400,27,ls), +(400,14,o), +(409,3,o), +(421,0,c), +(418,-15,o), +(416,-32,o), +(416,-49,cs), +(416,-144,o), +(467,-220,o), +(588,-220,cs) +); +} +); +width = 674; +} +); +unicode = 371; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 213; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 493; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = uring; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = u; +}, +{ +pos = (139,0); +ref = ringcomb; +} +); +width = 585; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = u; +}, +{ +pos = (187,0); +ref = ringcomb; +} +); +width = 674; +} +); +unicode = 367; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = utilde; +kernLeft = u; +kernRight = u; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = u; +}, +{ +pos = (99,0); +ref = tildecomb; +} +); +width = 585; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = u; +}, +{ +pos = (83,0); +ref = tildecomb; +} +); +width = 674; +} +); +unicode = 361; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = v; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (268,0); +}, +{ +name = top; +pos = (268,520); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,30); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,0,ls), +(297,0,o), +(308,10,o), +(314,25,cs), +(498,489,ls), +(499,492,o), +(500,498,o), +(500,500,cs), +(500,511,o), +(491,520,o), +(480,520,cs), +(459,520,ls), +(446,520,o), +(439,510,o), +(437,505,cs), +(268,73,l), +(99,505,ls), +(97,510,o), +(90,520,o), +(77,520,cs), +(56,520,ls), +(45,520,o), +(36,511,o), +(36,500,cs), +(36,498,o), +(37,492,o), +(38,489,cs), +(222,25,ls), +(228,10,o), +(239,0,o), +(260,0,c) +); +} +); +width = 536; +}, +{ +anchors = ( +{ +name = bottom; +pos = (315,0); +}, +{ +name = top; +pos = (315,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(395,0,ls), +(415,0,o), +(422,13,o), +(428,25,c), +(620,489,ls), +(621,492,o), +(621,494,o), +(621,496,cs), +(621,509,o), +(610,520,o), +(597,520,cs), +(428,520,ls), +(408,520,o), +(399,507,o), +(395,496,cs), +(315,263,l), +(235,496,ls), +(231,507,o), +(222,520,o), +(202,520,cs), +(33,520,ls), +(20,520,o), +(9,509,o), +(9,496,cs), +(9,494,o), +(9,492,o), +(10,489,cs), +(202,25,l), +(208,13,o), +(215,0,o), +(235,0,cs) +); +} +); +width = 630; +} +); +unicode = 118; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 267; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = w; +kernLeft = w; +kernRight = w; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (393,0); +}, +{ +name = top; +pos = (393,520); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,25); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(233,0,l), +(251,0,o), +(262,8,o), +(267,25,c), +(393,419,l), +(519,25,l), +(524,8,o), +(535,0,o), +(553,0,c), +(570,0,l), +(588,0,o), +(596,8,o), +(602,25,c), +(743,489,l), +(744,492,o), +(745,498,o), +(745,500,cs), +(745,511,o), +(736,520,o), +(725,520,c), +(706,520,l), +(693,520,o), +(685,510,o), +(684,505,c), +(561,89,l), +(430,500,l), +(428,508,o), +(420,520,o), +(403,520,c), +(383,520,l), +(366,520,o), +(358,508,o), +(356,500,c), +(225,89,l), +(102,505,l), +(101,510,o), +(93,520,o), +(80,520,c), +(61,520,l), +(50,520,o), +(41,511,o), +(41,500,cs), +(41,498,o), +(42,492,o), +(43,489,c), +(184,25,l), +(190,8,o), +(198,0,o), +(216,0,c) +); +} +); +width = 786; +}, +{ +anchors = ( +{ +name = bottom; +pos = (435,0); +}, +{ +name = top; +pos = (435,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,0,ls), +(350,0,o), +(359,13,o), +(363,25,cs), +(435,227,l), +(506,25,ls), +(510,13,o), +(519,0,o), +(539,0,cs), +(673,0,ls), +(693,0,o), +(702,13,o), +(706,25,cs), +(852,488,ls), +(853,492,o), +(853,494,o), +(853,496,cs), +(853,509,o), +(842,520,o), +(829,520,cs), +(675,520,ls), +(655,520,o), +(644,507,o), +(641,496,cs), +(580,288,l), +(515,496,ls), +(512,507,o), +(501,520,o), +(481,520,cs), +(388,520,ls), +(368,520,o), +(357,507,o), +(354,496,cs), +(289,288,l), +(228,496,ls), +(225,507,o), +(214,520,o), +(194,520,cs), +(40,520,ls), +(27,520,o), +(16,509,o), +(16,496,cs), +(16,494,o), +(16,492,o), +(17,488,cs), +(163,25,ls), +(167,13,o), +(176,0,o), +(196,0,cs) +); +} +); +width = 869; +} +); +unicode = 119; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 45; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 737; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = wacute; +kernLeft = w; +kernRight = w; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = w; +}, +{ +pos = (293,0); +ref = acutecomb; +} +); +width = 786; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = w; +}, +{ +pos = (284,0); +ref = acutecomb; +} +); +width = 869; +} +); +unicode = 7811; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 392; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = wcircumflex; +kernLeft = w; +kernRight = w; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = w; +}, +{ +pos = (187,0); +ref = circumflexcomb; +} +); +width = 786; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = w; +}, +{ +pos = (171,0); +ref = circumflexcomb; +} +); +width = 869; +} +); +unicode = 373; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 575; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 392; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = wdieresis; +kernLeft = w; +kernRight = w; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = w; +}, +{ +pos = (205,0); +ref = dieresiscomb; +} +); +width = 786; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = w; +}, +{ +pos = (180,0); +ref = dieresiscomb; +} +); +width = 869; +} +); +unicode = 7813; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 392; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = wgrave; +kernLeft = w; +kernRight = w; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = w; +}, +{ +pos = (193,0); +ref = gravecomb; +} +); +width = 786; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = w; +}, +{ +pos = (137,0); +ref = gravecomb; +} +); +width = 869; +} +); +unicode = 7809; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 392; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = x; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (259,0); +}, +{ +name = top; +pos = (259,520); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,5); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(75,0,ls), +(88,0,o), +(94,8,o), +(100,15,cs), +(258,217,l), +(416,15,ls), +(421,8,o), +(428,0,o), +(441,0,cs), +(462,0,ls), +(473,0,o), +(482,9,o), +(482,20,cs), +(482,25,o), +(481,31,o), +(474,40,cs), +(298,263,l), +(467,480,ls), +(474,489,o), +(475,495,o), +(475,500,cs), +(475,511,o), +(466,520,o), +(455,520,cs), +(435,520,ls), +(422,520,o), +(416,511,o), +(410,504,cs), +(260,312,l), +(110,505,ls), +(104,512,o), +(98,520,o), +(85,520,cs), +(64,520,ls), +(53,520,o), +(44,511,o), +(44,500,cs), +(44,495,o), +(45,489,o), +(52,480,cs), +(219,266,l), +(43,40,ls), +(36,31,o), +(35,25,o), +(35,20,cs), +(35,9,o), +(44,0,o), +(55,0,cs) +); +} +); +width = 518; +}, +{ +anchors = ( +{ +name = bottom; +pos = (315,0); +}, +{ +name = top; +pos = (315,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,0,ls), +(233,0,o), +(241,11,o), +(245,17,cs), +(314,114,l), +(380,17,ls), +(385,10,o), +(392,0,o), +(410,0,cs), +(602,0,ls), +(615,0,o), +(626,11,o), +(626,24,cs), +(626,28,o), +(625,33,o), +(622,37,cs), +(457,269,l), +(604,483,ls), +(606,486,o), +(608,490,o), +(608,497,cs), +(608,509,o), +(597,520,o), +(584,520,cs), +(409,520,ls), +(389,520,o), +(381,507,o), +(377,501,cs), +(319,412,l), +(261,501,ls), +(257,507,o), +(249,520,o), +(229,520,cs), +(46,520,ls), +(33,520,o), +(22,509,o), +(22,496,cs), +(22,491,o), +(24,486,o), +(26,483,cs), +(170,268,l), +(8,37,ls), +(5,33,o), +(4,27,o), +(4,24,cs), +(4,11,o), +(15,0,o), +(28,0,cs) +); +} +); +width = 630; +} +); +unicode = 120; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 255; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = y; +kernLeft = y; +kernRight = y; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (266,0); +}, +{ +name = top; +pos = (262,520); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,3); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(189,-190,ls), +(202,-190,o), +(208,-183,o), +(212,-175,cs), +(496,480,ls), +(500,490,o), +(502,495,o), +(502,500,cs), +(502,511,o), +(493,520,o), +(482,520,cs), +(462,520,ls), +(449,520,o), +(443,513,o), +(439,505,cs), +(267,109,l), +(99,505,ls), +(96,513,o), +(89,520,o), +(76,520,cs), +(55,520,ls), +(44,520,o), +(35,511,o), +(35,500,cs), +(35,495,o), +(37,490,o), +(41,480,cs), +(232,30,l), +(155,-150,ls), +(151,-160,o), +(149,-165,o), +(149,-170,cs), +(149,-181,o), +(158,-190,o), +(169,-190,cs) +); +} +); +width = 532; +}, +{ +anchors = ( +{ +name = bottom; +pos = (318,0); +}, +{ +name = top; +pos = (323,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(312,-190,ls), +(332,-190,o), +(342,-178,o), +(347,-166,cs), +(629,489,l), +(630,493,o), +(630,496,o), +(630,499,cs), +(630,510,o), +(619,520,o), +(607,520,cs), +(440,520,ls), +(420,520,o), +(411,508,o), +(406,496,cs), +(321,268,l), +(239,496,ls), +(235,507,o), +(227,520,o), +(207,520,cs), +(38,520,ls), +(25,520,o), +(15,509,o), +(13,496,cs), +(13,494,o), +(13,492,o), +(14,489,cs), +(207,33,l), +(127,-159,ls), +(125,-163,o), +(126,-166,o), +(126,-169,cs), +(126,-181,o), +(136,-190,o), +(148,-190,cs) +); +} +); +width = 636; +} +); +unicode = 121; +}, +{ +color = 10; +glyphname = yacute; +kernLeft = y; +kernRight = y; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = y; +}, +{ +pos = (162,0); +ref = acutecomb; +} +); +width = 532; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = y; +}, +{ +pos = (172,0); +ref = acutecomb; +} +); +width = 636; +} +); +unicode = 253; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 267; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ycircumflex; +kernLeft = y; +kernRight = y; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = y; +}, +{ +pos = (56,0); +ref = circumflexcomb; +} +); +width = 532; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = y; +}, +{ +pos = (59,0); +ref = circumflexcomb; +} +); +width = 636; +} +); +unicode = 375; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 575; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 267; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ydieresis; +kernLeft = y; +kernRight = y; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = y; +}, +{ +pos = (74,0); +ref = dieresiscomb; +} +); +width = 532; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = y; +}, +{ +pos = (68,0); +ref = dieresiscomb; +} +); +width = 636; +} +); +unicode = 255; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 267; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ygrave; +kernLeft = y; +kernRight = y; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = y; +}, +{ +pos = (62,0); +ref = gravecomb; +} +); +width = 532; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = y; +}, +{ +pos = (25,0); +ref = gravecomb; +} +); +width = 636; +} +); +unicode = 7923; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 267; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = z; +kernLeft = z; +kernRight = z; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (245,0); +}, +{ +name = center; +pos = (245,260); +}, +{ +name = top; +pos = (245,520); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,8); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(430,0,ls), +(443,0,o), +(452,9,o), +(452,22,cs), +(452,36,ls), +(452,49,o), +(443,58,o), +(430,58,cs), +(126,58,l), +(418,450,ls), +(425,460,o), +(432,470,o), +(432,481,cs), +(432,498,ls), +(432,511,o), +(423,520,o), +(410,520,cs), +(74,520,ls), +(61,520,o), +(52,511,o), +(52,498,cs), +(52,484,ls), +(52,471,o), +(61,462,o), +(74,462,cs), +(350,462,l), +(56,70,ls), +(49,60,o), +(42,50,o), +(42,39,cs), +(42,22,ls), +(42,9,o), +(51,0,o), +(64,0,cs) +); +} +); +width = 490; +}, +{ +anchors = ( +{ +name = bottom; +pos = (295,0); +}, +{ +name = center; +pos = (295,260); +}, +{ +name = top; +pos = (297,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,0,ls), +(548,0,o), +(560,12,o), +(560,27,cs), +(560,145,ls), +(560,160,o), +(548,172,o), +(533,172,cs), +(335,172,l), +(525,338,ls), +(534,346,o), +(539,355,o), +(539,367,cs), +(539,493,ls), +(539,508,o), +(527,520,o), +(512,520,cs), +(70,520,ls), +(55,520,o), +(43,508,o), +(43,493,cs), +(43,375,ls), +(43,360,o), +(55,348,o), +(70,348,cs), +(251,348,l), +(52,177,ls), +(43,169,o), +(36,158,o), +(36,142,cs), +(36,27,ls), +(36,12,o), +(48,0,o), +(63,0,cs) +); +} +); +width = 590; +} +); +unicode = 122; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 36; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 480; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = zacute; +kernLeft = z; +kernRight = z; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = z; +}, +{ +pos = (145,0); +ref = acutecomb; +} +); +width = 490; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = z; +}, +{ +pos = (146,0); +ref = acutecomb; +} +); +width = 590; +} +); +unicode = 378; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = zcaron; +kernLeft = z; +kernRight = z; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = z; +}, +{ +pos = (39,0); +ref = caroncomb; +} +); +width = 490; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = z; +}, +{ +pos = (33,0); +ref = caroncomb; +} +); +width = 590; +} +); +unicode = 382; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = zdotaccent; +kernLeft = z; +kernRight = z; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = z; +}, +{ +pos = (128,0); +ref = dotaccentcomb; +} +); +width = 490; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = z; +}, +{ +pos = (158,0); +ref = dotaccentcomb; +} +); +width = 590; +} +); +unicode = 380; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = f_f; +kernLeft = f; +kernRight = f; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (321,0); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,18); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,23); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,0,l), +(182,0,o), +(191,9,o), +(191,22,c), +(191,462,l), +(412,462,l), +(412,22,l), +(412,9,o), +(421,0,o), +(434,0,c), +(451,0,l), +(464,0,o), +(473,9,o), +(473,22,c), +(473,462,l), +(605,462,l), +(618,462,o), +(627,471,o), +(627,484,c), +(627,498,l), +(627,511,o), +(618,520,o), +(605,520,c), +(473,520,l), +(473,572,l), +(473,643,o), +(492,682,o), +(563,682,c), +(615,682,l), +(628,682,o), +(637,691,o), +(637,704,c), +(637,718,l), +(637,731,o), +(628,740,o), +(615,740,c), +(563,740,l), +(441,740,o), +(412,666,o), +(412,577,c), +(412,520,l), +(191,520,l), +(191,572,l), +(191,643,o), +(210,682,o), +(281,682,c), +(333,682,l), +(346,682,o), +(355,691,o), +(355,704,c), +(355,718,l), +(355,731,o), +(346,740,o), +(333,740,c), +(281,740,l), +(159,740,o), +(130,666,o), +(130,577,c), +(130,520,l), +(41,520,l), +(28,520,o), +(19,511,o), +(19,498,c), +(19,484,l), +(19,471,o), +(28,462,o), +(41,462,c), +(130,462,l), +(130,22,l), +(130,9,o), +(139,0,o), +(152,0,c) +); +} +); +width = 642; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (452,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,0,l), +(328,0,o), +(340,12,o), +(340,27,c), +(340,345,l), +(523,345,l), +(523,27,l), +(523,12,o), +(535,0,o), +(550,0,c), +(725,0,l), +(740,0,o), +(752,12,o), +(752,27,c), +(752,345,l), +(866,345,l), +(881,345,o), +(893,357,o), +(893,372,c), +(893,493,l), +(893,508,o), +(881,520,o), +(866,520,c), +(752,520,l), +(752,532,l), +(752,553,o), +(765,565,o), +(795,565,c), +(876,565,l), +(891,565,o), +(903,577,o), +(903,592,c), +(903,713,l), +(903,728,o), +(891,740,o), +(876,740,c), +(783,740,l), +(638,740,o), +(523,701,o), +(523,537,c), +(523,520,l), +(340,520,l), +(340,532,l), +(340,553,o), +(353,565,o), +(383,565,c), +(464,565,l), +(479,565,o), +(491,577,o), +(491,592,c), +(491,713,l), +(491,728,o), +(479,740,o), +(464,740,c), +(371,740,l), +(226,740,o), +(111,701,o), +(111,537,c), +(111,520,l), +(42,520,l), +(27,520,o), +(15,508,o), +(15,493,c), +(15,372,l), +(15,357,o), +(27,345,o), +(42,345,c), +(111,345,l), +(111,27,l), +(111,12,o), +(123,0,o), +(138,0,c) +); +} +); +width = 904; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 345; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 9; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 740; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 297; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 371; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = f_f_i; +kernLeft = f; +kernRight = i; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (259,0); +}, +{ +name = caret_2; +pos = (518,0); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,24); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,0,ls), +(182,0,o), +(191,9,o), +(191,22,cs), +(191,462,l), +(412,462,l), +(412,22,ls), +(412,9,o), +(421,0,o), +(434,0,cs), +(451,0,ls), +(464,0,o), +(473,9,o), +(473,22,cs), +(473,462,l), +(635,462,l), +(635,22,ls), +(635,9,o), +(644,0,o), +(657,0,cs), +(674,0,ls), +(687,0,o), +(696,9,o), +(696,22,cs), +(696,498,ls), +(696,511,o), +(687,520,o), +(674,520,cs), +(473,520,l), +(473,572,ls), +(473,643,o), +(492,682,o), +(563,682,cs), +(674,682,ls), +(687,682,o), +(696,691,o), +(696,704,cs), +(696,718,ls), +(696,731,o), +(687,740,o), +(674,740,cs), +(563,740,ls), +(441,740,o), +(412,666,o), +(412,577,cs), +(412,520,l), +(191,520,l), +(191,572,ls), +(191,643,o), +(210,682,o), +(281,682,cs), +(333,682,ls), +(346,682,o), +(355,691,o), +(355,704,cs), +(355,718,ls), +(355,731,o), +(346,740,o), +(333,740,cs), +(281,740,ls), +(159,740,o), +(130,666,o), +(130,577,cs), +(130,520,l), +(41,520,ls), +(28,520,o), +(19,511,o), +(19,498,cs), +(19,484,ls), +(19,471,o), +(28,462,o), +(41,462,cs), +(130,462,l), +(130,22,ls), +(130,9,o), +(139,0,o), +(152,0,cs) +); +} +); +width = 777; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (399,0); +}, +{ +name = caret_2; +pos = (798,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,0,l), +(328,0,o), +(340,12,o), +(340,27,c), +(340,345,l), +(523,345,l), +(523,27,l), +(523,12,o), +(535,0,o), +(550,0,c), +(725,0,l), +(740,0,o), +(752,12,o), +(752,27,c), +(752,345,l), +(923,345,l), +(923,27,l), +(923,12,o), +(935,0,o), +(950,0,c), +(1125,0,l), +(1140,0,o), +(1152,12,o), +(1152,27,c), +(1152,493,l), +(1152,508,o), +(1140,520,o), +(1125,520,c), +(752,520,l), +(752,532,l), +(752,553,o), +(765,565,o), +(795,565,c), +(1125,565,l), +(1140,565,o), +(1152,577,o), +(1152,592,c), +(1152,713,l), +(1152,728,o), +(1140,740,o), +(1125,740,c), +(783,740,l), +(638,740,o), +(523,701,o), +(523,537,c), +(523,520,l), +(340,520,l), +(340,532,l), +(340,553,o), +(353,565,o), +(383,565,c), +(464,565,l), +(479,565,o), +(491,577,o), +(491,592,c), +(491,713,l), +(491,728,o), +(479,740,o), +(464,740,c), +(371,740,l), +(226,740,o), +(111,701,o), +(111,537,c), +(111,520,l), +(42,520,l), +(27,520,o), +(15,508,o), +(15,493,c), +(15,372,l), +(15,357,o), +(27,345,o), +(42,345,c), +(111,345,l), +(111,27,l), +(111,12,o), +(123,0,o), +(138,0,c) +); +} +); +width = 1197; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 712; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = f_f_l; +kernLeft = f; +kernRight = l; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (279,0); +}, +{ +name = caret_2; +pos = (558,0); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,0,ls), +(182,0,o), +(191,9,o), +(191,22,cs), +(191,462,l), +(412,462,l), +(412,22,ls), +(412,9,o), +(421,0,o), +(434,0,cs), +(451,0,ls), +(464,0,o), +(473,9,o), +(473,22,cs), +(473,462,l), +(694,462,l), +(694,22,ls), +(694,9,o), +(703,0,o), +(716,0,cs), +(733,0,ls), +(746,0,o), +(755,9,o), +(755,22,cs), +(755,718,ls), +(755,731,o), +(746,740,o), +(733,740,cs), +(716,740,ls), +(703,740,o), +(694,731,o), +(694,718,cs), +(694,520,l), +(473,520,l), +(473,572,ls), +(473,643,o), +(492,682,o), +(563,682,cs), +(615,682,ls), +(628,682,o), +(637,691,o), +(637,704,cs), +(637,718,ls), +(637,731,o), +(628,740,o), +(615,740,cs), +(563,740,ls), +(441,740,o), +(412,666,o), +(412,577,cs), +(412,520,l), +(191,520,l), +(191,572,ls), +(191,643,o), +(210,682,o), +(281,682,cs), +(333,682,ls), +(346,682,o), +(355,691,o), +(355,704,cs), +(355,718,ls), +(355,731,o), +(346,740,o), +(333,740,cs), +(281,740,ls), +(159,740,o), +(130,666,o), +(130,577,cs), +(130,520,l), +(41,520,ls), +(28,520,o), +(19,511,o), +(19,498,cs), +(19,484,ls), +(19,471,o), +(28,462,o), +(41,462,cs), +(130,462,l), +(130,22,ls), +(130,9,o), +(139,0,o), +(152,0,cs) +); +} +); +width = 837; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (403,0); +}, +{ +name = caret_2; +pos = (806,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,0,l), +(328,0,o), +(340,12,o), +(340,27,c), +(340,345,l), +(523,345,l), +(523,27,l), +(523,12,o), +(535,0,o), +(550,0,c), +(725,0,l), +(740,0,o), +(752,12,o), +(752,27,c), +(752,345,l), +(935,345,l), +(935,27,l), +(935,12,o), +(947,0,o), +(962,0,c), +(1137,0,l), +(1152,0,o), +(1164,12,o), +(1164,27,c), +(1164,713,l), +(1164,728,o), +(1152,740,o), +(1137,740,c), +(962,740,l), +(947,740,o), +(935,728,o), +(935,713,c), +(935,520,l), +(752,520,l), +(752,532,l), +(752,553,o), +(765,565,o), +(795,565,c), +(856,565,l), +(871,565,o), +(883,577,o), +(883,592,c), +(883,713,l), +(883,728,o), +(871,740,o), +(856,740,c), +(783,740,l), +(638,740,o), +(523,701,o), +(523,537,c), +(523,520,l), +(340,520,l), +(340,532,l), +(340,553,o), +(353,565,o), +(383,565,c), +(464,565,l), +(479,565,o), +(491,577,o), +(491,592,c), +(491,713,l), +(491,728,o), +(479,740,o), +(464,740,c), +(371,740,l), +(226,740,o), +(111,701,o), +(111,537,c), +(111,520,l), +(42,520,l), +(27,520,o), +(15,508,o), +(15,493,c), +(15,372,l), +(15,357,o), +(27,345,o), +(42,345,c), +(111,345,l), +(111,27,l), +(111,12,o), +(123,0,o), +(138,0,c) +); +} +); +width = 1209; +} +); +}, +{ +color = 6; +glyphname = fi; +kernLeft = f; +kernRight = i; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (247.5,0); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,14); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,0,ls), +(182,0,o), +(191,9,o), +(191,22,cs), +(191,462,l), +(353,462,l), +(353,22,ls), +(353,9,o), +(362,0,o), +(375,0,cs), +(392,0,ls), +(405,0,o), +(414,9,o), +(414,22,cs), +(414,498,ls), +(414,511,o), +(405,520,o), +(392,520,cs), +(191,520,l), +(191,572,ls), +(191,643,o), +(210,682,o), +(281,682,cs), +(392,682,ls), +(405,682,o), +(414,691,o), +(414,704,cs), +(414,718,ls), +(414,731,o), +(405,740,o), +(392,740,cs), +(281,740,ls), +(159,740,o), +(130,666,o), +(130,577,cs), +(130,520,l), +(41,520,ls), +(28,520,o), +(19,511,o), +(19,498,cs), +(19,484,ls), +(19,471,o), +(28,462,o), +(41,462,cs), +(130,462,l), +(130,22,ls), +(130,9,o), +(139,0,o), +(152,0,cs) +); +} +); +width = 495; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (392.5,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,0,ls), +(328,0,o), +(340,12,o), +(340,27,cs), +(340,345,l), +(511,345,l), +(511,27,ls), +(511,12,o), +(523,0,o), +(538,0,cs), +(713,0,ls), +(728,0,o), +(740,12,o), +(740,27,cs), +(740,493,ls), +(740,508,o), +(728,520,o), +(713,520,cs), +(340,520,l), +(340,532,ls), +(340,553,o), +(353,565,o), +(383,565,cs), +(713,565,ls), +(728,565,o), +(740,577,o), +(740,592,cs), +(740,713,ls), +(740,728,o), +(728,740,o), +(713,740,cs), +(371,740,ls), +(226,740,o), +(111,701,o), +(111,537,cs), +(111,520,l), +(42,520,ls), +(27,520,o), +(15,508,o), +(15,493,cs), +(15,372,ls), +(15,357,o), +(27,345,o), +(42,345,cs), +(111,345,l), +(111,27,ls), +(111,12,o), +(123,0,o), +(138,0,cs) +); +} +); +width = 785; +} +); +unicode = 64257; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 430; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 35; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = fl; +kernLeft = f; +kernRight = l; +layers = ( +{ +anchors = ( +{ +name = caret_1; +pos = (277.5,0); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,49); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(169,0,ls), +(182,0,o), +(191,9,o), +(191,22,cs), +(191,462,l), +(412,462,l), +(412,22,ls), +(412,9,o), +(421,0,o), +(434,0,cs), +(451,0,ls), +(464,0,o), +(473,9,o), +(473,22,cs), +(473,718,ls), +(473,731,o), +(464,740,o), +(451,740,cs), +(434,740,ls), +(421,740,o), +(412,731,o), +(412,718,cs), +(412,520,l), +(191,520,l), +(191,572,ls), +(191,643,o), +(210,682,o), +(281,682,cs), +(333,682,ls), +(346,682,o), +(355,691,o), +(355,704,cs), +(355,718,ls), +(355,731,o), +(346,740,o), +(333,740,cs), +(281,740,ls), +(159,740,o), +(130,666,o), +(130,577,cs), +(130,520,l), +(41,520,ls), +(28,520,o), +(19,511,o), +(19,498,cs), +(19,484,ls), +(19,471,o), +(28,462,o), +(41,462,cs), +(130,462,l), +(130,22,ls), +(130,9,o), +(139,0,o), +(152,0,cs) +); +} +); +width = 555; +}, +{ +anchors = ( +{ +name = caret_1; +pos = (398.5,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,0,ls), +(328,0,o), +(340,12,o), +(340,27,cs), +(340,345,l), +(523,345,l), +(523,27,ls), +(523,12,o), +(535,0,o), +(550,0,cs), +(725,0,ls), +(740,0,o), +(752,12,o), +(752,27,cs), +(752,713,ls), +(752,728,o), +(740,740,o), +(725,740,cs), +(550,740,ls), +(535,740,o), +(523,728,o), +(523,713,cs), +(523,520,l), +(340,520,l), +(340,532,ls), +(340,553,o), +(353,565,o), +(383,565,cs), +(444,565,ls), +(459,565,o), +(471,577,o), +(471,592,cs), +(471,713,ls), +(471,728,o), +(459,740,o), +(444,740,cs), +(371,740,ls), +(226,740,o), +(111,701,o), +(111,537,cs), +(111,520,l), +(42,520,ls), +(27,520,o), +(15,508,o), +(15,493,cs), +(15,372,ls), +(15,357,o), +(27,345,o), +(42,345,cs), +(111,345,l), +(111,27,ls), +(111,12,o), +(123,0,o), +(138,0,cs) +); +} +); +width = 797; +} +); +unicode = 64258; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 35; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = ordfeminine; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,24); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(187,429,o), +(223,444,o), +(234,463,c), +(234,456,ls), +(234,443,o), +(243,434,o), +(256,434,c), +(273,434,ls), +(286,434,o), +(295,443,o), +(295,456,cs), +(295,598,ls), +(295,660,o), +(253,705,o), +(187,705,cs), +(122,705,o), +(77,664,o), +(75,644,cs), +(74,631,o), +(84,627,o), +(97,627,cs), +(114,627,ls), +(136,627,o), +(140,647,o), +(184,647,cs), +(232,647,o), +(234,617,o), +(234,611,c), +(171,602,l), +(102,592,o), +(58,558,o), +(58,505,cs), +(58,463,o), +(93,429,o), +(151,429,cs) +); +}, +{ +closed = 1; +nodes = ( +(138,483,o), +(120,492,o), +(120,507,cs), +(120,527,o), +(131,544,o), +(187,552,cs), +(234,559,l), +(234,519,o), +(214,483,o), +(160,483,cs) +); +} +); +width = 367; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,429,o), +(180,441,o), +(194,462,c), +(194,448,ls), +(194,441,o), +(201,434,o), +(209,434,cs), +(298,434,ls), +(306,434,o), +(312,441,o), +(312,448,cs), +(312,594,ls), +(312,670,o), +(268,705,o), +(175,705,cs), +(79,705,o), +(43,655,o), +(41,629,cs), +(40,622,o), +(45,617,o), +(51,617,cs), +(138,617,ls), +(155,617,o), +(156,633,o), +(173,633,cs), +(188,633,o), +(189,626,o), +(189,607,c), +(135,598,ls), +(66,586,o), +(22,560,o), +(22,510,cs), +(22,464,o), +(63,429,o), +(122,429,cs) +); +}, +{ +closed = 1; +nodes = ( +(145,505,o), +(137,510,o), +(137,518,cs), +(137,525,o), +(143,532,o), +(161,537,cs), +(189,544,l), +(189,516,o), +(177,505,o), +(157,505,cs) +); +} +); +width = 351; +} +); +unicode = 170; +}, +{ +color = 6; +glyphname = ordmasculine; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,11); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,429,o), +(297,465,o), +(301,540,cs), +(302,550,o), +(302,584,o), +(301,594,cs), +(297,669,o), +(244,705,o), +(181,705,cs), +(118,705,o), +(65,669,o), +(61,594,cs), +(60,584,o), +(60,550,o), +(61,540,cs), +(65,465,o), +(112,429,o), +(181,429,cs) +); +}, +{ +closed = 1; +nodes = ( +(144,487,o), +(124,507,o), +(122,545,cs), +(121,555,o), +(121,579,o), +(122,589,cs), +(124,624,o), +(144,647,o), +(181,647,cs), +(218,647,o), +(238,624,o), +(240,589,cs), +(241,579,o), +(241,555,o), +(240,545,cs), +(238,507,o), +(218,487,o), +(181,487,cs) +); +} +); +width = 361; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(274,429,o), +(320,470,o), +(324,540,cs), +(325,550,o), +(325,584,o), +(324,594,cs), +(320,664,o), +(268,705,o), +(175,705,cs), +(82,705,o), +(30,664,o), +(26,594,cs), +(25,584,o), +(25,550,o), +(26,540,cs), +(30,470,o), +(76,429,o), +(175,429,cs) +); +}, +{ +closed = 1; +nodes = ( +(158,511,o), +(154,517,o), +(152,545,cs), +(151,555,o), +(151,579,o), +(152,589,cs), +(153,614,o), +(158,623,o), +(175,623,cs), +(192,623,o), +(197,614,o), +(198,589,cs), +(199,579,o), +(199,555,o), +(198,545,cs), +(196,517,o), +(192,511,o), +(175,511,cs) +); +} +); +width = 350; +} +); +unicode = 186; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 589; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 545; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 429; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 134; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "A-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = A; +} +); +width = 650; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = A; +} +); +width = 755; +} +); +unicode = 1040; +}, +{ +color = 6; +glyphname = "Be-cy"; +kernLeft = afii10026; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(380,0,ls), +(526,0,o), +(590,115,o), +(590,204,cs), +(590,324,o), +(514,403,o), +(380,403,cs), +(157,403,l), +(157,640,l), +(532,640,ls), +(546,640,o), +(555,649,o), +(555,662,cs), +(555,677,ls), +(555,691,o), +(546,700,o), +(532,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,343,l), +(370,343,ls), +(477,343,o), +(527,288,o), +(527,207,cs), +(527,127,o), +(469,60,o), +(370,60,cs), +(157,60,l) +); +} +); +width = 632; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(395,0,ls), +(575,0,o), +(681,85,o), +(681,226,cs), +(681,365,o), +(570,447,o), +(395,447,cs), +(305,447,l), +(305,495,l), +(600,495,ls), +(615,495,o), +(627,507,o), +(627,522,cs), +(627,673,ls), +(627,688,o), +(615,700,o), +(600,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(305,280,l), +(375,280,ls), +(403,280,o), +(421,253,o), +(421,226,cs), +(421,199,o), +(406,172,o), +(375,172,cs), +(305,172,l) +); +} +); +width = 672; +} +); +unicode = 1041; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 280; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 447; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 516; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Ve-cy"; +kernLeft = afii10026; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = B; +} +); +width = 653; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = B; +} +); +width = 734; +} +); +unicode = 1042; +}, +{ +color = 6; +glyphname = "Ge-cy"; +kernLeft = afii10026; +kernRight = afii10020; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (134,0); +}, +{ +name = top; +pos = (314,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,640,l), +(482,640,ls), +(496,640,o), +(505,649,o), +(505,662,cs), +(505,677,ls), +(505,691,o), +(496,700,o), +(482,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +width = 505; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (174,0); +}, +{ +name = top; +pos = (350,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,495,l), +(552,495,ls), +(567,495,o), +(579,507,o), +(579,522,cs), +(579,673,ls), +(579,688,o), +(567,700,o), +(552,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 599; +} +); +unicode = 1043; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 516; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Gje-cy"; +kernLeft = afii10026; +kernRight = afii10020; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Ge-cy"; +}, +{ +pos = (186,0); +ref = acutecomb.case; +} +); +width = 505; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Ge-cy"; +}, +{ +pos = (161,0); +ref = acutecomb.case; +} +); +width = 599; +} +); +metricRight = "Ge-cy"; +unicode = 1027; +}, +{ +color = 6; +glyphname = "Gheupturn-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(464,840,ls), +(451,840,o), +(442,831,o), +(442,818,cs), +(442,700,l), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs), +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,640,l), +(482,640,ls), +(496,640,o), +(505,649,o), +(505,662,cs), +(505,818,ls), +(505,831,o), +(496,840,o), +(482,840,cs) +); +} +); +width = 505; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(356,840,ls), +(341,840,o), +(329,828,o), +(329,813,cs), +(329,700,l), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs), +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,495,l), +(552,495,ls), +(567,495,o), +(579,507,o), +(579,522,cs), +(579,813,ls), +(579,828,o), +(567,840,o), +(552,840,cs) +); +} +); +width = 599; +} +); +metricLeft = "En-cy"; +metricRight = "Ge-cy"; +unicode = 1168; +}, +{ +color = 10; +glyphname = "Gedescender-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Ge-cy"; +}, +{ +pos = (94,0); +ref = "descender-cy.case"; +} +); +width = 505; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Ge-cy"; +}, +{ +pos = (55,0); +ref = "descender-cy.case"; +} +); +width = 599; +} +); +unicode = 1270; +}, +{ +color = 6; +glyphname = "Ghestroke-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,640,l), +(482,640,ls), +(496,640,o), +(505,649,o), +(505,662,cs), +(505,677,ls), +(505,691,o), +(496,700,o), +(482,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(312,321,ls), +(325,321,o), +(334,330,o), +(334,343,cs), +(334,357,ls), +(334,370,o), +(325,379,o), +(312,379,cs), +(37,379,ls), +(24,379,o), +(15,370,o), +(15,357,cs), +(15,343,ls), +(15,330,o), +(24,321,o), +(37,321,cs) +); +} +); +width = 525; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(268,0,ls), +(283,0,o), +(295,12,o), +(295,27,cs), +(295,495,l), +(552,495,ls), +(567,495,o), +(579,507,o), +(579,522,cs), +(579,673,ls), +(579,688,o), +(567,700,o), +(552,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(385,269,ls), +(400,269,o), +(412,281,o), +(412,296,cs), +(412,364,ls), +(412,379,o), +(400,391,o), +(385,391,cs), +(10,391,ls), +(-5,391,o), +(-17,379,o), +(-17,364,cs), +(-17,296,ls), +(-17,281,o), +(-5,269,o), +(10,269,cs) +); +} +); +width = 599; +} +); +unicode = 1170; +}, +{ +color = 6; +glyphname = "Ghemiddlehook-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,640,l), +(482,640,ls), +(496,640,o), +(505,649,o), +(505,662,cs), +(505,677,ls), +(505,691,o), +(496,700,o), +(482,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,252,l), +(157,371,o), +(263,393,o), +(335,393,cs), +(443,393,o), +(490,346,o), +(490,246,cs), +(490,143,ls), +(490,55,o), +(454,-15,o), +(314,-15,cs), +(310,-15,ls), +(297,-15,o), +(288,-24,o), +(288,-37,cs), +(288,-53,ls), +(288,-66,o), +(297,-75,o), +(310,-75,cs), +(314,-75,ls), +(487,-75,o), +(553,21,o), +(553,143,cs), +(553,251,ls), +(553,381,o), +(481,453,o), +(343,453,cs), +(253,453,o), +(188,427,o), +(152,376,c) +); +} +); +width = 593; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,495,l), +(552,495,ls), +(567,495,o), +(579,507,o), +(579,522,cs), +(579,673,ls), +(579,688,o), +(567,700,o), +(552,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(305,149,l), +(305,179,o), +(325,189,o), +(371,189,cs), +(418,189,o), +(438,172,o), +(438,132,cs), +(438,129,ls), +(438,105,o), +(424,90,o), +(381,90,cs), +(371,90,ls), +(356,90,o), +(344,78,o), +(344,63,cs), +(344,-63,ls), +(344,-78,o), +(356,-90,o), +(371,-90,cs), +(381,-90,ls), +(570,-90,o), +(688,-27,o), +(688,128,cs), +(688,153,ls), +(688,317,o), +(609,397,o), +(435,397,cs), +(378,397,o), +(327,382,o), +(294,362,c) +); +} +); +width = 718; +} +); +metricLeft = "En-cy"; +metricRight = "Dje-cy"; +unicode = 1172; +}, +{ +color = 6; +glyphname = "De-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(60,-139,ls), +(74,-139,o), +(83,-130,o), +(83,-117,cs), +(83,0,l), +(578,0,l), +(578,-117,ls), +(578,-130,o), +(587,-139,o), +(600,-139,cs), +(618,-139,ls), +(632,-139,o), +(641,-130,o), +(641,-117,cs), +(641,38,ls), +(641,51,o), +(632,60,o), +(618,60,cs), +(568,60,l), +(568,677,ls), +(568,691,o), +(559,700,o), +(545,700,cs), +(189,700,ls), +(176,700,o), +(167,691,o), +(167,678,cs), +(167,457,ls), +(167,168,o), +(127,60,o), +(65,60,cs), +(42,60,ls), +(29,60,o), +(20,51,o), +(20,38,cs), +(20,-117,ls), +(20,-130,o), +(29,-139,o), +(42,-139,cs) +); +}, +{ +closed = 1; +nodes = ( +(205,119,o), +(230,238,o), +(230,449,cs), +(230,640,l), +(505,640,l), +(505,60,l), +(157,60,l) +); +} +); +width = 676; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(258,-140,ls), +(273,-140,o), +(285,-128,o), +(285,-113,cs), +(285,0,l), +(565,0,l), +(565,-113,ls), +(565,-128,o), +(577,-140,o), +(592,-140,cs), +(788,-140,ls), +(803,-140,o), +(815,-128,o), +(815,-113,cs), +(815,193,ls), +(815,208,o), +(803,220,o), +(788,220,cs), +(743,220,l), +(743,673,ls), +(743,688,o), +(731,700,o), +(716,700,cs), +(178,700,ls), +(163,700,o), +(151,688,o), +(151,673,cs), +(151,481,ls), +(151,363,o), +(143,220,o), +(77,220,cs), +(62,220,ls), +(47,220,o), +(35,208,o), +(35,193,cs), +(35,-113,ls), +(35,-129,o), +(47,-140,o), +(62,-140,cs) +); +}, +{ +closed = 1; +nodes = ( +(381,274,o), +(391,350,o), +(391,449,cs), +(391,480,l), +(493,480,l), +(493,220,l), +(362,220,l) +); +} +); +width = 845; +} +); +metricRight = "Tse-cy"; +unicode = 1044; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +} +); +}; +}, +{ +color = 10; +glyphname = "Ie-cy"; +kernLeft = afii10026; +kernRight = afii10022; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (316,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = E; +} +); +width = 592; +}, +{ +anchors = ( +{ +name = top; +pos = (354,700); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = E; +} +); +width = 667; +} +); +unicode = 1045; +}, +{ +color = 10; +glyphname = "Iegrave-cy"; +kernLeft = afii10026; +kernRight = afii10022; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Ie-cy"; +}, +{ +pos = (78,0); +ref = gravecomb.case; +} +); +width = 592; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Ie-cy"; +}, +{ +pos = (5,0); +ref = gravecomb.case; +} +); +width = 667; +} +); +unicode = 1024; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Io-cy"; +kernLeft = afii10026; +kernRight = afii10022; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Ie-cy"; +}, +{ +pos = (128,180); +ref = dieresiscomb; +} +); +width = 592; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Ie-cy"; +}, +{ +pos = (99,180); +ref = dieresiscomb; +} +); +width = 667; +} +); +unicode = 1025; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Zhe-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (867,0); +}, +{ +name = top; +pos = (479,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(85,0,ls), +(97,0,o), +(103,5,o), +(108,13,cs), +(316,325,l), +(447,325,l), +(447,22,l), +(447,9,o), +(456,0,o), +(469,0,cs), +(488,0,ls), +(501,0,o), +(510,9,o), +(510,21,cs), +(510,325,l), +(639,325,l), +(849,13,ls), +(854,5,o), +(860,0,o), +(872,0,cs), +(889,0,ls), +(902,0,o), +(912,11,o), +(912,24,cs), +(912,28,o), +(912,32,o), +(910,35,cs), +(695,360,l), +(890,667,ls), +(893,672,o), +(895,676,o), +(895,680,cs), +(895,691,o), +(890,700,o), +(875,700,cs), +(859,700,ls), +(843,700,o), +(833,695,o), +(826,685,cs), +(635,384,l), +(510,384,l), +(510,678,ls), +(510,691,o), +(501,700,o), +(488,700,cs), +(469,700,ls), +(456,700,o), +(447,691,o), +(447,678,cs), +(447,384,l), +(320,384,l), +(129,685,ls), +(122,695,o), +(112,700,o), +(96,700,cs), +(82,700,ls), +(67,700,o), +(62,691,o), +(62,680,cs), +(62,676,o), +(64,672,o), +(67,667,cs), +(262,360,l), +(47,35,ls), +(45,32,o), +(45,28,o), +(45,24,cs), +(45,11,o), +(55,0,o), +(68,0,cs) +); +} +); +width = 957; +}, +{ +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +color = 6; +layerId = "10F8D815-A7AB-4668-B44E-A441EFCC3BA4"; +name = "1"; +shapes = ( +{ +closed = 1; +nodes = ( +(845,15,ls), +(850,11,o), +(862,0,o), +(883,0,cs), +(900,0,ls), +(911,0,o), +(920,9,o), +(920,20,cs), +(920,24,o), +(919,29,o), +(914,34,cs), +(554,365,l), +(893,667,ls), +(897,671,o), +(898,676,o), +(898,680,cs), +(898,691,o), +(889,700,o), +(878,700,cs), +(862,700,ls), +(841,700,o), +(829,689,o), +(824,685,cs), +(462,365,l) +); +}, +{ +closed = 1; +nodes = ( +(438,9,o), +(447,0,o), +(461,0,cs), +(479,0,ls), +(492,0,o), +(501,9,o), +(501,22,cs), +(501,677,ls), +(501,691,o), +(492,700,o), +(479,700,cs), +(461,700,ls), +(447,700,o), +(438,691,o), +(438,677,cs), +(438,22,ls) +); +}, +{ +closed = 1; +nodes = ( +(115,685,ls), +(110,689,o), +(98,700,o), +(77,700,cs), +(61,700,ls), +(50,700,o), +(41,691,o), +(41,680,cs), +(41,676,o), +(42,671,o), +(46,667,cs), +(385,365,l), +(25,34,ls), +(20,29,o), +(19,24,o), +(19,20,cs), +(19,9,o), +(28,0,o), +(39,0,cs), +(56,0,ls), +(77,0,o), +(89,11,o), +(94,15,cs), +(477,365,l) +); +} +); +width = 939; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (954,0); +}, +{ +name = top; +pos = (568,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(260,0,ls), +(287,0,o), +(297,17,o), +(301,23,cs), +(424,243,l), +(448,243,l), +(448,27,ls), +(448,11,o), +(460,0,o), +(475,0,cs), +(661,0,ls), +(676,0,o), +(688,11,o), +(688,27,cs), +(688,243,l), +(712,243,l), +(835,23,ls), +(839,17,o), +(849,0,o), +(876,0,cs), +(1104,0,ls), +(1116,0,o), +(1126,10,o), +(1126,22,cs), +(1126,25,o), +(1125,30,o), +(1123,33,cs), +(926,365,l), +(1106,667,ls), +(1108,670,o), +(1109,674,o), +(1109,678,cs), +(1109,690,o), +(1099,700,o), +(1087,700,cs), +(866,700,ls), +(844,700,o), +(832,689,o), +(826,678,cs), +(704,463,l), +(688,463,l), +(688,673,ls), +(688,688,o), +(676,700,o), +(661,700,cs), +(475,700,ls), +(460,700,o), +(448,688,o), +(448,673,cs), +(448,463,l), +(432,463,l), +(310,678,ls), +(304,689,o), +(292,700,o), +(270,700,cs), +(49,700,ls), +(37,700,o), +(27,690,o), +(27,678,cs), +(27,674,o), +(28,670,o), +(30,667,cs), +(210,365,l), +(13,33,ls), +(11,30,o), +(10,25,o), +(10,22,cs), +(10,10,o), +(20,0,o), +(32,0,cs) +); +} +); +width = 1136; +}, +{ +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(78,691,o), +(69,700,o), +(48,700,cs), +(32,700,ls), +(21,700,o), +(14,691,o), +(14,680,cs), +(14,676,o), +(16,672,o), +(19,667,c), +(221,346,l), +(295,345,l), +(82,685,ls) +); +}, +{ +closed = 1; +nodes = ( +(25,17,o), +(36,0,o), +(53,0,cs), +(73,0,ls), +(81,0,o), +(89,5,o), +(92,13,cs), +(163,201,ls), +(196,288,o), +(235,325,o), +(297,325,cs), +(399,325,l), +(399,385,l), +(297,384,ls), +(206,383,o), +(145,334,o), +(103,223,cs), +(32,35,ls) +); +} +); +}; +color = 6; +layerId = "D05F686B-002F-45EE-8437-9B44703E1279"; +name = "Aug 29 16, 12:34"; +shapes = ( +{ +closed = 1; +nodes = ( +(808,0,ls), +(825,0,o), +(836,17,o), +(829,35,cs), +(758,223,ls), +(716,334,o), +(655,383,o), +(564,384,cs), +(462,385,l), +(462,325,l), +(564,325,ls), +(626,325,o), +(665,288,o), +(698,201,cs), +(769,13,ls), +(772,5,o), +(780,0,o), +(788,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(73,0,ls), +(81,0,o), +(89,5,o), +(92,13,cs), +(163,201,ls), +(196,288,o), +(235,325,o), +(297,325,cs), +(399,325,l), +(399,385,l), +(297,384,ls), +(206,383,o), +(145,334,o), +(103,223,cs), +(32,35,ls), +(25,17,o), +(36,0,o), +(53,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(90,685,ls), +(86,691,o), +(79,700,o), +(58,700,cs), +(42,700,ls), +(31,700,o), +(24,691,o), +(24,680,cs), +(24,676,o), +(26,672,o), +(29,667,c), +(221,346,l), +(293,345,l) +); +}, +{ +closed = 1; +nodes = ( +(440,0,ls), +(453,0,o), +(462,9,o), +(462,22,cs), +(462,677,ls), +(462,691,o), +(453,700,o), +(440,700,cs), +(422,700,ls), +(408,700,o), +(399,691,o), +(399,677,cs), +(399,22,ls), +(399,9,o), +(408,0,o), +(422,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(640,346,l), +(832,667,l), +(835,672,o), +(837,676,o), +(837,680,cs), +(837,691,o), +(830,700,o), +(819,700,cs), +(803,700,ls), +(782,700,o), +(773,691,o), +(769,685,cs), +(566,345,l) +); +} +); +width = 880; +} +); +metricLeft = "=|Ka-cy"; +metricRight = "Ka-cy"; +unicode = 1046; +}, +{ +color = 6; +glyphname = "Ze-cy"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (300,0); +}, +{ +name = top; +pos = (288,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(439,-10,o), +(538,73,o), +(538,193,cs), +(538,271,o), +(502,334,o), +(433,368,c), +(491,403,o), +(513,463,o), +(513,527,cs), +(513,618,o), +(443,710,o), +(288,710,cs), +(146,710,o), +(59,647,o), +(50,540,cs), +(49,528,o), +(59,520,o), +(71,520,cs), +(91,520,ls), +(102,520,o), +(110,525,o), +(113,541,cs), +(129,619,o), +(197,650,o), +(288,650,cs), +(375,650,o), +(450,603,o), +(450,527,cs), +(450,436,o), +(385,396,o), +(292,396,cs), +(226,396,ls), +(213,396,o), +(204,387,o), +(204,373,cs), +(204,358,ls), +(204,345,o), +(213,336,o), +(226,336,cs), +(297,336,ls), +(405,336,o), +(475,283,o), +(475,193,cs), +(475,103,o), +(385,50,o), +(284,50,cs), +(183,50,o), +(120,94,o), +(104,157,cs), +(99,177,o), +(88,180,o), +(77,180,cs), +(61,180,ls), +(49,180,o), +(39,173,o), +(40,161,cs), +(49,61,o), +(139,-10,o), +(284,-10,cs) +); +} +); +width = 599; +}, +{ +anchors = ( +{ +name = bottom; +pos = (358,0); +}, +{ +name = top; +pos = (358,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(562,-10,o), +(687,77,o), +(687,209,cs), +(687,260,o), +(668,330,o), +(590,368,c), +(655,403,o), +(668,460,o), +(668,501,cs), +(668,618,o), +(541,710,o), +(360,710,cs), +(119,710,o), +(50,589,o), +(40,501,cs), +(39,489,o), +(50,479,o), +(62,479,cs), +(260,479,ls), +(278,479,o), +(284,484,o), +(292,495,cs), +(297,502,o), +(314,515,o), +(354,515,cs), +(400,515,o), +(412,496,o), +(412,474,cs), +(412,448,o), +(390,438,o), +(357,438,cs), +(282,438,ls), +(267,438,o), +(255,424,o), +(255,409,cs), +(255,289,ls), +(255,274,o), +(267,260,o), +(282,260,cs), +(357,260,ls), +(404,260,o), +(427,249,o), +(427,221,cs), +(427,196,o), +(407,183,o), +(354,183,cs), +(318,183,o), +(300,190,o), +(287,203,cs), +(278,212,o), +(271,219,o), +(253,219,cs), +(57,219,ls), +(45,219,o), +(34,209,o), +(35,197,cs), +(45,108,o), +(119,-10,o), +(360,-10,cs) +); +} +); +width = 715; +} +); +metricRight = "Ve-cy"; +unicode = 1047; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 61; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 309; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Ii-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (706,0); +}, +{ +name = top; +pos = (357,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(138,0,ls), +(151,0,o), +(157,9,o), +(159,12,cs), +(569,588,l), +(569,22,ls), +(569,9,o), +(578,0,o), +(592,0,cs), +(610,0,ls), +(623,0,o), +(632,9,o), +(632,22,cs), +(632,677,ls), +(632,691,o), +(623,700,o), +(610,700,cs), +(589,700,ls), +(576,700,o), +(570,691,o), +(568,688,cs), +(157,110,l), +(157,677,ls), +(157,691,o), +(148,700,o), +(135,700,cs), +(117,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,23,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +width = 726; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (790,0); +}, +{ +name = top; +pos = (415,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(255,0,ls), +(278,0,o), +(288,11,o), +(296,23,c), +(505,308,l), +(505,27,ls), +(505,12,o), +(517,0,o), +(532,0,cs), +(728,0,ls), +(743,0,o), +(755,12,o), +(755,27,cs), +(755,673,ls), +(755,688,o), +(743,700,o), +(728,700,cs), +(555,700,ls), +(536,700,o), +(523,692,o), +(514,677,c), +(305,370,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 810; +} +); +metricLeft = "En-cy"; +metricRight = "En-cy"; +unicode = 1048; +}, +{ +color = 10; +glyphname = "Iishort-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (172,0); +ref = "brevecomb-cy.case"; +} +); +width = 726; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (118,0); +ref = "brevecomb-cy.case"; +} +); +width = 810; +} +); +unicode = 1049; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 333; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Iigrave-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (119,0); +ref = gravecomb.case; +} +); +width = 726; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (66,0); +ref = gravecomb.case; +} +); +width = 810; +} +); +unicode = 1037; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 373; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Ka-cy"; +kernLeft = afii10026; +kernRight = afii10028; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (594,0); +}, +{ +name = top; +pos = (299,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,325,l), +(296,325,l), +(506,13,ls), +(511,5,o), +(517,0,o), +(529,0,cs), +(546,0,ls), +(559,0,o), +(569,11,o), +(569,24,cs), +(569,28,o), +(569,32,o), +(567,35,cs), +(352,360,l), +(547,667,ls), +(550,672,o), +(552,676,o), +(552,680,cs), +(552,691,o), +(547,700,o), +(532,700,cs), +(516,700,ls), +(500,700,o), +(490,695,o), +(483,685,cs), +(293,385,l), +(157,385,l), +(157,677,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +width = 614; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (586,0); +}, +{ +name = center; +pos = (303,350); +}, +{ +name = top; +pos = (303,700); +} +); +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,325,l), +(273,325,l), +(273,385,l), +(157,385,l), +(157,677,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +}; +color = 6; +layerId = "10F8D815-A7AB-4668-B44E-A441EFCC3BA4"; +name = "1"; +shapes = ( +{ +closed = 1; +nodes = ( +(198,365,l), +(521,15,ls), +(526,10,o), +(538,0,o), +(559,0,cs), +(576,0,ls), +(587,0,o), +(596,9,o), +(596,20,cs), +(596,24,o), +(595,29,o), +(590,34,cs), +(288,368,l), +(589,667,ls), +(593,671,o), +(594,676,o), +(594,680,cs), +(594,691,o), +(585,700,o), +(574,700,cs), +(558,700,ls), +(537,700,o), +(525,690,o), +(520,685,cs) +); +}, +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,325,l), +(273,325,l), +(273,385,l), +(157,385,l), +(157,677,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +width = 606; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (563,0); +}, +{ +name = top; +pos = (365,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,243,l), +(329,243,l), +(452,23,ls), +(456,17,o), +(466,0,o), +(493,0,cs), +(721,0,ls), +(733,0,o), +(743,10,o), +(743,22,cs), +(743,25,o), +(742,30,o), +(740,33,cs), +(543,365,l), +(723,667,ls), +(725,670,o), +(726,674,o), +(726,678,cs), +(726,690,o), +(716,700,o), +(704,700,cs), +(483,700,ls), +(461,700,o), +(449,689,o), +(443,678,cs), +(321,463,l), +(305,463,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,11,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 753; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (695,0); +}, +{ +name = top; +pos = (358,700); +} +); +associatedMasterId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +background = { +anchors = ( +{ +name = bottomright; +pos = (695,0); +}, +{ +name = top; +pos = (358,700); +} +); +shapes = ( +{ +closed = 1; +nodes = ( +(701,0,ls), +(713,0,o), +(723,10,o), +(723,22,cs), +(723,25,o), +(722,30,o), +(720,33,c), +(618,302,ls), +(576,413,o), +(515,463,o), +(424,463,cs), +(292,463,l), +(292,248,l), +(339,248,ls), +(363,248,o), +(378,233,o), +(391,200,cs), +(457,23,ls), +(463,7,o), +(472,0,o), +(498,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(567,335,l), +(695,667,ls), +(702,685,o), +(697,700,o), +(676,700,cs), +(473,700,ls), +(451,700,o), +(438,693,o), +(433,678,cs), +(311,335,l) +); +} +); +}; +color = 6; +layerId = "D8C7E40E-65C5-412D-93E0-7B6E51038BD5"; +name = "Sep 1 16, 19:04"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,248,l), +(339,248,ls), +(363,248,o), +(378,233,o), +(391,200,cs), +(457,23,ls), +(464,6,o), +(473,0,o), +(498,0,cs), +(701,0,ls), +(718,0,o), +(726,18,o), +(720,33,cs), +(618,302,ls), +(606,333,o), +(594,357,o), +(582,375,c), +(695,667,ls), +(697,672,o), +(698,677,o), +(698,681,cs), +(698,693,o), +(691,700,o), +(676,700,cs), +(473,700,ls), +(451,700,o), +(438,693,o), +(433,678,cs), +(357,463,l), +(305,463,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 715; +} +); +metricLeft = "En-cy"; +unicode = 1050; +}, +{ +color = 10; +glyphname = "Kje-cy"; +kernLeft = afii10026; +kernRight = afii10028; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Ka-cy"; +}, +{ +pos = (171,0); +ref = acutecomb.case; +} +); +width = 614; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Ka-cy"; +}, +{ +pos = (176,0); +ref = acutecomb.case; +} +); +width = 753; +} +); +unicode = 1036; +}, +{ +color = 6; +glyphname = "El-cy"; +kernLeft = afii10029; +kernRight = afii10026; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(563,0,ls), +(577,0,o), +(586,9,o), +(586,22,cs), +(586,677,ls), +(586,691,o), +(577,700,o), +(563,700,cs), +(207,700,ls), +(194,700,o), +(185,691,o), +(185,678,cs), +(185,457,ls), +(185,168,o), +(126,76,o), +(40,64,c), +(28,63,o), +(20,54,o), +(20,42,cs), +(20,24,ls), +(20,11,o), +(30,0,o), +(43,1,cs), +(176,12,o), +(248,128,o), +(248,449,cs), +(248,640,l), +(523,640,l), +(523,22,ls), +(523,9,o), +(532,0,o), +(545,0,cs) +); +} +); +width = 680; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(731,0,ls), +(746,0,o), +(758,12,o), +(758,27,cs), +(758,673,ls), +(758,688,o), +(746,700,o), +(731,700,cs), +(163,700,ls), +(148,700,o), +(136,688,o), +(136,673,cs), +(136,481,ls), +(136,357,o), +(130,225,o), +(62,212,cs), +(46,209,o), +(35,200,o), +(35,185,cs), +(35,27,ls), +(35,12,o), +(48,0,o), +(63,0,cs), +(340,0,o), +(376,127,o), +(376,449,cs), +(376,480,l), +(508,480,l), +(508,27,ls), +(508,12,o), +(520,0,o), +(535,0,cs) +); +} +); +width = 813; +} +); +metricRight = "En-cy"; +unicode = 1051; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +} +); +}; +}, +{ +color = 10; +glyphname = "Em-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = M; +} +); +width = 780; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = M; +} +); +width = 856; +} +); +unicode = 1052; +}, +{ +color = 10; +glyphname = "En-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (583,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = H; +} +); +width = 700; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (586,0); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = H; +} +); +width = 772; +} +); +unicode = 1053; +}, +{ +color = 10; +glyphname = "O-cy"; +kernLeft = afii10032; +kernRight = afii10032; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (331,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = O; +} +); +width = 662; +}, +{ +anchors = ( +{ +name = top; +pos = (371,700); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = O; +} +); +width = 742; +} +); +unicode = 1054; +}, +{ +color = 6; +glyphname = "Pe-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (680,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,640,l), +(543,640,l), +(543,22,ls), +(543,9,o), +(552,0,o), +(565,0,cs), +(583,0,ls), +(597,0,o), +(606,9,o), +(606,22,cs), +(606,677,ls), +(606,691,o), +(597,700,o), +(583,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,c) +); +} +); +width = 700; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (585,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,480,l), +(467,480,l), +(467,27,ls), +(467,12,o), +(479,0,o), +(494,0,cs), +(690,0,ls), +(705,0,o), +(717,12,o), +(717,27,cs), +(717,673,ls), +(717,688,o), +(705,700,o), +(690,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,11,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 772; +} +); +unicode = 1055; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 85; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Er-cy"; +kernLeft = afii10026; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = P; +} +); +width = 628; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = P; +} +); +width = 705; +} +); +unicode = 1056; +}, +{ +color = 10; +glyphname = "Es-cy"; +kernLeft = afii10032; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (441,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = C; +} +); +width = 651; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (713,0); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = C; +} +); +width = 733; +} +); +unicode = 1057; +}, +{ +color = 10; +glyphname = "Te-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (287,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = T; +} +); +width = 557; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (654,0); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = T; +} +); +width = 674; +} +); +unicode = 1058; +}, +{ +color = 6; +glyphname = "U-cy"; +kernLeft = afii10037; +kernRight = afii10037; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (288,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(147,0,ls), +(256,0,o), +(293,67,o), +(354,204,cs), +(560,668,ls), +(562,672,o), +(563,675,o), +(563,680,cs), +(563,691,o), +(554,700,o), +(543,700,cs), +(522,700,ls), +(513,700,o), +(503,695,o), +(499,685,cs), +(301,232,ls), +(248,112,o), +(214,60,o), +(147,60,cs), +(113,60,ls), +(100,60,o), +(91,51,o), +(91,37,cs), +(91,22,ls), +(91,9,o), +(100,0,o), +(113,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(332,233,l), +(79,685,ls), +(73,695,o), +(65,700,o), +(56,700,cs), +(35,700,ls), +(24,700,o), +(15,691,o), +(15,680,cs), +(15,675,o), +(16,672,o), +(18,668,cs), +(296,166,l) +); +} +); +width = 563; +}, +{ +anchors = ( +{ +name = top; +pos = (369,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(210,0,ls), +(380,0,o), +(434,44,o), +(503,204,cs), +(697,656,ls), +(700,663,o), +(703,672,o), +(703,679,cs), +(703,690,o), +(693,700,o), +(680,700,cs), +(483,700,ls), +(467,700,o), +(456,692,o), +(449,676,cs), +(270,267,ls), +(253,229,o), +(230,214,o), +(186,214,cs), +(145,214,ls), +(130,214,o), +(118,202,o), +(118,187,cs), +(118,27,ls), +(118,12,o), +(130,0,o), +(145,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(386,429,l), +(272,676,ls), +(265,691,o), +(257,700,o), +(240,700,cs), +(31,700,ls), +(17,700,o), +(5,688,o), +(5,676,cs), +(5,674,o), +(6,671,o), +(7,669,cs), +(260,188,l) +); +} +); +width = 701; +} +); +unicode = 1059; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 4678; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 6607; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 6901; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Ushort-cy"; +kernLeft = afii10037; +kernRight = afii10037; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (103,0); +ref = "brevecomb-cy.case"; +} +); +width = 563; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (72,0); +ref = "brevecomb-cy.case"; +} +); +width = 701; +} +); +unicode = 1038; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 327; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Ef-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(422,-32,ls), +(435,-32,o), +(444,-23,o), +(444,-10,cs), +(444,74,l), +(642,74,o), +(742,156,o), +(758,330,cs), +(760,354,o), +(759,374,o), +(758,398,cs), +(750,571,o), +(630,654,o), +(444,654,c), +(444,728,ls), +(444,741,o), +(435,750,o), +(422,750,cs), +(403,750,ls), +(390,750,o), +(381,741,o), +(381,728,cs), +(381,654,l), +(195,654,o), +(76,571,o), +(67,398,cs), +(66,374,o), +(65,354,o), +(67,330,cs), +(85,156,o), +(183,74,o), +(381,74,c), +(381,-10,ls), +(381,-23,o), +(390,-32,o), +(403,-32,cs) +); +}, +{ +closed = 1; +nodes = ( +(229,134,o), +(138,193,o), +(130,335,cs), +(129,357,o), +(128,371,o), +(130,393,cs), +(143,535,o), +(230,594,o), +(381,594,c), +(381,134,l) +); +}, +{ +closed = 1; +nodes = ( +(444,594,l), +(595,594,o), +(680,535,o), +(695,393,cs), +(697,371,o), +(696,357,o), +(695,335,cs), +(688,193,o), +(596,134,o), +(444,134,c) +); +} +); +width = 825; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(593,-32,ls), +(608,-32,o), +(620,-20,o), +(620,-5,cs), +(620,55,l), +(820,55,o), +(942,148,o), +(953,325,cs), +(955,359,o), +(955,369,o), +(953,403,cs), +(944,576,o), +(817,677,o), +(620,677,c), +(620,724,ls), +(620,739,o), +(608,751,o), +(593,751,cs), +(397,751,ls), +(382,751,o), +(370,739,o), +(370,724,cs), +(370,677,l), +(173,677,o), +(46,576,o), +(37,403,c), +(36,394,o), +(36,334,o), +(37,325,c), +(48,148,o), +(170,55,o), +(370,55,c), +(370,-5,ls), +(370,-20,o), +(382,-32,o), +(397,-32,cs) +); +}, +{ +closed = 1; +nodes = ( +(323,250,o), +(299,276,o), +(296,331,cs), +(296,354,o), +(296,378,o), +(296,401,cs), +(299,455,o), +(324,482,o), +(372,482,c), +(372,250,l) +); +}, +{ +closed = 1; +nodes = ( +(618,482,l), +(666,482,o), +(691,455,o), +(694,401,c), +(695,393,o), +(695,340,o), +(694,331,c), +(691,276,o), +(667,250,o), +(618,250,c) +); +} +); +width = 990; +} +); +metricLeft = O; +metricRight = O; +unicode = 1060; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 183; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 535; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Ha-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (589,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = X; +} +); +width = 609; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (719,0); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = X; +} +); +width = 739; +} +); +unicode = 1061; +}, +{ +color = 6; +glyphname = "Che-cy"; +kernRight = afii10026; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (615,0); +}, +{ +name = top; +pos = (294,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(518,0,ls), +(532,0,o), +(541,9,o), +(541,22,cs), +(541,678,ls), +(541,691,o), +(532,700,o), +(518,700,cs), +(500,700,ls), +(487,700,o), +(478,691,o), +(478,678,cs), +(478,422,ls), +(478,321,o), +(366,302,o), +(298,302,cs), +(170,302,o), +(123,349,o), +(123,449,cs), +(123,678,ls), +(123,691,o), +(114,700,o), +(100,700,cs), +(82,700,ls), +(69,700,o), +(60,691,o), +(60,678,cs), +(60,444,ls), +(60,314,o), +(132,242,o), +(290,242,cs), +(355,242,o), +(448,258,o), +(478,297,c), +(478,22,ls), +(478,9,o), +(487,0,o), +(500,0,cs) +); +} +); +width = 635; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (535,0); +}, +{ +name = top; +pos = (349,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(646,0,ls), +(661,0,o), +(673,12,o), +(673,27,cs), +(673,673,ls), +(673,688,o), +(661,700,o), +(646,700,cs), +(450,700,ls), +(435,700,o), +(423,688,o), +(423,673,cs), +(423,430,ls), +(423,416,o), +(385,404,o), +(355,404,cs), +(308,404,o), +(288,424,o), +(288,471,cs), +(288,673,ls), +(288,688,o), +(276,700,o), +(261,700,cs), +(65,700,ls), +(50,700,o), +(38,688,o), +(38,673,cs), +(38,461,ls), +(38,265,o), +(125,176,o), +(301,176,cs), +(350,176,o), +(391,186,o), +(423,206,c), +(423,27,ls), +(423,12,o), +(435,0,o), +(450,0,cs) +); +} +); +width = 737; +} +); +unicode = 1063; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 700; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 434; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 206; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 1286; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 1609; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Tse-cy"; +kernLeft = afii10026; +kernRight = afii10040; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(656,-140,ls), +(670,-140,o), +(679,-131,o), +(679,-118,cs), +(679,38,ls), +(679,51,o), +(670,60,o), +(656,60,cs), +(606,60,l), +(606,678,ls), +(606,691,o), +(597,700,o), +(583,700,cs), +(565,700,ls), +(552,700,o), +(543,691,o), +(543,678,cs), +(543,60,l), +(157,60,l), +(157,678,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,678,cs), +(94,23,ls), +(94,9,o), +(103,0,o), +(116,0,cs), +(616,0,l), +(616,-118,ls), +(616,-131,o), +(625,-140,o), +(638,-140,cs) +); +} +); +width = 714; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(762,-140,ls), +(777,-140,o), +(789,-128,o), +(789,-113,cs), +(789,193,ls), +(789,208,o), +(777,220,o), +(762,220,cs), +(717,220,l), +(717,673,ls), +(717,688,o), +(705,700,o), +(690,700,cs), +(494,700,ls), +(479,700,o), +(467,688,o), +(467,673,cs), +(467,220,l), +(305,220,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,689,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs), +(539,0,l), +(539,-113,ls), +(539,-128,o), +(551,-140,o), +(566,-140,cs) +); +} +); +width = 819; +} +); +metricLeft = "En-cy"; +unicode = 1062; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 85; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Sha-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(828,0,ls), +(842,0,o), +(851,9,o), +(851,22,cs), +(851,678,ls), +(851,691,o), +(842,700,o), +(828,700,cs), +(810,700,ls), +(797,700,o), +(788,691,o), +(788,678,cs), +(788,60,l), +(504,60,l), +(504,678,ls), +(504,691,o), +(495,700,o), +(481,700,cs), +(463,700,l), +(450,700,o), +(441,691,o), +(441,678,cs), +(441,60,l), +(157,60,l), +(157,678,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,678,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +width = 945; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(931,0,ls), +(946,0,o), +(958,12,o), +(958,27,cs), +(958,673,ls), +(958,688,o), +(946,700,o), +(931,700,cs), +(735,700,ls), +(720,700,o), +(708,688,o), +(708,673,cs), +(708,220,l), +(632,220,l), +(632,673,ls), +(632,688,o), +(620,700,o), +(605,700,cs), +(409,700,ls), +(394,700,o), +(382,688,o), +(382,673,cs), +(382,220,l), +(305,220,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,689,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 1013; +} +); +metricLeft = "En-cy"; +metricRight = "En-cy"; +unicode = 1064; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 422; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Shcha-cy"; +kernLeft = afii10026; +kernRight = afii10040; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(901,-140,ls), +(915,-140,o), +(924,-131,o), +(924,-118,cs), +(924,38,ls), +(924,51,o), +(915,60,o), +(901,60,cs), +(851,60,l), +(851,678,ls), +(851,691,o), +(842,700,o), +(828,700,cs), +(810,700,ls), +(797,700,o), +(788,691,o), +(788,678,cs), +(788,60,l), +(504,60,l), +(504,678,ls), +(504,691,o), +(495,700,o), +(481,700,cs), +(463,700,ls), +(450,700,o), +(441,691,o), +(441,678,cs), +(441,60,l), +(157,60,l), +(157,678,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,678,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,c), +(861,0,l), +(861,-118,ls), +(861,-131,o), +(870,-140,o), +(883,-140,cs) +); +} +); +width = 959; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(1003,-140,ls), +(1018,-140,o), +(1030,-128,o), +(1030,-113,cs), +(1030,193,ls), +(1030,208,o), +(1018,220,o), +(1003,220,cs), +(958,220,l), +(958,673,ls), +(958,688,o), +(946,700,o), +(931,700,cs), +(735,700,ls), +(720,700,o), +(708,688,o), +(708,673,cs), +(708,220,l), +(632,220,l), +(632,673,ls), +(632,688,o), +(620,700,o), +(605,700,cs), +(409,700,ls), +(394,700,o), +(382,688,o), +(382,673,cs), +(382,220,l), +(305,220,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,689,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs), +(780,0,l), +(780,-113,ls), +(780,-128,o), +(792,-140,o), +(807,-140,cs) +); +} +); +width = 1060; +} +); +metricLeft = "En-cy"; +metricRight = "Tse-cy"; +unicode = 1065; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 60; +} +); +}; +}, +{ +color = 6; +glyphname = "Dzhe-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(358,-140,ls), +(372,-140,o), +(381,-131,o), +(381,-118,cs), +(381,0,l), +(583,0,ls), +(597,0,o), +(606,9,o), +(606,22,cs), +(606,678,ls), +(606,691,o), +(597,700,o), +(583,700,cs), +(565,700,ls), +(552,700,o), +(543,691,o), +(543,678,cs), +(543,60,l), +(157,60,l), +(157,678,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,678,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs), +(318,0,l), +(318,-118,ls), +(318,-131,o), +(327,-140,o), +(340,-140,c) +); +} +); +width = 700; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(484,-140,ls), +(499,-140,o), +(511,-128,o), +(511,-113,cs), +(511,0,l), +(690,0,ls), +(705,0,o), +(717,12,o), +(717,27,cs), +(717,673,ls), +(717,688,o), +(705,700,o), +(690,700,cs), +(494,700,ls), +(479,700,o), +(467,688,o), +(467,673,cs), +(467,220,l), +(305,220,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,689,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs), +(261,0,l), +(261,-113,ls), +(261,-128,o), +(273,-140,o), +(288,-140,cs) +); +} +); +width = 772; +} +); +metricLeft = "En-cy"; +metricRight = "En-cy"; +unicode = 1039; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 1327; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 1072; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 85; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Softsign-cy"; +kernLeft = afii10026; +kernRight = afii10046; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,0,ls), +(476,0,o), +(540,111,o), +(540,214,cs), +(540,350,o), +(464,423,o), +(330,423,cs), +(157,423,l), +(157,678,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,l), +(103,700,o), +(94,691,o), +(94,678,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,363,l), +(320,363,l), +(427,363,o), +(477,314,o), +(477,217,cs), +(477,122,o), +(419,60,o), +(320,60,cs), +(157,60,l) +); +} +); +width = 580; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,0,ls), +(562,0,o), +(676,84,o), +(676,245,cs), +(676,406,o), +(563,482,o), +(370,482,cs), +(305,482,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(305,297,l), +(370,297,ls), +(394,297,o), +(416,279,o), +(416,243,cs), +(416,212,o), +(402,186,o), +(370,186,cs), +(305,186,l) +); +} +); +width = 705; +} +); +metricLeft = "En-cy"; +unicode = 1068; +}, +{ +color = 3; +glyphname = "Yeru-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (386,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,0,ls), +(446,0,o), +(510,111,o), +(510,214,cs), +(510,350,o), +(434,423,o), +(300,423,cs), +(157,423,l), +(157,678,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,l), +(103,700,o), +(94,691,o), +(94,678,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,363,l), +(290,363,l), +(397,363,o), +(447,314,o), +(447,217,cs), +(447,122,o), +(389,60,o), +(290,60,cs), +(157,60,l) +); +}, +{ +pos = (520,0); +ref = I; +} +); +width = 771; +}, +{ +anchors = ( +{ +name = top; +pos = (524,700); +} +); +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(370,0,ls), +(562,0,o), +(676,84,o), +(676,245,cs), +(676,406,o), +(563,482,o), +(370,482,cs), +(305,482,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,12,o), +(67,0,o), +(82,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(305,297,l), +(370,297,ls), +(394,297,o), +(416,279,o), +(416,243,cs), +(416,212,o), +(402,186,o), +(370,186,cs), +(305,186,l) +); +}, +{ +pos = (680,0); +ref = I; +} +); +width = 1048; +} +); +metricLeft = "En-cy"; +metricRight = "En-cy"; +unicode = 1067; +}, +{ +color = 6; +glyphname = "Hardsign-cy"; +kernRight = afii10046; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (347,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(443,0,ls), +(589,0,o), +(653,111,o), +(653,214,cs), +(653,350,o), +(577,423,o), +(443,423,cs), +(280,423,l), +(280,678,ls), +(280,691,o), +(271,700,o), +(258,700,cs), +(49,700,ls), +(36,700,o), +(27,691,o), +(27,677,cs), +(27,662,ls), +(27,649,o), +(36,640,o), +(49,640,cs), +(217,640,l), +(217,22,ls), +(217,9,o), +(226,0,o), +(239,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(280,363,l), +(433,363,ls), +(540,363,o), +(590,314,o), +(590,217,cs), +(590,122,o), +(532,60,o), +(433,60,cs), +(280,60,l) +); +} +); +width = 693; +}, +{ +anchors = ( +{ +name = top; +pos = (404,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(472,0,ls), +(664,0,o), +(778,84,o), +(778,245,cs), +(778,406,o), +(665,482,o), +(472,482,cs), +(407,482,l), +(407,673,ls), +(407,688,o), +(395,700,o), +(380,700,cs), +(44,700,ls), +(29,700,o), +(17,688,o), +(17,673,cs), +(17,532,ls), +(17,517,o), +(29,505,o), +(44,505,cs), +(157,505,l), +(157,27,ls), +(157,12,o), +(169,0,o), +(184,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(407,297,l), +(472,297,ls), +(496,297,o), +(518,279,o), +(518,243,cs), +(518,212,o), +(504,186,o), +(472,186,cs), +(407,186,l) +); +} +); +width = 807; +} +); +metricLeft = T; +metricRight = "Softsign-cy"; +unicode = 1066; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 160; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 41; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Lje-cy"; +kernLeft = afii10029; +kernRight = afii10046; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(176,11,o), +(248,128,o), +(248,449,cs), +(248,640,l), +(493,640,l), +(493,22,ls), +(493,9,o), +(502,0,o), +(515,0,cs), +(699,0,ls), +(845,0,o), +(909,111,o), +(909,214,cs), +(909,350,o), +(833,423,o), +(699,423,cs), +(556,423,l), +(556,678,ls), +(556,691,o), +(547,700,o), +(534,700,cs), +(207,700,ls), +(194,700,o), +(185,691,o), +(185,678,cs), +(185,457,ls), +(185,168,o), +(126,76,o), +(40,64,cs), +(28,63,o), +(20,54,o), +(20,42,cs), +(20,24,ls), +(20,11,o), +(30,0,o), +(43,1,cs) +); +}, +{ +closed = 1; +nodes = ( +(556,363,l), +(689,363,ls), +(796,363,o), +(846,314,o), +(846,217,cs), +(846,122,o), +(788,60,o), +(689,60,cs), +(556,60,l) +); +} +); +width = 949; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,0,o), +(376,127,o), +(376,449,cs), +(376,480,l), +(508,480,l), +(508,27,ls), +(508,12,o), +(520,0,o), +(535,0,cs), +(823,0,ls), +(1015,0,o), +(1129,84,o), +(1129,245,cs), +(1129,406,o), +(1016,482,o), +(823,482,cs), +(758,482,l), +(758,673,ls), +(758,688,o), +(746,700,o), +(731,700,cs), +(163,700,ls), +(148,700,o), +(136,688,o), +(136,673,cs), +(136,481,ls), +(136,357,o), +(130,225,o), +(62,212,cs), +(46,209,o), +(35,200,o), +(35,185,cs), +(35,27,ls), +(35,12,o), +(48,0,o), +(63,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(758,297,l), +(823,297,ls), +(847,297,o), +(869,279,o), +(869,243,cs), +(869,212,o), +(855,186,o), +(823,186,cs), +(758,186,l) +); +} +); +width = 1158; +} +); +metricLeft = "El-cy"; +metricRight = "Softsign-cy"; +unicode = 1033; +}, +{ +color = 6; +glyphname = "Nje-cy"; +kernLeft = afii10026; +kernRight = afii10046; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,325,l), +(523,325,l), +(523,22,ls), +(523,9,o), +(532,0,o), +(545,0,cs), +(729,0,ls), +(875,0,o), +(939,111,o), +(939,214,cs), +(939,350,o), +(863,423,o), +(729,423,cs), +(586,423,l), +(586,678,ls), +(586,691,o), +(577,700,o), +(564,700,c), +(545,700,ls), +(532,700,o), +(523,691,o), +(523,677,cs), +(523,385,l), +(157,385,l), +(157,677,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(586,363,l), +(719,363,ls), +(826,363,o), +(876,314,o), +(876,217,cs), +(876,122,o), +(818,60,o), +(719,60,cs), +(586,60,l) +); +} +); +width = 979; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,243,l), +(467,243,l), +(467,27,ls), +(467,12,o), +(479,0,o), +(494,0,cs), +(782,0,ls), +(974,0,o), +(1088,84,o), +(1088,245,cs), +(1088,406,o), +(975,482,o), +(782,482,cs), +(717,482,l), +(717,673,ls), +(717,688,o), +(705,700,o), +(690,700,cs), +(494,700,ls), +(479,700,o), +(467,688,o), +(467,673,cs), +(467,463,l), +(305,463,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,11,o), +(67,0,o), +(82,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(717,297,l), +(782,297,ls), +(806,297,o), +(828,279,o), +(828,243,cs), +(828,212,o), +(814,186,o), +(782,186,cs), +(717,186,l) +); +} +); +width = 1117; +} +); +metricLeft = "En-cy"; +metricRight = "Softsign-cy"; +unicode = 1034; +}, +{ +color = 10; +glyphname = "Dze-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = S; +} +); +width = 605; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = S; +} +); +width = 697; +} +); +unicode = 1029; +}, +{ +color = 6; +glyphname = "E-cy"; +kernLeft = afii10032; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(462,-10,o), +(555,61,o), +(567,160,cs), +(568,172,o), +(558,180,o), +(546,180,cs), +(526,180,ls), +(513,180,o), +(508,175,o), +(504,159,cs), +(489,99,o), +(432,50,o), +(322,50,cs), +(199,50,o), +(128,143,o), +(128,296,cs), +(128,321,l), +(392,321,ls), +(405,321,o), +(414,330,o), +(414,344,cs), +(414,358,ls), +(414,372,o), +(405,381,o), +(392,381,cs), +(128,381,l), +(128,404,ls), +(128,573,o), +(199,650,o), +(322,650,cs), +(432,650,o), +(489,601,o), +(504,541,cs), +(508,525,o), +(513,520,o), +(526,520,cs), +(546,520,ls), +(558,520,o), +(568,528,o), +(567,540,cs), +(555,639,o), +(462,710,o), +(322,710,cs), +(179,710,o), +(71,628,o), +(65,404,cs), +(64,364,o), +(64,334,o), +(65,296,cs), +(71,72,o), +(179,-10,o), +(322,-10,cs) +); +} +); +width = 620; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(530,-10,o), +(674,52,o), +(691,197,cs), +(692,209,o), +(681,219,o), +(669,219,cs), +(473,219,ls), +(457,219,o), +(451,215,o), +(439,203,cs), +(426,190,o), +(407,183,o), +(372,183,cs), +(321,183,o), +(291,205,o), +(291,250,c), +(291,260,l), +(444,260,ls), +(459,260,o), +(471,274,o), +(471,289,cs), +(471,409,ls), +(471,424,o), +(459,438,o), +(444,438,cs), +(291,438,l), +(291,448,l), +(291,496,o), +(320,515,o), +(372,515,cs), +(407,515,o), +(427,504,o), +(434,495,cs), +(443,483,o), +(449,479,o), +(466,479,cs), +(664,479,ls), +(676,479,o), +(687,489,o), +(686,501,cs), +(669,644,o), +(538,710,o), +(366,710,cs), +(170,710,o), +(39,618,o), +(31,439,cs), +(30,419,o), +(30,280,o), +(31,261,cs), +(39,77,o), +(165,-10,o), +(366,-10,cs) +); +} +); +width = 728; +} +); +unicode = 1028; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 6; +glyphname = "Ereversed-cy"; +kernRight = afii10032; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (310,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(441,-10,o), +(549,72,o), +(555,296,cs), +(556,334,o), +(556,364,o), +(555,404,cs), +(549,628,o), +(441,710,o), +(298,710,cs), +(158,710,o), +(65,639,o), +(53,540,cs), +(52,528,o), +(62,520,o), +(74,520,cs), +(94,520,ls), +(107,520,o), +(112,525,o), +(116,541,cs), +(131,601,o), +(188,650,o), +(298,650,cs), +(421,650,o), +(492,573,o), +(492,404,cs), +(492,381,l), +(228,381,ls), +(215,381,o), +(206,372,o), +(206,358,cs), +(206,344,ls), +(206,330,o), +(215,321,o), +(228,321,cs), +(492,321,l), +(492,296,ls), +(492,143,o), +(421,50,o), +(298,50,cs), +(188,50,o), +(131,99,o), +(116,159,cs), +(112,175,o), +(107,180,o), +(94,180,cs), +(74,180,ls), +(62,180,o), +(52,172,o), +(53,160,cs), +(65,61,o), +(158,-10,o), +(298,-10,cs) +); +} +); +width = 620; +}, +{ +anchors = ( +{ +name = top; +pos = (367,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(561,-10,o), +(687,77,o), +(695,261,cs), +(697,336,o), +(697,364,o), +(695,439,cs), +(687,618,o), +(556,710,o), +(360,710,cs), +(196,710,o), +(57,649,o), +(40,501,cs), +(39,489,o), +(50,479,o), +(62,479,cs), +(260,479,ls), +(277,479,o), +(283,483,o), +(292,495,cs), +(299,504,o), +(319,515,o), +(354,515,cs), +(406,515,o), +(435,494,o), +(435,448,c), +(435,438,l), +(282,438,ls), +(267,438,o), +(255,424,o), +(255,409,cs), +(255,289,ls), +(255,274,o), +(267,260,o), +(282,260,cs), +(435,260,l), +(435,250,l), +(435,205,o), +(405,183,o), +(354,183,cs), +(319,183,o), +(300,190,o), +(287,203,cs), +(276,214,o), +(269,219,o), +(253,219,cs), +(57,219,ls), +(45,219,o), +(34,209,o), +(35,197,cs), +(51,58,o), +(191,-10,o), +(360,-10,cs) +); +} +); +width = 733; +} +); +unicode = 1069; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 541; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 159; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 204; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 296; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "I-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (126,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = I; +} +); +width = 251; +}, +{ +anchors = ( +{ +name = top; +pos = (184,700); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = I; +} +); +width = 368; +} +); +unicode = 1030; +}, +{ +color = 10; +glyphname = "Yi-cy"; +kernLeft = afii10026; +kernRight = afii10026; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-62,180); +ref = dieresiscomb; +} +); +width = 251; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = I; +}, +{ +pos = (-71,180); +ref = dieresiscomb; +} +); +width = 368; +} +); +unicode = 1031; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 101; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "Je-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = J; +} +); +width = 618; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = J; +} +); +width = 702; +} +); +unicode = 1032; +}, +{ +color = 6; +glyphname = "Tshe-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,0,ls), +(241,0,o), +(250,9,o), +(250,22,cs), +(250,278,ls), +(250,379,o), +(362,398,o), +(430,398,cs), +(538,398,o), +(585,351,o), +(585,251,cs), +(585,22,ls), +(585,9,o), +(594,0,o), +(608,0,cs), +(626,0,ls), +(639,0,o), +(648,9,o), +(648,22,cs), +(648,256,ls), +(648,386,o), +(576,458,o), +(438,458,cs), +(373,458,o), +(280,442,o), +(250,393,c), +(250,640,l), +(477,640,ls), +(491,640,o), +(500,649,o), +(500,662,cs), +(500,677,ls), +(500,691,o), +(491,700,o), +(477,700,cs), +(49,700,ls), +(36,700,o), +(27,691,o), +(27,677,cs), +(27,662,ls), +(27,649,o), +(36,640,o), +(49,640,cs), +(187,640,l), +(187,22,ls), +(187,9,o), +(196,0,o), +(210,0,cs) +); +} +); +width = 708; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(380,0,ls), +(395,0,o), +(407,12,o), +(407,27,cs), +(407,208,ls), +(407,234,o), +(443,239,o), +(475,239,cs), +(522,239,o), +(542,227,o), +(542,202,cs), +(542,27,ls), +(542,12,o), +(554,0,o), +(569,0,cs), +(765,0,ls), +(780,0,o), +(792,12,o), +(792,27,cs), +(792,223,ls), +(792,388,o), +(712,467,o), +(539,467,cs), +(491,467,o), +(439,453,o), +(407,437,c), +(407,523,l), +(614,523,ls), +(627,523,o), +(637,533,o), +(637,546,cs), +(637,677,ls), +(637,690,o), +(627,700,o), +(614,700,cs), +(40,700,ls), +(27,700,o), +(17,690,o), +(17,677,cs), +(17,546,ls), +(17,533,o), +(27,523,o), +(40,523,cs), +(157,523,l), +(157,27,ls), +(157,12,o), +(169,0,o), +(184,0,cs) +); +} +); +width = 830; +} +); +metricLeft = T; +metricRight = "=|Che-cy"; +unicode = 1035; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 413; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "Iu-cy"; +kernLeft = afii10026; +kernRight = afii10032; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (457,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(779,-10,o), +(842,117,o), +(847,266,cs), +(849,326,o), +(849,374,o), +(847,434,cs), +(842,579,o), +(779,710,o), +(583,710,cs), +(387,710,o), +(324,579,o), +(319,434,cs), +(318,417,o), +(317,400,o), +(317,385,c), +(157,385,l), +(157,678,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,678,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs), +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,325,l), +(317,325,l), +(317,306,o), +(318,287,o), +(319,266,cs), +(324,117,o), +(387,-10,o), +(583,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(469,50,o), +(387,110,o), +(382,266,cs), +(380,326,o), +(380,374,o), +(382,434,cs), +(387,590,o), +(470,650,o), +(583,650,cs), +(696,650,o), +(779,590,o), +(784,434,cs), +(786,374,o), +(786,326,o), +(784,266,cs), +(779,110,o), +(697,50,o), +(583,50,cs) +); +} +); +width = 914; +}, +{ +anchors = ( +{ +name = top; +pos = (555,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(935,-10,o), +(1065,81,o), +(1073,260,cs), +(1075,314,o), +(1075,379,o), +(1073,436,cs), +(1066,611,o), +(935,710,o), +(739,710,cs), +(556,710,o), +(430,624,o), +(408,471,cs), +(408,469,o), +(407,466,o), +(407,463,c), +(305,463,l), +(305,673,l), +(305,688,o), +(293,700,o), +(278,700,c), +(82,700,l), +(67,700,o), +(55,688,o), +(55,673,c), +(55,27,l), +(55,11,o), +(67,0,o), +(82,0,c), +(278,0,l), +(293,0,o), +(305,12,o), +(305,27,c), +(305,243,l), +(406,243,l), +(406,241,o), +(406,240,o), +(407,238,cs), +(425,73,o), +(551,-10,o), +(739,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(695,185,o), +(667,210,o), +(665,266,cs), +(663,323,o), +(663,379,o), +(665,434,cs), +(667,490,o), +(696,515,o), +(739,515,cs), +(782,515,o), +(811,490,o), +(813,434,cs), +(815,379,o), +(815,323,o), +(813,266,cs), +(811,210,o), +(783,185,o), +(739,185,cs) +); +} +); +width = 1110; +} +); +unicode = 1070; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 355; +} +); +}; +}, +{ +color = 6; +glyphname = "Ia-cy"; +kernRight = afii10026; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (321,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(526,0,l), +(539,0,o), +(548,9,o), +(548,22,cs), +(548,678,ls), +(548,691,o), +(539,700,o), +(526,700,cs), +(312,700,ls), +(166,700,o), +(102,589,o), +(102,486,cs), +(102,350,o), +(178,277,o), +(312,277,cs), +(485,277,l), +(485,22,ls), +(485,9,o), +(494,0,o), +(508,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,0,ls), +(144,0,o), +(151,13,o), +(160,27,cs), +(347,310,l), +(282,319,l), +(93,31,ls), +(91,27,o), +(90,24,o), +(90,20,cs), +(90,9,o), +(99,0,o), +(110,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(215,337,o), +(165,386,o), +(165,483,cs), +(165,578,o), +(223,640,o), +(322,640,cs), +(485,640,l), +(485,337,l), +(322,337,l) +); +} +); +width = 642; +}, +{ +anchors = ( +{ +name = top; +pos = (369,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(655,0,ls), +(670,0,o), +(682,12,o), +(682,27,cs), +(682,673,ls), +(682,688,o), +(670,700,o), +(655,700,cs), +(359,700,ls), +(167,700,o), +(53,609,o), +(53,457,cs), +(53,314,o), +(170,218,o), +(323,218,cs), +(432,218,l), +(432,27,ls), +(432,12,o), +(444,0,o), +(459,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,0,ls), +(286,0,o), +(300,14,o), +(305,27,c), +(398,233,l), +(169,275,l), +(38,33,ls), +(36,29,o), +(35,25,o), +(35,22,cs), +(35,10,o), +(45,0,o), +(57,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(330,408,o), +(313,430,o), +(313,459,cs), +(313,488,o), +(328,514,o), +(359,514,cs), +(432,514,l), +(432,408,l), +(359,408,ls) +); +} +); +width = 737; +} +); +metricRight = "En-cy"; +unicode = 1071; +}, +{ +color = 6; +glyphname = "Dje-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(228,0,ls), +(241,0,o), +(250,9,o), +(250,22,cs), +(250,278,ls), +(250,379,o), +(362,398,o), +(430,398,cs), +(538,398,o), +(585,351,o), +(585,251,cs), +(585,218,ls), +(585,130,o), +(549,60,o), +(409,60,cs), +(405,60,ls), +(392,60,o), +(383,51,o), +(383,38,cs), +(383,22,ls), +(383,9,o), +(392,0,o), +(405,0,cs), +(409,0,ls), +(582,0,o), +(648,96,o), +(648,218,cs), +(648,256,ls), +(648,386,o), +(576,458,o), +(438,458,cs), +(373,458,o), +(280,442,o), +(250,393,c), +(250,640,l), +(477,640,ls), +(491,640,o), +(500,649,o), +(500,662,cs), +(500,677,ls), +(500,691,o), +(491,700,o), +(477,700,cs), +(49,700,ls), +(36,700,o), +(27,691,o), +(27,677,cs), +(27,662,ls), +(27,649,o), +(36,640,o), +(49,640,cs), +(187,640,l), +(187,22,ls), +(187,9,o), +(196,0,o), +(210,0,cs) +); +} +); +width = 688; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(380,0,ls), +(395,0,o), +(407,12,o), +(407,27,cs), +(407,228,l), +(407,244,o), +(423,259,o), +(475,259,cs), +(522,259,o), +(542,248,o), +(542,222,cs), +(542,219,ls), +(542,195,o), +(528,180,o), +(485,180,cs), +(465,180,ls), +(450,180,o), +(438,168,o), +(438,153,cs), +(438,27,ls), +(438,12,o), +(450,0,o), +(465,0,cs), +(485,0,ls), +(674,0,o), +(792,63,o), +(792,218,cs), +(792,243,ls), +(792,407,o), +(713,487,o), +(539,487,cs), +(488,487,o), +(436,472,o), +(407,457,c), +(407,523,l), +(614,523,ls), +(627,523,o), +(637,533,o), +(637,546,cs), +(637,677,ls), +(637,690,o), +(627,700,o), +(614,700,cs), +(40,700,ls), +(27,700,o), +(17,690,o), +(17,677,cs), +(17,546,ls), +(17,533,o), +(27,523,o), +(40,523,cs), +(157,523,l), +(157,27,ls), +(157,12,o), +(169,0,o), +(184,0,cs) +); +} +); +width = 822; +} +); +metricLeft = T; +unicode = 1026; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 413; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 485; +y = 0; +} +); +}; +}, +{ +color = 3; +glyphname = "Yat-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(417,530,l), +(431,530,o), +(440,539,o), +(440,552,cs), +(440,567,ls), +(440,581,o), +(431,590,o), +(417,590,cs), +(49,590,ls), +(36,590,o), +(27,581,o), +(27,567,cs), +(27,552,ls), +(27,539,o), +(36,530,o), +(49,530,c) +); +}, +{ +pos = (59,0); +ref = "Softsign-cy"; +} +); +width = 639; +}, +{ +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(532,520,l), +(545,520,o), +(555,530,o), +(555,543,cs), +(555,620,ls), +(555,633,o), +(548,643,o), +(532,643,c), +(40,643,l), +(24,643,o), +(17,633,o), +(17,620,cs), +(17,543,ls), +(17,530,o), +(27,520,o), +(40,520,c) +); +}, +{ +pos = (77,0); +ref = "Softsign-cy"; +} +); +width = 782; +} +); +metricLeft = T; +metricRight = "Softsign-cy"; +unicode = 1122; +}, +{ +color = 6; +glyphname = "Yusbig-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(88,0,ls), +(96,0,o), +(104,5,o), +(107,13,cs), +(195,246,ls), +(218,305,o), +(240,325,o), +(302,325,cs), +(394,325,l), +(394,22,ls), +(394,9,o), +(403,0,o), +(417,0,cs), +(435,0,ls), +(448,0,o), +(457,9,o), +(457,22,cs), +(457,325,l), +(549,325,ls), +(611,325,o), +(633,305,o), +(656,246,cs), +(744,13,ls), +(747,5,o), +(755,0,o), +(763,0,cs), +(783,0,ls), +(800,0,o), +(811,17,o), +(804,35,cs), +(716,268,ls), +(681,360,o), +(630,384,o), +(549,384,cs), +(495,384,l), +(732,667,ls), +(735,671,o), +(736,675,o), +(736,680,cs), +(736,691,o), +(727,700,o), +(716,700,cs), +(136,700,ls), +(125,700,o), +(116,691,o), +(116,680,cs), +(116,675,o), +(117,671,o), +(120,667,cs), +(354,384,l), +(302,384,ls), +(221,384,o), +(170,360,o), +(135,268,cs), +(47,35,ls), +(40,17,o), +(51,0,o), +(68,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(218,640,l), +(636,640,l), +(426,390,l) +); +} +); +width = 851; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(232,0,ls), +(257,0,o), +(269,7,o), +(273,23,c), +(313,160,ls), +(322,192,o), +(340,208,o), +(365,208,cs), +(379,208,l), +(379,27,ls), +(379,12,o), +(391,0,o), +(406,0,cs), +(602,0,ls), +(617,0,o), +(629,12,o), +(629,27,cs), +(629,208,l), +(643,208,ls), +(668,208,o), +(686,192,o), +(695,160,cs), +(734,23,ls), +(738,7,o), +(750,0,o), +(775,0,cs), +(977,0,ls), +(994,0,o), +(1001,19,o), +(996,33,cs), +(927,242,ls), +(892,348,o), +(829,391,o), +(735,399,c), +(727,399,l), +(981,662,ls), +(988,669,o), +(989,673,o), +(989,678,cs), +(989,689,o), +(978,700,o), +(966,700,cs), +(42,700,ls), +(30,700,o), +(21,689,o), +(21,677,cs), +(21,672,o), +(22,668,o), +(25,665,cs), +(270,398,l), +(262,398,l), +(175,390,o), +(114,347,o), +(80,242,cs), +(11,33,ls), +(7,20,o), +(12,0,o), +(30,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(406,520,l), +(596,520,l), +(499,403,l) +); +} +); +width = 1008; +} +); +metricLeft = "Zhe-cy"; +metricRight = "Zhe-cy"; +unicode = 1130; +}, +{ +color = 3; +glyphname = "Fita-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(573,325,l), +(573,385,l), +(107,385,l), +(107,325,l) +); +}, +{ +ref = O; +} +); +width = 662; +}, +{ +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(462,289,l), +(462,411,l), +(280,411,l), +(280,289,l) +); +}, +{ +ref = O; +} +); +width = 742; +} +); +metricLeft = O; +metricRight = O; +unicode = 1138; +}, +{ +color = 6; +glyphname = "Izhitsa-cy"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (322,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(333,0,ls), +(351,0,o), +(361,8,o), +(367,24,cs), +(521,511,ls), +(555,618,o), +(577,650,o), +(623,650,cs), +(626,650,ls), +(636,650,o), +(644,660,o), +(644,672,cs), +(644,688,ls), +(644,704,o), +(639,710,o), +(629,710,cs), +(623,710,ls), +(544,710,o), +(504,658,o), +(463,527,cs), +(320,72,l), +(101,681,ls), +(97,691,o), +(91,700,o), +(78,700,cs), +(57,700,ls), +(41,700,o), +(34,683,o), +(39,669,cs), +(271,24,ls), +(277,8,o), +(287,0,o), +(305,0,cs) +); +} +); +width = 644; +}, +{ +anchors = ( +{ +name = top; +pos = (368,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(477,0,ls), +(502,0,o), +(517,16,o), +(522,33,cs), +(634,414,ls), +(644,450,o), +(660,468,o), +(682,468,cs), +(708,468,ls), +(723,468,o), +(735,480,o), +(735,495,cs), +(736,672,ls), +(736,688,o), +(725,700,o), +(710,700,cs), +(664,700,ls), +(537,700,o), +(460,635,o), +(419,492,cs), +(363,295,l), +(268,667,l), +(263,684,o), +(248,700,o), +(223,700,cs), +(37,700,ls), +(20,700,o), +(12,685,o), +(16,671,cs), +(204,33,ls), +(209,16,o), +(224,0,o), +(249,0,cs) +); +} +); +width = 736; +} +); +metricLeft = V; +unicode = 1140; +}, +{ +color = 3; +glyphname = "Zhedescender-cy"; +layers = ( +{ +anchors = ( +{ +name = _bottomright; +pos = (867,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(940,-140,ls), +(954,-140,o), +(963,-131,o), +(963,-118,cs), +(963,38,ls), +(963,51,o), +(954,60,o), +(940,60,cs), +(827,60,l), +(878,0,l), +(900,0,l), +(900,-118,ls), +(900,-131,o), +(909,-140,o), +(922,-140,cs) +); +}, +{ +ref = "Zhe-cy"; +} +); +width = 973; +}, +{ +anchors = ( +{ +name = _bottomright; +pos = (953,0); +} +); +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(1129,-140,ls), +(1144,-140,o), +(1156,-128,o), +(1156,-113,cs), +(1156,193,ls), +(1156,208,o), +(1144,220,o), +(1129,220,cs), +(834,220,l), +(884,0,l), +(906,0,l), +(906,-113,ls), +(906,-128,o), +(918,-140,o), +(933,-140,cs) +); +}, +{ +ref = "Zhe-cy"; +} +); +width = 1176; +} +); +metricLeft = "Zhe-cy"; +metricRight = "Kadescender-cy"; +unicode = 1174; +}, +{ +color = 3; +glyphname = "Zedescender-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(315,-140,ls), +(329,-140,o), +(338,-131,o), +(338,-118,cs), +(338,38,l), +(275,0,l), +(275,-118,ls), +(275,-131,o), +(284,-140,o), +(297,-140,cs) +); +}, +{ +ref = "Ze-cy"; +} +); +width = 599; +}, +{ +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(451,-140,ls), +(466,-140,o), +(478,-128,o), +(478,-113,cs), +(478,63,l), +(228,60,l), +(228,-113,ls), +(228,-128,o), +(240,-140,o), +(255,-140,cs) +); +}, +{ +ref = "Ze-cy"; +} +); +width = 715; +} +); +metricLeft = "Ze-cy"; +metricRight = "Ze-cy"; +unicode = 1176; +}, +{ +color = 10; +glyphname = "Kadescender-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +alignment = -1; +ref = "Ka-cy"; +}, +{ +alignment = -1; +pos = (499,0); +ref = "descender-cy.case"; +} +); +width = 645; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Ka-cy"; +}, +{ +alignment = -1; +pos = (444,0); +ref = "descender-cy.case"; +} +); +width = 786; +} +); +metricLeft = "En-cy"; +unicode = 1178; +}, +{ +color = 6; +glyphname = "Kaverticalstroke-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,325,l), +(234,325,l), +(234,225,ls), +(234,212,o), +(243,203,o), +(256,203,cs), +(260,203,ls), +(273,203,o), +(282,212,o), +(282,225,cs), +(282,325,l), +(296,325,l), +(506,13,ls), +(511,5,o), +(517,0,o), +(529,0,cs), +(546,0,ls), +(559,0,o), +(569,11,o), +(569,24,cs), +(569,28,o), +(569,32,o), +(567,35,cs), +(352,360,l), +(547,667,ls), +(550,672,o), +(552,676,o), +(552,680,cs), +(552,691,o), +(547,700,o), +(532,700,cs), +(516,700,ls), +(500,700,o), +(490,695,o), +(483,685,cs), +(293,385,l), +(282,385,l), +(282,490,ls), +(282,503,o), +(273,512,o), +(260,512,cs), +(256,512,ls), +(243,512,o), +(234,503,o), +(234,490,cs), +(234,385,l), +(157,385,l), +(157,677,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs) +); +} +); +width = 614; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,273,l), +(327,273,l), +(327,202,ls), +(327,187,o), +(339,175,o), +(354,175,cs), +(366,175,ls), +(381,175,o), +(393,187,o), +(393,202,cs), +(393,271,l), +(393,272,l), +(532,23,ls), +(535,17,o), +(546,0,o), +(573,0,cs), +(801,0,ls), +(813,0,o), +(823,10,o), +(823,22,cs), +(823,25,o), +(822,30,o), +(820,33,cs), +(623,365,l), +(803,667,ls), +(805,670,o), +(806,674,o), +(806,678,cs), +(806,690,o), +(796,700,o), +(784,700,cs), +(563,700,ls), +(541,700,o), +(529,689,o), +(523,678,cs), +(394,450,l), +(393,448,l), +(393,497,ls), +(393,512,o), +(381,524,o), +(366,524,cs), +(354,524,ls), +(339,524,o), +(327,512,o), +(327,497,cs), +(327,433,l), +(305,433,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,11,o), +(67,0,o), +(82,0,cs) +); +} +); +width = 833; +} +); +metricRight = "Ka-cy"; +unicode = 1180; +}, +{ +color = 6; +glyphname = "Kabashkir-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,360,l), +(700,667,ls), +(703,672,o), +(705,676,o), +(705,680,cs), +(705,691,o), +(700,700,o), +(685,700,cs), +(669,700,ls), +(653,700,o), +(643,695,o), +(636,685,c), +(445,385,l), +(310,385,l), +(310,677,ls), +(310,691,o), +(301,700,o), +(287,700,cs), +(49,700,ls), +(36,700,o), +(27,691,o), +(27,677,cs), +(27,662,ls), +(27,649,o), +(36,640,o), +(49,640,cs), +(247,640,l), +(247,22,ls), +(247,9,o), +(256,0,o), +(269,0,cs), +(287,0,ls), +(301,0,o), +(310,9,o), +(310,22,cs), +(310,325,l), +(449,325,l), +(659,13,ls), +(664,5,o), +(670,0,o), +(682,0,cs), +(699,0,ls), +(712,0,o), +(722,11,o), +(722,24,cs), +(722,28,o), +(722,32,o), +(720,35,cs) +); +} +); +width = 767; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(698,365,l), +(878,667,l), +(880,670,o), +(881,674,o), +(881,678,cs), +(881,690,o), +(871,700,o), +(859,700,cs), +(638,700,ls), +(616,700,o), +(604,689,o), +(598,678,cs), +(476,463,l), +(460,463,l), +(460,673,ls), +(460,688,o), +(448,700,o), +(433,700,cs), +(44,700,ls), +(29,700,o), +(17,688,o), +(17,673,cs), +(17,512,ls), +(17,497,o), +(29,485,o), +(44,485,cs), +(210,485,l), +(210,27,ls), +(210,11,o), +(222,0,o), +(237,0,cs), +(433,0,ls), +(448,0,o), +(460,12,o), +(460,27,cs), +(460,243,l), +(484,243,l), +(607,23,l), +(611,17,o), +(621,0,o), +(648,0,cs), +(876,0,ls), +(888,0,o), +(898,10,o), +(898,22,cs), +(898,25,o), +(897,30,o), +(895,33,c) +); +} +); +width = 908; +} +); +metricLeft = "Te-cy"; +metricRight = "Ka-cy"; +unicode = 1184; +}, +{ +color = 10; +glyphname = "Endescender-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +alignment = -1; +pos = (543,0); +ref = "descender-cy.case"; +}, +{ +alignment = -1; +ref = "En-cy"; +} +); +width = 714; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +alignment = -1; +pos = (467,0); +ref = "descender-cy.case"; +}, +{ +ref = "En-cy"; +} +); +width = 819; +} +); +metricRight = "Tse-cy"; +unicode = 1186; +}, +{ +color = 6; +glyphname = "Enghe-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,700,ls), +(552,700,o), +(543,691,o), +(543,677,cs), +(543,385,l), +(157,385,l), +(157,677,ls), +(157,691,o), +(148,700,o), +(134,700,cs), +(116,700,ls), +(103,700,o), +(94,691,o), +(94,677,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(116,0,cs), +(134,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,325,l), +(543,325,l), +(543,22,ls), +(543,9,o), +(552,0,o), +(565,0,cs), +(583,0,ls), +(597,0,o), +(606,9,o), +(606,22,cs), +(606,640,l), +(891,640,ls), +(905,640,o), +(914,649,o), +(914,662,cs), +(914,677,ls), +(914,691,o), +(905,700,o), +(891,700,cs) +); +} +); +width = 914; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(494,700,ls), +(479,700,o), +(467,688,o), +(467,673,cs), +(467,463,l), +(305,463,l), +(305,673,ls), +(305,688,o), +(293,700,o), +(278,700,cs), +(82,700,ls), +(67,700,o), +(55,688,o), +(55,673,cs), +(55,27,ls), +(55,11,o), +(67,0,o), +(82,0,cs), +(278,0,ls), +(293,0,o), +(305,12,o), +(305,27,cs), +(305,243,l), +(467,243,l), +(467,27,ls), +(467,12,o), +(479,0,o), +(494,0,cs), +(690,0,ls), +(705,0,o), +(717,12,o), +(717,27,cs), +(717,495,l), +(914,495,ls), +(929,495,o), +(941,507,o), +(941,522,cs), +(941,673,ls), +(941,688,o), +(929,700,o), +(914,700,cs) +); +} +); +width = 961; +} +); +metricLeft = "En-cy"; +metricRight = "Ge-cy"; +unicode = 1188; +}, +{ +color = 10; +glyphname = "Pedescender-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +alignment = -1; +ref = "Pe-cy"; +}, +{ +alignment = -1; +pos = (543,0); +ref = "descender-cy.case"; +} +); +width = 714; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Pe-cy"; +}, +{ +alignment = -1; +pos = (466,0); +ref = "descender-cy.case"; +} +); +width = 818; +} +); +metricRight = "Tse-cy"; +unicode = 1316; +}, +{ +color = 3; +glyphname = "Esdescender-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(341,-140,ls), +(355,-140,o), +(364,-131,o), +(364,-118,cs), +(364,38,l), +(301,0,l), +(301,-118,ls), +(301,-131,o), +(310,-140,o), +(323,-140,cs) +); +}, +{ +ref = "Es-cy"; +} +); +width = 651; +}, +{ +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(471,-140,ls), +(486,-140,o), +(498,-128,o), +(498,-113,cs), +(498,63,l), +(248,60,l), +(248,-113,ls), +(248,-128,o), +(260,-140,o), +(275,-140,cs) +); +}, +{ +ref = "Es-cy"; +} +); +width = 733; +} +); +unicode = 1194; +}, +{ +color = 6; +glyphname = "Ustrait-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(314,0,ls), +(328,0,o), +(337,9,o), +(337,22,cs), +(337,267,l), +(581,667,ls), +(583,671,o), +(585,675,o), +(585,680,cs), +(585,691,o), +(576,700,o), +(565,700,cs), +(545,700,ls), +(536,700,o), +(528,695,o), +(522,685,cs), +(305,332,l), +(88,685,ls), +(82,695,o), +(74,700,o), +(65,700,cs), +(45,700,ls), +(34,700,o), +(25,691,o), +(25,680,cs), +(25,675,o), +(27,671,o), +(29,667,cs), +(273,267,l), +(273,22,ls), +(273,9,o), +(282,0,o), +(295,0,cs) +); +} +); +width = 610; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(453,0,ls), +(468,0,o), +(480,12,o), +(480,27,cs), +(480,224,l), +(705,669,ls), +(706,671,o), +(707,675,o), +(707,678,cs), +(707,690,o), +(697,700,o), +(685,700,cs), +(497,700,ls), +(470,700,o), +(458,681,o), +(455,675,cs), +(355,474,l), +(255,675,ls), +(252,681,o), +(240,700,o), +(213,700,cs), +(25,700,ls), +(13,700,o), +(3,690,o), +(3,678,cs), +(3,675,o), +(4,671,o), +(5,669,cs), +(230,224,l), +(230,27,ls), +(230,12,o), +(242,0,o), +(257,0,cs) +); +} +); +width = 710; +} +); +unicode = 1198; +}, +{ +color = 3; +glyphname = "Ustraitstroke-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(439,231,ls), +(452,231,o), +(461,240,o), +(461,253,cs), +(461,267,ls), +(461,280,o), +(452,289,o), +(439,289,cs), +(154,289,ls), +(141,289,o), +(132,280,o), +(132,267,cs), +(132,253,ls), +(132,240,o), +(141,231,o), +(154,231,cs) +); +}, +{ +ref = "Ustrait-cy"; +} +); +width = 632; +}, +{ +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(573,167,ls), +(588,167,o), +(600,179,o), +(600,194,cs), +(600,265,ls), +(600,280,o), +(588,292,o), +(573,292,cs), +(130,292,ls), +(115,292,o), +(103,280,o), +(103,265,cs), +(103,194,ls), +(103,179,o), +(115,167,o), +(130,167,cs) +); +}, +{ +ref = "Ustrait-cy"; +} +); +width = 710; +} +); +unicode = 1200; +}, +{ +color = 10; +glyphname = "Chedescender-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +alignment = -1; +ref = "Che-cy"; +}, +{ +alignment = -1; +pos = (479,0); +ref = "descender-cy.case"; +} +); +width = 650; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Che-cy"; +}, +{ +alignment = -1; +pos = (423,0); +ref = "descender-cy.case"; +} +); +width = 775; +} +); +metricLeft = "Che-cy"; +metricRight = "Tse-cy"; +unicode = 1206; +}, +{ +color = 6; +glyphname = "Cheverticalstroke-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(518,0,ls), +(532,0,o), +(541,9,o), +(541,22,cs), +(541,678,ls), +(541,691,o), +(532,700,o), +(518,700,cs), +(500,700,ls), +(487,700,o), +(478,691,o), +(478,678,cs), +(478,422,ls), +(478,321,o), +(366,302,o), +(298,302,cs), +(170,302,o), +(123,349,o), +(123,449,cs), +(123,678,ls), +(123,691,o), +(114,700,o), +(100,700,cs), +(82,700,ls), +(69,700,o), +(60,691,o), +(60,678,cs), +(60,444,ls), +(60,314,o), +(132,242,o), +(290,242,cs), +(355,242,o), +(448,258,o), +(478,297,c), +(478,22,ls), +(478,9,o), +(487,0,o), +(500,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(314,135,ls), +(327,135,o), +(336,144,o), +(336,157,cs), +(336,422,ls), +(336,435,o), +(327,444,o), +(314,444,cs), +(310,444,ls), +(297,444,o), +(288,435,o), +(288,422,cs), +(288,157,ls), +(288,144,o), +(297,135,o), +(310,135,cs) +); +} +); +width = 635; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(676,0,ls), +(691,0,o), +(703,12,o), +(703,27,cs), +(703,673,ls), +(703,688,o), +(691,700,o), +(676,700,cs), +(480,700,ls), +(465,700,o), +(453,688,o), +(453,673,cs), +(453,390,ls), +(453,376,o), +(409,364,o), +(375,364,cs), +(314,364,o), +(288,384,o), +(288,431,cs), +(288,673,ls), +(288,688,o), +(276,700,o), +(261,700,cs), +(65,700,ls), +(50,700,o), +(38,688,o), +(38,673,cs), +(38,461,ls), +(38,265,o), +(122,176,o), +(321,176,cs), +(374,176,o), +(418,186,o), +(453,206,c), +(453,27,ls), +(453,12,o), +(465,0,o), +(480,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(387,97,ls), +(402,97,o), +(414,109,o), +(414,124,cs), +(414,429,ls), +(414,444,o), +(402,456,o), +(387,456,cs), +(375,456,ls), +(360,456,o), +(348,444,o), +(348,429,cs), +(348,124,ls), +(348,109,o), +(360,97,o), +(375,97,cs) +); +} +); +width = 767; +} +); +metricLeft = "Che-cy"; +unicode = 1208; +}, +{ +color = 6; +glyphname = "Shha-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (615,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(117,700,ls), +(103,700,o), +(94,691,o), +(94,678,cs), +(94,22,ls), +(94,9,o), +(103,0,o), +(117,0,cs), +(135,0,ls), +(148,0,o), +(157,9,o), +(157,22,cs), +(157,278,ls), +(157,379,o), +(269,398,o), +(337,398,cs), +(465,398,o), +(512,351,o), +(512,251,cs), +(512,22,ls), +(512,9,o), +(521,0,o), +(535,0,cs), +(553,0,ls), +(566,0,o), +(575,9,o), +(575,22,cs), +(575,256,ls), +(575,386,o), +(503,458,o), +(345,458,cs), +(280,458,o), +(187,442,o), +(157,403,c), +(157,678,ls), +(157,691,o), +(148,700,o), +(135,700,cs) +); +} +); +width = 635; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (717,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,700,ls), +(76,700,o), +(64,688,o), +(64,673,cs), +(64,27,ls), +(64,12,o), +(76,0,o), +(91,0,cs), +(287,0,ls), +(302,0,o), +(314,12,o), +(314,27,cs), +(314,270,ls), +(314,284,o), +(352,296,o), +(382,296,cs), +(429,296,o), +(449,276,o), +(449,229,cs), +(449,27,ls), +(449,12,o), +(461,0,o), +(476,0,cs), +(672,0,ls), +(687,0,o), +(699,12,o), +(699,27,cs), +(699,239,ls), +(700,435,o), +(612,524,o), +(436,524,cs), +(387,524,o), +(346,514,o), +(314,494,c), +(314,673,ls), +(314,688,o), +(302,700,o), +(287,700,cs) +); +} +); +width = 737; +} +); +unicode = 1210; +}, +{ +color = 10; +glyphname = "Palochka-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = I; +} +); +width = 251; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = I; +} +); +width = 368; +} +); +unicode = 1216; +}, +{ +color = 10; +glyphname = "Zhebreve-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Zhe-cy"; +}, +{ +pos = (294,0); +ref = "brevecomb-cy.case"; +} +); +width = 957; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Zhe-cy"; +}, +{ +pos = (271,0); +ref = "brevecomb-cy.case"; +} +); +width = 1136; +} +); +unicode = 1217; +}, +{ +color = 3; +glyphname = "Chekhakassian-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(459,-140,o), +(468,-131,o), +(468,-118,cs), +(468,0,l), +(511,0,l), +(514,60,l), +(428,60,ls), +(414,60,o), +(405,51,o), +(405,38,cs), +(405,-118,ls), +(405,-131,o), +(414,-140,o), +(428,-140,cs), +(446,-140,ls) +); +}, +{ +ref = "Che-cy"; +} +); +width = 635; +}, +{ +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(589,-140,o), +(601,-128,o), +(601,-113,cs), +(601,0,l), +(623,0,l), +(673,120,l), +(378,120,ls), +(363,120,o), +(351,108,o), +(351,93,cs), +(351,-113,ls), +(351,-128,o), +(363,-140,o), +(378,-140,cs), +(574,-140,ls) +); +}, +{ +ref = "Che-cy"; +} +); +width = 737; +} +); +unicode = 1227; +}, +{ +color = 10; +glyphname = "Abreve-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "A-cy"; +}, +{ +pos = (140,0); +ref = "brevecomb-cy.case"; +} +); +width = 650; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "A-cy"; +}, +{ +pos = (81,0); +ref = "brevecomb-cy.case"; +} +); +width = 755; +} +); +unicode = 1232; +}, +{ +color = 10; +glyphname = "Adieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "A-cy"; +}, +{ +pos = (137,180); +ref = dieresiscomb; +} +); +width = 650; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "A-cy"; +}, +{ +pos = (123,180); +ref = dieresiscomb; +} +); +width = 755; +} +); +unicode = 1234; +}, +{ +color = 10; +glyphname = "Aie-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = AE; +} +); +width = 920; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = AE; +} +); +width = 1005; +} +); +metricLeft = AE; +metricRight = AE; +unicode = 1236; +}, +{ +color = 10; +glyphname = "Iebreve-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Ie-cy"; +}, +{ +pos = (131,0); +ref = "brevecomb-cy.case"; +} +); +width = 592; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Ie-cy"; +}, +{ +pos = (57,0); +ref = "brevecomb-cy.case"; +} +); +width = 667; +} +); +unicode = 1238; +}, +{ +color = 6; +glyphname = "Schwa-cy"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (328,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(583,595,o), +(505,710,o), +(323,710,cs), +(145,710,o), +(80,603,o), +(73,519,cs), +(72,507,o), +(82,499,o), +(94,499,cs), +(114,499,ls), +(125,499,o), +(133,504,o), +(136,520,cs), +(157,621,o), +(225,650,o), +(323,650,cs), +(445,650,o), +(520,585,o), +(525,434,cs), +(526,416,o), +(526,397,o), +(526,379,c), +(97,379,ls), +(79,379,o), +(66,367,o), +(66,350,cs), +(66,329,ls), +(66,87,o), +(175,-10,o), +(330,-10,cs), +(505,-10,o), +(582,105,o), +(588,261,cs), +(590,315,o), +(590,382,o), +(588,439,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,50,o), +(129,134,o), +(129,315,cs), +(129,321,l), +(526,321,l), +(526,303,o), +(526,284,o), +(525,266,cs), +(520,115,o), +(445,50,o), +(330,50,cs) +); +} +); +width = 655; +}, +{ +anchors = ( +{ +name = top; +pos = (371,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(697,625,o), +(557,710,o), +(371,710,cs), +(199,710,o), +(51,612,o), +(51,473,cs), +(51,461,o), +(61,451,o), +(73,451,cs), +(268,451,ls), +(290,451,o), +(297,458,o), +(305,480,c), +(317,509,o), +(341,515,o), +(371,515,cs), +(415,515,o), +(443,495,o), +(445,434,cs), +(445,426,o), +(446,419,o), +(446,411,c), +(72,411,ls), +(52,411,o), +(36,395,o), +(36,374,cs), +(36,351,ls), +(36,154,o), +(145,-10,o), +(370,-10,cs), +(562,-10,o), +(697,70,o), +(705,261,cs), +(707,315,o), +(707,382,o), +(705,439,cs) +); +}, +{ +closed = 1; +nodes = ( +(324,185,o), +(298,218,o), +(297,263,c), +(297,289,l), +(446,289,l), +(446,281,o), +(445,274,o), +(445,266,cs), +(443,205,o), +(415,185,o), +(371,185,cs) +); +} +); +width = 742; +} +); +metricLeft = O; +metricRight = O; +unicode = 1240; +}, +{ +color = 10; +glyphname = "Zhedieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Zhe-cy"; +}, +{ +pos = (291,180); +ref = dieresiscomb; +} +); +width = 957; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Zhe-cy"; +}, +{ +pos = (313,180); +ref = dieresiscomb; +} +); +width = 1136; +} +); +unicode = 1244; +}, +{ +color = 10; +glyphname = "Zedieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Ze-cy"; +}, +{ +pos = (100,180); +ref = dieresiscomb; +} +); +width = 599; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Ze-cy"; +}, +{ +pos = (103,180); +ref = dieresiscomb; +} +); +width = 715; +} +); +unicode = 1246; +}, +{ +color = 10; +glyphname = "Imacron-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (165,180); +ref = macroncomb; +} +); +width = 726; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (178,180); +ref = macroncomb; +} +); +width = 810; +} +); +unicode = 1250; +}, +{ +color = 10; +glyphname = "Idieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (169,180); +ref = dieresiscomb; +} +); +width = 726; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Ii-cy"; +}, +{ +pos = (160,180); +ref = dieresiscomb; +} +); +width = 810; +} +); +unicode = 1252; +}, +{ +color = 10; +glyphname = "Odieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "O-cy"; +}, +{ +pos = (143,180); +ref = dieresiscomb; +} +); +width = 662; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "O-cy"; +}, +{ +pos = (116,180); +ref = dieresiscomb; +} +); +width = 742; +} +); +unicode = 1254; +}, +{ +color = 3; +glyphname = "Obarred-cy"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (331,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(563,321,ls), +(576,321,o), +(585,330,o), +(585,343,cs), +(585,357,ls), +(585,370,o), +(576,379,o), +(563,379,cs), +(98,379,ls), +(85,379,o), +(76,370,o), +(76,357,cs), +(76,343,ls), +(76,330,o), +(85,321,o), +(98,321,cs) +); +}, +{ +ref = "O-cy"; +} +); +width = 662; +}, +{ +anchors = ( +{ +name = top; +pos = (371,700); +} +); +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(578,289,ls), +(593,289,o), +(605,301,o), +(605,316,cs), +(605,384,ls), +(605,399,o), +(593,411,o), +(578,411,cs), +(163,411,ls), +(148,411,o), +(136,399,o), +(136,384,cs), +(136,316,ls), +(136,301,o), +(148,289,o), +(163,289,cs) +); +}, +{ +ref = "O-cy"; +} +); +width = 742; +} +); +unicode = 1256; +}, +{ +color = 10; +glyphname = "Umacron-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (96,180); +ref = macroncomb; +} +); +width = 563; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (132,180); +ref = macroncomb; +} +); +width = 701; +} +); +unicode = 1262; +}, +{ +color = 10; +glyphname = "Udieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (100,180); +ref = dieresiscomb; +} +); +width = 563; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (114,180); +ref = dieresiscomb; +} +); +width = 701; +} +); +unicode = 1264; +}, +{ +color = 10; +glyphname = "Uhungarumlaut-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (113,180); +ref = hungarumlautcomb; +} +); +width = 563; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "U-cy"; +}, +{ +pos = (107,180); +ref = hungarumlautcomb; +} +); +width = 701; +} +); +unicode = 1266; +}, +{ +color = 10; +glyphname = "Chedieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Che-cy"; +}, +{ +pos = (106,180); +ref = dieresiscomb; +} +); +width = 635; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Che-cy"; +}, +{ +pos = (94,180); +ref = dieresiscomb; +} +); +width = 737; +} +); +unicode = 1268; +}, +{ +color = 10; +glyphname = "Yerudieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "Yeru-cy"; +}, +{ +pos = (198,180); +ref = dieresiscomb; +} +); +width = 771; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "Yeru-cy"; +}, +{ +pos = (269,180); +ref = dieresiscomb; +} +); +width = 1048; +} +); +unicode = 1272; +}, +{ +color = 10; +glyphname = "Qa-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = Q; +} +); +width = 662; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = Q; +} +); +width = 742; +} +); +unicode = 1306; +}, +{ +color = 10; +glyphname = "We-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = W; +} +); +width = 788; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = W; +} +); +width = 856; +} +); +unicode = 1308; +}, +{ +color = 10; +glyphname = "a-cy"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (273,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = a; +} +); +width = 536; +}, +{ +anchors = ( +{ +name = top; +pos = (321,520); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = a; +} +); +width = 622; +} +); +unicode = 1072; +}, +{ +color = 6; +glyphname = "be-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(432,-10,o), +(506,89,o), +(510,218,cs), +(511,231,o), +(511,252,o), +(510,272,cs), +(506,401,o), +(432,500,o), +(298,500,cs), +(201,500,o), +(111,431,o), +(106,346,c), +(126,346,l), +(114,614,o), +(211,611,o), +(459,678,cs), +(470,681,o), +(476,690,o), +(473,702,c), +(469,721,ls), +(467,732,o), +(455,739,o), +(444,736,cs), +(185,665,o), +(65,651,o), +(65,337,cs), +(65,297,o), +(65,258,o), +(65,218,c), +(69,89,o), +(144,-10,o), +(288,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,48,o), +(131,109,o), +(127,223,cs), +(126,235,o), +(126,247,o), +(127,267,cs), +(131,381,o), +(205,442,o), +(298,442,cs), +(381,442,o), +(445,381,o), +(449,267,cs), +(450,247,o), +(450,235,o), +(449,223,cs), +(445,109,o), +(381,48,o), +(288,48,cs) +); +} +); +width = 567; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(505,-10,o), +(601,58,o), +(611,189,cs), +(613,215,o), +(613,246,o), +(611,272,cs), +(601,403,o), +(521,471,o), +(365,471,cs), +(303,471,o), +(248,443,o), +(226,414,c), +(253,369,l), +(253,539,o), +(272,555,o), +(535,596,cs), +(550,598,o), +(559,612,o), +(556,629,cs), +(531,764,l), +(529,781,o), +(514,790,o), +(499,787,cs), +(155,718,o), +(45,666,o), +(31,406,cs), +(29,368,o), +(29,322,o), +(31,284,cs), +(42,67,o), +(118,-10,o), +(321,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,132,o), +(278,151,o), +(276,193,cs), +(275,211,o), +(275,250,o), +(276,268,cs), +(278,307,o), +(284,328,o), +(325,328,cs), +(360,328,o), +(364,307,o), +(366,268,cs), +(367,250,o), +(367,211,o), +(366,193,cs), +(364,151,o), +(359,132,o), +(321,132,cs) +); +} +); +width = 642; +} +); +metricRight = o; +unicode = 1073; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 730; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 231; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 55; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 493; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "ve-cy"; +kernLeft = afii10074; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(305,0,ls), +(412,0,o), +(482,50,o), +(482,145,cs), +(482,196,o), +(455,254,o), +(402,274,c), +(447,295,o), +(472,320,o), +(472,384,cs), +(472,466,o), +(410,520,o), +(300,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,c), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(142,233,l), +(297,233,ls), +(380,233,o), +(421,206,o), +(421,145,cs), +(421,87,o), +(370,58,o), +(297,58,cs), +(142,58,l) +); +}, +{ +closed = 1; +nodes = ( +(142,462,l), +(290,462,ls), +(363,462,o), +(411,442,o), +(411,384,cs), +(411,326,o), +(363,291,o), +(290,291,cs), +(142,291,l) +); +} +); +width = 542; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(349,0,ls), +(535,0,o), +(610,63,o), +(610,159,cs), +(610,212,o), +(583,244,o), +(544,267,c), +(570,289,o), +(590,321,o), +(590,364,cs), +(590,460,o), +(515,520,o), +(329,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,c) +); +}, +{ +closed = 1; +nodes = ( +(269,188,l), +(339,188,ls), +(362,188,o), +(375,182,o), +(375,162,cs), +(375,142,o), +(362,137,o), +(339,137,cs), +(269,137,l) +); +}, +{ +closed = 1; +nodes = ( +(269,383,l), +(339,383,ls), +(362,383,o), +(375,377,o), +(375,357,cs), +(375,337,o), +(363,332,o), +(339,332,cs), +(269,332,l) +); +} +); +width = 644; +} +); +metricLeft = "en-cy"; +unicode = 1074; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "ge-cy"; +kernLeft = afii10074; +kernRight = afii10068; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (113,0); +}, +{ +name = top; +pos = (263,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,462,l), +(386,462,ls), +(399,462,o), +(408,471,o), +(408,484,cs), +(408,498,ls), +(408,511,o), +(399,520,o), +(386,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +width = 418; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (150,0); +}, +{ +name = top; +pos = (261,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(266,0,o), +(278,12,o), +(278,27,cs), +(278,345,l), +(437,345,ls), +(452,345,o), +(464,357,o), +(464,372,cs), +(464,493,ls), +(464,508,o), +(452,520,o), +(437,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 484; +} +); +metricLeft = "en-cy"; +unicode = 1075; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 467; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "gje-cy"; +kernLeft = afii10074; +kernRight = afii10068; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "ge-cy"; +}, +{ +pos = (163,0); +ref = acutecomb; +} +); +width = 418; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "ge-cy"; +}, +{ +pos = (110,0); +ref = acutecomb; +} +); +width = 484; +} +); +unicode = 1107; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 268; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "gheupturn-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(369,650,ls), +(356,650,o), +(347,641,o), +(347,628,cs), +(347,520,l), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs), +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,462,l), +(386,462,ls), +(399,462,o), +(408,471,o), +(408,484,cs), +(408,628,ls), +(408,641,o), +(399,650,o), +(386,650,cs) +); +} +); +width = 418; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(258,630,ls), +(243,630,o), +(231,618,o), +(231,603,cs), +(231,520,l), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs), +(251,0,ls), +(266,0,o), +(278,12,o), +(278,27,cs), +(278,345,l), +(437,345,ls), +(452,345,o), +(464,357,o), +(464,372,cs), +(464,603,ls), +(464,618,o), +(452,630,o), +(437,630,cs) +); +} +); +width = 484; +} +); +metricLeft = "en-cy"; +metricRight = "ge-cy"; +unicode = 1169; +}, +{ +color = 10; +glyphname = "gedescender-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "ge-cy"; +}, +{ +pos = (82,0); +ref = "descender-cy"; +} +); +width = 418; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "ge-cy"; +}, +{ +pos = (46,0); +ref = "descender-cy"; +} +); +width = 484; +} +); +unicode = 1271; +}, +{ +color = 10; +glyphname = "ghestroke-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "ge-cy"; +}, +{ +pos = (-46,-40); +ref = strokeshortcomb; +} +); +width = 418; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "ge-cy"; +}, +{ +pos = (-65,-52); +ref = strokeshortcomb; +} +); +width = 484; +} +); +unicode = 1171; +}, +{ +color = 6; +glyphname = "ghemiddlehook-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,462,l), +(386,462,ls), +(399,462,o), +(408,471,o), +(408,484,cs), +(408,498,ls), +(408,511,o), +(399,520,o), +(386,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(142,193,l), +(142,243,o), +(185,262,o), +(258,262,cs), +(351,262,o), +(401,197,o), +(401,91,c), +(401,78,l), +(401,-39,o), +(383,-132,o), +(221,-132,c), +(217,-132,l), +(204,-132,o), +(195,-141,o), +(195,-154,c), +(195,-168,l), +(195,-181,o), +(204,-190,o), +(217,-190,c), +(221,-190,l), +(416,-190,o), +(462,-72,o), +(462,78,c), +(462,96,l), +(462,223,o), +(397,320,o), +(268,320,cs), +(210,320,o), +(173,306,o), +(142,277,c) +); +} +); +width = 482; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,0,ls), +(246,0,o), +(258,12,o), +(258,27,cs), +(258,345,l), +(437,345,ls), +(452,345,o), +(464,357,o), +(464,372,cs), +(464,493,ls), +(464,508,o), +(452,520,o), +(437,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(258,80,l), +(258,101,o), +(284,111,o), +(320,111,cs), +(362,111,o), +(380,92,o), +(380,56,cs), +(380,35,ls), +(380,2,o), +(366,-15,o), +(337,-15,cs), +(316,-15,ls), +(301,-15,o), +(289,-27,o), +(289,-42,cs), +(289,-163,ls), +(289,-178,o), +(301,-190,o), +(316,-190,cs), +(347,-190,ls), +(500,-190,o), +(610,-114,o), +(610,29,cs), +(610,63,ls), +(610,196,o), +(536,290,o), +(411,290,cs), +(349,290,o), +(298,278,o), +(258,256,c) +); +} +); +width = 625; +} +); +metricLeft = "en-cy"; +unicode = 1173; +}, +{ +color = 6; +glyphname = "de-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(59,-110,ls), +(72,-110,o), +(81,-101,o), +(81,-88,cs), +(81,0,l), +(480,0,l), +(480,-88,ls), +(480,-101,o), +(489,-110,o), +(502,-110,cs), +(519,-110,ls), +(532,-110,o), +(541,-101,o), +(541,-88,cs), +(541,38,ls), +(541,51,o), +(532,60,o), +(519,60,cs), +(470,60,l), +(470,498,ls), +(470,511,o), +(461,520,o), +(448,520,cs), +(160,520,ls), +(147,520,o), +(138,511,o), +(138,498,cs), +(138,375,ls), +(138,144,o), +(101,59,o), +(45,58,cs), +(42,58,ls), +(29,58,o), +(20,49,o), +(20,36,cs), +(20,-88,ls), +(20,-101,o), +(29,-110,o), +(42,-110,cs) +); +}, +{ +closed = 1; +nodes = ( +(175,111,o), +(199,208,o), +(199,368,cs), +(199,462,l), +(409,462,l), +(409,60,l), +(133,58,l) +); +} +); +width = 576; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,-110,ls), +(246,-110,o), +(258,-98,o), +(258,-83,cs), +(258,0,l), +(459,0,l), +(459,-83,ls), +(459,-98,o), +(471,-110,o), +(486,-110,cs), +(665,-110,ls), +(680,-110,o), +(692,-98,o), +(692,-83,cs), +(692,148,ls), +(692,163,o), +(680,175,o), +(665,175,cs), +(626,175,l), +(626,493,ls), +(626,508,o), +(614,520,o), +(599,520,cs), +(143,520,ls), +(128,520,o), +(116,508,o), +(116,493,cs), +(116,341,ls), +(116,249,o), +(114,175,o), +(66,175,cs), +(52,175,ls), +(37,175,o), +(25,163,o), +(25,148,cs), +(25,-83,ls), +(25,-98,o), +(37,-110,o), +(52,-110,cs) +); +}, +{ +closed = 1; +nodes = ( +(330,206,o), +(336,253,o), +(336,316,cs), +(336,345,l), +(393,345,l), +(393,175,l), +(318,175,l) +); +} +); +width = 704; +} +); +metricRight = "tse-cy"; +unicode = 1076; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 466; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 508; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "ie-cy"; +kernLeft = afii10080; +kernRight = afii10070; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (277,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = e; +} +); +width = 546; +}, +{ +anchors = ( +{ +name = top; +pos = (311,520); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = e; +} +); +width = 623; +} +); +unicode = 1077; +}, +{ +color = 10; +glyphname = "iegrave-cy"; +kernLeft = afii10080; +kernRight = afii10070; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "ie-cy"; +}, +{ +pos = (77,0); +ref = gravecomb; +} +); +width = 546; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "ie-cy"; +}, +{ +pos = (13,0); +ref = gravecomb; +} +); +width = 623; +} +); +unicode = 1104; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "io-cy"; +kernLeft = afii10080; +kernRight = afii10070; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "ie-cy"; +}, +{ +pos = (89,0); +ref = dieresiscomb; +} +); +width = 546; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "ie-cy"; +}, +{ +pos = (56,0); +ref = dieresiscomb; +} +); +width = 623; +} +); +unicode = 1105; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "zhe-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (729,0); +}, +{ +name = top; +pos = (375,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(70,0,ls), +(82,0,o), +(90,5,o), +(96,14,cs), +(256,237,l), +(345,237,l), +(345,22,ls), +(345,9,o), +(354,0,o), +(367,0,cs), +(384,0,ls), +(397,0,o), +(406,9,o), +(406,22,cs), +(406,237,l), +(495,237,l), +(653,14,l), +(660,5,o), +(667,0,o), +(679,0,cs), +(705,0,ls), +(717,0,o), +(724,5,o), +(724,14,cs), +(724,18,o), +(723,22,o), +(719,27,cs), +(544,273,l), +(700,494,ls), +(703,499,o), +(705,503,o), +(705,506,cs), +(705,515,o), +(697,520,o), +(685,520,cs), +(665,520,ls), +(653,520,o), +(646,515,o), +(639,505,cs), +(490,295,l), +(406,295,l), +(406,498,ls), +(406,511,o), +(397,520,o), +(384,520,cs), +(367,520,ls), +(354,520,o), +(345,511,o), +(345,498,cs), +(345,295,l), +(257,295,l), +(110,505,ls), +(103,515,o), +(96,520,o), +(84,520,cs), +(64,520,ls), +(52,520,o), +(45,515,o), +(45,506,cs), +(45,503,o), +(46,499,o), +(49,494,cs), +(205,273,l), +(30,27,ls), +(27,22,o), +(25,18,o), +(25,14,cs), +(25,5,o), +(32,0,o), +(44,0,cs) +); +} +); +width = 749; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (813,0); +}, +{ +name = top; +pos = (507,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,0,ls), +(269,0,o), +(278,14,o), +(280,17,cs), +(375,175,l), +(392,175,l), +(392,27,ls), +(392,12,o), +(404,0,o), +(419,0,cs), +(594,0,ls), +(609,0,o), +(621,12,o), +(621,27,cs), +(621,175,l), +(638,175,l), +(733,17,ls), +(735,14,o), +(744,0,o), +(764,0,cs), +(974,0,ls), +(987,0,o), +(998,11,o), +(998,24,cs), +(998,30,o), +(996,34,o), +(994,37,cs), +(842,266,l), +(969,481,ls), +(971,484,o), +(974,490,o), +(974,496,cs), +(974,509,o), +(963,520,o), +(950,520,cs), +(758,520,ls), +(740,520,o), +(732,508,o), +(729,503,cs), +(643,350,l), +(621,350,l), +(621,493,ls), +(621,508,o), +(609,520,o), +(594,520,cs), +(419,520,ls), +(404,520,o), +(392,508,o), +(392,493,cs), +(392,350,l), +(370,350,l), +(284,503,ls), +(281,508,o), +(273,520,o), +(255,520,cs), +(63,520,ls), +(50,520,o), +(39,509,o), +(39,496,cs), +(39,490,o), +(42,484,o), +(44,481,cs), +(171,266,l), +(19,37,ls), +(17,34,o), +(15,30,o), +(15,24,cs), +(15,11,o), +(26,0,o), +(39,0,cs) +); +} +); +width = 1013; +}, +{ +associatedMasterId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(240,0,ls), +(258,0,o), +(266,11,o), +(270,17,cs), +(339,114,l), +(405,17,ls), +(410,10,o), +(417,0,o), +(435,0,cs), +(627,0,ls), +(640,0,o), +(651,11,o), +(651,24,cs), +(651,28,o), +(650,33,o), +(647,37,cs), +(482,269,l), +(629,483,ls), +(631,486,o), +(633,490,o), +(633,497,cs), +(633,509,o), +(622,520,o), +(609,520,cs), +(434,520,ls), +(414,520,o), +(406,507,o), +(402,501,cs), +(344,412,l), +(286,501,ls), +(282,507,o), +(274,520,o), +(254,520,cs), +(71,520,ls), +(58,520,o), +(47,509,o), +(47,496,cs), +(47,491,o), +(49,486,o), +(51,483,cs), +(195,268,l), +(33,37,ls), +(30,33,o), +(29,27,o), +(29,24,cs), +(29,11,o), +(40,0,o), +(53,0,cs) +); +} +); +}; +color = 6; +layerId = "5138092E-F717-42B1-AA6B-B68ED7722E56"; +name = "Sep 1 16, 18:41"; +shapes = ( +{ +closed = 1; +nodes = ( +(222,0,ls), +(240,0,o), +(251,8,o), +(253,17,cs), +(288,139,ls), +(295,164,o), +(309,174,o), +(327,174,cs), +(355,174,l), +(355,27,ls), +(355,12,o), +(367,0,o), +(382,0,cs), +(561,0,ls), +(576,0,o), +(588,12,o), +(588,27,cs), +(588,174,l), +(616,174,ls), +(634,174,o), +(648,164,o), +(655,139,cs), +(690,17,ls), +(693,7,o), +(704,0,o), +(721,0,cs), +(898,0,ls), +(911,0,o), +(916,13,o), +(912,24,cs), +(846,224,ls), +(819,307,o), +(770,343,o), +(702,343,cs), +(588,343,l), +(588,493,ls), +(588,508,o), +(576,520,o), +(561,520,cs), +(382,520,ls), +(367,520,o), +(355,508,o), +(355,493,cs), +(355,343,l), +(241,343,ls), +(173,343,o), +(125,307,o), +(97,224,cs), +(31,24,ls), +(27,12,o), +(33,0,o), +(45,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(348,270,l), +(281,504,ls), +(279,513,o), +(268,520,o), +(252,520,cs), +(70,520,ls), +(58,520,o), +(47,510,o), +(47,497,cs), +(47,494,o), +(48,490,o), +(49,487,cs), +(131,270,l) +); +}, +{ +closed = 1; +nodes = ( +(812,270,l), +(894,488,ls), +(895,491,o), +(896,494,o), +(896,497,cs), +(896,509,o), +(886,520,o), +(872,520,cs), +(691,520,ls), +(675,520,o), +(665,514,o), +(662,504,cs), +(595,270,l) +); +} +); +width = 943; +} +); +metricLeft = "=|ka-cy"; +metricRight = "ka-cy"; +unicode = 1078; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 14; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "ze-cy"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (246,0); +}, +{ +name = top; +pos = (246,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(362,-10,o), +(454,38,o), +(452,144,cs), +(451,207,o), +(432,252,o), +(372,276,c), +(419,300,o), +(432,330,o), +(432,385,cs), +(432,444,o), +(386,530,o), +(246,530,cs), +(120,530,o), +(53,463,o), +(53,379,cs), +(53,367,o), +(62,359,o), +(74,359,c), +(91,359,ls), +(103,359,o), +(111,364,o), +(115,380,cs), +(130,440,o), +(157,472,o), +(246,472,cs), +(341,472,o), +(371,422,o), +(371,375,cs), +(371,320,o), +(335,298,o), +(275,298,cs), +(228,298,ls), +(215,298,o), +(206,289,o), +(206,276,cs), +(206,262,ls), +(206,249,o), +(215,240,o), +(228,240,cs), +(282,240,ls), +(355,240,o), +(391,208,o), +(391,144,cs), +(391,77,o), +(328,48,o), +(256,48,cs), +(181,48,o), +(125,67,o), +(108,130,cs), +(104,146,o), +(96,151,o), +(84,151,cs), +(67,151,ls), +(55,151,o), +(46,143,o), +(46,131,cs), +(46,76,o), +(100,-10,o), +(246,-10,cs) +); +} +); +width = 492; +}, +{ +anchors = ( +{ +name = bottom; +pos = (299,0); +}, +{ +name = top; +pos = (307,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(469,-10,o), +(564,59,o), +(564,149,cs), +(564,196,o), +(546,252,o), +(485,273,c), +(534,295,o), +(552,340,o), +(552,380,cs), +(552,471,o), +(483,530,o), +(295,530,cs), +(93,530,o), +(44,427,o), +(34,368,cs), +(32,359,o), +(41,351,o), +(50,351,cs), +(219,351,ls), +(236,351,o), +(240,358,o), +(247,363,cs), +(258,372,o), +(267,376,o), +(293,376,cs), +(318,376,o), +(329,366,o), +(329,350,cs), +(329,334,o), +(322,324,o), +(292,324,cs), +(235,324,ls), +(223,324,o), +(214,313,o), +(214,302,cs), +(214,219,ls), +(214,208,o), +(223,197,o), +(235,197,cs), +(292,197,ls), +(326,197,o), +(333,185,o), +(333,171,cs), +(333,152,o), +(323,142,o), +(293,142,cs), +(266,142,o), +(257,148,o), +(249,154,cs), +(242,159,o), +(238,166,o), +(221,166,cs), +(46,166,ls), +(38,166,o), +(27,158,o), +(30,149,cs), +(40,90,o), +(86,-10,o), +(295,-10,cs) +); +} +); +width = 598; +} +); +unicode = 1079; +}, +{ +color = 6; +glyphname = "ii-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (576,0); +}, +{ +name = top; +pos = (298,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(141,8,o), +(146,15,cs), +(475,446,l), +(454,441,l), +(454,22,ls), +(454,9,o), +(463,0,o), +(476,0,cs), +(493,0,ls), +(506,0,o), +(515,9,o), +(515,22,cs), +(515,501,ls), +(515,511,o), +(505,520,o), +(495,520,cs), +(476,520,ls), +(463,520,o), +(456,513,o), +(450,505,cs), +(124,78,l), +(142,49,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,20,ls), +(81,9,o), +(90,0,o), +(101,0,cs) +); +} +); +width = 596; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (643,0); +}, +{ +name = top; +pos = (352,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(231,0,ls), +(243,0,o), +(253,6,o), +(260,17,cs), +(460,324,l), +(399,342,l), +(399,27,ls), +(399,12,o), +(411,0,o), +(426,0,cs), +(605,0,ls), +(620,0,o), +(632,12,o), +(632,27,cs), +(632,493,ls), +(632,508,o), +(620,520,o), +(605,520,cs), +(446,520,ls), +(434,520,o), +(424,514,o), +(417,503,cs), +(217,196,l), +(278,178,l), +(278,493,ls), +(278,508,o), +(266,520,o), +(251,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 663; +} +); +unicode = 1080; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 465; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "iishort-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (93,0); +ref = "brevecomb-cy"; +} +); +width = 596; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (55,0); +ref = "brevecomb-cy"; +} +); +width = 663; +} +); +unicode = 1081; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 287; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "iigrave-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (98,0); +ref = gravecomb; +} +); +width = 596; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (54,0); +ref = gravecomb; +} +); +width = 663; +} +); +unicode = 1117; +}, +{ +color = 6; +glyphname = "ka-cy"; +kernLeft = afii10074; +kernRight = afii10076; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (436,0); +}, +{ +name = top; +pos = (253,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,235,l), +(252,235,l), +(410,14,ls), +(417,5,o), +(424,0,o), +(436,0,cs), +(462,0,ls), +(474,0,o), +(481,5,o), +(481,14,cs), +(481,18,o), +(480,22,o), +(476,27,cs), +(302,272,l), +(457,494,ls), +(460,499,o), +(462,503,o), +(462,506,cs), +(462,515,o), +(454,520,o), +(442,520,cs), +(422,520,ls), +(410,520,o), +(403,515,o), +(396,505,cs), +(249,295,l), +(142,295,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +width = 506; +}, +{ +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +background = { +shapes = ( +{ +closed = 0; +nodes = ( +(143,268,l), +(204,268,ls), +(288,268,o), +(342,227,o), +(389,118,cs), +(440,0,l) +); +}, +{ +closed = 0; +nodes = ( +(258,256,l), +(420,520,l) +); +}, +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,237,l), +(454,237,l), +(454,295,l), +(142,295,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +}; +color = 6; +layerId = "10F8D815-A7AB-4668-B44E-A441EFCC3BA4"; +name = "1"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(233.301,273.028,l), +(282.699,238.972,l), +(445,475,ls), +(459,496,o), +(447,520,o), +(422,520,cs), +(414,520,ls), +(408,520,o), +(401,517,o), +(393,505,cs) +); +}, +{ +closed = 1; +nodes = ( +(416.538,129.902,ls), +(366,247,o), +(302.486,298,o), +(204,298,cs), +(133,298,l), +(133,238,l), +(204,238,ls), +(276.794,238,o), +(320,203,o), +(361.452,106.121,cs), +(402,12,ls), +(405,5,o), +(412,0,o), +(420,0,cs), +(433,0,ls), +(453,0,o), +(465,19,o), +(457,37,cs) +); +} +); +width = 488; +}, +{ +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +background = { +shapes = ( +{ +closed = 0; +nodes = ( +(143,268,l), +(204,268,ls), +(288,268,o), +(342,227,o), +(389,118,cs), +(440,0,l) +); +}, +{ +closed = 0; +nodes = ( +(258,256,l), +(420,520,l) +); +}, +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,237,l), +(454,237,l), +(454,295,l), +(142,295,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +}; +color = 6; +layerId = "A2BBB50C-EFA2-4BA2-8F4F-994681083759"; +name = "2"; +shapes = ( +{ +closed = 1; +nodes = ( +(472,0,l), +(400,187,o), +(350,295,o), +(214,295,cs), +(133,295,l), +(133,237,l), +(214,237,ls), +(300,237,o), +(333,196,o), +(408,0,c) +); +}, +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(233.301,273.028,l), +(282.699,238.972,l), +(476,520,l), +(404,520,l) +); +} +); +width = 488; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (356,0); +}, +{ +name = top; +pos = (333,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,0,ls), +(262,0,o), +(274,12,o), +(274,27,cs), +(274,175,l), +(291,175,l), +(386,17,ls), +(392,8,o), +(401,0,o), +(417,0,cs), +(627,0,ls), +(640,0,o), +(651,11,o), +(651,24,cs), +(651,30,o), +(649,34,o), +(647,37,cs), +(495,266,l), +(622,481,ls), +(624,484,o), +(627,490,o), +(627,496,cs), +(627,509,o), +(616,520,o), +(603,520,cs), +(411,520,ls), +(393,520,o), +(385,508,o), +(382,503,cs), +(296,350,l), +(274,350,l), +(274,493,ls), +(274,508,o), +(262,520,o), +(247,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 666; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (440,0); +}, +{ +name = top; +pos = (260,520); +} +); +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +background = { +shapes = ( +{ +closed = 0; +nodes = ( +(248,256,l), +(410,520,l) +); +}, +{ +closed = 0; +nodes = ( +(119,265,l), +(267,265,l) +); +}, +{ +closed = 0; +nodes = ( +(435,0,l), +(258,264,l) +); +} +); +}; +color = 6; +layerId = "EBE789E9-E20E-4D45-AB85-02827D8C07E4"; +name = "3"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(222.43,271.69,l), +(273.57,240.31,l), +(429,494,ls), +(438,509,o), +(431,520,o), +(414,520,cs), +(392,520,ls), +(380,520,o), +(372,515,o), +(366,505,cs) +); +}, +{ +closed = 1; +nodes = ( +(119,295,l), +(119,235,l), +(267,235,l), +(267,295,l) +); +}, +{ +closed = 1; +nodes = ( +(390,14,ls), +(396,4,o), +(404,0,o), +(416,0,cs), +(440,0,ls), +(458,0,o), +(464,12,o), +(454,27,cs), +(282.918,280.706,l), +(233.082,247.294,l) +); +} +); +width = 459; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (440,0); +}, +{ +name = top; +pos = (260,520); +} +); +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +background = { +shapes = ( +{ +closed = 0; +nodes = ( +(258,256,l), +(420,520,l) +); +}, +{ +closed = 0; +nodes = ( +(119,265,l), +(267,265,l) +); +}, +{ +closed = 0; +nodes = ( +(420,0,l), +(258,264,l) +); +} +); +}; +color = 6; +layerId = "0F108FE8-E4DA-4799-BF0C-5662D390A0B3"; +name = "Sep 1 16, 18:37"; +shapes = ( +{ +closed = 1; +nodes = ( +(232.43,271.69,l), +(283.57,240.31,l), +(445.57,504.31,l), +(394.43,535.69,l) +); +}, +{ +closed = 1; +nodes = ( +(119,295,l), +(119,235,l), +(267,235,l), +(267,295,l) +); +}, +{ +closed = 1; +nodes = ( +(394.43,-15.69,l), +(445.57,15.69,l), +(283.57,279.69,l), +(232.43,248.31,l) +); +}, +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +width = 500; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (584,0); +}, +{ +name = top; +pos = (322,520); +} +); +associatedMasterId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(243,256,l), +(386,17,ls), +(388,14,o), +(397,0,o), +(417,0,cs), +(627,0,ls), +(640,0,o), +(651,11,o), +(651,24,cs), +(651,30,o), +(649,34,o), +(647,37,cs), +(495,266,l), +(622,481,ls), +(624,484,o), +(627,490,o), +(627,496,cs), +(627,509,o), +(616,520,o), +(603,520,cs), +(411,520,ls), +(393,520,o), +(385,508,o), +(382,503,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,493,ls), +(274,508,o), +(262,520,o), +(247,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs), +(247,0,ls), +(262,0,o), +(274,12,o), +(274,27,cs) +); +} +); +}; +color = 6; +layerId = "E24BA32A-70DD-4A24-A88A-0AB3E1A53C5D"; +name = old; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(266,0,o), +(278,12,o), +(278,27,cs), +(278,174,l), +(306,174,ls), +(324,174,o), +(335,163,o), +(345,139,c), +(390,17,ls), +(394,5,o), +(403,0,o), +(421,0,cs), +(598,0,ls), +(607,0,o), +(614,7,o), +(614,16,cs), +(614,19,o), +(613,22,o), +(612,24,c), +(536,224,ls), +(505,306,o), +(460,343,o), +(392,343,cs), +(278,343,l), +(278,493,ls), +(278,508,o), +(266,520,o), +(251,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(502,239,l), +(597,492,ls), +(599,498,o), +(600,501,o), +(600,504,cs), +(600,513,o), +(593,520,o), +(584,520,cs), +(392,520,ls), +(376,520,o), +(366,513,o), +(363,504,cs), +(285,239,l) +); +} +); +width = 644; +} +); +metricLeft = "en-cy"; +unicode = 1082; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 260; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-857"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "kje-cy"; +kernLeft = afii10074; +kernRight = afii10076; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "ka-cy"; +}, +{ +pos = (153,0); +ref = acutecomb; +} +); +width = 506; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "ka-cy"; +}, +{ +pos = (182,0); +ref = acutecomb; +} +); +width = 666; +} +); +unicode = 1116; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 265; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "el-cy"; +kernLeft = afii10077; +kernRight = afii10074; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(149,0,o), +(211,108,o), +(211,368,cs), +(211,462,l), +(419,462,l), +(419,22,ls), +(419,9,o), +(428,0,o), +(441,0,cs), +(458,0,ls), +(471,0,o), +(480,9,o), +(480,22,cs), +(480,498,ls), +(480,511,o), +(471,520,o), +(458,520,cs), +(172,520,ls), +(159,520,o), +(150,511,o), +(150,498,cs), +(150,375,ls), +(150,142,o), +(109,60,o), +(45,60,cs), +(33,60,o), +(25,51,o), +(25,39,cs), +(25,23,ls), +(25,10,o), +(35,0,o), +(48,0,cs) +); +} +); +width = 561; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(282,0,o), +(322,64,o), +(322,316,cs), +(322,345,l), +(379,345,l), +(379,27,ls), +(379,12,o), +(391,0,o), +(406,0,cs), +(585,0,ls), +(600,0,o), +(612,12,o), +(612,27,cs), +(612,493,ls), +(612,508,o), +(600,520,o), +(585,520,cs), +(129,520,ls), +(114,520,o), +(102,508,o), +(102,493,cs), +(102,341,ls), +(102,252,o), +(105,194,o), +(52,185,cs), +(36,182,o), +(25,173,o), +(25,158,cs), +(25,27,ls), +(25,12,o), +(37,0,o), +(52,0,cs) +); +} +); +width = 664; +} +); +metricRight = "en-cy"; +unicode = 1083; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "em-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,433,l), +(118,433,l), +(288,113,ls), +(295,100,o), +(302,85,o), +(322,85,cs), +(342,85,ls), +(362,85,o), +(369,100,o), +(376,113,cs), +(551,452,l), +(522,452,l), +(522,22,ls), +(522,9,o), +(531,0,o), +(544,0,cs), +(561,0,ls), +(574,0,o), +(583,9,o), +(583,22,cs), +(583,501,ls), +(583,511,o), +(573,520,o), +(563,520,cs), +(540,520,ls), +(529,520,o), +(522,514,o), +(517,505,cs), +(332,155,l), +(147,505,ls), +(142,514,o), +(135,520,o), +(124,520,cs), +(101,520,ls), +(91,520,o), +(81,511,o), +(81,501,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +width = 664; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(253,0,ls), +(264,0,o), +(273,9,o), +(273,20,cs), +(273,284,l), +(214,268,l), +(322,92,ls), +(330,79,o), +(339,73,o), +(350,73,cs), +(402,73,ls), +(415,73,o), +(422,80,o), +(429,92,cs), +(539,267,l), +(479,284,l), +(479,20,ls), +(479,9,o), +(487,0,o), +(499,0,cs), +(687,0,ls), +(699,0,o), +(708,9,o), +(708,20,cs), +(708,500,ls), +(708,511,o), +(699,520,o), +(687,520,cs), +(516,520,ls), +(503,520,o), +(492,513,o), +(484,500,cs), +(376,322,l), +(268,500,ls), +(260,513,o), +(249,520,o), +(236,520,cs), +(65,520,ls), +(54,520,o), +(45,511,o), +(45,500,cs), +(45,20,ls), +(45,9,o), +(54,0,o), +(65,0,cs) +); +} +); +width = 760; +} +); +metricLeft = "en-cy"; +metricRight = "en-cy"; +unicode = 1084; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 85; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 113; +} +); +}; +}, +{ +color = 6; +glyphname = "en-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (485,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,237,l), +(454,237,l), +(454,22,ls), +(454,9,o), +(463,0,o), +(476,0,cs), +(493,0,ls), +(506,0,o), +(515,9,o), +(515,22,cs), +(515,498,ls), +(515,511,o), +(506,520,o), +(493,520,cs), +(476,520,ls), +(463,520,o), +(454,511,o), +(454,498,cs), +(454,295,l), +(142,295,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +width = 596; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (498,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(266,0,o), +(278,12,o), +(278,27,cs), +(278,175,l), +(378,175,l), +(378,27,ls), +(378,12,o), +(390,0,o), +(405,0,cs), +(584,0,ls), +(599,0,o), +(611,12,o), +(611,27,cs), +(611,493,ls), +(611,508,o), +(599,520,o), +(584,520,cs), +(405,520,ls), +(390,520,o), +(378,508,o), +(378,493,cs), +(378,350,l), +(278,350,l), +(278,493,ls), +(278,508,o), +(266,520,o), +(251,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 663; +} +); +unicode = 1085; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 260; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "o-cy"; +kernLeft = afii10080; +kernRight = afii10080; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (279,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = o; +} +); +width = 558; +}, +{ +anchors = ( +{ +name = top; +pos = (321,520); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = o; +} +); +width = 642; +} +); +unicode = 1086; +}, +{ +color = 6; +glyphname = "pe-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (467,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,462,l), +(434,462,l), +(434,22,ls), +(434,9,o), +(443,0,o), +(456,0,cs), +(473,0,ls), +(486,0,o), +(495,9,o), +(495,22,cs), +(495,498,ls), +(495,511,o), +(486,520,o), +(473,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,c) +); +} +); +width = 576; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (485,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(266,0,o), +(278,12,o), +(278,27,cs), +(278,345,l), +(378,345,l), +(378,27,ls), +(378,12,o), +(390,0,o), +(405,0,cs), +(584,0,ls), +(599,0,o), +(611,12,o), +(611,27,cs), +(611,493,ls), +(611,508,o), +(599,520,o), +(584,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 663; +} +); +metricRight = "en-cy"; +unicode = 1087; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "er-cy"; +kernLeft = afii10074; +kernRight = afii10082; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (291,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = p; +} +); +width = 581; +}, +{ +anchors = ( +{ +name = top; +pos = (331,520); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = p; +} +); +width = 661; +} +); +unicode = 1088; +}, +{ +color = 10; +glyphname = "es-cy"; +kernLeft = afii10080; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (516,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = c; +} +); +width = 536; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (602,0); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = c; +} +); +width = 622; +} +); +unicode = 1089; +}, +{ +color = 6; +glyphname = "te-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (247,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(257,0,ls), +(270,0,o), +(279,9,o), +(279,22,cs), +(279,462,l), +(462,462,ls), +(475,462,o), +(484,471,o), +(484,484,cs), +(484,498,ls), +(484,511,o), +(475,520,o), +(462,520,cs), +(35,520,ls), +(22,520,o), +(13,511,o), +(13,498,cs), +(13,484,ls), +(13,471,o), +(22,462,o), +(35,462,cs), +(218,462,l), +(218,22,ls), +(218,9,o), +(227,0,o), +(240,0,c) +); +} +); +width = 497; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (559,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(377,0,ls), +(392,0,o), +(404,12,o), +(404,27,cs), +(404,345,l), +(537,345,ls), +(552,345,o), +(564,357,o), +(564,372,cs), +(564,493,ls), +(564,508,o), +(552,520,o), +(537,520,cs), +(42,520,ls), +(27,520,o), +(15,508,o), +(15,493,cs), +(15,372,ls), +(15,357,o), +(27,345,o), +(42,345,cs), +(175,345,l), +(175,27,ls), +(175,12,o), +(187,0,o), +(202,0,cs) +); +} +); +width = 579; +} +); +unicode = 1090; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 30; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 501; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "u-cy"; +kernLeft = afii10085; +kernRight = afii10085; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (262,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(127,-190,ls), +(223,-190,o), +(266,-50,o), +(302,34,cs), +(492,480,ls), +(496,490,o), +(498,495,o), +(498,500,cs), +(498,511,o), +(489,520,o), +(478,520,cs), +(460,520,ls), +(447,520,o), +(441,514,o), +(437,505,cs), +(213,-22,ls), +(177,-106,o), +(164,-132,o), +(116,-132,cs), +(93,-132,ls), +(80,-132,o), +(71,-141,o), +(71,-154,c), +(71,-168,ls), +(71,-181,o), +(80,-190,o), +(93,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(273,94,l), +(97,505,ls), +(93,513,o), +(87,520,o), +(74,520,cs), +(55,520,ls), +(44,520,o), +(35,511,o), +(35,500,cs), +(35,495,o), +(37,490,o), +(41,480,cs), +(241,17,l) +); +} +); +width = 529; +}, +{ +anchors = ( +{ +name = top; +pos = (326,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,-191,ls), +(308,-191,o), +(365,-136,o), +(430,24,cs), +(620,489,ls), +(622,493,o), +(621,496,o), +(621,499,cs), +(621,510,o), +(610,520,o), +(598,520,cs), +(437,520,ls), +(417,520,o), +(408,508,o), +(403,496,cs), +(218,33,ls), +(203,-4,o), +(190,-16,o), +(160,-16,cs), +(118,-16,l), +(103,-16,o), +(91,-28,o), +(91,-43,cs), +(91,-164,ls), +(91,-179,o), +(103,-191,o), +(118,-191,cs) +); +}, +{ +closed = 1; +nodes = ( +(360,156,l), +(236,496,ls), +(232,507,o), +(224,520,o), +(204,520,cs), +(35,520,ls), +(22,520,o), +(12,509,o), +(10,496,cs), +(10,494,o), +(10,492,o), +(11,489,cs), +(218,7,l) +); +} +); +width = 631; +} +); +unicode = 1091; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-190"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 272; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 40; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "ushort-cy"; +kernLeft = afii10085; +kernRight = afii10085; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (57,0); +ref = "brevecomb-cy"; +} +); +width = 529; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (29,0); +ref = "brevecomb-cy"; +} +); +width = 631; +} +); +unicode = 1118; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 272; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "ef-cy"; +kernRight = afii10082; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(348,-190,ls), +(361,-190,o), +(370,-181,o), +(370,-168,cs), +(370,0,l), +(544,0,o), +(616,99,o), +(622,228,cs), +(623,248,o), +(623,272,o), +(622,292,cs), +(616,421,o), +(544,520,o), +(370,520,c), +(370,688,ls), +(370,701,o), +(361,710,o), +(348,710,cs), +(331,710,ls), +(318,710,o), +(309,701,o), +(309,688,cs), +(309,520,l), +(135,520,o), +(63,421,o), +(57,292,cs), +(56,272,o), +(56,248,o), +(57,228,cs), +(63,99,o), +(135,0,o), +(309,0,c), +(309,-168,ls), +(309,-181,o), +(318,-190,o), +(331,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,58,o), +(124,119,o), +(118,233,cs), +(117,253,o), +(117,267,o), +(118,287,cs), +(124,401,o), +(186,462,o), +(309,462,c), +(309,58,l) +); +}, +{ +closed = 1; +nodes = ( +(370,462,l), +(493,462,o), +(555,401,o), +(561,287,cs), +(562,267,o), +(562,253,o), +(561,233,cs), +(555,119,o), +(493,58,o), +(370,58,c) +); +} +); +width = 679; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(531,-190,ls), +(546,-190,o), +(558,-178,o), +(558,-163,cs), +(558,0,l), +(745,0,o), +(842,73,o), +(852,213,cs), +(854,244,o), +(854,276,o), +(852,307,cs), +(842,447,o), +(733,520,o), +(558,520,c), +(558,683,ls), +(558,698,o), +(546,710,o), +(531,710,cs), +(352,710,ls), +(337,710,o), +(325,698,o), +(325,683,cs), +(325,520,l), +(150,520,o), +(41,447,o), +(31,307,cs), +(29,276,o), +(29,244,o), +(31,213,cs), +(41,73,o), +(138,0,o), +(325,0,c), +(325,-163,ls), +(325,-178,o), +(337,-190,o), +(352,-190,cs) +); +}, +{ +closed = 1; +nodes = ( +(280,160,o), +(267,174,o), +(262,228,cs), +(261,243,o), +(261,275,o), +(262,292,cs), +(264,340,o), +(277,360,o), +(327,360,c), +(327,160,l) +); +}, +{ +closed = 1; +nodes = ( +(556,360,l), +(603,360,o), +(619,343,o), +(621,292,cs), +(622,275,o), +(622,243,o), +(621,228,cs), +(617,177,o), +(606,160,o), +(556,160,c) +); +} +); +width = 883; +} +); +metricLeft = o; +metricRight = o; +unicode = 1092; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-190"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +} +); +}; +}, +{ +color = 10; +glyphname = "ha-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (498,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = x; +} +); +width = 518; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (610,0); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = x; +} +); +width = 630; +} +); +unicode = 1093; +}, +{ +color = 6; +glyphname = "che-cy"; +kernRight = afii10074; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (417,0); +}, +{ +name = top; +pos = (253,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(424,0,ls), +(437,0,o), +(446,9,o), +(446,22,cs), +(446,498,ls), +(446,511,o), +(437,520,o), +(424,520,cs), +(407,520,ls), +(394,520,o), +(385,511,o), +(385,498,cs), +(385,311,ls), +(385,250,o), +(323,231,o), +(229,231,cs), +(146,231,o), +(106,261,o), +(106,327,cs), +(106,498,ls), +(106,511,o), +(97,520,o), +(84,520,cs), +(67,520,ls), +(54,520,o), +(45,511,o), +(45,498,cs), +(45,322,ls), +(45,217,o), +(111,173,o), +(225,173,cs), +(294,173,o), +(347,188,o), +(385,226,c), +(385,22,ls), +(385,9,o), +(394,0,o), +(407,0,cs) +); +} +); +width = 527; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (464,0); +}, +{ +name = top; +pos = (303,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(573,0,ls), +(588,0,o), +(600,12,o), +(600,27,cs), +(600,493,ls), +(600,508,o), +(588,520,o), +(573,520,cs), +(378,520,ls), +(363,520,o), +(351,508,o), +(351,493,cs), +(351,347,ls), +(351,331,o), +(332,319,o), +(309,319,cs), +(274,319,o), +(265,328,o), +(265,364,cs), +(265,493,ls), +(265,508,o), +(253,520,o), +(238,520,cs), +(52,520,ls), +(37,520,o), +(25,508,o), +(25,493,cs), +(25,354,ls), +(25,190,o), +(97,120,o), +(229,120,cs), +(281,120,o), +(324,131,o), +(351,148,c), +(351,27,ls), +(351,12,o), +(363,0,o), +(378,0,cs) +); +} +); +width = 652; +} +); +metricRight = "en-cy"; +unicode = 1095; +}, +{ +color = 6; +glyphname = "tse-cy"; +kernLeft = afii10074; +kernRight = afii10088; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(544,-130,ls), +(557,-130,o), +(566,-121,o), +(566,-108,cs), +(566,36,ls), +(566,49,o), +(557,58,o), +(544,58,cs), +(494,58,l), +(495,498,ls), +(495,511,o), +(486,520,o), +(473,520,cs), +(456,520,ls), +(443,520,o), +(434,511,o), +(434,498,cs), +(434,58,l), +(142,58,l), +(142,498,l), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs), +(505,0,l), +(505,-108,ls), +(505,-121,o), +(514,-130,o), +(527,-130,cs) +); +} +); +width = 601; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(650,-110,ls), +(665,-110,o), +(677,-98,o), +(677,-83,cs), +(677,148,ls), +(677,163,o), +(665,175,o), +(650,175,cs), +(611,175,l), +(611,493,ls), +(611,508,o), +(599,520,o), +(584,520,cs), +(405,520,ls), +(390,520,o), +(378,508,o), +(378,493,cs), +(378,175,l), +(278,175,l), +(278,493,ls), +(278,508,o), +(266,520,o), +(251,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs), +(444,0,l), +(444,-83,ls), +(444,-98,o), +(456,-110,o), +(471,-110,cs) +); +} +); +width = 689; +} +); +unicode = 1094; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 58; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "sha-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(666,0,ls), +(679,0,o), +(688,9,o), +(688,22,cs), +(688,498,ls), +(688,511,o), +(679,520,o), +(666,520,cs), +(649,520,ls), +(636,520,o), +(627,511,o), +(627,498,cs), +(627,58,l), +(415,58,l), +(415,498,ls), +(415,511,o), +(406,520,o), +(393,520,cs), +(376,520,ls), +(363,520,o), +(354,511,o), +(354,498,cs), +(354,58,l), +(142,58,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +width = 769; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(788,0,ls), +(803,0,o), +(815,12,o), +(815,27,cs), +(815,493,ls), +(815,508,o), +(803,520,o), +(788,520,cs), +(619,520,ls), +(604,520,o), +(592,508,o), +(592,493,cs), +(592,175,l), +(534,175,l), +(534,493,ls), +(534,508,o), +(522,520,o), +(507,520,cs), +(353,520,ls), +(338,520,o), +(326,508,o), +(326,493,cs), +(326,175,l), +(268,175,l), +(268,493,ls), +(268,508,o), +(256,520,o), +(241,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 867; +} +); +metricLeft = "en-cy"; +metricRight = "en-cy"; +unicode = 1096; +}, +{ +color = 6; +glyphname = "shcha-cy"; +kernLeft = afii10074; +kernRight = afii10088; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(738,-130,ls), +(751,-130,o), +(760,-121,o), +(760,-108,cs), +(760,36,ls), +(760,49,o), +(751,58,o), +(738,58,cs), +(688,58,l), +(688,498,ls), +(688,511,o), +(679,520,o), +(666,520,cs), +(649,520,ls), +(636,520,o), +(627,511,o), +(627,498,cs), +(627,58,l), +(415,58,l), +(415,498,ls), +(415,511,o), +(406,520,o), +(393,520,cs), +(376,520,ls), +(363,520,o), +(354,511,o), +(354,498,cs), +(354,58,l), +(142,58,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs), +(699,0,l), +(699,-108,ls), +(699,-121,o), +(708,-130,o), +(721,-130,cs) +); +} +); +width = 795; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(853,-110,ls), +(868,-110,o), +(880,-98,o), +(880,-83,cs), +(880,148,ls), +(880,163,o), +(868,175,o), +(853,175,cs), +(815,175,l), +(815,493,ls), +(815,508,o), +(803,520,o), +(788,520,cs), +(619,520,ls), +(604,520,o), +(592,508,o), +(592,493,cs), +(592,175,l), +(534,175,l), +(534,493,ls), +(534,508,o), +(522,520,o), +(507,520,cs), +(353,520,ls), +(338,520,o), +(326,508,o), +(326,493,cs), +(326,175,l), +(268,175,l), +(268,493,ls), +(268,508,o), +(256,520,o), +(241,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs), +(648,0,l), +(648,-83,ls), +(648,-98,o), +(660,-110,o), +(675,-110,cs) +); +} +); +width = 892; +} +); +metricLeft = "en-cy"; +metricRight = "tse-cy"; +unicode = 1097; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 58; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +} +); +}; +}, +{ +color = 6; +glyphname = "dzhe-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(296,-130,ls), +(309,-130,o), +(318,-121,o), +(318,-108,cs), +(318,0,l), +(473,0,ls), +(486,0,o), +(495,9,o), +(495,22,c), +(495,498,ls), +(495,511,o), +(486,520,o), +(473,520,cs), +(456,520,ls), +(443,520,o), +(434,511,o), +(434,498,cs), +(434,58,l), +(142,58,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs), +(257,0,l), +(257,-108,ls), +(257,-121,o), +(266,-130,o), +(279,-130,cs) +); +} +); +width = 576; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(417,-110,ls), +(432,-110,o), +(444,-98,o), +(444,-83,cs), +(444,0,l), +(584,0,ls), +(599,0,o), +(611,12,o), +(611,27,cs), +(611,493,ls), +(611,508,o), +(599,520,o), +(584,520,cs), +(405,520,ls), +(390,520,o), +(378,508,o), +(378,493,cs), +(378,175,l), +(278,175,l), +(278,493,ls), +(278,508,o), +(266,520,o), +(251,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs), +(212,0,l), +(212,-83,ls), +(212,-98,o), +(224,-110,o), +(239,-110,cs) +); +} +); +width = 663; +} +); +metricLeft = "en-cy"; +metricRight = "en-cy"; +unicode = 1119; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-110"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 443; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "softsign-cy"; +kernLeft = afii10074; +kernRight = afii10094; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,0,ls), +(387,0,o), +(451,51,o), +(451,169,cs), +(451,277,o), +(398,346,o), +(262,346,cs), +(142,346,l), +(142,498,l), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(142,288,l), +(256,288,ls), +(352,288,o), +(390,249,o), +(390,169,cs), +(390,86,o), +(349,58,o), +(256,58,cs), +(142,58,l) +); +} +); +width = 476; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,0,ls), +(492,0,o), +(583,68,o), +(583,184,cs), +(583,300,o), +(492,369,o), +(359,369,cs), +(279,369,l), +(279,493,ls), +(279,508,o), +(267,520,o), +(252,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,220,l), +(339,220,ls), +(366,220,o), +(379,207,o), +(379,184,cs), +(379,161,o), +(366,149,o), +(339,149,cs), +(274,149,l) +); +} +); +width = 608; +} +); +metricLeft = "en-cy"; +unicode = 1100; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 3; +glyphname = "yeru-cy"; +kernLeft = afii10074; +kernRight = afii10074; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (340,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(237,0,ls), +(377,0,o), +(441,51,o), +(441,169,cs), +(441,277,o), +(388,346,o), +(252,346,cs), +(142,346,l), +(142,498,l), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(142,288,l), +(246,288,ls), +(342,288,o), +(380,249,o), +(380,169,cs), +(380,86,o), +(339,58,o), +(246,58,cs), +(142,58,l) +); +}, +{ +pos = (436,0); +ref = idotless; +} +); +width = 659; +}, +{ +anchors = ( +{ +name = top; +pos = (461,520); +} +); +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,0,ls), +(492,0,o), +(583,68,o), +(583,184,cs), +(583,300,o), +(492,369,o), +(359,369,cs), +(279,369,l), +(279,493,ls), +(279,508,o), +(267,520,o), +(252,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(274,220,l), +(339,220,ls), +(366,220,o), +(379,207,o), +(379,184,cs), +(379,161,o), +(366,149,o), +(339,149,cs), +(274,149,l) +); +}, +{ +pos = (591,0); +ref = idotless; +} +); +width = 921; +} +); +metricLeft = "en-cy"; +metricRight = "en-cy"; +unicode = 1099; +}, +{ +color = 6; +glyphname = "hardsign-cy"; +kernRight = afii10094; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(310,0,ls), +(450,0,o), +(514,51,o), +(514,169,cs), +(514,277,o), +(461,346,o), +(325,346,cs), +(225,346,l), +(225,498,ls), +(225,511,o), +(216,520,o), +(203,520,cs), +(35,520,ls), +(22,520,o), +(13,511,o), +(13,498,cs), +(13,484,ls), +(13,471,o), +(22,462,o), +(35,462,cs), +(164,462,l), +(164,22,ls), +(164,9,o), +(173,0,o), +(186,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(225,288,l), +(319,288,ls), +(415,288,o), +(453,249,o), +(453,169,cs), +(453,86,o), +(412,58,o), +(319,58,cs), +(225,58,l) +); +} +); +width = 539; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(466,0,ls), +(599,0,o), +(690,68,o), +(690,184,cs), +(690,300,o), +(599,369,o), +(466,369,cs), +(386,369,l), +(386,493,ls), +(386,508,o), +(374,520,o), +(359,520,cs), +(42,520,ls), +(27,520,o), +(15,508,o), +(15,493,cs), +(15,372,ls), +(15,357,o), +(27,345,o), +(42,345,cs), +(152,345,l), +(152,27,ls), +(152,12,o), +(164,0,o), +(179,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(381,220,l), +(446,220,ls), +(473,220,o), +(486,207,o), +(486,184,cs), +(486,161,o), +(473,149,o), +(446,149,cs), +(381,149,l) +); +} +); +width = 715; +} +); +metricLeft = "te-cy"; +metricRight = "softsign-cy"; +unicode = 1098; +}, +{ +color = 6; +glyphname = "lje-cy"; +kernLeft = afii10077; +kernRight = afii10094; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(515,0,ls), +(655,0,o), +(719,51,o), +(719,169,cs), +(719,277,o), +(666,346,o), +(530,346,cs), +(460,346,l), +(460,498,ls), +(460,511,o), +(451,520,o), +(438,520,cs), +(182,520,ls), +(169,520,o), +(160,511,o), +(160,498,cs), +(160,375,ls), +(160,142,o), +(113,72,o), +(45,61,cs), +(33,59,o), +(25,52,o), +(25,40,cs), +(25,24,ls), +(25,11,o), +(35,0,o), +(48,1,cs), +(155,9,o), +(220,108,o), +(220,368,cs), +(220,462,l), +(399,462,l), +(399,22,ls), +(399,9,o), +(408,0,o), +(421,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(460,288,l), +(524,288,ls), +(620,288,o), +(658,249,o), +(658,169,cs), +(658,86,o), +(617,58,o), +(524,58,cs), +(460,58,l) +); +} +); +width = 744; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(694,0,ls), +(827,0,o), +(918,68,o), +(918,184,cs), +(918,300,o), +(827,369,o), +(694,369,cs), +(614,369,l), +(614,493,ls), +(614,508,o), +(602,520,o), +(587,520,cs), +(129,520,ls), +(114,520,o), +(102,508,o), +(102,493,cs), +(102,341,ls), +(102,232,o), +(100,194,o), +(52,185,cs), +(36,182,o), +(25,173,o), +(25,158,cs), +(25,27,ls), +(25,12,o), +(37,0,o), +(52,0,cs), +(282,0,o), +(322,64,o), +(322,316,cs), +(322,345,l), +(380,345,l), +(380,27,ls), +(380,12,o), +(392,0,o), +(407,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(609,220,l), +(674,220,ls), +(701,220,o), +(714,207,o), +(714,184,cs), +(714,161,o), +(701,149,o), +(674,149,cs), +(609,149,l) +); +} +); +width = 943; +} +); +metricLeft = "el-cy"; +metricRight = "softsign-cy"; +unicode = 1113; +}, +{ +color = 6; +glyphname = "nje-cy"; +kernLeft = afii10074; +kernRight = afii10094; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,237,l), +(414,237,l), +(414,22,ls), +(414,9,o), +(423,0,o), +(436,0,cs), +(530,0,ls), +(670,0,o), +(734,51,o), +(734,169,cs), +(734,277,o), +(681,346,o), +(545,346,cs), +(475,346,l), +(475,498,ls), +(475,511,o), +(466,520,o), +(453,520,cs), +(436,520,ls), +(423,520,o), +(414,511,o), +(414,498,cs), +(414,295,l), +(142,295,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(475,288,l), +(539,288,ls), +(635,288,o), +(673,249,o), +(673,169,cs), +(673,86,o), +(632,58,o), +(539,58,cs), +(475,58,l) +); +} +); +width = 759; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,0,ls), +(266,0,o), +(278,12,o), +(278,27,cs), +(278,175,l), +(378,175,l), +(378,27,ls), +(378,12,o), +(390,0,o), +(405,0,cs), +(691,0,ls), +(824,0,o), +(915,68,o), +(915,184,cs), +(915,300,o), +(824,369,o), +(691,369,cs), +(611,369,l), +(611,493,ls), +(611,508,o), +(599,520,o), +(584,520,cs), +(405,520,ls), +(390,520,o), +(378,508,o), +(378,493,cs), +(378,350,l), +(278,350,l), +(278,493,ls), +(278,508,o), +(266,520,o), +(251,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(606,220,l), +(671,220,ls), +(698,220,o), +(711,207,o), +(711,184,cs), +(711,161,o), +(698,149,o), +(671,149,cs), +(606,149,l) +); +} +); +width = 940; +} +); +metricLeft = "en-cy"; +metricRight = "softsign-cy"; +unicode = 1114; +}, +{ +color = 10; +glyphname = "dze-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = s; +} +); +width = 492; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = s; +} +); +width = 590; +} +); +unicode = 1109; +}, +{ +color = 6; +glyphname = "e-cy"; +kernLeft = afii10080; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(419,-10,o), +(482,77,o), +(485,149,cs), +(486,162,o), +(475,171,o), +(463,171,cs), +(449,171,ls), +(435,171,o), +(431,166,o), +(425,150,cs), +(397,74,o), +(348,48,o), +(278,48,cs), +(187,48,o), +(122,100,o), +(118,225,cs), +(118,231,l), +(332,231,ls), +(345,231,o), +(354,240,o), +(354,253,cs), +(354,267,ls), +(354,280,o), +(345,289,o), +(332,289,cs), +(118,289,l), +(118,295,ls), +(122,420,o), +(187,472,o), +(278,472,cs), +(348,472,o), +(397,446,o), +(425,370,cs), +(431,354,o), +(435,349,o), +(449,349,cs), +(463,349,ls), +(475,349,o), +(486,358,o), +(485,371,cs), +(482,443,o), +(419,530,o), +(278,530,cs), +(137,530,o), +(61,443,o), +(57,300,cs), +(56,280,o), +(56,240,o), +(57,220,cs), +(61,77,o), +(137,-10,o), +(278,-10,cs) +); +} +); +width = 536; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(513,-10,o), +(579,66,o), +(594,149,c), +(595,158,o), +(587,166,o), +(578,166,cs), +(403,166,ls), +(394,166,o), +(387,164,o), +(383,161,cs), +(365,147,o), +(360,142,o), +(329,142,cs), +(297,142,o), +(285,156,o), +(285,191,cs), +(285,197,l), +(389,197,ls), +(401,197,o), +(410,207,o), +(410,219,cs), +(410,302,ls), +(410,314,o), +(401,324,o), +(389,324,cs), +(285,324,l), +(285,328,ls), +(285,359,o), +(301,376,o), +(329,376,cs), +(355,376,o), +(365,371,o), +(385,356,cs), +(389,353,o), +(396,351,o), +(405,351,cs), +(574,351,ls), +(584,351,o), +(592,357,o), +(590,368,cs), +(575,451,o), +(508,530,o), +(329,530,cs), +(154,530,o), +(48,452,o), +(39,307,cs), +(38,296,o), +(38,224,o), +(39,213,cs), +(49,64,o), +(146,-10,o), +(329,-10,cs) +); +} +); +width = 632; +} +); +unicode = 1108; +}, +{ +color = 6; +glyphname = "ereversed-cy"; +kernRight = afii10080; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (268,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(399,-10,o), +(475,77,o), +(479,220,cs), +(480,240,o), +(480,280,o), +(479,300,cs), +(475,443,o), +(399,530,o), +(258,530,cs), +(117,530,o), +(54,443,o), +(51,371,cs), +(50,358,o), +(61,349,o), +(73,349,c), +(87,349,l), +(101,349,o), +(105,354,o), +(111,370,cs), +(139,446,o), +(188,472,o), +(258,472,cs), +(349,472,o), +(414,420,o), +(418,295,c), +(418,289,l), +(204,289,l), +(191,289,o), +(182,280,o), +(182,267,c), +(182,253,l), +(182,240,o), +(191,231,o), +(204,231,c), +(418,231,l), +(418,225,l), +(414,100,o), +(349,48,o), +(258,48,cs), +(188,48,o), +(139,74,o), +(111,150,cs), +(105,166,o), +(101,171,o), +(87,171,c), +(73,171,l), +(61,171,o), +(50,162,o), +(51,149,cs), +(54,77,o), +(117,-10,o), +(258,-10,cs) +); +} +); +width = 536; +}, +{ +anchors = ( +{ +name = top; +pos = (316,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,-10,o), +(583,66,o), +(593,213,cs), +(595,243,o), +(595,277,o), +(593,307,cs), +(583,454,o), +(476,530,o), +(303,530,cs), +(101,530,o), +(52,427,o), +(42,368,c), +(40,359,o), +(49,351,o), +(58,351,cs), +(227,351,ls), +(244,351,o), +(248,358,o), +(255,363,c), +(266,372,o), +(277,376,o), +(303,376,cs), +(336,376,o), +(347,353,o), +(347,329,cs), +(347,324,l), +(243,324,ls), +(231,324,o), +(222,313,o), +(222,302,cs), +(222,219,ls), +(222,208,o), +(231,197,o), +(243,197,cs), +(347,197,l), +(347,192,ls), +(347,158,o), +(336,142,o), +(303,142,cs), +(276,142,o), +(265,148,o), +(257,154,cs), +(250,159,o), +(246,166,o), +(229,166,cs), +(54,166,ls), +(46,166,o), +(35,158,o), +(38,149,c), +(48,90,o), +(94,-10,o), +(303,-10,cs) +); +} +); +width = 632; +} +); +unicode = 1101; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 259; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 254; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 107; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "i-cy"; +kernLeft = afii10103; +kernRight = afii10103; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (112,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = i; +} +); +width = 223; +}, +{ +anchors = ( +{ +name = top; +pos = (162,520); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = i; +} +); +width = 323; +} +); +unicode = 1110; +}, +{ +color = 10; +glyphname = "yi-cy"; +kernLeft = afii10103; +kernRight = afii10103; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-76,0); +ref = dieresiscomb; +} +); +width = 223; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = idotless; +}, +{ +pos = (-93,0); +ref = dieresiscomb; +} +); +width = 323; +} +); +unicode = 1111; +}, +{ +color = 10; +glyphname = "je-cy"; +kernRight = afii10103; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = j; +} +); +width = 233; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = j; +} +); +width = 345; +} +); +unicode = 1112; +}, +{ +color = 6; +glyphname = "tshe-cy"; +kernLeft = afii10108; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,241,ls), +(142,348,o), +(205,412,o), +(300,412,cs), +(400,412,o), +(453,347,o), +(453,241,cs), +(453,22,ls), +(453,9,o), +(462,0,o), +(475,0,cs), +(492,0,ls), +(505,0,o), +(514,9,o), +(514,22,cs), +(514,246,ls), +(514,373,o), +(446,470,o), +(310,470,cs), +(224,470,o), +(178,438,o), +(142,391,c), +(142,541,l), +(330,541,ls), +(343,541,o), +(352,550,o), +(352,563,cs), +(352,577,ls), +(352,590,o), +(343,599,o), +(330,599,cs), +(142,599,l), +(142,688,ls), +(142,701,o), +(133,710,o), +(120,710,cs), +(103,710,ls), +(90,710,o), +(81,701,o), +(81,688,cs), +(81,599,l), +(23,599,ls), +(10,599,o), +(1,590,o), +(1,577,cs), +(1,563,ls), +(1,550,o), +(10,541,o), +(23,541,cs), +(81,541,l), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +width = 590; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(290,0,ls), +(305,0,o), +(317,12,o), +(317,27,cs), +(317,266,ls), +(317,302,o), +(336,321,o), +(368,321,cs), +(400,321,o), +(418,302,o), +(418,266,cs), +(418,27,ls), +(418,12,o), +(430,0,o), +(445,0,cs), +(641,0,ls), +(656,0,o), +(668,12,o), +(668,27,cs), +(668,273,ls), +(668,406,o), +(594,500,o), +(469,500,cs), +(408,500,o), +(353,477,o), +(317,438,c), +(317,538,l), +(411,538,ls), +(426,538,o), +(438,550,o), +(438,565,cs), +(438,616,ls), +(438,631,o), +(426,643,o), +(411,643,cs), +(317,643,l), +(317,683,ls), +(317,698,o), +(305,710,o), +(290,710,cs), +(95,710,ls), +(80,710,o), +(68,698,o), +(68,683,cs), +(68,643,l), +(42,643,ls), +(27,643,o), +(15,631,o), +(15,616,cs), +(15,565,ls), +(15,550,o), +(27,538,o), +(42,538,cs), +(68,538,l), +(68,27,ls), +(68,12,o), +(80,0,o), +(95,0,cs) +); +} +); +width = 740; +} +); +unicode = 1115; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 629; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 110; +y = 0; +} +); +}; +}, +{ +color = 3; +glyphname = "iu-cy"; +kernLeft = afii10074; +kernRight = afii10080; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (382,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(277,295,l), +(142,295,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs), +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,237,l), +(277,237,l) +); +}, +{ +pos = (205,0); +ref = o; +} +); +width = 763; +}, +{ +anchors = ( +{ +name = top; +pos = (469,520); +} +); +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(466,350,l), +(278,350,l), +(278,493,ls), +(278,508,o), +(266,520,o), +(251,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs), +(251,0,ls), +(266,0,o), +(278,12,o), +(278,27,cs), +(278,175,l), +(466,175,l) +); +}, +{ +pos = (295,0); +ref = o; +} +); +width = 937; +} +); +metricLeft = "en-cy"; +metricRight = o; +unicode = 1102; +}, +{ +color = 6; +glyphname = "ia-cy"; +kernRight = afii10074; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (260,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(416,0,ls), +(429,0,o), +(438,9,o), +(438,22,cs), +(438,498,ls), +(438,511,o), +(429,520,o), +(416,520,cs), +(272,520,ls), +(139,520,o), +(78,472,o), +(78,361,cs), +(78,269,o), +(130,199,o), +(249,199,c), +(249,194,l), +(377,194,l), +(377,22,l), +(377,9,o), +(386,0,o), +(399,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(103,0,l), +(114,0,o), +(124,8,o), +(130,15,c), +(271,216,l), +(196,216,l), +(73,40,l), +(66,32,o), +(65,25,o), +(65,20,cs), +(65,9,o), +(74,0,o), +(85,0,c) +); +}, +{ +closed = 1; +nodes = ( +(174,252,o), +(139,298,o), +(139,361,cs), +(139,437,o), +(177,462,o), +(263,462,cs), +(377,462,l), +(377,252,l), +(253,252,ls) +); +} +); +width = 519; +}, +{ +anchors = ( +{ +name = top; +pos = (328,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(576,0,ls), +(591,0,o), +(603,12,o), +(603,27,cs), +(603,493,ls), +(603,508,o), +(591,520,o), +(576,520,cs), +(284,520,ls), +(151,520,o), +(60,452,o), +(60,336,cs), +(60,220,o), +(151,156,o), +(307,156,c), +(307,151,l), +(364,151,l), +(364,27,ls), +(364,12,o), +(376,0,o), +(391,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(242,0,ls), +(253,0,o), +(260,5,o), +(264,15,cs), +(329,166,l), +(140,206,l), +(43,31,l), +(41,27,o), +(40,23,o), +(40,20,cs), +(40,9,o), +(49,0,o), +(62,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(277,300,o), +(264,313,o), +(264,336,cs), +(264,359,o), +(277,371,o), +(304,371,cs), +(369,371,l), +(369,300,l), +(304,300,ls) +); +} +); +width = 655; +} +); +metricRight = "en-cy"; +unicode = 1103; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 49; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "dje-cy"; +kernLeft = afii10108; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(272,-190,l), +(467,-190,o), +(513,-46,o), +(513,138,c), +(513,246,l), +(513,373,o), +(445,470,o), +(309,470,cs), +(223,470,o), +(177,438,o), +(141,391,c), +(141,541,l), +(329,541,l), +(342,541,o), +(351,550,o), +(351,563,c), +(351,577,l), +(351,590,o), +(342,599,o), +(329,599,c), +(141,599,l), +(141,688,l), +(141,701,o), +(132,710,o), +(119,710,c), +(102,710,l), +(89,710,o), +(80,701,o), +(80,688,c), +(80,599,l), +(22,599,l), +(9,599,o), +(0,590,o), +(0,577,c), +(0,563,l), +(0,550,o), +(9,541,o), +(22,541,c), +(80,541,l), +(80,22,l), +(80,9,o), +(89,0,o), +(102,0,c), +(119,0,l), +(132,0,o), +(141,9,o), +(141,22,c), +(141,241,l), +(141,348,o), +(204,412,o), +(299,412,cs), +(399,412,o), +(452,347,o), +(452,241,c), +(452,138,l), +(452,-12,o), +(434,-132,o), +(272,-132,c), +(268,-132,l), +(255,-132,o), +(246,-141,o), +(246,-154,c), +(246,-168,l), +(246,-181,o), +(255,-190,o), +(268,-190,c) +); +} +); +width = 573; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-190,ls), +(558,-190,o), +(668,-114,o), +(668,29,cs), +(668,273,ls), +(668,406,o), +(594,500,o), +(469,500,cs), +(408,500,o), +(353,477,o), +(317,438,c), +(317,538,l), +(411,538,ls), +(426,538,o), +(438,550,o), +(438,565,cs), +(438,616,ls), +(438,631,o), +(426,643,o), +(411,643,cs), +(317,643,l), +(317,683,ls), +(317,698,o), +(305,710,o), +(290,710,cs), +(95,710,ls), +(80,710,o), +(68,698,o), +(68,683,cs), +(68,643,l), +(42,643,ls), +(27,643,o), +(15,631,o), +(15,616,cs), +(15,565,ls), +(15,550,o), +(27,538,o), +(42,538,cs), +(68,538,l), +(68,27,ls), +(68,12,o), +(80,0,o), +(95,0,cs), +(290,0,ls), +(305,0,o), +(317,12,o), +(317,27,cs), +(317,266,ls), +(317,302,o), +(336,321,o), +(368,321,cs), +(400,321,o), +(418,302,o), +(418,266,cs), +(418,35,ls), +(418,2,o), +(404,-15,o), +(375,-15,cs), +(355,-15,ls), +(340,-15,o), +(328,-27,o), +(328,-42,cs), +(328,-163,ls), +(328,-178,o), +(340,-190,o), +(355,-190,cs) +); +} +); +width = 708; +} +); +unicode = 1106; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 620; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 140; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 553; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 482; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "yat-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(252,0,ls), +(392,0,o), +(456,51,o), +(456,169,cs), +(456,277,o), +(403,346,o), +(267,346,cs), +(167,346,l), +(167,688,l), +(167,701,o), +(158,710,o), +(145,710,cs), +(128,710,ls), +(115,710,o), +(106,701,o), +(106,688,cs), +(106,22,ls), +(106,9,o), +(115,0,o), +(128,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(167,288,l), +(261,288,ls), +(357,288,o), +(395,249,o), +(395,169,cs), +(395,86,o), +(354,58,o), +(261,58,cs), +(167,58,l) +); +}, +{ +closed = 1; +nodes = ( +(312,462,ls), +(325,462,o), +(334,471,o), +(334,484,cs), +(334,498,ls), +(334,511,o), +(325,520,o), +(312,520,cs), +(47,520,ls), +(34,520,o), +(25,511,o), +(25,498,cs), +(25,484,ls), +(25,471,o), +(34,462,o), +(47,462,cs) +); +} +); +width = 481; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(393,0,ls), +(526,0,o), +(617,68,o), +(617,184,cs), +(617,300,o), +(526,369,o), +(393,369,cs), +(313,369,l), +(313,683,ls), +(313,698,o), +(301,710,o), +(286,710,cs), +(106,710,ls), +(91,710,o), +(79,698,o), +(79,683,cs), +(79,27,ls), +(79,12,o), +(91,0,o), +(106,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(308,220,l), +(373,220,ls), +(400,220,o), +(413,207,o), +(413,184,cs), +(413,161,o), +(400,149,o), +(373,149,cs), +(308,149,l) +); +}, +{ +closed = 1; +nodes = ( +(417,455,ls), +(432,455,o), +(444,467,o), +(444,482,cs), +(444,533,ls), +(444,548,o), +(432,560,o), +(417,560,cs), +(42,560,ls), +(27,560,o), +(15,548,o), +(15,533,cs), +(15,482,ls), +(15,467,o), +(27,455,o), +(42,455,cs) +); +} +); +width = 642; +} +); +metricRight = "softsign-cy"; +unicode = 1123; +}, +{ +color = 6; +glyphname = "yusbig-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(45,0,ls), +(57,0,o), +(64,5,o), +(71,14,c), +(174,182,ls), +(201,226,o), +(227,237,o), +(273,237,cs), +(318,237,l), +(318,22,ls), +(318,9,o), +(327,0,o), +(340,0,cs), +(357,0,ls), +(370,0,o), +(379,9,o), +(379,22,cs), +(379,237,l), +(424,237,ls), +(470,237,o), +(496,226,o), +(523,182,cs), +(626,14,l), +(633,5,o), +(640,0,o), +(652,0,cs), +(678,0,ls), +(690,0,o), +(697,5,o), +(697,14,cs), +(697,18,o), +(696,22,o), +(692,27,c), +(572,216,ls), +(530,282,o), +(489,295,o), +(437,295,cs), +(419,295,l), +(572,487,ls), +(575,491,o), +(577,496,o), +(577,501,cs), +(577,511,o), +(570,520,o), +(557,520,cs), +(137,520,ls), +(127,520,o), +(117,512,o), +(117,500,cs), +(117,495,o), +(118,490,o), +(123,484,cs), +(278,295,l), +(260,295,ls), +(208,295,o), +(167,282,o), +(125,216,cs), +(5,27,l), +(1,22,o), +(0,18,o), +(0,14,cs), +(0,5,o), +(7,0,o), +(19,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(214,462,l), +(483,462,l), +(349,295,l) +); +} +); +width = 697; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,0,ls), +(269,0,o), +(278,14,o), +(280,17,c), +(367,163,l), +(371,171,o), +(381,175,o), +(390,175,c), +(392,175,l), +(392,27,ls), +(392,12,o), +(404,0,o), +(419,0,cs), +(594,0,ls), +(609,0,o), +(621,12,o), +(621,27,cs), +(621,175,l), +(623,175,l), +(630,175,o), +(640,173,o), +(646,163,cs), +(733,17,l), +(735,14,o), +(744,0,o), +(764,0,cs), +(974,0,ls), +(987,0,o), +(998,11,o), +(998,24,cs), +(998,30,o), +(996,34,o), +(994,37,cs), +(903,175,ls), +(854,249,o), +(802,270,o), +(742,270,cs), +(695,270,l), +(849,481,l), +(851,484,o), +(854,490,o), +(854,496,cs), +(854,509,o), +(843,520,o), +(830,520,cs), +(183,520,ls), +(170,520,o), +(159,509,o), +(159,496,cs), +(159,490,o), +(162,484,o), +(164,481,c), +(318,270,l), +(261,270,ls), +(211,270,o), +(159,249,o), +(106,168,cs), +(19,37,ls), +(17,34,o), +(15,30,o), +(15,24,cs), +(15,11,o), +(26,0,o), +(39,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(423,398,l), +(590,398,l), +(507,268,l) +); +} +); +width = 1013; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (642,0); +} +); +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(402,247,l), +(593,487,ls), +(596,491,o), +(598,496,o), +(598,501,cs), +(598,511,o), +(591,520,o), +(578,520,cs), +(550.25,520,l), +(370,295,l), +(189.75,520,l), +(158,520,ls), +(148,520,o), +(138,512,o), +(138,500,cs), +(138,495,o), +(140,490,o), +(144,484,cs), +(334,247,l) +); +} +); +}; +color = 6; +layerId = "10F8D815-A7AB-4668-B44E-A441EFCC3BA4"; +name = "1"; +shapes = ( +{ +closed = 1; +nodes = ( +(561,462,l), +(561,520,l), +(182,520,l), +(182,462,l) +); +}, +{ +closed = 1; +nodes = ( +(402,247,l), +(593,487,ls), +(596,491,o), +(598,496,o), +(598,501,cs), +(598,511,o), +(591,520,o), +(578,520,cs), +(550.25,520,l), +(370,295,l), +(189.75,520,l), +(158,520,ls), +(148,520,o), +(138,512,o), +(138,500,cs), +(138,495,o), +(140,490,o), +(144,484,cs), +(334,247,l) +); +}, +{ +closed = 1; +nodes = ( +(432,295,l), +(305,295,l), +(114,27,l), +(111,22,o), +(109,18,o), +(109,14,cs), +(109,5,o), +(116,0,o), +(128,0,cs), +(154,0,ls), +(166,0,o), +(174,5,o), +(180,14,cs), +(339,237,l), +(339,237,l), +(339,22,ls), +(339,9,o), +(348,0,o), +(361,0,cs), +(378,0,ls), +(391,0,o), +(400,9,o), +(400,22,cs), +(400,237,l), +(400,237,l), +(558,14,l), +(565,5,o), +(572,0,o), +(584,0,cs), +(610,0,ls), +(622,0,o), +(629,5,o), +(629,14,cs), +(629,18,o), +(628,22,o), +(624,27,c) +); +} +); +width = 1273; +}, +{ +anchors = ( +{ +name = _center; +pos = (464.5,467); +}, +{ +name = bottomright; +pos = (700,0); +}, +{ +name = top; +pos = (485,520); +} +); +associatedMasterId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +color = 6; +layerId = "5A22D510-FACA-4E1B-9AED-5AE8471E420E"; +name = "Sep 3 16, 11:39"; +shapes = ( +{ +closed = 1; +nodes = ( +(572,0,ls), +(587,0,o), +(599,12,o), +(599,27,cs), +(599,175,l), +(643,175,l), +(643,267,l), +(326,267,l), +(326,175,l), +(370,175,l), +(370,27,ls), +(370,12,o), +(382,0,o), +(397,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(177,279,l), +(16,37,ls), +(14,34,o), +(12,30,o), +(12,24,cs), +(12,11,o), +(23,0,o), +(36,0,cs), +(246,0,ls), +(266,0,o), +(275,14,o), +(277,17,cs), +(428,270,l) +); +}, +{ +closed = 1; +nodes = ( +(544,270,l), +(695,17,ls), +(697,14,o), +(706,0,o), +(726,0,cs), +(936,0,ls), +(949,0,o), +(960,11,o), +(960,24,cs), +(960,30,o), +(958,34,o), +(956,37,cs), +(795,279,l) +); +}, +{ +closed = 1; +nodes = ( +(1364,0,ls), +(1384,0,o), +(1391,13,o), +(1397,25,c), +(1589,489,ls), +(1590,492,o), +(1590,494,o), +(1590,496,cs), +(1590,509,o), +(1579,520,o), +(1566,520,cs), +(1397,520,ls), +(1377,520,o), +(1368,507,o), +(1364,496,cs), +(1284,263,l), +(1204,496,ls), +(1200,507,o), +(1191,520,o), +(1171,520,cs), +(1002,520,ls), +(989,520,o), +(978,509,o), +(978,496,cs), +(978,494,o), +(978,492,o), +(979,489,cs), +(1171,25,l), +(1177,13,o), +(1184,0,o), +(1204,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(161,520,ls), +(148,520,o), +(137,509,o), +(137,496,cs), +(137,490,o), +(140,484,o), +(142,481,c), +(277,252,l), +(692,252,l), +(827,481,l), +(829,484,o), +(832,490,o), +(832,496,cs), +(832,509,o), +(821,520,o), +(808,520,cs) +); +}, +{ +closed = 1; +nodes = ( +(558,398,l), +(485,268,l), +(411,398,l) +); +} +); +width = 1599; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (642,0); +} +); +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +background = { +shapes = ( +{ +closed = 1; +nodes = ( +(402,247,l), +(593,487,ls), +(596,491,o), +(598,496,o), +(598,501,cs), +(598,511,o), +(591,520,o), +(578,520,cs), +(550.25,520,l), +(370,295,l), +(189.75,520,l), +(158,520,ls), +(148,520,o), +(138,512,o), +(138,500,cs), +(138,495,o), +(140,490,o), +(144,484,cs), +(334,247,l) +); +} +); +}; +color = 6; +layerId = "A2BBB50C-EFA2-4BA2-8F4F-994681083759"; +name = "2"; +shapes = ( +{ +closed = 1; +nodes = ( +(561,462,l), +(561,520,l), +(182,520,l), +(182,462,l) +); +}, +{ +closed = 1; +nodes = ( +(402,247,l), +(593,487,ls), +(596,491,o), +(598,496,o), +(598,501,cs), +(598,511,o), +(591,520,o), +(578,520,cs), +(550.25,520,l), +(370,295,l), +(189.75,520,l), +(158,520,ls), +(148,520,o), +(138,512,o), +(138,500,cs), +(138,495,o), +(140,490,o), +(144,484,cs), +(334,247,l) +); +}, +{ +closed = 1; +nodes = ( +(521,295,l), +(215,295,l), +(24,27,l), +(21,22,o), +(19,18,o), +(19,14,cs), +(19,5,o), +(26,0,o), +(38,0,cs), +(64,0,ls), +(76,0,o), +(84,5,o), +(90,14,cs), +(249,237,l), +(339,237,l), +(339,22,ls), +(339,9,o), +(348,0,o), +(361,0,cs), +(378,0,ls), +(391,0,o), +(400,9,o), +(400,22,cs), +(400,237,l), +(489,237,l), +(647,14,l), +(654,5,o), +(661,0,o), +(673,0,cs), +(699,0,ls), +(711,0,o), +(718,5,o), +(718,14,cs), +(718,18,o), +(717,22,o), +(713,27,c) +); +} +); +width = 1273; +} +); +unicode = 1131; +}, +{ +color = 10; +glyphname = "fita-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "obarred-cy"; +} +); +width = 558; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "obarred-cy"; +} +); +width = 642; +} +); +unicode = 1139; +}, +{ +color = 6; +glyphname = "izhitsa-cy"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (274,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,0,ls), +(294,0,o), +(306,10,o), +(311,25,cs), +(445,392,ls), +(463,441,o), +(483,462,o), +(525,462,cs), +(538,462,o), +(547,471,o), +(547,484,cs), +(547,498,ls), +(547,511,o), +(538,520,o), +(525,520,c), +(521,520,l), +(445,519,o), +(412,481,o), +(383,401,cs), +(265,74,l), +(99,505,ls), +(97,510,o), +(90,520,o), +(77,520,cs), +(56,520,ls), +(45,520,o), +(36,511,o), +(36,500,cs), +(36,498,o), +(37,492,o), +(38,489,c), +(219,25,ls), +(225,10,o), +(236,0,o), +(257,0,cs) +); +} +); +width = 547; +}, +{ +anchors = ( +{ +name = top; +pos = (315,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,0,ls), +(405,0,o), +(412,13,o), +(418,25,c), +(515,270,ls), +(538,327,o), +(554,345,o), +(585,345,cs), +(600,345,o), +(610,357,o), +(610,373,cs), +(610,492,ls), +(610,508,o), +(598,520,o), +(582,520,cs), +(522,520,ls), +(429,520,o), +(403,481,o), +(370,398,cs), +(316,261,l), +(235,496,ls), +(231,507,o), +(222,520,o), +(202,520,cs), +(33,520,ls), +(20,520,o), +(9,509,o), +(9,496,cs), +(9,494,o), +(9,492,o), +(10,489,c), +(202,25,l), +(208,13,o), +(215,0,o), +(235,0,cs) +); +} +); +width = 630; +} +); +metricLeft = v; +unicode = 1141; +}, +{ +color = 3; +glyphname = "zhedescender-cy"; +layers = ( +{ +anchors = ( +{ +name = _bottomright; +pos = (673,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(752,-130,ls), +(765,-130,o), +(774,-121,o), +(774,-108,cs), +(774,36,ls), +(774,49,o), +(765,58,o), +(752,58,cs), +(642,58,l), +(692,0,l), +(713,0,l), +(713,-108,ls), +(713,-121,o), +(722,-130,o), +(735,-130,cs) +); +}, +{ +ref = "zhe-cy"; +} +); +width = 774; +}, +{ +anchors = ( +{ +name = _bottomright; +pos = (803.617,0); +} +); +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(972,-110,ls), +(987,-110,o), +(999,-98,o), +(999,-83,cs), +(999,148,ls), +(999,163,o), +(987,175,o), +(972,175,cs), +(700,175,l), +(764,0,l), +(766,0,l), +(766,-83,ls), +(766,-98,o), +(778,-110,o), +(793,-110,cs) +); +}, +{ +ref = "zhe-cy"; +} +); +width = 1019; +} +); +metricLeft = "zhe-cy"; +metricRight = "kadescender-cy"; +unicode = 1175; +}, +{ +color = 3; +glyphname = "zedescender-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(270,-130,ls), +(283,-130,o), +(292,-121,o), +(292,-108,cs), +(292,36,l), +(231,0,l), +(231,-108,ls), +(231,-121,o), +(240,-130,o), +(253,-130,cs) +); +}, +{ +alignment = -1; +ref = "ze-cy"; +} +); +width = 492; +}, +{ +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(402,-110,ls), +(417,-110,o), +(429,-98,o), +(429,-83,cs), +(429,48,l), +(196,48,l), +(196,-83,ls), +(196,-98,o), +(208,-110,o), +(223,-110,cs) +); +}, +{ +alignment = -1; +ref = "ze-cy"; +} +); +width = 598; +} +); +metricLeft = "ze-cy"; +metricRight = "ze-cy"; +unicode = 1177; +}, +{ +color = 3; +glyphname = "kadescender-cy"; +layers = ( +{ +anchors = ( +{ +name = _bottomright; +pos = (377,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(507,-130,ls), +(520,-130,o), +(529,-121,o), +(529,-108,cs), +(529,36,ls), +(529,49,o), +(520,58,o), +(507,58,cs), +(407,58,l), +(438,0,l), +(468,0,l), +(468,-108,ls), +(468,-121,o), +(477,-130,o), +(490,-130,cs) +); +}, +{ +ref = "ka-cy"; +} +); +width = 529; +}, +{ +anchors = ( +{ +name = _bottomright; +pos = (356,0); +} +); +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(648,-110,ls), +(663,-110,o), +(675,-98,o), +(675,-83,cs), +(675,148,ls), +(675,163,o), +(663,175,o), +(648,175,cs), +(376,175,l), +(418,0,l), +(442,0,l), +(442,-83,ls), +(442,-98,o), +(454,-110,o), +(469,-110,cs) +); +}, +{ +ref = "ka-cy"; +} +); +width = 695; +} +); +metricLeft = "en-cy"; +unicode = 1179; +}, +{ +color = 6; +glyphname = "kaverticalstroke-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,235,l), +(199,235,l), +(199,147,ls), +(199,134,o), +(208,125,o), +(221,125,cs), +(225,125,ls), +(238,125,o), +(247,134,o), +(247,147,cs), +(247,235,l), +(252,235,l), +(410,14,ls), +(417,5,o), +(424,0,o), +(436,0,cs), +(462,0,ls), +(474,0,o), +(481,5,o), +(481,14,cs), +(481,18,o), +(480,22,o), +(476,27,cs), +(302,272,l), +(457,494,ls), +(460,499,o), +(462,503,o), +(462,506,cs), +(462,515,o), +(454,520,o), +(442,520,cs), +(422,520,ls), +(410,520,o), +(403,515,o), +(396,505,cs), +(249,295,l), +(247,295,l), +(247,372,ls), +(247,385,o), +(238,394,o), +(225,394,cs), +(221,394,ls), +(208,394,o), +(199,385,o), +(199,372,cs), +(199,295,l), +(142,295,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs) +); +} +); +width = 506; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(247,0,ls), +(262,0,o), +(274,12,o), +(274,27,cs), +(274,195,l), +(299,195,l), +(299,126,ls), +(299,111,o), +(311,99,o), +(326,99,cs), +(338,99,ls), +(353,99,o), +(365,111,o), +(365,126,cs), +(365,195,l), +(369,195,l), +(476,17,ls), +(482,8,o), +(491,0,o), +(507,0,cs), +(717,0,ls), +(730,0,o), +(741,11,o), +(741,24,cs), +(741,30,o), +(739,34,o), +(737,37,cs), +(585,266,l), +(712,481,ls), +(714,484,o), +(717,490,o), +(717,496,cs), +(717,509,o), +(706,520,o), +(693,520,cs), +(501,520,ls), +(483,520,o), +(475,508,o), +(472,503,cs), +(375,330,l), +(365,330,l), +(365,401,ls), +(365,416,o), +(353,428,o), +(338,428,cs), +(326,428,ls), +(311,428,o), +(299,416,o), +(299,401,cs), +(299,330,l), +(274,330,l), +(274,493,ls), +(274,508,o), +(262,520,o), +(247,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs) +); +} +); +width = 756; +} +); +metricLeft = "en-cy"; +metricRight = "ka-cy"; +unicode = 1181; +}, +{ +color = 6; +glyphname = "kabashkir-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(419,272,l), +(574,494,l), +(577,499,o), +(579,503,o), +(579,506,cs), +(579,515,o), +(571,520,o), +(559,520,cs), +(539,520,ls), +(527,520,o), +(520,515,o), +(513,505,cs), +(366,295,l), +(259,295,l), +(259,498,ls), +(259,511,o), +(250,520,o), +(237,520,cs), +(35,520,ls), +(22,520,o), +(13,511,o), +(13,498,cs), +(13,484,ls), +(13,471,o), +(22,462,o), +(35,462,cs), +(198,462,l), +(198,22,ls), +(198,9,o), +(207,0,o), +(220,0,cs), +(237,0,ls), +(250,0,o), +(259,9,o), +(259,22,cs), +(259,235,l), +(369,235,l), +(527,14,l), +(534,5,o), +(541,0,o), +(553,0,cs), +(579,0,ls), +(591,0,o), +(598,5,o), +(598,14,cs), +(598,18,o), +(597,22,o), +(593,27,c) +); +} +); +width = 623; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(625,266,l), +(752,481,l), +(754,484,o), +(757,490,o), +(757,496,cs), +(757,509,o), +(746,520,o), +(733,520,cs), +(541,520,ls), +(523,520,o), +(515,508,o), +(512,503,cs), +(426,350,l), +(404,350,l), +(404,493,ls), +(404,508,o), +(392,520,o), +(377,520,cs), +(42,520,ls), +(27,520,o), +(15,508,o), +(15,493,cs), +(15,372,ls), +(15,357,o), +(27,345,o), +(42,345,cs), +(175,345,l), +(175,27,ls), +(175,12,o), +(187,0,o), +(202,0,cs), +(377,0,ls), +(392,0,o), +(404,12,o), +(404,27,cs), +(404,175,l), +(421,175,l), +(516,17,l), +(522,8,o), +(531,0,o), +(547,0,cs), +(757,0,ls), +(770,0,o), +(781,11,o), +(781,24,cs), +(781,30,o), +(779,34,o), +(777,37,cs) +); +} +); +width = 796; +} +); +metricLeft = "te-cy"; +metricRight = "ka-cy"; +unicode = 1185; +}, +{ +color = 10; +glyphname = "endescender-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "en-cy"; +}, +{ +pos = (454,0); +ref = "descender-cy"; +} +); +width = 596; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "en-cy"; +}, +{ +alignment = -1; +pos = (378,0); +ref = "descender-cy"; +} +); +width = 689; +} +); +metricLeft = "en-cy"; +metricRight = "tse-cy"; +unicode = 1187; +}, +{ +color = 6; +glyphname = "enghe-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(476,520,ls), +(463,520,o), +(454,511,o), +(454,498,cs), +(454,295,l), +(142,295,l), +(142,498,ls), +(142,511,o), +(133,520,o), +(120,520,cs), +(103,520,ls), +(90,520,o), +(81,511,o), +(81,498,cs), +(81,22,ls), +(81,9,o), +(90,0,o), +(103,0,cs), +(120,0,ls), +(133,0,o), +(142,9,o), +(142,22,cs), +(142,237,l), +(454,237,l), +(454,22,ls), +(454,9,o), +(463,0,o), +(476,0,cs), +(493,0,ls), +(506,0,o), +(515,9,o), +(515,22,cs), +(515,462,l), +(709,462,ls), +(722,462,o), +(731,471,o), +(731,484,cs), +(731,498,ls), +(731,511,o), +(722,520,o), +(709,520,cs) +); +} +); +width = 741; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,520,ls), +(390,520,o), +(378,508,o), +(378,493,cs), +(378,350,l), +(278,350,l), +(278,493,ls), +(278,508,o), +(266,520,o), +(251,520,cs), +(72,520,ls), +(57,520,o), +(45,508,o), +(45,493,cs), +(45,27,ls), +(45,12,o), +(57,0,o), +(72,0,cs), +(251,0,ls), +(266,0,o), +(278,12,o), +(278,27,cs), +(278,175,l), +(378,175,l), +(378,27,ls), +(378,12,o), +(390,0,o), +(405,0,cs), +(584,0,ls), +(599,0,o), +(611,12,o), +(611,27,cs), +(611,345,l), +(750,345,ls), +(765,345,o), +(777,357,o), +(777,372,cs), +(777,493,ls), +(777,508,o), +(765,520,o), +(750,520,cs) +); +} +); +width = 797; +} +); +metricLeft = "en-cy"; +metricRight = "ge-cy"; +unicode = 1189; +}, +{ +color = 10; +glyphname = "pedescender-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "pe-cy"; +}, +{ +pos = (436,0); +ref = "descender-cy"; +} +); +width = 576; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "pe-cy"; +}, +{ +alignment = -1; +pos = (378,0); +ref = "descender-cy"; +} +); +width = 689; +} +); +metricLeft = "en-cy"; +metricRight = "tse-cy"; +unicode = 1317; +}, +{ +color = 3; +glyphname = "esdescender-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-130,ls), +(301,-130,o), +(310,-121,o), +(310,-108,cs), +(310,36,l), +(249,0,l), +(249,-108,ls), +(249,-121,o), +(258,-130,o), +(271,-130,cs) +); +}, +{ +ref = "es-cy"; +} +); +width = 536; +}, +{ +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(405,-110,ls), +(420,-110,o), +(432,-98,o), +(432,-83,cs), +(432,48,l), +(199,48,l), +(199,-83,ls), +(199,-98,o), +(211,-110,o), +(226,-110,cs) +); +}, +{ +ref = "es-cy"; +} +); +width = 622; +} +); +unicode = 1195; +}, +{ +color = 6; +glyphname = "ustrait-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(489,511,o), +(480,520,o), +(469,520,cs), +(448,520,ls), +(435,520,o), +(428,510,o), +(426,505,cs), +(257,73,l), +(88,505,ls), +(86,510,o), +(79,520,o), +(66,520,cs), +(45,520,ls), +(34,520,o), +(25,511,o), +(25,500,cs), +(25,498,o), +(26,492,o), +(27,489,c), +(226,-14,l), +(226,-168,ls), +(226,-181,o), +(235,-190,o), +(248,-190,cs), +(265,-190,ls), +(278,-190,o), +(287,-181,o), +(287,-168,cs), +(287,-14,l), +(487,489,l), +(488,492,o), +(489,498,o), +(489,500,cs) +); +} +); +width = 514; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(612,509,o), +(601,520,o), +(588,520,cs), +(419,520,ls), +(399,520,o), +(390,507,o), +(386,496,cs), +(306,263,l), +(226,496,ls), +(222,507,o), +(213,520,o), +(193,520,cs), +(24,520,ls), +(11,520,o), +(0,509,o), +(0,496,cs), +(0,494,o), +(0,492,o), +(1,489,c), +(186,48,l), +(186,-163,ls), +(186,-178,o), +(198,-190,o), +(213,-190,cs), +(398,-190,ls), +(413,-190,o), +(425,-178,o), +(425,-163,cs), +(425,43,l), +(611,489,l), +(612,492,o), +(612,494,o), +(612,496,cs) +); +} +); +width = 612; +} +); +unicode = 1199; +}, +{ +color = 10; +glyphname = "ustraitstroke-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "ustrait-cy"; +}, +{ +pos = (61,-304); +ref = strokeshortcomb; +} +); +width = 514; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "ustrait-cy"; +}, +{ +pos = (63,-308); +ref = strokeshortcomb; +} +); +width = 612; +} +); +unicode = 1201; +}, +{ +color = 10; +glyphname = "chedescender-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "che-cy"; +}, +{ +pos = (386,0); +ref = "descender-cy"; +} +); +width = 527; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "che-cy"; +}, +{ +alignment = -1; +pos = (352,0); +ref = "descender-cy"; +} +); +width = 663; +} +); +metricLeft = "che-cy"; +metricRight = "tse-cy"; +unicode = 1207; +}, +{ +color = 6; +glyphname = "cheverticalstroke-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(414,0,ls), +(427,0,o), +(436,9,o), +(436,22,cs), +(436,498,ls), +(436,511,o), +(427,520,o), +(414,520,cs), +(397,520,ls), +(384,520,o), +(375,511,o), +(375,498,cs), +(375,311,ls), +(375,250,o), +(313,231,o), +(219,231,cs), +(146,231,o), +(106,261,o), +(106,327,cs), +(106,498,ls), +(106,511,o), +(97,520,o), +(84,520,cs), +(67,520,ls), +(54,520,o), +(45,511,o), +(45,498,cs), +(45,322,ls), +(45,217,o), +(111,173,o), +(215,173,cs), +(284,173,o), +(337,188,o), +(375,226,c), +(375,22,ls), +(375,9,o), +(384,0,o), +(397,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(216,98,ls), +(216,85,o), +(225,76,o), +(238,76,cs), +(242,76,ls), +(255,76,o), +(264,85,o), +(264,98,cs), +(264,323,ls), +(264,336,o), +(255,345,o), +(242,345,cs), +(238,345,ls), +(225,345,o), +(216,336,o), +(216,323,cs) +); +} +); +width = 517; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(633,0,ls), +(648,0,o), +(660,12,o), +(660,27,cs), +(660,493,ls), +(660,508,o), +(648,520,o), +(633,520,cs), +(438,520,ls), +(423,520,o), +(411,508,o), +(411,493,cs), +(411,337,ls), +(411,313,o), +(376,299,o), +(329,299,cs), +(287,299,o), +(265,316,o), +(265,354,cs), +(265,493,ls), +(265,508,o), +(253,520,o), +(238,520,cs), +(52,520,ls), +(37,520,o), +(25,508,o), +(25,493,cs), +(25,354,ls), +(25,213,o), +(114,140,o), +(249,140,cs), +(318,140,o), +(375,151,o), +(411,168,cs), +(411,27,ls), +(411,12,o), +(423,0,o), +(438,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(314,112,ls), +(314,97,o), +(326,85,o), +(341,85,cs), +(353,85,ls), +(368,85,o), +(380,97,o), +(380,112,cs), +(380,347,ls), +(380,362,o), +(368,374,o), +(353,374,cs), +(341,374,ls), +(326,374,o), +(314,362,o), +(314,347,cs) +); +} +); +width = 712; +} +); +metricLeft = "che-cy"; +metricRight = "en-cy"; +unicode = 1209; +}, +{ +color = 10; +glyphname = "shha-cy"; +layers = ( +{ +anchors = ( +{ +name = bottomright; +pos = (571,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = h; +} +); +width = 591; +}, +{ +anchors = ( +{ +name = bottomright; +pos = (665,0); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = h; +} +); +width = 685; +} +); +unicode = 1211; +}, +{ +color = 10; +glyphname = "palochka-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = l; +} +); +width = 225; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = l; +} +); +width = 323; +} +); +unicode = 1231; +}, +{ +color = 10; +glyphname = "zhebreve-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "zhe-cy"; +}, +{ +pos = (170,0); +ref = "brevecomb-cy"; +} +); +width = 749; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "zhe-cy"; +}, +{ +pos = (210,0); +ref = "brevecomb-cy"; +} +); +width = 1013; +} +); +unicode = 1218; +}, +{ +color = 3; +glyphname = "chekhakassian-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(349,-130,o), +(358,-121,o), +(358,-108,cs), +(358,0,l), +(398,0,l), +(429,58,l), +(319,58,ls), +(306,58,o), +(297,49,o), +(297,36,cs), +(297,-108,ls), +(297,-121,o), +(306,-130,o), +(319,-130,cs), +(336,-130,ls) +); +}, +{ +ref = "che-cy"; +} +); +width = 510; +}, +{ +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(522,-110,o), +(534,-98,o), +(534,-83,cs), +(534,0,l), +(558,0,l), +(600,105,l), +(328,105,ls), +(313,105,o), +(301,93,o), +(301,78,cs), +(301,-83,ls), +(301,-98,o), +(313,-110,o), +(328,-110,cs), +(507,-110,ls) +); +}, +{ +ref = "che-cy"; +} +); +width = 652; +} +); +unicode = 1228; +}, +{ +color = 10; +glyphname = "abreve-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "a-cy"; +}, +{ +pos = (68,0); +ref = "brevecomb-cy"; +} +); +width = 536; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "a-cy"; +}, +{ +pos = (24,0); +ref = "brevecomb-cy"; +} +); +width = 622; +} +); +unicode = 1233; +}, +{ +color = 10; +glyphname = "adieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "a-cy"; +}, +{ +pos = (85,0); +ref = dieresiscomb; +} +); +width = 536; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "a-cy"; +}, +{ +pos = (66,0); +ref = dieresiscomb; +} +); +width = 622; +} +); +unicode = 1235; +}, +{ +color = 10; +glyphname = "aie-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = ae; +} +); +width = 881; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = ae; +} +); +width = 935; +} +); +metricLeft = ae; +metricRight = ae; +unicode = 1237; +}, +{ +color = 10; +glyphname = "iebreve-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "ie-cy"; +}, +{ +pos = (72,0); +ref = "brevecomb-cy"; +} +); +width = 546; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "ie-cy"; +}, +{ +pos = (14,0); +ref = "brevecomb-cy"; +} +); +width = 623; +} +); +unicode = 1239; +}, +{ +color = 6; +glyphname = "schwa-cy"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (273,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(146,530,o), +(68,447,o), +(66,409,cs), +(65,397,o), +(75,389,o), +(87,389,cs), +(103,389,ls), +(118,389,o), +(121,390,o), +(133,407,cs), +(144,423,o), +(187,472,o), +(272,472,cs), +(369,472,o), +(426,386,o), +(430,295,cs), +(430,292,o), +(430,285,o), +(430,285,c), +(74,285,ls), +(61,285,o), +(51,276,o), +(51,263,cs), +(51,248,ls), +(51,88,o), +(133,-10,o), +(272,-10,cs), +(402,-10,o), +(481,84,o), +(491,220,cs), +(492,240,o), +(492,280,o), +(491,300,cs), +(481,437,o), +(401,530,o), +(272,530,cs) +); +}, +{ +closed = 1; +nodes = ( +(430,225,ls), +(430,125,o), +(372,48,o), +(272,48,cs), +(172,48,o), +(112,125,o), +(112,225,cs), +(112,229,l), +(430,229,l) +); +} +); +width = 546; +}, +{ +anchors = ( +{ +name = top; +pos = (312,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(124,530,o), +(41,426,o), +(38,375,cs), +(37,362,o), +(47,353,o), +(60,353,cs), +(249,353,ls), +(265,353,o), +(270,355,o), +(282,367,cs), +(293,378,o), +(299,385,o), +(311,385,cs), +(340,385,o), +(350,364,o), +(350,324,cs), +(350,322,o), +(350,321,o), +(350,319,c), +(52,319,ls), +(37,319,o), +(25,307,o), +(25,292,cs), +(25,262,ls), +(25,115,o), +(114,-10,o), +(310,-10,cs), +(481,-10,o), +(592,82,o), +(595,254,cs), +(595,256,o), +(595,259,o), +(595,261,cs), +(595,448,o), +(484,530,o), +(309,530,cs) +); +}, +{ +closed = 1; +nodes = ( +(350,193,l), +(350,149,o), +(336,130,o), +(310,130,cs), +(284,130,o), +(270,149,o), +(270,193,c), +(270,194,l), +(350,194,l) +); +} +); +width = 623; +} +); +unicode = 1241; +}, +{ +color = 10; +glyphname = "zhedieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "zhe-cy"; +}, +{ +pos = (187,0); +ref = dieresiscomb; +} +); +width = 749; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "zhe-cy"; +}, +{ +pos = (252,0); +ref = dieresiscomb; +} +); +width = 1013; +} +); +unicode = 1245; +}, +{ +color = 10; +glyphname = "zedieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "ze-cy"; +}, +{ +pos = (58,0); +ref = dieresiscomb; +} +); +width = 492; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "ze-cy"; +}, +{ +pos = (52,0); +ref = dieresiscomb; +} +); +width = 598; +} +); +unicode = 1247; +}, +{ +color = 10; +glyphname = "imacron-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (106,0); +ref = macroncomb; +} +); +width = 596; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (115,0); +ref = macroncomb; +} +); +width = 663; +} +); +unicode = 1251; +}, +{ +color = 10; +glyphname = "idieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (110,0); +ref = dieresiscomb; +} +); +width = 596; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "ii-cy"; +}, +{ +pos = (97,0); +ref = dieresiscomb; +} +); +width = 663; +} +); +unicode = 1253; +}, +{ +color = 10; +glyphname = "odieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "o-cy"; +}, +{ +pos = (91,0); +ref = dieresiscomb; +} +); +width = 558; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "o-cy"; +}, +{ +pos = (66,0); +ref = dieresiscomb; +} +); +width = 642; +} +); +unicode = 1255; +}, +{ +color = 6; +glyphname = "obarred-cy"; +layers = ( +{ +anchors = ( +{ +name = top; +pos = (279,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(471,231,ls), +(484,231,o), +(493,240,o), +(493,253,cs), +(493,267,ls), +(493,280,o), +(484,289,o), +(471,289,cs), +(86,289,ls), +(73,289,o), +(64,280,o), +(64,267,cs), +(64,253,ls), +(64,240,o), +(73,231,o), +(86,231,cs) +); +}, +{ +closed = 1; +nodes = ( +(423,-10,o), +(497,89,o), +(501,218,cs), +(502,238,o), +(502,282,o), +(501,302,cs), +(497,431,o), +(423,530,o), +(279,530,cs), +(135,530,o), +(61,431,o), +(57,302,cs), +(56,282,o), +(56,238,o), +(57,218,cs), +(61,89,o), +(135,-10,o), +(279,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(186,48,o), +(122,109,o), +(118,223,cs), +(117,243,o), +(117,277,o), +(118,297,cs), +(122,411,o), +(186,472,o), +(279,472,cs), +(372,472,o), +(436,411,o), +(440,297,cs), +(441,277,o), +(441,243,o), +(440,223,cs), +(436,109,o), +(372,48,o), +(279,48,cs) +); +} +); +width = 558; +}, +{ +anchors = ( +{ +name = top; +pos = (321,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(528,219,ls), +(543,219,o), +(555,231,o), +(555,246,cs), +(555,274,ls), +(555,289,o), +(543,301,o), +(528,301,cs), +(113,301,ls), +(98,301,o), +(86,289,o), +(86,274,cs), +(86,246,ls), +(86,231,o), +(98,219,o), +(113,219,cs) +); +}, +{ +closed = 1; +nodes = ( +(505,-10,o), +(601,66,o), +(611,213,cs), +(613,243,o), +(613,277,o), +(611,307,cs), +(601,454,o), +(494,530,o), +(321,530,cs), +(148,530,o), +(41,454,o), +(31,307,cs), +(29,277,o), +(29,243,o), +(31,213,cs), +(41,66,o), +(137,-10,o), +(321,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,130,o), +(279,151,o), +(276,198,cs), +(275,218,o), +(275,302,o), +(276,322,cs), +(279,366,o), +(283,390,o), +(321,390,cs), +(359,390,o), +(363,366,o), +(366,322,cs), +(367,302,o), +(367,218,o), +(366,198,cs), +(363,151,o), +(359,130,o), +(321,130,cs) +); +} +); +width = 642; +} +); +unicode = 1257; +}, +{ +color = 10; +glyphname = "umacron-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (70,0); +ref = macroncomb; +} +); +width = 529; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (89,0); +ref = macroncomb; +} +); +width = 631; +} +); +unicode = 1263; +}, +{ +color = 10; +glyphname = "udieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (74,0); +ref = dieresiscomb; +} +); +width = 529; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (71,0); +ref = dieresiscomb; +} +); +width = 631; +} +); +unicode = 1265; +}, +{ +color = 10; +glyphname = "uhungarumlaut-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (87,0); +ref = hungarumlautcomb; +} +); +width = 529; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "u-cy"; +}, +{ +pos = (64,0); +ref = hungarumlautcomb; +} +); +width = 631; +} +); +unicode = 1267; +}, +{ +color = 10; +glyphname = "chedieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "che-cy"; +}, +{ +pos = (65,0); +ref = dieresiscomb; +} +); +width = 527; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "che-cy"; +}, +{ +pos = (48,0); +ref = dieresiscomb; +} +); +width = 652; +} +); +unicode = 1269; +}, +{ +color = 10; +glyphname = "yerudieresis-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "yeru-cy"; +}, +{ +pos = (152,0); +ref = dieresiscomb; +} +); +width = 659; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "yeru-cy"; +}, +{ +pos = (206,0); +ref = dieresiscomb; +} +); +width = 921; +} +); +unicode = 1273; +}, +{ +color = 10; +glyphname = "qa-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = q; +} +); +width = 581; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = q; +} +); +width = 661; +} +); +unicode = 1307; +}, +{ +color = 10; +glyphname = "we-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = w; +} +); +width = 786; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = w; +} +); +width = 869; +} +); +unicode = 1309; +}, +{ +color = 6; +glyphname = "alef-hb"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (287,0); +}, +{ +name = bottomleft; +pos = (25,0); +}, +{ +name = center; +pos = (229,142); +}, +{ +name = top; +pos = (287,520); +}, +{ +name = topleft; +pos = (25,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(492,0,ls), +(503,0,o), +(512,9,o), +(512,20,cs), +(512,25,o), +(510,31,o), +(504,40,c), +(134,556,l), +(129,563,o), +(122,571,o), +(109,571,cs), +(90,571,ls), +(79,571,o), +(70,562,o), +(70,551,cs), +(70,546,o), +(72,540,o), +(78,531,cs), +(448,15,l), +(454,8,o), +(460,0,o), +(473,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(95,0,ls), +(108,0,o), +(117,9,o), +(117,22,cs), +(117,176,ls), +(117,242,o), +(131,316,o), +(214,367,c), +(181,415,l), +(72,350,o), +(56,264,o), +(56,181,cs), +(56,22,ls), +(56,9,o), +(65,0,o), +(78,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(495,244,o), +(510,313,o), +(510,400,cs), +(510,549,ls), +(510,562,o), +(501,571,o), +(488,571,cs), +(471,571,ls), +(458,571,o), +(449,562,o), +(449,549,cs), +(449,405,ls), +(449,335,o), +(449,281,o), +(336,229,c), +(361,178,l) +); +} +); +width = 568; +}, +{ +anchors = ( +{ +name = bottom; +pos = (318,0); +}, +{ +name = bottomleft; +pos = (23,0); +}, +{ +name = center; +pos = (296,24); +}, +{ +name = top; +pos = (318,520); +}, +{ +name = topleft; +pos = (23,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(612,0,ls), +(624,0,o), +(634,10,o), +(634,22,cs), +(634,24,o), +(635,28,o), +(631,33,cs), +(271,546,ls), +(266,553,o), +(255,571,o), +(229,571,cs), +(62,571,ls), +(50,571,o), +(40,561,o), +(40,549,cs), +(40,544,o), +(40,542,o), +(43,538,cs), +(396,23,ls), +(400,18,o), +(411,0,o), +(437,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(208,0,ls), +(223,0,o), +(235,12,o), +(235,29,cs), +(235,140,ls), +(235,163,o), +(233,209,o), +(264,237,c), +(160,387,l), +(70,319,o), +(42,263,o), +(42,136,cs), +(42,29,ls), +(42,14,o), +(54,0,o), +(69,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(593,266,o), +(622,349,o), +(622,427,cs), +(622,542,ls), +(622,557,o), +(610,571,o), +(595,571,cs), +(446,571,ls), +(431,571,o), +(419,559,o), +(419,542,cs), +(419,431,ls), +(419,410,o), +(417,369,o), +(382,350,c), +(492,203,l) +); +} +); +width = 674; +} +); +unicode = 1488; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 478; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "alefpatah-hb"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "alef-hb"; +}, +{ +pos = (285,5); +ref = "patah-hb"; +} +); +width = 568; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "alef-hb"; +}, +{ +pos = (316,0); +ref = "patah-hb"; +} +); +width = 674; +} +); +unicode = 64302; +}, +{ +color = 10; +glyphname = "alefqamats-hb"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "alef-hb"; +}, +{ +pos = (285,0); +ref = "qamatsqatan-hb"; +} +); +width = 568; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "alef-hb"; +}, +{ +pos = (316,0); +ref = "qamatsqatan-hb"; +} +); +width = 674; +} +); +unicode = 64303; +}, +{ +color = 10; +glyphname = "alefdagesh-hb"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "alef-hb"; +}, +{ +pos = (228,-147); +ref = "dagesh-hb"; +} +); +width = 568; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "alef-hb"; +}, +{ +pos = (238,-262); +ref = "dagesh-hb"; +} +); +width = 674; +} +); +unicode = 64304; +}, +{ +color = 6; +glyphname = "bet-hb"; +kernLeft = bethebrew; +kernRight = bethebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (266,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (215,260); +}, +{ +name = top; +pos = (266,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(480,0,ls), +(493,0,o), +(502,9,o), +(502,22,cs), +(502,36,ls), +(502,49,o), +(493,58,o), +(480,58,cs), +(442,58,l), +(442,327,ls), +(442,481,o), +(365,571,o), +(195,571,cs), +(90,571,ls), +(77,571,o), +(68,562,o), +(68,549,c), +(68,535,ls), +(68,522,o), +(77,513,o), +(90,513,cs), +(190,513,ls), +(325,513,o), +(381,442,o), +(381,322,cs), +(381,58,l), +(80,58,ls), +(67,58,o), +(58,49,o), +(58,36,cs), +(58,22,ls), +(58,9,o), +(67,0,o), +(80,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +16 +); +stem = -2; +type = Tag; +} +); +}; +width = 532; +}, +{ +anchors = ( +{ +name = bottom; +pos = (300,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (167,260); +}, +{ +name = top; +pos = (300,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(549,0,ls), +(564,0,o), +(576,12,o), +(576,27,cs), +(576,148,ls), +(576,163,o), +(564,175,o), +(549,175,cs), +(516,175,l), +(516,318,ls), +(516,512,o), +(399,571,o), +(214,571,cs), +(68,571,ls), +(53,571,o), +(41,559,o), +(41,544,cs), +(41,422,ls), +(41,407,o), +(53,395,o), +(68,395,cs), +(209,395,ls), +(258,395,o), +(283,370,o), +(283,320,cs), +(283,175,l), +(58,175,ls), +(43,175,o), +(31,163,o), +(31,148,cs), +(31,27,ls), +(31,12,o), +(43,0,o), +(58,0,cs) +); +} +); +width = 599; +} +); +unicode = 1489; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 40; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 516; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "betdagesh-hb"; +kernLeft = bethebrew; +kernRight = bethebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "bet-hb"; +}, +{ +pos = (214,-29); +ref = "dagesh-hb"; +} +); +width = 532; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "bet-hb"; +}, +{ +pos = (109,-26); +ref = "dagesh-hb"; +} +); +width = 599; +} +); +unicode = 64305; +}, +{ +color = 6; +glyphname = "gimel-hb"; +kernLeft = gimelhebrew; +kernRight = gimelhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (225,0); +}, +{ +name = bottomleft; +pos = (25,0); +}, +{ +name = center; +pos = (157,260); +}, +{ +name = top; +pos = (255,520); +}, +{ +name = topleft; +pos = (25,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,0,ls), +(381,0,o), +(392,9,o), +(390,22,cs), +(329,337,ls), +(298,489,o), +(254,571,o), +(136,571,cs), +(99,571,ls), +(86,571,o), +(77,562,o), +(77,549,cs), +(77,535,ls), +(77,522,o), +(86,513,o), +(99,513,cs), +(136,513,ls), +(219,513,o), +(244,449,o), +(268,332,cs), +(329,22,ls), +(332,9,o), +(338,0,o), +(351,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(275,96,o), +(341,196,o), +(341,271,c), +(283,259,l), +(288,220,o), +(226,140,o), +(175,106,cs), +(141,83,o), +(85,64,o), +(71,59,cs), +(56,53,o), +(50,44,o), +(50,34,cs), +(50,7,ls), +(50,-7,o), +(61,-10,o), +(74,-8,cs), +(121,1,o), +(161,17,o), +(210,51,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +15, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 430; +}, +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (128,260); +}, +{ +name = top; +pos = (296,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(467,0,ls), +(482,0,o), +(497,12,o), +(494,27,cs), +(434,327,ls), +(397,513,o), +(327,581,o), +(132,581,cs), +(93,581,ls), +(78,581,o), +(66,569,o), +(66,554,cs), +(66,423,ls), +(66,408,o), +(78,396,o), +(93,396,cs), +(127,396,ls), +(176,396,o), +(190,376,o), +(201,321,cs), +(261,27,l), +(261,12,o), +(273,0,o), +(288,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(286,89,o), +(317,153,o), +(331,300,c), +(273,310,l), +(249,260,o), +(218,230,o), +(176,214,cs), +(146,202,o), +(80,186,o), +(66,181,cs), +(51,175,o), +(45,166,o), +(45,156,cs), +(45,7,ls), +(45,-7,o), +(56,-10,o), +(69,-8,cs), +(116,1,o), +(157,18,o), +(212,49,cs) +); +} +); +width = 514; +}, +{ +anchors = ( +{ +name = bottom; +pos = (296,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (296,260); +}, +{ +name = top; +pos = (296,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +associatedMasterId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +color = 6; +hints = ( +{ +horizontal = 1; +place = (0, 0); +type = Tag; +}, +{ +horizontal = 1; +place = (0, 0); +type = Tag; +} +); +layerId = "3A7172B3-9499-4CB2-BD9A-161FA419D29C"; +name = "Bold Sep 16 15, 13:05"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,ls), +(536,0,o), +(547,9,o), +(545,22,cs), +(502,249,l), +(484,337,ls), +(453,489,o), +(409,571,o), +(291,571,cs), +(254,571,ls), +(241,571,o), +(232,562,o), +(232,549,cs), +(232,535,ls), +(232,522,o), +(241,513,o), +(254,513,cs), +(291,513,ls), +(374,513,o), +(399,449,o), +(423,332,cs), +(439,255,l), +(448,190,l), +(484,22,ls), +(487,9,o), +(493,0,o), +(506,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(218,0,ls), +(233,0,o), +(245,12,o), +(245,29,cs), +(245,38,ls), +(245,77,o), +(272,100,o), +(305,105,c), +(341,26,ls), +(348,12,o), +(353,0,o), +(368,0,cs), +(547,0,ls), +(562,0,o), +(579,12,o), +(574,27,c), +(474,252,l), +(474,337,ls), +(474,526,o), +(356,581,o), +(171,581,cs), +(85,581,ls), +(70,581,o), +(58,569,o), +(58,554,cs), +(58,433,ls), +(58,418,o), +(70,406,o), +(85,406,cs), +(166,406,ls), +(215,406,o), +(240,382,o), +(240,332,cs), +(240,281,l), +(112,263,o), +(12,157,o), +(12,34,cs), +(12,29,ls), +(12,14,o), +(24,0,o), +(39,0,cs) +); +} +); +width = 592; +}, +{ +anchors = ( +{ +name = bottom; +pos = (296,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (296,260); +}, +{ +name = top; +pos = (296,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +associatedMasterId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +color = 6; +layerId = "3A421F1B-B6D6-4316-A51E-7520D182F122"; +name = "Bold Sep 16 15, 13:05"; +shapes = ( +{ +closed = 1; +nodes = ( +(523,0,ls), +(536,0,o), +(547,9,o), +(545,22,cs), +(502,249,l), +(484,337,ls), +(453,489,o), +(409,571,o), +(291,571,cs), +(254,571,ls), +(241,571,o), +(232,562,o), +(232,549,cs), +(232,535,ls), +(232,522,o), +(241,513,o), +(254,513,cs), +(291,513,ls), +(374,513,o), +(399,449,o), +(423,332,cs), +(439,255,l), +(448,190,l), +(484,22,ls), +(487,9,o), +(493,0,o), +(506,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(218,0,ls), +(233,0,o), +(245,12,o), +(245,29,cs), +(245,38,ls), +(245,77,o), +(272,100,o), +(305,105,c), +(341,26,ls), +(348,12,o), +(353,0,o), +(368,0,cs), +(547,0,ls), +(562,0,o), +(579,12,o), +(574,27,c), +(474,252,l), +(474,337,ls), +(474,526,o), +(356,581,o), +(171,581,cs), +(85,581,ls), +(70,581,o), +(58,569,o), +(58,554,cs), +(58,433,ls), +(58,418,o), +(70,406,o), +(85,406,cs), +(166,406,ls), +(215,406,o), +(240,382,o), +(240,332,cs), +(240,281,l), +(112,263,o), +(12,157,o), +(12,34,cs), +(12,29,ls), +(12,14,o), +(24,0,o), +(39,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +-2147483648, +0 +); +stem = -2; +type = Tag; +}, +{ +horizontal = 1; +options = 0; +place = ( +-2147483648, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 592; +} +); +unicode = 1490; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 55; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "gimeldagesh-hb"; +kernLeft = gimelhebrew; +kernRight = gimelhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "gimel-hb"; +}, +{ +pos = (156,-29); +ref = "dagesh-hb"; +} +); +width = 430; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "gimel-hb"; +}, +{ +pos = (70,-26); +ref = "dagesh-hb"; +} +); +width = 514; +} +); +unicode = 64306; +}, +{ +color = 6; +glyphname = "dalet-hb"; +kernLeft = dalethebrew; +kernRight = dalethebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (365,0); +}, +{ +name = bottomleft; +pos = (47,0); +}, +{ +name = center; +pos = (197,260); +}, +{ +name = top; +pos = (277,520); +}, +{ +name = topleft; +pos = (47,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(365,0,ls), +(378,0,o), +(387,9,o), +(387,22,c), +(387,395,ls), +(387,468,o), +(409,523,o), +(443,523,c), +(371,523,l), +(348,523,o), +(326,476,o), +(326,400,cs), +(326,22,ls), +(326,9,o), +(335,0,o), +(348,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(484,513,ls), +(497,513,o), +(506,522,o), +(506,535,cs), +(506,549,ls), +(506,562,o), +(497,571,o), +(484,571,cs), +(62,571,ls), +(49,571,o), +(40,562,o), +(40,549,cs), +(40,535,ls), +(40,522,o), +(49,513,o), +(62,513,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +513, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 556; +}, +{ +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = bottomleft; +pos = (31,0); +}, +{ +name = center; +pos = (133,260); +}, +{ +name = top; +pos = (285,520); +}, +{ +name = topleft; +pos = (31,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(419,0,ls), +(432,0,o), +(451,9,o), +(451,22,c), +(451,272,ls), +(451,356,o), +(473,423,o), +(507,423,c), +(294,423,l), +(245,423,o), +(230,377,o), +(230,286,cs), +(230,22,ls), +(230,9,o), +(239,0,o), +(252,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(509,396,ls), +(526,396,o), +(536,410,o), +(536,423,cs), +(536,544,ls), +(536,559,o), +(524,571,o), +(509,571,cs), +(50,571,ls), +(35,571,o), +(23,559,o), +(23,544,cs), +(23,423,ls), +(23,408,o), +(35,396,o), +(50,396,cs) +); +} +); +width = 559; +} +); +unicode = 1491; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 30; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 496; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "daletdagesh-hb"; +kernLeft = dalethebrew; +kernRight = dalethebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "dalet-hb"; +}, +{ +pos = (196,-29); +ref = "dagesh-hb"; +} +); +width = 556; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "dalet-hb"; +}, +{ +pos = (75,-26); +ref = "dagesh-hb"; +} +); +width = 559; +} +); +unicode = 64307; +}, +{ +color = 6; +glyphname = "he-hb"; +kernLeft = hethebrew; +kernRight = vavhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (304,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (304,260); +}, +{ +name = top; +pos = (304,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(508,0,ls), +(521,0,o), +(530,9,o), +(530,22,cs), +(530,327,ls), +(530,482,o), +(453,571,o), +(283,571,cs), +(106,571,ls), +(93,571,o), +(84,562,o), +(84,549,c), +(84,535,ls), +(84,522,o), +(93,513,o), +(106,513,cs), +(278,513,ls), +(413,513,o), +(469,442,o), +(469,322,cs), +(469,22,ls), +(469,9,o), +(478,0,o), +(491,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(123,0,ls), +(136,0,o), +(145,9,o), +(145,22,cs), +(145,373,ls), +(145,386,o), +(136,395,o), +(123,395,cs), +(106,395,ls), +(93,395,o), +(84,386,o), +(84,373,cs), +(84,22,ls), +(84,9,o), +(93,0,o), +(106,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +type = Tag; +} +); +}; +width = 608; +}, +{ +anchors = ( +{ +name = bottom; +pos = (334,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (334,260); +}, +{ +name = top; +pos = (334,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(600,0,ls), +(615,0,o), +(627,12,o), +(627,27,cs), +(627,317,ls), +(627,501,o), +(520,571,o), +(335,571,cs), +(74,571,ls), +(59,571,o), +(47,559,o), +(47,544,cs), +(47,423,ls), +(47,408,o), +(59,396,o), +(74,396,cs), +(330,396,ls), +(379,396,o), +(404,371,o), +(404,321,cs), +(404,26,ls), +(404,11,o), +(416,0,o), +(431,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(243,0,ls), +(258,0,o), +(270,12,o), +(270,27,c), +(270,289,ls), +(270,304,o), +(258,316,o), +(243,316,cs), +(74,316,ls), +(59,316,o), +(47,304,o), +(47,289,cs), +(47,27,ls), +(47,12,o), +(59,0,o), +(74,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 668; +} +); +unicode = 1492; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "hedagesh-hb"; +kernLeft = hethebrew; +kernRight = vavhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "he-hb"; +}, +{ +pos = (303,-29); +ref = "dagesh-hb"; +} +); +width = 608; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "he-hb"; +}, +{ +pos = (276,-26); +ref = "dagesh-hb"; +} +); +width = 668; +} +); +unicode = 64308; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 640; +} +); +}; +}, +{ +color = 6; +glyphname = "vav-hb"; +kernLeft = vavhebrew; +kernRight = vavhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (114,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (13,260); +}, +{ +name = top; +pos = (115,520); +}, +{ +name = topleft; +pos = (166,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,0,ls), +(136,0,o), +(145,9,o), +(145,22,cs), +(145,549,l), +(145,562,o), +(136,571,o), +(123,571,cs), +(106,571,ls), +(93,571,o), +(84,562,o), +(84,549,cs), +(84,22,ls), +(84,9,o), +(93,0,o), +(106,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +type = Tag; +} +); +}; +width = 229; +}, +{ +anchors = ( +{ +name = bottom; +pos = (162,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (-36,260); +}, +{ +name = top; +pos = (164,520); +}, +{ +name = topleft; +pos = (216,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(253,0,ls), +(268,0,o), +(280,12,o), +(280,27,c), +(280,544,ls), +(280,559,o), +(268,571,o), +(253,571,cs), +(74,571,ls), +(59,571,o), +(47,559,o), +(47,544,cs), +(47,27,ls), +(47,12,o), +(59,0,o), +(74,0,cs) +); +} +); +width = 327; +} +); +unicode = 1493; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +} +); +}; +}, +{ +color = 10; +glyphname = "vavdagesh-hb"; +kernLeft = vavhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "vav-hb"; +}, +{ +pos = (12,-29); +ref = "dagesh-hb"; +} +); +width = 229; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +alignment = -1; +pos = (89,0); +ref = "vav-hb"; +}, +{ +pos = (-5,-26); +ref = "dagesh-hb"; +} +); +width = 416; +} +); +unicode = 64309; +}, +{ +color = 10; +glyphname = "vavholam-hb"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "vav-hb"; +}, +{ +pos = (115,105); +ref = "holam-hb"; +} +); +width = 229; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "vav-hb"; +}, +{ +alignment = -1; +pos = (154,105); +ref = "holam-hb"; +} +); +width = 327; +} +); +unicode = 64331; +}, +{ +color = 6; +glyphname = "zayin-hb"; +kernLeft = zayinhebrew; +kernRight = zayinhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (177,0); +}, +{ +name = bottomleft; +pos = (67,0); +}, +{ +name = center; +pos = (73,260); +}, +{ +name = top; +pos = (194,520); +}, +{ +name = topleft; +pos = (67,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,0,ls), +(198,0,o), +(207,9,o), +(207,22,c), +(207,395,ls), +(207,468,o), +(229,523,o), +(263,523,c), +(191,523,l), +(168,523,o), +(146,476,o), +(146,400,cs), +(146,22,ls), +(146,9,o), +(155,0,o), +(168,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,513,ls), +(317,513,o), +(326,522,o), +(326,535,cs), +(326,549,ls), +(326,562,o), +(317,571,o), +(304,571,cs), +(82,571,ls), +(69,571,o), +(60,562,o), +(60,549,cs), +(60,535,ls), +(60,522,o), +(69,513,o), +(82,513,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +22, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 386; +}, +{ +anchors = ( +{ +name = bottom; +pos = (207,0); +}, +{ +name = bottomleft; +pos = (33,0); +}, +{ +name = center; +pos = (30,260); +}, +{ +name = top; +pos = (263,520); +}, +{ +name = topleft; +pos = (33,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(291,0,ls), +(304,0,o), +(323,9,o), +(323,22,c), +(323,272,ls), +(323,356,o), +(345,423,o), +(379,423,c), +(166,423,l), +(117,423,o), +(102,377,o), +(102,286,cs), +(102,22,ls), +(102,9,o), +(111,0,o), +(124,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(381,396,ls), +(398,396,o), +(408,410,o), +(408,423,cs), +(408,544,ls), +(408,559,o), +(396,571,o), +(381,571,cs), +(52,571,ls), +(37,571,o), +(25,559,o), +(25,544,cs), +(25,423,ls), +(25,408,o), +(37,396,o), +(52,396,cs) +); +} +); +width = 433; +} +); +unicode = 1494; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 983; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 983; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +} +); +}; +}, +{ +color = 10; +glyphname = "zayindagesh-hb"; +kernLeft = zayinhebrew; +kernRight = zayinhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "zayin-hb"; +}, +{ +pos = (72,-29); +ref = "dagesh-hb"; +} +); +width = 386; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "zayin-hb"; +}, +{ +pos = (-28,-26); +ref = "dagesh-hb"; +} +); +width = 433; +} +); +unicode = 64310; +}, +{ +color = 6; +glyphname = "het-hb"; +kernLeft = hethebrew; +kernRight = vavhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (305,260); +}, +{ +name = top; +pos = (305,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,0,ls), +(136,0,o), +(145,9,o), +(145,22,cs), +(145,513,l), +(279,513,ls), +(414,513,o), +(470,442,o), +(470,322,cs), +(470,22,ls), +(470,9,o), +(479,0,o), +(492,0,cs), +(509,0,ls), +(522,0,o), +(531,9,o), +(531,22,cs), +(531,327,ls), +(531,482,o), +(454,571,o), +(284,571,cs), +(106,571,ls), +(93,571,o), +(84,562,o), +(84,549,c), +(84,22,ls), +(84,9,o), +(93,0,o), +(106,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +type = Tag; +} +); +}; +width = 609; +}, +{ +anchors = ( +{ +name = bottom; +pos = (337,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (337,260); +}, +{ +name = top; +pos = (337,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,0,ls), +(258,0,o), +(270,12,o), +(270,27,cs), +(270,396,l), +(335,396,ls), +(384,396,o), +(409,371,o), +(409,321,cs), +(409,26,ls), +(409,11,o), +(421,0,o), +(436,0,cs), +(605,0,ls), +(620,0,o), +(632,12,o), +(632,27,cs), +(632,317,ls), +(632,513,o), +(530,571,o), +(340,571,cs), +(74,571,ls), +(59,571,o), +(47,559,o), +(47,544,cs), +(47,27,ls), +(47,12,o), +(59,0,o), +(74,0,cs) +); +} +); +width = 673; +} +); +unicode = 1495; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 517; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "tet-hb"; +kernLeft = tethebrew; +kernRight = tethebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (322,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (322,260); +}, +{ +name = top; +pos = (322,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(496,-10,o), +(559,69,o), +(563,224,c), +(564,244,o), +(564,327,o), +(563,347,cs), +(559,507,o), +(485,576,o), +(364,576,c), +(315,576,o), +(286,565,o), +(257,546,cs), +(246,539,o), +(247,530,o), +(247,518,cs), +(247,505,ls), +(247,492,o), +(263,485,o), +(274,492,cs), +(298,508,o), +(335,518,o), +(359,518,cs), +(442,518,o), +(499,467,o), +(502,342,cs), +(502,322,o), +(503,249,o), +(502,229,cs), +(499,109,o), +(446,48,o), +(321,48,cs), +(196,48,o), +(140,119,o), +(140,239,cs), +(140,549,ls), +(140,562,o), +(131,571,o), +(118,571,cs), +(101,571,ls), +(88,571,o), +(79,562,o), +(79,549,cs), +(79,234,ls), +(79,79,o), +(146,-10,o), +(321,-10,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +type = Tag; +} +); +}; +width = 624; +}, +{ +anchors = ( +{ +name = bottom; +pos = (333,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (328,260); +}, +{ +name = top; +pos = (333,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(536,-10,o), +(625,90,o), +(633,241,cs), +(634,261,o), +(633,317,o), +(633,337,cs), +(633,491,o), +(587,574,o), +(423,574,cs), +(369,574,o), +(345,568,o), +(332,561,cs), +(314,551,o), +(308,535,o), +(308,520,cs), +(308,407,ls), +(308,387,o), +(324,377,o), +(341,383,cs), +(349,386,o), +(366,390,o), +(381,390,cs), +(408,390,o), +(417,351,o), +(417,302,cs), +(417,281,o), +(417,268,o), +(417,246,cs), +(417,196,o), +(385,175,o), +(337,175,cs), +(288,175,o), +(243,191,o), +(243,246,cs), +(243,544,ls), +(243,559,o), +(231,571,o), +(216,571,cs), +(68,571,ls), +(53,571,o), +(41,559,o), +(41,544,cs), +(41,241,ls), +(41,87,o), +(141,-10,o), +(338,-10,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +}; +width = 661; +} +); +unicode = 1496; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 581; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 196; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 65; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "tetdagesh-hb"; +kernLeft = tethebrew; +kernRight = tethebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "tet-hb"; +}, +{ +pos = (321,-29); +ref = "dagesh-hb"; +} +); +width = 624; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "tet-hb"; +}, +{ +pos = (270,-26); +ref = "dagesh-hb"; +} +); +width = 661; +} +); +unicode = 64312; +}, +{ +color = 6; +glyphname = "yod-hb"; +kernLeft = yodhebrew; +kernRight = yodhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (107,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (17,260); +}, +{ +name = top; +pos = (107,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(115,230,ls), +(128,230,o), +(137,239,o), +(137,252,cs), +(137,549,l), +(137,562,o), +(128,571,o), +(115,571,cs), +(98,571,ls), +(85,571,o), +(76,562,o), +(76,549,cs), +(76,252,ls), +(76,239,o), +(85,230,o), +(98,230,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +type = Tag; +} +); +}; +width = 213; +}, +{ +anchors = ( +{ +name = bottom; +pos = (153,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (-19,260); +}, +{ +name = top; +pos = (162,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,240,ls), +(266,240,o), +(278,252,o), +(278,267,c), +(278,544,ls), +(278,559,o), +(266,571,o), +(251,571,cs), +(72,571,ls), +(57,571,o), +(45,559,o), +(45,544,cs), +(45,267,ls), +(45,252,o), +(57,240,o), +(72,240,cs) +); +} +); +width = 323; +} +); +unicode = 1497; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 240; +} +); +}; +}, +{ +color = 10; +glyphname = "yoddagesh-hb"; +kernLeft = yodhebrew; +kernRight = yodhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "yod-hb"; +}, +{ +pos = (16,-29); +ref = "dagesh-hb"; +} +); +width = 213; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +alignment = -1; +pos = (112,0); +ref = "yod-hb"; +}, +{ +alignment = -1; +pos = (15,-26); +ref = "dagesh-hb"; +} +); +width = 435; +} +); +unicode = 64313; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 240; +} +); +}; +}, +{ +color = 6; +glyphname = "finalkaf-hb"; +kernLeft = dalethebrew; +kernRight = dalethebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (242,243); +}, +{ +name = bottomleft; +pos = (81,0); +}, +{ +name = center; +pos = (245,260); +}, +{ +name = top; +pos = (311,520); +}, +{ +name = topleft; +pos = (81,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(431,-102,l), +(431,-115,o), +(440,-124,o), +(453,-124,cs), +(470,-124,ls), +(483,-124,o), +(492,-115,o), +(492,-102,c), +(492,327,l), +(492,488,o), +(414,571,o), +(244,571,cs), +(97,571,ls), +(84,571,o), +(75,562,o), +(75,549,cs), +(75,535,ls), +(75,522,o), +(84,513,o), +(97,513,cs), +(239,513,ls), +(374,513,o), +(431,442,o), +(431,322,c) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +549, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 570; +}, +{ +anchors = ( +{ +name = bottom; +pos = (131,231); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (212,257); +}, +{ +name = top; +pos = (270,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(280,-98,ls), +(280,-113,o), +(292,-124,o), +(307,-124,cs), +(476,-124,ls), +(491,-124,o), +(503,-112,o), +(503,-97,cs), +(503,327,ls), +(503,516,o), +(397,571,o), +(212,571,cs), +(39,571,l), +(24,571,o), +(12,559,o), +(12,544,cs), +(12,423,ls), +(12,408,o), +(24,396,o), +(39,396,cs), +(206,396,ls), +(255,396,o), +(280,371,o), +(280,321,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 544; +} +); +unicode = 1498; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 61; +} +); +}; +}, +{ +color = 10; +glyphname = "finalkafdagesh-hb"; +kernLeft = dalethebrew; +kernRight = dalethebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "finalkaf-hb"; +}, +{ +pos = (244,-29); +ref = "dagesh-hb"; +} +); +width = 570; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "finalkaf-hb"; +}, +{ +pos = (154,-29); +ref = "dagesh-hb"; +} +); +width = 544; +} +); +unicode = 64314; +}, +{ +color = 6; +glyphname = "kaf-hb"; +kernLeft = kafhebrew; +kernRight = kafhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (263,0); +}, +{ +name = bottomleft; +pos = (59,0); +}, +{ +name = center; +pos = (257,260); +}, +{ +name = top; +pos = (257,520); +}, +{ +name = topleft; +pos = (59,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(255,0,ls), +(425,0,o), +(497,89,o), +(502,244,cs), +(503,274,o), +(503,297,o), +(502,327,cs), +(497,482,o), +(425,571,o), +(255,571,cs), +(108,571,ls), +(95,571,o), +(86,562,o), +(86,549,cs), +(86,535,ls), +(86,522,o), +(95,513,o), +(108,513,cs), +(250,513,ls), +(385,513,o), +(437,442,o), +(441,322,cs), +(442,292,o), +(442,279,o), +(441,249,c), +(436,129,o), +(385,58,o), +(250,58,cs), +(108,58,ls), +(95,58,o), +(86,49,o), +(86,36,cs), +(86,22,ls), +(86,9,o), +(95,0,o), +(108,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +6 +); +stem = -2; +type = Tag; +} +); +}; +width = 563; +}, +{ +anchors = ( +{ +name = bottom; +pos = (249,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (173,260); +}, +{ +name = top; +pos = (269,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(216,0,ls), +(421,0,o), +(500,109,o), +(508,263,cs), +(509,283,o), +(509,288,o), +(508,308,cs), +(500,462,o), +(421,571,o), +(216,571,cs), +(64,571,ls), +(49,571,o), +(37,559,o), +(37,544,cs), +(37,413,ls), +(37,398,o), +(49,386,o), +(64,386,cs), +(211,386,ls), +(260,386,o), +(292,361,o), +(295,311,cs), +(296,291,o), +(296,280,o), +(295,260,cs), +(292,210,o), +(260,185,o), +(211,185,cs), +(64,185,ls), +(49,185,o), +(37,173,o), +(37,158,cs), +(37,27,ls), +(37,12,o), +(49,0,o), +(64,0,cs) +); +} +); +width = 537; +} +); +unicode = 1499; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 40; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "kafdagesh-hb"; +kernLeft = kafhebrew; +kernRight = kafhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "kaf-hb"; +}, +{ +pos = (256,-29); +ref = "dagesh-hb"; +} +); +width = 563; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "kaf-hb"; +}, +{ +pos = (115,-26); +ref = "dagesh-hb"; +} +); +width = 537; +} +); +unicode = 64315; +}, +{ +color = 6; +glyphname = "lamed-hb"; +kernLeft = lamedhebrew; +kernRight = lamedhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (257,0); +}, +{ +name = bottomleft; +pos = (73,0); +}, +{ +name = center; +pos = (224,260); +}, +{ +name = top; +pos = (224,520); +}, +{ +name = topleft; +pos = (31,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(244,7,ls), +(354,46,o), +(459,119,o), +(459,307,c), +(459,503,o), +(395,571,o), +(212,571,c), +(173,571,l), +(160,571,o), +(151,562,o), +(151,549,cs), +(151,535,l), +(151,522,o), +(160,513,o), +(173,513,c), +(207,513,l), +(349,513,o), +(398,462,o), +(398,314,c), +(398,162,o), +(330,108,o), +(240,73,cs), +(199,57,ls), +(184,51,o), +(178,42,o), +(178,32,cs), +(178,7,ls), +(178,-7,o), +(190,-12,o), +(202,-8,cs) +); +}, +{ +closed = 1; +nodes = ( +(193,571,l), +(131,571,l), +(131,688,l), +(131,701,o), +(122,710,o), +(109,710,cs), +(92,710,ls), +(79,710,o), +(70,701,o), +(70,688,cs), +(70,535,ls), +(70,522,o), +(79,514,o), +(92,514,c), +(190,513,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +}; +width = 519; +}, +{ +anchors = ( +{ +name = bottom; +pos = (239,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (152,260); +}, +{ +name = top; +pos = (279,520); +}, +{ +name = topleft; +pos = (-36,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,-5,ls), +(378,32,o), +(517,149,o), +(517,326,cs), +(517,471,o), +(451,571,o), +(275,571,cs), +(208,571,l), +(195,571,o), +(181,559,o), +(181,546,c), +(181,413,l), +(181,398,o), +(194,386,o), +(208,386,c), +(225,386,l), +(275,386,o), +(286,365,o), +(286,315,cs), +(286,249,o), +(252,218,o), +(216,203,cs), +(189,192,ls), +(175,186,o), +(162,171,o), +(162,156,cs), +(162,17,ls), +(162,2,o), +(176,-18,o), +(190,-15,cs) +); +}, +{ +closed = 1; +nodes = ( +(254,571,l), +(223,571,l), +(223,683,ls), +(223,698,o), +(211,710,o), +(196,710,cs), +(43,710,ls), +(28,710,o), +(16,698,o), +(16,683,cs), +(16,413,ls), +(16,398,o), +(28,386,o), +(43,386,cs), +(254,386,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +}; +width = 545; +} +); +unicode = 1500; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 464; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "lameddagesh-hb"; +kernLeft = lamedhebrew; +kernRight = lamedhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "lamed-hb"; +}, +{ +pos = (223,-29); +ref = "dagesh-hb"; +} +); +width = 519; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "lamed-hb"; +}, +{ +pos = (94,-26); +ref = "dagesh-hb"; +} +); +width = 545; +} +); +unicode = 64316; +}, +{ +color = 6; +glyphname = "finalmem-hb"; +kernLeft = hethebrew; +kernRight = vavhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (304,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (304,260); +}, +{ +name = top; +pos = (304,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(508,0,ls), +(521,0,o), +(530,9,o), +(530,22,cs), +(530,327,ls), +(530,482,o), +(453,571,o), +(283,571,cs), +(106,571,ls), +(93,571,o), +(84,562,o), +(84,549,c), +(84,22,ls), +(84,9,o), +(93,0,o), +(106,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(144,513,l), +(278,513,ls), +(413,513,o), +(469,442,o), +(469,322,cs), +(469,58,l), +(144,58,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +type = Tag; +} +); +}; +width = 608; +}, +{ +anchors = ( +{ +name = bottom; +pos = (325,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (325,260); +}, +{ +name = top; +pos = (325,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(579,0,ls), +(595,0,o), +(607,14,o), +(607,28,cs), +(607,326,ls), +(607,515,o), +(506,571,o), +(326,571,cs), +(74,571,ls), +(59,571,o), +(47,559,o), +(47,544,cs), +(47,27,ls), +(47,12,o), +(59,0,o), +(74,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(244,396,l), +(321,396,ls), +(370,396,o), +(395,371,o), +(395,321,cs), +(395,175,l), +(244,175,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 648; +} +); +unicode = 1501; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 853; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 58; +} +); +}; +}, +{ +color = 6; +glyphname = "mem-hb"; +kernLeft = hethebrew; +kernRight = memhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = bottomleft; +pos = (7,0); +}, +{ +name = center; +pos = (294,260); +}, +{ +name = top; +pos = (294,520); +}, +{ +name = topleft; +pos = (7,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(397,513,o), +(462,435,o), +(462,322,cs), +(462,58,l), +(248,58,ls), +(235,58,o), +(226,49,o), +(226,36,cs), +(226,22,ls), +(226,9,o), +(235,0,o), +(248,0,cs), +(501,0,ls), +(514,0,o), +(523,9,o), +(523,22,cs), +(523,327,ls), +(523,475,o), +(436,571,o), +(316,571,c), +(88,571,ls), +(75,571,o), +(66,562,o), +(66,549,cs), +(66,535,ls), +(66,522,o), +(75,513,o), +(88,513,cs), +(311,513,l) +); +}, +{ +closed = 1; +nodes = ( +(96,0,ls), +(108,0,o), +(119,10,o), +(121,23,cs), +(196,523,l), +(199,535,o), +(191,546,o), +(178,547,cs), +(161,550,ls), +(149,552,o), +(138,545,o), +(136,532,cs), +(60,23,ls), +(58,10,o), +(66,0,o), +(78,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +15, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 601; +}, +{ +anchors = ( +{ +name = bottom; +pos = (360,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (386,230); +}, +{ +name = top; +pos = (360,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(431,387,o), +(456,367,o), +(456,317,cs), +(456,175,l), +(370,175,ls), +(355,175,o), +(343,163,o), +(343,148,cs), +(343,27,ls), +(343,12,o), +(355,0,o), +(370,0,cs), +(652,0,ls), +(667,0,o), +(679,12,o), +(679,27,cs), +(679,327,ls), +(679,506,o), +(572,571,o), +(432,571,c), +(64,571,ls), +(49,571,o), +(37,559,o), +(37,544,cs), +(37,413,ls), +(37,398,o), +(49,386,o), +(64,386,cs), +(396,387,l) +); +}, +{ +closed = 1; +nodes = ( +(220,0,ls), +(235,0,o), +(247,12,o), +(247,27,c), +(348,429,ls), +(352,443,o), +(336,461,o), +(321,461,cs), +(180,461,ls), +(165,461,o), +(157,448,o), +(153,434,cs), +(30,27,ls), +(26,12,o), +(42,0,o), +(57,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 720; +} +); +unicode = 1502; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 576; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "memdagesh-hb"; +kernLeft = hethebrew; +kernRight = memhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "mem-hb"; +}, +{ +pos = (293,-29); +ref = "dagesh-hb"; +} +); +width = 601; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "mem-hb"; +}, +{ +pos = (328,-56); +ref = "dagesh-hb"; +} +); +width = 720; +} +); +unicode = 64318; +}, +{ +color = 6; +glyphname = "finalnun-hb"; +kernLeft = vavhebrew; +kernRight = vavhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (115,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (115,260); +}, +{ +name = top; +pos = (115,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,-124,ls), +(136,-124,o), +(145,-115,o), +(145,-102,c), +(145,549,ls), +(145,562,o), +(136,571,o), +(123,571,cs), +(106,571,ls), +(93,571,o), +(84,562,o), +(84,549,cs), +(84,-102,ls), +(84,-115,o), +(93,-124,o), +(106,-124,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +3 +); +stem = -2; +type = Tag; +} +); +}; +width = 229; +}, +{ +anchors = ( +{ +name = bottom; +pos = (159,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (159,260); +}, +{ +name = top; +pos = (159,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,-124,ls), +(258,-124,o), +(270,-112,o), +(270,-97,c), +(270,544,ls), +(270,559,o), +(258,571,o), +(243,571,cs), +(74,571,ls), +(59,571,o), +(47,559,o), +(47,544,cs), +(47,-97,ls), +(47,-112,o), +(59,-124,o), +(74,-124,cs) +); +} +); +width = 317; +} +); +unicode = 1503; +}, +{ +color = 6; +glyphname = "nun-hb"; +kernLeft = hethebrew; +kernRight = nunhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (197,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (180,260); +}, +{ +name = top; +pos = (197,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,0,ls), +(326,0,o), +(335,4,o), +(335,17,cs), +(335,58,l), +(70,58,ls), +(57,58,o), +(48,49,o), +(48,36,cs), +(48,22,ls), +(48,9,o), +(57,0,o), +(70,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(318,0,ls), +(331,0,o), +(342,9,o), +(340,22,c), +(319,337,ls), +(310,470,o), +(301,571,o), +(160,571,cs), +(123,571,ls), +(110,571,o), +(101,562,o), +(101,549,cs), +(101,535,ls), +(101,522,o), +(110,513,o), +(123,513,cs), +(160,513,ls), +(253,513,o), +(251,440,o), +(258,332,cs), +(279,22,l), +(282,9,o), +(288,0,o), +(301,0,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +559, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 393; +}, +{ +anchors = ( +{ +name = bottom; +pos = (235,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (109,260); +}, +{ +name = top; +pos = (228,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(387,0,ls), +(402,0,o), +(414,12,o), +(414,27,cs), +(414,175,l), +(59,175,ls), +(44,175,o), +(32,163,o), +(32,148,cs), +(32,27,ls), +(32,12,o), +(44,0,o), +(59,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(417,0,ls), +(432,0,o), +(444,12,o), +(444,27,cs), +(434,327,ls), +(428,517,o), +(327,581,o), +(132,581,cs), +(69,581,ls), +(54,581,o), +(42,569,o), +(42,554,cs), +(42,435,ls), +(42,420,o), +(54,408,o), +(69,408,cs), +(127,408,ls), +(176,408,o), +(199,388,o), +(201,333,cs), +(211,27,l), +(211,12,o), +(223,0,o), +(238,0,cs) +); +} +); +width = 469; +} +); +unicode = 1504; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 361; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 45; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "nundagesh-hb"; +kernLeft = hethebrew; +kernRight = nunhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "nun-hb"; +}, +{ +pos = (179,-29); +ref = "dagesh-hb"; +} +); +width = 393; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "nun-hb"; +}, +{ +pos = (51,-26); +ref = "dagesh-hb"; +} +); +width = 469; +} +); +unicode = 64320; +}, +{ +color = 6; +glyphname = "samekh-hb"; +kernLeft = tethebrew; +kernRight = tethebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (316,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (315,260); +}, +{ +name = top; +pos = (316,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(495,-10,o), +(568,69,o), +(572,224,c), +(573,244,o), +(573,317,o), +(572,337,cs), +(566,492,o), +(505,571,o), +(335,571,c), +(100,571,ls), +(87,571,o), +(78,562,o), +(78,549,cs), +(78,239,ls), +(78,79,o), +(155,-10,o), +(315,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,48,o), +(139,119,o), +(139,239,cs), +(139,513,l), +(330,513,ls), +(435,513,o), +(508,452,o), +(511,332,c), +(512,312,o), +(512,249,o), +(511,229,c), +(508,109,o), +(455,48,o), +(315,48,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +8 +); +stem = -2; +type = Tag; +} +); +}; +width = 633; +}, +{ +anchors = ( +{ +name = bottom; +pos = (310,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (324,260); +}, +{ +name = top; +pos = (310,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(548,-10,o), +(619,90,o), +(627,241,cs), +(628,261,o), +(628,306,o), +(627,326,cs), +(619,472,o), +(549,571,o), +(334,571,c), +(68,571,ls), +(53,571,o), +(41,559,o), +(41,544,cs), +(41,242,ls), +(41,88,o), +(133,-10,o), +(330,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(280,175,o), +(243,191,o), +(243,246,cs), +(243,396,l), +(329,396,ls), +(398,396,o), +(412,371,o), +(415,321,cs), +(416,301,o), +(416,266,o), +(415,246,cs), +(412,191,o), +(397,175,o), +(329,175,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +}; +width = 656; +} +); +unicode = 1505; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 65; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 509; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "samekhdagesh-hb"; +kernLeft = tethebrew; +kernRight = tethebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "samekh-hb"; +}, +{ +pos = (314,-29); +ref = "dagesh-hb"; +} +); +width = 633; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "samekh-hb"; +}, +{ +pos = (266,-26); +ref = "dagesh-hb"; +} +); +width = 656; +} +); +unicode = 64321; +}, +{ +color = 6; +glyphname = "ayin-hb"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (304,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (354,260); +}, +{ +name = top; +pos = (354,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(281,19,ls), +(400,62,o), +(478,168,o), +(478,279,cs), +(478,549,ls), +(478,562,o), +(469,571,o), +(456,571,cs), +(439,571,ls), +(426,571,o), +(417,562,o), +(417,549,cs), +(417,299,ls), +(417,202,o), +(385,119,o), +(269,77,cs), +(62,1,ls), +(50,-3,o), +(48,-15,o), +(48,-27,cs), +(48,-40,ls), +(48,-53,o), +(63,-60,o), +(76,-55,cs) +); +}, +{ +closed = 1; +nodes = ( +(267,47,l), +(122,556,ls), +(120,564,o), +(112,571,o), +(99,571,cs), +(81,571,ls), +(70,571,o), +(61,562,o), +(61,551,cs), +(61,546,o), +(63,541,o), +(66,531,cs), +(207,24,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +556, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 556; +}, +{ +anchors = ( +{ +name = bottom; +pos = (328,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (338,260); +}, +{ +name = top; +pos = (338,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(338,-13,ls), +(528,10,o), +(634,91,o), +(634,235,cs), +(634,544,ls), +(634,559,o), +(622,571,o), +(607,571,cs), +(438,571,ls), +(423,571,o), +(411,560,o), +(411,545,cs), +(411,300,ls), +(411,215,o), +(391,183,o), +(283,163,cs), +(56,121,ls), +(42,118,o), +(29,109,o), +(29,94,cs), +(29,-30,ls), +(29,-45,o), +(41,-59,o), +(56,-57,cs) +); +}, +{ +closed = 1; +nodes = ( +(381,47,l), +(268,556,ls), +(266,564,o), +(258,571,o), +(245,571,cs), +(58,571,ls), +(47,571,o), +(38,562,o), +(38,551,cs), +(38,546,o), +(40,541,o), +(43,531,cs), +(184,24,l) +); +} +); +width = 675; +} +); +unicode = 1506; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 40; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "finalpe-hb"; +kernLeft = hethebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (333,250); +}, +{ +name = top; +pos = (285,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(240,513,l), +(375,513,o), +(431,442,o), +(431,322,cs), +(431,-102,ls), +(431,-115,o), +(440,-124,o), +(453,-124,cs), +(470,-124,ls), +(483,-124,o), +(492,-115,o), +(492,-102,cs), +(492,327,ls), +(492,482,o), +(415,571,o), +(245,571,c), +(101,571,l), +(88,571,o), +(79,562,o), +(79,549,cs), +(79,393,l), +(79,292,o), +(109,240,o), +(173,225,cs), +(211,216,ls), +(225,213,o), +(242,218,o), +(242,231,cs), +(242,245,ls), +(242,262,o), +(236,274,o), +(225,277,cs), +(184,287,ls), +(149,296,o), +(139,335,o), +(139,393,c), +(139,513,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 570; +}, +{ +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (290,242); +}, +{ +name = top; +pos = (284,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(257,388,ls), +(305,389,o), +(332,361,o), +(335,311,c), +(335,-97,l), +(335,-112,o), +(347,-124,o), +(362,-124,cs), +(522,-124,ls), +(537,-124,o), +(549,-112,o), +(549,-97,c), +(548,308,l), +(540,462,o), +(461,571,o), +(279,571,cs), +(56,571,ls), +(41,571,o), +(29,560,o), +(29,544,cs), +(29,398,l), +(29,280,o), +(94,207,o), +(162,200,cs), +(221,194,ls), +(237,192,o), +(258,204,o), +(258,222,cs), +(257,302,ls), +(257,314,o), +(251,327,o), +(240,332,cs), +(219,341,ls), +(207,346,o), +(205,364,o), +(205,380,c), +(205,387,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 590; +} +); +unicode = 1507; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 1818; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "finalpedagesh-hb"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (285,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (333,250); +}, +{ +name = top; +pos = (285,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(344,246,ls), +(357,246,o), +(366,255,o), +(366,268,cs), +(366,291,ls), +(366,304,o), +(357,313,o), +(344,313,cs), +(321,313,ls), +(308,313,o), +(299,304,o), +(299,291,cs), +(299,268,ls), +(299,255,o), +(308,246,o), +(321,246,cs) +); +}, +{ +closed = 1; +nodes = ( +(240,513,l), +(375,513,o), +(431,442,o), +(431,322,cs), +(431,-102,ls), +(431,-115,o), +(440,-124,o), +(453,-124,cs), +(470,-124,ls), +(483,-124,o), +(492,-115,o), +(492,-102,cs), +(492,327,ls), +(492,482,o), +(415,571,o), +(245,571,c), +(101,571,l), +(88,571,o), +(79,562,o), +(79,549,cs), +(79,393,l), +(79,292,o), +(109,240,o), +(173,225,cs), +(211,216,ls), +(225,213,o), +(242,218,o), +(242,231,cs), +(242,245,ls), +(242,262,o), +(236,274,o), +(225,277,cs), +(184,287,ls), +(149,296,o), +(139,335,o), +(139,393,c), +(139,513,l) +); +} +); +width = 569; +}, +{ +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (306,245); +}, +{ +name = top; +pos = (284,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +attr = { +coordinates = ( +160 +); +}; +color = 6; +layerId = "E1E7C1D6-6F74-403E-9F91-323E8B3AB4B6"; +name = "{160}"; +shapes = ( +{ +closed = 1; +nodes = ( +(330,230,ls), +(343,230,o), +(352,239,o), +(352,252,cs), +(352,300,ls), +(352,313,o), +(343,322,o), +(330,322,cs), +(282,322,ls), +(269,322,o), +(260,313,o), +(260,300,cs), +(260,252,ls), +(260,239,o), +(269,230,o), +(282,230,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,435,l), +(331,436,o), +(369,391,o), +(371,315,cs), +(371,-99,ls), +(371,-113,o), +(382,-124,o), +(396,-124,cs), +(503,-124,ls), +(517,-124,o), +(528,-113,o), +(528,-99,cs), +(527,315,ls), +(522,470,o), +(444,571,o), +(266,571,c), +(73,571,l), +(59,571,o), +(48,561,o), +(48,546,cs), +(48,396,l), +(48,285,o), +(100,219,o), +(166,209,cs), +(217,202,ls), +(233,200,o), +(252,209,o), +(252,225,cs), +(251,281,ls), +(251,295,o), +(245,307,o), +(234,311,cs), +(206,321,ls), +(185,327,o), +(180,353,o), +(180,385,c), +(180,434,l) +); +} +); +visible = 1; +width = 588; +}, +{ +anchors = ( +{ +name = bottom; +pos = (284,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (290,242); +}, +{ +name = top; +pos = (284,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(303,205,ls), +(316,205,o), +(325,214,o), +(325,227,cs), +(325,290,ls), +(325,303,o), +(316,312,o), +(303,312,cs), +(290,312,ls), +(277,312,o), +(268,303,o), +(268,290,cs), +(268,227,ls), +(268,214,o), +(277,205,o), +(290,205,cs) +); +}, +{ +closed = 1; +nodes = ( +(257,388,ls), +(305,389,o), +(332,361,o), +(335,311,c), +(335,-97,l), +(335,-112,o), +(347,-124,o), +(362,-124,cs), +(522,-124,ls), +(537,-124,o), +(549,-112,o), +(549,-97,c), +(548,308,l), +(540,462,o), +(461,571,o), +(279,571,cs), +(56,571,ls), +(41,571,o), +(29,560,o), +(29,544,cs), +(29,398,l), +(29,280,o), +(94,207,o), +(162,200,cs), +(221,194,ls), +(237,192,o), +(258,204,o), +(258,222,cs), +(257,302,ls), +(257,314,o), +(251,327,o), +(240,332,cs), +(219,341,ls), +(207,346,o), +(205,364,o), +(205,380,c), +(205,387,l) +); +} +); +width = 600; +} +); +unicode = 64323; +}, +{ +color = 6; +glyphname = "pe-hb"; +kernLeft = tethebrew; +kernRight = pehebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = bottomleft; +pos = (19,0); +}, +{ +name = center; +pos = (338,242); +}, +{ +name = top; +pos = (276,520); +}, +{ +name = topleft; +pos = (19,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(282,513,l), +(385,513,o), +(438,442,o), +(441,322,cs), +(442,302,o), +(442,269,o), +(441,249,cs), +(436,129,o), +(385,58,o), +(282,58,c), +(121,58,l), +(108,58,o), +(99,49,o), +(99,36,c), +(99,22,l), +(99,9,o), +(108,0,o), +(121,0,c), +(287,0,l), +(425,0,o), +(498,89,o), +(502,244,cs), +(503,264,o), +(503,307,o), +(502,327,cs), +(498,482,o), +(425,571,o), +(287,571,c), +(108,571,l), +(95,571,o), +(86,562,o), +(86,549,cs), +(86,418,l), +(86,317,o), +(116,265,o), +(180,250,cs), +(218,241,ls), +(232,238,o), +(249,243,o), +(249,256,cs), +(249,270,ls), +(249,287,o), +(243,299,o), +(232,302,cs), +(191,312,ls), +(156,321,o), +(146,360,o), +(146,418,c), +(146,513,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +24 +); +stem = -2; +type = Tag; +} +); +}; +width = 563; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = bottomleft; +pos = (30,0); +}, +{ +name = center; +pos = (313,250); +}, +{ +name = top; +pos = (280,520); +}, +{ +name = topleft; +pos = (30,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,386,ls), +(320,386,o), +(367,361,o), +(370,311,cs), +(371,291,o), +(371,280,o), +(370,260,cs), +(367,210,o), +(320,185,o), +(271,185,cs), +(74,185,ls), +(59,185,o), +(47,173,o), +(47,158,cs), +(47,27,ls), +(47,12,o), +(59,0,o), +(74,0,cs), +(276,0,ls), +(481,0,o), +(560,109,o), +(568,263,cs), +(569,283,o), +(569,288,o), +(568,308,cs), +(560,462,o), +(481,571,o), +(276,571,cs), +(63,571,ls), +(48,571,o), +(39,559,o), +(36,544,cs), +(36,398,l), +(36,300,o), +(101,227,o), +(169,220,cs), +(212,215,ls), +(243,212,o), +(265,228,o), +(265,253,cs), +(264,322,ls), +(264,334,o), +(258,347,o), +(247,352,cs), +(226,361,ls), +(219,364,o), +(214,371,o), +(212,380,c), +(212,386,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "kaf-hb"; +}; +width = 597; +} +); +unicode = 1508; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "pedagesh-hb"; +kernLeft = tethebrew; +kernRight = pehebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (276,0); +}, +{ +name = bottomleft; +pos = (19,0); +}, +{ +name = center; +pos = (338,242); +}, +{ +name = top; +pos = (276,520); +}, +{ +name = topleft; +pos = (19,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(349,238,ls), +(362,238,o), +(371,247,o), +(371,260,cs), +(371,283,ls), +(371,296,o), +(362,305,o), +(349,305,cs), +(326,305,ls), +(313,305,o), +(304,296,o), +(304,283,cs), +(304,260,ls), +(304,247,o), +(313,238,o), +(326,238,cs) +); +}, +{ +closed = 1; +nodes = ( +(282,513,l), +(385,513,o), +(438,442,o), +(441,322,cs), +(442,302,o), +(442,269,o), +(441,249,cs), +(436,129,o), +(385,58,o), +(282,58,c), +(121,58,l), +(108,58,o), +(99,49,o), +(99,36,c), +(99,22,l), +(99,9,o), +(108,0,o), +(121,0,c), +(287,0,l), +(425,0,o), +(498,89,o), +(502,244,cs), +(503,264,o), +(503,307,o), +(502,327,cs), +(498,482,o), +(425,571,o), +(287,571,c), +(108,571,l), +(95,571,o), +(86,562,o), +(86,549,cs), +(86,418,l), +(86,317,o), +(116,265,o), +(180,250,cs), +(218,241,ls), +(232,238,o), +(249,243,o), +(249,256,cs), +(249,270,ls), +(249,287,o), +(243,299,o), +(232,302,cs), +(191,312,ls), +(156,321,o), +(146,360,o), +(146,418,c), +(146,513,l) +); +} +); +width = 563; +}, +{ +anchors = ( +{ +name = bottom; +pos = (279,0); +}, +{ +name = bottomleft; +pos = (26,0); +}, +{ +name = center; +pos = (322,247); +}, +{ +name = top; +pos = (279,520); +}, +{ +name = topleft; +pos = (26,520); +} +); +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +attr = { +coordinates = ( +160 +); +}; +color = 6; +layerId = "81C398AB-AC6A-456C-B4F6-A0843B3D6AA0"; +name = "{160}"; +shapes = ( +{ +closed = 1; +nodes = ( +(347,232,ls), +(360,232,o), +(369,241,o), +(369,254,cs), +(369,302,ls), +(369,315,o), +(360,324,o), +(347,324,cs), +(299,324,ls), +(286,324,o), +(277,315,o), +(277,302,cs), +(277,254,ls), +(277,241,o), +(286,232,o), +(299,232,cs) +); +}, +{ +closed = 1; +nodes = ( +(275,434,l), +(344,434,o), +(394,391,o), +(397,315,cs), +(398,295,o), +(398,276,o), +(397,256,cs), +(393,180,o), +(344,137,o), +(275,137,c), +(92,137,l), +(77,137,o), +(67,127,o), +(67,112,c), +(67,25,l), +(67,11,o), +(77,0,o), +(92,0,c), +(280,0,l), +(460,0,o), +(537,102,o), +(543,256,cs), +(544,276,o), +(544,295,o), +(543,315,cs), +(537,470,o), +(460,571,o), +(280,571,c), +(80,571,l), +(66,571,o), +(57,560,o), +(55,546,cs), +(55,406,l), +(55,306,o), +(107,241,o), +(173,231,cs), +(214,225,ls), +(239,222,o), +(259,234,o), +(259,254,cs), +(258,303,ls), +(258,316,o), +(252,329,o), +(241,333,cs), +(213,343,ls), +(195,348,o), +(189,367,o), +(187,394,c), +(187,434,l) +); +} +); +width = 584; +}, +{ +anchors = ( +{ +name = bottom; +pos = (280,0); +}, +{ +name = bottomleft; +pos = (30,0); +}, +{ +name = center; +pos = (313,250); +}, +{ +name = top; +pos = (280,520); +}, +{ +name = topleft; +pos = (30,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(319,226,ls), +(332,226,o), +(341,235,o), +(341,248,cs), +(341,311,ls), +(341,324,o), +(332,333,o), +(319,333,cs), +(306,333,ls), +(293,333,o), +(284,324,o), +(284,311,cs), +(284,248,ls), +(284,235,o), +(293,226,o), +(306,226,cs) +); +}, +{ +closed = 1; +nodes = ( +(271,386,ls), +(320,386,o), +(367,361,o), +(370,311,cs), +(371,291,o), +(371,280,o), +(370,260,cs), +(367,210,o), +(320,185,o), +(271,185,cs), +(74,185,ls), +(59,185,o), +(47,173,o), +(47,158,cs), +(47,27,ls), +(47,12,o), +(59,0,o), +(74,0,cs), +(276,0,ls), +(481,0,o), +(560,109,o), +(568,263,cs), +(569,283,o), +(569,288,o), +(568,308,cs), +(560,462,o), +(481,571,o), +(276,571,cs), +(63,571,ls), +(48,571,o), +(39,559,o), +(36,544,cs), +(36,398,l), +(36,300,o), +(101,227,o), +(169,220,cs), +(212,215,ls), +(243,212,o), +(265,228,o), +(265,253,cs), +(264,322,ls), +(264,334,o), +(258,347,o), +(247,352,cs), +(226,361,ls), +(219,364,o), +(214,371,o), +(212,380,c), +(212,386,l) +); +} +); +width = 597; +} +); +unicode = 64324; +}, +{ +color = 6; +glyphname = "finaltsadi-hb"; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (239,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (239,260); +}, +{ +name = top; +pos = (239,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,-124,ls), +(348,-124,o), +(357,-115,o), +(357,-104,cs), +(357,-99,o), +(355,-94,o), +(351,-84,cs), +(235,206,l), +(366,224,o), +(435,309,o), +(435,447,cs), +(435,549,ls), +(435,562,o), +(426,571,o), +(413,571,cs), +(396,571,ls), +(383,571,o), +(374,562,o), +(374,549,cs), +(374,452,ls), +(374,341,o), +(326,272,o), +(212,262,c), +(99,547,ls), +(92,564,o), +(85,571,o), +(72,571,cs), +(54,571,ls), +(43,571,o), +(34,562,o), +(34,551,cs), +(34,546,o), +(36,541,o), +(40,531,cs), +(293,-109,l), +(297,-117,o), +(303,-124,o), +(316,-124,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +34 +); +stem = -2; +type = Tag; +} +); +}; +width = 477; +}, +{ +anchors = ( +{ +name = bottom; +pos = (295,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (295,260); +}, +{ +name = top; +pos = (295,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(460,-124,ls), +(472,-124,o), +(482,-115,o), +(482,-103,cs), +(482,-100,o), +(481,-97,o), +(479,-91,cs), +(387,151,l), +(475,199,o), +(566,282,o), +(566,422,cs), +(566,542,ls), +(566,557,o), +(554,571,o), +(539,571,cs), +(390,571,ls), +(375,571,o), +(363,559,o), +(363,542,cs), +(363,431,ls), +(363,381,o), +(339,354,o), +(317,337,c), +(238,547,l), +(233,559,o), +(224,571,o), +(204,571,cs), +(32,571,ls), +(20,571,o), +(9,561,o), +(9,550,cs), +(9,547,o), +(9,545,o), +(11,539,cs), +(256,-100,ls), +(261,-112,o), +(271,-124,o), +(291,-124,cs) +); +} +); +width = 590; +} +); +unicode = 1509; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-124"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 28; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 431; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "tsadi-hb"; +kernLeft = tsadihebrew; +kernRight = tsadihebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (256,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (142,204); +}, +{ +name = top; +pos = (256,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(422,0,ls), +(435,0,o), +(444,9,o), +(444,22,cs), +(444,36,ls), +(444,47,o), +(440,56,o), +(433,66,c), +(97,555,l), +(92,563,o), +(84,571,o), +(72,571,c), +(54,571,ls), +(43,571,o), +(33,562,o), +(33,551,cs), +(33,546,o), +(35,540,o), +(41,531,cs), +(362,58,l), +(77,58,ls), +(64,58,o), +(55,49,o), +(55,36,cs), +(55,22,ls), +(55,9,o), +(64,0,o), +(77,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(398,256,o), +(448,332,o), +(448,447,cs), +(448,549,ls), +(448,562,o), +(439,571,o), +(426,571,cs), +(409,571,ls), +(396,571,o), +(387,562,o), +(387,549,cs), +(387,452,ls), +(387,358,o), +(353,293,o), +(273,271,c), +(302,224,l) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +11 +); +stem = -2; +type = Tag; +} +); +}; +width = 511; +}, +{ +anchors = ( +{ +name = bottom; +pos = (305,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (123,235); +}, +{ +name = top; +pos = (305,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(524,0,ls), +(539,0,o), +(551,12,o), +(551,27,cs), +(551,141,ls), +(551,159,o), +(542,168,o), +(536,176,cs), +(252,552,ls), +(248,557,o), +(239,571,o), +(216,571,cs), +(39,571,ls), +(27,571,o), +(17,563,o), +(17,551,cs), +(17,545,o), +(20,540,o), +(22,537,cs), +(297,180,l), +(88,180,ls), +(73,180,o), +(61,168,o), +(61,153,cs), +(61,27,ls), +(61,12,o), +(73,0,o), +(88,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(546,299,o), +(589,381,o), +(589,463,cs), +(589,542,ls), +(589,557,o), +(577,571,o), +(562,571,cs), +(413,571,ls), +(398,571,o), +(386,559,o), +(386,542,cs), +(386,506,ls), +(386,463,o), +(380,422,o), +(352,390,c), +(463,243,l) +); +} +); +width = 629; +} +); +unicode = 1510; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 27; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "tsadidagesh-hb"; +kernLeft = tsadihebrew; +kernRight = tsadihebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "tsadi-hb"; +}, +{ +pos = (141,-85); +ref = "dagesh-hb"; +} +); +width = 511; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "tsadi-hb"; +}, +{ +pos = (65,-51); +ref = "dagesh-hb"; +} +); +width = 629; +} +); +unicode = 64326; +}, +{ +color = 6; +glyphname = "qof-hb"; +kernLeft = lamedhebrew; +kernRight = vavhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (355,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (275,260); +}, +{ +name = top; +pos = (275,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(123,-191,ls), +(136,-191,o), +(145,-182,o), +(145,-169,c), +(145,373,ls), +(145,386,o), +(136,395,o), +(123,395,cs), +(106,395,ls), +(93,395,o), +(84,386,o), +(84,373,cs), +(84,-169,ls), +(84,-182,o), +(93,-191,o), +(106,-191,cs) +); +}, +{ +closed = 1; +nodes = ( +(321,7,ls), +(431,46,o), +(536,119,o), +(536,307,c), +(536,503,o), +(472,571,o), +(289,571,c), +(106,571,l), +(93,571,o), +(84,562,o), +(84,549,cs), +(84,535,l), +(84,522,o), +(93,513,o), +(106,513,c), +(284,513,l), +(426,513,o), +(475,462,o), +(475,314,c), +(475,162,o), +(407,108,o), +(317,73,cs), +(276,57,ls), +(261,51,o), +(255,42,o), +(255,32,cs), +(255,7,ls), +(255,-7,o), +(267,-12,o), +(279,-8,cs) +); +} +); +userData = { +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +513, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 610; +}, +{ +anchors = ( +{ +name = bottom; +pos = (467,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (348,260); +}, +{ +name = top; +pos = (348,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(237,-191,ls), +(252,-191,o), +(264,-179,o), +(264,-164,c), +(264,289,ls), +(264,304,o), +(252,316,o), +(237,316,cs), +(74,316,ls), +(59,316,o), +(47,304,o), +(47,289,cs), +(47,-164,ls), +(47,-179,o), +(59,-191,o), +(74,-191,cs) +); +}, +{ +closed = 1; +nodes = ( +(390,-5,ls), +(538,32,o), +(677,149,o), +(677,326,cs), +(677,471,o), +(611,571,o), +(435,571,cs), +(74,571,l), +(61,571,o), +(47,559,o), +(47,546,c), +(47,413,l), +(47,398,o), +(60,386,o), +(74,386,c), +(385,386,l), +(435,386,o), +(446,365,o), +(446,315,cs), +(446,249,o), +(412,218,o), +(376,203,cs), +(349,192,ls), +(335,186,o), +(322,171,o), +(322,156,cs), +(322,17,ls), +(322,2,o), +(336,-18,o), +(350,-15,cs) +); +} +); +width = 696; +} +); +unicode = 1511; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-191"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 516; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "qofdagesh-hb"; +kernLeft = lamedhebrew; +kernRight = vavhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "qof-hb"; +}, +{ +pos = (274,-29); +ref = "dagesh-hb"; +} +); +width = 610; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "qof-hb"; +}, +{ +pos = (290,-26); +ref = "dagesh-hb"; +} +); +width = 696; +} +); +unicode = 64327; +}, +{ +color = 6; +glyphname = "resh-hb"; +kernLeft = hethebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (424,0); +}, +{ +name = bottomleft; +pos = (66,0); +}, +{ +name = center; +pos = (248,260); +}, +{ +name = top; +pos = (291,520); +}, +{ +name = topleft; +pos = (66,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(434,0,ls), +(447,0,o), +(456,9,o), +(456,22,cs), +(456,327,ls), +(456,482,o), +(379,571,o), +(209,571,cs), +(82,571,ls), +(69,571,o), +(60,562,o), +(60,549,cs), +(60,535,ls), +(60,522,o), +(69,513,o), +(82,513,cs), +(204,513,ls), +(339,513,o), +(395,442,o), +(395,322,cs), +(395,22,ls), +(395,9,o), +(404,0,o), +(417,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +12 +); +stem = -2; +type = Tag; +} +); +}; +width = 534; +}, +{ +anchors = ( +{ +name = bottom; +pos = (403,0); +}, +{ +name = bottomleft; +pos = (38,0); +}, +{ +name = center; +pos = (181,260); +}, +{ +name = top; +pos = (290,520); +}, +{ +name = topleft; +pos = (38,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(494,0,ls), +(509,0,o), +(521,12,o), +(521,27,cs), +(521,327,ls), +(521,516,o), +(415,571,o), +(230,571,cs), +(57,571,l), +(42,571,o), +(30,559,o), +(30,544,cs), +(30,423,ls), +(30,408,o), +(42,396,o), +(57,396,cs), +(224,396,ls), +(273,396,o), +(298,371,o), +(298,321,cs), +(298,26,ls), +(298,11,o), +(310,0,o), +(325,0,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 562; +} +); +unicode = 1512; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 40; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 436; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "reshdagesh-hb"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "resh-hb"; +}, +{ +pos = (247,-29); +ref = "dagesh-hb"; +} +); +width = 534; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "resh-hb"; +}, +{ +pos = (123,-26); +ref = "dagesh-hb"; +} +); +width = 562; +} +); +unicode = 64328; +}, +{ +color = 6; +glyphname = "shin-hb"; +kernLeft = lamedhebrew; +kernRight = shinhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (349,0); +}, +{ +name = bottomleft; +pos = (14,0); +}, +{ +name = center; +pos = (464,260); +}, +{ +name = top; +pos = (349,520); +}, +{ +name = topleft; +pos = (14,520); +}, +{ +name = topright; +pos = (683,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,54,ls), +(214,54,o), +(139,118,o), +(139,234,c), +(135,549,l), +(135,562,o), +(126,571,o), +(113,571,cs), +(96,571,ls), +(83,571,o), +(74,562,o), +(74,549,cs), +(74,237,ls), +(74,87,o), +(173,-5,o), +(290,-5,cs), +(357,-5,l), +(518,-10,o), +(623,98,o), +(623,265,cs), +(623,549,l), +(623,562,o), +(614,571,o), +(601,571,cs), +(584,571,ls), +(571,571,o), +(562,562,o), +(562,549,c), +(562,272,ls), +(562,141,o), +(491,51,o), +(353,54,c) +); +}, +{ +closed = 1; +nodes = ( +(302,190,o), +(384,292,o), +(384,408,cs), +(384,549,ls), +(384,562,o), +(375,571,o), +(362,571,cs), +(345,571,ls), +(332,571,o), +(323,562,o), +(323,549,cs), +(323,413,ls), +(323,329,o), +(283,252,o), +(114,249,c), +(117,192,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = "het-hb"; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +origin = ( +0, +4 +); +stem = -2; +type = Tag; +} +); +}; +width = 691; +}, +{ +anchors = ( +{ +name = bottom; +pos = (400,0); +}, +{ +name = bottomleft; +pos = (26,0); +}, +{ +name = center; +pos = (509,260); +}, +{ +name = top; +pos = (443,520); +}, +{ +name = topleft; +pos = (-18,520); +}, +{ +name = topright; +pos = (737,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(380,164,l), +(306,164,o), +(250,226,o), +(250,335,c), +(250,545,ls), +(250,560,o), +(238,571,o), +(223,571,cs), +(74,571,ls), +(59,571,o), +(47,559,o), +(47,544,cs), +(47,217,ls), +(47,103,o), +(143,-10,o), +(333,-10,cs), +(443,-10,ls), +(615,-10,o), +(764,107,o), +(764,293,cs), +(764,544,ls), +(764,559,o), +(752,571,o), +(737,571,cs), +(588,571,ls), +(573,571,o), +(561,560,o), +(561,545,cs), +(561,298,ls), +(561,223,o), +(485,164,o), +(398,164,c) +); +}, +{ +closed = 1; +nodes = ( +(400,190,o), +(507,279,o), +(507,471,cs), +(507,542,ls), +(507,557,o), +(495,571,o), +(480,571,cs), +(332,571,ls), +(317,571,o), +(305,559,o), +(305,542,cs), +(305,471,ls), +(305,375,o), +(284,333,o), +(237,333,c), +(236,190,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.leftMetricsKey = "het-hb"; +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 805; +} +); +unicode = 1513; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 952; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +} +); +}; +}, +{ +color = 10; +glyphname = "shinshindot-hb"; +kernLeft = lamedhebrew; +kernRight = shinhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (660,105); +ref = "shindot-hb"; +} +); +width = 691; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (716,105); +ref = "shindot-hb"; +} +); +width = 805; +} +); +unicode = 64298; +}, +{ +color = 10; +glyphname = "shinsindot-hb"; +kernLeft = lamedhebrew; +kernRight = shinhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (84,105); +ref = "sindot-hb"; +} +); +width = 691; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (52,105); +ref = "sindot-hb"; +} +); +width = 805; +} +); +unicode = 64299; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 65; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "shindageshshindot-hb"; +kernLeft = lamedhebrew; +kernRight = shinhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (463,-29); +ref = "dagesh-hb"; +}, +{ +pos = (660,105); +ref = "shindot-hb"; +} +); +width = 691; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (451,-26); +ref = "dagesh-hb"; +}, +{ +pos = (716,105); +ref = "shindot-hb"; +} +); +width = 805; +} +); +unicode = 64300; +}, +{ +color = 10; +glyphname = "shindageshsindot-hb"; +kernLeft = lamedhebrew; +kernRight = shinhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (463,-29); +ref = "dagesh-hb"; +}, +{ +pos = (84,105); +ref = "sindot-hb"; +} +); +width = 691; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (451,-26); +ref = "dagesh-hb"; +}, +{ +pos = (52,105); +ref = "sindot-hb"; +} +); +width = 805; +} +); +unicode = 64301; +}, +{ +color = 10; +glyphname = "shindagesh-hb"; +kernLeft = lamedhebrew; +kernRight = shinhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (463,-29); +ref = "dagesh-hb"; +} +); +width = 691; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "shin-hb"; +}, +{ +pos = (451,-26); +ref = "dagesh-hb"; +} +); +width = 805; +} +); +unicode = 64329; +}, +{ +color = 6; +glyphname = "tav-hb"; +kernLeft = hethebrew; +kernRight = tavhebrew; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (359,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (359,260); +}, +{ +name = top; +pos = (359,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(309,513,l), +(444,513,o), +(500,442,o), +(500,322,cs), +(500,22,ls), +(500,9,o), +(509,0,o), +(522,0,cs), +(539,0,ls), +(552,0,o), +(561,9,o), +(561,22,cs), +(561,327,ls), +(561,482,o), +(484,571,o), +(314,571,cs), +(122,571,ls), +(109,571,o), +(100,562,o), +(100,549,cs), +(100,535,ls), +(100,522,o), +(109,513,o), +(122,513,c) +); +}, +{ +closed = 1; +nodes = ( +(184,553,o), +(180,545,o), +(177,532,cs), +(155,436,o), +(153,382,o), +(154,292,c), +(154,59,l), +(79,60,ls), +(66,60,o), +(57,51,o), +(57,38,cs), +(57,24,ls), +(57,11,o), +(66,2,o), +(79,2,cs), +(193,0,ls), +(206,0,o), +(215,9,o), +(215,22,cs), +(215,297,l), +(214,385,o), +(222,438,o), +(236,531,c), +(236,544,o), +(227,553,o), +(214,553,cs), +(197,553,ls) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +com.schriftgestaltung.hints = ( +{ +horizontal = 1; +options = 0; +place = ( +513, +0 +); +stem = -2; +type = Tag; +} +); +}; +width = 639; +}, +{ +anchors = ( +{ +name = bottom; +pos = (416,0); +}, +{ +name = bottomleft; +pos = (20,0); +}, +{ +name = center; +pos = (413,260); +}, +{ +name = top; +pos = (376,520); +}, +{ +name = topleft; +pos = (20,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(413,396,ls), +(462,396,o), +(487,371,o), +(487,321,cs), +(487,26,ls), +(487,11,o), +(499,0,o), +(514,0,cs), +(683,0,ls), +(698,0,o), +(710,12,o), +(710,27,cs), +(710,326,ls), +(710,505,o), +(604,571,o), +(419,571,cs), +(96,571,ls), +(81,571,o), +(69,559,o), +(69,544,cs), +(69,423,ls), +(69,408,o), +(81,396,o), +(96,396,cs) +); +}, +{ +closed = 1; +nodes = ( +(200,482,o), +(183,462,o), +(174,441,cs), +(152,388,o), +(146,333,o), +(146,284,c), +(146,165,l), +(62,165,ls), +(47,165,o), +(35,153,o), +(35,138,cs), +(35,27,ls), +(35,12,o), +(47,0,o), +(62,0,cs), +(324,0,ls), +(339,0,o), +(351,12,o), +(351,27,c), +(339,284,l), +(339,350,o), +(345,394,o), +(368,441,cs), +(377,459,o), +(362,482,o), +(311,482,c), +(250,482,l) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.glyph.rightMetricsKey = "het-hb"; +}; +width = 751; +} +); +unicode = 1514; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 576; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = "tavdagesh-hb"; +kernLeft = hethebrew; +kernRight = tavhebrew; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "tav-hb"; +}, +{ +pos = (358,-29); +ref = "dagesh-hb"; +} +); +width = 639; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "tav-hb"; +}, +{ +pos = (355,-26); +ref = "dagesh-hb"; +} +); +width = 751; +} +); +unicode = 64330; +}, +{ +color = 10; +glyphname = "yodyod-hb"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (213,0); +ref = "yod-hb"; +}, +{ +ref = "yod-hb"; +} +); +width = 426; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (323,0); +ref = "yod-hb"; +}, +{ +ref = "yod-hb"; +} +); +width = 646; +} +); +unicode = 1522; +}, +{ +color = 6; +glyphname = zero; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,11); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(489,-10,o), +(544,119,o), +(548,266,cs), +(549,320,o), +(549,377,o), +(548,434,cs), +(545,581,o), +(489,710,o), +(308,710,cs), +(127,710,o), +(71,581,o), +(68,434,cs), +(67,377,o), +(67,320,o), +(68,266,cs), +(72,119,o), +(127,-10,o), +(308,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(190,50,o), +(134,134,o), +(131,271,cs), +(130,328,o), +(130,374,o), +(131,429,cs), +(134,564,o), +(190,650,o), +(308,650,cs), +(426,650,o), +(482,564,o), +(485,429,cs), +(486,374,o), +(486,328,o), +(485,271,cs), +(482,134,o), +(426,50,o), +(308,50,cs) +); +} +); +width = 616; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(559,-9,o), +(661,99,o), +(672,246,cs), +(676,300,o), +(676,401,o), +(672,458,cs), +(662,604,o), +(549,709,o), +(358,710,c), +(167,709,o), +(54,604,o), +(44,458,cs), +(40,401,o), +(40,300,o), +(44,246,cs), +(55,99,o), +(157,-9,o), +(358,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(320,186,o), +(306,214,o), +(304,251,cs), +(301,308,o), +(301,397,o), +(304,452,cs), +(306,486,o), +(318,516,o), +(358,517,c), +(398,516,o), +(410,486,o), +(412,452,cs), +(415,397,o), +(415,308,o), +(412,251,cs), +(410,214,o), +(396,186,o), +(358,186,cs) +); +} +); +width = 718; +} +); +unicode = 48; +}, +{ +color = 6; +glyphname = one; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(295,0,ls), +(308,0,o), +(317,9,o), +(317,22,cs), +(317,678,ls), +(317,691,o), +(308,700,o), +(295,700,cs), +(276,700,ls), +(267,700,o), +(259,699,o), +(250,693,c), +(37,529,ls), +(26,521,o), +(25,508,o), +(33,498,cs), +(44,484,ls), +(52,473,o), +(64,472,o), +(75,480,cs), +(254,618,l), +(254,22,ls), +(254,9,o), +(263,0,o), +(276,0,cs) +); +} +); +width = 398; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(474,0,ls), +(489,0,o), +(501,12,o), +(501,27,cs), +(501,673,ls), +(501,688,o), +(489,700,o), +(474,700,cs), +(285,700,ls), +(276,700,o), +(270,698,o), +(263,693,cs), +(22,506,l), +(9,498,o), +(6,480,o), +(13,467,c), +(101,353,ls), +(111,340,o), +(126,335,o), +(139,345,cs), +(251,431,l), +(251,27,ls), +(251,12,o), +(263,0,o), +(278,0,cs) +); +} +); +width = 557; +} +); +unicode = 49; +}, +{ +color = 6; +glyphname = two; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,21); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(484,0,ls), +(498,0,o), +(507,9,o), +(507,22,cs), +(507,37,ls), +(507,51,o), +(498,60,o), +(484,60,cs), +(149,60,l), +(383,298,ls), +(456,366,o), +(492,425,o), +(492,507,cs), +(492,612,o), +(433,710,o), +(281,710,cs), +(129,710,o), +(65,593,o), +(62,502,cs), +(62,491,o), +(70,483,o), +(83,483,c), +(103,483,ls), +(111,483,o), +(124,490,o), +(126,506,cs), +(137,592,o), +(190,650,o), +(281,650,cs), +(376,650,o), +(429,596,o), +(429,507,cs), +(429,445,o), +(411,407,o), +(336,338,cs), +(77,79,ls), +(58,62,o), +(52,50,o), +(52,37,cs), +(52,22,ls), +(52,9,o), +(61,0,o), +(74,0,cs) +); +} +); +width = 560; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(638,0,ls), +(653,0,o), +(665,12,o), +(665,27,cs), +(665,179,ls), +(665,194,o), +(653,206,o), +(638,206,cs), +(427,206,l), +(434,211,l), +(563,300,o), +(650,379,o), +(650,490,cs), +(650,632,o), +(533,714,o), +(351,714,cs), +(179,714,o), +(50,616,o), +(47,465,cs), +(47,453,o), +(57,443,o), +(69,443,cs), +(257,443,ls), +(275,443,o), +(290,447,o), +(297,466,cs), +(303,482,o), +(311,517,o), +(352,517,cs), +(387,517,o), +(388,496,o), +(388,477,cs), +(388,418,o), +(280,344,o), +(71,193,c), +(60,185,l), +(35,167,o), +(35,139,o), +(35,131,cs), +(35,27,ls), +(35,12,o), +(47,0,o), +(62,0,cs) +); +} +); +width = 704; +} +); +unicode = 50; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 535; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 510; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = three; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,-10,o), +(525,66,o), +(525,198,cs), +(525,332,o), +(433,396,o), +(296,396,cs), +(276,396,l), +(487,643,ls), +(491,648,o), +(495,654,o), +(495,662,cs), +(495,677,ls), +(495,691,o), +(486,700,o), +(472,700,cs), +(99,700,ls), +(86,700,o), +(77,691,o), +(77,677,cs), +(77,662,ls), +(77,649,o), +(86,640,o), +(99,640,cs), +(401,640,l), +(195,397,l), +(190,390,o), +(186,383,o), +(186,373,cs), +(186,358,ls), +(186,345,o), +(195,336,o), +(208,336,cs), +(296,336,ls), +(399,336,o), +(462,297,o), +(462,198,cs), +(462,99,o), +(389,50,o), +(286,50,cs), +(215,50,o), +(130,70,o), +(109,157,cs), +(104,177,o), +(93,180,o), +(82,180,cs), +(68,180,ls), +(56,180,o), +(47,173,o), +(47,161,cs), +(50,74,o), +(136,-10,o), +(286,-10,cs) +); +} +); +width = 576; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(537,-10,o), +(675,80,o), +(675,219,cs), +(675,345,o), +(595,401,o), +(495,425,c), +(495,428,l), +(612,506,ls), +(622,513,o), +(632,527,o), +(632,546,cs), +(632,673,ls), +(632,688,o), +(620,700,o), +(605,700,cs), +(93,700,ls), +(78,700,o), +(66,688,o), +(66,673,cs), +(66,532,ls), +(66,517,o), +(78,505,o), +(93,505,cs), +(356,505,l), +(217,429,ls), +(207,423,o), +(197,409,o), +(197,389,cs), +(197,308,ls), +(197,293,o), +(209,281,o), +(224,281,cs), +(349,281,ls), +(393,281,o), +(415,267,o), +(415,237,cs), +(415,208,o), +(396,184,o), +(349,184,cs), +(307,184,o), +(291,193,o), +(280,204,cs), +(271,213,o), +(264,220,o), +(246,220,cs), +(45,220,ls), +(33,220,o), +(23,210,o), +(23,198,cs), +(26,119,o), +(107,-10,o), +(348,-10,cs) +); +} +); +width = 709; +} +); +unicode = 51; +}, +{ +color = 6; +glyphname = four; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,26); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(425,0,ls), +(438,0,o), +(447,9,o), +(447,22,cs), +(447,180,l), +(538,180,ls), +(551,180,o), +(560,189,o), +(560,202,cs), +(560,218,ls), +(560,231,o), +(551,240,o), +(538,240,cs), +(447,240,l), +(447,678,ls), +(447,691,o), +(438,700,o), +(425,700,cs), +(384,700,ls), +(368,700,o), +(354,693,o), +(347,683,cs), +(43,248,ls), +(33,234,o), +(32,220,o), +(32,218,cs), +(32,202,l), +(32,189,o), +(41,180,o), +(54,180,cs), +(384,180,l), +(384,22,ls), +(384,9,o), +(393,0,o), +(406,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(384,629,l), +(384,240,l), +(111,240,l) +); +} +); +width = 595; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(565,0,ls), +(580,0,o), +(592,12,o), +(592,27,cs), +(592,112,l), +(680,112,ls), +(695,112,o), +(707,124,o), +(707,139,cs), +(707,288,ls), +(707,302,o), +(696,315,o), +(679,315,cs), +(592,315,l), +(592,673,ls), +(592,688,o), +(580,700,o), +(565,700,cs), +(357,700,ls), +(341,700,o), +(328,693,o), +(320,683,cs), +(37,313,ls), +(33,308,o), +(26,299,o), +(26,282,cs), +(26,139,ls), +(26,124,o), +(38,112,o), +(53,112,cs), +(352,112,l), +(352,27,ls), +(352,12,o), +(364,0,o), +(379,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(359,448,l), +(359,304,l), +(254,304,l) +); +} +); +width = 735; +} +); +unicode = 52; +}, +{ +color = 6; +glyphname = five; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,29); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(413,-10,o), +(521,68,o), +(521,224,cs), +(521,370,o), +(413,448,o), +(280,448,cs), +(205,448,o), +(165,423,o), +(151,414,c), +(172,640,l), +(459,640,ls), +(472,640,o), +(481,649,o), +(481,662,cs), +(481,678,ls), +(481,691,o), +(472,700,o), +(459,700,cs), +(133,700,ls), +(120,700,o), +(112,691,o), +(111,677,cs), +(81,350,l), +(80,338,o), +(91,328,o), +(103,328,cs), +(121,328,ls), +(163,328,o), +(180,388,o), +(280,388,cs), +(378,388,o), +(458,327,o), +(458,224,cs), +(458,111,o), +(378,50,o), +(280,50,cs), +(208,50,o), +(135,84,o), +(114,171,cs), +(109,191,o), +(100,194,o), +(89,194,cs), +(70,194,ls), +(58,194,o), +(49,187,o), +(50,175,cs), +(54,83,o), +(134,-10,o), +(280,-10,cs) +); +} +); +width = 572; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(556,-12,o), +(664,105,o), +(664,238,cs), +(664,371,o), +(543,468,o), +(420,468,cs), +(354,468,o), +(323,459,o), +(286,434,c), +(294,505,l), +(586,505,ls), +(601,505,o), +(613,517,o), +(613,532,cs), +(613,673,ls), +(613,688,o), +(601,700,o), +(586,700,cs), +(139,700,ls), +(120,700,o), +(103,689,o), +(100,666,c), +(60,304,l), +(60,292,o), +(70,282,o), +(82,282,cs), +(281,282,ls), +(298,282,o), +(303,306,o), +(345,306,cs), +(384,306,o), +(406,276,o), +(406,245,cs), +(406,204,o), +(377,183,o), +(345,183,cs), +(312,183,o), +(301,195,o), +(283,218,cs), +(279,223,o), +(268,234,o), +(247,234,cs), +(45,234,ls), +(33,234,o), +(23,224,o), +(23,212,cs), +(26,92,o), +(132,-12,o), +(344,-12,cs) +); +} +); +width = 690; +} +); +unicode = 53; +}, +{ +color = 6; +glyphname = six; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,23); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(458,-10,o), +(541,105,o), +(541,226,cs), +(541,347,o), +(458,461,o), +(298,461,cs), +(276,461,o), +(249,458,o), +(230,453,c), +(380,665,ls), +(382,668,o), +(385,672,o), +(385,678,cs), +(385,690,o), +(377,700,o), +(365,700,cs), +(346,700,ls), +(328,700,o), +(321,687,o), +(315,680,c), +(118,403,ls), +(95,370,o), +(55,304,o), +(55,226,cs), +(55,105,o), +(138,-10,o), +(298,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(204,50,o), +(118,111,o), +(118,226,cs), +(118,340,o), +(204,401,o), +(298,401,cs), +(392,401,o), +(478,340,o), +(478,226,cs), +(478,111,o), +(392,50,o), +(298,50,cs) +); +} +); +width = 582; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(538,-10,o), +(671,103,o), +(671,254,cs), +(671,410,o), +(516,489,o), +(419,498,cs), +(417,498,o), +(414,498,o), +(412,498,c), +(538,665,ls), +(540,668,o), +(542,672,o), +(542,678,cs), +(542,690,o), +(532,700,o), +(520,700,cs), +(319,700,ls), +(297,700,o), +(285,687,o), +(280,680,cs), +(117,467,ls), +(90,432,o), +(20,335,o), +(20,249,cs), +(20,84,o), +(162,-10,o), +(350,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(309,185,o), +(278,208,o), +(278,250,cs), +(278,292,o), +(308,315,o), +(347,315,cs), +(386,315,o), +(416,292,o), +(416,250,cs), +(416,208,o), +(385,185,o), +(347,185,cs) +); +} +); +width = 692; +} +); +unicode = 54; +}, +{ +color = 6; +glyphname = seven; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,12); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,0,ls), +(189,0,o), +(195,14,o), +(200,25,cs), +(453,625,ls), +(458,638,o), +(460,646,o), +(460,662,cs), +(460,677,ls), +(460,691,o), +(451,700,o), +(437,700,cs), +(51,700,l), +(38,700,o), +(29,691,o), +(29,677,cs), +(29,662,ls), +(29,649,o), +(38,640,o), +(51,640,cs), +(392,640,l), +(135,31,ls), +(134,28,o), +(133,24,o), +(133,22,cs), +(133,10,o), +(141,0,o), +(153,0,cs) +); +} +); +width = 487; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(327,0,ls), +(352,0,o), +(364,16,o), +(368,23,cs), +(586,490,ls), +(592,503,o), +(599,518,o), +(599,541,cs), +(599,673,ls), +(599,688,o), +(588,700,o), +(572,700,cs), +(55,700,ls), +(40,700,o), +(28,688,o), +(28,673,cs), +(28,522,ls), +(28,507,o), +(40,495,o), +(55,495,cs), +(330,495,l), +(114,31,ls), +(113,29,o), +(112,26,o), +(112,22,cs), +(112,10,o), +(122,0,o), +(134,0,cs) +); +} +); +width = 625; +} +); +unicode = 55; +}, +{ +color = 6; +glyphname = eight; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,8); +type = Tag; +}, +{ +horizontal = 1; +origin = (2,2); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(446,-10,o), +(558,63,o), +(558,197,cs), +(558,282,o), +(513,342,o), +(445,374,c), +(498,404,o), +(533,455,o), +(533,526,cs), +(533,647,o), +(433,710,o), +(309,710,cs), +(185,710,o), +(85,647,o), +(85,526,cs), +(85,455,o), +(119,404,o), +(173,374,c), +(105,342,o), +(60,282,o), +(60,197,cs), +(60,63,o), +(172,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(206,50,o), +(123,106,o), +(123,197,cs), +(123,288,o), +(206,343,o), +(309,343,cs), +(412,343,o), +(495,288,o), +(495,197,cs), +(495,106,o), +(412,50,o), +(309,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(220,403,o), +(148,448,o), +(148,526,cs), +(148,604,o), +(220,650,o), +(309,650,cs), +(398,650,o), +(470,604,o), +(470,526,cs), +(470,450,o), +(395,405,o), +(309,403,c) +); +} +); +width = 618; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(588,-10,o), +(676,103,o), +(676,216,cs), +(676,283,o), +(641,343,o), +(587,370,c), +(628,402,o), +(646,447,o), +(646,502,cs), +(646,608,o), +(572,710,o), +(355,710,cs), +(136,710,o), +(61,606,o), +(61,500,cs), +(61,445,o), +(82,400,o), +(123,370,c), +(73,341,o), +(36,284,o), +(36,218,cs), +(36,104,o), +(121,-10,o), +(355,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(315,158,o), +(285,180,o), +(285,217,cs), +(285,254,o), +(315,276,o), +(355,276,cs), +(395,276,o), +(425,254,o), +(425,217,cs), +(425,180,o), +(395,158,o), +(355,158,cs) +); +}, +{ +closed = 1; +nodes = ( +(315,433,o), +(292,457,o), +(292,487,cs), +(292,517,o), +(315,541,o), +(355,541,cs), +(395,541,o), +(419,517,o), +(419,487,cs), +(419,457,o), +(395,433,o), +(355,433,cs) +); +} +); +width = 712; +} +); +unicode = 56; +}, +{ +color = 6; +glyphname = nine; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,7); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,0,ls), +(239,0,o), +(246,13,o), +(252,20,c), +(458,311,ls), +(481,344,o), +(517,400,o), +(517,479,cs), +(517,590,o), +(439,710,o), +(279,710,cs), +(119,710,o), +(42,590,o), +(42,479,cs), +(42,368,o), +(119,249,o), +(279,249,cs), +(301,249,o), +(325,252,o), +(344,257,c), +(186,35,ls), +(184,32,o), +(181,28,o), +(181,22,cs), +(181,10,o), +(189,0,o), +(201,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(185,309,o), +(105,375,o), +(105,479,cs), +(105,584,o), +(185,650,o), +(279,650,cs), +(373,650,o), +(454,584,o), +(454,479,cs), +(454,375,o), +(373,309,o), +(279,309,cs) +); +} +); +width = 572; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,0,ls), +(381,0,o), +(393,13,o), +(398,20,cs), +(530,196,l), +(593,285,o), +(662,360,o), +(662,459,cs), +(662,608,o), +(545,710,o), +(337,710,cs), +(129,710,o), +(21,585,o), +(21,449,cs), +(21,293,o), +(166,222,o), +(263,211,cs), +(266,210,o), +(268,210,o), +(271,210,c), +(140,35,ls), +(138,32,o), +(136,28,o), +(136,22,cs), +(136,10,o), +(146,0,o), +(158,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(301,385,o), +(276,408,o), +(276,450,cs), +(276,492,o), +(302,515,o), +(340,515,cs), +(378,515,o), +(404,492,o), +(404,450,cs), +(404,408,o), +(379,385,o), +(340,385,cs) +); +} +); +width = 683; +} +); +unicode = 57; +}, +{ +color = 3; +glyphname = zero.zero; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,1); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(448,620,l), +(399,653,l), +(156,72,l), +(206,41,l) +); +}, +{ +ref = zero; +} +); +width = 616; +}, +{ +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(511,620,l), +(456,653,l), +(213,72,l), +(269,41,l) +); +}, +{ +ref = zero; +} +); +width = 718; +} +); +metricLeft = zero; +metricRight = zero; +}, +{ +color = 6; +glyphname = zero.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,11); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(481,-10,o), +(536,119,o), +(540,266,cs), +(541,320,o), +(541,377,o), +(540,434,cs), +(537,581,o), +(481,710,o), +(300,710,cs), +(119,710,o), +(63,581,o), +(60,434,cs), +(59,377,o), +(59,320,o), +(60,266,cs), +(64,119,o), +(119,-10,o), +(300,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(182,50,o), +(126,134,o), +(123,271,cs), +(122,328,o), +(122,374,o), +(123,429,cs), +(126,564,o), +(182,650,o), +(300,650,cs), +(418,650,o), +(474,564,o), +(477,429,cs), +(478,374,o), +(478,328,o), +(477,271,cs), +(474,134,o), +(418,50,o), +(300,50,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(550,-9,o), +(652,99,o), +(663,246,cs), +(667,300,o), +(667,401,o), +(663,458,cs), +(653,604,o), +(540,709,o), +(349,710,c), +(158,709,o), +(45,604,o), +(35,458,cs), +(31,401,o), +(31,300,o), +(35,246,cs), +(46,99,o), +(148,-9,o), +(349,-10,c) +); +}, +{ +closed = 1; +nodes = ( +(311,186,o), +(297,214,o), +(295,251,cs), +(292,308,o), +(292,397,o), +(295,452,cs), +(297,486,o), +(309,516,o), +(349,517,c), +(389,516,o), +(401,486,o), +(403,452,cs), +(406,397,o), +(406,308,o), +(403,251,cs), +(401,214,o), +(387,186,o), +(349,186,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = one.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(512,0,l), +(526,0,o), +(535,9,o), +(535,22,c), +(535,37,l), +(535,51,o), +(526,60,o), +(512,60,c), +(352,60,l), +(352,678,l), +(352,691,o), +(343,700,o), +(330,700,c), +(311,700,l), +(302,700,o), +(294,699,o), +(285,693,c), +(106,555,l), +(95,547,o), +(94,534,o), +(102,524,c), +(113,510,l), +(121,499,o), +(133,498,o), +(144,506,c), +(289,618,l), +(289,60,l), +(119,60,l), +(105,60,o), +(96,51,o), +(96,37,c), +(96,22,l), +(96,9,o), +(105,0,o), +(119,0,c) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(636,0,l), +(651,0,o), +(663,12,o), +(663,27,c), +(663,179,l), +(663,194,o), +(651,206,o), +(636,206,c), +(506,206,l), +(506,673,l), +(506,688,o), +(494,700,o), +(479,700,c), +(290,700,l), +(281,700,o), +(275,698,o), +(268,693,c), +(51,527,l), +(38,519,o), +(35,501,o), +(42,488,c), +(130,374,l), +(140,361,o), +(155,356,o), +(168,366,c), +(256,431,l), +(256,206,l), +(86,206,l), +(71,206,o), +(59,194,o), +(59,179,c), +(59,27,l), +(59,12,o), +(71,0,o), +(86,0,c) +); +} +); +width = 700; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 80; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = two.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,21); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(504,0,ls), +(518,0,o), +(527,9,o), +(527,22,cs), +(527,37,ls), +(527,51,o), +(518,60,o), +(504,60,cs), +(169,60,l), +(403,298,ls), +(476,366,o), +(512,425,o), +(512,507,cs), +(512,612,o), +(453,710,o), +(301,710,cs), +(149,710,o), +(85,593,o), +(82,502,cs), +(82,491,o), +(90,483,o), +(103,483,c), +(123,483,ls), +(131,483,o), +(144,490,o), +(146,506,cs), +(157,592,o), +(210,650,o), +(301,650,cs), +(396,650,o), +(449,596,o), +(449,507,cs), +(449,445,o), +(431,407,o), +(356,338,cs), +(97,79,ls), +(78,62,o), +(72,50,o), +(72,37,cs), +(72,22,ls), +(72,9,o), +(81,0,o), +(94,0,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(636,0,ls), +(651,0,o), +(663,12,o), +(663,27,cs), +(663,179,ls), +(663,194,o), +(651,206,o), +(636,206,cs), +(425,206,l), +(433,211,l), +(561,300,o), +(648,379,o), +(648,490,cs), +(648,632,o), +(531,714,o), +(349,714,cs), +(177,714,o), +(48,616,o), +(45,465,cs), +(45,453,o), +(55,443,o), +(67,443,cs), +(255,443,ls), +(273,443,o), +(288,447,o), +(295,466,cs), +(301,482,o), +(309,517,o), +(350,517,cs), +(385,517,o), +(386,496,o), +(386,477,cs), +(386,418,o), +(277,343,o), +(67,192,c), +(58,185,l), +(33,167,o), +(33,139,o), +(33,131,cs), +(33,27,ls), +(33,12,o), +(45,0,o), +(60,0,cs) +); +} +); +width = 700; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 538; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 73; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 513; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = three.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(435,-10,o), +(537,66,o), +(537,198,cs), +(537,332,o), +(445,396,o), +(308,396,cs), +(288,396,l), +(499,643,ls), +(503,648,o), +(507,654,o), +(507,662,cs), +(507,677,ls), +(507,691,o), +(498,700,o), +(484,700,cs), +(111,700,ls), +(98,700,o), +(89,691,o), +(89,677,cs), +(89,662,ls), +(89,649,o), +(98,640,o), +(111,640,cs), +(413,640,l), +(207,397,l), +(202,390,o), +(198,383,o), +(198,373,cs), +(198,358,ls), +(198,345,o), +(207,336,o), +(220,336,cs), +(308,336,ls), +(411,336,o), +(474,297,o), +(474,198,cs), +(474,99,o), +(401,50,o), +(298,50,cs), +(227,50,o), +(142,70,o), +(121,157,cs), +(116,177,o), +(105,180,o), +(94,180,cs), +(80,180,ls), +(68,180,o), +(59,173,o), +(59,161,cs), +(62,74,o), +(148,-10,o), +(298,-10,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(533,-10,o), +(671,80,o), +(671,219,cs), +(671,345,o), +(591,401,o), +(491,426,c), +(491,427,l), +(608,506,ls), +(618,513,o), +(628,527,o), +(628,546,cs), +(628,673,ls), +(628,688,o), +(616,700,o), +(601,700,cs), +(89,700,ls), +(74,700,o), +(62,688,o), +(62,673,cs), +(62,532,ls), +(62,517,o), +(74,505,o), +(89,505,cs), +(352,505,l), +(213,429,ls), +(203,423,o), +(193,409,o), +(193,389,cs), +(193,308,ls), +(193,293,o), +(205,281,o), +(220,281,cs), +(345,281,ls), +(389,281,o), +(411,267,o), +(411,237,cs), +(411,208,o), +(392,184,o), +(345,184,cs), +(303,184,o), +(287,193,o), +(276,204,cs), +(267,213,o), +(260,220,o), +(242,220,cs), +(41,220,ls), +(29,220,o), +(19,210,o), +(19,198,cs), +(22,119,o), +(103,-10,o), +(344,-10,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = four.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,26); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(428,0,ls), +(441,0,o), +(450,9,o), +(450,22,cs), +(450,180,l), +(541,180,ls), +(554,180,o), +(563,189,o), +(563,202,cs), +(563,218,ls), +(563,231,o), +(554,240,o), +(541,240,cs), +(450,240,l), +(450,678,ls), +(450,691,o), +(441,700,o), +(428,700,cs), +(387,700,ls), +(371,700,o), +(357,693,o), +(350,683,cs), +(46,248,ls), +(36,234,o), +(35,220,o), +(35,218,cs), +(35,202,l), +(35,189,o), +(44,180,o), +(57,180,cs), +(387,180,l), +(387,22,ls), +(387,9,o), +(396,0,o), +(409,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(387,629,l), +(387,240,l), +(114,240,l) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(548,0,ls), +(563,0,o), +(575,12,o), +(575,27,cs), +(575,112,l), +(663,112,ls), +(678,112,o), +(690,124,o), +(690,139,cs), +(690,288,ls), +(690,302,o), +(679,315,o), +(662,315,cs), +(575,315,l), +(575,673,ls), +(575,688,o), +(563,700,o), +(548,700,cs), +(340,700,ls), +(324,700,o), +(311,693,o), +(303,683,cs), +(20,313,ls), +(16,308,o), +(9,299,o), +(9,282,cs), +(9,139,ls), +(9,124,o), +(21,112,o), +(36,112,cs), +(335,112,l), +(335,27,ls), +(335,12,o), +(347,0,o), +(362,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(342,448,l), +(342,304,l), +(237,304,l) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = five.tf; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(427,-10,o), +(535,68,o), +(535,224,cs), +(535,370,o), +(427,448,o), +(294,448,cs), +(219,448,o), +(179,423,o), +(165,414,c), +(186,640,l), +(473,640,ls), +(486,640,o), +(495,649,o), +(495,662,cs), +(495,678,ls), +(495,691,o), +(486,700,o), +(473,700,cs), +(147,700,ls), +(134,700,o), +(126,691,o), +(125,677,cs), +(95,350,ls), +(94,338,o), +(105,328,o), +(117,328,cs), +(135,328,ls), +(177,328,o), +(194,388,o), +(294,388,cs), +(392,388,o), +(472,327,o), +(472,224,cs), +(472,111,o), +(392,50,o), +(294,50,cs), +(222,50,o), +(149,84,o), +(128,171,cs), +(123,191,o), +(114,194,o), +(103,194,cs), +(84,194,ls), +(72,194,o), +(63,187,o), +(64,175,cs), +(68,83,o), +(148,-10,o), +(294,-10,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(561,-12,o), +(669,105,o), +(669,238,cs), +(669,371,o), +(548,468,o), +(425,468,cs), +(359,468,o), +(328,459,o), +(291,434,c), +(299,505,l), +(591,505,ls), +(606,505,o), +(618,517,o), +(618,532,cs), +(618,673,ls), +(618,688,o), +(606,700,o), +(591,700,cs), +(144,700,ls), +(125,700,o), +(108,689,o), +(105,666,cs), +(65,309,ls), +(64,293,o), +(73,282,o), +(87,282,cs), +(286,282,ls), +(303,282,o), +(308,306,o), +(350,306,cs), +(389,306,o), +(411,276,o), +(411,245,cs), +(411,204,o), +(382,183,o), +(350,183,cs), +(317,183,o), +(306,195,o), +(288,218,cs), +(284,223,o), +(273,234,o), +(252,234,cs), +(50,234,ls), +(38,234,o), +(28,224,o), +(28,212,cs), +(31,92,o), +(137,-12,o), +(349,-12,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = six.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,23); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(467,-10,o), +(550,105,o), +(550,226,cs), +(550,347,o), +(467,461,o), +(307,461,cs), +(285,461,o), +(258,458,o), +(239,453,c), +(389,665,ls), +(391,668,o), +(394,672,o), +(394,678,cs), +(394,690,o), +(386,700,o), +(374,700,cs), +(355,700,ls), +(337,700,o), +(330,687,o), +(324,680,c), +(127,403,ls), +(104,370,o), +(64,304,o), +(64,226,cs), +(64,105,o), +(147,-10,o), +(307,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(213,50,o), +(127,111,o), +(127,226,cs), +(127,340,o), +(213,401,o), +(307,401,cs), +(401,401,o), +(487,340,o), +(487,226,cs), +(487,111,o), +(401,50,o), +(307,50,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(542,-10,o), +(675,103,o), +(675,254,cs), +(675,414,o), +(513,493,o), +(416,498,c), +(418,501,o), +(421,504,o), +(423,507,c), +(542,665,ls), +(544,668,o), +(546,672,o), +(546,678,cs), +(546,690,o), +(536,700,o), +(524,700,cs), +(323,700,ls), +(301,700,o), +(289,687,o), +(284,680,cs), +(121,467,ls), +(94,432,o), +(24,335,o), +(24,249,cs), +(24,84,o), +(166,-10,o), +(354,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(313,185,o), +(282,208,o), +(282,250,cs), +(282,292,o), +(312,315,o), +(351,315,cs), +(390,315,o), +(420,292,o), +(420,250,cs), +(420,208,o), +(389,185,o), +(351,185,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = seven.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,12); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,0,ls), +(245,0,o), +(251,14,o), +(256,25,cs), +(509,625,ls), +(514,638,o), +(516,646,o), +(516,662,cs), +(516,677,ls), +(516,691,o), +(507,700,o), +(493,700,cs), +(107,700,l), +(94,700,o), +(85,691,o), +(85,677,cs), +(85,662,ls), +(85,649,o), +(94,640,o), +(107,640,cs), +(448,640,l), +(191,31,ls), +(190,28,o), +(189,24,o), +(189,22,cs), +(189,10,o), +(197,0,o), +(209,0,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(364,0,ls), +(389,0,o), +(401,16,o), +(405,23,cs), +(623,490,ls), +(629,503,o), +(636,518,o), +(636,541,cs), +(636,673,ls), +(636,688,o), +(625,700,o), +(609,700,cs), +(92,700,ls), +(77,700,o), +(65,688,o), +(65,673,cs), +(65,522,ls), +(65,507,o), +(77,495,o), +(92,495,cs), +(367,495,l), +(151,31,ls), +(150,29,o), +(149,26,o), +(149,22,cs), +(149,10,o), +(159,0,o), +(171,0,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = eight.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,8); +type = Tag; +}, +{ +horizontal = 1; +origin = (2,2); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(437,-10,o), +(549,63,o), +(549,197,cs), +(549,282,o), +(504,342,o), +(436,374,c), +(489,404,o), +(524,455,o), +(524,526,cs), +(524,647,o), +(424,710,o), +(300,710,cs), +(176,710,o), +(76,647,o), +(76,526,cs), +(76,455,o), +(110,404,o), +(164,374,c), +(96,342,o), +(51,282,o), +(51,197,cs), +(51,63,o), +(163,-10,o), +(300,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,50,o), +(114,106,o), +(114,197,cs), +(114,288,o), +(197,343,o), +(300,343,cs), +(403,343,o), +(486,288,o), +(486,197,cs), +(486,106,o), +(403,50,o), +(300,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(211,403,o), +(139,448,o), +(139,526,cs), +(139,604,o), +(211,650,o), +(300,650,cs), +(389,650,o), +(461,604,o), +(461,526,cs), +(461,450,o), +(386,405,o), +(300,403,c) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(582,-10,o), +(670,103,o), +(670,216,cs), +(670,283,o), +(635,343,o), +(581,370,c), +(622,402,o), +(640,447,o), +(640,502,cs), +(640,608,o), +(566,710,o), +(349,710,cs), +(130,710,o), +(55,606,o), +(55,500,cs), +(55,445,o), +(76,400,o), +(117,370,c), +(67,341,o), +(30,284,o), +(30,218,cs), +(30,104,o), +(115,-10,o), +(349,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(309,158,o), +(279,180,o), +(279,217,cs), +(279,254,o), +(309,276,o), +(349,276,cs), +(389,276,o), +(419,254,o), +(419,217,cs), +(419,180,o), +(389,158,o), +(349,158,cs) +); +}, +{ +closed = 1; +nodes = ( +(309,433,o), +(286,457,o), +(286,487,cs), +(286,517,o), +(309,541,o), +(349,541,cs), +(389,541,o), +(413,517,o), +(413,487,cs), +(413,457,o), +(389,433,o), +(349,433,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = nine.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,7); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(235,0,ls), +(253,0,o), +(260,13,o), +(266,20,c), +(472,311,ls), +(495,344,o), +(531,400,o), +(531,479,cs), +(531,590,o), +(453,710,o), +(293,710,cs), +(133,710,o), +(56,590,o), +(56,479,cs), +(56,368,o), +(133,249,o), +(293,249,cs), +(315,249,o), +(339,252,o), +(358,257,c), +(200,35,ls), +(198,32,o), +(195,28,o), +(195,22,cs), +(195,10,o), +(203,0,o), +(215,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,309,o), +(119,375,o), +(119,479,cs), +(119,584,o), +(199,650,o), +(293,650,cs), +(387,650,o), +(468,584,o), +(468,479,cs), +(468,375,o), +(387,309,o), +(293,309,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,0,ls), +(390,0,o), +(402,13,o), +(407,20,cs), +(539,196,l), +(602,285,o), +(671,360,o), +(671,459,cs), +(671,608,o), +(554,710,o), +(346,710,cs), +(138,710,o), +(30,585,o), +(30,449,cs), +(30,289,o), +(183,218,o), +(280,210,c), +(279,208,o), +(277,207,o), +(276,205,c), +(149,35,ls), +(147,32,o), +(145,28,o), +(145,22,cs), +(145,10,o), +(155,0,o), +(167,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(310,385,o), +(285,408,o), +(285,450,cs), +(285,492,o), +(311,515,o), +(349,515,cs), +(387,515,o), +(413,492,o), +(413,450,cs), +(413,408,o), +(388,385,o), +(349,385,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 3; +glyphname = zero.tf.zero; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (653, 0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(440,620,l), +(391,653,l), +(148,72,l), +(198,41,l) +); +}, +{ +ref = zero.tf; +} +); +width = 600; +}, +{ +color = 3; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(503,620,l), +(448,653,l), +(205,72,l), +(261,41,l) +); +}, +{ +ref = zero.tf; +} +); +width = 700; +} +); +metricLeft = zero.tf; +metricRight = zero.tf; +}, +{ +color = 10; +glyphname = zero.dnom; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,170); +ref = zeroinferior; +} +); +width = 362; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,170); +ref = zeroinferior; +} +); +width = 382; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 10; +glyphname = one.dnom; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,170); +ref = oneinferior; +} +); +width = 242; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,170); +ref = oneinferior; +} +); +width = 325; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = two.dnom; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,170); +ref = twoinferior; +} +); +width = 335; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,170); +ref = twoinferior; +} +); +width = 369; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 10; +glyphname = three.dnom; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,170); +ref = threeinferior; +} +); +width = 336; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,170); +ref = threeinferior; +} +); +width = 365; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = four.dnom; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,170); +ref = fourinferior; +} +); +width = 330; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,170); +ref = fourinferior; +} +); +width = 399; +} +); +}, +{ +color = 10; +glyphname = five.dnom; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,170); +ref = fiveinferior; +} +); +width = 325; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,170); +ref = fiveinferior; +} +); +width = 365; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = six.dnom; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,170); +ref = sixinferior; +} +); +width = 336; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,170); +ref = sixinferior; +} +); +width = 362; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = seven.dnom; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,170); +ref = seveninferior; +} +); +width = 284; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,170); +ref = seveninferior; +} +); +width = 329; +} +); +}, +{ +color = 10; +glyphname = eight.dnom; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,170); +ref = eightinferior; +} +); +width = 343; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,170); +ref = eightinferior; +} +); +width = 368; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = nine.dnom; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,170); +ref = nineinferior; +} +); +width = 334; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,171); +ref = nineinferior; +} +); +width = 362; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 10; +glyphname = zero.numr; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = zeroinferior; +} +); +width = 362; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = zeroinferior; +} +); +width = 382; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 10; +glyphname = one.numr; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = oneinferior; +} +); +width = 242; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = oneinferior; +} +); +width = 325; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = two.numr; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = twoinferior; +} +); +width = 335; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = twoinferior; +} +); +width = 369; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 10; +glyphname = three.numr; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = threeinferior; +} +); +width = 336; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = threeinferior; +} +); +width = 365; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = four.numr; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = fourinferior; +} +); +width = 330; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = fourinferior; +} +); +width = 399; +} +); +}, +{ +color = 10; +glyphname = five.numr; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = fiveinferior; +} +); +width = 325; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = fiveinferior; +} +); +width = 365; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = six.numr; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = sixinferior; +} +); +width = 336; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = sixinferior; +} +); +width = 362; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = seven.numr; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = seveninferior; +} +); +width = 284; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = seveninferior; +} +); +width = 329; +} +); +}, +{ +color = 10; +glyphname = eight.numr; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = eightinferior; +} +); +width = 343; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = eightinferior; +} +); +width = 368; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = nine.numr; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = nineinferior; +} +); +width = 334; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,521); +ref = nineinferior; +} +); +width = 362; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 6; +glyphname = fraction; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(-153,0,ls), +(-135,0,o), +(-129,7,o), +(-120,19,cs), +(373,669,ls), +(376,673,o), +(377,678,o), +(377,680,cs), +(377,692,o), +(369,700,o), +(357,700,cs), +(340,700,ls), +(322,700,o), +(316,693,o), +(307,681,cs), +(-186,31,ls), +(-189,27,o), +(-190,22,o), +(-190,20,cs), +(-190,8,o), +(-182,0,o), +(-170,0,cs) +); +} +); +width = 174; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(-117,0,ls), +(-98,0,o), +(-90,7,o), +(-81,19,cs), +(413,669,ls), +(416,673,o), +(417,678,o), +(417,680,cs), +(417,692,o), +(407,700,o), +(393,700,cs), +(319,700,ls), +(300,700,o), +(292,693,o), +(283,681,cs), +(-211,31,ls), +(-214,27,o), +(-215,22,o), +(-215,20,cs), +(-215,8,o), +(-205,0,o), +(-191,0,cs) +); +} +); +width = 181; +} +); +unicode = 8260; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 372; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = onehalf; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (242,0); +ref = fraction; +}, +{ +pos = (416,0); +ref = two.dnom; +} +); +width = 751; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (325,0); +ref = fraction; +}, +{ +pos = (506,0); +ref = two.dnom; +} +); +width = 875; +} +); +metricLeft = one.numr; +metricRight = one.numr; +unicode = 189; +}, +{ +color = 10; +glyphname = onethird; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (242,0); +ref = fraction; +}, +{ +pos = (416,0); +ref = three.dnom; +} +); +width = 752; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (325,0); +ref = fraction; +}, +{ +pos = (506,0); +ref = three.dnom; +} +); +width = 871; +} +); +metricLeft = one.numr; +metricRight = one.numr; +unicode = 8531; +}, +{ +color = 10; +glyphname = twothirds; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = two.numr; +}, +{ +pos = (335,0); +ref = fraction; +}, +{ +pos = (509,0); +ref = three.dnom; +} +); +width = 845; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = two.numr; +}, +{ +pos = (369,0); +ref = fraction; +}, +{ +pos = (550,0); +ref = three.dnom; +} +); +width = 915; +} +); +metricLeft = two.numr; +metricRight = two.numr; +unicode = 8532; +}, +{ +color = 10; +glyphname = onequarter; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (242,0); +ref = fraction; +}, +{ +pos = (416,0); +ref = four.dnom; +} +); +width = 746; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (325,0); +ref = fraction; +}, +{ +pos = (506,0); +ref = four.dnom; +} +); +width = 905; +} +); +metricLeft = one.numr; +metricRight = one.numr; +unicode = 188; +}, +{ +color = 10; +glyphname = threequarters; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (336,0); +ref = fraction; +}, +{ +pos = (510,0); +ref = four.dnom; +} +); +width = 840; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (365,0); +ref = fraction; +}, +{ +pos = (546,0); +ref = four.dnom; +} +); +width = 945; +} +); +metricLeft = three.numr; +metricRight = three.numr; +unicode = 190; +}, +{ +color = 10; +glyphname = oneeighth; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (242,0); +ref = fraction; +}, +{ +pos = (416,0); +ref = eight.dnom; +} +); +width = 759; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = one.numr; +}, +{ +pos = (325,0); +ref = fraction; +}, +{ +pos = (506,0); +ref = eight.dnom; +} +); +width = 874; +} +); +metricLeft = one.numr; +metricRight = one.numr; +unicode = 8539; +}, +{ +color = 10; +glyphname = threeeighths; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (336,0); +ref = fraction; +}, +{ +pos = (510,0); +ref = eight.dnom; +} +); +width = 853; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = three.numr; +}, +{ +pos = (365,0); +ref = fraction; +}, +{ +pos = (546,0); +ref = eight.dnom; +} +); +width = 914; +} +); +metricLeft = three.numr; +metricRight = three.numr; +unicode = 8540; +}, +{ +color = 10; +glyphname = fiveeighths; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (325,0); +ref = fraction; +}, +{ +pos = (499,0); +ref = eight.dnom; +} +); +width = 842; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = five.numr; +}, +{ +pos = (365,0); +ref = fraction; +}, +{ +pos = (546,0); +ref = eight.dnom; +} +); +width = 914; +} +); +metricLeft = five.numr; +metricRight = five.numr; +unicode = 8541; +}, +{ +color = 10; +glyphname = seveneighths; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (284,0); +ref = fraction; +}, +{ +pos = (458,0); +ref = eight.dnom; +} +); +width = 801; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = seven.numr; +}, +{ +pos = (329,0); +ref = fraction; +}, +{ +pos = (510,0); +ref = eight.dnom; +} +); +width = 878; +} +); +metricLeft = seven.numr; +metricRight = seven.numr; +unicode = 8542; +}, +{ +color = 6; +glyphname = zeroinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,5); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(268,-175,o), +(317,-120,o), +(321,-40,cs), +(323,-6,o), +(323,12,o), +(321,49,cs), +(317,129,o), +(273,185,o), +(181,185,cs), +(89,185,o), +(45,129,o), +(41,49,cs), +(39,12,o), +(39,-6,o), +(41,-40,cs), +(45,-120,o), +(94,-175,o), +(181,-175,cs) +); +}, +{ +closed = 1; +nodes = ( +(121,-119,o), +(102,-75,o), +(99,-37,cs), +(97,0,o), +(97,11,o), +(99,46,cs), +(101,86,o), +(122,129,o), +(181,129,cs), +(240,129,o), +(261,86,o), +(263,46,cs), +(265,11,o), +(265,0,o), +(263,-37,cs), +(260,-75,o), +(241,-119,o), +(181,-119,cs) +); +} +); +width = 362; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,-175,o), +(347,-124,o), +(353,-44,cs), +(356,-10,o), +(355,16,o), +(353,53,cs), +(348,134,o), +(289,185,o), +(191,185,cs), +(93,185,o), +(34,134,o), +(29,53,cs), +(27,16,o), +(26,-10,o), +(29,-44,cs), +(35,-124,o), +(98,-175,o), +(191,-175,cs) +); +}, +{ +closed = 1; +nodes = ( +(174,-67,o), +(167,-54,o), +(166,-37,cs), +(164,-10,o), +(164,21,o), +(166,46,cs), +(167,63,o), +(174,76,o), +(191,76,cs), +(208,76,o), +(215,63,o), +(216,46,cs), +(218,21,o), +(218,-10,o), +(216,-37,cs), +(215,-54,o), +(208,-67,o), +(191,-67,cs) +); +} +); +width = 382; +} +); +unicode = 8320; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 172; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-342"; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = oneinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(160,-170,ls), +(173,-170,o), +(182,-161,o), +(182,-148,cs), +(182,158,ls), +(182,171,o), +(173,180,o), +(160,180,cs), +(146,180,ls), +(136,180,o), +(130,178,o), +(123,173,cs), +(27,102,ls), +(17,94,o), +(15,81,o), +(23,71,cs), +(30,61,ls), +(38,50,o), +(51,49,o), +(61,56,cs), +(124,103,l), +(124,-148,ls), +(124,-161,o), +(133,-170,o), +(146,-170,cs) +); +} +); +width = 242; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(238,-170,ls), +(251,-170,o), +(260,-161,o), +(260,-148,cs), +(260,158,ls), +(260,171,o), +(251,180,o), +(238,180,cs), +(150,180,ls), +(140,180,o), +(134,178,o), +(127,173,cs), +(15,86,ls), +(5,78,o), +(3,65,o), +(11,55,cs), +(50,5,ls), +(58,-6,o), +(72,-7,o), +(81,0,cs), +(125,34,l), +(125,-148,ls), +(125,-161,o), +(134,-170,o), +(147,-170,cs) +); +} +); +width = 325; +} +); +unicode = 8321; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 174; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 9; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = twoinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,30); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(282,-170,ls), +(295,-170,o), +(304,-161,o), +(304,-148,cs), +(304,-136,ls), +(304,-123,o), +(295,-114,o), +(282,-114,cs), +(130,-114,l), +(243,-36,o), +(289,0,o), +(289,74,cs), +(289,132,o), +(242,185,o), +(166,185,cs), +(99,185,o), +(44,135,o), +(41,88,cs), +(40,76,o), +(47,69,o), +(59,69,cs), +(74,69,ls), +(84,69,o), +(90,72,o), +(98,87,cs), +(104,98,o), +(112,130,o), +(166,130,cs), +(200,130,o), +(231,109,o), +(231,74,cs), +(231,19,o), +(183,-6,o), +(55,-98,cs), +(36,-112,o), +(31,-121,o), +(31,-131,cs), +(31,-148,ls), +(31,-161,o), +(40,-170,o), +(53,-170,cs) +); +} +); +width = 335; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,-170,ls), +(335,-170,o), +(344,-161,o), +(344,-148,cs), +(344,-89,ls), +(344,-76,o), +(335,-67,o), +(322,-67,cs), +(219,-67,l), +(285,-22,o), +(330,16,o), +(330,73,cs), +(330,144,o), +(272,185,o), +(181,185,cs), +(98,185,o), +(33,139,o), +(29,68,c), +(29,56,o), +(35,49,o), +(47,49,c), +(132,49,ls), +(142,49,o), +(148,53,o), +(156,68,cs), +(160,76,o), +(165,86,o), +(181,86,cs), +(199,86,o), +(199,76,o), +(199,66,cs), +(199,36,o), +(152,8,o), +(48,-70,cs), +(28,-85,o), +(23,-94,o), +(23,-104,cs), +(23,-148,ls), +(23,-161,o), +(32,-170,o), +(45,-170,cs) +); +} +); +width = 369; +} +); +unicode = 8322; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 308; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 35; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 165; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = threeinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,10); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,-175,o), +(299,-135,o), +(299,-69,cs), +(299,-13,o), +(270,33,o), +(194,37,c), +(270,107,ls), +(284,121,o), +(286,131,o), +(286,146,cs), +(286,158,ls), +(286,171,o), +(277,180,o), +(264,180,cs), +(66,180,ls), +(53,180,o), +(44,171,o), +(44,158,cs), +(44,146,ls), +(44,133,o), +(53,124,o), +(66,124,cs), +(208,124,l), +(119,43,ls), +(112,36,o), +(107,29,o), +(107,20,cs), +(107,3,ls), +(107,-10,o), +(116,-19,o), +(129,-19,cs), +(169,-19,ls), +(212,-19,o), +(241,-31,o), +(241,-69,cs), +(241,-101,o), +(207,-119,o), +(163,-119,cs), +(107,-119,o), +(99,-105,o), +(88,-90,cs), +(83,-83,o), +(75,-76,o), +(66,-76,cs), +(46,-76,ls), +(40,-76,o), +(28,-82,o), +(29,-95,cs), +(32,-137,o), +(75,-175,o), +(163,-175,cs) +); +} +); +width = 336; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(272,-175,o), +(341,-127,o), +(341,-58,cs), +(341,5,o), +(301,30,o), +(251,43,c), +(306,81,ls), +(317,88,o), +(319,93,o), +(319,103,cs), +(319,158,ls), +(319,171,o), +(310,180,o), +(297,180,cs), +(58,180,ls), +(45,180,o), +(36,171,o), +(36,158,c), +(36,94,ls), +(36,81,o), +(45,72,o), +(58,72,cs), +(152,72,l), +(112,33,ls), +(105,26,o), +(102,22,o), +(102,12,cs), +(102,-17,ls), +(102,-28,o), +(110,-37,o), +(122,-37,cs), +(171,-37,ls), +(191,-37,o), +(202,-40,o), +(202,-54,cs), +(202,-66,o), +(193,-75,o), +(171,-75,cs), +(140,-75,o), +(145,-59,o), +(126,-59,cs), +(113,-59,o), +(99,-59,o), +(86,-59,c), +(35,-59,ls), +(29,-59,o), +(17,-65,o), +(18,-78,cs), +(21,-111,o), +(55,-175,o), +(177,-175,cs) +); +} +); +width = 365; +} +); +unicode = 8323; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-73"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 21; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 311; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = fourinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,22); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(227,-170,ls), +(240,-170,o), +(249,-161,o), +(249,-148,cs), +(249,-95,l), +(284,-95,ls), +(297,-95,o), +(306,-86,o), +(306,-73,cs), +(306,-61,ls), +(306,-48,o), +(297,-39,o), +(284,-39,cs), +(249,-39,l), +(249,158,ls), +(249,171,o), +(240,180,o), +(227,180,cs), +(201,180,ls), +(192,180,o), +(181,176,o), +(171,162,cs), +(34,-30,ls), +(22,-46,o), +(22,-57,o), +(22,-60,cs), +(22,-73,ls), +(22,-86,o), +(31,-95,o), +(44,-95,cs), +(191,-95,l), +(191,-148,ls), +(191,-161,o), +(200,-170,o), +(213,-170,cs) +); +}, +{ +closed = 1; +nodes = ( +(191,96,l), +(191,-39,l), +(97,-39,l) +); +} +); +width = 330; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,-170,ls), +(313,-170,o), +(322,-161,o), +(322,-148,cs), +(322,-124,l), +(357,-124,ls), +(370,-124,o), +(379,-115,o), +(379,-102,cs), +(379,-35,ls), +(379,-22,o), +(370,-13,o), +(357,-13,cs), +(322,-13,l), +(322,158,ls), +(322,171,o), +(313,180,o), +(300,180,cs), +(189,180,ls), +(180,180,o), +(169,176,o), +(159,162,cs), +(31,-4,ls), +(19,-20,o), +(19,-31,o), +(19,-34,cs), +(19,-102,ls), +(19,-115,o), +(28,-124,o), +(41,-124,cs), +(192,-124,l), +(192,-148,ls), +(192,-161,o), +(201,-170,o), +(214,-170,cs) +); +}, +{ +closed = 1; +nodes = ( +(195,54,l), +(195,-18,l), +(143,-18,l) +); +} +); +width = 399; +} +); +unicode = 8324; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 304; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 21; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = fiveinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,29); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(246,-175,o), +(292,-113,o), +(292,-56,cs), +(292,15,o), +(248,60,o), +(168,60,cs), +(132,60,o), +(116,51,o), +(109,48,c), +(117,124,l), +(255,124,ls), +(268,124,o), +(277,133,o), +(277,146,cs), +(277,158,ls), +(277,171,o), +(268,180,o), +(255,180,cs), +(87,180,l), +(73,179,o), +(64,167,o), +(62,153,cs), +(47,7,ls), +(45,-7,o), +(55,-19,o), +(69,-19,cs), +(96,-19,ls), +(116,-19,o), +(113,4,o), +(168,4,cs), +(208,4,o), +(234,-19,o), +(234,-56,cs), +(234,-90,o), +(207,-119,o), +(163,-119,cs), +(112,-119,o), +(102,-105,o), +(89,-87,cs), +(85,-81,o), +(78,-76,o), +(69,-76,cs), +(49,-76,ls), +(43,-76,o), +(31,-82,o), +(32,-95,cs), +(35,-137,o), +(85,-175,o), +(163,-175,cs) +); +} +); +width = 325; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,-175,o), +(341,-118,o), +(341,-51,cs), +(341,15,o), +(281,56,o), +(219,56,cs), +(186,56,o), +(170,51,o), +(151,39,c), +(155,72,l), +(294,72,ls), +(307,72,o), +(316,81,o), +(316,94,cs), +(316,158,ls), +(316,171,o), +(307,180,o), +(294,180,cs), +(82,180,l), +(68,179,o), +(58,167,o), +(57,153,cs), +(40,-1,ls), +(39,-15,o), +(48,-27,o), +(62,-27,cs), +(153,-27,ls), +(160,-27,o), +(163,-16,o), +(181,-16,cs), +(199,-16,o), +(208,-32,o), +(208,-46,cs), +(208,-64,o), +(196,-73,o), +(181,-73,cs), +(151,-73,o), +(155,-52,o), +(137,-52,c), +(129,-52,o), +(120,-52,o), +(112,-52,c), +(38,-52,ls), +(32,-52,o), +(20,-58,o), +(21,-71,cs), +(24,-102,o), +(52,-175,o), +(181,-175,cs) +); +} +); +width = 365; +} +); +unicode = 8325; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 306; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 26; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 164; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = sixinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,20); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(245,-175,o), +(309,-131,o), +(309,-52,cs), +(309,30,o), +(242,74,o), +(167,71,c), +(226,140,ls), +(232,147,o), +(238,154,o), +(238,160,cs), +(238,171,o), +(229,180,o), +(218,180,cs), +(200,180,ls), +(189,180,o), +(178,173,o), +(171,165,cs), +(83,59,ls), +(61,32,o), +(35,4,o), +(35,-52,cs), +(35,-131,o), +(99,-175,o), +(172,-175,cs) +); +}, +{ +closed = 1; +nodes = ( +(122,-119,o), +(93,-90,o), +(93,-52,cs), +(93,-14,o), +(122,15,o), +(172,15,cs), +(222,15,o), +(251,-14,o), +(251,-52,cs), +(251,-90,o), +(222,-119,o), +(172,-119,cs) +); +} +); +width = 336; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(281,-175,o), +(347,-122,o), +(347,-46,cs), +(347,34,o), +(273,66,o), +(227,73,c), +(278,140,ls), +(284,148,o), +(287,154,o), +(287,160,cs), +(287,171,o), +(278,180,o), +(267,180,cs), +(182,180,ls), +(171,180,o), +(160,173,o), +(153,165,cs), +(70,58,ls), +(57,41,o), +(22,-6,o), +(22,-49,cs), +(22,-131,o), +(93,-175,o), +(187,-175,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,-78,o), +(156,-67,o), +(156,-48,cs), +(156,-29,o), +(170,-19,o), +(187,-19,cs), +(205,-19,o), +(219,-29,o), +(219,-48,cs), +(219,-67,o), +(204,-78,o), +(187,-78,cs) +); +} +); +width = 362; +} +); +unicode = 8326; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-55"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 25; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 309; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = seveninferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,8); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(118,-170,ls), +(132,-170,o), +(139,-158,o), +(144,-146,cs), +(253,115,ls), +(257,126,o), +(261,136,o), +(261,146,cs), +(261,158,ls), +(261,171,o), +(252,180,o), +(239,180,cs), +(43,180,ls), +(30,180,o), +(21,171,o), +(21,158,cs), +(21,146,ls), +(21,133,o), +(30,124,o), +(43,124,cs), +(194,124,l), +(86,-134,ls), +(84,-138,o), +(82,-146,o), +(82,-149,cs), +(82,-161,o), +(89,-170,o), +(102,-170,cs) +); +} +); +width = 284; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(178,-170,ls), +(192,-170,o), +(198,-158,o), +(204,-146,cs), +(307,75,ls), +(310,81,o), +(313,89,o), +(313,100,cs), +(313,158,ls), +(313,171,o), +(304,180,o), +(291,180,cs), +(40,180,ls), +(27,180,o), +(18,171,o), +(18,158,cs), +(18,89,ls), +(18,76,o), +(26,67,o), +(39,67,cs), +(164,67,l), +(70,-134,ls), +(68,-138,o), +(66,-146,o), +(66,-149,cs), +(66,-161,o), +(73,-170,o), +(86,-170,cs) +); +} +); +width = 329; +} +); +unicode = 8327; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 20; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 260; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = eightinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,2); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(250,-175,o), +(305,-129,o), +(305,-67,cs), +(305,-32,o), +(292,-6,o), +(261,13,c), +(282,25,o), +(297,51,o), +(297,84,cs), +(297,137,o), +(252,185,o), +(171,185,cs), +(89,185,o), +(47,137,o), +(47,84,cs), +(47,51,o), +(64,24,o), +(85,13,c), +(53,-8,o), +(37,-33,o), +(37,-67,cs), +(37,-130,o), +(91,-175,o), +(171,-175,cs) +); +}, +{ +closed = 1; +nodes = ( +(136,-119,o), +(95,-102,o), +(95,-67,cs), +(95,-32,o), +(133,-16,o), +(171,-16,cs), +(208,-16,o), +(247,-31,o), +(247,-67,cs), +(247,-103,o), +(205,-119,o), +(171,-119,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,38,o), +(105,52,o), +(105,84,cs), +(105,114,o), +(135,129,o), +(171,129,cs), +(207,129,o), +(239,115,o), +(239,84,cs), +(239,53,o), +(208,38,o), +(171,38,cs) +); +} +); +width = 343; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(300,-175,o), +(344,-122,o), +(344,-65,cs), +(344,-32,o), +(326,0,o), +(299,14,c), +(320,30,o), +(329,52,o), +(329,80,cs), +(329,133,o), +(292,185,o), +(183,185,cs), +(74,185,o), +(36,132,o), +(36,79,cs), +(36,51,o), +(47,29,o), +(67,14,c), +(42,-1,o), +(24,-29,o), +(24,-62,cs), +(24,-119,o), +(66,-175,o), +(183,-175,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,-89,o), +(151,-79,o), +(151,-63,cs), +(151,-46,o), +(165,-36,o), +(183,-36,cs), +(201,-36,o), +(214,-46,o), +(214,-63,cs), +(214,-79,o), +(201,-89,o), +(183,-89,cs) +); +}, +{ +closed = 1; +nodes = ( +(165,48,o), +(155,58,o), +(155,72,cs), +(155,85,o), +(165,96,o), +(183,96,cs), +(201,96,o), +(212,85,o), +(212,72,cs), +(212,58,o), +(201,48,o), +(183,48,cs) +); +} +); +width = 368; +} +); +unicode = 8328; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 88; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 30; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 308; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = nineinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,7); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(136,-170,ls), +(147,-170,o), +(158,-163,o), +(165,-155,cs), +(249,-52,l), +(264,-35,o), +(301,4,o), +(301,62,cs), +(301,136,o), +(237,185,o), +(164,185,cs), +(91,185,o), +(27,136,o), +(27,62,cs), +(27,-15,o), +(96,-64,o), +(171,-61,c), +(110,-130,ls), +(104,-137,o), +(98,-144,o), +(98,-150,cs), +(98,-161,o), +(107,-170,o), +(118,-170,cs) +); +}, +{ +closed = 1; +nodes = ( +(114,-5,o), +(85,24,o), +(85,62,cs), +(85,100,o), +(114,129,o), +(164,129,cs), +(214,129,o), +(243,100,o), +(243,62,cs), +(243,24,o), +(214,-5,o), +(164,-5,cs) +); +} +); +width = 334; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(180,-171,ls), +(191,-171,o), +(202,-164,o), +(209,-156,cs), +(292,-49,ls), +(305,-32,o), +(340,15,o), +(340,58,cs), +(340,140,o), +(269,184,o), +(175,184,cs), +(81,184,o), +(15,131,o), +(15,55,cs), +(15,-25,o), +(89,-57,o), +(135,-64,c), +(84,-131,ls), +(78,-139,o), +(75,-145,o), +(75,-151,cs), +(75,-162,o), +(84,-171,o), +(95,-171,cs) +); +}, +{ +closed = 1; +nodes = ( +(157,27,o), +(143,37,o), +(143,56,cs), +(143,75,o), +(158,86,o), +(175,86,cs), +(192,86,o), +(206,75,o), +(206,56,cs), +(206,37,o), +(192,27,o), +(175,27,cs) +); +} +); +width = 362; +} +); +unicode = 8329; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 180; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-170"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 167; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = zerosuperior; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = zeroinferior; +} +); +width = 362; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = zeroinferior; +} +); +width = 382; +} +); +unicode = 8304; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 345; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 10; +glyphname = onesuperior; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = oneinferior; +} +); +width = 242; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = oneinferior; +} +); +width = 325; +} +); +unicode = 185; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = twosuperior; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = twoinferior; +} +); +width = 335; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = twoinferior; +} +); +width = 369; +} +); +unicode = 178; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 10; +glyphname = threesuperior; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = threeinferior; +} +); +width = 336; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = threeinferior; +} +); +width = 365; +} +); +unicode = 179; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = foursuperior; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = fourinferior; +} +); +width = 330; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = fourinferior; +} +); +width = 399; +} +); +unicode = 8308; +}, +{ +color = 10; +glyphname = fivesuperior; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = fiveinferior; +} +); +width = 325; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = fiveinferior; +} +); +width = 365; +} +); +unicode = 8309; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = sixsuperior; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = sixinferior; +} +); +width = 336; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = sixinferior; +} +); +width = 362; +} +); +unicode = 8310; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = sevensuperior; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = seveninferior; +} +); +width = 284; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = seveninferior; +} +); +width = 329; +} +); +unicode = 8311; +}, +{ +color = 10; +glyphname = eightsuperior; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = eightinferior; +} +); +width = 343; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,520); +ref = eightinferior; +} +); +width = 368; +} +); +unicode = 8312; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +} +); +}; +}, +{ +color = 10; +glyphname = ninesuperior; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (0,520); +ref = nineinferior; +} +); +width = 334; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (0,521); +ref = nineinferior; +} +); +width = 362; +} +); +unicode = 8313; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 6; +glyphname = CR; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +width = 258; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +width = 186; +} +); +unicode = 13; +}, +{ +color = 6; +glyphname = .notdef; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (1,1); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(593,-117,ls), +(606,-117,o), +(615,-108,o), +(615,-95,cs), +(615,796,ls), +(615,809,o), +(606,818,o), +(593,818,cs), +(102,818,ls), +(89,818,o), +(80,809,o), +(80,796,cs), +(80,-95,ls), +(80,-108,o), +(89,-117,o), +(102,-117,cs) +); +}, +{ +closed = 1; +nodes = ( +(554,703,l), +(554,-59,l), +(181,-59,l) +); +}, +{ +closed = 1; +nodes = ( +(141,760,l), +(518,760,l), +(141,-9,l) +); +} +); +width = 695; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(593,-117,ls), +(606,-117,o), +(615,-108,o), +(615,-95,cs), +(615,796,ls), +(615,809,o), +(606,818,o), +(593,818,cs), +(102,818,ls), +(89,818,o), +(80,809,o), +(80,796,cs), +(80,-95,ls), +(80,-108,o), +(89,-117,o), +(102,-117,cs) +); +}, +{ +closed = 1; +nodes = ( +(554,703,l), +(554,-59,l), +(181,-59,l) +); +}, +{ +closed = 1; +nodes = ( +(141,760,l), +(518,760,l), +(141,-9,l) +); +} +); +width = 695; +} +); +}, +{ +color = 6; +glyphname = .null; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +width = 0; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +width = 0; +} +); +}, +{ +color = 6; +glyphname = space; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +width = 258; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +width = 186; +} +); +unicode = 32; +}, +{ +color = 6; +glyphname = nbspace; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +width = 258; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +width = 186; +} +); +metricWidth = space; +unicode = 160; +}, +{ +color = 6; +glyphname = "geresh-hb"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(95,433,ls), +(110,433,o), +(115,441,o), +(121,454,c), +(164,567,ls), +(167,574,o), +(168,580,o), +(168,585,cs), +(168,593,o), +(162,601,o), +(153,601,cs), +(108,601,ls), +(92,601,o), +(85,590,o), +(83,574,cs), +(64,454,ls), +(62,442,o), +(67,433,o), +(78,433,cs) +); +} +); +width = 213; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,298,ls), +(177,298,o), +(189,317,o), +(194,330,cs), +(289,572,ls), +(290,575,o), +(290,577,o), +(290,579,cs), +(290,591,o), +(280,601,o), +(268,601,cs), +(108,601,ls), +(81,601,o), +(68,580,o), +(65,562,c), +(28,320,l), +(28,308,o), +(38,298,o), +(50,298,cs) +); +} +); +width = 295; +} +); +unicode = 1523; +}, +{ +color = 6; +glyphname = "gershayim-hb"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,433,ls), +(244,433,o), +(249,441,o), +(255,454,c), +(298,567,ls), +(301,574,o), +(302,580,o), +(302,585,cs), +(302,593,o), +(296,601,o), +(287,601,cs), +(242,601,ls), +(226,601,o), +(219,590,o), +(217,574,cs), +(198,454,ls), +(196,442,o), +(201,433,o), +(212,433,cs) +); +}, +{ +closed = 1; +nodes = ( +(95,433,ls), +(110,433,o), +(115,441,o), +(121,454,c), +(164,567,ls), +(167,574,o), +(168,580,o), +(168,585,cs), +(168,593,o), +(162,601,o), +(153,601,cs), +(108,601,ls), +(92,601,o), +(85,590,o), +(83,574,cs), +(64,454,ls), +(62,442,o), +(67,433,o), +(78,433,cs) +); +} +); +width = 347; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,298,ls), +(449,298,o), +(461,317,o), +(466,330,cs), +(561,572,ls), +(562,575,o), +(562,577,o), +(562,579,cs), +(562,591,o), +(552,601,o), +(540,601,cs), +(380,601,ls), +(353,601,o), +(340,580,o), +(337,562,c), +(300,320,l), +(300,308,o), +(310,298,o), +(322,298,cs) +); +}, +{ +closed = 1; +nodes = ( +(151,298,ls), +(177,298,o), +(189,317,o), +(194,330,cs), +(289,572,ls), +(290,575,o), +(290,577,o), +(290,579,cs), +(290,591,o), +(280,601,o), +(268,601,cs), +(108,601,ls), +(81,601,o), +(68,580,o), +(65,562,c), +(28,320,l), +(28,308,o), +(38,298,o), +(50,298,cs) +); +} +); +width = 567; +} +); +unicode = 1524; +}, +{ +color = 6; +glyphname = "maqaf-hb"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,513,ls), +(300,513,o), +(309,522,o), +(309,535,cs), +(309,549,ls), +(309,562,o), +(300,571,o), +(287,571,cs), +(82,571,ls), +(69,571,o), +(60,562,o), +(60,549,cs), +(60,535,ls), +(60,522,o), +(69,513,o), +(82,513,cs) +); +} +); +width = 369; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(337,395,ls), +(350,395,o), +(359,404,o), +(359,417,cs), +(359,549,ls), +(359,562,o), +(350,571,o), +(337,571,cs), +(82,571,ls), +(69,571,o), +(60,562,o), +(60,549,cs), +(60,417,ls), +(60,404,o), +(69,395,o), +(82,395,cs) +); +} +); +width = 419; +} +); +unicode = 1470; +}, +{ +color = 6; +glyphname = period; +kernLeft = period; +kernRight = period; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,0,ls), +(156,0,o), +(166,9,o), +(166,22,cs), +(166,70,ls), +(166,83,o), +(156,93,o), +(143,93,cs), +(95,93,ls), +(82,93,o), +(73,83,o), +(73,70,cs), +(73,22,ls), +(73,9,o), +(82,0,o), +(95,0,cs) +); +} +); +width = 238; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,0,ls), +(258,0,o), +(270,12,o), +(270,27,cs), +(270,201,ls), +(270,216,o), +(258,228,o), +(243,228,cs), +(69,228,ls), +(54,228,o), +(42,216,o), +(42,201,cs), +(42,27,ls), +(42,12,o), +(54,0,o), +(69,0,cs) +); +} +); +width = 312; +} +); +unicode = 46; +}, +{ +color = 6; +glyphname = comma; +kernLeft = period; +kernRight = period; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(90,-75,ls), +(105,-75,o), +(110,-67,o), +(116,-54,c), +(159,59,ls), +(162,66,o), +(163,72,o), +(163,77,cs), +(163,85,o), +(157,93,o), +(148,93,cs), +(103,93,ls), +(87,93,o), +(80,82,o), +(78,66,c), +(59,-54,l), +(57,-66,o), +(62,-75,o), +(73,-75,cs) +); +} +); +width = 237; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(141,-75,ls), +(167,-75,o), +(179,-56,o), +(184,-43,cs), +(279,199,ls), +(280,202,o), +(280,204,o), +(280,206,cs), +(280,218,o), +(270,228,o), +(258,228,cs), +(98,228,ls), +(71,228,o), +(58,207,o), +(55,189,c), +(18,-53,ls), +(16,-65,o), +(28,-75,o), +(40,-75,cs) +); +} +); +width = 303; +} +); +unicode = 44; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-75"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 93; +} +); +}; +}, +{ +color = 6; +glyphname = colon; +kernLeft = colon; +kernRight = colon; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (1,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(144,350,ls), +(157,350,o), +(167,359,o), +(167,372,cs), +(167,420,ls), +(167,433,o), +(157,443,o), +(144,443,cs), +(96,443,ls), +(83,443,o), +(74,433,o), +(74,420,cs), +(74,372,ls), +(74,359,o), +(83,350,o), +(96,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(144,0,ls), +(157,0,o), +(167,9,o), +(167,22,cs), +(167,70,ls), +(167,83,o), +(157,93,o), +(144,93,cs), +(96,93,ls), +(83,93,o), +(74,83,o), +(74,70,cs), +(74,22,ls), +(74,9,o), +(83,0,o), +(96,0,cs) +); +} +); +width = 241; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(248,350,ls), +(263,350,o), +(275,362,o), +(275,377,cs), +(275,541,ls), +(275,556,o), +(263,568,o), +(248,568,cs), +(74,568,ls), +(59,568,o), +(47,556,o), +(47,541,cs), +(47,377,ls), +(47,362,o), +(59,350,o), +(74,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(248,0,ls), +(263,0,o), +(275,12,o), +(275,27,cs), +(275,191,ls), +(275,206,o), +(263,218,o), +(248,218,cs), +(74,218,ls), +(59,218,o), +(47,206,o), +(47,191,cs), +(47,27,ls), +(47,12,o), +(59,0,o), +(74,0,cs) +); +} +); +width = 322; +} +); +unicode = 58; +}, +{ +color = 6; +glyphname = semicolon; +kernLeft = colon; +kernRight = colon; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (1,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(105,-75,ls), +(120,-75,o), +(125,-67,o), +(131,-54,c), +(174,59,ls), +(177,66,o), +(178,72,o), +(178,77,cs), +(178,85,o), +(172,93,o), +(163,93,cs), +(118,93,ls), +(102,93,o), +(95,82,o), +(93,66,cs), +(74,-54,ls), +(72,-66,o), +(77,-75,o), +(88,-75,cs) +); +}, +{ +closed = 1; +nodes = ( +(156,350,ls), +(169,350,o), +(179,359,o), +(179,372,cs), +(179,420,ls), +(179,433,o), +(169,443,o), +(156,443,cs), +(108,443,ls), +(95,443,o), +(86,433,o), +(86,420,cs), +(86,372,ls), +(86,359,o), +(95,350,o), +(108,350,cs) +); +} +); +width = 259; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(142,-75,ls), +(168,-75,o), +(180,-56,o), +(185,-43,cs), +(280,199,ls), +(281,202,o), +(281,204,o), +(281,206,cs), +(281,218,o), +(271,228,o), +(259,228,cs), +(99,228,ls), +(72,228,o), +(59,207,o), +(56,189,c), +(19,-53,l), +(19,-65,o), +(29,-75,o), +(41,-75,cs) +); +}, +{ +closed = 1; +nodes = ( +(262,350,ls), +(277,350,o), +(289,362,o), +(289,377,cs), +(289,541,ls), +(289,556,o), +(277,568,o), +(262,568,cs), +(88,568,ls), +(73,568,o), +(61,556,o), +(61,541,cs), +(61,377,ls), +(61,362,o), +(73,350,o), +(88,350,cs) +); +} +); +width = 325; +} +); +unicode = 59; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 171; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = ellipsis; +kernLeft = period; +kernRight = period; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +}, +{ +horizontal = 1; +origin = (1,4); +type = Tag; +}, +{ +horizontal = 1; +origin = (2,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,0,ls), +(156,0,o), +(166,9,o), +(166,22,cs), +(166,70,ls), +(166,83,o), +(156,93,o), +(143,93,cs), +(95,93,ls), +(82,93,o), +(73,83,o), +(73,70,cs), +(73,22,ls), +(73,9,o), +(82,0,o), +(95,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,0,ls), +(319,0,o), +(329,9,o), +(329,22,cs), +(329,70,ls), +(329,83,o), +(319,93,o), +(306,93,cs), +(258,93,ls), +(245,93,o), +(236,83,o), +(236,70,cs), +(236,22,ls), +(236,9,o), +(245,0,o), +(258,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(469,0,ls), +(482,0,o), +(492,9,o), +(492,22,cs), +(492,70,ls), +(492,83,o), +(482,93,o), +(469,93,cs), +(421,93,ls), +(408,93,o), +(399,83,o), +(399,70,cs), +(399,22,ls), +(399,9,o), +(408,0,o), +(421,0,cs) +); +} +); +width = 564; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(222,0,ls), +(237,0,o), +(249,12,o), +(249,27,cs), +(249,181,ls), +(249,196,o), +(237,208,o), +(222,208,cs), +(68,208,l), +(53,208,o), +(41,196,o), +(41,181,cs), +(41,27,ls), +(41,12,o), +(53,0,o), +(68,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(500,0,ls), +(515,0,o), +(527,12,o), +(527,27,cs), +(527,181,ls), +(527,196,o), +(515,208,o), +(500,208,cs), +(346,208,l), +(331,208,o), +(319,196,o), +(319,181,cs), +(319,27,ls), +(319,12,o), +(331,0,o), +(346,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(778,0,ls), +(793,0,o), +(805,12,o), +(805,27,cs), +(805,181,ls), +(805,196,o), +(793,208,o), +(778,208,cs), +(624,208,l), +(609,208,o), +(597,196,o), +(597,181,cs), +(597,27,ls), +(597,12,o), +(609,0,o), +(624,0,cs) +); +} +); +width = 846; +} +); +unicode = 8230; +}, +{ +color = 6; +glyphname = exclam; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,8); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,143,ls), +(134,143,o), +(143,152,o), +(143,165,cs), +(143,678,ls), +(143,691,o), +(134,700,o), +(121,700,cs), +(104,700,ls), +(91,700,o), +(82,691,o), +(82,678,cs), +(82,165,ls), +(82,152,o), +(91,143,o), +(104,143,cs) +); +}, +{ +closed = 1; +nodes = ( +(131,0,ls), +(144,0,o), +(154,9,o), +(154,22,cs), +(154,60,ls), +(154,73,o), +(144,83,o), +(131,83,cs), +(93,83,ls), +(80,83,o), +(71,73,o), +(71,60,cs), +(71,22,ls), +(71,9,o), +(80,0,o), +(93,0,cs) +); +} +); +width = 225; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(252,268,ls), +(267,268,o), +(279,280,o), +(279,295,cs), +(279,673,ls), +(279,688,o), +(267,700,o), +(252,700,cs), +(78,700,ls), +(63,700,o), +(51,688,o), +(51,673,cs), +(51,295,ls), +(51,280,o), +(63,268,o), +(78,268,cs) +); +}, +{ +closed = 1; +nodes = ( +(252,0,ls), +(267,0,o), +(279,12,o), +(279,27,cs), +(279,201,ls), +(279,216,o), +(267,228,o), +(252,228,cs), +(78,228,ls), +(63,228,o), +(51,216,o), +(51,201,cs), +(51,27,ls), +(51,12,o), +(63,0,o), +(78,0,cs) +); +} +); +width = 330; +} +); +unicode = 33; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 143; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 83; +} +); +}; +}, +{ +color = 6; +glyphname = exclamdown; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,376,ls), +(87,376,o), +(78,367,o), +(78,354,cs), +(78,-159,ls), +(78,-172,o), +(87,-181,o), +(100,-181,cs), +(117,-181,ls), +(130,-181,o), +(139,-172,o), +(139,-159,cs), +(139,354,ls), +(139,367,o), +(130,376,o), +(117,376,cs) +); +}, +{ +closed = 1; +nodes = ( +(90,519,ls), +(77,519,o), +(67,510,o), +(67,497,cs), +(67,459,ls), +(67,446,o), +(77,436,o), +(90,436,cs), +(128,436,ls), +(141,436,o), +(150,446,o), +(150,459,cs), +(150,497,ls), +(150,510,o), +(141,519,o), +(128,519,cs) +); +} +); +width = 217; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(76,249,ls), +(61,249,o), +(49,237,o), +(49,222,cs), +(49,-156,ls), +(49,-171,o), +(61,-183,o), +(76,-183,cs), +(250,-183,ls), +(265,-183,o), +(277,-171,o), +(277,-156,cs), +(277,222,ls), +(277,237,o), +(265,249,o), +(250,249,cs) +); +}, +{ +closed = 1; +nodes = ( +(76,517,ls), +(61,517,o), +(49,505,o), +(49,490,cs), +(49,316,ls), +(49,301,o), +(61,289,o), +(76,289,cs), +(250,289,ls), +(265,289,o), +(277,301,o), +(277,316,cs), +(277,490,ls), +(277,505,o), +(265,517,o), +(250,517,cs) +); +} +); +width = 324; +} +); +unicode = 161; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 352; +} +); +}; +}, +{ +color = 6; +glyphname = question; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,9); +type = Tag; +}, +{ +horizontal = 1; +origin = (1,11); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,143,ls), +(277,143,o), +(286,152,o), +(286,165,cs), +(286,181,o), +(286,197,o), +(286,213,cs), +(286,334,o), +(454,383,o), +(464,523,cs), +(471,617,o), +(402,710,o), +(255,710,cs), +(128,710,o), +(38,622,o), +(35,511,cs), +(35,499,o), +(44,491,o), +(56,491,cs), +(72,491,ls), +(82,491,o), +(93,495,o), +(96,513,cs), +(113,615,o), +(177,652,o), +(255,652,cs), +(333,652,o), +(413,605,o), +(403,522,cs), +(390,417,o), +(225,366,o), +(225,213,cs), +(225,197,o), +(225,181,o), +(225,165,cs), +(225,152,o), +(234,143,o), +(247,143,c) +); +}, +{ +closed = 1; +nodes = ( +(273,0,ls), +(286,0,o), +(296,9,o), +(296,22,cs), +(296,60,ls), +(296,73,o), +(286,83,o), +(273,83,cs), +(235,83,ls), +(222,83,o), +(213,73,o), +(213,60,cs), +(213,22,ls), +(213,9,o), +(222,0,o), +(235,0,cs) +); +} +); +width = 503; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(440,253,ls), +(457,253,o), +(462,262,o), +(476,282,cs), +(479,287,o), +(483,291,o), +(487,296,cs), +(537,357,o), +(628,416,o), +(628,523,cs), +(628,587,o), +(578,710,o), +(347,710,cs), +(125,710,o), +(27,585,o), +(24,484,cs), +(24,465,o), +(35,453,o), +(49,453,cs), +(235,453,ls), +(257,453,o), +(264,465,o), +(271,478,cs), +(280,495,o), +(289,515,o), +(329,515,cs), +(349,515,o), +(363,503,o), +(363,483,cs), +(363,435,o), +(237,372,o), +(208,279,cs), +(207,276,o), +(207,274,o), +(207,271,cs), +(207,262,o), +(216,253,o), +(226,253,cs) +); +}, +{ +closed = 1; +nodes = ( +(419,0,ls), +(434,0,o), +(446,12,o), +(446,27,cs), +(446,186,ls), +(446,201,o), +(434,213,o), +(419,213,cs), +(236,213,l), +(221,213,o), +(209,201,o), +(209,186,cs), +(209,27,ls), +(209,12,o), +(221,0,o), +(236,0,cs) +); +} +); +width = 653; +} +); +unicode = 63; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 605; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 304; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 236; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 270; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = questiondown; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(236,377,ls), +(223,377,o), +(214,368,o), +(214,355,cs), +(214,339,o), +(214,323,o), +(214,307,cs), +(214,186,o), +(46,137,o), +(36,-3,cs), +(29,-97,o), +(98,-190,o), +(245,-190,cs), +(372,-190,o), +(462,-102,o), +(465,9,cs), +(465,21,o), +(456,29,o), +(444,29,cs), +(428,29,ls), +(418,29,o), +(407,25,o), +(404,7,cs), +(387,-95,o), +(323,-132,o), +(245,-132,cs), +(167,-132,o), +(87,-85,o), +(97,-2,cs), +(110,103,o), +(275,154,o), +(275,307,cs), +(275,323,o), +(275,339,o), +(275,355,cs), +(275,368,o), +(266,377,o), +(253,377,c) +); +}, +{ +closed = 1; +nodes = ( +(227,520,ls), +(214,520,o), +(204,511,o), +(204,498,cs), +(204,460,ls), +(204,447,o), +(214,437,o), +(227,437,cs), +(265,437,ls), +(278,437,o), +(287,447,o), +(287,460,cs), +(287,498,ls), +(287,511,o), +(278,520,o), +(265,520,cs) +); +} +); +width = 496; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(210,265,ls), +(193,265,o), +(188,256,o), +(174,236,cs), +(171,231,o), +(167,227,o), +(163,222,cs), +(113,161,o), +(22,102,o), +(22,-5,cs), +(22,-69,o), +(72,-192,o), +(303,-192,cs), +(525,-192,o), +(623,-67,o), +(626,34,cs), +(626,53,o), +(615,65,o), +(601,65,cs), +(415,65,ls), +(393,65,o), +(386,53,o), +(379,40,cs), +(370,23,o), +(361,3,o), +(321,3,cs), +(301,3,o), +(287,15,o), +(287,35,cs), +(287,83,o), +(413,146,o), +(442,239,cs), +(443,242,o), +(443,244,o), +(443,247,cs), +(443,256,o), +(434,265,o), +(424,265,cs) +); +}, +{ +closed = 1; +nodes = ( +(231,518,ls), +(216,518,o), +(204,506,o), +(204,491,cs), +(204,332,ls), +(204,317,o), +(216,305,o), +(231,305,cs), +(414,305,l), +(429,305,o), +(441,317,o), +(441,332,cs), +(441,491,ls), +(441,506,o), +(429,518,o), +(414,518,cs) +); +} +); +width = 649; +} +); +unicode = 191; +}, +{ +color = 6; +glyphname = periodcentered; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,8); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(220,200,o), +(265,245,o), +(265,300,cs), +(265,355,o), +(220,400,o), +(165,400,cs), +(110,400,o), +(65,355,o), +(65,300,cs), +(65,245,o), +(110,200,o), +(165,200,cs) +); +} +); +width = 330; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(242,180,o), +(305,243,o), +(305,320,cs), +(305,397,o), +(242,460,o), +(165,460,cs), +(88,460,o), +(25,397,o), +(25,320,cs), +(25,243,o), +(88,180,o), +(165,180,cs) +); +} +); +width = 330; +} +); +unicode = 183; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +} +); +}; +}, +{ +color = 6; +glyphname = bullet; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,8); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(245,200,o), +(290,245,o), +(290,300,cs), +(290,355,o), +(245,400,o), +(190,400,cs), +(135,400,o), +(90,355,o), +(90,300,cs), +(90,245,o), +(135,200,o), +(190,200,cs) +); +} +); +width = 380; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(271,210,o), +(334,273,o), +(334,350,cs), +(334,427,o), +(271,490,o), +(194,490,cs), +(117,490,o), +(54,427,o), +(54,350,cs), +(54,273,o), +(117,210,o), +(194,210,cs) +); +} +); +width = 388; +} +); +unicode = 8226; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 150; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = asterisk; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,55); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(153,417,o), +(167,419,o), +(173,428,c), +(173,429,o), +(175,430,o), +(177,435,cs), +(223,531,l), +(269,435,ls), +(271,430,o), +(273,429,o), +(273,428,cs), +(279,419,o), +(293,417,o), +(304,423,c), +(336,447,ls), +(346,454,o), +(347,469,o), +(341,477,c), +(341,478,o), +(339,480,o), +(335,484,cs), +(258,555,l), +(363,569,ls), +(368,570,o), +(370,571,o), +(371,571,cs), +(381,574,o), +(388,587,o), +(385,599,c), +(372,637,ls), +(369,648,o), +(355,654,o), +(345,651,c), +(344,651,o), +(342,650,o), +(337,647,cs), +(244,596,l), +(264,700,ls), +(265,705,o), +(265,707,o), +(265,708,cs), +(265,719,o), +(255,730,o), +(243,730,cs), +(203,730,ls), +(191,730,o), +(181,719,o), +(181,708,cs), +(181,707,o), +(181,705,o), +(182,700,cs), +(201,597,l), +(109,647,ls), +(104,650,o), +(102,651,o), +(101,651,c), +(91,654,o), +(77,648,o), +(74,637,cs), +(61,599,l), +(58,587,o), +(65,574,o), +(75,571,c), +(76,571,o), +(78,570,o), +(83,569,cs), +(187,556,l), +(111,484,ls), +(107,480,o), +(105,478,o), +(105,477,cs), +(99,469,o), +(100,454,o), +(110,447,cs), +(142,423,l) +); +} +); +width = 446; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(173,357,o), +(187,359,o), +(193,369,c), +(195,371,o), +(196,373,o), +(198,375,c), +(222,444,l), +(246,375,l), +(248,373,o), +(249,371,o), +(251,369,c), +(257,359,o), +(271,357,o), +(282,363,c), +(378,435,l), +(388,441,o), +(389,456,o), +(383,465,c), +(383,466,o), +(381,468,o), +(378,471,cs), +(320,515,l), +(393,517,l), +(397,518,o), +(399,519,o), +(400,519,cs), +(411,522,o), +(418,535,o), +(415,547,c), +(377,661,ls), +(374,672,o), +(360,678,o), +(350,675,c), +(349,675,o), +(346,674,o), +(342,672,cs), +(282,631,l), +(303,700,ls), +(304,704,o), +(304,707,o), +(304,708,cs), +(304,719,o), +(294,730,o), +(282,730,cs), +(162,730,ls), +(150,730,o), +(140,719,o), +(140,708,cs), +(140,707,o), +(140,704,o), +(141,700,cs), +(161,631,l), +(102,672,ls), +(98,674,o), +(95,675,o), +(94,675,cs), +(84,678,o), +(70,672,o), +(67,661,cs), +(29,547,l), +(26,535,o), +(33,522,o), +(44,519,c), +(45,519,o), +(47,518,o), +(51,517,c), +(124,515,l), +(66,471,ls), +(63,468,o), +(61,466,o), +(61,465,cs), +(55,456,o), +(56,441,o), +(66,435,c), +(162,363,l) +); +} +); +width = 444; +} +); +unicode = 42; +}, +{ +color = 6; +glyphname = numbersign; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,37); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,42); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,47); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,52); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,70); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,75); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,4); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,9); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,14); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,39,l), +(216,39,o), +(224,48,o), +(226,60,c), +(245,191,l), +(412,191,l), +(392,60,l), +(390,48,o), +(400,39,o), +(412,39,c), +(430,39,l), +(443,39,o), +(451,48,o), +(453,60,c), +(472,191,l), +(601,191,l), +(614,191,o), +(623,200,o), +(623,213,c), +(623,227,l), +(623,240,o), +(614,249,o), +(601,249,c), +(481,249,l), +(510,445,l), +(627,445,l), +(640,445,o), +(649,454,o), +(649,467,c), +(649,481,l), +(649,494,o), +(640,503,o), +(627,503,c), +(518,503,l), +(538,634,l), +(539,646,o), +(530,655,o), +(518,655,c), +(500,655,l), +(487,655,o), +(480,645,o), +(478,634,c), +(458,503,l), +(291,503,l), +(311,634,l), +(312,646,o), +(303,655,o), +(291,655,c), +(273,655,l), +(260,655,o), +(253,645,o), +(251,634,c), +(231,503,l), +(100,503,l), +(87,503,o), +(78,494,o), +(78,481,c), +(78,467,l), +(78,454,o), +(87,445,o), +(100,445,c), +(222,445,l), +(193,249,l), +(74,249,l), +(61,249,o), +(52,240,o), +(52,227,c), +(52,213,l), +(52,200,o), +(61,191,o), +(74,191,c), +(185,191,l), +(165,60,l), +(163,48,o), +(173,39,o), +(185,39,c) +); +}, +{ +closed = 1; +nodes = ( +(283,445,l), +(449,445,l), +(420,249,l), +(254,249,l) +); +} +); +width = 701; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,39,l), +(252,39,o), +(262,48,o), +(264,60,c), +(275,136,l), +(339,136,l), +(328,61,l), +(328,49,o), +(338,39,o), +(350,39,c), +(466,39,l), +(479,39,o), +(489,48,o), +(491,60,c), +(502,136,l), +(586,136,l), +(600,136,o), +(611,147,o), +(611,161,c), +(611,279,l), +(611,293,o), +(600,304,o), +(586,304,c), +(527,304,l), +(540,390,l), +(612,390,l), +(626,390,o), +(637,401,o), +(637,415,c), +(637,533,l), +(637,547,o), +(626,558,o), +(612,558,c), +(565,558,l), +(576,633,l), +(576,645,o), +(566,655,o), +(554,655,c), +(438,655,l), +(425,655,o), +(416,645,o), +(414,634,c), +(402,558,l), +(338,558,l), +(349,633,l), +(349,645,o), +(339,655,o), +(327,655,c), +(211,655,l), +(198,655,o), +(189,645,o), +(187,634,c), +(175,558,l), +(91,558,l), +(77,558,o), +(66,547,o), +(66,533,c), +(66,415,l), +(66,401,o), +(77,390,o), +(91,390,c), +(150,390,l), +(137,304,l), +(65,304,l), +(51,304,o), +(40,293,o), +(40,279,c), +(40,161,l), +(40,147,o), +(51,136,o), +(65,136,c), +(112,136,l), +(101,61,ls), +(99,49,o), +(111,39,o), +(123,39,c) +); +}, +{ +closed = 1; +nodes = ( +(313,390,l), +(377,390,l), +(364,304,l), +(300,304,l) +); +} +); +width = 677; +} +); +unicode = 35; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 474; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 220; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 482; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 255; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = slash; +kernLeft = slash; +kernRight = slash; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(64,-84,ls), +(77,-84,o), +(84,-74,o), +(86,-69,cs), +(430,754,l), +(432,759,o), +(433,764,o), +(433,766,cs), +(433,777,o), +(424,786,o), +(413,786,cs), +(396,786,ls), +(383,786,o), +(376,776,o), +(374,771,cs), +(30,-52,ls), +(28,-57,o), +(27,-62,o), +(27,-64,cs), +(27,-75,o), +(36,-84,o), +(47,-84,cs) +); +} +); +width = 459; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(174,-84,ls), +(201,-84,o), +(213,-67,o), +(218,-54,cs), +(556,755,ls), +(558,760,o), +(558,762,o), +(558,764,cs), +(558,776,o), +(548,786,o), +(536,786,cs), +(402,786,ls), +(377,786,o), +(364,770,o), +(358,756,cs), +(23,-53,l), +(21,-58,o), +(21,-60,o), +(21,-62,cs), +(21,-74,o), +(31,-84,o), +(43,-84,cs) +); +} +); +width = 579; +} +); +unicode = 47; +}, +{ +color = 6; +glyphname = backslash; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,18); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(412,-84,ls), +(423,-84,o), +(432,-75,o), +(432,-64,cs), +(432,-62,o), +(431,-57,o), +(429,-52,cs), +(85,771,ls), +(83,776,o), +(76,786,o), +(63,786,cs), +(46,786,ls), +(35,786,o), +(26,777,o), +(26,766,cs), +(26,764,o), +(27,759,o), +(29,754,cs), +(373,-69,l), +(375,-74,o), +(382,-84,o), +(395,-84,cs) +); +} +); +width = 459; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(535,-84,ls), +(547,-84,o), +(557,-74,o), +(557,-62,cs), +(557,-60,o), +(557,-58,o), +(555,-53,c), +(220,756,ls), +(214,770,o), +(201,786,o), +(176,786,cs), +(42,786,ls), +(30,786,o), +(20,776,o), +(20,764,cs), +(20,762,o), +(20,760,o), +(22,755,cs), +(360,-54,ls), +(365,-67,o), +(377,-84,o), +(404,-84,cs) +); +} +); +width = 578; +} +); +unicode = 92; +}, +{ +color = 6; +glyphname = periodcentered.loclCAT; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(54,313,ls), +(67,313,o), +(77,322,o), +(77,335,cs), +(77,383,ls), +(77,396,o), +(67,406,o), +(54,406,cs), +(6,406,ls), +(-7,406,o), +(-16,396,o), +(-16,383,cs), +(-16,335,ls), +(-16,322,o), +(-7,313,o), +(6,313,cs) +); +} +); +width = 61; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(154,273,ls), +(167,273,o), +(177,283,o), +(177,296,cs), +(177,427,ls), +(177,440,o), +(167,450,o), +(154,450,cs), +(23,450,ls), +(10,450,o), +(0,440,o), +(0,427,cs), +(0,296,ls), +(0,283,o), +(10,273,o), +(23,273,cs) +); +} +); +width = 177; +} +); +}, +{ +color = 6; +glyphname = periodcentered.loclCAT.case; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(-121,313,ls), +(-108,313,o), +(-98,322,o), +(-98,335,cs), +(-98,383,ls), +(-98,396,o), +(-108,406,o), +(-121,406,cs), +(-169,406,ls), +(-182,406,o), +(-191,396,o), +(-191,383,cs), +(-191,335,ls), +(-191,322,o), +(-182,313,o), +(-169,313,cs) +); +} +); +width = 10; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(-66,311,ls), +(-53,311,o), +(-43,321,o), +(-43,334,cs), +(-43,465,ls), +(-43,478,o), +(-53,488,o), +(-66,488,cs), +(-197,488,ls), +(-210,488,o), +(-220,478,o), +(-220,465,cs), +(-220,334,ls), +(-220,321,o), +(-210,311,o), +(-197,311,cs) +); +} +); +width = 3; +} +); +}, +{ +color = 6; +glyphname = hyphen; +kernLeft = hyphen; +kernRight = hyphen; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(391,271,ls), +(404,271,o), +(413,280,o), +(413,293,cs), +(413,307,ls), +(413,320,o), +(404,329,o), +(391,329,cs), +(96,329,ls), +(83,329,o), +(74,320,o), +(74,307,cs), +(74,293,ls), +(74,280,o), +(83,271,o), +(96,271,cs) +); +} +); +width = 487; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(398,202,ls), +(413,202,o), +(425,214,o), +(425,229,cs), +(425,371,ls), +(425,386,o), +(413,398,o), +(398,398,cs), +(73,398,ls), +(58,398,o), +(46,386,o), +(46,371,cs), +(46,229,ls), +(46,214,o), +(58,202,o), +(73,202,cs) +); +} +); +width = 471; +} +); +unicode = 45; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +} +); +}; +}, +{ +color = 10; +glyphname = softhyphen; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = hyphen; +} +); +width = 600; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = hyphen; +} +); +width = 600; +} +); +unicode = 173; +}, +{ +color = 6; +glyphname = endash; +kernLeft = hyphen; +kernRight = hyphen; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(481,271,ls), +(494,271,o), +(503,280,o), +(503,293,cs), +(503,307,ls), +(503,320,o), +(494,329,o), +(481,329,cs), +(96,329,ls), +(83,329,o), +(74,320,o), +(74,307,cs), +(74,293,ls), +(74,280,o), +(83,271,o), +(96,271,cs) +); +} +); +width = 577; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(488,202,ls), +(503,202,o), +(515,214,o), +(515,229,cs), +(515,371,ls), +(515,386,o), +(503,398,o), +(488,398,cs), +(73,398,ls), +(58,398,o), +(46,386,o), +(46,371,cs), +(46,229,ls), +(46,214,o), +(58,202,o), +(73,202,cs) +); +} +); +width = 561; +} +); +unicode = 8211; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +} +); +}; +}, +{ +color = 6; +glyphname = emdash; +kernLeft = hyphen; +kernRight = hyphen; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(671,271,ls), +(684,271,o), +(693,280,o), +(693,293,cs), +(693,307,ls), +(693,320,o), +(684,329,o), +(671,329,cs), +(96,329,ls), +(83,329,o), +(74,320,o), +(74,307,cs), +(74,293,ls), +(74,280,o), +(83,271,o), +(96,271,cs) +); +} +); +width = 767; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(678,202,ls), +(693,202,o), +(705,214,o), +(705,229,cs), +(705,371,ls), +(705,386,o), +(693,398,o), +(678,398,cs), +(73,398,ls), +(58,398,o), +(46,386,o), +(46,371,cs), +(46,229,ls), +(46,214,o), +(58,202,o), +(73,202,cs) +); +} +); +width = 751; +} +); +unicode = 8212; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +} +); +}; +}, +{ +color = 6; +glyphname = underscore; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(664,-28,l), +(677,-28,o), +(686,-19,o), +(686,-6,cs), +(686,8,ls), +(686,21,o), +(677,30,o), +(664,30,cs), +(89,30,ls), +(76,30,o), +(67,21,o), +(67,8,cs), +(67,-6,ls), +(67,-19,o), +(76,-28,o), +(89,-28,cs) +); +} +); +width = 753; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(665,-98,ls), +(680,-98,o), +(692,-86,o), +(692,-71,cs), +(692,71,ls), +(692,86,o), +(680,98,o), +(665,98,cs), +(60,98,ls), +(45,98,o), +(33,86,o), +(33,71,cs), +(33,-71,ls), +(33,-86,o), +(45,-98,o), +(60,-98,cs) +); +} +); +width = 725; +} +); +unicode = 95; +}, +{ +color = 6; +glyphname = hyphen.case; +kernLeft = hyphen.cap; +kernRight = hyphen.cap; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(393,321,ls), +(406,321,o), +(415,330,o), +(415,343,cs), +(415,357,ls), +(415,370,o), +(406,379,o), +(393,379,cs), +(98,379,ls), +(85,379,o), +(76,370,o), +(76,357,cs), +(76,343,ls), +(76,330,o), +(85,321,o), +(98,321,cs) +); +} +); +width = 491; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(404,252,ls), +(419,252,o), +(431,264,o), +(431,279,cs), +(431,421,ls), +(431,436,o), +(419,448,o), +(404,448,cs), +(79,448,ls), +(64,448,o), +(52,436,o), +(52,421,cs), +(52,279,ls), +(52,264,o), +(64,252,o), +(79,252,cs) +); +} +); +width = 483; +} +); +}, +{ +color = 6; +glyphname = endash.case; +kernLeft = hyphen.cap; +kernRight = hyphen.cap; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,321,ls), +(496,321,o), +(505,330,o), +(505,343,cs), +(505,357,ls), +(505,370,o), +(496,379,o), +(483,379,cs), +(98,379,ls), +(85,379,o), +(76,370,o), +(76,357,cs), +(76,343,ls), +(76,330,o), +(85,321,o), +(98,321,cs) +); +} +); +width = 581; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(494,252,ls), +(509,252,o), +(521,264,o), +(521,279,cs), +(521,421,ls), +(521,436,o), +(509,448,o), +(494,448,cs), +(79,448,ls), +(64,448,o), +(52,436,o), +(52,421,cs), +(52,279,ls), +(52,264,o), +(64,252,o), +(79,252,cs) +); +} +); +width = 573; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +} +); +}; +}, +{ +color = 6; +glyphname = emdash.case; +kernLeft = hyphen.cap; +kernRight = hyphen.cap; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(673,321,ls), +(686,321,o), +(695,330,o), +(695,343,cs), +(695,357,ls), +(695,370,o), +(686,379,o), +(673,379,cs), +(98,379,ls), +(85,379,o), +(76,370,o), +(76,357,cs), +(76,343,ls), +(76,330,o), +(85,321,o), +(98,321,cs) +); +} +); +width = 771; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(684,252,ls), +(699,252,o), +(711,264,o), +(711,279,cs), +(711,421,ls), +(711,436,o), +(699,448,o), +(684,448,cs), +(79,448,ls), +(64,448,o), +(52,436,o), +(52,421,cs), +(52,279,ls), +(52,264,o), +(64,252,o), +(79,252,cs) +); +} +); +width = 763; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +} +); +}; +}, +{ +color = 6; +glyphname = parenleftinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(185,-225,o), +(194,-218,o), +(194,-203,cs), +(194,-192,ls), +(194,-177,o), +(184,-169,o), +(167,-169,cs), +(122,-169,o), +(97,-109,o), +(97,11,cs), +(97,131,o), +(122,189,o), +(167,189,cs), +(184,189,o), +(194,197,o), +(194,212,cs), +(194,223,ls), +(194,238,o), +(185,245,o), +(170,245,cs), +(84,245,o), +(39,183,o), +(39,11,cs), +(39,-161,o), +(84,-225,o), +(170,-225,cs) +); +} +); +width = 222; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(227,-225,o), +(236,-218,o), +(236,-203,cs), +(236,-135,ls), +(236,-120,o), +(223,-117,o), +(209,-114,cs), +(162,-103,o), +(144,-62,o), +(144,10,cs), +(144,82,o), +(162,123,o), +(209,134,cs), +(223,137,o), +(236,140,o), +(236,155,cs), +(236,223,ls), +(236,238,o), +(227,245,o), +(212,245,cs), +(139,245,o), +(24,198,o), +(24,10,cs), +(24,-178,o), +(139,-225,o), +(212,-225,cs) +); +} +); +width = 261; +} +); +unicode = 8333; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 245; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 5; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 83; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 205; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = parenrightinferior; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(138,-225,o), +(183,-161,o), +(183,11,cs), +(183,183,o), +(138,245,o), +(52,245,cs), +(37,245,o), +(28,238,o), +(28,223,cs), +(28,212,ls), +(28,197,o), +(38,189,o), +(55,189,cs), +(100,189,o), +(125,131,o), +(125,11,cs), +(125,-109,o), +(100,-169,o), +(55,-169,cs), +(38,-169,o), +(28,-177,o), +(28,-192,cs), +(28,-203,ls), +(28,-218,o), +(37,-225,o), +(52,-225,cs) +); +} +); +width = 222; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(122,-225,o), +(237,-178,o), +(237,10,cs), +(237,198,o), +(122,245,o), +(49,245,cs), +(34,245,o), +(25,238,o), +(25,223,cs), +(25,155,ls), +(25,140,o), +(38,137,o), +(52,134,cs), +(99,123,o), +(117,82,o), +(117,10,cs), +(117,-62,o), +(99,-103,o), +(52,-114,cs), +(38,-117,o), +(25,-120,o), +(25,-135,cs), +(25,-203,ls), +(25,-218,o), +(34,-225,o), +(49,-225,cs) +); +} +); +width = 261; +} +); +unicode = 8334; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 245; +} +); +}; +}, +{ +color = 6; +glyphname = parenleft; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,9); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,-159,o), +(294,-149,o), +(294,-137,cs), +(294,-123,ls), +(294,-111,o), +(284,-101,o), +(275,-101,cs), +(163,-101,o), +(123,-8,o), +(123,309,cs), +(123,626,o), +(163,718,o), +(275,718,cs), +(284,718,o), +(294,728,o), +(294,740,cs), +(294,754,ls), +(294,766,o), +(284,776,o), +(272,776,cs), +(103,776,o), +(64,632,o), +(64,309,cs), +(64,-14,o), +(103,-159,o), +(272,-159,cs) +); +} +); +width = 319; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(389,-159,o), +(401,-147,o), +(401,-132,cs), +(401,-5,ls), +(401,10,o), +(389,21,o), +(374,22,cs), +(266,32,o), +(240,165,o), +(240,309,cs), +(240,453,o), +(266,585,o), +(374,595,cs), +(389,596,o), +(401,607,o), +(401,622,cs), +(401,749,ls), +(401,764,o), +(389,776,o), +(374,776,cs), +(182,776,o), +(29,649,o), +(29,309,cs), +(29,-31,o), +(182,-159,o), +(374,-159,cs) +); +} +); +width = 423; +} +); +unicode = 40; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-159"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 776; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 309; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 300; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = parenright; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,21); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(216,-159,o), +(255,-14,o), +(255,309,cs), +(255,632,o), +(216,776,o), +(47,776,cs), +(35,776,o), +(25,766,o), +(25,754,cs), +(25,740,ls), +(25,728,o), +(35,718,o), +(44,718,cs), +(156,718,o), +(196,626,o), +(196,309,cs), +(196,-8,o), +(156,-101,o), +(44,-101,cs), +(35,-101,o), +(25,-111,o), +(25,-123,cs), +(25,-137,ls), +(25,-149,o), +(35,-159,o), +(47,-159,cs) +); +} +); +width = 319; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(241,-159,o), +(394,-31,o), +(394,309,cs), +(394,649,o), +(241,776,o), +(49,776,cs), +(34,776,o), +(22,764,o), +(22,749,cs), +(22,622,ls), +(22,607,o), +(34,596,o), +(49,595,cs), +(157,585,o), +(183,453,o), +(183,309,cs), +(183,165,o), +(157,32,o), +(49,22,cs), +(34,21,o), +(22,10,o), +(22,-5,cs), +(22,-132,ls), +(22,-147,o), +(34,-159,o), +(49,-159,cs) +); +} +); +width = 423; +} +); +unicode = 41; +}, +{ +color = 6; +glyphname = braceleft; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,11); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(295,-159,ls), +(308,-159,o), +(317,-150,o), +(317,-137,cs), +(317,-123,ls), +(317,-110,o), +(308,-101,o), +(295,-101,cs), +(290,-101,ls), +(187,-100,o), +(183,-27,o), +(183,152,cs), +(183,230,o), +(160,278,o), +(108,309,c), +(160,340,o), +(183,388,o), +(183,466,cs), +(183,645,o), +(187,717,o), +(290,718,cs), +(295,718,ls), +(308,718,o), +(317,727,o), +(317,740,cs), +(317,754,ls), +(317,767,o), +(308,776,o), +(295,776,cs), +(290,776,ls), +(133,776,o), +(122,670,o), +(122,487,cs), +(122,412,o), +(104,382,o), +(67,356,c), +(61,352,l), +(43,340,o), +(37,331,o), +(37,315,cs), +(37,303,ls), +(37,287,o), +(43,278,o), +(61,266,c), +(66,263,l), +(103,237,o), +(122,207,o), +(122,131,cs), +(122,-52,o), +(133,-159,o), +(290,-159,cs) +); +} +); +width = 344; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(429,-158,l), +(441,-158,o), +(451,-148,o), +(451,-136,cs), +(451,1,ls), +(451,13,o), +(441,22,o), +(432,23,c), +(427,24,l), +(357,33,o), +(304,63,o), +(304,142,cs), +(304,222,o), +(268,296,o), +(231,309,c), +(268,322,o), +(304,388,o), +(304,476,cs), +(304,556,o), +(357,585,o), +(429,595,c), +(432,595,l), +(441,596,o), +(451,605,o), +(451,617,cs), +(451,754,ls), +(451,766,o), +(441,776,o), +(429,776,c), +(422,776,l), +(267,773,o), +(94,687,o), +(94,487,cs), +(94,444,o), +(79,400,o), +(40,384,cs), +(23,377,ls), +(3,368,o), +(-6,356,o), +(-6,335,cs), +(-6,283,ls), +(-6,262,o), +(3,250,o), +(23,241,cs), +(40,234,ls), +(79,218,o), +(94,174,o), +(94,131,cs), +(94,-70,o), +(268,-156,o), +(424,-158,c) +); +} +); +width = 474; +} +); +unicode = 123; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 776; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-159"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 323; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = braceright; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (152, 0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(49,776,ls), +(36,776,o), +(27,767,o), +(27,754,cs), +(27,740,ls), +(27,727,o), +(36,718,o), +(49,718,cs), +(54,718,ls), +(157,717,o), +(161,644,o), +(161,465,cs), +(161,387,o), +(184,339,o), +(236,308,c), +(184,277,o), +(161,229,o), +(161,151,cs), +(161,-28,o), +(157,-100,o), +(54,-101,cs), +(49,-101,ls), +(36,-101,o), +(27,-110,o), +(27,-123,cs), +(27,-137,ls), +(27,-150,o), +(36,-159,o), +(49,-159,cs), +(54,-159,ls), +(211,-159,o), +(222,-53,o), +(222,130,cs), +(222,205,o), +(240,235,o), +(277,261,c), +(283,265,l), +(301,277,o), +(307,286,o), +(307,302,cs), +(307,314,ls), +(307,330,o), +(301,339,o), +(283,351,c), +(278,354,l), +(241,380,o), +(222,410,o), +(222,486,cs), +(222,669,o), +(211,776,o), +(54,776,cs) +); +} +); +width = 344; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(45,776,l), +(33,776,o), +(23,766,o), +(23,754,cs), +(23,617,ls), +(23,605,o), +(33,596,o), +(42,595,c), +(47,594,l), +(117,585,o), +(170,555,o), +(170,476,cs), +(170,396,o), +(206,322,o), +(243,309,c), +(206,296,o), +(170,230,o), +(170,142,cs), +(170,62,o), +(117,33,o), +(45,23,c), +(42,23,l), +(33,22,o), +(23,13,o), +(23,1,cs), +(23,-136,ls), +(23,-148,o), +(33,-158,o), +(45,-158,c), +(52,-158,l), +(207,-155,o), +(380,-69,o), +(380,131,cs), +(380,174,o), +(395,218,o), +(434,234,cs), +(451,241,ls), +(471,250,o), +(480,262,o), +(480,283,cs), +(480,335,ls), +(480,356,o), +(471,368,o), +(451,377,cs), +(434,384,ls), +(395,400,o), +(380,444,o), +(380,487,cs), +(380,688,o), +(206,774,o), +(50,776,c) +); +} +); +width = 474; +} +); +unicode = 125; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-159"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 776; +} +); +}; +}, +{ +color = 6; +glyphname = bracketleft; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,8); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,13); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(251,-159,ls), +(264,-159,o), +(273,-150,o), +(273,-137,cs), +(273,-123,ls), +(273,-110,o), +(264,-101,o), +(251,-101,cs), +(139,-101,l), +(139,718,l), +(251,718,ls), +(264,718,o), +(273,727,o), +(273,740,cs), +(273,754,ls), +(273,767,o), +(264,776,o), +(251,776,cs), +(100,776,ls), +(87,776,o), +(78,767,o), +(78,754,cs), +(78,-137,ls), +(78,-150,o), +(87,-159,o), +(100,-159,cs) +); +} +); +width = 301; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(381,-159,ls), +(396,-159,o), +(408,-147,o), +(408,-132,cs), +(408,15,ls), +(408,30,o), +(396,42,o), +(381,42,cs), +(262,42,l), +(262,593,l), +(381,593,ls), +(396,593,o), +(408,605,o), +(408,620,cs), +(408,749,ls), +(408,764,o), +(396,776,o), +(381,776,cs), +(78,776,ls), +(63,776,o), +(51,764,o), +(51,749,cs), +(51,-132,ls), +(51,-147,o), +(63,-159,o), +(78,-159,cs) +); +} +); +width = 432; +} +); +unicode = 91; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 776; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-159"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 141; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = bracketright; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,16); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,21); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(201,-159,ls), +(214,-159,o), +(223,-150,o), +(223,-137,cs), +(223,754,ls), +(223,767,o), +(214,776,o), +(201,776,cs), +(50,776,ls), +(37,776,o), +(28,767,o), +(28,754,cs), +(28,740,ls), +(28,727,o), +(37,718,o), +(50,718,cs), +(162,718,l), +(162,-101,l), +(50,-101,ls), +(37,-101,o), +(28,-110,o), +(28,-123,cs), +(28,-137,ls), +(28,-150,o), +(37,-159,o), +(50,-159,cs) +); +} +); +width = 301; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(354,-159,ls), +(369,-159,o), +(381,-147,o), +(381,-132,cs), +(381,749,ls), +(381,764,o), +(369,776,o), +(354,776,cs), +(51,776,ls), +(36,776,o), +(24,764,o), +(24,749,cs), +(24,620,ls), +(24,605,o), +(36,593,o), +(51,593,cs), +(170,593,l), +(170,42,l), +(51,42,ls), +(36,42,o), +(24,30,o), +(24,15,cs), +(24,-132,ls), +(24,-147,o), +(36,-159,o), +(51,-159,cs) +); +} +); +width = 432; +} +); +unicode = 93; +}, +{ +color = 10; +glyphname = parenleftsuperior; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +alignment = -1; +pos = (0,520); +ref = parenleftinferior; +} +); +width = 222; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +alignment = -1; +pos = (0,520); +ref = parenleftinferior; +} +); +width = 261; +} +); +unicode = 8317; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 765; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 295; +} +); +}; +}, +{ +color = 10; +glyphname = parenrightsuperior; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +alignment = -1; +pos = (0,520); +ref = parenrightinferior; +} +); +width = 222; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +alignment = -1; +pos = (0,520); +ref = parenrightinferior; +} +); +width = 261; +} +); +unicode = 8318; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 765; +} +); +}; +}, +{ +color = 6; +glyphname = parenleft.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,9); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,-117,o), +(298,-107,o), +(298,-95,cs), +(298,-81,ls), +(298,-69,o), +(288,-59,o), +(279,-59,cs), +(167,-59,o), +(127,34,o), +(127,351,cs), +(127,668,o), +(167,760,o), +(279,760,cs), +(288,760,o), +(298,770,o), +(298,782,cs), +(298,796,ls), +(298,808,o), +(288,818,o), +(276,818,cs), +(107,818,o), +(68,674,o), +(68,351,cs), +(68,28,o), +(107,-117,o), +(276,-117,cs) +); +} +); +width = 337; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(398,-117,o), +(410,-105,o), +(410,-90,cs), +(410,37,ls), +(410,52,o), +(398,63,o), +(383,64,cs), +(275,74,o), +(249,207,o), +(249,351,cs), +(249,495,o), +(275,627,o), +(383,637,cs), +(398,638,o), +(410,649,o), +(410,664,cs), +(410,791,ls), +(410,806,o), +(398,818,o), +(383,818,cs), +(191,818,o), +(38,691,o), +(38,351,cs), +(38,11,o), +(191,-117,o), +(383,-117,cs) +); +} +); +width = 446; +} +); +}, +{ +color = 6; +glyphname = parenright.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,21); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(230,-117,o), +(269,28,o), +(269,351,cs), +(269,674,o), +(230,818,o), +(61,818,cs), +(49,818,o), +(39,808,o), +(39,796,cs), +(39,782,ls), +(39,770,o), +(49,760,o), +(58,760,cs), +(170,760,o), +(210,668,o), +(210,351,cs), +(210,34,o), +(170,-59,o), +(58,-59,cs), +(49,-59,o), +(39,-69,o), +(39,-81,cs), +(39,-95,ls), +(39,-107,o), +(49,-117,o), +(61,-117,cs) +); +} +); +width = 337; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(255,-117,o), +(408,11,o), +(408,351,cs), +(408,691,o), +(255,818,o), +(63,818,cs), +(48,818,o), +(36,806,o), +(36,791,cs), +(36,664,ls), +(36,649,o), +(48,638,o), +(63,637,cs), +(171,627,o), +(197,495,o), +(197,351,cs), +(197,207,o), +(171,74,o), +(63,64,cs), +(48,63,o), +(36,52,o), +(36,37,cs), +(36,-90,ls), +(36,-105,o), +(48,-117,o), +(63,-117,cs) +); +} +); +width = 446; +} +); +}, +{ +color = 6; +glyphname = braceleft.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (194, 0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(299,-117,ls), +(312,-117,o), +(321,-108,o), +(321,-95,cs), +(321,-81,ls), +(321,-68,o), +(312,-59,o), +(299,-59,cs), +(294,-59,ls), +(191,-58,o), +(187,15,o), +(187,194,cs), +(187,272,o), +(164,320,o), +(112,351,c), +(164,382,o), +(187,430,o), +(187,508,cs), +(187,687,o), +(191,759,o), +(294,760,cs), +(299,760,ls), +(312,760,o), +(321,769,o), +(321,782,cs), +(321,796,ls), +(321,809,o), +(312,818,o), +(299,818,cs), +(294,818,ls), +(137,818,o), +(126,712,o), +(126,529,cs), +(126,454,o), +(108,424,o), +(71,398,c), +(65,394,l), +(47,382,o), +(41,373,o), +(41,357,cs), +(41,345,ls), +(41,329,o), +(47,320,o), +(65,308,c), +(70,305,l), +(107,279,o), +(126,249,o), +(126,173,cs), +(126,-10,o), +(137,-117,o), +(294,-117,cs) +); +} +); +width = 362; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(448,-116,l), +(460,-116,o), +(470,-106,o), +(470,-94,cs), +(470,43,ls), +(470,55,o), +(460,64,o), +(451,65,c), +(446,66,l), +(376,75,o), +(323,105,o), +(323,184,cs), +(323,264,o), +(287,338,o), +(250,351,c), +(287,364,o), +(323,430,o), +(323,518,cs), +(323,598,o), +(376,627,o), +(448,637,c), +(451,637,l), +(460,638,o), +(470,647,o), +(470,659,cs), +(470,796,ls), +(470,808,o), +(460,818,o), +(448,818,c), +(441,818,l), +(286,815,o), +(113,729,o), +(113,529,cs), +(113,486,o), +(98,442,o), +(59,426,cs), +(42,419,ls), +(22,410,o), +(13,398,o), +(13,377,cs), +(13,325,ls), +(13,304,o), +(22,292,o), +(42,283,cs), +(59,276,ls), +(98,260,o), +(113,216,o), +(113,173,cs), +(113,-28,o), +(287,-114,o), +(443,-116,c) +); +} +); +width = 507; +} +); +}, +{ +color = 6; +glyphname = braceright.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +place = (194, 0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(62,819,ls), +(49,819,o), +(40,810,o), +(40,797,cs), +(40,783,ls), +(40,770,o), +(49,761,o), +(62,761,cs), +(67,761,ls), +(170,760,o), +(174,687,o), +(174,508,cs), +(174,430,o), +(197,382,o), +(249,351,c), +(197,320,o), +(174,272,o), +(174,194,cs), +(174,15,o), +(170,-57,o), +(67,-58,cs), +(62,-58,ls), +(49,-58,o), +(40,-67,o), +(40,-80,cs), +(40,-94,ls), +(40,-107,o), +(49,-116,o), +(62,-116,cs), +(67,-116,ls), +(224,-116,o), +(235,-10,o), +(235,173,cs), +(235,248,o), +(253,278,o), +(290,304,c), +(296,308,l), +(314,320,o), +(320,329,o), +(320,345,cs), +(320,357,ls), +(320,373,o), +(314,382,o), +(296,394,c), +(291,397,l), +(254,423,o), +(235,453,o), +(235,529,cs), +(235,712,o), +(224,819,o), +(67,819,cs) +); +} +); +width = 362; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(59,818,l), +(47,818,o), +(37,808,o), +(37,796,cs), +(37,659,ls), +(37,647,o), +(47,638,o), +(56,637,c), +(61,636,l), +(131,627,o), +(184,597,o), +(184,518,cs), +(184,438,o), +(220,364,o), +(257,351,c), +(220,338,o), +(184,272,o), +(184,184,cs), +(184,104,o), +(131,75,o), +(59,65,c), +(56,65,l), +(47,64,o), +(37,55,o), +(37,43,cs), +(37,-94,ls), +(37,-106,o), +(47,-116,o), +(59,-116,c), +(66,-116,l), +(221,-113,o), +(394,-27,o), +(394,173,cs), +(394,216,o), +(409,260,o), +(448,276,cs), +(465,283,ls), +(485,292,o), +(494,304,o), +(494,325,cs), +(494,377,ls), +(494,398,o), +(485,410,o), +(465,419,cs), +(448,426,ls), +(409,442,o), +(394,486,o), +(394,529,cs), +(394,730,o), +(220,816,o), +(64,818,c) +); +} +); +width = 507; +} +); +}, +{ +color = 6; +glyphname = bracketleft.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,8); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,13); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(254,-117,ls), +(267,-117,o), +(276,-108,o), +(276,-95,cs), +(276,-81,ls), +(276,-68,o), +(267,-59,o), +(254,-59,cs), +(142,-59,l), +(142,760,l), +(254,760,ls), +(267,760,o), +(276,769,o), +(276,782,cs), +(276,796,ls), +(276,809,o), +(267,818,o), +(254,818,cs), +(103,818,ls), +(90,818,o), +(81,809,o), +(81,796,cs), +(81,-95,ls), +(81,-108,o), +(90,-117,o), +(103,-117,cs) +); +} +); +width = 317; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(387,-117,ls), +(402,-117,o), +(414,-105,o), +(414,-90,cs), +(414,57,ls), +(414,72,o), +(402,84,o), +(387,84,cs), +(268,84,l), +(268,635,l), +(387,635,ls), +(402,635,o), +(414,647,o), +(414,662,cs), +(414,791,ls), +(414,806,o), +(402,818,o), +(387,818,cs), +(84,818,ls), +(69,818,o), +(57,806,o), +(57,791,cs), +(57,-90,ls), +(57,-105,o), +(69,-117,o), +(84,-117,cs) +); +} +); +width = 452; +} +); +}, +{ +color = 6; +glyphname = bracketright.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,16); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,21); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(214,-117,ls), +(227,-117,o), +(236,-108,o), +(236,-95,cs), +(236,796,ls), +(236,809,o), +(227,818,o), +(214,818,cs), +(63,818,ls), +(50,818,o), +(41,809,o), +(41,796,cs), +(41,782,ls), +(41,769,o), +(50,760,o), +(63,760,cs), +(175,760,l), +(175,-59,l), +(63,-59,ls), +(50,-59,o), +(41,-68,o), +(41,-81,cs), +(41,-95,ls), +(41,-108,o), +(50,-117,o), +(63,-117,cs) +); +} +); +width = 317; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,-117,ls), +(383,-117,o), +(395,-105,o), +(395,-90,cs), +(395,791,ls), +(395,806,o), +(383,818,o), +(368,818,cs), +(65,818,ls), +(50,818,o), +(38,806,o), +(38,791,cs), +(38,662,ls), +(38,647,o), +(50,635,o), +(65,635,cs), +(184,635,l), +(184,84,l), +(65,84,ls), +(50,84,o), +(38,72,o), +(38,57,cs), +(38,-90,ls), +(38,-105,o), +(50,-117,o), +(65,-117,cs) +); +} +); +width = 452; +} +); +}, +{ +color = 10; +glyphname = parenleft.denominator; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = parenleftinferior; +} +); +width = 222; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = parenleftinferior; +} +); +width = 261; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 765; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 295; +} +); +}; +}, +{ +color = 10; +glyphname = parenright.denominator; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = parenrightinferior; +} +); +width = 222; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = parenrightinferior; +} +); +width = 261; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 765; +} +); +}; +}, +{ +color = 10; +glyphname = parenleft.numerator; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +alignment = -1; +pos = (0,520); +ref = parenleftinferior; +} +); +width = 222; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +alignment = -1; +pos = (0,520); +ref = parenleftinferior; +} +); +width = 261; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 765; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 295; +} +); +}; +}, +{ +color = 10; +glyphname = parenright.numerator; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +alignment = -1; +pos = (0,520); +ref = parenrightinferior; +} +); +width = 222; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +alignment = -1; +pos = (0,520); +ref = parenrightinferior; +} +); +width = 261; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 765; +} +); +}; +}, +{ +color = 6; +glyphname = parenleft.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,9); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(419,-117,o), +(429,-107,o), +(429,-95,cs), +(429,-81,ls), +(429,-69,o), +(419,-59,o), +(410,-59,cs), +(298,-59,o), +(258,34,o), +(258,351,cs), +(258,668,o), +(298,760,o), +(410,760,cs), +(419,760,o), +(429,770,o), +(429,782,cs), +(429,796,ls), +(429,808,o), +(419,818,o), +(407,818,cs), +(238,818,o), +(199,674,o), +(199,351,cs), +(199,28,o), +(238,-117,o), +(407,-117,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(525,-117,o), +(537,-105,o), +(537,-90,cs), +(537,37,ls), +(537,52,o), +(525,63,o), +(510,64,cs), +(402,74,o), +(376,207,o), +(376,351,cs), +(376,495,o), +(402,627,o), +(510,637,cs), +(525,638,o), +(537,649,o), +(537,664,cs), +(537,791,ls), +(537,806,o), +(525,818,o), +(510,818,cs), +(318,818,o), +(165,691,o), +(165,351,cs), +(165,11,o), +(318,-117,o), +(510,-117,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = parenright.tf; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,21); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(362,-117,o), +(401,28,o), +(401,351,cs), +(401,674,o), +(362,818,o), +(193,818,cs), +(181,818,o), +(171,808,o), +(171,796,cs), +(171,782,ls), +(171,770,o), +(181,760,o), +(190,760,cs), +(302,760,o), +(342,668,o), +(342,351,cs), +(342,34,o), +(302,-59,o), +(190,-59,cs), +(181,-59,o), +(171,-69,o), +(171,-81,cs), +(171,-95,ls), +(171,-107,o), +(181,-117,o), +(193,-117,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(382,-117,o), +(535,11,o), +(535,351,cs), +(535,691,o), +(382,818,o), +(190,818,cs), +(175,818,o), +(163,806,o), +(163,791,cs), +(163,664,ls), +(163,649,o), +(175,638,o), +(190,637,cs), +(298,627,o), +(324,495,o), +(324,351,cs), +(324,207,o), +(298,74,o), +(190,64,cs), +(175,63,o), +(163,52,o), +(163,37,cs), +(163,-90,ls), +(163,-105,o), +(175,-117,o), +(190,-117,cs) +); +} +); +width = 700; +} +); +}, +{ +color = 6; +glyphname = quotesinglbase; +kernLeft = period; +kernRight = period; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(90,-75,ls), +(105,-75,o), +(110,-67,o), +(116,-54,c), +(159,59,ls), +(162,66,o), +(163,72,o), +(163,77,cs), +(163,85,o), +(157,93,o), +(148,93,cs), +(103,93,ls), +(87,93,o), +(80,82,o), +(78,66,cs), +(59,-54,ls), +(57,-66,o), +(62,-75,o), +(73,-75,cs) +); +} +); +width = 237; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(140,-75,ls), +(166,-75,o), +(178,-56,o), +(183,-43,cs), +(278,199,ls), +(279,202,o), +(279,204,o), +(279,206,cs), +(279,218,o), +(269,228,o), +(257,228,cs), +(97,228,ls), +(70,228,o), +(57,207,o), +(54,189,cs), +(17,-51,ls), +(15,-67,o), +(26,-75,o), +(39,-75,cs) +); +} +); +width = 302; +} +); +unicode = 8218; +}, +{ +color = 6; +glyphname = quotedblbase; +kernLeft = period; +kernRight = period; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(224,-75,ls), +(239,-75,o), +(244,-67,o), +(250,-54,c), +(293,59,ls), +(296,66,o), +(297,72,o), +(297,77,cs), +(297,85,o), +(291,93,o), +(282,93,cs), +(237,93,ls), +(221,93,o), +(214,82,o), +(212,66,cs), +(193,-54,ls), +(191,-66,o), +(196,-75,o), +(207,-75,cs) +); +}, +{ +closed = 1; +nodes = ( +(90,-75,ls), +(105,-75,o), +(110,-67,o), +(116,-54,c), +(159,59,ls), +(162,66,o), +(163,72,o), +(163,77,cs), +(163,85,o), +(157,93,o), +(148,93,cs), +(103,93,ls), +(87,93,o), +(80,82,o), +(78,66,cs), +(59,-54,ls), +(57,-66,o), +(62,-75,o), +(73,-75,cs) +); +} +); +width = 371; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(412,-75,ls), +(438,-75,o), +(450,-56,o), +(455,-43,cs), +(550,199,ls), +(551,202,o), +(551,204,o), +(551,206,cs), +(551,218,o), +(541,228,o), +(529,228,cs), +(369,228,ls), +(342,228,o), +(329,207,o), +(326,189,c), +(289,-53,ls), +(287,-65,o), +(299,-75,o), +(311,-75,cs) +); +}, +{ +closed = 1; +nodes = ( +(140,-75,ls), +(166,-75,o), +(178,-56,o), +(183,-43,cs), +(278,199,ls), +(279,202,o), +(279,204,o), +(279,206,cs), +(279,218,o), +(269,228,o), +(257,228,cs), +(97,228,ls), +(70,228,o), +(57,207,o), +(54,189,cs), +(17,-51,ls), +(15,-65,o), +(27,-75,o), +(39,-75,cs) +); +} +); +width = 574; +} +); +unicode = 8222; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-75"; +} +); +}; +}, +{ +color = 6; +glyphname = quotedblleft; +kernLeft = quoteleft; +kernRight = quoteleft; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(253,542,ls), +(269,542,o), +(276,553,o), +(278,569,cs), +(297,689,ls), +(299,701,o), +(294,710,o), +(283,710,cs), +(266,710,ls), +(251,710,o), +(246,702,o), +(240,689,c), +(197,576,ls), +(194,569,o), +(193,563,o), +(193,558,cs), +(193,550,o), +(199,542,o), +(208,542,cs) +); +}, +{ +closed = 1; +nodes = ( +(119,542,ls), +(135,542,o), +(142,553,o), +(144,569,cs), +(163,689,ls), +(165,701,o), +(160,710,o), +(149,710,cs), +(132,710,ls), +(117,710,o), +(112,702,o), +(106,689,c), +(63,576,ls), +(60,569,o), +(59,563,o), +(59,558,cs), +(59,550,o), +(65,542,o), +(74,542,cs) +); +} +); +width = 354; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(469,407,ls), +(496,407,o), +(509,428,o), +(512,446,cs), +(549,686,ls), +(551,700,o), +(539,710,o), +(527,710,cs), +(426,710,ls), +(400,710,o), +(388,691,o), +(383,678,cs), +(288,436,ls), +(287,433,o), +(287,431,o), +(287,429,cs), +(287,417,o), +(297,407,o), +(309,407,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,407,ls), +(224,407,o), +(237,428,o), +(240,446,cs), +(277,686,ls), +(279,700,o), +(267,710,o), +(255,710,cs), +(154,710,ls), +(128,710,o), +(116,691,o), +(111,678,cs), +(16,436,ls), +(15,433,o), +(15,431,o), +(15,429,cs), +(15,417,o), +(25,407,o), +(37,407,cs) +); +} +); +width = 572; +} +); +unicode = 8220; +}, +{ +color = 6; +glyphname = quotedblright; +kernLeft = quoteright; +kernRight = quoteright; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(229,542,ls), +(244,542,o), +(249,550,o), +(255,563,c), +(298,676,ls), +(301,683,o), +(302,689,o), +(302,694,cs), +(302,702,o), +(296,710,o), +(287,710,cs), +(242,710,ls), +(226,710,o), +(219,699,o), +(217,683,cs), +(198,563,ls), +(196,551,o), +(201,542,o), +(212,542,cs) +); +}, +{ +closed = 1; +nodes = ( +(95,542,ls), +(110,542,o), +(115,550,o), +(121,563,c), +(164,676,ls), +(167,683,o), +(168,689,o), +(168,694,cs), +(168,702,o), +(162,710,o), +(153,710,cs), +(108,710,ls), +(92,710,o), +(85,699,o), +(83,683,cs), +(64,563,ls), +(62,551,o), +(67,542,o), +(78,542,cs) +); +} +); +width = 347; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(423,407,ls), +(449,407,o), +(461,426,o), +(466,439,cs), +(561,681,ls), +(562,684,o), +(562,686,o), +(562,688,cs), +(562,700,o), +(552,710,o), +(540,710,cs), +(380,710,ls), +(353,710,o), +(340,689,o), +(337,671,cs), +(300,431,ls), +(298,417,o), +(310,407,o), +(322,407,cs) +); +}, +{ +closed = 1; +nodes = ( +(151,407,ls), +(177,407,o), +(189,426,o), +(194,439,cs), +(289,681,ls), +(290,684,o), +(290,686,o), +(290,688,cs), +(290,700,o), +(280,710,o), +(268,710,cs), +(108,710,ls), +(81,710,o), +(68,689,o), +(65,671,cs), +(28,431,ls), +(26,417,o), +(38,407,o), +(50,407,cs) +); +} +); +width = 567; +} +); +unicode = 8221; +}, +{ +color = 6; +glyphname = quoteleft; +kernLeft = quoteleft; +kernRight = quoteleft; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(119,542,ls), +(135,542,o), +(142,553,o), +(144,569,cs), +(163,689,ls), +(165,701,o), +(160,710,o), +(149,710,cs), +(132,710,ls), +(117,710,o), +(112,702,o), +(106,689,c), +(63,576,ls), +(60,569,o), +(59,563,o), +(59,558,cs), +(59,550,o), +(65,542,o), +(74,542,cs) +); +} +); +width = 220; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(197,407,ls), +(224,407,o), +(237,428,o), +(240,446,cs), +(277,686,ls), +(279,702,o), +(267,710,o), +(255,710,cs), +(154,710,ls), +(128,710,o), +(116,691,o), +(111,678,cs), +(16,436,ls), +(15,433,o), +(15,431,o), +(15,429,cs), +(15,417,o), +(25,407,o), +(37,407,cs) +); +} +); +width = 300; +} +); +unicode = 8216; +}, +{ +color = 6; +glyphname = quoteright; +kernLeft = quoteright; +kernRight = quoteright; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(95,542,ls), +(110,542,o), +(115,550,o), +(121,563,c), +(164,676,ls), +(167,683,o), +(168,689,o), +(168,694,cs), +(168,702,o), +(162,710,o), +(153,710,cs), +(108,710,ls), +(92,710,o), +(85,699,o), +(83,683,cs), +(64,563,ls), +(62,551,o), +(67,542,o), +(78,542,cs) +); +} +); +width = 213; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(151,407,ls), +(177,407,o), +(189,426,o), +(194,439,cs), +(289,681,ls), +(290,684,o), +(290,686,o), +(290,688,cs), +(290,700,o), +(280,710,o), +(268,710,cs), +(108,710,ls), +(81,710,o), +(68,689,o), +(65,671,cs), +(28,431,ls), +(26,415,o), +(38,407,o), +(50,407,cs) +); +} +); +width = 295; +} +); +unicode = 8217; +}, +{ +color = 6; +glyphname = guillemetleft; +kernLeft = guilsinglleft; +kernRight = guilsinglleft; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (1,8); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(537,92,o), +(545,100,o), +(545,112,cs), +(545,129,ls), +(545,145,o), +(540,152,o), +(527,165,cs), +(358,329,l), +(527,493,l), +(540,506,o), +(545,513,o), +(545,529,cs), +(545,546,ls), +(545,558,o), +(537,566,o), +(525,566,cs), +(517,566,o), +(509,561,o), +(501,554,cs), +(313,372,ls), +(300,359,o), +(297,348,o), +(296,337,c), +(296,321,l), +(297,310,o), +(300,299,o), +(313,286,cs), +(501,104,ls), +(509,97,o), +(517,92,o), +(525,92,cs) +); +}, +{ +closed = 1; +nodes = ( +(288,92,o), +(296,100,o), +(296,112,cs), +(296,129,ls), +(296,145,o), +(291,152,o), +(278,165,cs), +(109,329,l), +(278,493,l), +(291,506,o), +(296,513,o), +(296,529,cs), +(296,546,ls), +(296,558,o), +(288,566,o), +(276,566,cs), +(268,566,o), +(260,561,o), +(252,554,cs), +(64,372,ls), +(51,359,o), +(48,348,o), +(47,337,c), +(47,321,l), +(48,310,o), +(51,299,o), +(64,286,cs), +(252,104,ls), +(260,97,o), +(268,92,o), +(276,92,cs) +); +} +); +width = 603; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(568,52,o), +(578,62,o), +(578,74,cs), +(578,215,ls), +(578,238,o), +(573,247,o), +(560,260,cs), +(491,329,l), +(560,398,ls), +(573,411,o), +(578,420,o), +(578,443,cs), +(578,584,ls), +(578,596,o), +(568,606,o), +(556,606,cs), +(555,606,o), +(548,606,o), +(542,601,cs), +(325,390,ls), +(317,383,o), +(311,374,o), +(311,362,cs), +(311,296,ls), +(311,284,o), +(317,275,o), +(325,268,cs), +(542,57,ls), +(548,52,o), +(555,52,o), +(556,52,cs) +); +}, +{ +closed = 1; +nodes = ( +(278,52,o), +(288,62,o), +(288,74,cs), +(288,215,ls), +(288,238,o), +(283,247,o), +(270,260,cs), +(201,329,l), +(270,398,ls), +(283,411,o), +(288,420,o), +(288,443,cs), +(288,584,ls), +(288,596,o), +(278,606,o), +(266,606,cs), +(265,606,o), +(258,606,o), +(252,601,cs), +(35,390,ls), +(27,383,o), +(21,374,o), +(21,362,c), +(21,296,ls), +(21,284,o), +(27,275,o), +(35,268,cs), +(252,57,ls), +(258,52,o), +(265,52,o), +(266,52,cs) +); +} +); +width = 632; +} +); +unicode = 171; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 289; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = guillemetright; +kernLeft = guilsinglright; +kernRight = guilsinglright; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,22); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(335,92,o), +(343,97,o), +(351,104,cs), +(539,286,ls), +(552,299,o), +(555,310,o), +(556,321,c), +(556,337,l), +(555,348,o), +(552,359,o), +(539,372,cs), +(351,554,ls), +(343,561,o), +(335,566,o), +(327,566,cs), +(315,566,o), +(307,558,o), +(307,546,cs), +(307,529,ls), +(307,513,o), +(312,506,o), +(325,493,cs), +(494,329,l), +(325,165,ls), +(312,152,o), +(307,145,o), +(307,129,cs), +(307,112,ls), +(307,100,o), +(315,92,o), +(327,92,cs) +); +}, +{ +closed = 1; +nodes = ( +(86,92,o), +(94,97,o), +(102,104,cs), +(290,286,ls), +(303,299,o), +(306,310,o), +(307,321,c), +(307,337,l), +(306,348,o), +(303,359,o), +(290,372,cs), +(102,554,ls), +(94,561,o), +(86,566,o), +(78,566,cs), +(66,566,o), +(58,558,o), +(58,546,cs), +(58,529,ls), +(58,513,o), +(63,506,o), +(76,493,cs), +(245,329,l), +(76,165,ls), +(63,152,o), +(58,145,o), +(58,129,cs), +(58,112,ls), +(58,100,o), +(66,92,o), +(78,92,cs) +); +} +); +width = 603; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(367,52,o), +(374,52,o), +(380,57,cs), +(597,268,ls), +(605,275,o), +(611,284,o), +(611,296,cs), +(611,362,ls), +(611,374,o), +(605,383,o), +(597,390,cs), +(380,601,ls), +(374,606,o), +(367,606,o), +(366,606,cs), +(354,606,o), +(344,596,o), +(344,584,cs), +(344,443,ls), +(344,420,o), +(349,411,o), +(362,398,cs), +(431,329,l), +(362,260,ls), +(349,247,o), +(344,238,o), +(344,215,cs), +(344,74,ls), +(344,62,o), +(354,52,o), +(366,52,cs) +); +}, +{ +closed = 1; +nodes = ( +(77,52,o), +(84,52,o), +(90,57,cs), +(307,268,ls), +(315,275,o), +(321,284,o), +(321,296,cs), +(321,362,ls), +(321,374,o), +(315,383,o), +(307,390,cs), +(90,601,ls), +(84,606,o), +(77,606,o), +(76,606,cs), +(64,606,o), +(54,596,o), +(54,584,cs), +(54,443,ls), +(54,420,o), +(59,411,o), +(72,398,cs), +(141,329,l), +(72,260,ls), +(59,247,o), +(54,238,o), +(54,215,cs), +(54,74,ls), +(54,62,o), +(64,52,o), +(76,52,cs) +); +} +); +width = 632; +} +); +unicode = 187; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 329; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 649; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = guilsinglleft; +kernLeft = guilsinglleft; +kernRight = guilsinglleft; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,8); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(288,92,o), +(296,100,o), +(296,112,cs), +(296,129,ls), +(296,145,o), +(291,152,o), +(278,165,cs), +(109,329,l), +(278,493,l), +(291,506,o), +(296,513,o), +(296,529,cs), +(296,546,ls), +(296,558,o), +(288,566,o), +(276,566,cs), +(268,566,o), +(260,561,o), +(252,554,cs), +(64,372,ls), +(51,359,o), +(48,348,o), +(47,337,c), +(47,321,l), +(48,310,o), +(51,299,o), +(64,286,cs), +(252,104,ls), +(260,97,o), +(268,92,o), +(276,92,cs) +); +} +); +width = 354; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(278,52,o), +(288,62,o), +(288,74,cs), +(288,215,ls), +(288,238,o), +(283,247,o), +(270,260,cs), +(201,329,l), +(270,398,ls), +(283,411,o), +(288,420,o), +(288,443,cs), +(288,584,ls), +(288,596,o), +(278,606,o), +(266,606,cs), +(265,606,o), +(258,606,o), +(252,601,cs), +(35,390,ls), +(27,383,o), +(21,374,o), +(21,362,cs), +(21,296,ls), +(21,284,o), +(27,275,o), +(35,268,cs), +(252,57,ls), +(258,52,o), +(265,52,o), +(266,52,cs) +); +} +); +width = 342; +} +); +unicode = 8249; +}, +{ +color = 6; +glyphname = guilsinglright; +kernLeft = guilsinglright; +kernRight = guilsinglright; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,22); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(86,92,o), +(94,97,o), +(102,104,cs), +(290,286,ls), +(303,299,o), +(306,310,o), +(307,321,c), +(307,337,l), +(306,348,o), +(303,359,o), +(290,372,cs), +(102,554,ls), +(94,561,o), +(86,566,o), +(78,566,cs), +(66,566,o), +(58,558,o), +(58,546,cs), +(58,529,ls), +(58,513,o), +(63,506,o), +(76,493,cs), +(245,329,l), +(76,165,ls), +(63,152,o), +(58,145,o), +(58,129,cs), +(58,112,ls), +(58,100,o), +(66,92,o), +(78,92,cs) +); +} +); +width = 354; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,52,o), +(84,52,o), +(90,57,cs), +(307,268,ls), +(315,275,o), +(321,284,o), +(321,296,cs), +(321,362,ls), +(321,374,o), +(315,383,o), +(307,390,cs), +(90,601,ls), +(84,606,o), +(77,606,o), +(76,606,cs), +(64,606,o), +(54,596,o), +(54,584,cs), +(54,443,ls), +(54,420,o), +(59,411,o), +(72,398,cs), +(141,329,l), +(72,260,ls), +(59,247,o), +(54,238,o), +(54,215,cs), +(54,74,ls), +(54,62,o), +(64,52,o), +(76,52,cs) +); +} +); +width = 342; +} +); +unicode = 8250; +}, +{ +color = 6; +glyphname = quotedbl; +kernLeft = quotesingle; +kernRight = quotesingle; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (1,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(246,508,ls), +(257,508,o), +(262,516,o), +(263,527,cs), +(278,690,l), +(279,702,o), +(271,710,o), +(259,710,cs), +(214,710,ls), +(202,710,o), +(194,702,o), +(195,690,cs), +(210,527,ls), +(211,516,o), +(216,508,o), +(227,508,cs) +); +}, +{ +closed = 1; +nodes = ( +(113,508,ls), +(124,508,o), +(129,516,o), +(130,527,cs), +(145,690,l), +(146,702,o), +(138,710,o), +(126,710,cs), +(81,710,ls), +(69,710,o), +(61,702,o), +(62,690,cs), +(77,527,ls), +(78,516,o), +(83,508,o), +(94,508,cs) +); +} +); +width = 340; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(428,408,ls), +(454,408,o), +(461,424,o), +(463,440,cs), +(490,674,ls), +(493,696,o), +(482,710,o), +(463,710,cs), +(311,710,ls), +(292,710,o), +(281,696,o), +(284,674,cs), +(311,440,ls), +(313,424,o), +(320,408,o), +(346,408,cs) +); +}, +{ +closed = 1; +nodes = ( +(173,408,ls), +(199,408,o), +(206,424,o), +(208,440,cs), +(235,674,ls), +(238,696,o), +(227,710,o), +(208,710,cs), +(56,710,ls), +(37,710,o), +(26,696,o), +(29,674,cs), +(56,440,ls), +(58,424,o), +(65,408,o), +(91,408,cs) +); +} +); +width = 519; +} +); +unicode = 34; +}, +{ +color = 6; +glyphname = quotesingle; +kernLeft = quotesingle; +kernRight = quotesingle; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(113,508,ls), +(124,508,o), +(129,516,o), +(130,527,cs), +(145,690,l), +(146,702,o), +(138,710,o), +(126,710,cs), +(81,710,ls), +(69,710,o), +(61,702,o), +(62,690,cs), +(77,527,ls), +(78,516,o), +(83,508,o), +(94,508,cs) +); +} +); +width = 207; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(173,408,ls), +(199,408,o), +(206,424,o), +(208,440,cs), +(235,674,ls), +(238,696,o), +(227,710,o), +(208,710,cs), +(56,710,ls), +(37,710,o), +(26,696,o), +(29,674,cs), +(56,440,ls), +(58,424,o), +(65,408,o), +(91,408,cs) +); +} +); +width = 264; +} +); +unicode = 39; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 51; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = guillemetleft.case; +kernLeft = guilsinglleft.cap; +kernRight = guilsinglleft.cap; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (1,8); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(543,92,o), +(551,100,o), +(551,112,cs), +(551,129,ls), +(551,145,o), +(546,152,o), +(533,165,cs), +(364,329,l), +(533,493,l), +(546,506,o), +(551,513,o), +(551,529,cs), +(551,546,ls), +(551,558,o), +(543,566,o), +(531,566,cs), +(523,566,o), +(515,561,o), +(507,554,cs), +(319,372,ls), +(306,359,o), +(303,348,o), +(302,337,c), +(302,321,l), +(303,310,o), +(306,299,o), +(319,286,cs), +(507,104,ls), +(515,97,o), +(523,92,o), +(531,92,cs) +); +}, +{ +closed = 1; +nodes = ( +(294,92,o), +(302,100,o), +(302,112,cs), +(302,129,ls), +(302,145,o), +(297,152,o), +(284,165,cs), +(115,329,l), +(284,493,l), +(297,506,o), +(302,513,o), +(302,529,cs), +(302,546,ls), +(302,558,o), +(294,566,o), +(282,566,cs), +(274,566,o), +(266,561,o), +(258,554,cs), +(70,372,ls), +(57,359,o), +(54,348,o), +(53,337,c), +(53,321,l), +(54,310,o), +(57,299,o), +(70,286,cs), +(258,104,ls), +(266,97,o), +(274,92,o), +(282,92,cs) +); +} +); +width = 615; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(572,73,o), +(582,83,o), +(582,95,cs), +(582,236,ls), +(582,259,o), +(577,268,o), +(564,281,cs), +(495,350,l), +(564,419,ls), +(577,432,o), +(582,441,o), +(582,464,cs), +(582,605,ls), +(582,617,o), +(572,627,o), +(560,627,cs), +(559,627,o), +(552,627,o), +(546,622,cs), +(329,411,ls), +(321,404,o), +(315,395,o), +(315,383,cs), +(315,317,ls), +(315,305,o), +(321,296,o), +(329,289,cs), +(546,78,ls), +(552,73,o), +(559,73,o), +(560,73,cs) +); +}, +{ +closed = 1; +nodes = ( +(282,73,o), +(292,83,o), +(292,95,cs), +(292,236,ls), +(292,259,o), +(287,268,o), +(274,281,cs), +(205,350,l), +(274,419,ls), +(287,432,o), +(292,441,o), +(292,464,cs), +(292,605,ls), +(292,617,o), +(282,627,o), +(270,627,cs), +(269,627,o), +(262,627,o), +(256,622,cs), +(39,411,ls), +(31,404,o), +(25,395,o), +(25,383,c), +(25,317,ls), +(25,305,o), +(31,296,o), +(39,289,cs), +(256,78,ls), +(262,73,o), +(269,73,o), +(270,73,cs) +); +} +); +width = 637; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 289; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = guillemetright.case; +kernLeft = guilsinglright.cap; +kernRight = guilsinglright.cap; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,22); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(341,92,o), +(349,97,o), +(357,104,cs), +(545,286,ls), +(558,299,o), +(561,310,o), +(562,321,c), +(562,337,l), +(561,348,o), +(558,359,o), +(545,372,cs), +(357,554,ls), +(349,561,o), +(341,566,o), +(333,566,cs), +(321,566,o), +(313,558,o), +(313,546,cs), +(313,529,ls), +(313,513,o), +(318,506,o), +(331,493,cs), +(500,329,l), +(331,165,ls), +(318,152,o), +(313,145,o), +(313,129,cs), +(313,112,ls), +(313,100,o), +(321,92,o), +(333,92,cs) +); +}, +{ +closed = 1; +nodes = ( +(92,92,o), +(100,97,o), +(108,104,cs), +(296,286,ls), +(309,299,o), +(312,310,o), +(313,321,c), +(313,337,l), +(312,348,o), +(309,359,o), +(296,372,cs), +(108,554,ls), +(100,561,o), +(92,566,o), +(84,566,cs), +(72,566,o), +(64,558,o), +(64,546,cs), +(64,529,ls), +(64,513,o), +(69,506,o), +(82,493,cs), +(251,329,l), +(82,165,ls), +(69,152,o), +(64,145,o), +(64,129,cs), +(64,112,ls), +(64,100,o), +(72,92,o), +(84,92,cs) +); +} +); +width = 615; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,73,o), +(375,73,o), +(381,78,cs), +(598,289,ls), +(606,296,o), +(612,305,o), +(612,317,cs), +(612,383,ls), +(612,395,o), +(606,404,o), +(598,411,cs), +(381,622,ls), +(375,627,o), +(368,627,o), +(367,627,cs), +(355,627,o), +(345,617,o), +(345,605,cs), +(345,464,ls), +(345,441,o), +(350,432,o), +(363,419,cs), +(432,350,l), +(363,281,ls), +(350,268,o), +(345,259,o), +(345,236,cs), +(345,95,ls), +(345,83,o), +(355,73,o), +(367,73,cs) +); +}, +{ +closed = 1; +nodes = ( +(78,73,o), +(85,73,o), +(91,78,cs), +(308,289,ls), +(316,296,o), +(322,305,o), +(322,317,cs), +(322,383,ls), +(322,395,o), +(316,404,o), +(308,411,cs), +(91,622,ls), +(85,627,o), +(78,627,o), +(77,627,cs), +(65,627,o), +(55,617,o), +(55,605,cs), +(55,464,ls), +(55,441,o), +(60,432,o), +(73,419,cs), +(142,350,l), +(73,281,ls), +(60,268,o), +(55,259,o), +(55,236,cs), +(55,95,ls), +(55,83,o), +(65,73,o), +(77,73,cs) +); +} +); +width = 637; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 329; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 649; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = guilsinglleft.case; +kernLeft = guilsinglleft.cap; +kernRight = guilsinglleft.cap; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,8); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(294,92,o), +(302,100,o), +(302,112,cs), +(302,129,ls), +(302,145,o), +(297,152,o), +(284,165,cs), +(115,329,l), +(284,493,l), +(297,506,o), +(302,513,o), +(302,529,cs), +(302,546,ls), +(302,558,o), +(294,566,o), +(282,566,cs), +(274,566,o), +(266,561,o), +(258,554,cs), +(70,372,ls), +(57,359,o), +(54,348,o), +(53,337,c), +(53,321,l), +(54,310,o), +(57,299,o), +(70,286,cs), +(258,104,ls), +(266,97,o), +(274,92,o), +(282,92,cs) +); +} +); +width = 366; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(282,73,o), +(292,83,o), +(292,95,cs), +(292,236,ls), +(292,259,o), +(287,268,o), +(274,281,cs), +(205,350,l), +(274,419,ls), +(287,432,o), +(292,441,o), +(292,464,cs), +(292,605,ls), +(292,617,o), +(282,627,o), +(270,627,cs), +(269,627,o), +(262,627,o), +(256,622,cs), +(39,411,ls), +(31,404,o), +(25,395,o), +(25,383,cs), +(25,317,ls), +(25,305,o), +(31,296,o), +(39,289,cs), +(256,78,ls), +(262,73,o), +(269,73,o), +(270,73,cs) +); +} +); +width = 347; +} +); +}, +{ +color = 6; +glyphname = guilsinglright.case; +kernLeft = guilsinglright.cap; +kernRight = guilsinglright.cap; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,22); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(92,92,o), +(100,97,o), +(108,104,cs), +(296,286,ls), +(309,299,o), +(312,310,o), +(313,321,c), +(313,337,l), +(312,348,o), +(309,359,o), +(296,372,cs), +(108,554,ls), +(100,561,o), +(92,566,o), +(84,566,cs), +(72,566,o), +(64,558,o), +(64,546,cs), +(64,529,ls), +(64,513,o), +(69,506,o), +(82,493,cs), +(251,329,l), +(82,165,ls), +(69,152,o), +(64,145,o), +(64,129,cs), +(64,112,ls), +(64,100,o), +(72,92,o), +(84,92,cs) +); +} +); +width = 366; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(78,73,o), +(85,73,o), +(91,78,cs), +(308,289,ls), +(316,296,o), +(322,305,o), +(322,317,cs), +(322,383,ls), +(322,395,o), +(316,404,o), +(308,411,cs), +(91,622,ls), +(85,627,o), +(78,627,o), +(77,627,cs), +(65,627,o), +(55,617,o), +(55,605,cs), +(55,464,ls), +(55,441,o), +(60,432,o), +(73,419,cs), +(142,350,l), +(73,281,ls), +(60,268,o), +(55,259,o), +(55,236,cs), +(55,95,ls), +(55,83,o), +(65,73,o), +(77,73,cs) +); +} +); +width = 347; +} +); +}, +{ +color = 6; +glyphname = florin; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,21); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,3); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(55,-225,ls), +(177,-225,o), +(206,-151,o), +(206,-57,cs), +(206,462,l), +(338,462,ls), +(351,462,o), +(360,471,o), +(360,484,cs), +(360,498,ls), +(360,511,o), +(351,520,o), +(338,520,cs), +(206,520,l), +(206,572,ls), +(206,643,o), +(225,682,o), +(296,682,cs), +(348,682,ls), +(361,682,o), +(370,691,o), +(370,704,cs), +(370,718,ls), +(370,731,o), +(361,740,o), +(348,740,cs), +(296,740,ls), +(174,740,o), +(145,666,o), +(145,577,cs), +(145,520,l), +(56,520,ls), +(43,520,o), +(34,511,o), +(34,498,cs), +(34,484,ls), +(34,471,o), +(43,462,o), +(56,462,cs), +(145,462,l), +(145,-57,ls), +(145,-118,o), +(136,-167,o), +(55,-167,cs), +(47,-167,ls), +(34,-167,o), +(25,-176,o), +(25,-189,cs), +(25,-203,ls), +(25,-216,o), +(34,-225,o), +(47,-225,cs) +); +} +); +width = 395; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(56,-225,ls), +(248,-225,o), +(352,-142,o), +(352,48,cs), +(352,345,l), +(465,345,ls), +(480,345,o), +(492,357,o), +(492,372,cs), +(492,493,ls), +(492,508,o), +(480,520,o), +(465,520,cs), +(352,520,l), +(352,532,ls), +(352,553,o), +(365,565,o), +(395,565,cs), +(476,565,ls), +(491,565,o), +(503,577,o), +(503,592,cs), +(503,713,ls), +(503,728,o), +(491,740,o), +(476,740,cs), +(383,740,ls), +(238,740,o), +(123,701,o), +(123,537,cs), +(123,520,l), +(54,520,ls), +(39,520,o), +(27,508,o), +(27,493,cs), +(27,372,ls), +(27,357,o), +(39,345,o), +(54,345,cs), +(123,345,l), +(123,59,ls), +(123,-2,o), +(99,-22,o), +(56,-22,cs), +(17,-22,ls), +(2,-22,o), +(-10,-34,o), +(-10,-49,cs), +(-10,-198,l), +(-10,-213,o), +(2,-225,o), +(17,-225,cs) +); +} +); +width = 522; +} +); +unicode = 402; +}, +{ +color = 6; +glyphname = at; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(559,-113,o), +(638,-63,o), +(691,-8,cs), +(694,-4,o), +(696,0,o), +(696,6,cs), +(696,18,o), +(687,27,o), +(675,27,cs), +(649,27,ls), +(637,27,o), +(630,19,o), +(625,15,cs), +(600,-4,o), +(554,-55,o), +(403,-55,cs), +(240,-55,o), +(142,35,o), +(125,192,cs), +(121,229,o), +(121,319,o), +(125,353,cs), +(144,512,o), +(240,603,o), +(403,603,cs), +(602,603,o), +(684,513,o), +(696,353,cs), +(700,299,o), +(697,247,o), +(696,231,cs), +(695,202,o), +(688,137,o), +(628,137,cs), +(590,137,o), +(561,167,o), +(561,230,cs), +(561,448,ls), +(561,461,o), +(552,470,o), +(539,470,cs), +(522,470,ls), +(509,470,o), +(500,461,o), +(500,448,cs), +(500,429,l), +(482,451,o), +(453,478,o), +(397,478,cs), +(299,478,o), +(233,405,o), +(233,273,cs), +(233,141,o), +(298,69,o), +(397,69,cs), +(473,69,o), +(506,111,o), +(522,138,c), +(531,124,o), +(562,79,o), +(628,79,cs), +(709,79,o), +(751,129,o), +(757,225,cs), +(758,241,o), +(760,304,o), +(757,358,cs), +(748,553,o), +(632,661,o), +(403,661,cs), +(203,661,o), +(86,548,o), +(64,358,cs), +(60,324,o), +(60,224,o), +(64,187,cs), +(85,-7,o), +(202,-113,o), +(403,-113,cs) +); +}, +{ +closed = 1; +nodes = ( +(321,127,o), +(294,198,o), +(294,273,cs), +(294,358,o), +(321,420,o), +(397,420,cs), +(476,420,o), +(500,358,o), +(500,273,cs), +(500,188,o), +(476,127,o), +(397,127,cs) +); +} +); +width = 826; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(619,-141,o), +(726,-76,o), +(784,-5,cs), +(788,0,o), +(791,4,o), +(791,10,cs), +(792,27,o), +(779,38,o), +(764,38,cs), +(666,38,ls), +(652,38,o), +(645,33,o), +(631,23,cs), +(589,-9,o), +(553,-20,o), +(444,-20,cs), +(260,-20,o), +(181,59,o), +(167,190,cs), +(163,228,o), +(163,316,o), +(167,351,cs), +(181,471,o), +(250,563,o), +(424,563,cs), +(629,563,o), +(693,499,o), +(700,351,cs), +(702,317,o), +(701,285,o), +(701,249,cs), +(701,219,o), +(688,200,o), +(658,200,cs), +(629,200,o), +(614,218,o), +(614,250,cs), +(614,443,ls), +(614,458,o), +(602,470,o), +(587,470,cs), +(515,470,ls), +(500,470,o), +(488,458,o), +(488,443,cs), +(488,434,l), +(466,463,o), +(439,478,o), +(389,478,cs), +(290,478,o), +(236,395,o), +(236,273,cs), +(236,151,o), +(294,69,o), +(394,69,cs), +(488,69,o), +(512,101,o), +(526,125,c), +(545,103,o), +(591,79,o), +(658,79,cs), +(734,79,o), +(819,133,o), +(825,234,cs), +(827,270,o), +(828,322,o), +(825,356,cs), +(810,532,o), +(727,684,o), +(424,684,cs), +(172,684,o), +(54,512,o), +(41,356,cs), +(38,321,o), +(38,222,o), +(41,185,cs), +(56,6,o), +(173,-141,o), +(444,-141,cs) +); +}, +{ +closed = 1; +nodes = ( +(388,190,o), +(361,208,o), +(361,273,cs), +(361,338,o), +(388,357,o), +(424,357,cs), +(463,357,o), +(488,338,o), +(488,273,cs), +(488,207,o), +(463,190,o), +(424,190,cs) +); +} +); +width = 856; +} +); +unicode = 64; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 193; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 470; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 684; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 135; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 486; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 378; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 419; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 769; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 531; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = ampersand; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,43); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,6); +type = Tag; +}, +{ +horizontal = 1; +origin = (1,9); +type = Tag; +}, +{ +horizontal = 1; +origin = (2,2); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,-10,o), +(452,30,o), +(503,84,c), +(577,10,ls), +(583,4,o), +(591,0,o), +(605,0,cs), +(627,0,ls), +(640,0,o), +(647,7,o), +(647,19,cs), +(647,24,o), +(643,30,o), +(638,35,cs), +(540,131,l), +(592,208,o), +(610,283,o), +(612,344,cs), +(612,357,o), +(603,366,o), +(590,366,cs), +(571,366,ls), +(558,366,o), +(550,357,o), +(549,344,cs), +(541,274,o), +(521,221,o), +(494,176,c), +(303,363,l), +(383,408,o), +(460,457,o), +(460,550,cs), +(460,642,o), +(387,710,o), +(286,710,cs), +(185,710,o), +(112,637,o), +(112,550,cs), +(112,491,o), +(137,447,o), +(205,375,c), +(130,331,o), +(61,278,o), +(61,184,cs), +(61,72,o), +(152,-10,o), +(281,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(199,50,o), +(124,97,o), +(124,184,cs), +(124,253,o), +(180,294,o), +(247,332,c), +(457,129,l), +(405,75,o), +(341,50,o), +(281,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(192,478,o), +(175,510,o), +(175,550,cs), +(175,612,o), +(227,650,o), +(286,650,cs), +(348,650,o), +(397,611,o), +(397,550,cs), +(397,485,o), +(332,447,o), +(260,407,c) +); +} +); +width = 674; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(379,-10,o), +(437,-3,o), +(494,34,c), +(521,10,ls), +(526,6,o), +(532,0,o), +(546,0,cs), +(750,0,ls), +(760,0,o), +(768,8,o), +(768,17,cs), +(768,22,o), +(766,27,o), +(762,31,cs), +(643,155,l), +(684,199,o), +(762,305,o), +(762,348,cs), +(762,358,o), +(754,366,o), +(744,366,cs), +(593,366,ls), +(582,366,o), +(575,361,o), +(573,356,cs), +(549,300,o), +(524,274,o), +(524,274,c), +(449,352,l), +(533,401,o), +(577,454,o), +(577,529,cs), +(577,621,o), +(501,710,o), +(349,710,cs), +(178,710,o), +(105,621,o), +(105,524,cs), +(105,482,o), +(122,436,o), +(164,391,c), +(78,343,o), +(34,282,o), +(34,201,cs), +(34,64,o), +(139,-10,o), +(311,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,157,o), +(252,180,o), +(252,212,cs), +(252,232,o), +(266,252,o), +(283,260,c), +(371,169,l), +(356,160,o), +(337,157,o), +(311,157,cs) +); +}, +{ +closed = 1; +nodes = ( +(321,488,o), +(311,506,o), +(311,520,cs), +(311,542,o), +(329,557,o), +(348,557,cs), +(370,557,o), +(385,542,o), +(385,521,cs), +(385,500,o), +(367,485,o), +(338,472,c) +); +} +); +width = 783; +} +); +unicode = 38; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 366; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 550; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 285; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 589; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = paragraph; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,24); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(248,-100,ls), +(261,-100,o), +(270,-91,o), +(270,-78,cs), +(270,642,l), +(349,642,l), +(349,-78,ls), +(349,-91,o), +(358,-100,o), +(371,-100,cs), +(388,-100,ls), +(401,-100,o), +(410,-91,o), +(410,-78,cs), +(410,678,ls), +(410,691,o), +(401,700,o), +(388,700,cs), +(209,700,ls), +(111,700,o), +(32,621,o), +(32,523,cs), +(32,425,o), +(111,346,o), +(209,346,c), +(209,-78,ls), +(209,-91,o), +(218,-100,o), +(231,-100,cs) +); +} +); +width = 491; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(368,-100,ls), +(383,-100,o), +(395,-88,o), +(395,-73,cs), +(395,550,l), +(474,550,l), +(474,-73,ls), +(474,-88,o), +(486,-100,o), +(501,-100,cs), +(622,-100,ls), +(637,-100,o), +(649,-88,o), +(649,-73,cs), +(649,673,ls), +(649,688,o), +(637,700,o), +(622,700,cs), +(220,700,ls), +(111,700,o), +(23,612,o), +(23,503,cs), +(23,394,o), +(111,306,o), +(220,306,c), +(220,-73,ls), +(220,-88,o), +(232,-100,o), +(247,-100,cs) +); +} +); +width = 709; +} +); +unicode = 182; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-100"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 346; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 522; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 237; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = section; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,39); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(395,-140,o), +(455,-56,o), +(455,22,cs), +(455,57,o), +(449,86,o), +(429,110,c), +(472,142,o), +(507,183,o), +(507,240,cs), +(507,346,o), +(447,392,o), +(297,438,cs), +(188,471,o), +(159,486,o), +(159,548,cs), +(159,605,o), +(197,652,o), +(281,652,cs), +(376,652,o), +(401,612,o), +(414,576,cs), +(420,560,o), +(427,556,o), +(438,556,cs), +(456,556,ls), +(469,556,o), +(478,564,o), +(477,576,cs), +(474,633,o), +(418,710,o), +(281,710,cs), +(158,710,o), +(98,626,o), +(98,548,cs), +(98,513,o), +(104,484,o), +(124,460,c), +(81,428,o), +(46,387,o), +(46,330,cs), +(46,224,o), +(106,178,o), +(256,132,cs), +(365,99,o), +(394,84,o), +(394,22,cs), +(394,-35,o), +(356,-82,o), +(272,-82,cs), +(177,-82,o), +(152,-42,o), +(139,-6,cs), +(133,10,o), +(126,14,o), +(115,14,cs), +(97,14,ls), +(84,14,o), +(75,6,o), +(76,-6,cs), +(79,-63,o), +(135,-140,o), +(272,-140,cs) +); +}, +{ +closed = 1; +nodes = ( +(357,161,o), +(324,174,o), +(281,187,cs), +(134,231,o), +(107,269,o), +(107,329,cs), +(107,372,o), +(130,396,o), +(171,423,c), +(196,409,o), +(229,396,o), +(272,383,cs), +(419,339,o), +(446,301,o), +(446,241,cs), +(446,198,o), +(423,174,o), +(382,147,c) +); +} +); +width = 553; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(470,-140,o), +(558,-49,o), +(558,65,cs), +(558,93,o), +(552,116,o), +(542,137,c), +(586,171,o), +(610,219,o), +(610,275,cs), +(610,377,o), +(562,438,o), +(417,474,c), +(314,493,o), +(308,514,o), +(308,532,cs), +(308,547,o), +(317,559,o), +(332,559,cs), +(352,559,o), +(362,552,o), +(370,546,cs), +(379,539,o), +(385,532,o), +(400,532,cs), +(566,532,ls), +(578,532,o), +(589,540,o), +(588,555,cs), +(585,617,o), +(492,710,o), +(329,710,cs), +(166,710,o), +(78,619,o), +(78,505,cs), +(78,477,o), +(84,453,o), +(94,433,c), +(49,398,o), +(26,351,o), +(26,295,cs), +(26,193,o), +(74,132,o), +(219,96,c), +(322,77,o), +(328,56,o), +(328,38,cs), +(328,23,o), +(319,11,o), +(304,11,cs), +(282,11,o), +(272,19,o), +(264,27,cs), +(256,34,o), +(249,40,o), +(236,40,cs), +(70,40,ls), +(58,40,o), +(47,32,o), +(48,17,cs), +(51,-45,o), +(144,-140,o), +(307,-140,cs) +); +}, +{ +closed = 1; +nodes = ( +(333,252,o), +(304,260,o), +(283,267,cs), +(245,279,o), +(234,289,o), +(234,308,cs), +(234,317,o), +(242,332,o), +(262,327,cs), +(290,320,o), +(313,314,o), +(356,302,cs), +(387,294,o), +(402,284,o), +(402,262,cs), +(402,250,o), +(393,239,o), +(374,242,cs) +); +} +); +width = 636; +} +); +unicode = 167; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-140"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 291; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 72; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 1276; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 511; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = copyright; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (2,12); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(616,-10,o), +(777,151,o), +(777,350,cs), +(777,549,o), +(616,710,o), +(417,710,cs), +(218,710,o), +(57,549,o), +(57,350,cs), +(57,151,o), +(218,-10,o), +(417,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,45,o), +(117,184,o), +(117,350,cs), +(117,516,o), +(251,655,o), +(417,655,cs), +(583,655,o), +(717,516,o), +(717,350,cs), +(717,184,o), +(583,45,o), +(417,45,cs) +); +}, +{ +closed = 1; +nodes = ( +(524,158,o), +(575,218,o), +(575,265,cs), +(575,278,o), +(566,287,o), +(553,287,cs), +(536,287,ls), +(522,287,o), +(517,278,o), +(513,268,cs), +(501,236,o), +(474,216,o), +(417,216,cs), +(337,216,o), +(318,276,o), +(316,317,cs), +(315,337,o), +(315,365,o), +(316,385,cs), +(318,426,o), +(337,486,o), +(417,486,cs), +(474,486,o), +(501,466,o), +(513,434,cs), +(517,424,o), +(522,415,o), +(536,415,cs), +(553,415,ls), +(566,415,o), +(575,424,o), +(575,437,cs), +(575,484,o), +(524,544,o), +(417,544,cs), +(316,544,o), +(258,471,o), +(255,385,cs), +(254,365,o), +(254,337,o), +(255,317,cs), +(258,231,o), +(316,158,o), +(417,158,cs) +); +} +); +width = 834; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(595,-10,o), +(756,151,o), +(756,350,cs), +(756,549,o), +(595,710,o), +(396,710,cs), +(197,710,o), +(36,549,o), +(36,350,cs), +(36,151,o), +(197,-10,o), +(396,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,85,o), +(136,204,o), +(136,350,cs), +(136,496,o), +(250,615,o), +(396,615,cs), +(542,615,o), +(656,496,o), +(656,350,cs), +(656,204,o), +(542,85,o), +(396,85,cs) +); +}, +{ +closed = 1; +nodes = ( +(521,158,o), +(575,230,o), +(578,287,cs), +(579,300,o), +(569,309,o), +(556,309,cs), +(460,309,ls), +(444,309,o), +(438,296,o), +(434,288,cs), +(424,268,o), +(415,263,o), +(396,263,cs), +(365,263,o), +(361,289,o), +(359,317,cs), +(358,327,o), +(358,375,o), +(359,385,cs), +(361,413,o), +(365,439,o), +(396,439,cs), +(415,439,o), +(424,434,o), +(434,414,cs), +(438,406,o), +(444,393,o), +(460,393,cs), +(556,393,ls), +(569,393,o), +(579,402,o), +(578,415,cs), +(575,472,o), +(521,544,o), +(396,544,cs), +(290,544,o), +(226,484,o), +(221,390,cs), +(220,380,o), +(220,322,o), +(221,312,cs), +(226,218,o), +(290,158,o), +(396,158,cs) +); +} +); +width = 792; +} +); +unicode = 169; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 544; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 650; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 304; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 158; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 710; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 410; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = registered; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (2,4); +type = Tag; +}, +{ +horizontal = 1; +origin = (2,9); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(616,-10,o), +(777,151,o), +(777,350,cs), +(777,549,o), +(616,710,o), +(417,710,cs), +(218,710,o), +(57,549,o), +(57,350,cs), +(57,151,o), +(218,-10,o), +(417,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(251,45,o), +(117,184,o), +(117,350,cs), +(117,516,o), +(251,655,o), +(417,655,cs), +(583,655,o), +(717,516,o), +(717,350,cs), +(717,184,o), +(583,45,o), +(417,45,cs) +); +}, +{ +closed = 1; +nodes = ( +(321,168,ls), +(334,168,o), +(343,177,o), +(343,190,cs), +(343,302,l), +(432,302,l), +(504,187,ls), +(511,175,o), +(519,168,o), +(533,168,cs), +(547,168,ls), +(562,168,o), +(569,179,o), +(569,190,cs), +(569,196,o), +(567,201,o), +(565,204,cs), +(496,313,l), +(539,329,o), +(568,364,o), +(568,418,cs), +(568,504,o), +(508,534,o), +(432,534,cs), +(304,534,ls), +(291,534,o), +(282,525,o), +(282,512,cs), +(282,190,ls), +(282,177,o), +(291,168,o), +(304,168,c) +); +}, +{ +closed = 1; +nodes = ( +(343,476,l), +(430,476,ls), +(491,476,o), +(507,448,o), +(507,418,cs), +(507,388,o), +(491,360,o), +(430,360,cs), +(343,360,l) +); +} +); +width = 834; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(595,-10,o), +(756,151,o), +(756,350,cs), +(756,549,o), +(595,710,o), +(396,710,cs), +(197,710,o), +(36,549,o), +(36,350,cs), +(36,151,o), +(197,-10,o), +(396,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(250,85,o), +(136,204,o), +(136,350,cs), +(136,496,o), +(250,615,o), +(396,615,cs), +(542,615,o), +(656,496,o), +(656,350,cs), +(656,204,o), +(542,85,o), +(396,85,cs) +); +}, +{ +closed = 1; +nodes = ( +(352,168,ls), +(365,168,o), +(374,177,o), +(374,190,cs), +(374,282,l), +(395,282,l), +(428,187,l), +(433,174,o), +(443,168,o), +(457,168,cs), +(542,168,ls), +(557,168,o), +(564,179,o), +(564,190,c), +(564,196,o), +(562,200,o), +(560,204,cs), +(515,307,l), +(545,323,o), +(571,356,o), +(571,409,cs), +(571,501,o), +(487,534,o), +(411,534,cs), +(265,534,ls), +(252,534,o), +(243,525,o), +(243,512,cs), +(243,190,ls), +(243,177,o), +(252,168,o), +(265,168,c) +); +}, +{ +closed = 1; +nodes = ( +(374,437,l), +(411,437,ls), +(427,437,o), +(436,425,o), +(436,409,cs), +(436,393,o), +(427,381,o), +(411,381,cs), +(374,381,l) +); +} +); +width = 792; +} +); +unicode = 174; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 534; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 418; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 168; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 567; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 411; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = trademark; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,22); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,434,ls), +(335,434,o), +(344,443,o), +(344,456,cs), +(344,585,l), +(385,518,ls), +(392,507,o), +(397,498,o), +(411,498,cs), +(419,498,ls), +(433,498,o), +(438,507,o), +(445,518,cs), +(486,585,l), +(486,456,ls), +(486,443,o), +(495,434,o), +(508,434,cs), +(522,434,ls), +(535,434,o), +(544,443,o), +(544,456,cs), +(544,678,ls), +(544,691,o), +(535,700,o), +(522,700,cs), +(508,700,ls), +(491,700,o), +(482,686,o), +(477,678,cs), +(415,579,l), +(353,678,ls), +(348,686,o), +(339,700,o), +(322,700,cs), +(308,700,ls), +(295,700,o), +(286,691,o), +(286,678,cs), +(286,456,ls), +(286,443,o), +(295,434,o), +(308,434,cs) +); +}, +{ +closed = 1; +nodes = ( +(160,434,ls), +(173,434,o), +(182,443,o), +(182,456,cs), +(182,644,l), +(234,644,ls), +(247,644,o), +(256,653,o), +(256,666,cs), +(256,678,ls), +(256,691,o), +(247,700,o), +(234,700,cs), +(72,700,ls), +(59,700,o), +(50,691,o), +(50,678,cs), +(50,666,ls), +(50,653,o), +(59,644,o), +(72,644,cs), +(124,644,l), +(124,456,ls), +(124,443,o), +(133,434,o), +(146,434,cs) +); +} +); +width = 625; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(385,434,ls), +(398,434,o), +(407,443,o), +(407,456,cs), +(407,535,l), +(418,518,ls), +(425,507,o), +(430,498,o), +(444,498,cs), +(472,498,ls), +(486,498,o), +(491,507,o), +(498,518,cs), +(509,535,l), +(509,456,ls), +(509,443,o), +(518,434,o), +(531,434,cs), +(585,434,ls), +(598,434,o), +(607,443,o), +(607,456,cs), +(607,678,ls), +(607,691,o), +(598,700,o), +(585,700,cs), +(534,700,ls), +(520,700,o), +(512,689,o), +(505,678,cs), +(458,602,l), +(411,678,ls), +(404,689,o), +(396,700,o), +(382,700,cs), +(331,700,ls), +(318,700,o), +(309,691,o), +(309,678,cs), +(309,456,ls), +(309,443,o), +(318,434,o), +(331,434,cs) +); +}, +{ +closed = 1; +nodes = ( +(184,434,ls), +(197,434,o), +(206,443,o), +(206,456,cs), +(206,604,l), +(258,604,ls), +(271,604,o), +(280,613,o), +(280,626,cs), +(280,678,ls), +(280,691,o), +(271,700,o), +(258,700,cs), +(56,700,ls), +(43,700,o), +(34,691,o), +(34,678,c), +(34,626,ls), +(34,613,o), +(43,604,o), +(56,604,cs), +(108,604,l), +(108,456,ls), +(108,443,o), +(117,434,o), +(130,434,cs) +); +} +); +width = 660; +} +); +unicode = 8482; +}, +{ +color = 6; +glyphname = degree; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (1,2); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,448,o), +(325,504,o), +(325,579,cs), +(325,654,o), +(264,710,o), +(189,710,cs), +(114,710,o), +(53,654,o), +(53,579,cs), +(53,504,o), +(114,448,o), +(189,448,cs) +); +}, +{ +closed = 1; +nodes = ( +(144,503,o), +(113,534,o), +(113,579,cs), +(113,624,o), +(144,655,o), +(189,655,cs), +(234,655,o), +(265,624,o), +(265,579,cs), +(265,534,o), +(234,503,o), +(189,503,cs) +); +} +); +width = 378; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(323,328,o), +(411,411,o), +(411,519,cs), +(411,627,o), +(323,710,o), +(215,710,cs), +(107,710,o), +(19,627,o), +(19,519,cs), +(19,411,o), +(107,328,o), +(215,328,cs) +); +}, +{ +closed = 1; +nodes = ( +(170,443,o), +(139,474,o), +(139,519,cs), +(139,564,o), +(170,595,o), +(215,595,cs), +(260,595,o), +(291,564,o), +(291,519,cs), +(291,474,o), +(260,443,o), +(215,443,cs) +); +} +); +width = 430; +} +); +unicode = 176; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 710; +} +); +}; +}, +{ +color = 6; +glyphname = bar; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(118,-208,ls), +(131,-208,o), +(140,-199,o), +(140,-186,cs), +(140,874,ls), +(140,887,o), +(131,896,o), +(118,896,cs), +(101,896,ls), +(88,896,o), +(79,887,o), +(79,874,cs), +(79,-186,ls), +(79,-199,o), +(88,-208,o), +(101,-208,cs) +); +} +); +width = 219; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(213,-208,ls), +(228,-208,o), +(240,-196,o), +(240,-181,cs), +(240,869,ls), +(240,884,o), +(228,896,o), +(213,896,cs), +(79,896,l), +(64,896,o), +(52,884,o), +(52,869,cs), +(52,-181,ls), +(52,-196,o), +(64,-208,o), +(79,-208,cs) +); +} +); +width = 292; +} +); +unicode = 124; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-208"; +} +); +}; +}, +{ +color = 6; +glyphname = brokenbar; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,475,ls), +(134,475,o), +(143,484,o), +(143,497,cs), +(143,807,l), +(143,820,o), +(134,829,o), +(121,829,cs), +(104,829,ls), +(91,829,o), +(82,820,o), +(82,807,cs), +(82,497,ls), +(82,484,o), +(91,475,o), +(104,475,cs) +); +}, +{ +closed = 1; +nodes = ( +(121,0,ls), +(134,0,o), +(143,9,o), +(143,22,cs), +(143,332,l), +(143,345,o), +(134,354,o), +(121,354,cs), +(104,354,ls), +(91,354,o), +(82,345,o), +(82,332,cs), +(82,22,ls), +(82,9,o), +(91,0,o), +(104,0,cs) +); +} +); +width = 225; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(215,475,ls), +(230,475,o), +(242,487,o), +(242,502,cs), +(242,802,ls), +(242,817,o), +(230,829,o), +(215,829,cs), +(81,829,l), +(66,829,o), +(54,817,o), +(54,802,cs), +(54,502,ls), +(54,487,o), +(66,475,o), +(81,475,cs) +); +}, +{ +closed = 1; +nodes = ( +(215,0,ls), +(230,0,o), +(242,12,o), +(242,27,cs), +(242,327,ls), +(242,342,o), +(230,354,o), +(215,354,cs), +(81,354,l), +(66,354,o), +(54,342,o), +(54,327,cs), +(54,27,ls), +(54,12,o), +(66,0,o), +(81,0,cs) +); +} +); +width = 296; +} +); +unicode = 166; +}, +{ +color = 6; +glyphname = dagger; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,14); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(212,0,ls), +(225,0,o), +(234,9,o), +(234,22,cs), +(234,466,l), +(351,466,ls), +(364,466,o), +(373,475,o), +(373,488,cs), +(373,502,ls), +(373,515,o), +(364,524,o), +(351,524,cs), +(234,524,l), +(234,678,ls), +(234,691,o), +(225,700,o), +(212,700,cs), +(195,700,ls), +(182,700,o), +(173,691,o), +(173,678,cs), +(173,524,l), +(56,524,ls), +(43,524,o), +(34,515,o), +(34,502,cs), +(34,488,ls), +(34,475,o), +(43,466,o), +(56,466,cs), +(173,466,l), +(173,22,ls), +(173,9,o), +(182,0,o), +(195,0,cs) +); +} +); +width = 407; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(326,0,ls), +(341,0,o), +(353,12,o), +(353,27,cs), +(353,338,l), +(465,338,ls), +(480,338,o), +(492,350,o), +(492,365,cs), +(492,497,ls), +(492,512,o), +(480,524,o), +(465,524,cs), +(353,524,l), +(353,673,ls), +(353,688,o), +(341,700,o), +(326,700,cs), +(192,700,ls), +(177,700,o), +(165,688,o), +(165,673,cs), +(165,524,l), +(53,524,l), +(38,524,o), +(26,512,o), +(26,497,cs), +(26,365,ls), +(26,350,o), +(38,338,o), +(53,338,cs), +(165,338,l), +(165,27,ls), +(165,12,o), +(177,0,o), +(192,0,cs) +); +} +); +width = 518; +} +); +unicode = 8224; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 55; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 395; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = daggerdbl; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,24); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(236,0,ls), +(249,0,o), +(258,9,o), +(258,22,cs), +(258,191,l), +(375,191,ls), +(388,191,o), +(397,200,o), +(397,213,cs), +(397,227,ls), +(397,240,o), +(388,249,o), +(375,249,cs), +(258,249,l), +(258,466,l), +(375,466,ls), +(388,466,o), +(397,475,o), +(397,488,cs), +(397,502,ls), +(397,515,o), +(388,524,o), +(375,524,cs), +(258,524,l), +(258,678,ls), +(258,691,o), +(249,700,o), +(236,700,cs), +(219,700,ls), +(206,700,o), +(197,691,o), +(197,678,cs), +(197,524,l), +(80,524,ls), +(67,524,o), +(58,515,o), +(58,502,cs), +(58,488,ls), +(58,475,o), +(67,466,o), +(80,466,cs), +(197,466,l), +(197,249,l), +(80,249,ls), +(67,249,o), +(58,240,o), +(58,227,cs), +(58,213,ls), +(58,200,o), +(67,191,o), +(80,191,cs), +(197,191,l), +(197,22,ls), +(197,9,o), +(206,0,o), +(219,0,cs) +); +} +); +width = 455; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(343,0,ls), +(358,0,o), +(370,12,o), +(370,27,cs), +(370,126,l), +(482,126,ls), +(497,126,o), +(509,138,o), +(509,153,cs), +(509,285,ls), +(509,300,o), +(497,312,o), +(482,312,cs), +(370,312,l), +(370,398,l), +(482,398,ls), +(497,398,o), +(509,410,o), +(509,425,cs), +(509,557,ls), +(509,572,o), +(497,584,o), +(482,584,cs), +(370,584,l), +(370,673,ls), +(370,688,o), +(358,700,o), +(343,700,cs), +(209,700,ls), +(194,700,o), +(182,688,o), +(182,673,cs), +(182,584,l), +(70,584,ls), +(55,584,o), +(43,572,o), +(43,557,cs), +(43,425,ls), +(43,410,o), +(55,398,o), +(70,398,cs), +(182,398,l), +(182,312,l), +(70,312,ls), +(55,312,o), +(43,300,o), +(43,285,cs), +(43,153,ls), +(43,138,o), +(55,126,o), +(70,126,cs), +(182,126,l), +(182,27,ls), +(182,12,o), +(194,0,o), +(209,0,cs) +); +} +); +width = 552; +} +); +unicode = 8225; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 55; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 394; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = estimated; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,16); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(455,-10,o), +(529,73,o), +(532,128,cs), +(533,140,o), +(523,148,o), +(511,148,cs), +(499,148,ls), +(485,148,o), +(476,146,o), +(470,132,cs), +(451,87,o), +(405,48,o), +(305,48,cs), +(203,48,o), +(129,121,o), +(124,271,cs), +(124,278,l), +(526,278,ls), +(539,278,o), +(549,287,o), +(549,300,cs), +(549,325,ls), +(548,501,o), +(445,610,o), +(305,610,cs), +(165,610,o), +(72,501,o), +(64,339,cs), +(63,319,o), +(63,284,o), +(64,264,cs), +(72,99,o), +(165,-10,o), +(305,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(124,339,ls), +(129,467,o), +(195,552,o), +(305,552,cs), +(415,552,o), +(487,467,o), +(488,339,cs), +(488,334,l), +(124,334,l) +); +} +); +width = 605; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(550,-10,o), +(634,82,o), +(634,153,cs), +(634,169,o), +(624,179,o), +(610,179,cs), +(422,179,ls), +(404,179,o), +(399,177,o), +(386,163,cs), +(374,149,o), +(357,146,o), +(344,146,cs), +(312,146,o), +(291,171,o), +(291,209,cs), +(291,223,l), +(619,223,ls), +(635,223,o), +(648,238,o), +(648,256,cs), +(648,312,ls), +(648,488,o), +(551,610,o), +(345,610,cs), +(166,610,o), +(51,508,o), +(41,333,cs), +(40,323,o), +(40,285,o), +(41,275,cs), +(51,87,o), +(155,-10,o), +(346,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(291,381,ls), +(291,440,o), +(316,460,o), +(345,460,cs), +(372,460,o), +(399,450,o), +(399,381,cs), +(399,378,l), +(291,378,l) +); +} +); +width = 682; +} +); +unicode = 8494; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 298; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 541; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = numero; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (2,8); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,0,l), +(135,0,o), +(144,9,o), +(144,22,c), +(144,576,l), +(510,12,l), +(512,9,o), +(518,0,o), +(531,0,c), +(555,0,l), +(568,0,o), +(577,9,o), +(577,23,c), +(577,677,l), +(577,691,o), +(568,700,o), +(554,700,c), +(536,700,l), +(523,700,o), +(514,691,o), +(514,677,c), +(514,122,l), +(148,688,l), +(146,691,o), +(140,700,o), +(127,700,c), +(103,700,l), +(90,700,o), +(81,691,o), +(81,677,c), +(81,22,l), +(81,9,o), +(90,0,o), +(103,0,c) +); +}, +{ +closed = 1; +nodes = ( +(1049,0,l), +(1062,0,o), +(1071,9,o), +(1071,22,c), +(1071,36,l), +(1071,49,o), +(1062,58,o), +(1049,58,c), +(649,58,l), +(636,58,o), +(627,49,o), +(627,36,c), +(627,22,l), +(627,9,o), +(636,0,o), +(649,0,c) +); +}, +{ +closed = 1; +nodes = ( +(983,88,o), +(1071,185,o), +(1071,338,cs), +(1071,491,o), +(983,588,o), +(849,588,cs), +(715,588,o), +(627,491,o), +(627,338,cs), +(627,185,o), +(715,88,o), +(849,88,cs) +); +}, +{ +closed = 1; +nodes = ( +(766,146,o), +(688,200,o), +(688,338,cs), +(688,476,o), +(766,530,o), +(849,530,cs), +(932,530,o), +(1010,476,o), +(1010,338,cs), +(1010,200,o), +(932,146,o), +(849,146,cs) +); +} +); +width = 1129; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(264,0,ls), +(279,0,o), +(291,12,o), +(291,27,cs), +(291,248,l), +(400,23,ls), +(403,16,o), +(414,0,o), +(441,0,cs), +(599,0,ls), +(614,0,o), +(626,12,o), +(626,27,cs), +(626,673,ls), +(626,688,o), +(614,700,o), +(599,700,cs), +(418,700,ls), +(403,700,o), +(391,688,o), +(391,673,cs), +(391,430,l), +(282,677,ls), +(279,685,o), +(268,700,o), +(241,700,cs), +(83,700,ls), +(68,700,o), +(56,688,o), +(56,673,cs), +(56,27,ls), +(56,12,o), +(68,0,o), +(83,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1209,0,ls), +(1224,0,o), +(1236,12,o), +(1236,27,cs), +(1236,71,ls), +(1236,86,o), +(1224,98,o), +(1209,98,cs), +(703,98,ls), +(688,98,o), +(676,86,o), +(676,71,cs), +(676,27,ls), +(676,12,o), +(688,0,o), +(703,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(1130,128,o), +(1236,201,o), +(1236,378,cs), +(1236,555,o), +(1119,627,o), +(956,627,cs), +(793,627,o), +(676,555,o), +(676,378,cs), +(676,201,o), +(782,128,o), +(956,128,cs) +); +}, +{ +closed = 1; +nodes = ( +(923,288,o), +(921,314,o), +(921,378,cs), +(921,439,o), +(923,467,o), +(956,467,cs), +(989,467,o), +(991,439,o), +(991,378,cs), +(991,317,o), +(989,288,o), +(956,288,cs) +); +} +); +width = 1277; +} +); +unicode = 8470; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 588; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 338; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 959; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 1075; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = at.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(559,-47,o), +(638,3,o), +(691,58,cs), +(694,62,o), +(696,66,o), +(696,72,cs), +(696,84,o), +(687,93,o), +(675,93,cs), +(649,93,ls), +(637,93,o), +(630,85,o), +(625,81,cs), +(600,62,o), +(554,11,o), +(403,11,cs), +(240,11,o), +(142,101,o), +(125,258,cs), +(121,295,o), +(121,385,o), +(125,419,cs), +(144,578,o), +(240,669,o), +(403,669,cs), +(602,669,o), +(684,579,o), +(696,419,cs), +(700,365,o), +(697,313,o), +(696,297,cs), +(695,268,o), +(688,203,o), +(628,203,cs), +(590,203,o), +(561,233,o), +(561,296,cs), +(561,514,ls), +(561,527,o), +(552,536,o), +(539,536,cs), +(522,536,ls), +(509,536,o), +(500,527,o), +(500,514,cs), +(500,495,l), +(482,517,o), +(453,544,o), +(397,544,cs), +(299,544,o), +(233,471,o), +(233,339,cs), +(233,207,o), +(298,135,o), +(397,135,cs), +(473,135,o), +(506,177,o), +(522,204,c), +(531,190,o), +(562,145,o), +(628,145,cs), +(709,145,o), +(751,195,o), +(757,291,cs), +(758,307,o), +(760,370,o), +(757,424,cs), +(748,619,o), +(632,727,o), +(403,727,cs), +(203,727,o), +(86,614,o), +(64,424,cs), +(60,390,o), +(60,290,o), +(64,253,cs), +(85,59,o), +(202,-47,o), +(403,-47,cs) +); +}, +{ +closed = 1; +nodes = ( +(321,193,o), +(294,264,o), +(294,339,cs), +(294,424,o), +(321,486,o), +(397,486,cs), +(476,486,o), +(500,424,o), +(500,339,cs), +(500,254,o), +(476,193,o), +(397,193,cs) +); +} +); +width = 813; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(619,-72,o), +(726,-7,o), +(784,64,cs), +(788,69,o), +(791,73,o), +(791,79,cs), +(792,96,o), +(779,107,o), +(764,107,cs), +(666,107,ls), +(652,107,o), +(645,102,o), +(631,92,cs), +(589,60,o), +(553,49,o), +(444,49,cs), +(260,49,o), +(181,128,o), +(167,259,cs), +(163,297,o), +(163,385,o), +(167,420,cs), +(181,540,o), +(250,632,o), +(424,632,cs), +(629,632,o), +(693,568,o), +(700,420,cs), +(702,386,o), +(701,354,o), +(701,318,cs), +(701,288,o), +(688,269,o), +(658,269,cs), +(629,269,o), +(614,287,o), +(614,319,cs), +(614,512,ls), +(614,527,o), +(602,539,o), +(587,539,cs), +(515,539,ls), +(500,539,o), +(488,527,o), +(488,512,cs), +(488,503,l), +(466,532,o), +(439,547,o), +(389,547,cs), +(290,547,o), +(236,464,o), +(236,342,cs), +(236,220,o), +(294,138,o), +(394,138,cs), +(488,138,o), +(512,170,o), +(526,194,c), +(545,172,o), +(591,148,o), +(658,148,cs), +(734,148,o), +(819,202,o), +(825,303,cs), +(827,339,o), +(828,391,o), +(825,425,cs), +(810,601,o), +(727,753,o), +(424,753,cs), +(172,753,o), +(54,581,o), +(41,425,cs), +(38,390,o), +(38,291,o), +(41,254,cs), +(56,75,o), +(173,-72,o), +(444,-72,cs) +); +}, +{ +closed = 1; +nodes = ( +(388,259,o), +(361,277,o), +(361,342,cs), +(361,407,o), +(388,426,o), +(424,426,cs), +(463,426,o), +(488,407,o), +(488,342,cs), +(488,276,o), +(463,259,o), +(424,259,cs) +); +} +); +width = 856; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 193; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 470; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 684; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 135; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 486; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 378; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 419; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 769; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 531; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = cent; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,23); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(282,-100,l), +(295,-100,o), +(304,-91,o), +(304,-78,c), +(304,-9,l), +(441,3,o), +(487,100,o), +(489,149,cs), +(490,162,o), +(479,171,o), +(467,171,c), +(453,171,l), +(439,171,o), +(435,166,o), +(429,150,cs), +(401,74,o), +(344,48,o), +(274,48,cs), +(193,48,o), +(126,100,o), +(122,225,cs), +(121,245,o), +(121,275,o), +(122,295,cs), +(126,420,o), +(193,472,o), +(274,472,cs), +(344,472,o), +(401,446,o), +(429,370,cs), +(435,354,o), +(439,349,o), +(453,349,c), +(467,349,l), +(479,349,o), +(490,358,o), +(489,371,cs), +(487,419,o), +(441,516,o), +(304,529,c), +(304,588,l), +(304,601,o), +(295,610,o), +(282,610,c), +(266,610,l), +(253,610,o), +(244,601,o), +(244,588,c), +(244,528,l), +(131,516,o), +(64,431,o), +(61,300,cs), +(60,280,o), +(60,240,o), +(61,220,cs), +(64,88,o), +(131,4,o), +(244,-8,c), +(244,-78,l), +(244,-91,o), +(253,-100,o), +(266,-100,c) +); +} +); +width = 544; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(383,-100,l), +(398,-100,o), +(410,-88,o), +(410,-73,c), +(410,2,l), +(552,38,o), +(599,148,o), +(602,184,cs), +(603,199,o), +(590,211,o), +(575,211,c), +(380,211,l), +(365,211,o), +(356,203,o), +(351,191,cs), +(343,172,o), +(338,161,o), +(314,161,cs), +(283,161,o), +(276,181,o), +(274,224,cs), +(273,243,o), +(273,266,o), +(274,295,cs), +(275,335,o), +(283,359,o), +(314,359,cs), +(334,359,o), +(342,348,o), +(351,329,cs), +(357,317,o), +(365,309,o), +(380,309,c), +(575,309,l), +(590,309,o), +(603,321,o), +(602,336,cs), +(599,379,o), +(546,482,o), +(410,518,c), +(410,583,l), +(410,598,o), +(398,610,o), +(383,610,c), +(234,610,l), +(219,610,o), +(207,598,o), +(207,583,c), +(207,516,l), +(105,487,o), +(34,413,o), +(29,300,cs), +(28,277,o), +(28,240,o), +(29,219,cs), +(35,106,o), +(106,32,o), +(207,3,c), +(207,-73,l), +(207,-88,o), +(219,-100,o), +(234,-100,c) +); +} +); +width = 628; +} +); +unicode = 162; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-100"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 610; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 269; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = currency; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,51); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(99,80,o), +(112,80,o), +(121,89,c), +(163,132,l), +(198,105,o), +(241,90,o), +(289,90,cs), +(336,90,o), +(380,105,o), +(415,132,c), +(457,89,l), +(466,80,o), +(479,80,o), +(488,89,c), +(500,101,l), +(509,110,o), +(509,123,o), +(500,132,c), +(457,174,l), +(483,209,o), +(499,252,o), +(499,300,cs), +(499,347,o), +(483,391,o), +(457,426,c), +(500,468,l), +(509,477,o), +(509,490,o), +(500,499,c), +(488,511,l), +(479,520,o), +(466,520,o), +(457,511,c), +(415,468,l), +(380,494,o), +(336,510,o), +(289,510,cs), +(241,510,o), +(198,494,o), +(163,468,c), +(121,511,l), +(112,520,o), +(99,520,o), +(90,511,c), +(78,499,l), +(69,490,o), +(69,477,o), +(78,468,c), +(121,426,l), +(94,391,o), +(79,347,o), +(79,300,cs), +(79,252,o), +(94,209,o), +(121,174,c), +(78,132,l), +(69,123,o), +(69,110,o), +(78,101,c), +(90,89,l) +); +}, +{ +closed = 1; +nodes = ( +(206,150,o), +(139,217,o), +(139,300,cs), +(139,383,o), +(206,450,o), +(289,450,cs), +(372,450,o), +(439,383,o), +(439,300,cs), +(439,217,o), +(372,150,o), +(289,150,cs) +); +} +); +width = 578; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(132,19,o), +(149,19,o), +(159,29,cs), +(206,76,l), +(239,59,o), +(277,50,o), +(317,50,cs), +(357,50,o), +(394,59,o), +(428,76,c), +(475,29,ls), +(485,19,o), +(502,19,o), +(513,29,cs), +(588,104,ls), +(598,115,o), +(598,132,o), +(588,142,cs), +(541,189,l), +(557,222,o), +(567,260,o), +(567,300,cs), +(567,340,o), +(557,377,o), +(541,411,c), +(588,458,ls), +(598,468,o), +(598,485,o), +(588,496,cs), +(513,571,ls), +(502,581,o), +(485,581,o), +(475,571,cs), +(428,524,l), +(394,540,o), +(357,550,o), +(317,550,cs), +(277,550,o), +(239,540,o), +(206,524,c), +(159,571,ls), +(149,581,o), +(132,581,o), +(121,571,cs), +(46,496,ls), +(36,485,o), +(36,468,o), +(46,458,cs), +(93,411,l), +(76,377,o), +(67,340,o), +(67,300,cs), +(67,260,o), +(76,222,o), +(93,189,c), +(46,142,ls), +(36,132,o), +(36,115,o), +(46,104,cs), +(121,29,ls) +); +}, +{ +closed = 1; +nodes = ( +(267,210,o), +(227,250,o), +(227,300,cs), +(227,350,o), +(267,390,o), +(317,390,cs), +(367,390,o), +(407,350,o), +(407,300,cs), +(407,250,o), +(367,210,o), +(317,210,cs) +); +} +); +width = 634; +} +); +unicode = 164; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 510; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 450; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 288; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = dollar; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,67); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(308,-100,l), +(321,-100,o), +(330,-91,o), +(330,-78,c), +(330,-9,l), +(467,0,o), +(551,68,o), +(551,181,cs), +(551,291,o), +(480,329,o), +(330,377,cs), +(187,423,o), +(127,450,o), +(127,530,cs), +(127,612,o), +(196,650,o), +(295,650,cs), +(393,650,o), +(460,601,o), +(468,535,cs), +(470,519,o), +(483,515,o), +(490,515,c), +(510,515,l), +(524,515,o), +(531,525,o), +(531,535,cs), +(528,606,o), +(464,695,o), +(330,708,c), +(330,778,l), +(330,791,o), +(321,800,o), +(308,800,c), +(289,800,l), +(276,800,o), +(267,791,o), +(267,778,c), +(267,709,l), +(136,699,o), +(64,624,o), +(64,530,cs), +(64,420,o), +(127,379,o), +(270,333,cs), +(419,285,o), +(488,260,o), +(488,181,cs), +(488,101,o), +(430,50,o), +(300,50,cs), +(170,50,o), +(115,114,o), +(107,170,cs), +(105,181,o), +(98,190,o), +(85,190,c), +(65,190,l), +(53,190,o), +(44,181,o), +(44,170,cs), +(47,85,o), +(125,2,o), +(267,-8,c), +(267,-78,l), +(267,-91,o), +(276,-100,o), +(289,-100,c) +); +} +); +width = 596; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(413,-100,l), +(428,-100,o), +(440,-88,o), +(440,-73,c), +(440,-3,l), +(584,20,o), +(686,103,o), +(686,226,cs), +(686,356,o), +(610,419,o), +(410,444,cs), +(320,455,o), +(299,468,o), +(299,487,cs), +(299,504,o), +(313,515,o), +(347,515,cs), +(375,515,o), +(393,503,o), +(400,497,cs), +(412,486,o), +(421,481,o), +(440,481,c), +(640,481,l), +(651,481,o), +(661,491,o), +(661,503,cs), +(658,575,o), +(581,670,o), +(440,700,c), +(440,773,l), +(440,788,o), +(428,800,o), +(413,800,c), +(292,800,l), +(277,800,o), +(265,788,o), +(265,773,c), +(265,703,l), +(129,679,o), +(42,594,o), +(42,480,cs), +(42,347,o), +(142,281,o), +(300,260,cs), +(399,247,o), +(429,237,o), +(429,213,cs), +(429,195,o), +(399,185,o), +(354,185,cs), +(321,185,o), +(299,193,o), +(280,208,cs), +(266,219,o), +(258,225,o), +(237,225,c), +(47,225,l), +(35,225,o), +(25,215,o), +(25,203,cs), +(27,108,o), +(104,19,o), +(265,-4,c), +(265,-73,l), +(265,-88,o), +(277,-100,o), +(292,-100,c) +); +} +); +width = 711; +} +); +unicode = 36; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-100"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 302; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = euro; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(588,-10,o), +(661,101,o), +(666,186,cs), +(667,198,o), +(657,206,o), +(645,206,c), +(625,206,l), +(614,206,o), +(607,201,o), +(603,185,cs), +(577,86,o), +(505,50,o), +(398,50,cs), +(274,50,o), +(200,117,o), +(197,270,cs), +(197,430,ls), +(200,583,o), +(274,650,o), +(398,650,cs), +(505,650,o), +(577,614,o), +(603,515,cs), +(607,499,o), +(614,494,o), +(625,494,c), +(645,494,l), +(657,494,o), +(667,502,o), +(666,514,cs), +(661,599,o), +(588,710,o), +(398,710,cs), +(214,710,o), +(138,592,o), +(133,434,cs), +(133,266,ls), +(138,108,o), +(214,-10,o), +(398,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(421,250,ls), +(434,250,o), +(443,259,o), +(443,272,cs), +(443,288,ls), +(443,301,o), +(434,310,o), +(421,310,cs), +(69,310,ls), +(56,310,o), +(47,301,o), +(47,288,cs), +(47,272,ls), +(47,259,o), +(56,250,o), +(69,250,cs) +); +}, +{ +closed = 1; +nodes = ( +(421,390,ls), +(434,390,o), +(443,399,o), +(443,412,cs), +(443,428,ls), +(443,441,o), +(434,450,o), +(421,450,cs), +(69,450,ls), +(56,450,o), +(47,441,o), +(47,428,cs), +(47,412,ls), +(47,399,o), +(56,390,o), +(69,390,cs) +); +} +); +width = 726; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(626,-10,o), +(784,74,o), +(784,236,cs), +(784,248,o), +(774,258,o), +(762,258,cs), +(558,258,ls), +(536,258,o), +(526,251,o), +(517,229,cs), +(504,197,o), +(480,185,o), +(446,185,cs), +(396,185,o), +(366,210,o), +(373,291,c), +(373,411,l), +(367,491,o), +(396,515,o), +(446,515,cs), +(480,515,o), +(504,503,o), +(517,471,cs), +(526,449,o), +(536,442,o), +(558,442,cs), +(762,442,ls), +(774,442,o), +(784,452,o), +(784,464,cs), +(784,626,o), +(626,710,o), +(446,710,cs), +(248,710,o), +(107,627,o), +(112,417,cs), +(112,284,l), +(104,74,o), +(248,-10,o), +(446,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(464,188,ls), +(479,188,o), +(491,200,o), +(491,215,cs), +(491,331,ls), +(491,346,o), +(479,358,o), +(464,358,cs), +(52,358,ls), +(37,358,o), +(25,346,o), +(25,331,cs), +(25,215,ls), +(25,200,o), +(37,188,o), +(52,188,cs) +); +}, +{ +closed = 1; +nodes = ( +(464,338,ls), +(479,338,o), +(491,350,o), +(491,365,cs), +(491,481,ls), +(491,496,o), +(479,508,o), +(464,508,cs), +(52,508,ls), +(37,508,o), +(25,496,o), +(25,481,cs), +(25,365,ls), +(25,350,o), +(37,338,o), +(52,338,cs) +); +} +); +width = 820; +}, +{ +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +attr = { +axisRules = ( +{ +min = 125; +} +); +}; +color = 6; +layerId = "19BD927D-6E1A-482D-8C40-04F4A2138C93"; +name = "[125]"; +shapes = ( +{ +closed = 1; +nodes = ( +(588,-10,o), +(661,101,o), +(666,186,cs), +(667,198,o), +(657,206,o), +(645,206,c), +(625,206,l), +(614,206,o), +(607,201,o), +(603,185,cs), +(577,86,o), +(505,50,o), +(398,50,cs), +(274,50,o), +(200,117,o), +(197,270,cs), +(197,430,ls), +(200,583,o), +(274,650,o), +(398,650,cs), +(505,650,o), +(577,614,o), +(603,515,cs), +(607,499,o), +(614,494,o), +(625,494,c), +(645,494,l), +(657,494,o), +(667,502,o), +(666,514,cs), +(661,599,o), +(588,710,o), +(398,710,cs), +(214,710,o), +(138,592,o), +(133,434,cs), +(133,266,ls), +(138,108,o), +(214,-10,o), +(398,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(421,320,ls), +(434,320,o), +(443,329,o), +(443,342,cs), +(443,358,ls), +(443,371,o), +(434,380,o), +(421,380,cs), +(69,380,ls), +(56,380,o), +(47,371,o), +(47,358,cs), +(47,342,ls), +(47,329,o), +(56,320,o), +(69,320,cs) +); +} +); +width = 726; +}, +{ +associatedMasterId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +attr = { +axisRules = ( +{ +min = 125; +} +); +}; +color = 6; +layerId = "363CAC2F-5C8B-4750-B046-0BA5A299336C"; +name = "[125]"; +shapes = ( +{ +closed = 1; +nodes = ( +(626,-10,o), +(784,74,o), +(784,236,cs), +(784,248,o), +(774,258,o), +(762,258,cs), +(558,258,ls), +(536,258,o), +(526,251,o), +(517,229,cs), +(504,197,o), +(480,185,o), +(446,185,cs), +(396,185,o), +(366,210,o), +(373,291,c), +(373,411,l), +(367,491,o), +(396,515,o), +(446,515,cs), +(480,515,o), +(504,503,o), +(517,471,cs), +(526,449,o), +(536,442,o), +(558,442,cs), +(762,442,ls), +(774,442,o), +(784,452,o), +(784,464,cs), +(784,626,o), +(626,710,o), +(446,710,cs), +(248,710,o), +(107,627,o), +(112,417,cs), +(112,284,l), +(104,74,o), +(248,-10,o), +(446,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(464,266,ls), +(479,266,o), +(491,278,o), +(491,293,cs), +(491,409,ls), +(491,424,o), +(479,436,o), +(464,436,cs), +(52,436,ls), +(37,436,o), +(25,424,o), +(25,409,cs), +(25,293,ls), +(25,278,o), +(37,266,o), +(52,266,cs) +); +} +); +width = 820; +} +); +unicode = 8364; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 349; +} +); +}; +}, +{ +color = 6; +glyphname = hryvnia; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(471,-10,o), +(565,79,o), +(565,170,cs), +(565,181,o), +(556,190,o), +(544,190,cs), +(524,190,ls), +(511,190,o), +(504,181,o), +(502,170,cs), +(492,114,o), +(439,50,o), +(309,50,cs), +(200,50,o), +(141,101,o), +(141,181,cs), +(141,260,o), +(192,298,o), +(329,341,cs), +(445,379,o), +(525,430,o), +(525,530,cs), +(525,631,o), +(453,710,o), +(324,710,cs), +(166,710,o), +(88,612,o), +(88,535,cs), +(88,525,o), +(95,515,o), +(109,515,cs), +(129,515,ls), +(136,515,o), +(149,519,o), +(151,535,cs), +(159,601,o), +(226,650,o), +(324,650,cs), +(405,650,o), +(462,612,o), +(462,530,cs), +(462,450,o), +(391,421,o), +(269,377,cs), +(148,336,o), +(78,281,o), +(78,181,cs), +(78,60,o), +(173,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(543,268,ls), +(556,268,o), +(565,277,o), +(565,290,cs), +(565,296,ls), +(565,309,o), +(556,318,o), +(543,318,cs), +(63,318,ls), +(50,318,o), +(41,309,o), +(41,296,cs), +(41,290,ls), +(41,277,o), +(50,268,o), +(63,268,cs) +); +}, +{ +closed = 1; +nodes = ( +(543,378,ls), +(556,378,o), +(565,387,o), +(565,400,cs), +(565,406,ls), +(565,419,o), +(556,428,o), +(543,428,cs), +(63,428,ls), +(50,428,o), +(41,419,o), +(41,406,cs), +(41,400,ls), +(41,387,o), +(50,378,o), +(63,378,cs) +); +} +); +width = 600; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(571,-10,o), +(676,92,o), +(679,203,cs), +(679,215,o), +(669,225,o), +(657,225,cs), +(467,225,ls), +(446,225,o), +(438,219,o), +(424,208,cs), +(405,193,o), +(383,185,o), +(340,185,cs), +(309,185,o), +(285,196,o), +(285,223,cs), +(285,260,o), +(316,272,o), +(449,320,cs), +(574,362,o), +(642,388,o), +(642,500,cs), +(642,620,o), +(545,710,o), +(387,710,cs), +(174,710,o), +(53,590,o), +(53,503,cs), +(53,491,o), +(63,481,o), +(74,481,cs), +(274,481,ls), +(293,481,o), +(302,486,o), +(314,497,cs), +(330,510,o), +(348,518,o), +(387,518,cs), +(414,518,o), +(425,504,o), +(425,487,cs), +(425,455,o), +(398,433,o), +(271,390,cs), +(133,347,o), +(68,309,o), +(68,206,cs), +(68,80,o), +(189,-10,o), +(350,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(651,231,ls), +(666,231,o), +(678,243,o), +(678,258,cs), +(678,316,ls), +(678,331,o), +(666,343,o), +(651,343,cs), +(66,343,ls), +(51,343,o), +(39,331,o), +(39,316,cs), +(39,258,ls), +(39,243,o), +(51,231,o), +(66,231,cs) +); +}, +{ +closed = 1; +nodes = ( +(651,341,ls), +(666,341,o), +(678,353,o), +(678,368,cs), +(678,426,ls), +(678,441,o), +(666,453,o), +(651,453,cs), +(66,453,ls), +(51,453,o), +(39,441,o), +(39,426,cs), +(39,368,ls), +(39,353,o), +(51,341,o), +(66,341,cs) +); +} +); +width = 724; +}, +{ +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +attr = { +axisRules = ( +{ +min = 125; +} +); +}; +color = 6; +layerId = "368E269E-BC8F-438C-BB8E-902C794A8E09"; +name = "[125]"; +shapes = ( +{ +closed = 1; +nodes = ( +(452,-10,o), +(535,79,o), +(535,170,cs), +(535,181,o), +(526,190,o), +(514,190,cs), +(494,190,ls), +(481,190,o), +(474,181,o), +(472,170,cs), +(462,114,o), +(419,50,o), +(309,50,cs), +(200,50,o), +(141,101,o), +(141,181,cs), +(141,260,o), +(192,298,o), +(329,341,cs), +(445,379,o), +(525,430,o), +(525,530,cs), +(525,631,o), +(453,710,o), +(324,710,cs), +(166,710,o), +(88,612,o), +(88,535,cs), +(88,525,o), +(95,515,o), +(109,515,cs), +(129,515,ls), +(136,515,o), +(149,519,o), +(151,535,cs), +(159,601,o), +(226,650,o), +(324,650,cs), +(405,650,o), +(462,612,o), +(462,530,cs), +(462,450,o), +(391,421,o), +(269,377,cs), +(148,336,o), +(78,281,o), +(78,181,cs), +(78,60,o), +(173,-10,o), +(309,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(233,317,l), +(330,367,l), +(68,367,ls), +(55,367,o), +(46,358,o), +(46,345,cs), +(46,339,ls), +(46,326,o), +(55,317,o), +(68,317,cs) +); +}, +{ +closed = 1; +nodes = ( +(543,307,ls), +(556,307,o), +(565,316,o), +(565,329,cs), +(565,335,ls), +(565,348,o), +(556,357,o), +(543,357,cs), +(325,357,l), +(228,307,l) +); +} +); +width = 600; +}, +{ +associatedMasterId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +attr = { +axisRules = ( +{ +min = 125; +} +); +}; +color = 6; +layerId = "69D7FDB9-162C-47E0-A1E4-88513A699D39"; +name = "[125]"; +shapes = ( +{ +closed = 1; +nodes = ( +(571,-10,o), +(676,92,o), +(679,203,cs), +(679,215,o), +(669,225,o), +(657,225,cs), +(467,225,ls), +(446,225,o), +(438,219,o), +(424,208,cs), +(405,193,o), +(383,185,o), +(340,185,cs), +(309,185,o), +(285,196,o), +(285,223,cs), +(285,260,o), +(316,272,o), +(449,320,cs), +(574,367,o), +(642,396,o), +(642,520,cs), +(642,629,o), +(545,710,o), +(387,710,cs), +(174,710,o), +(53,590,o), +(53,503,cs), +(53,491,o), +(63,481,o), +(74,481,cs), +(274,481,ls), +(293,481,o), +(302,486,o), +(314,497,cs), +(330,510,o), +(348,518,o), +(387,518,cs), +(414,518,o), +(425,504,o), +(425,487,cs), +(425,455,o), +(398,433,o), +(271,390,cs), +(133,347,o), +(68,309,o), +(68,206,cs), +(68,80,o), +(189,-10,o), +(350,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(268,317,l), +(464,429,l), +(66,429,ls), +(51,429,o), +(39,417,o), +(39,402,cs), +(39,344,ls), +(39,329,o), +(51,317,o), +(66,317,cs) +); +}, +{ +closed = 1; +nodes = ( +(655,297,ls), +(670,297,o), +(682,309,o), +(682,324,cs), +(682,382,ls), +(682,397,o), +(670,409,o), +(655,409,cs), +(448,409,l), +(252,297,l) +); +} +); +width = 724; +} +); +unicode = 8372; +}, +{ +color = 6; +glyphname = ruble; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(155,0,l), +(169,0,o), +(178,9,o), +(178,22,c), +(178,166,l), +(397,166,l), +(410,166,o), +(419,175,o), +(419,188,c), +(419,204,l), +(419,217,o), +(410,226,o), +(397,226,c), +(178,226,l), +(178,286,l), +(380,286,l), +(520,286,o), +(610,357,o), +(610,493,cs), +(610,629,o), +(520,700,o), +(380,700,c), +(137,700,l), +(124,700,o), +(115,691,o), +(115,677,c), +(115,346,l), +(37,346,l), +(24,346,o), +(15,337,o), +(15,324,c), +(15,308,l), +(15,295,o), +(24,286,o), +(37,286,c), +(115,286,l), +(115,226,l), +(37,226,l), +(24,226,o), +(15,217,o), +(15,204,c), +(15,188,l), +(15,175,o), +(24,166,o), +(37,166,c), +(115,166,l), +(115,22,l), +(115,9,o), +(124,0,o), +(137,0,c) +); +}, +{ +closed = 1; +nodes = ( +(178,640,l), +(375,640,l), +(491,640,o), +(547,588,o), +(547,493,cs), +(547,398,o), +(491,346,o), +(375,346,c), +(178,346,l) +); +} +); +width = 649; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(347,0,ls), +(362,0,o), +(374,12,o), +(374,27,cs), +(374,87,l), +(457,87,ls), +(472,87,o), +(484,99,o), +(484,114,cs), +(484,166,ls), +(484,181,o), +(472,193,o), +(457,193,cs), +(374,193,l), +(374,238,l), +(444,238,ls), +(625,238,o), +(745,303,o), +(745,455,cs), +(745,621,o), +(625,700,o), +(444,700,cs), +(141,700,ls), +(126,700,o), +(114,688,o), +(114,673,cs), +(114,403,l), +(42,403,ls), +(27,403,o), +(15,391,o), +(15,376,cs), +(15,265,ls), +(15,250,o), +(27,238,o), +(42,238,cs), +(114,238,l), +(114,193,l), +(42,193,ls), +(27,193,o), +(15,181,o), +(15,166,cs), +(15,114,ls), +(15,99,o), +(27,87,o), +(42,87,cs), +(114,87,l), +(114,27,ls), +(114,12,o), +(126,0,o), +(141,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(369,514,l), +(439,514,ls), +(475,514,o), +(485,482,o), +(485,457,cs), +(485,418,o), +(460,403,o), +(439,403,cs), +(369,403,l) +); +} +); +width = 764; +} +); +metricRight = P; +unicode = 8381; +}, +{ +color = 6; +glyphname = rupeeIndian; +layers = ( +{ +anchors = ( +{ +name = bottom; +pos = (304,0); +}, +{ +name = top; +pos = (279,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(410,0,ls), +(420,0,o), +(430,4,o), +(430,15,cs), +(430,20,o), +(428,24,o), +(423,29,cs), +(168,327,l), +(175,301,l), +(200,301,ls), +(368,301,o), +(429,391,o), +(429,498,cs), +(429,582,o), +(399,649,o), +(303,668,c), +(351,640,l), +(497,640,ls), +(510,640,o), +(519,649,o), +(519,662,cs), +(519,678,ls), +(519,691,o), +(510,700,o), +(497,700,cs), +(111,700,ls), +(98,700,o), +(89,691,o), +(89,678,cs), +(89,662,ls), +(89,649,o), +(98,640,o), +(111,640,cs), +(194,640,ls), +(330,640,o), +(366,578,o), +(366,498,cs), +(366,418,o), +(334,356,o), +(182,356,cs), +(122,356,ls), +(109,356,o), +(100,347,o), +(100,334,cs), +(100,323,ls), +(100,308,o), +(104,305,o), +(112,296,cs), +(353,15,ls), +(361,6,o), +(368,0,o), +(382,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(497,480,ls), +(510,480,o), +(519,489,o), +(519,502,cs), +(519,518,ls), +(519,531,o), +(510,540,o), +(497,540,cs), +(111,540,ls), +(98,540,o), +(89,531,o), +(89,518,cs), +(89,502,ls), +(89,489,o), +(98,480,o), +(111,480,cs) +); +} +); +width = 580; +}, +{ +anchors = ( +{ +name = bottom; +pos = (179,0); +}, +{ +name = top; +pos = (151,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(513,0,ls), +(529,0,o), +(537,10,o), +(537,22,cs), +(537,27,o), +(533,33,o), +(527,40,cs), +(266,318,l), +(229,214,l), +(278,222,ls), +(396,241,o), +(499,323,o), +(499,457,cs), +(499,509,o), +(484,568,o), +(444,596,c), +(367,578,l), +(545,578,ls), +(560,578,o), +(572,590,o), +(572,605,cs), +(572,673,ls), +(572,688,o), +(560,700,o), +(545,700,cs), +(94,700,ls), +(79,700,o), +(67,688,o), +(67,673,cs), +(67,605,ls), +(67,590,o), +(79,578,o), +(94,578,cs), +(127,578,ls), +(214,578,o), +(239,530,o), +(239,475,cs), +(239,412,o), +(214,373,o), +(122,373,cs), +(94,373,ls), +(79,373,o), +(67,361,o), +(67,346,cs), +(67,273,ls), +(67,242,o), +(66,225,o), +(85,206,cs), +(262,27,ls), +(269,19,o), +(278,0,o), +(305,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(544,414,ls), +(559,414,o), +(571,426,o), +(571,441,cs), +(572,509,ls), +(572,524,o), +(560,536,o), +(545,536,cs), +(94,536,ls), +(79,536,o), +(67,524,o), +(67,509,cs), +(66,441,ls), +(66,426,o), +(78,414,o), +(93,414,cs) +); +} +); +width = 612; +} +); +unicode = 8377; +}, +{ +color = 6; +glyphname = sheqel; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (1,24); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(456,0,ls), +(626,0,o), +(703,89,o), +(703,244,cs), +(703,549,ls), +(703,562,o), +(694,571,o), +(681,571,cs), +(664,571,ls), +(651,571,o), +(642,562,o), +(642,549,cs), +(642,249,ls), +(642,129,o), +(586,58,o), +(451,58,cs), +(317,58,l), +(317,390,ls), +(317,403,o), +(308,412,o), +(295,412,cs), +(278,412,ls), +(265,412,o), +(256,403,o), +(256,390,c), +(256,22,l), +(256,9,o), +(265,0,o), +(278,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(115,0,ls), +(128,0,o), +(137,9,o), +(137,22,cs), +(137,513,l), +(271,513,ls), +(406,513,o), +(462,442,o), +(462,322,cs), +(462,182,ls), +(462,169,o), +(471,160,o), +(484,160,cs), +(501,160,ls), +(514,160,o), +(523,169,o), +(523,182,cs), +(523,327,ls), +(523,482,o), +(446,571,o), +(276,571,cs), +(98,571,ls), +(85,571,o), +(76,562,o), +(76,549,c), +(76,22,ls), +(76,9,o), +(85,0,o), +(98,0,cs) +); +} +); +width = 773; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(751,0,l), +(941,0,o), +(1043,58,o), +(1043,254,cs), +(1043,544,ls), +(1043,559,o), +(1031,571,o), +(1016,571,cs), +(847,571,ls), +(832,571,o), +(820,560,o), +(820,545,cs), +(820,250,ls), +(820,200,o), +(795,175,o), +(746,175,cs), +(531,175,l), +(531,334,ls), +(531,349,o), +(519,361,o), +(504,361,cs), +(335,361,ls), +(320,361,o), +(308,349,o), +(308,334,cs), +(308,27,ls), +(308,12,o), +(320,0,o), +(335,0,c) +); +}, +{ +closed = 1; +nodes = ( +(248,0,ls), +(263,0,o), +(275,12,o), +(275,27,cs), +(275,396,l), +(490,396,ls), +(539,396,o), +(564,371,o), +(564,321,cs), +(564,236,ls), +(564,221,o), +(576,210,o), +(591,210,cs), +(760,210,ls), +(775,210,o), +(787,222,o), +(787,237,cs), +(787,317,ls), +(787,513,o), +(685,571,o), +(495,571,cs), +(79,571,ls), +(64,571,o), +(52,559,o), +(52,544,cs), +(52,27,ls), +(52,12,o), +(64,0,o), +(79,0,cs) +); +} +); +width = 1090; +} +); +unicode = 8362; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 571; +} +); +}; +}, +{ +color = 6; +glyphname = sterling; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,80); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(535,-5,o), +(596,49,o), +(598,149,cs), +(598,159,o), +(591,168,o), +(579,168,cs), +(554,168,ls), +(544,168,o), +(536,156,o), +(535,149,cs), +(527,96,o), +(512,55,o), +(449,55,cs), +(367,55,o), +(332,151,o), +(234,169,c), +(232,221,o), +(224,267,o), +(217,315,c), +(419,315,ls), +(432,315,o), +(441,324,o), +(441,337,cs), +(441,353,ls), +(441,366,o), +(432,375,o), +(419,375,cs), +(208,375,l), +(205,400,o), +(204,426,o), +(204,455,cs), +(204,569,o), +(258,651,o), +(365,651,cs), +(462,651,o), +(514,593,o), +(531,494,cs), +(533,482,o), +(544,473,o), +(554,473,cs), +(572,473,ls), +(584,473,o), +(593,483,o), +(593,495,cs), +(590,607,o), +(516,711,o), +(366,711,cs), +(209,711,o), +(141,590,o), +(141,456,cs), +(141,427,o), +(142,400,o), +(144,375,c), +(74,375,ls), +(61,375,o), +(52,366,o), +(52,353,cs), +(52,337,ls), +(52,324,o), +(61,315,o), +(74,315,cs), +(151,315,l), +(159,261,o), +(168,216,o), +(170,171,c), +(106,160,o), +(55,114,o), +(52,19,cs), +(52,9,o), +(59,0,o), +(71,0,cs), +(94,0,ls), +(112,0,o), +(114,14,o), +(115,21,cs), +(123,74,o), +(137,113,o), +(200,113,cs), +(287,113,o), +(321,-5,o), +(449,-5,cs) +); +} +); +width = 658; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(617,-10,o), +(721,69,o), +(724,209,cs), +(724,219,o), +(717,228,o), +(705,228,cs), +(574,228,ls), +(564,228,o), +(560,224,o), +(556,219,cs), +(538,196,o), +(513,182,o), +(480,182,cs), +(438,182,o), +(410,189,o), +(363,199,c), +(365,217,o), +(365,234,o), +(365,250,c), +(473,250,ls), +(488,250,o), +(500,262,o), +(500,277,cs), +(500,389,ls), +(500,404,o), +(488,416,o), +(473,416,cs), +(360,416,l), +(359,425,o), +(359,435,o), +(359,445,cs), +(359,493,o), +(369,516,o), +(403,516,cs), +(427,516,o), +(441,504,o), +(454,472,cs), +(463,450,o), +(473,443,o), +(495,443,cs), +(699,443,ls), +(711,443,o), +(721,453,o), +(721,465,cs), +(718,627,o), +(583,711,o), +(403,711,cs), +(211,711,o), +(99,632,o), +(99,446,cs), +(99,435,o), +(99,425,o), +(100,416,c), +(65,416,ls), +(50,416,o), +(38,404,o), +(38,389,cs), +(38,277,ls), +(38,262,o), +(50,250,o), +(65,250,cs), +(140,250,l), +(142,235,o), +(144,219,o), +(144,202,c), +(77,166,o), +(40,96,o), +(37,18,cs), +(37,8,o), +(46,0,o), +(56,0,cs), +(210,0,ls), +(217,0,o), +(222,4,o), +(225,9,cs), +(237,28,o), +(256,35,o), +(280,35,cs), +(348,35,o), +(420,-10,o), +(522,-10,cs) +); +} +); +width = 758; +} +); +unicode = 163; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 218; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = tenge; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,0,ls), +(301,0,o), +(310,9,o), +(310,22,cs), +(310,520,l), +(507,520,ls), +(521,520,o), +(530,529,o), +(530,542,cs), +(530,557,ls), +(530,571,o), +(521,580,o), +(507,580,cs), +(49,580,ls), +(36,580,o), +(27,571,o), +(27,557,cs), +(27,542,ls), +(27,529,o), +(36,520,o), +(49,520,cs), +(247,520,l), +(247,22,ls), +(247,9,o), +(256,0,o), +(269,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(507,640,ls), +(521,640,o), +(530,649,o), +(530,662,cs), +(530,677,ls), +(530,691,o), +(521,700,o), +(507,700,cs), +(49,700,ls), +(36,700,o), +(27,691,o), +(27,677,cs), +(27,662,ls), +(27,649,o), +(36,640,o), +(49,640,cs) +); +} +); +width = 557; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(437,0,ls), +(452,0,o), +(464,12,o), +(464,27,cs), +(464,352,l), +(630,352,ls), +(645,352,o), +(657,364,o), +(657,379,cs), +(657,490,ls), +(657,505,o), +(645,517,o), +(630,517,cs), +(44,517,ls), +(29,517,o), +(17,505,o), +(17,490,cs), +(17,379,ls), +(17,364,o), +(29,352,o), +(44,352,cs), +(210,352,l), +(210,27,ls), +(210,12,o), +(222,0,o), +(237,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(630,577,ls), +(645,577,o), +(657,589,o), +(657,604,cs), +(657,672,ls), +(657,687,o), +(645,699,o), +(630,699,cs), +(44,699,ls), +(29,699,o), +(17,687,o), +(17,672,cs), +(17,604,ls), +(17,589,o), +(29,577,o), +(44,577,cs) +); +} +); +width = 674; +} +); +metricLeft = T; +metricRight = T; +unicode = 8376; +}, +{ +color = 6; +glyphname = tugrik; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(287,0,ls), +(301,0,o), +(310,9,o), +(310,22,cs), +(310,640,l), +(507,640,ls), +(521,640,o), +(530,649,o), +(530,662,cs), +(530,677,ls), +(530,691,o), +(521,700,o), +(507,700,cs), +(49,700,ls), +(36,700,o), +(27,691,o), +(27,677,cs), +(27,662,ls), +(27,649,o), +(36,640,o), +(49,640,cs), +(247,640,l), +(247,22,ls), +(247,9,o), +(256,0,o), +(269,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(473,426,ls), +(486,429,o), +(495,435,o), +(495,448,cs), +(495,462,ls), +(495,475,o), +(486,487,o), +(473,484,cs), +(98,404,ls), +(85,401,o), +(76,395,o), +(76,382,cs), +(76,368,ls), +(76,355,o), +(85,343,o), +(98,346,cs) +); +}, +{ +closed = 1; +nodes = ( +(473,308,ls), +(486,311,o), +(495,317,o), +(495,330,cs), +(495,344,ls), +(495,357,o), +(486,369,o), +(473,366,cs), +(98,286,ls), +(85,283,o), +(76,277,o), +(76,264,cs), +(76,250,ls), +(76,237,o), +(85,225,o), +(98,228,cs) +); +} +); +width = 557; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(437,0,ls), +(452,0,o), +(464,12,o), +(464,27,cs), +(464,485,l), +(630,485,ls), +(645,485,o), +(657,497,o), +(657,512,cs), +(657,673,ls), +(657,688,o), +(645,700,o), +(630,700,cs), +(44,700,ls), +(29,700,o), +(17,688,o), +(17,673,cs), +(17,512,ls), +(17,497,o), +(29,485,o), +(44,485,cs), +(210,485,l), +(210,27,ls), +(210,12,o), +(222,0,o), +(237,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(540,307,ls), +(555,308,o), +(567,319,o), +(567,334,cs), +(567,402,ls), +(567,417,o), +(555,430,o), +(540,429,cs), +(134,399,ls), +(119,398,o), +(107,387,o), +(107,372,cs), +(107,304,ls), +(107,289,o), +(119,276,o), +(134,277,cs) +); +}, +{ +closed = 1; +nodes = ( +(540,137,ls), +(555,138,o), +(567,149,o), +(567,164,cs), +(567,232,ls), +(567,247,o), +(555,260,o), +(540,259,cs), +(134,229,ls), +(119,228,o), +(107,217,o), +(107,202,cs), +(107,134,ls), +(107,119,o), +(119,106,o), +(134,107,cs) +); +} +); +width = 674; +} +); +metricLeft = T; +metricRight = T; +unicode = 8366; +}, +{ +color = 6; +glyphname = yen; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,ls), +(316,0,o), +(325,9,o), +(325,22,cs), +(325,294,l), +(546,667,ls), +(548,671,o), +(550,675,o), +(550,680,cs), +(550,691,o), +(541,700,o), +(530,700,cs), +(508,700,ls), +(499,700,o), +(491,695,o), +(485,685,cs), +(293,361,l), +(101,685,ls), +(95,695,o), +(87,700,o), +(78,700,cs), +(56,700,ls), +(45,700,o), +(36,691,o), +(36,680,cs), +(36,675,o), +(38,671,o), +(40,667,cs), +(261,294,l), +(261,22,ls), +(261,9,o), +(270,0,o), +(283,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(473,123,ls), +(486,123,o), +(495,132,o), +(495,145,cs), +(495,161,ls), +(495,174,o), +(486,183,o), +(473,183,cs), +(113,183,ls), +(100,183,o), +(91,174,o), +(91,161,cs), +(91,145,ls), +(91,132,o), +(100,123,o), +(113,123,cs) +); +}, +{ +closed = 1; +nodes = ( +(473,243,ls), +(486,243,o), +(495,252,o), +(495,265,cs), +(495,281,ls), +(495,294,o), +(486,303,o), +(473,303,cs), +(113,303,ls), +(100,303,o), +(91,294,o), +(91,281,cs), +(91,265,ls), +(91,252,o), +(100,243,o), +(113,243,cs) +); +} +); +width = 586; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,0,ls), +(488,0,o), +(500,12,o), +(500,27,cs), +(500,221,l), +(725,669,ls), +(726,671,o), +(727,675,o), +(727,678,cs), +(727,690,o), +(717,700,o), +(705,700,cs), +(517,700,ls), +(490,700,o), +(478,681,o), +(475,675,cs), +(375,474,l), +(275,675,ls), +(272,681,o), +(260,700,o), +(233,700,cs), +(45,700,ls), +(33,700,o), +(23,690,o), +(23,678,cs), +(23,675,o), +(24,671,o), +(25,669,cs), +(250,220,l), +(250,27,ls), +(250,12,o), +(262,0,o), +(277,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(618,33,ls), +(633,33,o), +(645,45,o), +(645,60,cs), +(645,176,ls), +(645,191,o), +(633,203,o), +(618,203,cs), +(133,203,ls), +(118,203,o), +(106,191,o), +(106,176,cs), +(106,60,ls), +(106,45,o), +(118,33,o), +(133,33,cs) +); +}, +{ +closed = 1; +nodes = ( +(618,203,ls), +(633,203,o), +(645,215,o), +(645,230,cs), +(645,346,ls), +(645,361,o), +(633,373,o), +(618,373,cs), +(133,373,ls), +(118,373,o), +(106,361,o), +(106,346,cs), +(106,230,ls), +(106,215,o), +(118,203,o), +(133,203,cs) +); +} +); +width = 750; +}, +{ +associatedMasterId = "581BC726-83A6-4935-8633-5A6508251040"; +attr = { +axisRules = ( +{ +min = 125; +} +); +}; +color = 6; +layerId = "B3BF387E-F91C-4B96-8EAF-E916E5FAFDC7"; +name = "[125]"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,0,ls), +(316,0,o), +(325,9,o), +(325,22,cs), +(325,294,l), +(546,667,ls), +(548,671,o), +(550,675,o), +(550,680,cs), +(550,691,o), +(541,700,o), +(530,700,cs), +(508,700,ls), +(499,700,o), +(491,695,o), +(485,685,cs), +(293,361,l), +(101,685,ls), +(95,695,o), +(87,700,o), +(78,700,cs), +(56,700,ls), +(45,700,o), +(36,691,o), +(36,680,cs), +(36,675,o), +(38,671,o), +(40,667,cs), +(261,294,l), +(261,22,ls), +(261,9,o), +(270,0,o), +(283,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(473,193,ls), +(486,193,o), +(495,202,o), +(495,215,cs), +(495,231,ls), +(495,244,o), +(486,253,o), +(473,253,cs), +(113,253,ls), +(100,253,o), +(91,244,o), +(91,231,cs), +(91,215,ls), +(91,202,o), +(100,193,o), +(113,193,cs) +); +} +); +width = 586; +}, +{ +associatedMasterId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +attr = { +axisRules = ( +{ +min = 125; +} +); +}; +color = 6; +layerId = "2CB62000-763C-4C88-A70F-59E70F254835"; +name = "[125]"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,0,ls), +(488,0,o), +(500,12,o), +(500,27,cs), +(500,221,l), +(725,669,ls), +(726,671,o), +(727,675,o), +(727,678,cs), +(727,690,o), +(717,700,o), +(705,700,cs), +(517,700,ls), +(490,700,o), +(478,681,o), +(475,675,cs), +(375,474,l), +(275,675,ls), +(272,681,o), +(260,700,o), +(233,700,cs), +(45,700,ls), +(33,700,o), +(23,690,o), +(23,678,cs), +(23,675,o), +(24,671,o), +(25,669,cs), +(250,220,l), +(250,27,ls), +(250,12,o), +(262,0,o), +(277,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(618,133,ls), +(633,133,o), +(645,145,o), +(645,160,cs), +(645,276,ls), +(645,291,o), +(633,303,o), +(618,303,cs), +(133,303,ls), +(118,303,o), +(106,291,o), +(106,276,cs), +(106,160,ls), +(106,145,o), +(118,133,o), +(133,133,cs) +); +} +); +width = 750; +} +); +unicode = 165; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 322; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = divisionslash; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = slash; +} +); +width = 459; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = slash; +} +); +width = 579; +} +); +unicode = 8725; +}, +{ +color = 6; +glyphname = plus; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,14); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(321,33,ls), +(334,33,o), +(343,42,o), +(343,55,cs), +(343,274,l), +(561,274,ls), +(574,274,o), +(583,283,o), +(583,296,cs), +(583,310,ls), +(583,323,o), +(574,332,o), +(561,332,cs), +(343,332,l), +(343,545,ls), +(343,558,o), +(334,567,o), +(321,567,cs), +(306,567,ls), +(293,567,o), +(284,558,o), +(284,545,cs), +(284,332,l), +(67,332,ls), +(54,332,o), +(45,323,o), +(45,310,cs), +(45,296,ls), +(45,283,o), +(54,274,o), +(67,274,cs), +(284,274,l), +(284,55,ls), +(284,42,o), +(293,33,o), +(306,33,cs) +); +} +); +width = 628; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(359,33,ls), +(374,33,o), +(386,45,o), +(386,60,cs), +(386,221,l), +(539,221,ls), +(554,221,o), +(566,233,o), +(566,248,cs), +(566,357,ls), +(566,372,o), +(554,384,o), +(539,384,cs), +(386,384,l), +(386,540,ls), +(386,555,o), +(374,567,o), +(359,567,cs), +(237,567,ls), +(222,567,o), +(210,555,o), +(210,540,cs), +(210,384,l), +(55,384,ls), +(40,384,o), +(28,372,o), +(28,357,cs), +(28,248,ls), +(28,233,o), +(40,221,o), +(55,221,cs), +(210,221,l), +(210,60,ls), +(210,45,o), +(222,33,o), +(237,33,cs) +); +} +); +width = 594; +} +); +unicode = 43; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 319; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = minus; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(552,271,ls), +(565,271,o), +(574,280,o), +(574,293,cs), +(574,307,ls), +(574,320,o), +(565,329,o), +(552,329,cs), +(98,329,ls), +(85,329,o), +(76,320,o), +(76,307,cs), +(76,293,ls), +(76,280,o), +(85,271,o), +(98,271,cs) +); +} +); +width = 650; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(563,219,ls), +(578,219,o), +(590,231,o), +(590,246,cs), +(590,355,ls), +(590,370,o), +(578,382,o), +(563,382,cs), +(79,382,ls), +(64,382,o), +(52,370,o), +(52,355,cs), +(52,246,ls), +(52,231,o), +(64,219,o), +(79,219,cs) +); +} +); +width = 642; +} +); +unicode = 8722; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 558; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = multiply; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(95,93,o), +(108,93,o), +(117,102,c), +(270,255,l), +(424,102,l), +(433,93,o), +(446,93,o), +(455,102,c), +(467,114,l), +(476,123,o), +(476,136,o), +(467,145,c), +(313,298,l), +(467,452,l), +(476,461,o), +(476,474,o), +(467,483,c), +(455,495,l), +(446,504,o), +(433,504,o), +(424,495,c), +(270,341,l), +(117,495,l), +(108,504,o), +(95,504,o), +(86,495,c), +(74,483,l), +(65,474,o), +(65,461,o), +(74,452,c), +(227,298,l), +(74,145,l), +(65,136,o), +(65,123,o), +(74,114,c), +(86,102,l) +); +} +); +width = 541; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(171,10,o), +(188,10,o), +(199,20,cs), +(320,141,l), +(440,21,ls), +(451,11,o), +(467,11,o), +(478,21,cs), +(598,141,ls), +(608,151,o), +(608,168,o), +(598,179,cs), +(478,299,l), +(598,419,ls), +(608,430,o), +(608,447,o), +(598,457,cs), +(478,577,ls), +(467,587,o), +(451,587,o), +(440,577,cs), +(320,457,l), +(199,578,ls), +(188,588,o), +(171,588,o), +(161,578,cs), +(41,458,ls), +(31,447,o), +(31,431,o), +(41,420,cs), +(162,299,l), +(41,178,ls), +(31,167,o), +(31,151,o), +(41,140,cs), +(161,20,ls) +); +} +); +width = 639; +} +); +unicode = 215; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 634; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 264; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 907; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 60; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = divide; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (1,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(470,271,ls), +(483,271,o), +(492,280,o), +(492,293,cs), +(492,307,ls), +(492,320,o), +(483,329,o), +(470,329,cs), +(95,329,ls), +(82,329,o), +(73,320,o), +(73,307,cs), +(73,293,ls), +(73,280,o), +(82,271,o), +(95,271,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,79,ls), +(319,79,o), +(329,88,o), +(329,101,cs), +(329,149,ls), +(329,162,o), +(319,172,o), +(306,172,cs), +(258,172,ls), +(245,172,o), +(236,162,o), +(236,149,cs), +(236,101,ls), +(236,88,o), +(245,79,o), +(258,79,cs) +); +}, +{ +closed = 1; +nodes = ( +(306,429,ls), +(319,429,o), +(329,438,o), +(329,451,cs), +(329,499,ls), +(329,512,o), +(319,522,o), +(306,522,cs), +(258,522,ls), +(245,522,o), +(236,512,o), +(236,499,cs), +(236,451,ls), +(236,438,o), +(245,429,o), +(258,429,cs) +); +} +); +width = 565; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(461,215,ls), +(476,215,o), +(488,227,o), +(488,242,cs), +(488,358,ls), +(488,373,o), +(476,385,o), +(461,385,cs), +(56,385,ls), +(41,385,o), +(29,373,o), +(29,358,cs), +(29,242,ls), +(29,227,o), +(41,215,o), +(56,215,cs) +); +}, +{ +closed = 1; +nodes = ( +(320,24,ls), +(335,24,o), +(347,36,o), +(347,51,cs), +(347,165,ls), +(347,180,o), +(335,192,o), +(320,192,cs), +(196,192,ls), +(181,192,o), +(169,180,o), +(169,165,cs), +(169,51,ls), +(169,36,o), +(181,24,o), +(196,24,cs) +); +}, +{ +closed = 1; +nodes = ( +(320,408,ls), +(335,408,o), +(347,420,o), +(347,435,cs), +(347,549,ls), +(347,564,o), +(335,576,o), +(320,576,cs), +(196,576,ls), +(181,576,o), +(169,564,o), +(169,549,cs), +(169,435,ls), +(169,420,o), +(181,408,o), +(196,408,cs) +); +} +); +width = 517; +} +); +unicode = 247; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 104; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 301; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 269; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = equal; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,396,ls), +(486,396,o), +(495,405,o), +(495,418,cs), +(495,432,ls), +(495,445,o), +(486,454,o), +(473,454,cs), +(98,454,ls), +(85,454,o), +(76,445,o), +(76,432,cs), +(76,418,ls), +(76,405,o), +(85,396,o), +(98,396,cs) +); +}, +{ +closed = 1; +nodes = ( +(473,146,ls), +(486,146,o), +(495,155,o), +(495,168,cs), +(495,182,ls), +(495,195,o), +(486,204,o), +(473,204,cs), +(98,204,ls), +(85,204,o), +(76,195,o), +(76,182,cs), +(76,168,ls), +(76,155,o), +(85,146,o), +(98,146,cs) +); +} +); +width = 571; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(484,340,ls), +(499,340,o), +(511,352,o), +(511,367,cs), +(511,483,ls), +(511,498,o), +(499,510,o), +(484,510,cs), +(79,510,ls), +(64,510,o), +(52,498,o), +(52,483,cs), +(52,367,ls), +(52,352,o), +(64,340,o), +(79,340,cs) +); +}, +{ +closed = 1; +nodes = ( +(484,90,ls), +(499,90,o), +(511,102,o), +(511,117,cs), +(511,233,ls), +(511,248,o), +(499,260,o), +(484,260,cs), +(79,260,ls), +(64,260,o), +(52,248,o), +(52,233,cs), +(52,117,ls), +(52,102,o), +(64,90,o), +(79,90,cs) +); +} +); +width = 563; +} +); +unicode = 61; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 489; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = notequal; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,24); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(171,21,l), +(184,21,o), +(191,31,o), +(193,36,c), +(239,146,l), +(460,146,l), +(473,146,o), +(482,155,o), +(482,168,c), +(482,182,l), +(482,195,o), +(473,204,o), +(460,204,c), +(263,204,l), +(343,396,l), +(460,396,l), +(473,396,o), +(482,405,o), +(482,418,c), +(482,432,l), +(482,445,o), +(473,454,o), +(460,454,c), +(367,454,l), +(407,548,l), +(409,553,o), +(410,558,o), +(410,560,cs), +(410,571,o), +(401,580,o), +(390,580,c), +(373,580,l), +(360,580,o), +(353,570,o), +(351,565,c), +(304,454,l), +(85,454,l), +(72,454,o), +(63,445,o), +(63,432,c), +(63,418,l), +(63,405,o), +(72,396,o), +(85,396,c), +(280,396,l), +(200,204,l), +(85,204,l), +(72,204,o), +(63,195,o), +(63,182,c), +(63,168,l), +(63,155,o), +(72,146,o), +(85,146,c), +(176,146,l), +(137,53,l), +(135,48,o), +(134,43,o), +(134,41,cs), +(134,30,o), +(143,21,o), +(154,21,c) +); +} +); +width = 545; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(206,21,l), +(233,21,o), +(245,38,o), +(250,51,c), +(266,90,l), +(480,90,l), +(495,90,o), +(507,102,o), +(507,117,c), +(507,233,l), +(507,248,o), +(495,260,o), +(480,260,c), +(338,260,l), +(371,340,l), +(480,340,l), +(495,340,o), +(507,352,o), +(507,367,c), +(507,483,l), +(507,498,o), +(495,510,o), +(480,510,c), +(442,510,l), +(459,549,l), +(461,554,o), +(461,556,o), +(461,558,cs), +(461,570,o), +(451,580,o), +(439,580,c), +(345,580,l), +(320,580,o), +(307,564,o), +(301,550,c), +(284,510,l), +(75,510,l), +(60,510,o), +(48,498,o), +(48,483,c), +(48,367,l), +(48,352,o), +(60,340,o), +(75,340,c), +(214,340,l), +(181,260,l), +(75,260,l), +(60,260,o), +(48,248,o), +(48,233,c), +(48,117,l), +(48,102,o), +(60,90,o), +(75,90,c), +(110,90,l), +(95,52,l), +(93,47,o), +(93,45,o), +(93,43,cs), +(93,31,o), +(103,21,o), +(115,21,c) +); +} +); +width = 551; +} +); +unicode = 8800; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = "-348"; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 279; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = greater; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,7); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,34,o), +(112,42,o), +(118,46,cs), +(413,250,ls), +(434,265,o), +(442,278,o), +(442,296,cs), +(442,308,l), +(442,326,o), +(434,339,o), +(413,354,cs), +(118,558,ls), +(112,562,o), +(100,570,o), +(91,570,cs), +(80,570,o), +(71,563,o), +(71,550,cs), +(71,533,ls), +(71,520,o), +(76,513,o), +(92,502,cs), +(381,302,l), +(92,102,ls), +(76,91,o), +(71,84,o), +(71,71,cs), +(71,54,ls), +(71,41,o), +(80,34,o), +(91,34,cs) +); +} +); +width = 480; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(76,-10,o), +(80,-10,o), +(85,-7,cs), +(485,263,ls), +(503,275,o), +(514,284,o), +(514,305,cs), +(514,347,l), +(514,368,o), +(503,377,o), +(485,389,cs), +(85,659,ls), +(80,662,o), +(76,662,o), +(74,662,cs), +(62,662,o), +(53,653,o), +(53,641,cs), +(53,479,ls), +(53,453,o), +(73,442,o), +(85,435,cs), +(260,326,l), +(85,216,ls), +(73,209,o), +(53,199,o), +(53,173,cs), +(53,11,ls), +(53,-1,o), +(62,-10,o), +(74,-10,cs) +); +} +); +width = 538; +} +); +unicode = 62; +}, +{ +color = 6; +glyphname = less; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,22); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(401,33,o), +(410,40,o), +(410,53,cs), +(410,70,ls), +(410,83,o), +(405,90,o), +(389,101,cs), +(100,301,l), +(389,501,ls), +(405,512,o), +(410,519,o), +(410,532,cs), +(410,549,ls), +(410,562,o), +(401,569,o), +(390,569,cs), +(381,569,o), +(369,561,o), +(363,557,cs), +(68,353,ls), +(47,338,o), +(39,325,o), +(39,307,c), +(39,295,ls), +(39,277,o), +(47,264,o), +(68,249,cs), +(363,45,ls), +(369,41,o), +(381,33,o), +(390,33,cs) +); +} +); +width = 481; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(476,-9,o), +(485,0,o), +(485,12,cs), +(485,174,ls), +(485,200,o), +(465,210,o), +(453,217,cs), +(278,327,l), +(453,436,ls), +(465,443,o), +(485,454,o), +(485,480,cs), +(485,642,ls), +(485,654,o), +(476,663,o), +(464,663,cs), +(462,663,o), +(458,663,o), +(453,660,cs), +(53,390,ls), +(35,378,o), +(24,369,o), +(24,348,cs), +(24,306,ls), +(24,285,o), +(35,276,o), +(53,264,cs), +(453,-6,ls), +(458,-9,o), +(462,-9,o), +(464,-9,cs) +); +} +); +width = 538; +} +); +unicode = 60; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 620; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 915; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = greaterequal; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,7); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,194,o), +(124,199,o), +(132,203,cs), +(427,349,l), +(448,361,o), +(456,372,o), +(456,390,cs), +(456,410,l), +(456,428,o), +(448,439,o), +(427,451,c), +(132,597,ls), +(124,601,o), +(114,606,o), +(105,606,cs), +(94,606,o), +(85,599,o), +(85,586,cs), +(85,572,ls), +(85,557,o), +(90,549,o), +(106,541,cs), +(393,400,l), +(106,259,ls), +(90,251,o), +(85,243,o), +(85,228,cs), +(85,214,ls), +(85,201,o), +(94,194,o), +(105,194,cs) +); +}, +{ +closed = 1; +nodes = ( +(434,0,l), +(447,0,o), +(456,9,o), +(456,22,cs), +(456,36,ls), +(456,49,o), +(447,58,o), +(434,58,cs), +(107,58,ls), +(94,58,o), +(85,49,o), +(85,36,cs), +(85,22,ls), +(85,9,o), +(94,0,o), +(107,0,cs) +); +} +); +width = 527; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(77,194,o), +(81,195,o), +(86,197,cs), +(486,377,ls), +(506,386,o), +(515,398,o), +(515,419,cs), +(515,461,l), +(515,482,o), +(506,494,o), +(486,503,cs), +(86,683,ls), +(81,685,o), +(77,686,o), +(75,686,cs), +(63,686,o), +(54,677,o), +(54,665,cs), +(54,543,ls), +(54,517,o), +(73,503,o), +(86,499,cs), +(261,440,l), +(86,380,ls), +(73,375,o), +(54,363,o), +(54,337,cs), +(54,215,ls), +(54,203,o), +(63,194,o), +(75,194,cs) +); +}, +{ +closed = 1; +nodes = ( +(488,0,ls), +(503,0,o), +(515,12,o), +(515,27,cs), +(515,136,ls), +(515,151,o), +(503,163,o), +(488,163,cs), +(81,163,l), +(66,163,o), +(54,151,o), +(54,136,cs), +(54,27,ls), +(54,12,o), +(66,0,o), +(81,0,cs) +); +} +); +width = 556; +} +); +unicode = 8805; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 400; +} +); +}; +}, +{ +color = 6; +glyphname = lessequal; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,23); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(433,194,o), +(442,201,o), +(442,214,cs), +(442,228,ls), +(442,243,o), +(437,251,o), +(421,259,cs), +(134,400,l), +(421,541,ls), +(437,549,o), +(442,557,o), +(442,572,cs), +(442,586,ls), +(442,599,o), +(433,606,o), +(422,606,cs), +(413,606,o), +(403,601,o), +(395,597,cs), +(100,451,l), +(79,439,o), +(71,428,o), +(71,410,cs), +(71,390,ls), +(71,372,o), +(79,361,o), +(100,349,c), +(395,203,ls), +(403,199,o), +(413,194,o), +(422,194,cs) +); +}, +{ +closed = 1; +nodes = ( +(420,0,ls), +(433,0,o), +(442,9,o), +(442,22,cs), +(442,36,ls), +(442,49,o), +(433,58,o), +(420,58,cs), +(93,58,ls), +(80,58,o), +(71,49,o), +(71,36,cs), +(71,22,ls), +(71,9,o), +(80,0,o), +(93,0,cs) +); +} +); +width = 527; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(493,194,o), +(502,203,o), +(502,215,cs), +(502,337,ls), +(502,363,o), +(483,375,o), +(470,380,cs), +(295,440,l), +(470,499,ls), +(483,503,o), +(502,517,o), +(502,543,cs), +(502,665,ls), +(502,677,o), +(493,686,o), +(481,686,cs), +(479,686,o), +(475,685,o), +(470,683,cs), +(70,503,ls), +(50,494,o), +(41,482,o), +(41,461,c), +(41,419,ls), +(41,398,o), +(50,386,o), +(70,377,cs), +(470,197,ls), +(475,195,o), +(479,194,o), +(481,194,cs) +); +}, +{ +closed = 1; +nodes = ( +(475,0,ls), +(490,0,o), +(502,12,o), +(502,27,cs), +(502,136,ls), +(502,151,o), +(490,163,o), +(475,163,c), +(68,163,ls), +(53,163,o), +(41,151,o), +(41,136,cs), +(41,27,ls), +(41,12,o), +(53,0,o), +(68,0,cs) +); +} +); +width = 556; +} +); +unicode = 8804; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 686; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 194; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 400; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 50; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 421; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = plusminus; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,14); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(286,193,ls), +(299,193,o), +(308,202,o), +(308,215,cs), +(308,373,l), +(465,373,ls), +(478,373,o), +(487,382,o), +(487,395,cs), +(487,409,ls), +(487,422,o), +(478,431,o), +(465,431,cs), +(308,431,l), +(308,585,ls), +(308,598,o), +(299,607,o), +(286,607,cs), +(270,607,ls), +(257,607,o), +(248,598,o), +(248,585,cs), +(248,431,l), +(91,431,ls), +(78,431,o), +(69,422,o), +(69,409,cs), +(69,395,ls), +(69,382,o), +(78,373,o), +(91,373,cs), +(248,373,l), +(248,215,ls), +(248,202,o), +(257,193,o), +(270,193,cs) +); +}, +{ +closed = 1; +nodes = ( +(455,0,ls), +(468,0,o), +(477,9,o), +(477,22,cs), +(477,36,ls), +(477,49,o), +(468,58,o), +(455,58,cs), +(101,58,ls), +(88,58,o), +(79,49,o), +(79,36,cs), +(79,22,ls), +(79,9,o), +(88,0,o), +(101,0,cs) +); +} +); +width = 556; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(350,186,ls), +(365,186,o), +(377,198,o), +(377,213,cs), +(377,354,l), +(510,354,ls), +(525,354,o), +(537,366,o), +(537,381,cs), +(537,490,ls), +(537,505,o), +(525,517,o), +(510,517,cs), +(377,517,l), +(377,653,ls), +(377,668,o), +(365,680,o), +(350,680,cs), +(228,680,ls), +(213,680,o), +(201,668,o), +(201,653,cs), +(201,517,l), +(66,517,ls), +(51,517,o), +(39,505,o), +(39,490,cs), +(39,381,ls), +(39,366,o), +(51,354,o), +(66,354,cs), +(201,354,l), +(201,213,ls), +(201,198,o), +(213,186,o), +(228,186,cs) +); +}, +{ +closed = 1; +nodes = ( +(500,0,ls), +(515,0,o), +(527,12,o), +(527,27,cs), +(527,136,ls), +(527,151,o), +(515,163,o), +(500,163,cs), +(76,163,ls), +(61,163,o), +(49,151,o), +(49,136,cs), +(49,27,ls), +(49,12,o), +(61,0,o), +(76,0,cs) +); +} +); +width = 576; +} +); +unicode = 177; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 400; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 259; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 57; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = approxequal; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(99,377,o), +(104,379,o), +(109,382,cs), +(125,392,o), +(147,412,o), +(186,412,cs), +(261,412,o), +(297,377,o), +(377,377,cs), +(433,377,o), +(487,407,o), +(487,432,cs), +(487,455,ls), +(487,465,o), +(480,472,o), +(470,472,cs), +(466,472,o), +(462,471,o), +(458,468,cs), +(441,459,o), +(419,437,o), +(378,437,cs), +(306,437,o), +(271,472,o), +(187,472,cs), +(131,472,o), +(77,442,o), +(77,417,cs), +(77,394,ls), +(77,384,o), +(84,377,o), +(94,377,cs) +); +}, +{ +closed = 1; +nodes = ( +(98,127,o), +(103,129,o), +(108,132,cs), +(125,141,o), +(146,162,o), +(186,162,cs), +(261,162,o), +(297,127,o), +(377,127,cs), +(433,127,o), +(487,157,o), +(487,182,cs), +(487,205,ls), +(487,215,o), +(480,222,o), +(470,222,cs), +(467,222,o), +(464,221,o), +(460,219,cs), +(443,211,o), +(421,187,o), +(378,187,cs), +(306,187,o), +(271,222,o), +(187,222,cs), +(131,222,o), +(77,192,o), +(77,167,cs), +(77,144,ls), +(77,134,o), +(84,127,o), +(94,127,cs) +); +} +); +width = 563; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(82,317,o), +(88,321,o), +(93,325,cs), +(103,334,o), +(129,351,o), +(160,351,cs), +(253,351,o), +(292,309,o), +(391,309,cs), +(459,309,o), +(501,345,o), +(501,389,cs), +(501,497,ls), +(501,522,o), +(498,534,o), +(479,534,c), +(470,533,o), +(464,529,o), +(459,525,cs), +(449,516,o), +(423,499,o), +(392,499,cs), +(299,499,o), +(260,541,o), +(161,541,cs), +(93,541,o), +(51,505,o), +(51,461,cs), +(51,353,ls), +(51,328,o), +(54,316,o), +(73,316,c) +); +}, +{ +closed = 1; +nodes = ( +(82,67,o), +(88,71,o), +(93,75,cs), +(103,84,o), +(129,101,o), +(160,101,cs), +(253,101,o), +(292,59,o), +(391,59,cs), +(459,59,o), +(501,95,o), +(501,139,cs), +(501,247,ls), +(501,272,o), +(498,284,o), +(479,284,c), +(470,283,o), +(464,279,o), +(459,275,cs), +(449,266,o), +(423,249,o), +(392,249,cs), +(299,249,o), +(260,291,o), +(161,291,cs), +(93,291,o), +(51,255,o), +(51,211,cs), +(51,103,ls), +(51,78,o), +(54,66,o), +(73,66,c) +); +} +); +width = 551; +} +); +unicode = 8776; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 299; +} +); +}; +}, +{ +color = 6; +glyphname = asciitilde; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,21); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,24); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,31); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,5); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(98,252,o), +(102,254,o), +(107,256,cs), +(123,265,o), +(145,287,o), +(186,287,cs), +(261,287,o), +(297,252,o), +(377,252,cs), +(433,252,o), +(487,282,o), +(487,307,cs), +(487,330,ls), +(487,340,o), +(480,347,o), +(470,347,cs), +(466,347,o), +(462,345,o), +(457,343,cs), +(441,334,o), +(419,312,o), +(378,312,cs), +(306,312,o), +(271,347,o), +(187,347,cs), +(131,347,o), +(77,317,o), +(77,292,cs), +(77,269,ls), +(77,259,o), +(84,252,o), +(94,252,cs) +); +} +); +width = 563; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(81,192,o), +(87,196,o), +(92,200,cs), +(102,209,o), +(128,226,o), +(159,226,cs), +(252,226,o), +(291,184,o), +(390,184,cs), +(458,184,o), +(500,220,o), +(500,264,cs), +(500,372,ls), +(500,397,o), +(497,409,o), +(478,409,c), +(469,408,o), +(463,404,o), +(458,400,cs), +(448,391,o), +(422,374,o), +(391,374,cs), +(298,374,o), +(259,416,o), +(160,416,cs), +(92,416,o), +(50,380,o), +(50,336,cs), +(50,228,ls), +(50,203,o), +(53,191,o), +(72,191,c) +); +} +); +width = 549; +} +); +unicode = 126; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 70; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 480; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 275; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = logicalnot; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,20); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(483,170,ls), +(496,170,o), +(505,179,o), +(505,192,cs), +(505,328,ls), +(505,341,o), +(496,350,o), +(483,350,cs), +(98,350,ls), +(85,350,o), +(76,341,o), +(76,328,cs), +(76,314,ls), +(76,301,o), +(85,292,o), +(98,292,cs), +(443,292,l), +(443,192,ls), +(443,179,o), +(452,170,o), +(465,170,c) +); +} +); +width = 581; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(484,113,ls), +(499,113,o), +(511,125,o), +(511,140,cs), +(511,383,ls), +(511,398,o), +(499,410,o), +(484,410,cs), +(69,410,ls), +(54,410,o), +(42,398,o), +(42,383,cs), +(42,267,ls), +(42,252,o), +(54,240,o), +(69,240,cs), +(341,240,l), +(341,140,ls), +(341,125,o), +(353,113,o), +(368,113,cs) +); +} +); +width = 564; +} +); +unicode = 172; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 350; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 439; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = asciicircum; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,20); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(104,575,ls), +(112,575,o), +(124,578,o), +(129,582,cs), +(209,642,l), +(289,582,ls), +(294,578,o), +(306,575,o), +(314,575,cs), +(331,575,ls), +(341,575,o), +(345,578,o), +(345,586,cs), +(345,592,o), +(341,598,o), +(333,606,cs), +(246,691,ls), +(232,705,o), +(224,705,o), +(214,705,cs), +(204,705,ls), +(194,705,o), +(186,705,o), +(172,691,cs), +(85,606,ls), +(77,598,o), +(73,592,o), +(73,586,cs), +(73,578,o), +(77,575,o), +(87,575,cs) +); +} +); +width = 418; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(114,595,ls), +(127,595,o), +(140,595,o), +(154,602,cs), +(246,644,l), +(338,602,ls), +(352,595,o), +(365,595,o), +(378,595,cs), +(444,595,ls), +(454,595,o), +(460,601,o), +(460,611,cs), +(460,616,o), +(458,621,o), +(455,624,cs), +(343,746,ls), +(330,760,o), +(321,765,o), +(306,765,cs), +(186,765,ls), +(171,765,o), +(162,760,o), +(149,746,cs), +(37,624,ls), +(34,621,o), +(32,616,o), +(32,611,cs), +(32,601,o), +(38,595,o), +(48,595,cs) +); +} +); +width = 492; +} +); +unicode = 94; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 575; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 705; +} +); +}; +}, +{ +color = 6; +glyphname = infinity; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,5); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(318,49,o), +(371,120,o), +(416,200,c), +(462,119,o), +(516,49,o), +(600,49,cs), +(724,49,o), +(769,156,o), +(769,271,cs), +(769,386,o), +(724,493,o), +(599,493,cs), +(516,493,o), +(463,416,o), +(417,331,c), +(371,416,o), +(317,493,o), +(231,493,cs), +(107,493,o), +(63,386,o), +(63,271,cs), +(63,156,o), +(108,49,o), +(231,49,cs) +); +}, +{ +closed = 1; +nodes = ( +(169,109,o), +(123,161,o), +(123,271,cs), +(123,381,o), +(169,433,o), +(231,433,cs), +(294,433,o), +(335,352,o), +(381,264,c), +(338,182,o), +(295,109,o), +(231,109,cs) +); +}, +{ +closed = 1; +nodes = ( +(535,108,o), +(493,183,o), +(450,266,c), +(493,353,o), +(534,433,o), +(601,433,cs), +(662,433,o), +(709,381,o), +(709,271,cs), +(709,161,o), +(665,108,o), +(601,108,cs) +); +} +); +width = 832; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(354,49,o), +(410,97,o), +(460,150,c), +(510,97,o), +(566,49,o), +(655,49,cs), +(809,49,o), +(883,166,o), +(883,271,cs), +(883,376,o), +(809,493,o), +(655,493,cs), +(566,493,o), +(510,445,o), +(460,393,c), +(410,445,o), +(354,493,o), +(265,493,cs), +(111,493,o), +(37,376,o), +(37,271,cs), +(37,166,o), +(111,49,o), +(265,49,cs) +); +}, +{ +closed = 1; +nodes = ( +(238,205,o), +(200,231,o), +(200,271,cs), +(200,311,o), +(238,337,o), +(270,337,cs), +(317,337,o), +(365,271,o), +(365,271,c), +(365,271,o), +(317,205,o), +(270,205,cs) +); +}, +{ +closed = 1; +nodes = ( +(603,205,o), +(555,271,o), +(555,271,c), +(555,271,o), +(603,337,o), +(650,337,cs), +(682,337,o), +(720,311,o), +(720,271,cs), +(720,231,o), +(682,205,o), +(650,205,cs) +); +} +); +width = 920; +} +); +unicode = 8734; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 407; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 404; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 214; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = integral; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(91,-225,ls), +(213,-225,o), +(242,-151,o), +(242,-57,cs), +(242,572,ls), +(242,643,o), +(261,682,o), +(332,682,cs), +(384,682,ls), +(397,682,o), +(406,691,o), +(406,704,cs), +(406,718,ls), +(406,731,o), +(397,740,o), +(384,740,cs), +(332,740,ls), +(210,740,o), +(181,666,o), +(181,577,cs), +(181,-57,ls), +(181,-118,o), +(172,-167,o), +(91,-167,cs), +(38,-167,ls), +(25,-167,o), +(16,-176,o), +(16,-189,cs), +(16,-203,ls), +(16,-216,o), +(25,-225,o), +(38,-225,cs) +); +} +); +width = 421; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(97,-225,ls), +(217,-225,o), +(319,-147,o), +(319,-17,cs), +(319,472,ls), +(319,513,o), +(342,535,o), +(382,535,cs), +(413,535,ls), +(428,535,o), +(440,547,o), +(440,562,cs), +(440,673,ls), +(440,688,o), +(428,700,o), +(413,700,cs), +(362,700,ls), +(242,700,o), +(140,622,o), +(140,492,cs), +(140,3,l), +(140,-38,o), +(117,-60,o), +(77,-60,cs), +(46,-60,ls), +(31,-60,o), +(19,-72,o), +(19,-87,cs), +(19,-198,ls), +(19,-213,o), +(31,-225,o), +(46,-225,cs) +); +} +); +width = 459; +} +); +unicode = 8747; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-200"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 532; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 740; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 441; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = increment; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(558,0,l), +(573,0,o), +(585,12,o), +(585,27,cs), +(585,42,ls), +(585,50,o), +(582,59,o), +(579,67,cs), +(361,627,ls), +(355,641,o), +(343,660,o), +(316,660,cs), +(299,660,ls), +(272,660,o), +(260,641,o), +(254,627,cs), +(36,67,ls), +(33,59,o), +(30,50,o), +(30,42,cs), +(30,27,ls), +(30,12,o), +(42,0,o), +(57,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(307,599,l), +(519,58,l), +(96,58,l) +); +} +); +width = 615; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(692,0,ls), +(707,0,o), +(719,12,o), +(719,27,cs), +(719,72,ls), +(719,90,o), +(716,94,o), +(713,102,cs), +(495,627,ls), +(489,641,o), +(477,660,o), +(450,660,cs), +(293,660,ls), +(266,660,o), +(254,641,o), +(248,627,cs), +(30,102,ls), +(27,94,o), +(24,90,o), +(24,72,cs), +(24,27,ls), +(24,12,o), +(36,0,o), +(51,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(371,462,l), +(478,174,l), +(265,174,l) +); +} +); +width = 743; +} +); +unicode = 8710; +}, +{ +color = 6; +glyphname = product; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,-200,ls), +(134,-200,o), +(143,-191,o), +(143,-178,cs), +(143,642,l), +(456,642,l), +(456,-178,ls), +(456,-191,o), +(465,-200,o), +(478,-200,cs), +(496,-200,ls), +(509,-200,o), +(518,-191,o), +(518,-178,cs), +(518,678,ls), +(518,691,o), +(509,700,o), +(496,700,cs), +(103,700,ls), +(90,700,o), +(81,691,o), +(81,678,cs), +(81,-178,ls), +(81,-191,o), +(90,-200,o), +(103,-200,cs) +); +} +); +width = 599; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,-200,ls), +(258,-200,o), +(270,-188,o), +(270,-173,cs), +(270,468,l), +(432,468,l), +(432,-173,ls), +(432,-188,o), +(444,-200,o), +(459,-200,cs), +(618,-200,ls), +(633,-200,o), +(645,-188,o), +(645,-173,cs), +(645,673,ls), +(645,688,o), +(633,700,o), +(618,700,cs), +(84,700,ls), +(69,700,o), +(57,688,o), +(57,673,cs), +(57,-173,ls), +(57,-189,o), +(69,-200,o), +(84,-200,cs) +); +} +); +width = 702; +} +); +unicode = 8719; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-200"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 477; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 101; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = summation; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,40); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(425,-200,ls), +(438,-200,o), +(447,-191,o), +(447,-178,cs), +(447,-164,ls), +(447,-151,o), +(438,-142,o), +(425,-142,cs), +(123,-142,l), +(432,198,ls), +(441,208,o), +(447,216,o), +(447,231,cs), +(447,269,ls), +(447,284,o), +(441,292,o), +(432,302,cs), +(123,642,l), +(425,642,ls), +(438,642,o), +(447,651,o), +(447,664,cs), +(447,678,ls), +(447,691,o), +(438,700,o), +(425,700,cs), +(63,700,ls), +(50,700,o), +(41,691,o), +(41,678,cs), +(41,661,ls), +(41,651,o), +(45,642,o), +(55,630,cs), +(392,257,l), +(392,243,l), +(55,-130,ls), +(45,-142,o), +(41,-151,o), +(41,-161,cs), +(41,-178,l), +(41,-191,o), +(50,-200,o), +(63,-200,cs) +); +} +); +width = 509; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(602,-200,ls), +(617,-200,o), +(629,-188,o), +(629,-173,cs), +(629,5,ls), +(629,20,o), +(617,32,o), +(602,32,cs), +(385,32,l), +(596,192,ls), +(613,205,o), +(629,217,o), +(629,236,cs), +(629,264,ls), +(629,283,o), +(613,295,o), +(596,308,cs), +(385,468,l), +(602,468,ls), +(617,468,o), +(629,480,o), +(629,495,cs), +(629,673,ls), +(629,688,o), +(617,700,o), +(602,700,cs), +(68,700,ls), +(53,700,o), +(41,688,o), +(41,673,cs), +(41,519,ls), +(41,492,o), +(56,481,o), +(71,469,cs), +(351,252,l), +(351,249,l), +(71,31,ls), +(56,19,o), +(41,8,o), +(41,-19,cs), +(41,-173,ls), +(41,-188,o), +(53,-200,o), +(68,-200,cs) +); +} +); +width = 679; +} +); +unicode = 8721; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-200"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 250; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 476; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = radical; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,17); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(260,0,ls), +(273,0,o), +(280,9,o), +(285,25,cs), +(501,802,l), +(627,802,ls), +(640,802,o), +(649,811,o), +(649,824,cs), +(649,838,ls), +(649,851,o), +(640,860,o), +(627,860,cs), +(471,860,ls), +(457,860,o), +(449,846,o), +(446,836,cs), +(234,73,l), +(90,505,ls), +(88,510,o), +(81,520,o), +(68,520,cs), +(48,520,ls), +(37,520,o), +(28,511,o), +(28,500,cs), +(28,498,o), +(29,492,o), +(30,489,cs), +(189,15,ls), +(192,8,o), +(198,0,o), +(211,0,cs) +); +} +); +width = 664; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(347,0,ls), +(367,0,o), +(375,11,o), +(380,25,cs), +(599,700,l), +(742,700,ls), +(757,700,o), +(769,712,o), +(769,727,cs), +(769,833,ls), +(769,848,o), +(757,860,o), +(742,860,cs), +(479,860,ls), +(459,860,o), +(450,847,o), +(446,836,c), +(277,263,l), +(197,496,ls), +(193,507,o), +(184,520,o), +(164,520,cs), +(35,520,ls), +(22,520,o), +(11,509,o), +(11,496,cs), +(11,494,o), +(11,492,o), +(12,489,c), +(174,25,l), +(179,11,o), +(187,0,o), +(207,0,cs) +); +} +); +width = 785; +} +); +unicode = 8730; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 719; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 546; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 276; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = partialdiff; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(417,-10,o), +(493,94,o), +(492,231,cs), +(492,238,o), +(492,245,o), +(492,252,cs), +(485,503,o), +(401,590,o), +(288,687,cs), +(278,695,o), +(268,700,o), +(252,700,c), +(232,700,l), +(220,700,o), +(212,692,o), +(212,680,cs), +(212,675,o), +(215,669,o), +(229,658,cs), +(311,591,o), +(373,533,o), +(405,431,c), +(371,456,o), +(326,470,o), +(273,470,cs), +(129,470,o), +(53,368,o), +(54,231,c), +(53,94,o), +(129,-10,o), +(273,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(168,48,o), +(115,130,o), +(115,231,cs), +(115,235,o), +(115,239,o), +(115,243,cs), +(119,338,o), +(172,412,o), +(273,412,cs), +(374,412,o), +(427,338,o), +(431,243,cs), +(431,239,o), +(431,235,o), +(431,231,cs), +(431,130,o), +(378,48,o), +(273,48,cs) +); +} +); +width = 551; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(487,-10,o), +(595,68,o), +(604,225,cs), +(605,245,o), +(605,268,o), +(604,288,cs), +(594,483,o), +(520,604,o), +(404,687,cs), +(394,694,o), +(378,700,o), +(351,700,cs), +(163,700,ls), +(151,700,o), +(141,690,o), +(141,678,cs), +(141,673,o), +(145,665,o), +(154,659,cs), +(228,609,o), +(297,543,o), +(328,470,c), +(323,470,o), +(319,470,o), +(314,470,cs), +(151,470,o), +(24,392,o), +(24,230,cs), +(24,68,o), +(140,-10,o), +(314,-10,cs) +); +}, +{ +closed = 1; +nodes = ( +(277,150,o), +(270,171,o), +(269,204,cs), +(268,224,o), +(268,236,o), +(269,256,cs), +(271,288,o), +(277,310,o), +(314,310,cs), +(351,310,o), +(357,288,o), +(359,256,cs), +(360,236,o), +(360,223,o), +(359,203,cs), +(358,171,o), +(348,150,o), +(314,150,cs) +); +} +); +width = 636; +} +); +unicode = 8706; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 678; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 276; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = micro; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,14); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,30); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(115,-200,l), +(128,-200,o), +(137,-191,o), +(137,-178,c), +(137,69,l), +(171,24,o), +(215,-10,o), +(293,-10,cs), +(371,-10,o), +(415,24,o), +(449,69,c), +(449,22,l), +(449,9,o), +(458,0,o), +(471,0,c), +(488,0,l), +(501,0,o), +(510,9,o), +(510,22,c), +(510,498,l), +(510,511,o), +(501,520,o), +(488,520,c), +(471,520,l), +(458,520,o), +(449,511,o), +(449,498,c), +(449,219,l), +(449,112,o), +(368,48,o), +(293,48,cs), +(218,48,o), +(137,112,o), +(137,219,c), +(137,498,l), +(137,511,o), +(128,520,o), +(115,520,c), +(98,520,l), +(85,520,o), +(76,511,o), +(76,498,c), +(76,-178,l), +(76,-191,o), +(85,-200,o), +(98,-200,c) +); +} +); +width = 586; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,-199,ls), +(291,-199,o), +(303,-187,o), +(303,-172,cs), +(303,0,l), +(327,3,o), +(349,8,o), +(368,18,cs), +(388,27,o), +(405,41,o), +(418,60,c), +(418,27,ls), +(418,12,o), +(430,0,o), +(445,0,cs), +(620,0,ls), +(635,0,o), +(647,12,o), +(647,27,cs), +(647,493,ls), +(647,508,o), +(635,520,o), +(620,520,cs), +(430,520,ls), +(415,520,o), +(403,508,o), +(403,493,cs), +(403,224,ls), +(403,188,o), +(385,169,o), +(353,169,cs), +(321,169,o), +(303,188,o), +(303,224,cs), +(303,493,ls), +(303,508,o), +(291,520,o), +(276,520,cs), +(80,520,ls), +(65,520,o), +(53,508,o), +(53,493,cs), +(53,-172,ls), +(53,-187,o), +(65,-199,o), +(80,-199,cs) +); +} +); +width = 699; +} +); +unicode = 181; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-200"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-10"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 287; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = percent; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(125,0,ls), +(143,0,o), +(149,7,o), +(158,19,cs), +(651,669,ls), +(654,673,o), +(655,678,o), +(655,680,cs), +(655,692,o), +(647,700,o), +(635,700,cs), +(618,700,ls), +(600,700,o), +(594,693,o), +(585,681,cs), +(92,31,ls), +(89,27,o), +(88,22,o), +(88,20,cs), +(88,8,o), +(96,0,o), +(108,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(634,-6,o), +(683,49,o), +(687,129,cs), +(689,163,o), +(689,181,o), +(687,218,cs), +(683,298,o), +(639,354,o), +(547,354,cs), +(455,354,o), +(411,298,o), +(407,218,cs), +(405,181,o), +(405,163,o), +(407,129,cs), +(411,49,o), +(460,-6,o), +(547,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(487,50,o), +(468,94,o), +(465,132,cs), +(463,169,o), +(463,180,o), +(465,215,cs), +(467,255,o), +(488,298,o), +(547,298,cs), +(606,298,o), +(627,255,o), +(629,215,cs), +(631,180,o), +(631,169,o), +(629,132,cs), +(626,94,o), +(607,50,o), +(547,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(281,350,o), +(330,400,o), +(334,480,cs), +(336,514,o), +(336,532,o), +(334,569,cs), +(330,649,o), +(286,705,o), +(194,705,cs), +(102,705,o), +(58,649,o), +(54,569,cs), +(52,532,o), +(52,514,o), +(54,480,cs), +(58,400,o), +(107,350,o), +(194,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(134,401,o), +(115,445,o), +(112,483,cs), +(110,520,o), +(110,531,o), +(112,566,cs), +(114,606,o), +(135,649,o), +(194,649,cs), +(253,649,o), +(274,606,o), +(276,566,cs), +(278,531,o), +(278,520,o), +(276,483,cs), +(273,445,o), +(254,401,o), +(194,401,cs) +); +} +); +width = 741; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,0,ls), +(237,0,o), +(245,7,o), +(254,19,cs), +(748,669,ls), +(751,673,o), +(752,678,o), +(752,680,cs), +(752,692,o), +(742,700,o), +(728,700,cs), +(624,700,ls), +(605,700,o), +(597,693,o), +(588,681,cs), +(94,31,ls), +(91,27,o), +(90,22,o), +(90,20,cs), +(90,8,o), +(100,0,o), +(114,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(749,-5,o), +(812,46,o), +(818,126,cs), +(821,160,o), +(820,186,o), +(818,223,cs), +(813,304,o), +(754,355,o), +(656,355,cs), +(558,355,o), +(499,304,o), +(494,223,cs), +(492,186,o), +(491,160,o), +(494,126,cs), +(500,46,o), +(563,-5,o), +(656,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(639,103,o), +(632,116,o), +(631,133,cs), +(629,160,o), +(629,191,o), +(631,216,cs), +(632,233,o), +(639,246,o), +(656,246,cs), +(673,246,o), +(680,233,o), +(681,216,cs), +(683,191,o), +(683,160,o), +(681,133,cs), +(680,116,o), +(673,103,o), +(656,103,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,345,o), +(346,396,o), +(352,476,cs), +(355,510,o), +(354,536,o), +(352,573,cs), +(347,654,o), +(288,705,o), +(190,705,cs), +(92,705,o), +(33,654,o), +(28,573,cs), +(26,536,o), +(25,510,o), +(28,476,cs), +(34,396,o), +(97,345,o), +(190,345,cs) +); +}, +{ +closed = 1; +nodes = ( +(173,453,o), +(166,466,o), +(165,483,cs), +(163,510,o), +(163,541,o), +(165,566,cs), +(166,583,o), +(173,596,o), +(190,596,cs), +(207,596,o), +(214,583,o), +(215,566,cs), +(217,541,o), +(217,510,o), +(215,483,cs), +(214,466,o), +(207,453,o), +(190,453,cs) +); +} +); +width = 846; +} +); +unicode = 37; +}, +{ +color = 6; +glyphname = perthousand; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (1,17); +type = Tag; +}, +{ +horizontal = 1; +origin = (3,8); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,21); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(125,0,ls), +(143,0,o), +(149,7,o), +(158,19,cs), +(651,669,ls), +(654,673,o), +(655,678,o), +(655,680,cs), +(655,692,o), +(647,700,o), +(635,700,cs), +(618,700,ls), +(600,700,o), +(594,693,o), +(585,681,cs), +(92,31,ls), +(89,27,o), +(88,22,o), +(88,20,cs), +(88,8,o), +(96,0,o), +(108,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(281,350,o), +(330,400,o), +(334,480,cs), +(336,514,o), +(336,532,o), +(334,569,cs), +(330,649,o), +(286,705,o), +(194,705,cs), +(102,705,o), +(58,649,o), +(54,569,cs), +(52,532,o), +(52,514,o), +(54,480,cs), +(58,400,o), +(107,350,o), +(194,350,cs) +); +}, +{ +closed = 1; +nodes = ( +(134,401,o), +(115,445,o), +(112,483,cs), +(110,520,o), +(110,531,o), +(112,566,cs), +(114,606,o), +(135,649,o), +(194,649,cs), +(253,649,o), +(274,606,o), +(276,566,cs), +(278,531,o), +(278,520,o), +(276,483,cs), +(273,445,o), +(254,401,o), +(194,401,cs) +); +}, +{ +closed = 1; +nodes = ( +(634,-6,o), +(683,49,o), +(687,129,cs), +(689,163,o), +(689,181,o), +(687,218,cs), +(683,298,o), +(639,354,o), +(547,354,cs), +(455,354,o), +(411,298,o), +(407,218,cs), +(405,181,o), +(405,163,o), +(407,129,cs), +(411,49,o), +(460,-6,o), +(547,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(487,50,o), +(468,94,o), +(465,132,cs), +(463,169,o), +(463,180,o), +(465,215,cs), +(467,255,o), +(488,298,o), +(547,298,cs), +(606,298,o), +(627,255,o), +(629,215,cs), +(631,180,o), +(631,169,o), +(629,132,cs), +(626,94,o), +(607,50,o), +(547,50,cs) +); +}, +{ +closed = 1; +nodes = ( +(956,-6,o), +(1005,49,o), +(1009,129,cs), +(1011,163,o), +(1011,181,o), +(1009,218,cs), +(1005,298,o), +(961,354,o), +(869,354,cs), +(777,354,o), +(733,298,o), +(729,218,cs), +(727,181,o), +(727,163,o), +(729,129,cs), +(733,49,o), +(782,-6,o), +(869,-6,cs) +); +}, +{ +closed = 1; +nodes = ( +(809,50,o), +(790,94,o), +(787,132,cs), +(785,169,o), +(785,180,o), +(787,215,cs), +(789,255,o), +(810,298,o), +(869,298,cs), +(928,298,o), +(949,255,o), +(951,215,cs), +(953,180,o), +(953,169,o), +(951,132,cs), +(948,94,o), +(929,50,o), +(869,50,cs) +); +} +); +width = 1053; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(218,0,ls), +(237,0,o), +(245,7,o), +(254,19,cs), +(748,669,ls), +(751,673,o), +(752,678,o), +(752,680,cs), +(752,692,o), +(742,700,o), +(728,700,cs), +(624,700,ls), +(605,700,o), +(597,693,o), +(588,681,cs), +(94,31,ls), +(91,27,o), +(90,22,o), +(90,20,cs), +(90,8,o), +(100,0,o), +(114,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(283,345,o), +(346,396,o), +(352,476,cs), +(355,510,o), +(354,536,o), +(352,573,cs), +(347,654,o), +(288,705,o), +(190,705,cs), +(92,705,o), +(33,654,o), +(28,573,cs), +(26,536,o), +(25,510,o), +(28,476,cs), +(34,396,o), +(97,345,o), +(190,345,cs) +); +}, +{ +closed = 1; +nodes = ( +(173,453,o), +(166,466,o), +(165,483,cs), +(163,510,o), +(163,541,o), +(165,566,cs), +(166,583,o), +(173,596,o), +(190,596,cs), +(207,596,o), +(214,583,o), +(215,566,cs), +(217,541,o), +(217,510,o), +(215,483,cs), +(214,466,o), +(207,453,o), +(190,453,cs) +); +}, +{ +closed = 1; +nodes = ( +(749,-5,o), +(812,46,o), +(818,126,cs), +(821,160,o), +(820,186,o), +(818,223,cs), +(813,304,o), +(754,355,o), +(656,355,cs), +(558,355,o), +(499,304,o), +(494,223,cs), +(492,186,o), +(491,160,o), +(494,126,cs), +(500,46,o), +(563,-5,o), +(656,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(639,103,o), +(632,116,o), +(631,133,cs), +(629,160,o), +(629,191,o), +(631,216,cs), +(632,233,o), +(639,246,o), +(656,246,cs), +(673,246,o), +(680,233,o), +(681,216,cs), +(683,191,o), +(683,160,o), +(681,133,cs), +(680,116,o), +(673,103,o), +(656,103,cs) +); +}, +{ +closed = 1; +nodes = ( +(1117,-5,o), +(1180,46,o), +(1186,126,cs), +(1189,160,o), +(1188,186,o), +(1186,223,cs), +(1181,304,o), +(1122,355,o), +(1024,355,cs), +(926,355,o), +(867,304,o), +(862,223,cs), +(860,186,o), +(859,160,o), +(862,126,cs), +(868,46,o), +(931,-5,o), +(1024,-5,cs) +); +}, +{ +closed = 1; +nodes = ( +(1007,103,o), +(1000,116,o), +(999,133,cs), +(997,160,o), +(997,191,o), +(999,216,cs), +(1000,233,o), +(1007,246,o), +(1024,246,cs), +(1041,246,o), +(1048,233,o), +(1049,216,cs), +(1051,191,o), +(1051,160,o), +(1049,133,cs), +(1048,116,o), +(1041,103,o), +(1024,103,cs) +); +} +); +width = 1213; +} +); +unicode = 8240; +}, +{ +color = 6; +glyphname = plus.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,14); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(322,80,ls), +(335,80,o), +(344,89,o), +(344,102,cs), +(344,321,l), +(562,321,ls), +(575,321,o), +(584,330,o), +(584,343,cs), +(584,357,ls), +(584,370,o), +(575,379,o), +(562,379,cs), +(344,379,l), +(344,592,ls), +(344,605,o), +(335,614,o), +(322,614,cs), +(307,614,ls), +(294,614,o), +(285,605,o), +(285,592,cs), +(285,379,l), +(68,379,ls), +(55,379,o), +(46,370,o), +(46,357,cs), +(46,343,ls), +(46,330,o), +(55,321,o), +(68,321,cs), +(285,321,l), +(285,102,ls), +(285,89,o), +(294,80,o), +(307,80,cs) +); +} +); +width = 630; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(360,82,ls), +(375,82,o), +(387,94,o), +(387,109,cs), +(387,270,l), +(540,270,ls), +(555,270,o), +(567,282,o), +(567,297,cs), +(567,406,ls), +(567,421,o), +(555,433,o), +(540,433,cs), +(387,433,l), +(387,589,ls), +(387,604,o), +(375,616,o), +(360,616,cs), +(238,616,ls), +(223,616,o), +(211,604,o), +(211,589,cs), +(211,433,l), +(56,433,ls), +(41,433,o), +(29,421,o), +(29,406,cs), +(29,297,ls), +(29,282,o), +(41,270,o), +(56,270,cs), +(211,270,l), +(211,109,ls), +(211,94,o), +(223,82,o), +(238,82,cs) +); +} +); +width = 596; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 300; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 319; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = minus.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(552,321,ls), +(565,321,o), +(574,330,o), +(574,343,cs), +(574,357,ls), +(574,370,o), +(565,379,o), +(552,379,cs), +(98,379,ls), +(85,379,o), +(76,370,o), +(76,357,cs), +(76,343,ls), +(76,330,o), +(85,321,o), +(98,321,cs) +); +} +); +width = 650; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(563,268,ls), +(578,268,o), +(590,280,o), +(590,295,cs), +(590,404,ls), +(590,419,o), +(578,431,o), +(563,431,cs), +(79,431,ls), +(64,431,o), +(52,419,o), +(52,404,cs), +(52,295,ls), +(52,280,o), +(64,268,o), +(79,268,cs) +); +} +); +width = 642; +} +); +}, +{ +color = 6; +glyphname = multiply.case; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(94,145,o), +(107,145,o), +(116,154,c), +(269,307,l), +(423,154,l), +(432,145,o), +(445,145,o), +(454,154,c), +(466,166,l), +(475,175,o), +(475,188,o), +(466,197,c), +(312,350,l), +(466,504,l), +(475,513,o), +(475,526,o), +(466,535,c), +(454,547,l), +(445,556,o), +(432,556,o), +(423,547,c), +(269,393,l), +(116,547,l), +(107,556,o), +(94,556,o), +(85,547,c), +(73,535,l), +(64,526,o), +(64,513,o), +(73,504,c), +(226,350,l), +(73,197,l), +(64,188,o), +(64,175,o), +(73,166,c), +(85,154,l) +); +} +); +width = 539; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(171,61,o), +(188,61,o), +(199,71,cs), +(320,192,l), +(440,72,ls), +(451,62,o), +(467,62,o), +(478,72,cs), +(598,192,ls), +(608,202,o), +(608,219,o), +(598,230,cs), +(478,350,l), +(598,470,ls), +(608,481,o), +(608,498,o), +(598,508,cs), +(478,628,ls), +(467,638,o), +(451,638,o), +(440,628,cs), +(320,508,l), +(199,629,ls), +(188,639,o), +(171,639,o), +(161,629,cs), +(41,509,ls), +(31,498,o), +(31,482,o), +(41,471,cs), +(162,350,l), +(41,229,ls), +(31,218,o), +(31,202,o), +(41,191,cs), +(161,71,ls) +); +} +); +width = 639; +} +); +}, +{ +color = 6; +glyphname = divide.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (1,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(468,321,ls), +(481,321,o), +(490,330,o), +(490,343,cs), +(490,357,ls), +(490,370,o), +(481,379,o), +(468,379,cs), +(93,379,ls), +(80,379,o), +(71,370,o), +(71,357,cs), +(71,343,ls), +(71,330,o), +(80,321,o), +(93,321,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,129,ls), +(317,129,o), +(327,138,o), +(327,151,cs), +(327,199,ls), +(327,212,o), +(317,222,o), +(304,222,cs), +(256,222,ls), +(243,222,o), +(234,212,o), +(234,199,cs), +(234,151,ls), +(234,138,o), +(243,129,o), +(256,129,cs) +); +}, +{ +closed = 1; +nodes = ( +(304,479,ls), +(317,479,o), +(327,488,o), +(327,501,cs), +(327,549,ls), +(327,562,o), +(317,572,o), +(304,572,cs), +(256,572,ls), +(243,572,o), +(234,562,o), +(234,549,cs), +(234,501,ls), +(234,488,o), +(243,479,o), +(256,479,cs) +); +} +); +width = 561; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(463,265,ls), +(478,265,o), +(490,277,o), +(490,292,cs), +(490,408,ls), +(490,423,o), +(478,435,o), +(463,435,cs), +(58,435,ls), +(43,435,o), +(31,423,o), +(31,408,cs), +(31,292,ls), +(31,277,o), +(43,265,o), +(58,265,cs) +); +}, +{ +closed = 1; +nodes = ( +(322,74,ls), +(337,74,o), +(349,86,o), +(349,101,cs), +(349,215,ls), +(349,230,o), +(337,242,o), +(322,242,cs), +(198,242,ls), +(183,242,o), +(171,230,o), +(171,215,cs), +(171,101,ls), +(171,86,o), +(183,74,o), +(198,74,cs) +); +}, +{ +closed = 1; +nodes = ( +(322,458,ls), +(337,458,o), +(349,470,o), +(349,485,cs), +(349,599,ls), +(349,614,o), +(337,626,o), +(322,626,cs), +(198,626,ls), +(183,626,o), +(171,614,o), +(171,599,cs), +(171,485,ls), +(171,470,o), +(183,458,o), +(198,458,cs) +); +} +); +width = 521; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 104; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 301; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 269; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = equal.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(473,446,ls), +(486,446,o), +(495,455,o), +(495,468,cs), +(495,482,ls), +(495,495,o), +(486,504,o), +(473,504,cs), +(98,504,ls), +(85,504,o), +(76,495,o), +(76,482,cs), +(76,468,ls), +(76,455,o), +(85,446,o), +(98,446,cs) +); +}, +{ +closed = 1; +nodes = ( +(473,196,ls), +(486,196,o), +(495,205,o), +(495,218,cs), +(495,232,ls), +(495,245,o), +(486,254,o), +(473,254,cs), +(98,254,ls), +(85,254,o), +(76,245,o), +(76,232,cs), +(76,218,ls), +(76,205,o), +(85,196,o), +(98,196,cs) +); +} +); +width = 571; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(484,390,ls), +(499,390,o), +(511,402,o), +(511,417,cs), +(511,533,ls), +(511,548,o), +(499,560,o), +(484,560,cs), +(79,560,ls), +(64,560,o), +(52,548,o), +(52,533,cs), +(52,417,ls), +(52,402,o), +(64,390,o), +(79,390,cs) +); +}, +{ +closed = 1; +nodes = ( +(484,140,ls), +(499,140,o), +(511,152,o), +(511,167,cs), +(511,283,ls), +(511,298,o), +(499,310,o), +(484,310,cs), +(79,310,ls), +(64,310,o), +(52,298,o), +(52,283,cs), +(52,167,ls), +(52,152,o), +(64,140,o), +(79,140,cs) +); +} +); +width = 563; +} +); +}, +{ +color = 6; +glyphname = notequal.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,24); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(175,71,ls), +(188,71,o), +(195,81,o), +(197,86,cs), +(243,196,l), +(464,196,ls), +(477,196,o), +(486,205,o), +(486,218,cs), +(486,232,ls), +(486,245,o), +(477,254,o), +(464,254,cs), +(267,254,l), +(347,446,l), +(464,446,ls), +(477,446,o), +(486,455,o), +(486,468,cs), +(486,482,ls), +(486,495,o), +(477,504,o), +(464,504,cs), +(371,504,l), +(411,598,ls), +(413,603,o), +(414,608,o), +(414,610,cs), +(414,621,o), +(405,630,o), +(394,630,cs), +(377,630,ls), +(364,630,o), +(357,620,o), +(355,615,cs), +(308,504,l), +(89,504,ls), +(76,504,o), +(67,495,o), +(67,482,cs), +(67,468,ls), +(67,455,o), +(76,446,o), +(89,446,cs), +(284,446,l), +(204,254,l), +(89,254,ls), +(76,254,o), +(67,245,o), +(67,232,cs), +(67,218,ls), +(67,205,o), +(76,196,o), +(89,196,cs), +(180,196,l), +(141,103,ls), +(139,98,o), +(138,93,o), +(138,91,cs), +(138,80,o), +(147,71,o), +(158,71,cs) +); +} +); +width = 554; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(209,71,ls), +(236,71,o), +(248,88,o), +(253,101,cs), +(269,140,l), +(483,140,ls), +(498,140,o), +(510,152,o), +(510,167,cs), +(510,283,ls), +(510,298,o), +(498,310,o), +(483,310,cs), +(341,310,l), +(374,390,l), +(483,390,ls), +(498,390,o), +(510,402,o), +(510,417,cs), +(510,533,ls), +(510,548,o), +(498,560,o), +(483,560,cs), +(445,560,l), +(462,599,ls), +(464,604,o), +(464,606,o), +(464,608,cs), +(464,620,o), +(454,630,o), +(442,630,cs), +(348,630,ls), +(323,630,o), +(310,614,o), +(304,600,cs), +(287,560,l), +(78,560,ls), +(63,560,o), +(51,548,o), +(51,533,cs), +(51,417,ls), +(51,402,o), +(63,390,o), +(78,390,cs), +(217,390,l), +(184,310,l), +(78,310,ls), +(63,310,o), +(51,298,o), +(51,283,cs), +(51,167,ls), +(51,152,o), +(63,140,o), +(78,140,cs), +(113,140,l), +(98,102,ls), +(96,97,o), +(96,95,o), +(96,93,cs), +(96,81,o), +(106,71,o), +(118,71,cs) +); +} +); +width = 561; +} +); +}, +{ +color = 6; +glyphname = approxequal.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,21); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,24); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,31); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,5); +type = Tag; +}, +{ +horizontal = 1; +origin = (1,15); +type = Tag; +}, +{ +horizontal = 1; +origin = (1,21); +type = Tag; +}, +{ +horizontal = 1; +origin = (1,24); +type = Tag; +}, +{ +horizontal = 1; +origin = (1,31); +type = Tag; +}, +{ +horizontal = 1; +origin = (1,5); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(98,428,o), +(101,429,o), +(104,430,cs), +(121,436,o), +(143,463,o), +(188,463,cs), +(263,463,o), +(299,428,o), +(379,428,cs), +(435,428,o), +(489,458,o), +(489,483,cs), +(489,506,ls), +(489,516,o), +(482,523,o), +(472,523,cs), +(469,523,o), +(467,522,o), +(464,521,cs), +(447,514,o), +(425,488,o), +(380,488,cs), +(308,488,o), +(273,523,o), +(189,523,cs), +(133,523,o), +(79,493,o), +(79,468,cs), +(79,445,ls), +(79,435,o), +(86,428,o), +(96,428,cs) +); +}, +{ +closed = 1; +nodes = ( +(98,178,o), +(101,179,o), +(104,180,cs), +(121,187,o), +(143,213,o), +(188,213,cs), +(263,213,o), +(299,178,o), +(379,178,cs), +(435,178,o), +(489,208,o), +(489,233,cs), +(489,256,ls), +(489,266,o), +(482,273,o), +(472,273,cs), +(470,273,o), +(467,272,o), +(465,271,cs), +(447,265,o), +(425,238,o), +(380,238,cs), +(308,238,o), +(273,273,o), +(189,273,cs), +(133,273,o), +(79,243,o), +(79,218,cs), +(79,195,ls), +(79,185,o), +(86,178,o), +(96,178,cs) +); +} +); +width = 566; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(85,367,o), +(91,371,o), +(96,375,cs), +(106,384,o), +(132,401,o), +(163,401,cs), +(256,401,o), +(295,359,o), +(394,359,cs), +(462,359,o), +(504,395,o), +(504,439,cs), +(504,547,ls), +(504,572,o), +(501,584,o), +(482,584,c), +(473,583,o), +(467,579,o), +(462,575,cs), +(452,566,o), +(426,549,o), +(395,549,cs), +(302,549,o), +(263,591,o), +(164,591,cs), +(96,591,o), +(54,555,o), +(54,511,cs), +(54,403,ls), +(54,378,o), +(57,366,o), +(76,366,c) +); +}, +{ +closed = 1; +nodes = ( +(85,117,o), +(91,121,o), +(96,125,cs), +(106,134,o), +(132,151,o), +(163,151,cs), +(256,151,o), +(295,109,o), +(394,109,cs), +(462,109,o), +(504,145,o), +(504,189,cs), +(504,297,ls), +(504,322,o), +(501,334,o), +(482,334,c), +(473,333,o), +(467,329,o), +(462,325,cs), +(452,316,o), +(426,299,o), +(395,299,cs), +(302,299,o), +(263,341,o), +(164,341,cs), +(96,341,o), +(54,305,o), +(54,261,cs), +(54,153,ls), +(54,128,o), +(57,116,o), +(76,116,c) +); +} +); +width = 559; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 299; +} +); +}; +}, +{ +color = 6; +glyphname = asciitilde.case; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,21); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,24); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,31); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,5); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(99,303,o), +(101,304,o), +(104,305,cs), +(122,312,o), +(143,338,o), +(188,338,cs), +(263,338,o), +(299,303,o), +(379,303,cs), +(435,303,o), +(489,333,o), +(489,358,cs), +(489,381,ls), +(489,391,o), +(482,398,o), +(472,398,cs), +(469,398,o), +(465,397,o), +(462,395,cs), +(445,387,o), +(423,363,o), +(380,363,cs), +(308,363,o), +(273,398,o), +(189,398,cs), +(133,398,o), +(79,368,o), +(79,343,cs), +(79,320,ls), +(79,310,o), +(86,303,o), +(96,303,cs) +); +} +); +width = 565; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(81,242,o), +(87,246,o), +(92,250,cs), +(102,259,o), +(128,276,o), +(159,276,cs), +(252,276,o), +(291,234,o), +(390,234,cs), +(458,234,o), +(500,270,o), +(500,314,cs), +(500,422,ls), +(500,447,o), +(497,459,o), +(478,459,c), +(469,458,o), +(463,454,o), +(458,450,cs), +(448,441,o), +(422,424,o), +(391,424,cs), +(298,424,o), +(259,466,o), +(160,466,cs), +(92,466,o), +(50,430,o), +(50,386,cs), +(50,278,ls), +(50,253,o), +(53,241,o), +(72,241,c) +); +} +); +width = 548; +} +); +}, +{ +color = 6; +glyphname = lozenge; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,22); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(272,0,ls), +(299,0,o), +(315,19,o), +(322,33,cs), +(475,327,ls), +(479,335,o), +(483,344,o), +(483,355,cs), +(483,366,o), +(479,375,o), +(475,383,cs), +(322,677,ls), +(315,691,o), +(299,710,o), +(272,710,cs), +(260,710,ls), +(233,710,o), +(217,691,o), +(210,677,cs), +(57,383,ls), +(53,375,o), +(49,366,o), +(49,355,cs), +(49,344,o), +(53,335,o), +(57,327,cs), +(210,33,ls), +(217,19,o), +(233,0,o), +(260,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(109,355,l), +(266,655,l), +(423,355,l), +(266,55,l) +); +} +); +width = 532; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(355,0,ls), +(382,0,o), +(397,20,o), +(405,33,cs), +(593,333,ls), +(598,341,o), +(601,348,o), +(601,355,cs), +(601,362,o), +(598,369,o), +(593,377,cs), +(405,677,ls), +(397,690,o), +(382,710,o), +(355,710,cs), +(269,710,ls), +(242,710,o), +(227,690,o), +(219,677,cs), +(31,377,ls), +(26,369,o), +(23,362,o), +(23,355,cs), +(23,348,o), +(26,341,o), +(31,333,cs), +(219,33,ls), +(227,20,o), +(242,0,o), +(269,0,cs) +); +}, +{ +closed = 1; +nodes = ( +(218,355,l), +(312,505,l), +(406,355,l), +(312,205,l) +); +} +); +width = 624; +} +); +unicode = 9674; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 277; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = "brevecomb-cy"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (205,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(317,590,o), +(345,649,o), +(345,706,cs), +(345,716,o), +(338,725,o), +(326,725,cs), +(311,725,ls), +(299,725,o), +(292,716,o), +(292,706,cs), +(292,674,o), +(275,640,o), +(205,640,cs), +(135,640,o), +(118,674,o), +(118,706,cs), +(118,716,o), +(111,725,o), +(99,725,cs), +(84,725,ls), +(72,725,o), +(65,716,o), +(65,706,cs), +(65,649,o), +(93,590,o), +(205,590,cs) +); +} +); +width = 410; +}, +{ +anchors = ( +{ +name = _top; +pos = (297,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(431,586,o), +(494,654,o), +(494,746,cs), +(494,756,o), +(487,765,o), +(475,765,cs), +(356,765,ls), +(344,765,o), +(337,756,o), +(337,746,cs), +(337,721,o), +(329,701,o), +(297,701,cs), +(265,701,o), +(257,721,o), +(257,746,cs), +(257,756,o), +(250,765,o), +(238,765,cs), +(119,765,ls), +(106,765,o), +(100,756,o), +(100,746,cs), +(100,654,o), +(163,586,o), +(297,586,cs) +); +} +); +width = 594; +} +); +}, +{ +color = 6; +glyphname = "brevecomb-cy.case"; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (185,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(302,740,o), +(330,799,o), +(330,856,cs), +(330,866,o), +(323,875,o), +(311,875,cs), +(296,875,ls), +(284,875,o), +(277,866,o), +(277,856,cs), +(277,824,o), +(260,790,o), +(185,790,cs), +(110,790,o), +(93,824,o), +(93,856,cs), +(93,866,o), +(86,875,o), +(74,875,cs), +(59,875,ls), +(47,875,o), +(40,866,o), +(40,856,cs), +(40,799,o), +(68,740,o), +(185,740,cs) +); +} +); +width = 370; +}, +{ +anchors = ( +{ +name = _top; +pos = (297,700); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(431,741,o), +(494,809,o), +(494,901,cs), +(494,911,o), +(487,920,o), +(475,920,cs), +(356,920,ls), +(344,920,o), +(337,911,o), +(337,901,cs), +(337,876,o), +(329,856,o), +(297,856,cs), +(265,856,o), +(257,876,o), +(257,901,cs), +(257,911,o), +(250,920,o), +(238,920,cs), +(119,920,ls), +(106,920,o), +(100,911,o), +(100,901,cs), +(100,809,o), +(163,741,o), +(297,741,cs) +); +} +); +width = 594; +} +); +}, +{ +color = 6; +export = 0; +glyphname = "descender-cy"; +layers = ( +{ +anchors = ( +{ +name = _bottomright; +pos = (31,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(110,-130,ls), +(123,-130,o), +(132,-121,o), +(132,-108,cs), +(132,36,ls), +(132,49,o), +(123,58,o), +(110,58,cs), +(0,58,l), +(31,0,l), +(71,0,l), +(71,-108,ls), +(71,-121,o), +(80,-130,o), +(93,-130,cs) +); +} +); +width = 186; +}, +{ +anchors = ( +{ +name = _bottomright; +pos = (104,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(272,-110,ls), +(287,-110,o), +(299,-98,o), +(299,-83,cs), +(299,148,ls), +(299,163,o), +(287,175,o), +(272,175,cs), +(0,175,l), +(42,0,l), +(66,0,l), +(66,-83,ls), +(66,-98,o), +(78,-110,o), +(93,-110,cs) +); +} +); +width = 349; +} +); +}, +{ +color = 6; +export = 0; +glyphname = "descender-cy.case"; +layers = ( +{ +anchors = ( +{ +name = _bottomright; +pos = (40,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(113,-140,ls), +(127,-140,o), +(136,-131,o), +(136,-118,cs), +(136,38,ls), +(136,51,o), +(127,60,o), +(113,60,cs), +(0,60,l), +(30,0,l), +(73,0,l), +(73,-118,ls), +(73,-131,o), +(82,-140,o), +(95,-140,cs) +); +} +); +width = 186; +}, +{ +anchors = ( +{ +name = _bottomright; +pos = (119,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(295,-140,ls), +(310,-140,o), +(322,-128,o), +(322,-113,cs), +(322,193,ls), +(322,208,o), +(310,220,o), +(295,220,cs), +(0,220,l), +(50,0,l), +(72,0,l), +(72,-113,ls), +(72,-128,o), +(84,-140,o), +(99,-140,cs) +); +} +); +width = 372; +} +); +}, +{ +color = 6; +glyphname = "shindot-hb"; +layers = ( +{ +anchors = ( +{ +name = _topright; +pos = (23,415); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(-58,533,ls), +(-45,533,o), +(-36,542,o), +(-36,555,cs), +(-36,578,ls), +(-36,591,o), +(-45,600,o), +(-58,600,cs), +(-81,600,ls), +(-94,600,o), +(-103,591,o), +(-103,578,cs), +(-103,555,ls), +(-103,542,o), +(-94,533,o), +(-81,533,cs) +); +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _topright; +pos = (21,415); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(-68,493,ls), +(-55,493,o), +(-46,502,o), +(-46,515,cs), +(-46,578,ls), +(-46,591,o), +(-55,600,o), +(-68,600,cs), +(-131,600,ls), +(-144,600,o), +(-153,591,o), +(-153,578,cs), +(-153,515,ls), +(-153,502,o), +(-144,493,o), +(-131,493,cs) +); +} +); +width = 0; +} +); +unicode = 1473; +}, +{ +color = 6; +glyphname = "sheva-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (1,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(12,-146,ls), +(25,-146,o), +(34,-137,o), +(34,-124,cs), +(34,-101,ls), +(34,-88,o), +(25,-79,o), +(12,-79,cs), +(-11,-79,ls), +(-24,-79,o), +(-33,-88,o), +(-33,-101,cs), +(-33,-124,ls), +(-33,-137,o), +(-24,-146,o), +(-11,-146,cs) +); +}, +{ +closed = 1; +nodes = ( +(12,-245,ls), +(25,-245,o), +(34,-236,o), +(34,-223,cs), +(34,-200,ls), +(34,-187,o), +(25,-178,o), +(12,-178,cs), +(-11,-178,ls), +(-24,-178,o), +(-33,-187,o), +(-33,-200,cs), +(-33,-223,ls), +(-33,-236,o), +(-24,-245,o), +(-11,-245,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 600; +}; +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (1,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(37,-182,ls), +(50,-182,o), +(59,-173,o), +(59,-160,cs), +(59,-97,ls), +(59,-84,o), +(50,-75,o), +(37,-75,cs), +(-36,-75,ls), +(-49,-75,o), +(-58,-84,o), +(-58,-97,cs), +(-58,-160,ls), +(-58,-173,o), +(-49,-182,o), +(-36,-182,cs) +); +}, +{ +closed = 1; +nodes = ( +(37,-306,ls), +(50,-306,o), +(59,-297,o), +(59,-284,cs), +(59,-221,ls), +(59,-208,o), +(50,-199,o), +(37,-199,cs), +(-36,-199,ls), +(-49,-199,o), +(-58,-208,o), +(-58,-221,cs), +(-58,-284,ls), +(-58,-297,o), +(-49,-306,o), +(-36,-306,cs) +); +} +); +width = 0; +} +); +unicode = 1456; +}, +{ +color = 10; +glyphname = "hatafsegol-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (5,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "sheva-hb"; +}, +{ +ref = "segol-hb"; +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (5,0); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "sheva-hb"; +}, +{ +ref = "segol-hb"; +} +); +width = 0; +} +); +unicode = 1457; +}, +{ +color = 10; +glyphname = "hatafpatah-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (2,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "sheva-hb"; +}, +{ +ref = "patah-hb"; +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (2,0); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "sheva-hb"; +}, +{ +ref = "patah-hb"; +} +); +width = 0; +} +); +unicode = 1458; +}, +{ +color = 10; +glyphname = "hatafqamats-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (-1,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = "sheva-hb"; +}, +{ +ref = "qamatsqatan-hb"; +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (-1,0); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = "sheva-hb"; +}, +{ +ref = "qamatsqatan-hb"; +} +); +width = 0; +} +); +unicode = 1459; +}, +{ +color = 6; +glyphname = "hiriq-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(12,-146,ls), +(25,-146,o), +(34,-137,o), +(34,-124,cs), +(34,-101,ls), +(34,-88,o), +(25,-79,o), +(12,-79,cs), +(-11,-79,ls), +(-24,-79,o), +(-33,-88,o), +(-33,-101,cs), +(-33,-124,ls), +(-33,-137,o), +(-24,-146,o), +(-11,-146,cs) +); +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (1,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(37,-182,ls), +(50,-182,o), +(59,-173,o), +(59,-160,cs), +(59,-97,ls), +(59,-84,o), +(50,-75,o), +(37,-75,cs), +(-36,-75,ls), +(-49,-75,o), +(-58,-84,o), +(-58,-97,cs), +(-58,-160,ls), +(-58,-173,o), +(-49,-182,o), +(-36,-182,cs) +); +} +); +width = 0; +} +); +unicode = 1460; +}, +{ +color = 6; +glyphname = "tsere-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (1,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(-49,-146,ls), +(-36,-146,o), +(-27,-137,o), +(-27,-124,cs), +(-27,-101,ls), +(-27,-88,o), +(-36,-79,o), +(-49,-79,cs), +(-72,-79,ls), +(-85,-79,o), +(-94,-88,o), +(-94,-101,cs), +(-94,-124,ls), +(-94,-137,o), +(-85,-146,o), +(-72,-146,cs) +); +}, +{ +closed = 1; +nodes = ( +(76,-146,ls), +(89,-146,o), +(98,-137,o), +(98,-124,cs), +(98,-101,ls), +(98,-88,o), +(89,-79,o), +(76,-79,cs), +(53,-79,ls), +(40,-79,o), +(31,-88,o), +(31,-101,cs), +(31,-124,ls), +(31,-137,o), +(40,-146,o), +(53,-146,cs) +); +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (2,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(-33,-182,ls), +(-20,-182,o), +(-11,-173,o), +(-11,-160,cs), +(-11,-97,ls), +(-11,-84,o), +(-20,-75,o), +(-33,-75,cs), +(-106,-75,ls), +(-119,-75,o), +(-128,-84,o), +(-128,-97,cs), +(-128,-160,ls), +(-128,-173,o), +(-119,-182,o), +(-106,-182,cs) +); +}, +{ +closed = 1; +nodes = ( +(111,-182,ls), +(124,-182,o), +(133,-173,o), +(133,-160,cs), +(133,-97,ls), +(133,-84,o), +(124,-75,o), +(111,-75,cs), +(38,-75,ls), +(25,-75,o), +(16,-84,o), +(16,-97,cs), +(16,-160,ls), +(16,-173,o), +(25,-182,o), +(38,-182,cs) +); +} +); +width = 0; +} +); +unicode = 1461; +}, +{ +color = 6; +glyphname = "segol-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (1,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(76,-146,ls), +(89,-146,o), +(98,-137,o), +(98,-124,cs), +(98,-101,ls), +(98,-88,o), +(89,-79,o), +(76,-79,cs), +(53,-79,ls), +(40,-79,o), +(31,-88,o), +(31,-101,cs), +(31,-124,ls), +(31,-137,o), +(40,-146,o), +(53,-146,cs) +); +}, +{ +closed = 1; +nodes = ( +(12,-245,ls), +(25,-245,o), +(34,-236,o), +(34,-223,cs), +(34,-200,ls), +(34,-187,o), +(25,-178,o), +(12,-178,cs), +(-11,-178,ls), +(-24,-178,o), +(-33,-187,o), +(-33,-200,cs), +(-33,-223,ls), +(-33,-236,o), +(-24,-245,o), +(-11,-245,cs) +); +}, +{ +closed = 1; +nodes = ( +(-49,-146,ls), +(-36,-146,o), +(-27,-137,o), +(-27,-124,cs), +(-27,-101,ls), +(-27,-88,o), +(-36,-79,o), +(-49,-79,cs), +(-72,-79,ls), +(-85,-79,o), +(-94,-88,o), +(-94,-101,cs), +(-94,-124,ls), +(-94,-137,o), +(-85,-146,o), +(-72,-146,cs) +); +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (2,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(111,-182,ls), +(124,-182,o), +(133,-173,o), +(133,-160,cs), +(133,-97,ls), +(133,-84,o), +(124,-75,o), +(111,-75,cs), +(38,-75,ls), +(25,-75,o), +(16,-84,o), +(16,-97,cs), +(16,-160,ls), +(16,-173,o), +(25,-182,o), +(38,-182,cs) +); +}, +{ +closed = 1; +nodes = ( +(38,-307,ls), +(51,-307,o), +(60,-298,o), +(60,-285,cs), +(60,-222,ls), +(60,-209,o), +(51,-200,o), +(38,-200,c), +(-35,-200,ls), +(-48,-200,o), +(-57,-209,o), +(-57,-222,cs), +(-57,-285,ls), +(-57,-298,o), +(-48,-307,o), +(-35,-307,cs) +); +}, +{ +closed = 1; +nodes = ( +(-33,-182,ls), +(-20,-182,o), +(-11,-173,o), +(-11,-160,cs), +(-11,-97,ls), +(-11,-84,o), +(-20,-75,o), +(-33,-75,cs), +(-106,-75,ls), +(-119,-75,o), +(-128,-84,o), +(-128,-97,cs), +(-128,-160,ls), +(-128,-173,o), +(-119,-182,o), +(-106,-182,cs) +); +} +); +width = 0; +} +); +unicode = 1462; +}, +{ +color = 6; +glyphname = "patah-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (2,-5); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,-131,ls), +(119,-131,o), +(128,-122,o), +(128,-109,cs), +(128,-101,ls), +(128,-88,o), +(119,-79,o), +(106,-79,cs), +(-102,-79,ls), +(-115,-79,o), +(-124,-88,o), +(-124,-101,cs), +(-124,-109,ls), +(-124,-122,o), +(-115,-131,o), +(-102,-131,cs) +); +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (2,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,-182,ls), +(119,-182,o), +(128,-173,o), +(128,-160,cs), +(128,-97,ls), +(128,-84,o), +(119,-75,o), +(106,-75,cs), +(-102,-75,ls), +(-115,-75,o), +(-124,-84,o), +(-124,-97,cs), +(-124,-160,ls), +(-124,-173,o), +(-115,-182,o), +(-102,-182,cs) +); +} +); +width = 0; +} +); +unicode = 1463; +}, +{ +color = 6; +glyphname = uni05B8; +layers = ( +{ +anchors = ( +{ +name = _bottom; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(128,-109,ls), +(128,-122.4,o), +(119.4,-131,o), +(106,-131,cs), +(26,-131,l), +(26,-223,ls), +(26,-236.4,o), +(17.4,-245,o), +(4,-245,cs), +(-3,-245,ls), +(-16.4,-245,o), +(-25,-236.4,o), +(-25,-223,c), +(-25,-131,l), +(-102,-131,ls), +(-115.4,-131,o), +(-124,-122.4,o), +(-124,-109,cs), +(-124,-101,ls), +(-124,-87.6,o), +(-115.4,-79,o), +(-102,-79,cs), +(106,-79,ls), +(119.4,-79,o), +(128,-87.6,o), +(128,-101,cs) +); +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (1,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(128,-160,ls), +(128,-173.4,o), +(119.4,-182,o), +(106,-182,cs), +(46,-182,l), +(46,-239,ls), +(46,-252.4,o), +(37.4,-261,o), +(24,-261,cs), +(-23,-261,ls), +(-36.4,-261,o), +(-45,-252.4,o), +(-45,-239,cs), +(-45,-182,l), +(-102,-182,ls), +(-115.4,-182,o), +(-124,-173.4,o), +(-124,-160,cs), +(-124,-97,ls), +(-124,-83.6,o), +(-115.4,-75,o), +(-102,-75,cs), +(106,-75,ls), +(119.4,-75,o), +(128,-83.6,o), +(128,-97,cs) +); +} +); +width = 0; +} +); +unicode = 1464; +}, +{ +color = 6; +glyphname = "holam-hb"; +layers = ( +{ +anchors = ( +{ +name = _topleft; +pos = (51,415); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(12,533,ls), +(25,533,o), +(34,542,o), +(34,555,cs), +(34,578,ls), +(34,591,o), +(25,600,o), +(12,600,cs), +(-11,600,ls), +(-24,600,o), +(-33,591,o), +(-33,578,cs), +(-33,555,ls), +(-33,542,o), +(-24,533,o), +(-11,533,cs) +); +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _topleft; +pos = (54,415); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(40,533,ls), +(53,533,o), +(62,542,o), +(62,555,cs), +(62,618,ls), +(62,631,o), +(53,640,o), +(40,640,cs), +(-33,640,ls), +(-46,640,o), +(-55,631,o), +(-55,618,cs), +(-55,555,ls), +(-55,542,o), +(-46,533,o), +(-33,533,cs) +); +} +); +width = 0; +} +); +unicode = 1465; +}, +{ +color = 6; +glyphname = "holamhaser-hb"; +layers = ( +{ +anchors = ( +{ +name = _topleft; +pos = (-3,415); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(-58,533,ls), +(-45,533,o), +(-36,542,o), +(-36,555,cs), +(-36,578,ls), +(-36,591,o), +(-45,600,o), +(-58,600,cs), +(-81,600,ls), +(-94,600,o), +(-103,591,o), +(-103,578,cs), +(-103,555,ls), +(-103,542,o), +(-94,533,o), +(-81,533,cs) +); +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _topleft; +pos = (2,415); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(-33,533,ls), +(-20,533,o), +(-11,542,o), +(-11,555,cs), +(-11,618,ls), +(-11,631,o), +(-20,640,o), +(-33,640,cs), +(-106,640,ls), +(-119,640,o), +(-128,631,o), +(-128,618,cs), +(-128,555,ls), +(-128,542,o), +(-119,533,o), +(-106,533,cs) +); +} +); +width = 0; +} +); +unicode = 1466; +}, +{ +color = 6; +glyphname = "qubuts-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(121,-264,ls), +(134,-264,o), +(143,-255,o), +(143,-242,cs), +(143,-219,ls), +(143,-206,o), +(134,-197,o), +(121,-197,cs), +(98,-197,ls), +(85,-197,o), +(76,-206,o), +(76,-219,cs), +(76,-242,ls), +(76,-255,o), +(85,-264,o), +(98,-264,cs) +); +}, +{ +closed = 1; +nodes = ( +(-19,-146,ls), +(-6,-146,o), +(3,-137,o), +(3,-124,cs), +(3,-101,ls), +(3,-88,o), +(-6,-79,o), +(-19,-79,cs), +(-42,-79,ls), +(-55,-79,o), +(-64,-88,o), +(-64,-101,cs), +(-64,-124,ls), +(-64,-137,o), +(-55,-146,o), +(-42,-146,cs) +); +}, +{ +closed = 1; +nodes = ( +(51,-206,ls), +(64,-206,o), +(73,-197,o), +(73,-184,cs), +(73,-161,ls), +(73,-148,o), +(64,-139,o), +(51,-139,cs), +(28,-139,ls), +(15,-139,o), +(6,-148,o), +(6,-161,cs), +(6,-184,ls), +(6,-197,o), +(15,-206,o), +(28,-206,cs) +); +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (1,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(170,-307,ls), +(183,-307,o), +(192,-298,o), +(192,-285,cs), +(192,-222,ls), +(192,-209,o), +(183,-200,o), +(170,-200,cs), +(97,-200,ls), +(84,-200,o), +(75,-209,o), +(75,-222,cs), +(75,-285,ls), +(75,-298,o), +(84,-307,o), +(97,-307,cs) +); +}, +{ +closed = 1; +nodes = ( +(-88,-182,ls), +(-75,-182,o), +(-66,-173,o), +(-66,-160,cs), +(-66,-97,ls), +(-66,-84,o), +(-75,-75,o), +(-88,-75,cs), +(-161,-75,ls), +(-174,-75,o), +(-183,-84,o), +(-183,-97,cs), +(-183,-160,ls), +(-183,-173,o), +(-174,-182,o), +(-161,-182,cs) +); +}, +{ +closed = 1; +nodes = ( +(38,-245,ls), +(51,-245,o), +(60,-236,o), +(60,-223,cs), +(60,-160,ls), +(60,-147,o), +(51,-138,o), +(38,-138,cs), +(-35,-138,ls), +(-48,-138,o), +(-57,-147,o), +(-57,-160,cs), +(-57,-223,ls), +(-57,-236,o), +(-48,-245,o), +(-35,-245,cs) +); +} +); +width = 0; +} +); +unicode = 1467; +}, +{ +color = 6; +glyphname = "dagesh-hb"; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (1,289); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(12,285,ls), +(25,285,o), +(34,294,o), +(34,307,cs), +(34,330,ls), +(34,343,o), +(25,352,o), +(12,352,cs), +(-11,352,ls), +(-24,352,o), +(-33,343,o), +(-33,330,cs), +(-33,307,ls), +(-33,294,o), +(-24,285,o), +(-11,285,cs) +); +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _center; +pos = (58,286); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(90,265,ls), +(103,265,o), +(112,274,o), +(112,287,cs), +(112,350,ls), +(112,363,o), +(103,372,o), +(90,372,cs), +(27,372,ls), +(14,372,o), +(5,363,o), +(5,350,cs), +(5,287,ls), +(5,274,o), +(14,265,o), +(27,265,cs) +); +} +); +userData = { +com.schriftgestaltung.Glyphs.originalWidth = 117; +}; +width = 0; +} +); +unicode = 1468; +}, +{ +color = 6; +glyphname = "sindot-hb"; +layers = ( +{ +anchors = ( +{ +name = _topleft; +pos = (-70,415); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(31,533,ls), +(44,533,o), +(53,542,o), +(53,555,cs), +(53,578,ls), +(53,591,o), +(44,600,o), +(31,600,cs), +(8,600,ls), +(-5,600,o), +(-14,591,o), +(-14,578,cs), +(-14,555,ls), +(-14,542,o), +(-5,533,o), +(8,533,cs) +); +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _topleft; +pos = (-70,415); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(161,493,ls), +(174,493,o), +(183,502,o), +(183,515,cs), +(183,578,ls), +(183,591,o), +(174,600,o), +(161,600,cs), +(98,600,ls), +(85,600,o), +(76,591,o), +(76,578,cs), +(76,515,ls), +(76,502,o), +(85,493,o), +(98,493,cs) +); +} +); +width = 0; +} +); +unicode = 1474; +}, +{ +color = 6; +glyphname = "qamatsqatan-hb"; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (2,0); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,-131,ls), +(119,-131,o), +(128,-122,o), +(128,-109,cs), +(128,-101,ls), +(128,-88,o), +(119,-79,o), +(106,-79,cs), +(-102,-79,ls), +(-115,-79,o), +(-124,-88,o), +(-124,-101,cs), +(-124,-109,ls), +(-124,-122,o), +(-115,-131,o), +(-102,-131,cs) +); +}, +{ +closed = 1; +nodes = ( +(4,-245,ls), +(17,-245,o), +(26,-236,o), +(26,-223,cs), +(26,-134,ls), +(26,-111,o), +(17,-112,o), +(4,-112,cs), +(-3,-112,ls), +(-16,-112,o), +(-25,-111,o), +(-25,-134,cs), +(-25,-223,ls), +(-25,-236,o), +(-16,-245,o), +(-3,-245,cs) +); +} +); +width = 0; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (2,0); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,-182,ls), +(119,-182,o), +(128,-173,o), +(128,-160,cs), +(128,-97,ls), +(128,-84,o), +(119,-75,o), +(106,-75,cs), +(-102,-75,ls), +(-115,-75,o), +(-124,-84,o), +(-124,-97,cs), +(-124,-160,ls), +(-124,-173,o), +(-115,-182,o), +(-102,-182,cs) +); +}, +{ +closed = 1; +nodes = ( +(24,-261,ls), +(37,-261,o), +(46,-252,o), +(46,-239,cs), +(46,-150,ls), +(46,-127,o), +(37,-128,o), +(24,-128,cs), +(-23,-128,ls), +(-36,-128,o), +(-45,-127,o), +(-45,-150,cs), +(-45,-239,ls), +(-45,-252,o), +(-36,-261,o), +(-23,-261,cs) +); +} +); +width = 0; +} +); +unicode = 1479; +}, +{ +color = 10; +glyphname = dieresiscomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (188,520); +}, +{ +name = top; +pos = (188,710); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = dieresis; +} +); +width = 376; +}, +{ +anchors = ( +{ +name = _top; +pos = (255,520); +}, +{ +name = top; +pos = (255,765); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = dieresis; +} +); +width = 509; +} +); +unicode = 776; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 575; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 153; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = dotaccentcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (117,520); +}, +{ +name = top; +pos = (117,710); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = dotaccent; +} +); +width = 233; +}, +{ +anchors = ( +{ +name = _top; +pos = (139,520); +}, +{ +name = top; +pos = (139,772); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = dotaccent; +} +); +width = 277; +} +); +unicode = 775; +}, +{ +color = 10; +glyphname = gravecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (200,520); +}, +{ +name = top; +pos = (156,725); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = grave; +} +); +width = 311; +}, +{ +anchors = ( +{ +name = _top; +pos = (298,520); +}, +{ +name = top; +pos = (224,765); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = grave; +} +); +width = 450; +} +); +unicode = 768; +}, +{ +color = 10; +glyphname = acutecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (100,520); +}, +{ +name = top; +pos = (156,725); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = acute; +} +); +width = 311; +}, +{ +anchors = ( +{ +name = _top; +pos = (151,520); +}, +{ +name = top; +pos = (224,765); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = acute; +} +); +width = 450; +} +); +unicode = 769; +}, +{ +color = 10; +glyphname = hungarumlautcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (175,520); +}, +{ +name = top; +pos = (208,725); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = hungarumlaut; +} +); +width = 416; +}, +{ +anchors = ( +{ +name = _top; +pos = (262,520); +}, +{ +name = top; +pos = (312,765); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = hungarumlaut; +} +); +width = 622; +} +); +unicode = 779; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 10; +glyphname = caroncomb.alt; +layers = ( +{ +anchors = ( +{ +name = _topright; +pos = (155,700); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +alignment = -1; +pos = (69,750); +ref = commaaccentcomb; +} +); +width = 325; +}, +{ +anchors = ( +{ +name = _topright; +pos = (312,700); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +alignment = -1; +pos = (149,750); +ref = commaaccentcomb; +} +); +width = 525; +} +); +}, +{ +color = 10; +glyphname = circumflexcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (206,520); +}, +{ +name = top; +pos = (206,725); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = circumflex; +} +); +width = 412; +}, +{ +anchors = ( +{ +name = _top; +pos = (264,520); +}, +{ +name = top; +pos = (264,765); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = circumflex; +} +); +width = 528; +} +); +unicode = 770; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 10; +glyphname = caroncomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (206,520); +}, +{ +name = top; +pos = (206,725); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = caron; +} +); +width = 412; +}, +{ +anchors = ( +{ +name = _top; +pos = (264,520); +}, +{ +name = top; +pos = (264,765); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = caron; +} +); +width = 528; +} +); +unicode = 780; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 10; +glyphname = brevecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (185,520); +}, +{ +name = top; +pos = (185,725); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = breve; +} +); +width = 370; +}, +{ +anchors = ( +{ +name = _top; +pos = (222,520); +}, +{ +name = top; +pos = (222,765); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = breve; +} +); +width = 445; +} +); +unicode = 774; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 591; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 300; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 185; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = ringcomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (150,520); +}, +{ +name = top; +pos = (150,740); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = ring; +} +); +width = 300; +}, +{ +anchors = ( +{ +name = _top; +pos = (150,520); +}, +{ +name = top; +pos = (150,780); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = ring; +} +); +width = 300; +} +); +unicode = 778; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +} +); +}; +}, +{ +color = 10; +glyphname = tildecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (190,520); +}, +{ +name = top; +pos = (190,684); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = tilde; +} +); +width = 379; +}, +{ +anchors = ( +{ +name = _top; +pos = (254,520); +}, +{ +name = top; +pos = (254,770); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = tilde; +} +); +width = 507; +} +); +unicode = 771; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 680; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 179; +y = 0; +} +); +}; +}, +{ +color = 10; +glyphname = macroncomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (192,520); +}, +{ +name = top; +pos = (192,680); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = macron; +} +); +width = 383; +}, +{ +anchors = ( +{ +name = _top; +pos = (237,520); +}, +{ +name = top; +pos = (237,745); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = macron; +} +); +width = 473; +} +); +unicode = 772; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 6; +glyphname = commaturnedabovecomb; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (277,520); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(297,595,ls), +(313,595,o), +(320,606,o), +(322,622,cs), +(339,734,ls), +(341,746,o), +(336,755,o), +(325,755,cs), +(307,755,ls), +(292,755,o), +(287,747,o), +(281,734,c), +(241,629,ls), +(238,622,o), +(237,616,o), +(237,611,cs), +(237,603,o), +(243,595,o), +(252,595,cs) +); +} +); +width = 581; +}, +{ +anchors = ( +{ +name = _top; +pos = (337,520); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(407,595,ls), +(434,595,o), +(447,616,o), +(450,634,c), +(471,773,l), +(471,785,o), +(461,795,o), +(449,795,cs), +(344,795,ls), +(318,795,o), +(306,776,o), +(301,763,cs), +(246,624,ls), +(245,621,o), +(245,619,o), +(245,617,cs), +(245,605,o), +(255,595,o), +(267,595,cs) +); +} +); +width = 666; +} +); +unicode = 786; +}, +{ +color = 6; +glyphname = commaaccentcomb; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (138,0); +}, +{ +name = bottom; +pos = (125,-210); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(106,-210,ls), +(121,-210,o), +(126,-202,o), +(132,-189,c), +(172,-84,ls), +(175,-77,o), +(176,-71,o), +(176,-66,cs), +(176,-58,o), +(170,-50,o), +(161,-50,cs), +(116,-50,ls), +(100,-50,o), +(93,-61,o), +(91,-77,cs), +(74,-189,ls), +(72,-201,o), +(77,-210,o), +(88,-210,cs) +); +} +); +width = 245; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (177,0); +}, +{ +name = bottom; +pos = (163,-250); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(177,-250,ls), +(203,-250,o), +(215,-231,o), +(220,-218,cs), +(275,-79,ls), +(276,-76,o), +(276,-74,o), +(276,-72,cs), +(276,-60,o), +(266,-50,o), +(254,-50,cs), +(114,-50,ls), +(87,-50,o), +(74,-71,o), +(71,-89,c), +(50,-228,l), +(50,-240,o), +(60,-250,o), +(72,-250,cs) +); +} +); +width = 326; +} +); +unicode = 806; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-210"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-217"; +} +); +}; +}, +{ +color = 10; +glyphname = cedillacomb; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (160,0); +}, +{ +name = bottom; +pos = (160,-220); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = cedilla; +} +); +width = 320; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (141,0); +}, +{ +name = bottom; +pos = (141,-220); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = cedilla; +} +); +width = 282; +} +); +unicode = 807; +}, +{ +color = 10; +glyphname = ogonekcomb; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +pos = (243,57); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +ref = ogonek; +} +); +width = 313; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (253,122); +} +); +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +ref = ogonek; +} +); +width = 303; +} +); +unicode = 808; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +} +); +}; +}, +{ +color = 6; +glyphname = strokeshortcomb; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (195,300); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(317,271,ls), +(330,271,o), +(339,280,o), +(339,293,cs), +(339,307,ls), +(339,320,o), +(330,329,o), +(317,329,cs), +(72,329,ls), +(59,329,o), +(50,320,o), +(50,307,cs), +(50,293,ls), +(50,280,o), +(59,271,o), +(72,271,cs) +); +} +); +width = 529; +}, +{ +anchors = ( +{ +name = _center; +pos = (245,292); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(412,231,ls), +(427,231,o), +(439,243,o), +(439,258,cs), +(439,326,ls), +(439,341,o), +(427,353,o), +(412,353,cs), +(77,353,ls), +(62,353,o), +(50,341,o), +(50,326,cs), +(50,258,ls), +(50,243,o), +(62,231,o), +(77,231,cs) +); +} +); +width = 569; +} +); +unicode = 821; +}, +{ +color = 6; +glyphname = slashshortcomb; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (224,243); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(39,-45,ls), +(52,-45,o), +(57,-35,o), +(61,-30,c), +(443,498,ls), +(445,503,o), +(446,508,o), +(446,510,cs), +(446,521,o), +(437,530,o), +(426,530,cs), +(409,530,ls), +(396,530,o), +(391,520,o), +(387,515,cs), +(5,-13,l), +(1,-18,o), +(2,-23,o), +(2,-25,cs), +(2,-36,o), +(11,-45,o), +(22,-45,cs) +); +} +); +width = 459; +}, +{ +anchors = ( +{ +name = _center; +pos = (324,260); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(101,-28,ls), +(114,-28,o), +(122,-18,o), +(126,-13,cs), +(600,511,ls), +(607,519,o), +(606,525,o), +(606,527,cs), +(606,538,o), +(597,547,o), +(586,547,cs), +(548,547,ls), +(535,547,o), +(526,537,o), +(522,532,cs), +(48,8,ls), +(42,1,o), +(41,-3,o), +(41,-8,cs), +(41,-19,o), +(50,-28,o), +(61,-28,cs) +); +} +); +width = 579; +} +); +unicode = 823; +}, +{ +color = 6; +glyphname = slashlongcomb; +layers = ( +{ +anchors = ( +{ +name = _center; +pos = (231,351); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(24,-64,ls), +(37,-64,o), +(43,-54,o), +(46,-49,cs), +(470,734,ls), +(481,755,o), +(469,766,o), +(455,766,cs), +(436,766,ls), +(423,766,o), +(417,756,o), +(414,751,cs), +(-10,-32,ls), +(-18,-46,o), +(-9,-64,o), +(7,-64,cs) +); +} +); +width = 459; +}, +{ +anchors = ( +{ +name = _center; +pos = (285,351); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(31,-64,ls), +(47,-64,o), +(53,-53,o), +(56,-49,cs), +(597,729,ls), +(607,744,o), +(601,766,o), +(583,766,cs), +(538,766,ls), +(525,766,o), +(518,756,o), +(515,752,cs), +(-24,-25,ls), +(-38,-46,o), +(-29,-64,o), +(-11,-64,cs) +); +} +); +width = 579; +} +); +unicode = 824; +}, +{ +color = 6; +glyphname = dieresiscomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (203,700); +}, +{ +name = top; +pos = (203,833); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(313,750,ls), +(326,750,o), +(336,759,o), +(336,772,cs), +(336,810,ls), +(336,823,o), +(326,833,o), +(313,833,cs), +(275,833,ls), +(262,833,o), +(253,823,o), +(253,810,cs), +(253,772,ls), +(253,759,o), +(262,750,o), +(275,750,cs) +); +}, +{ +closed = 1; +nodes = ( +(130,750,ls), +(143,750,o), +(153,759,o), +(153,772,cs), +(153,810,ls), +(153,823,o), +(143,833,o), +(130,833,cs), +(92,833,ls), +(79,833,o), +(70,823,o), +(70,810,cs), +(70,772,ls), +(70,759,o), +(79,750,o), +(92,750,cs) +); +} +); +width = 406; +}, +{ +anchors = ( +{ +name = _top; +pos = (270,700); +}, +{ +name = top; +pos = (270,920); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(466,750,ls), +(479,750,o), +(489,760,o), +(489,773,cs), +(489,897,ls), +(489,910,o), +(479,920,o), +(466,920,cs), +(342,920,ls), +(329,920,o), +(319,910,o), +(319,897,cs), +(319,773,ls), +(319,760,o), +(329,750,o), +(342,750,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,750,ls), +(210,750,o), +(220,760,o), +(220,773,cs), +(220,897,ls), +(220,910,o), +(210,920,o), +(197,920,cs), +(73,920,ls), +(60,920,o), +(50,910,o), +(50,897,cs), +(50,773,ls), +(50,760,o), +(60,750,o), +(73,750,cs) +); +} +); +width = 539; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 750; +} +); +}; +}, +{ +color = 6; +glyphname = dotaccentcomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (117,700); +}, +{ +name = top; +pos = (117,843); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(140,750,ls), +(153,750,o), +(163,759,o), +(163,772,cs), +(163,820,ls), +(163,833,o), +(153,843,o), +(140,843,cs), +(92,843,ls), +(79,843,o), +(70,833,o), +(70,820,cs), +(70,772,ls), +(70,759,o), +(79,750,o), +(92,750,cs) +); +} +); +width = 233; +}, +{ +anchors = ( +{ +name = _top; +pos = (141,700); +}, +{ +name = top; +pos = (141,932); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(209,750,ls), +(222,750,o), +(232,760,o), +(232,773,cs), +(232,909,ls), +(232,922,o), +(222,932,o), +(209,932,cs), +(73,932,l), +(60,932,o), +(50,922,o), +(50,909,cs), +(50,773,ls), +(50,760,o), +(60,750,o), +(73,750,cs) +); +} +); +width = 282; +} +); +}, +{ +color = 6; +glyphname = gravecomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (238,700); +}, +{ +name = top; +pos = (188,880); +} +); +hints = ( +{ +horizontal = 1; +place = (862, 0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(260,750,ls), +(270,750,o), +(276,756,o), +(276,766,cs), +(276,771,o), +(274,776,o), +(271,779,cs), +(202,862,ls), +(191,875,o), +(185,880,o), +(165,880,cs), +(119,880,ls), +(107,880,o), +(100,873,o), +(100,861,cs), +(100,856,o), +(102,852,o), +(105,849,cs), +(214,760,ls), +(225,751,o), +(232,750,o), +(245,750,cs) +); +} +); +width = 376; +}, +{ +anchors = ( +{ +name = _top; +pos = (349,700); +}, +{ +name = top; +pos = (279,920); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(441,750,ls), +(451,750,o), +(457,756,o), +(457,766,cs), +(457,771,o), +(455,776,o), +(452,779,cs), +(352,901,l), +(337,918,o), +(330,920,o), +(315,920,cs), +(119,920,ls), +(107,920,o), +(100,912,o), +(100,900,cs), +(100,895,o), +(102,891,o), +(105,888,cs), +(252,767,ls), +(263,758,o), +(273,750,o), +(294,750,cs) +); +} +); +width = 557; +} +); +}, +{ +color = 6; +glyphname = acutecomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (128,700); +}, +{ +name = top; +pos = (188,880); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(131,750,ls), +(144,750,o), +(151,751,o), +(162,760,cs), +(271,849,ls), +(274,852,o), +(276,856,o), +(276,861,cs), +(276,873,o), +(269,880,o), +(257,880,cs), +(211,880,ls), +(191,880,o), +(185,875,o), +(174,862,cs), +(105,779,ls), +(102,776,o), +(100,771,o), +(100,766,cs), +(100,756,o), +(106,750,o), +(116,750,cs) +); +} +); +width = 376; +}, +{ +anchors = ( +{ +name = _top; +pos = (189,700); +}, +{ +name = top; +pos = (259,920); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(243,750,ls), +(264,750,o), +(274,758,o), +(285,767,cs), +(432,888,ls), +(435,891,o), +(437,895,o), +(437,900,cs), +(437,912,o), +(430,920,o), +(418,920,cs), +(222,920,ls), +(207,920,o), +(200,918,o), +(185,901,c), +(85,779,ls), +(82,776,o), +(80,771,o), +(80,766,cs), +(80,756,o), +(86,750,o), +(96,750,cs) +); +} +); +width = 557; +} +); +}, +{ +color = 6; +glyphname = hungarumlautcomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (173,700); +}, +{ +name = top; +pos = (213,880); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(249,750,ls), +(262,750,o), +(271,755,o), +(279,764,cs), +(350,848,ls), +(354,852,o), +(356,856,o), +(356,861,cs), +(356,873,o), +(348,880,o), +(336,880,cs), +(296,880,ls), +(275,880,o), +(265,874,o), +(259,861,cs), +(223,781,ls), +(221,777,o), +(218,771,o), +(218,766,cs), +(218,756,o), +(224,750,o), +(234,750,cs) +); +}, +{ +closed = 1; +nodes = ( +(101,750,ls), +(114,750,o), +(123,755,o), +(131,764,cs), +(202,848,ls), +(206,852,o), +(208,856,o), +(208,861,cs), +(208,873,o), +(200,880,o), +(188,880,cs), +(148,880,ls), +(127,880,o), +(117,874,o), +(111,861,cs), +(75,781,ls), +(73,777,o), +(70,771,o), +(70,766,cs), +(70,756,o), +(76,750,o), +(86,750,cs) +); +} +); +width = 426; +}, +{ +anchors = ( +{ +name = _top; +pos = (239,700); +}, +{ +name = top; +pos = (309,920); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(414,750,ls), +(427,750,o), +(440,755,o), +(448,764,cs), +(562,888,ls), +(565,891,o), +(568,896,o), +(568,901,cs), +(568,913,o), +(560,920,o), +(548,920,cs), +(391,920,ls), +(370,920,o), +(360,914,o), +(354,901,cs), +(300,781,ls), +(298,777,o), +(295,771,o), +(295,766,cs), +(295,756,o), +(301,750,o), +(311,750,cs) +); +}, +{ +closed = 1; +nodes = ( +(169,750,ls), +(182,750,o), +(195,755,o), +(203,764,cs), +(317,888,ls), +(320,891,o), +(323,896,o), +(323,901,cs), +(323,913,o), +(315,920,o), +(303,920,cs), +(146,920,ls), +(125,920,o), +(115,914,o), +(109,901,cs), +(55,781,ls), +(53,777,o), +(50,771,o), +(50,766,cs), +(50,756,o), +(56,750,o), +(66,750,cs) +); +} +); +width = 646; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 750; +} +); +}; +}, +{ +color = 6; +glyphname = circumflexcomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (206,700); +}, +{ +name = top; +pos = (206,880); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(101,750,ls), +(109,750,o), +(121,753,o), +(126,757,cs), +(206,817,l), +(286,757,ls), +(291,753,o), +(303,750,o), +(311,750,cs), +(328,750,ls), +(338,750,o), +(342,753,o), +(342,761,cs), +(342,767,o), +(338,773,o), +(330,781,cs), +(243,866,ls), +(229,880,o), +(221,880,o), +(211,880,cs), +(201,880,ls), +(191,880,o), +(183,880,o), +(169,866,cs), +(82,781,ls), +(74,773,o), +(70,767,o), +(70,761,cs), +(70,753,o), +(74,750,o), +(84,750,cs) +); +} +); +width = 412; +}, +{ +anchors = ( +{ +name = _top; +pos = (275,700); +}, +{ +name = top; +pos = (275,920); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(143,750,ls), +(156,750,o), +(169,750,o), +(183,757,cs), +(275,799,l), +(367,757,ls), +(381,750,o), +(394,750,o), +(407,750,cs), +(478,750,ls), +(488,750,o), +(494,756,o), +(494,766,cs), +(494,771,o), +(492,776,o), +(489,779,cs), +(377,901,ls), +(364,915,o), +(355,920,o), +(340,920,cs), +(210,920,ls), +(195,920,o), +(186,915,o), +(173,901,cs), +(61,779,ls), +(58,776,o), +(56,771,o), +(56,766,cs), +(56,756,o), +(62,750,o), +(72,750,cs) +); +} +); +width = 548; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 750; +} +); +}; +}, +{ +color = 6; +glyphname = caroncomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (206,700); +}, +{ +name = top; +pos = (206,880); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,750,ls), +(221,750,o), +(229,750,o), +(243,764,cs), +(330,849,ls), +(338,857,o), +(342,863,o), +(342,869,cs), +(342,877,o), +(338,880,o), +(328,880,cs), +(311,880,ls), +(303,880,o), +(291,877,o), +(286,873,cs), +(206,813,l), +(126,873,ls), +(121,877,o), +(109,880,o), +(101,880,cs), +(84,880,ls), +(74,880,o), +(70,877,o), +(70,869,cs), +(70,863,o), +(74,857,o), +(82,849,cs), +(169,764,ls), +(183,750,o), +(191,750,o), +(201,750,cs) +); +} +); +width = 412; +}, +{ +anchors = ( +{ +name = _top; +pos = (275,700); +}, +{ +name = top; +pos = (275,920); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(340,750,ls), +(355,750,o), +(364,755,o), +(377,769,cs), +(489,891,ls), +(492,894,o), +(494,899,o), +(494,904,cs), +(494,914,o), +(488,920,o), +(478,920,cs), +(407,920,ls), +(394,920,o), +(381,920,o), +(367,913,cs), +(275,871,l), +(183,913,ls), +(169,920,o), +(156,920,o), +(143,920,cs), +(72,920,ls), +(62,920,o), +(56,914,o), +(56,904,cs), +(56,899,o), +(58,894,o), +(61,891,cs), +(173,769,ls), +(186,755,o), +(195,750,o), +(210,750,cs) +); +} +); +width = 548; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 750; +} +); +}; +}, +{ +color = 6; +glyphname = brevecomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (185,700); +}, +{ +name = top; +pos = (185,875); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(276,740,o), +(300,799,o), +(300,856,cs), +(300,866,o), +(293,875,o), +(281,875,cs), +(266,875,ls), +(254,875,o), +(247,866,o), +(247,856,cs), +(247,824,o), +(234,790,o), +(185,790,cs), +(136,790,o), +(123,824,o), +(123,856,cs), +(123,866,o), +(116,875,o), +(104,875,cs), +(89,875,ls), +(77,875,o), +(70,866,o), +(70,856,cs), +(70,799,o), +(94,740,o), +(185,740,cs) +); +} +); +width = 370; +}, +{ +anchors = ( +{ +name = _top; +pos = (227,700); +}, +{ +name = top; +pos = (227,920); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(347,745,o), +(404,811,o), +(404,901,cs), +(404,911,o), +(397,920,o), +(385,920,cs), +(286,920,ls), +(274,920,o), +(267,911,o), +(267,901,cs), +(267,871,o), +(259,846,o), +(227,846,cs), +(195,846,o), +(187,871,o), +(187,901,cs), +(187,911,o), +(180,920,o), +(168,920,cs), +(69,920,ls), +(57,920,o), +(50,911,o), +(50,901,cs), +(50,811,o), +(107,745,o), +(227,745,cs) +); +} +); +width = 454; +} +); +}, +{ +color = 6; +glyphname = ringcomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (150,700); +}, +{ +name = top; +pos = (150,890); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,740,o), +(230,771,o), +(230,815,cs), +(230,859,o), +(194,890,o), +(150,890,cs), +(106,890,o), +(70,859,o), +(70,815,cs), +(70,771,o), +(106,740,o), +(150,740,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,785,o), +(120,798,o), +(120,815,cs), +(120,832,o), +(133,845,o), +(150,845,cs), +(167,845,o), +(180,832,o), +(180,815,cs), +(180,798,o), +(167,785,o), +(150,785,cs) +); +} +); +width = 300; +}, +{ +anchors = ( +{ +name = _top; +pos = (150,700); +}, +{ +name = top; +pos = (150,930); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,740,o), +(250,780,o), +(250,835,cs), +(250,890,o), +(205,930,o), +(150,930,cs), +(95,930,o), +(50,890,o), +(50,835,cs), +(50,780,o), +(95,740,o), +(150,740,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,805,o), +(120,818,o), +(120,835,cs), +(120,852,o), +(133,865,o), +(150,865,cs), +(167,865,o), +(180,852,o), +(180,835,cs), +(180,818,o), +(167,805,o), +(150,805,cs) +); +} +); +width = 300; +} +); +}, +{ +color = 6; +glyphname = tildecomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (195,700); +}, +{ +name = top; +pos = (195,844); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(284,745,o), +(319,786,o), +(319,824,cs), +(319,832,o), +(313,840,o), +(303,840,cs), +(283,840,ls), +(261,840,o), +(266,810,o), +(242,810,cs), +(213,810,o), +(191,844,o), +(144,844,cs), +(103,844,o), +(70,804,o), +(70,766,cs), +(70,758,o), +(76,750,o), +(86,750,cs), +(106,750,ls), +(127,750,o), +(124,779,o), +(147,779,cs), +(175,779,o), +(198,745,o), +(244,745,cs) +); +} +); +width = 389; +}, +{ +anchors = ( +{ +name = _top; +pos = (254,700); +}, +{ +name = top; +pos = (254,925); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(430,745,o), +(457,855,o), +(457,901,cs), +(457,911,o), +(450,920,o), +(438,920,cs), +(354,920,ls), +(332,920,o), +(334,889,o), +(304,889,cs), +(265,889,o), +(246,925,o), +(186,925,cs), +(76,925,o), +(50,814,o), +(50,768,cs), +(50,758,o), +(59,750,o), +(69,750,cs), +(153,750,ls), +(175,750,o), +(172,781,o), +(203,781,cs), +(242,781,o), +(261,745,o), +(321,745,cs) +); +} +); +width = 527; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 750; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 833; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 880; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 246; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = macroncomb.case; +layers = ( +{ +anchors = ( +{ +name = _top; +pos = (192,700); +}, +{ +name = top; +pos = (192,816); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(291,750,ls), +(304,750,o), +(313,759,o), +(313,772,cs), +(313,794,ls), +(313,807,o), +(304,816,o), +(291,816,cs), +(92,816,ls), +(79,816,o), +(70,807,o), +(70,794,cs), +(70,772,ls), +(70,759,o), +(79,750,o), +(92,750,cs) +); +} +); +width = 383; +}, +{ +anchors = ( +{ +name = _top; +pos = (262,700); +}, +{ +name = top; +pos = (262,900); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(450,750,ls), +(463,750,o), +(473,760,o), +(473,773,cs), +(473,877,ls), +(473,890,o), +(463,900,o), +(450,900,cs), +(73,900,ls), +(60,900,o), +(50,890,o), +(50,877,cs), +(50,773,ls), +(50,760,o), +(60,750,o), +(73,750,cs) +); +} +); +width = 523; +} +); +}, +{ +color = 6; +glyphname = commaaccentcomb.case; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (136,0); +}, +{ +name = bottom; +pos = (122,-210); +} +); +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(103,-210,ls), +(118,-210,o), +(123,-202,o), +(129,-189,c), +(169,-84,ls), +(172,-77,o), +(173,-71,o), +(173,-66,cs), +(173,-58,o), +(167,-50,o), +(158,-50,cs), +(113,-50,ls), +(97,-50,o), +(90,-61,o), +(88,-77,cs), +(71,-189,ls), +(69,-201,o), +(74,-210,o), +(85,-210,cs) +); +} +); +width = 243; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (183,0); +}, +{ +name = bottom; +pos = (169,-250); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(188,-250,ls), +(214,-250,o), +(226,-231,o), +(231,-218,cs), +(286,-79,ls), +(287,-76,o), +(287,-74,o), +(287,-72,cs), +(287,-60,o), +(277,-50,o), +(265,-50,cs), +(114,-50,ls), +(87,-50,o), +(74,-71,o), +(71,-89,c), +(50,-228,l), +(50,-240,o), +(60,-250,o), +(72,-250,cs) +); +} +); +width = 337; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-210"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +} +); +}; +}, +{ +color = 6; +glyphname = cedillacomb.case; +layers = ( +{ +anchors = ( +{ +name = _bottom; +pos = (160,0); +}, +{ +name = bottom; +pos = (160,-220); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(219,-221,o), +(250,-180,o), +(250,-132,cs), +(250,-84,o), +(218,-50,o), +(174,-50,cs), +(159,-50,o), +(144,-53,o), +(136,-58,c), +(178,27,l), +(120,27,l), +(85,-53,ls), +(81,-63,o), +(73,-75,o), +(80,-83,cs), +(96,-100,ls), +(111,-116,o), +(124,-96,o), +(156,-96,cs), +(179,-96,o), +(199,-110,o), +(199,-134,cs), +(199,-159,o), +(179,-174,o), +(156,-174,cs), +(112,-174,o), +(105,-140,o), +(88,-156,cs), +(74,-169,ls), +(58,-184,o), +(99,-219,o), +(156,-220,cs) +); +} +); +width = 320; +}, +{ +anchors = ( +{ +name = _bottom; +pos = (141,0); +}, +{ +name = bottom; +pos = (141,-220); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,-220,o), +(232,-183,o), +(232,-130,cs), +(232,-77,o), +(202,-40,o), +(151,-40,cs), +(147,-40,o), +(129,-42,o), +(121,-45,c), +(158,27,l), +(91,27,l), +(56,-52,ls), +(47,-71,o), +(49,-76,o), +(58,-85,cs), +(79,-106,ls), +(92,-119,o), +(115,-106,o), +(133,-106,cs), +(153,-106,o), +(161,-118,o), +(161,-130,cs), +(161,-142,o), +(152,-154,o), +(133,-154,cs), +(99,-154,o), +(94,-136,o), +(77,-151,cs), +(56,-169,ls), +(33,-189,o), +(80,-220,o), +(133,-220,cs) +); +} +); +width = 282; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-50"; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 222; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = ogonekcomb.case; +layers = ( +{ +anchors = ( +{ +name = _ogonek; +pos = (243,57); +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,-220,ls), +(234,-220,o), +(243,-211,o), +(243,-198,cs), +(243,-185,ls), +(243,-172,o), +(234,-163,o), +(221,-163,cs), +(206,-163,ls), +(162,-163,o), +(130,-133,o), +(130,-82,cs), +(130,-31,o), +(162,0,o), +(206,0,cs), +(221,0,ls), +(234,0,o), +(243,9,o), +(243,22,cs), +(243,35,ls), +(243,48,o), +(234,57,o), +(221,57,cs), +(202,57,ls), +(121,57,o), +(70,3,o), +(70,-82,cs), +(70,-167,o), +(121,-220,o), +(202,-220,cs) +); +} +); +width = 313; +}, +{ +anchors = ( +{ +name = _ogonek; +pos = (253,122); +} +); +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,-220,ls), +(241,-220,o), +(253,-208,o), +(253,-193,cs), +(253,-125,ls), +(253,-110,o), +(241,-98,o), +(226,-98,cs), +(216,-98,ls), +(177,-98,o), +(166,-70,o), +(166,-49,cs), +(166,-28,o), +(177,0,o), +(216,0,cs), +(226,0,ls), +(241,0,o), +(253,12,o), +(253,27,cs), +(253,95,ls), +(253,110,o), +(241,122,o), +(226,122,cs), +(212,122,ls), +(91,122,o), +(40,46,o), +(40,-49,cs), +(40,-144,o), +(91,-220,o), +(212,-220,cs) +); +} +); +width = 303; +} +); +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-82"; +} +); +}; +}, +{ +color = 6; +glyphname = dieresis; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(283,627,ls), +(296,627,o), +(306,636,o), +(306,649,cs), +(306,687,ls), +(306,700,o), +(296,710,o), +(283,710,cs), +(245,710,ls), +(232,710,o), +(223,700,o), +(223,687,cs), +(223,649,ls), +(223,636,o), +(232,627,o), +(245,627,cs) +); +}, +{ +closed = 1; +nodes = ( +(130,627,ls), +(143,627,o), +(153,636,o), +(153,649,cs), +(153,687,ls), +(153,700,o), +(143,710,o), +(130,710,cs), +(92,710,ls), +(79,710,o), +(70,700,o), +(70,687,cs), +(70,649,ls), +(70,636,o), +(79,627,o), +(92,627,cs) +); +} +); +width = 376; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(436,595,ls), +(449,595,o), +(459,605,o), +(459,618,cs), +(459,742,ls), +(459,755,o), +(449,765,o), +(436,765,cs), +(312,765,ls), +(299,765,o), +(289,755,o), +(289,742,cs), +(289,618,ls), +(289,605,o), +(299,595,o), +(312,595,cs) +); +}, +{ +closed = 1; +nodes = ( +(197,595,ls), +(210,595,o), +(220,605,o), +(220,618,cs), +(220,742,ls), +(220,755,o), +(210,765,o), +(197,765,cs), +(73,765,ls), +(60,765,o), +(50,755,o), +(50,742,cs), +(50,618,ls), +(50,605,o), +(60,595,o), +(73,595,cs) +); +} +); +width = 509; +} +); +unicode = 168; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 575; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 153; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = dotaccent; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,4); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(140,617,ls), +(153,617,o), +(163,626,o), +(163,639,cs), +(163,687,ls), +(163,700,o), +(153,710,o), +(140,710,cs), +(92,710,ls), +(79,710,o), +(70,700,o), +(70,687,cs), +(70,639,ls), +(70,626,o), +(79,617,o), +(92,617,cs) +); +} +); +width = 233; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(204,595,ls), +(217,595,o), +(227,605,o), +(227,618,cs), +(227,749,ls), +(227,762,o), +(217,772,o), +(204,772,cs), +(73,772,ls), +(60,772,o), +(50,762,o), +(50,749,cs), +(50,618,ls), +(50,605,o), +(60,595,o), +(73,595,cs) +); +} +); +width = 277; +} +); +unicode = 729; +}, +{ +color = 6; +glyphname = grave; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,7); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(225,595,ls), +(235,595,o), +(241,601,o), +(241,611,cs), +(241,616,o), +(239,621,o), +(236,624,cs), +(167,707,ls), +(156,720,o), +(150,725,o), +(130,725,cs), +(89,725,ls), +(77,725,o), +(70,718,o), +(70,706,cs), +(70,701,o), +(72,697,o), +(75,694,cs), +(184,605,ls), +(195,596,o), +(202,595,o), +(215,595,cs) +); +} +); +width = 311; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(384,595,ls), +(394,595,o), +(400,601,o), +(400,611,cs), +(400,616,o), +(398,621,o), +(395,624,cs), +(295,746,l), +(280,763,o), +(273,765,o), +(258,765,cs), +(72,765,ls), +(60,765,o), +(53,757,o), +(53,745,cs), +(53,740,o), +(55,736,o), +(58,733,cs), +(205,612,ls), +(216,603,o), +(226,595,o), +(247,595,cs) +); +} +); +width = 450; +} +); +unicode = 96; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 725; +} +); +}; +}, +{ +color = 6; +glyphname = acute; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(96,595,ls), +(109,595,o), +(116,596,o), +(127,605,cs), +(236,694,ls), +(239,697,o), +(241,701,o), +(241,706,cs), +(241,718,o), +(234,725,o), +(222,725,cs), +(181,725,ls), +(161,725,o), +(155,720,o), +(144,707,cs), +(75,624,ls), +(72,621,o), +(70,616,o), +(70,611,cs), +(70,601,o), +(76,595,o), +(86,595,cs) +); +} +); +width = 311; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(203,595,ls), +(224,595,o), +(234,603,o), +(245,612,cs), +(392,733,ls), +(395,736,o), +(397,740,o), +(397,745,cs), +(397,757,o), +(390,765,o), +(378,765,cs), +(192,765,ls), +(177,765,o), +(170,763,o), +(155,746,c), +(55,624,ls), +(52,621,o), +(50,616,o), +(50,611,cs), +(50,601,o), +(56,595,o), +(66,595,cs) +); +} +); +width = 450; +} +); +unicode = 180; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 6; +glyphname = hungarumlaut; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (1,15); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(239,595,ls), +(252,595,o), +(261,600,o), +(269,609,cs), +(340,693,ls), +(344,697,o), +(346,701,o), +(346,706,cs), +(346,718,o), +(338,725,o), +(326,725,cs), +(291,725,ls), +(270,725,o), +(260,719,o), +(254,706,cs), +(218,626,ls), +(216,622,o), +(213,616,o), +(213,611,cs), +(213,601,o), +(219,595,o), +(229,595,cs) +); +}, +{ +closed = 1; +nodes = ( +(96,595,ls), +(109,595,o), +(118,600,o), +(126,609,cs), +(197,693,ls), +(201,697,o), +(203,701,o), +(203,706,cs), +(203,718,o), +(195,725,o), +(183,725,cs), +(148,725,ls), +(127,725,o), +(117,719,o), +(111,706,cs), +(75,626,ls), +(73,622,o), +(70,616,o), +(70,611,cs), +(70,601,o), +(76,595,o), +(86,595,cs) +); +} +); +width = 416; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(417,595,ls), +(430,595,o), +(443,600,o), +(451,609,cs), +(565,733,ls), +(568,736,o), +(571,741,o), +(571,746,cs), +(571,758,o), +(563,765,o), +(551,765,cs), +(404,765,ls), +(383,765,o), +(373,759,o), +(367,746,cs), +(313,626,ls), +(311,622,o), +(308,616,o), +(308,611,cs), +(308,601,o), +(314,595,o), +(324,595,cs) +); +}, +{ +closed = 1; +nodes = ( +(161,595,ls), +(174,595,o), +(187,600,o), +(195,609,cs), +(309,733,ls), +(312,736,o), +(315,741,o), +(315,746,cs), +(315,758,o), +(307,765,o), +(295,765,cs), +(148,765,ls), +(127,765,o), +(117,759,o), +(111,746,cs), +(57,626,ls), +(55,622,o), +(52,616,o), +(52,611,cs), +(52,601,o), +(58,595,o), +(68,595,cs) +); +} +); +width = 622; +} +); +unicode = 733; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 6; +glyphname = circumflex; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,20); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(101,595,ls), +(109,595,o), +(121,598,o), +(126,602,cs), +(206,662,l), +(286,602,ls), +(291,598,o), +(303,595,o), +(311,595,cs), +(328,595,ls), +(338,595,o), +(342,598,o), +(342,606,cs), +(342,612,o), +(338,618,o), +(330,626,cs), +(243,711,ls), +(229,725,o), +(221,725,o), +(211,725,cs), +(201,725,ls), +(191,725,o), +(183,725,o), +(169,711,cs), +(82,626,ls), +(74,618,o), +(70,612,o), +(70,606,cs), +(70,598,o), +(74,595,o), +(84,595,cs) +); +} +); +width = 412; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(132,595,ls), +(145,595,o), +(158,595,o), +(172,602,cs), +(264,644,l), +(356,602,ls), +(370,595,o), +(383,595,o), +(396,595,cs), +(462,595,ls), +(472,595,o), +(478,601,o), +(478,611,cs), +(478,616,o), +(476,621,o), +(473,624,cs), +(361,746,ls), +(348,760,o), +(339,765,o), +(324,765,cs), +(204,765,ls), +(189,765,o), +(180,760,o), +(167,746,cs), +(55,624,ls), +(52,621,o), +(50,616,o), +(50,611,cs), +(50,601,o), +(56,595,o), +(66,595,cs) +); +} +); +width = 528; +} +); +unicode = 710; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 6; +glyphname = caron; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(211,595,ls), +(221,595,o), +(229,595,o), +(243,609,cs), +(330,694,ls), +(338,702,o), +(342,708,o), +(342,714,cs), +(342,722,o), +(338,725,o), +(328,725,cs), +(311,725,ls), +(303,725,o), +(291,722,o), +(286,718,cs), +(206,658,l), +(126,718,ls), +(121,722,o), +(109,725,o), +(101,725,cs), +(84,725,ls), +(74,725,o), +(70,722,o), +(70,714,cs), +(70,708,o), +(74,702,o), +(82,694,cs), +(169,609,ls), +(183,595,o), +(191,595,o), +(201,595,cs) +); +} +); +width = 412; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(324,595,ls), +(339,595,o), +(348,600,o), +(361,614,cs), +(473,736,ls), +(476,739,o), +(478,744,o), +(478,749,cs), +(478,759,o), +(472,765,o), +(462,765,cs), +(396,765,ls), +(383,765,o), +(370,765,o), +(356,758,cs), +(264,716,l), +(172,758,ls), +(158,765,o), +(145,765,o), +(132,765,cs), +(66,765,ls), +(56,765,o), +(50,759,o), +(50,749,cs), +(50,744,o), +(52,739,o), +(55,736,cs), +(167,614,ls), +(180,600,o), +(189,595,o), +(204,595,cs) +); +} +); +width = 528; +} +); +unicode = 711; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 6; +glyphname = breve; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,12); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,18); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(273,590,o), +(295,649,o), +(295,706,cs), +(295,716,o), +(288,725,o), +(276,725,cs), +(261,725,ls), +(249,725,o), +(242,716,o), +(242,706,cs), +(242,674,o), +(231,640,o), +(185,640,cs), +(139,640,o), +(128,674,o), +(128,706,cs), +(128,716,o), +(121,725,o), +(109,725,cs), +(94,725,ls), +(82,725,o), +(75,716,o), +(75,706,cs), +(75,649,o), +(97,590,o), +(185,590,cs) +); +} +); +width = 370; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(332,590,o), +(394,656,o), +(394,746,cs), +(394,756,o), +(387,765,o), +(375,765,cs), +(281,765,ls), +(269,765,o), +(262,756,o), +(262,746,cs), +(262,716,o), +(252,691,o), +(222,691,cs), +(192,691,o), +(182,716,o), +(182,746,cs), +(182,756,o), +(175,765,o), +(163,765,cs), +(69,765,ls), +(57,765,o), +(50,756,o), +(50,746,cs), +(50,656,o), +(112,590,o), +(222,590,cs) +); +} +); +width = 445; +} +); +unicode = 728; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 591; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 300; +y = 0; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 185; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = ring; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (1,2); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(194,590,o), +(230,621,o), +(230,665,cs), +(230,709,o), +(194,740,o), +(150,740,cs), +(106,740,o), +(70,709,o), +(70,665,cs), +(70,621,o), +(106,590,o), +(150,590,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,635,o), +(120,648,o), +(120,665,cs), +(120,682,o), +(133,695,o), +(150,695,cs), +(167,695,o), +(180,682,o), +(180,665,cs), +(180,648,o), +(167,635,o), +(150,635,cs) +); +} +); +width = 300; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(205,590,o), +(250,630,o), +(250,685,cs), +(250,740,o), +(205,780,o), +(150,780,cs), +(95,780,o), +(50,740,o), +(50,685,cs), +(50,630,o), +(95,590,o), +(150,590,cs) +); +}, +{ +closed = 1; +nodes = ( +(133,655,o), +(120,668,o), +(120,685,cs), +(120,702,o), +(133,715,o), +(150,715,cs), +(167,715,o), +(180,702,o), +(180,685,cs), +(180,668,o), +(167,655,o), +(150,655,cs) +); +} +); +width = 300; +} +); +unicode = 730; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 590; +} +); +}; +}, +{ +color = 6; +glyphname = tilde; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,25); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,12); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(277,590,o), +(309,626,o), +(309,664,cs), +(309,672,o), +(303,680,o), +(293,680,cs), +(273,680,ls), +(251,680,o), +(256,650,o), +(232,650,cs), +(203,650,o), +(188,684,o), +(141,684,cs), +(100,684,o), +(70,649,o), +(70,611,cs), +(70,603,o), +(76,595,o), +(86,595,cs), +(106,595,ls), +(127,595,o), +(124,624,o), +(147,624,cs), +(175,624,o), +(191,590,o), +(237,590,cs) +); +} +); +width = 379; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(430,590,o), +(457,700,o), +(457,746,cs), +(457,756,o), +(450,765,o), +(438,765,cs), +(354,765,ls), +(332,765,o), +(334,734,o), +(304,734,cs), +(265,734,o), +(246,770,o), +(186,770,cs), +(76,770,o), +(50,659,o), +(50,613,cs), +(50,603,o), +(59,595,o), +(69,595,cs), +(153,595,ls), +(175,595,o), +(172,626,o), +(203,626,cs), +(242,626,o), +(261,590,o), +(321,590,cs) +); +} +); +width = 507; +} +); +unicode = 732; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 680; +}, +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +}, +{ +angle = 90; +isGlobal = 0; +magnetic = 5; +x = 179; +y = 0; +} +); +}; +}, +{ +color = 6; +glyphname = macron; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,0); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(291,622,ls), +(304,622,o), +(313,631,o), +(313,644,cs), +(313,658,ls), +(313,671,o), +(304,680,o), +(291,680,cs), +(92,680,ls), +(79,680,o), +(70,671,o), +(70,658,cs), +(70,644,ls), +(70,631,o), +(79,622,o), +(92,622,cs) +); +} +); +width = 383; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(400,595,ls), +(413,595,o), +(423,605,o), +(423,618,cs), +(423,722,ls), +(423,735,o), +(413,745,o), +(400,745,cs), +(73,745,ls), +(60,745,o), +(50,735,o), +(50,722,cs), +(50,618,ls), +(50,605,o), +(60,595,o), +(73,595,cs) +); +} +); +width = 473; +} +); +unicode = 175; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = 595; +} +); +}; +}, +{ +color = 6; +glyphname = cedilla; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,10); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(219,-221,o), +(250,-180,o), +(250,-132,cs), +(250,-84,o), +(218,-50,o), +(174,-50,cs), +(159,-50,o), +(144,-53,o), +(136,-58,c), +(178,27,l), +(120,27,l), +(85,-53,ls), +(81,-63,o), +(73,-75,o), +(80,-83,cs), +(96,-100,ls), +(111,-116,o), +(124,-96,o), +(156,-96,cs), +(179,-96,o), +(199,-110,o), +(199,-134,cs), +(199,-159,o), +(179,-174,o), +(156,-174,cs), +(112,-174,o), +(105,-140,o), +(88,-156,cs), +(74,-169,ls), +(58,-184,o), +(99,-219,o), +(156,-220,cs) +); +} +); +width = 320; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(193,-220,o), +(232,-183,o), +(232,-130,cs), +(232,-77,o), +(202,-40,o), +(151,-40,cs), +(147,-40,o), +(129,-42,o), +(121,-45,c), +(158,27,l), +(91,27,l), +(56,-52,ls), +(47,-71,o), +(49,-76,o), +(58,-85,cs), +(79,-106,ls), +(92,-119,o), +(115,-106,o), +(133,-106,cs), +(153,-106,o), +(161,-118,o), +(161,-130,cs), +(161,-142,o), +(152,-154,o), +(133,-154,cs), +(99,-154,o), +(94,-136,o), +(77,-151,cs), +(56,-169,ls), +(33,-189,o), +(80,-220,o), +(133,-220,cs) +); +} +); +width = 282; +} +); +unicode = 184; +}, +{ +color = 6; +glyphname = ogonek; +layers = ( +{ +hints = ( +{ +horizontal = 1; +origin = (0,11); +type = Tag; +}, +{ +horizontal = 1; +origin = (0,18); +type = Tag; +} +); +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(221,-220,ls), +(234,-220,o), +(243,-211,o), +(243,-198,cs), +(243,-185,ls), +(243,-172,o), +(234,-163,o), +(221,-163,cs), +(206,-163,ls), +(162,-163,o), +(130,-133,o), +(130,-82,cs), +(130,-31,o), +(162,0,o), +(206,0,cs), +(221,0,ls), +(234,0,o), +(243,9,o), +(243,22,cs), +(243,35,ls), +(243,48,o), +(234,57,o), +(221,57,cs), +(202,57,ls), +(121,57,o), +(70,3,o), +(70,-82,cs), +(70,-167,o), +(121,-220,o), +(202,-220,cs) +); +} +); +width = 313; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(226,-220,ls), +(241,-220,o), +(253,-208,o), +(253,-193,cs), +(253,-125,ls), +(253,-110,o), +(241,-98,o), +(226,-98,cs), +(216,-98,ls), +(177,-98,o), +(166,-70,o), +(166,-49,cs), +(166,-28,o), +(177,0,o), +(216,0,cs), +(226,0,ls), +(241,0,o), +(253,12,o), +(253,27,cs), +(253,95,ls), +(253,110,o), +(241,122,o), +(226,122,cs), +(212,122,ls), +(91,122,o), +(40,46,o), +(40,-49,cs), +(40,-144,o), +(91,-220,o), +(212,-220,cs) +); +} +); +width = 303; +} +); +unicode = 731; +userData = { +com.typemytype.robofont.guides = ( +{ +angle = 0; +isGlobal = 0; +magnetic = 5; +x = 0; +y = "-220"; +} +); +}; +}, +{ +color = 10; +glyphname = apostrophemod; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +pos = (-74,845); +ref = commaaccentcomb; +} +); +width = 102; +}, +{ +color = 10; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +pos = (-50,845); +ref = commaaccentcomb; +} +); +width = 226; +} +); +unicode = 700; +}, +{ +color = 6; +export = 0; +glyphname = "verticalbar-cy"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,155,ls), +(100,142,o), +(109,133,o), +(122,133,cs), +(126,133,ls), +(139,133,o), +(148,142,o), +(148,155,cs), +(148,380,ls), +(148,393,o), +(139,402,o), +(126,402,cs), +(122,402,ls), +(109,402,o), +(100,393,o), +(100,380,cs) +); +} +); +width = 248; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,160,ls), +(100,145,o), +(112,133,o), +(127,133,cs), +(139,133,ls), +(154,133,o), +(166,145,o), +(166,160,cs), +(166,375,ls), +(166,390,o), +(154,402,o), +(139,402,cs), +(127,402,ls), +(112,402,o), +(100,390,o), +(100,375,cs) +); +} +); +width = 266; +} +); +}, +{ +color = 6; +export = 0; +glyphname = "verticalbar-cy.case"; +layers = ( +{ +layerId = "581BC726-83A6-4935-8633-5A6508251040"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,225,ls), +(100,212,o), +(109,203,o), +(122,203,cs), +(126,203,ls), +(139,203,o), +(148,212,o), +(148,225,cs), +(148,490,ls), +(148,503,o), +(139,512,o), +(126,512,cs), +(122,512,ls), +(109,512,o), +(100,503,o), +(100,490,cs) +); +} +); +width = 248; +}, +{ +color = 6; +layerId = "EC64484B-0978-4CB1-9EE9-C40A2D8C4059"; +shapes = ( +{ +closed = 1; +nodes = ( +(100,210,ls), +(100,195,o), +(112,183,o), +(127,183,cs), +(139,183,ls), +(154,183,o), +(166,195,o), +(166,210,cs), +(166,505,ls), +(166,520,o), +(154,532,o), +(139,532,cs), +(127,532,ls), +(112,532,o), +(100,520,o), +(100,505,cs) +); +} +); +width = 266; +} +); +} +); +instances = ( +{ +axesValues = ( +60 +); +instanceInterpolations = { +"581BC726-83A6-4935-8633-5A6508251040" = 1; +}; +name = Light; +weightClass = 300; +}, +{ +axesValues = ( +90 +); +instanceInterpolations = { +"581BC726-83A6-4935-8633-5A6508251040" = 0.8125; +"EC64484B-0978-4CB1-9EE9-C40A2D8C4059" = 0.1875; +}; +name = Regular; +}, +{ +axesValues = ( +125 +); +instanceInterpolations = { +"581BC726-83A6-4935-8633-5A6508251040" = 0.59375; +"EC64484B-0978-4CB1-9EE9-C40A2D8C4059" = 0.40625; +}; +name = Medium; +weightClass = 500; +}, +{ +axesValues = ( +142 +); +instanceInterpolations = { +"581BC726-83A6-4935-8633-5A6508251040" = 0.4875; +"EC64484B-0978-4CB1-9EE9-C40A2D8C4059" = 0.5125; +}; +name = SemiBold; +weightClass = 600; +}, +{ +axesValues = ( +160 +); +instanceInterpolations = { +"581BC726-83A6-4935-8633-5A6508251040" = 0.375; +"EC64484B-0978-4CB1-9EE9-C40A2D8C4059" = 0.625; +}; +isBold = 1; +name = Bold; +weightClass = 700; +}, +{ +axesValues = ( +190 +); +instanceInterpolations = { +"581BC726-83A6-4935-8633-5A6508251040" = 0.1875; +"EC64484B-0978-4CB1-9EE9-C40A2D8C4059" = 0.8125; +}; +name = ExtraBold; +weightClass = 800; +}, +{ +axesValues = ( +220 +); +instanceInterpolations = { +"EC64484B-0978-4CB1-9EE9-C40A2D8C4059" = 1; +}; +name = Black; +weightClass = 900; +}, +{ +axesValues = ( +0 +); +customParameters = ( +{ +name = "Variable Font Origin"; +value = "581BC726-83A6-4935-8633-5A6508251040"; +} +); +instanceInterpolations = { +"581BC726-83A6-4935-8633-5A6508251040" = 1; +}; +name = Regular; +type = variable; +} +); +kerningLTR = { +"581BC726-83A6-4935-8633-5A6508251040" = { +"@MMK_L_A" = { +"@MMK_R_J" = -9; +"@MMK_R_O" = -12; +"@MMK_R_S" = -10; +"@MMK_R_T" = -75; +"@MMK_R_U" = -12; +"@MMK_R_W" = -26; +"@MMK_R_Y" = -68; +"@MMK_R_d" = -6; +"@MMK_R_f" = -20; +"@MMK_R_g" = -6; +"@MMK_R_guilsinglleft" = -24; +"@MMK_R_guilsinglleft.cap" = -25; +"@MMK_R_hyphen" = -25; +"@MMK_R_hyphen.cap" = -31; +"@MMK_R_o" = -6; +"@MMK_R_quoteleft" = -70; +"@MMK_R_quoteright" = -71; +"@MMK_R_quotesingle" = -69; +"@MMK_R_t" = -24; +"@MMK_R_u" = -7; +"@MMK_R_w" = -18; +"@MMK_R_y" = -29; +V = -46; +asterisk = -62; +backslash = -65; +braceright = -28; +braceright.case = -22; +bracketright = -29; +bracketright.case = -25; +copyright = -14; +eth = -6; +j = 16; +longs = -20; +nine = -28; +one = -43; +ordfeminine = -56; +ordmasculine = -59; +parenright = -33; +parenright.case = -23; +question = -40; +registered = -14; +seven = -20; +space = -27; +trademark = -68; +v = -28; +}; +"@MMK_L_C" = { +"@MMK_R_A" = -6; +"@MMK_R_Y" = -18; +"@MMK_R_hyphen" = -16; +"@MMK_R_hyphen.cap" = -21; +"@MMK_R_period" = -16; +"@MMK_R_slash" = -10; +V = -16; +X = -7; +backslash = -10; +braceright = -22; +braceright.case = -28; +bracketright = -22; +bracketright.case = -28; +parenright = -28; +parenright.case = -35; +slashlongcomb = -10; +}; +"@MMK_L_D" = { +"@MMK_R_A" = -11; +"@MMK_R_AE" = -9; +"@MMK_R_T" = -16; +"@MMK_R_W" = -8; +"@MMK_R_Y" = -28; +"@MMK_R_Z" = -7; +"@MMK_R_period" = -19; +"@MMK_R_slash" = -17; +V = -18; +X = -20; +backslash = -18; +braceright = -26; +braceright.case = -32; +bracketright = -25; +bracketright.case = -31; +parenright = -32; +parenright.case = -39; +slashlongcomb = -17; +trademark = -9; +}; +"@MMK_L_E" = { +"@MMK_R_O" = -7; +"@MMK_R_d" = -7; +"@MMK_R_f" = -12; +"@MMK_R_g" = -7; +"@MMK_R_guilsinglleft" = -11; +"@MMK_R_guilsinglleft.cap" = -12; +"@MMK_R_hyphen" = -19; +"@MMK_R_hyphen.cap" = -16; +"@MMK_R_o" = -7; +"@MMK_R_t" = -12; +"@MMK_R_u" = -7; +"@MMK_R_w" = -11; +"@MMK_R_y" = -19; +V = -10; +eth = -10; +four = -10; +longs = -12; +one = -12; +v = -18; +}; +"@MMK_L_G" = { +"@MMK_R_A" = -13; +"@MMK_R_AE" = -8; +"@MMK_R_T" = -12; +"@MMK_R_W" = -12; +"@MMK_R_Y" = -25; +"@MMK_R_Z" = -5; +"@MMK_R_period" = -19; +"@MMK_R_slash" = -13; +V = -23; +X = -17; +backslash = -13; +braceright = -24; +braceright.case = -29; +bracketright = -22; +bracketright.case = -28; +parenright = -29; +parenright.case = -36; +slashlongcomb = -13; +trademark = -8; +x = -6; +}; +"@MMK_L_I" = { +"@MMK_R_hyphen" = -9; +"@MMK_R_hyphen.cap" = -8; +"@MMK_R_period" = -9; +backslash = 32; +braceright = -10; +braceright.case = -14; +bracketright = -10; +bracketright.case = -14; +eth = -5; +parenright = -11; +parenright.case = -16; +}; +"@MMK_L_K" = { +"@MMK_R_J" = -7; +"@MMK_R_O" = -37; +"@MMK_R_S" = -12; +"@MMK_R_a" = -7; +"@MMK_R_d" = -30; +"@MMK_R_f" = -16; +"@MMK_R_g" = -30; +"@MMK_R_guilsinglleft" = -60; +"@MMK_R_guilsinglleft.cap" = -60; +"@MMK_R_hyphen" = -65; +"@MMK_R_hyphen.cap" = -71; +"@MMK_R_o" = -30; +"@MMK_R_s" = -8; +"@MMK_R_t" = -14; +"@MMK_R_u" = -23; +"@MMK_R_w" = -43; +"@MMK_R_y" = -50; +copyright = -23; +eth = -27; +four = -14; +longs = -16; +one = -18; +registered = -23; +space = -12; +v = -49; +}; +"@MMK_L_L" = { +"@MMK_R_O" = -11; +"@MMK_R_T" = -124; +"@MMK_R_U" = -19; +"@MMK_R_W" = -48; +"@MMK_R_Y" = -109; +"@MMK_R_d" = -14; +"@MMK_R_f" = -30; +"@MMK_R_g" = -14; +"@MMK_R_guilsinglleft" = -81; +"@MMK_R_guilsinglleft.cap" = -81; +"@MMK_R_guilsinglright" = -17; +"@MMK_R_guilsinglright.cap" = -16; +"@MMK_R_hyphen" = -79; +"@MMK_R_hyphen.cap" = -89; +"@MMK_R_o" = -13; +"@MMK_R_quoteleft" = -110; +"@MMK_R_quoteright" = -107; +"@MMK_R_quotesingle" = -104; +"@MMK_R_t" = -45; +"@MMK_R_u" = -20; +"@MMK_R_w" = -64; +"@MMK_R_y" = -100; +V = -97; +asterisk = -118; +at.case = -13; +backslash = -81; +braceright = -21; +braceright.case = -13; +bracketright = -23; +bracketright.case = -19; +copyright = -35; +eth = -10; +four = -24; +longs = -30; +nine = -40; +one = -65; +ordfeminine = -117; +ordmasculine = -117; +parenright = -25; +parenright.case = -15; +periodcentered = -201; +question = -51; +registered = -35; +seven = -19; +space = -27; +trademark = -117; +v = -93; +zero = -10; +}; +"@MMK_L_O" = { +"@MMK_R_A" = -12; +"@MMK_R_AE" = -10; +"@MMK_R_T" = -17; +"@MMK_R_W" = -9; +"@MMK_R_Y" = -29; +"@MMK_R_Z" = -7; +"@MMK_R_period" = -20; +"@MMK_R_slash" = -17; +V = -19; +X = -20; +backslash = -18; +braceright = -26; +braceright.case = -32; +bracketright = -25; +bracketright.case = -30; +parenright = -32; +parenright.case = -39; +seven = -10; +slashlongcomb = -17; +trademark = -10; +}; +"@MMK_L_R" = { +"@MMK_R_T" = -9; +"@MMK_R_W" = -11; +"@MMK_R_Y" = -23; +"@MMK_R_d" = -6; +"@MMK_R_g" = -6; +"@MMK_R_guilsinglleft" = -11; +"@MMK_R_guilsinglleft.cap" = -12; +"@MMK_R_hyphen" = -23; +"@MMK_R_hyphen.cap" = -12; +"@MMK_R_o" = -6; +V = -21; +braceright = -19; +braceright.case = -15; +bracketright = -20; +bracketright.case = -17; +eth = -10; +parenright = -24; +parenright.case = -19; +}; +"@MMK_L_S" = { +"@MMK_R_A" = -10; +"@MMK_R_T" = -8; +"@MMK_R_W" = -12; +"@MMK_R_Y" = -24; +"@MMK_R_hyphen" = -9; +"@MMK_R_hyphen.cap" = -18; +V = -23; +X = -10; +backslash = -12; +braceright = -21; +braceright.case = -26; +bracketright = -21; +bracketright.case = -26; +parenright = -26; +parenright.case = -32; +trademark = -8; +v = -5; +x = -5; +}; +"@MMK_L_T" = { +"@MMK_R_A" = -75; +"@MMK_R_AE" = -86; +"@MMK_R_O" = -17; +"@MMK_R_S" = -5; +"@MMK_R_a" = -94; +"@MMK_R_colon" = -55; +"@MMK_R_d" = -99; +"@MMK_R_f" = -60; +"@MMK_R_g" = -99; +"@MMK_R_guilsinglleft" = -68; +"@MMK_R_guilsinglleft.cap" = -69; +"@MMK_R_guilsinglright" = -44; +"@MMK_R_guilsinglright.cap" = -45; +"@MMK_R_h" = -22; +"@MMK_R_hyphen" = -66; +"@MMK_R_hyphen.cap" = -65; +"@MMK_R_l" = -22; +"@MMK_R_n" = -94; +"@MMK_R_o" = -99; +"@MMK_R_period" = -66; +"@MMK_R_s" = -94; +"@MMK_R_slash" = -66; +"@MMK_R_t" = -46; +"@MMK_R_u" = -93; +"@MMK_R_w" = -87; +"@MMK_R_y" = -98; +"@MMK_R_z" = -99; +ampersand = -17; +at = -44; +at.case = -22; +braceright.case = -11; +bracketright.case = -14; +copyright = -33; +d = -74; +dcaron = -74; +dcroat = -74; +eth = -78; +four = -59; +germandbls = -48; +j = -5; +longs = -60; +one = -17; +parenright.case = -12; +rcaron = -59; +registered = -33; +six = -59; +slashlongcomb = -66; +space = -26; +v = -97; +x = -86; +zero = -11; +}; +"@MMK_L_U" = { +"@MMK_R_A" = -12; +"@MMK_R_AE" = -14; +"@MMK_R_a" = -5; +"@MMK_R_hyphen" = -8; +"@MMK_R_period" = -22; +"@MMK_R_s" = -5; +"@MMK_R_slash" = -19; +"@MMK_R_u" = -5; +braceright = -11; +braceright.case = -20; +bracketright = -11; +bracketright.case = -20; +eth = -6; +parenright = -12; +parenright.case = -24; +slashlongcomb = -19; +}; +"@MMK_L_W" = { +"@MMK_R_A" = -26; +"@MMK_R_AE" = -42; +"@MMK_R_J" = -9; +"@MMK_R_O" = -9; +"@MMK_R_S" = -11; +"@MMK_R_a" = -23; +"@MMK_R_d" = -22; +"@MMK_R_g" = -22; +"@MMK_R_guilsinglleft" = -14; +"@MMK_R_guilsinglleft.cap" = -16; +"@MMK_R_hyphen" = -21; +"@MMK_R_hyphen.cap" = -17; +"@MMK_R_n" = -13; +"@MMK_R_o" = -22; +"@MMK_R_period" = -40; +"@MMK_R_s" = -17; +"@MMK_R_slash" = -37; +"@MMK_R_u" = -10; +ampersand = -10; +braceright.case = -10; +bracketright.case = -11; +eth = -27; +four = -15; +parenright.case = -11; +rcaron = -7; +six = -18; +slashlongcomb = -37; +space = -20; +}; +"@MMK_L_Y" = { +"@MMK_R_A" = -68; +"@MMK_R_AE" = -90; +"@MMK_R_J" = -18; +"@MMK_R_O" = -29; +"@MMK_R_S" = -23; +"@MMK_R_a" = -98; +"@MMK_R_colon" = -47; +"@MMK_R_d" = -83; +"@MMK_R_f" = -37; +"@MMK_R_g" = -83; +"@MMK_R_guilsinglleft" = -66; +"@MMK_R_guilsinglleft.cap" = -67; +"@MMK_R_guilsinglright" = -24; +"@MMK_R_guilsinglright.cap" = -25; +"@MMK_R_h" = -5; +"@MMK_R_hyphen" = -74; +"@MMK_R_hyphen.cap" = -64; +"@MMK_R_l" = -5; +"@MMK_R_n" = -70; +"@MMK_R_o" = -83; +"@MMK_R_period" = -84; +"@MMK_R_s" = -86; +"@MMK_R_slash" = -83; +"@MMK_R_t" = -32; +"@MMK_R_u" = -66; +"@MMK_R_w" = -54; +"@MMK_R_y" = -55; +"@MMK_R_z" = -60; +ampersand = -32; +at = -46; +at.case = -31; +braceright.case = -28; +bracketright.case = -32; +copyright = -38; +eight = -23; +eth = -90; +five = -20; +four = -72; +germandbls = -35; +longs = -37; +nine = -15; +one = -17; +parenright.case = -29; +question = -10; +rcaron = -63; +registered = -38; +six = -68; +slashlongcomb = -83; +space = -30; +two = -18; +v = -55; +x = -56; +zero = -23; +}; +"@MMK_L_Z" = { +"@MMK_R_O" = -7; +"@MMK_R_d" = -20; +"@MMK_R_f" = -11; +"@MMK_R_g" = -20; +"@MMK_R_guilsinglleft" = -43; +"@MMK_R_guilsinglleft.cap" = -43; +"@MMK_R_hyphen" = -56; +"@MMK_R_hyphen.cap" = -57; +"@MMK_R_n" = -6; +"@MMK_R_o" = -19; +"@MMK_R_s" = -5; +"@MMK_R_t" = -10; +"@MMK_R_u" = -20; +"@MMK_R_w" = -23; +"@MMK_R_y" = -29; +copyright = -18; +eth = -18; +four = -14; +longs = -11; +registered = -17; +v = -29; +}; +"@MMK_L_a" = { +"@MMK_R_T" = -103; +"@MMK_R_U" = -7; +"@MMK_R_W" = -18; +"@MMK_R_Y" = -77; +"@MMK_R_Z" = -6; +"@MMK_R_f" = -5; +"@MMK_R_quoteleft" = -30; +"@MMK_R_quoteright" = -31; +"@MMK_R_quotesingle" = -26; +"@MMK_R_t" = -5; +"@MMK_R_y" = -9; +V = -48; +asterisk = -19; +backslash = -44; +braceright = -33; +bracketright = -32; +longs = -5; +ordfeminine = -12; +ordmasculine = -15; +parenright = -42; +question = -14; +trademark = -26; +v = -8; +}; +"@MMK_L_afii10020" = { +"@MMK_R_afii10029" = -26; +"@MMK_R_afii10032" = -14; +"@MMK_R_afii10074" = -100; +"@MMK_R_afii10077" = -130; +"@MMK_R_afii10080" = -131; +"@MMK_R_afii10085" = -99; +"@MMK_R_colon" = -65; +"@MMK_R_guilsinglleft" = -82; +"@MMK_R_guilsinglleft.cap" = -82; +"@MMK_R_guilsinglright" = -33; +"@MMK_R_guilsinglright.cap" = -34; +"@MMK_R_hyphen" = -88; +"@MMK_R_hyphen.cap" = -78; +"@MMK_R_period" = -102; +"@MMK_R_slash" = -81; +braceright.case = -11; +bracketright.case = -15; +parenright.case = -13; +slashlongcomb = -81; +}; +"@MMK_L_afii10022" = { +"@MMK_R_afii10032" = -7; +"@MMK_R_afii10080" = -7; +"@MMK_R_afii10085" = -20; +"@MMK_R_guilsinglleft" = -11; +"@MMK_R_guilsinglleft.cap" = -12; +"@MMK_R_hyphen" = -19; +"@MMK_R_hyphen.cap" = -16; +}; +"@MMK_L_afii10026" = { +"@MMK_R_hyphen" = -9; +"@MMK_R_hyphen.cap" = -8; +"@MMK_R_period" = -9; +braceright = -10; +braceright.case = -14; +bracketright = -10; +bracketright.case = -14; +parenright = -11; +parenright.case = -16; +}; +"@MMK_L_afii10028" = { +"@MMK_R_afii10032" = -37; +"@MMK_R_afii10080" = -30; +"@MMK_R_afii10085" = -51; +"@MMK_R_guilsinglleft" = -60; +"@MMK_R_guilsinglleft.cap" = -60; +"@MMK_R_hyphen" = -65; +"@MMK_R_hyphen.cap" = -71; +}; +"@MMK_L_afii10032" = { +"@MMK_R_afii10029" = -10; +"@MMK_R_afii10037" = -7; +"@MMK_R_afii10077" = -15; +"@MMK_R_period" = -20; +"@MMK_R_slash" = -17; +backslash = -18; +braceright = -26; +braceright.case = -32; +bracketright = -25; +bracketright.case = -30; +parenright = -32; +parenright.case = -39; +slashlongcomb = -17; +}; +"@MMK_L_afii10037" = { +"@MMK_R_afii10029" = -28; +"@MMK_R_afii10032" = -8; +"@MMK_R_afii10074" = -39; +"@MMK_R_afii10077" = -77; +"@MMK_R_afii10080" = -64; +"@MMK_R_afii10085" = -15; +"@MMK_R_colon" = -26; +"@MMK_R_guilsinglleft" = -39; +"@MMK_R_guilsinglleft.cap" = -40; +"@MMK_R_hyphen" = -50; +"@MMK_R_hyphen.cap" = -39; +"@MMK_R_period" = -84; +"@MMK_R_slash" = -69; +braceright.case = -10; +bracketright.case = -13; +parenright.case = -11; +slashlongcomb = -69; +}; +"@MMK_L_afii10040" = { +"@MMK_R_afii10080" = -5; +"@MMK_R_afii10085" = -5; +"@MMK_R_hyphen" = -13; +"@MMK_R_hyphen.cap" = -12; +}; +"@MMK_L_afii10046" = { +"@MMK_R_afii10037" = -18; +"@MMK_R_afii10085" = -21; +"@MMK_R_quoteleft" = -74; +"@MMK_R_quoteright" = -75; +"@MMK_R_quotesingle" = -69; +asterisk = -52; +backslash = -53; +braceright = -31; +braceright.case = -33; +bracketright = -29; +bracketright.case = -32; +parenright = -41; +parenright.case = -42; +question = -31; +}; +"@MMK_L_afii10068" = { +"@MMK_R_afii10077" = -26; +"@MMK_R_afii10080" = -12; +"@MMK_R_guilsinglleft" = -11; +"@MMK_R_hyphen" = -57; +"@MMK_R_period" = -88; +"@MMK_R_slash" = -57; +braceright = -28; +bracketright = -28; +parenright = -39; +slashlongcomb = -57; +}; +"@MMK_L_afii10070" = { +"@MMK_R_afii10077" = -4; +"@MMK_R_afii10085" = -19; +"@MMK_R_quoteleft" = -35; +"@MMK_R_quoteright" = -36; +"@MMK_R_quotesingle" = -30; +asterisk = -21; +backslash = -43; +braceright = -35; +bracketright = -32; +parenright = -44; +question = -14; +}; +"@MMK_L_afii10074" = { +"@MMK_R_quoteleft" = -9; +"@MMK_R_quoteright" = -10; +"@MMK_R_quotesingle" = -9; +asterisk = -10; +backslash = -32; +braceright = -31; +bracketright = -30; +parenright = -40; +}; +"@MMK_L_afii10076" = { +"@MMK_R_afii10080" = -25; +"@MMK_R_guilsinglleft" = -24; +"@MMK_R_hyphen" = -47; +backslash = -25; +braceright = -24; +bracketright = -26; +parenright = -31; +}; +"@MMK_L_afii10080" = { +"@MMK_R_afii10077" = -10; +"@MMK_R_afii10085" = -19; +"@MMK_R_period" = -12; +"@MMK_R_quoteleft" = -37; +"@MMK_R_quoteright" = -38; +"@MMK_R_quotesingle" = -32; +"@MMK_R_slash" = -14; +asterisk = -22; +backslash = -46; +braceright = -37; +bracketright = -34; +parenright = -47; +question = -18; +slashlongcomb = -14; +}; +"@MMK_L_afii10082" = { +"@MMK_R_afii10077" = -9; +"@MMK_R_afii10085" = -19; +"@MMK_R_period" = -12; +"@MMK_R_quoteleft" = -36; +"@MMK_R_quoteright" = -37; +"@MMK_R_quotesingle" = -31; +"@MMK_R_slash" = -14; +asterisk = -22; +backslash = -46; +braceright = -38; +bracketright = -35; +parenright = -47; +question = -17; +slashlongcomb = -14; +}; +"@MMK_L_afii10085" = { +"@MMK_R_afii10077" = -29; +"@MMK_R_afii10080" = -17; +"@MMK_R_guilsinglleft" = -15; +"@MMK_R_hyphen" = -24; +"@MMK_R_period" = -60; +"@MMK_R_slash" = -46; +backslash = -25; +braceright = -35; +bracketright = -34; +parenright = -45; +slashlongcomb = -46; +}; +"@MMK_L_afii10088" = { +"@MMK_R_afii10085" = -6; +"@MMK_R_hyphen" = -9; +"@MMK_R_quoteleft" = -15; +"@MMK_R_quoteright" = -15; +"@MMK_R_quotesingle" = -14; +asterisk = -16; +backslash = -38; +}; +"@MMK_L_afii10094" = { +"@MMK_R_afii10085" = -33; +"@MMK_R_quoteleft" = -83; +"@MMK_R_quoteright" = -84; +"@MMK_R_quotesingle" = -84; +asterisk = -67; +backslash = -60; +braceright = -35; +bracketright = -33; +parenright = -46; +question = -40; +}; +"@MMK_L_b" = { +"@MMK_R_A" = -6; +"@MMK_R_T" = -99; +"@MMK_R_W" = -22; +"@MMK_R_Y" = -83; +"@MMK_R_Z" = -16; +"@MMK_R_f" = -8; +"@MMK_R_period" = -12; +"@MMK_R_quoteleft" = -47; +"@MMK_R_quoteright" = -48; +"@MMK_R_quotesingle" = -38; +"@MMK_R_slash" = -15; +"@MMK_R_t" = -7; +"@MMK_R_w" = -13; +"@MMK_R_y" = -19; +"@MMK_R_z" = -6; +V = -51; +X = -23; +asterisk = -25; +backslash = -47; +braceright = -38; +bracketright = -35; +longs = -8; +ordfeminine = -18; +ordmasculine = -22; +parenright = -47; +question = -19; +slashlongcomb = -15; +trademark = -33; +v = -18; +x = -12; +}; +"@MMK_L_bethebrew" = { +"@MMK_R_guilsinglright" = -31; +"@MMK_R_hyphen" = -49; +"@MMK_R_kafhebrew" = -15; +"@MMK_R_slash" = -13; +"@MMK_R_tethebrew" = -12; +slashlongcomb = -13; +}; +"@MMK_L_c" = { +"@MMK_R_T" = -105; +"@MMK_R_W" = -13; +"@MMK_R_Y" = -84; +"@MMK_R_Z" = -5; +"@MMK_R_quoteleft" = -31; +"@MMK_R_quoteright" = -32; +"@MMK_R_quotesingle" = -26; +"@MMK_R_w" = -9; +"@MMK_R_y" = -14; +V = -45; +X = -10; +asterisk = -18; +backslash = -40; +braceright = -34; +bracketright = -32; +ordfeminine = -9; +ordmasculine = -14; +parenright = -44; +trademark = -25; +v = -13; +}; +"@MMK_L_colon" = { +"@MMK_R_T" = -55; +"@MMK_R_Y" = -47; +"@MMK_R_dalethebrew" = -8; +"@MMK_R_quoteright" = -18; +"@MMK_R_quotesingle" = -10; +"@MMK_R_zayinhebrew" = -8; +Tbar = -39; +V = -26; +}; +"@MMK_L_d" = { +"@MMK_R_T" = -22; +"@MMK_R_Y" = -5; +}; +"@MMK_L_dalethebrew" = { +"@MMK_R_bethebrew" = -36; +"@MMK_R_colon" = -37; +"@MMK_R_gimelhebrew" = -43; +"@MMK_R_guilsinglright" = -38; +"@MMK_R_hethebrew" = -25; +"@MMK_R_hyphen" = -70; +"@MMK_R_kafhebrew" = -16; +"@MMK_R_period" = -78; +"@MMK_R_tethebrew" = -11; +backslash = -62; +space = -25; +}; +"@MMK_L_dcaron" = { +"@MMK_R_I" = 30; +"@MMK_R_h" = 33; +"@MMK_R_i" = 44; +"@MMK_R_l" = 30; +"@MMK_R_quoteright" = 8; +"@MMK_R_quotesingle" = 29; +asterisk = 36; +backslash = 41; +bar = 13; +braceright = 43; +bracketright = 42; +exclam = 23; +j = 36; +lacute = 33; +lcommaaccent = 33; +ldot = 33; +lslash = 33; +ordmasculine = 6; +parenright = 44; +question = 23; +trademark = 70; +}; +"@MMK_L_e" = { +"@MMK_R_A" = -5; +"@MMK_R_T" = -96; +"@MMK_R_W" = -18; +"@MMK_R_Y" = -97; +"@MMK_R_Z" = -10; +"@MMK_R_f" = -5; +"@MMK_R_quoteleft" = -35; +"@MMK_R_quoteright" = -36; +"@MMK_R_quotesingle" = -30; +"@MMK_R_t" = -4; +"@MMK_R_w" = -13; +"@MMK_R_y" = -18; +V = -54; +X = -15; +asterisk = -21; +backslash = -43; +braceright = -35; +bracketright = -32; +longs = -5; +ordfeminine = -14; +ordmasculine = -17; +parenright = -44; +question = -14; +trademark = -28; +v = -17; +x = -8; +}; +"@MMK_L_f" = { +"@MMK_R_A" = -42; +"@MMK_R_T" = -5; +"@MMK_R_Y" = -5; +"@MMK_R_a" = -7; +"@MMK_R_d" = -11; +"@MMK_R_g" = -11; +"@MMK_R_guilsinglleft" = -14; +"@MMK_R_hyphen" = -37; +"@MMK_R_i" = 35; +"@MMK_R_o" = -11; +"@MMK_R_period" = -39; +"@MMK_R_slash" = -36; +braceright = 7; +bracketright = 7; +eth = -33; +parenright = 9; +slashlongcomb = -36; +space = -23; +}; +"@MMK_L_gimelhebrew" = { +"@MMK_R_guilsinglright" = -22; +"@MMK_R_hyphen" = -27; +"@MMK_R_quoteright" = -8; +"@MMK_R_slash" = -21; +"finaltsadi-hb" = -4; +slashlongcomb = -21; +}; +"@MMK_L_guilsinglleft" = { +"@MMK_R_T" = -44; +"@MMK_R_Y" = -24; +"@MMK_R_dalethebrew" = -19; +"@MMK_R_gimelhebrew" = -18; +"@MMK_R_zayinhebrew" = -19; +V = -12; +}; +"@MMK_L_guilsinglleft.cap" = { +"@MMK_R_T" = -45; +"@MMK_R_Y" = -25; +V = -13; +}; +"@MMK_L_guilsinglright" = { +"@MMK_R_A" = -24; +"@MMK_R_AE" = -32; +"@MMK_R_J" = -12; +"@MMK_R_S" = -11; +"@MMK_R_T" = -68; +"@MMK_R_W" = -14; +"@MMK_R_Y" = -66; +"@MMK_R_Z" = -40; +"@MMK_R_afii10029" = -30; +"@MMK_R_afii10037" = -40; +"@MMK_R_afii10077" = -24; +"@MMK_R_afii10085" = -16; +"@MMK_R_f" = -10; +"@MMK_R_quoteright" = -48; +"@MMK_R_quotesingle" = -41; +"@MMK_R_w" = -11; +"@MMK_R_y" = -16; +"@MMK_R_z" = -18; +Tbar = -48; +V = -37; +X = -47; +j = -10; +v = -15; +x = -20; +}; +"@MMK_L_guilsinglright.cap" = { +"@MMK_R_A" = -25; +"@MMK_R_AE" = -33; +"@MMK_R_J" = -13; +"@MMK_R_S" = -11; +"@MMK_R_T" = -69; +"@MMK_R_W" = -16; +"@MMK_R_Y" = -67; +"@MMK_R_Z" = -40; +"@MMK_R_afii10029" = -31; +"@MMK_R_afii10037" = -41; +"@MMK_R_quoteright" = -47; +"@MMK_R_quotesingle" = -41; +Tbar = -49; +V = -38; +X = -47; +}; +"@MMK_L_hyphen" = { +"@MMK_R_A" = -25; +"@MMK_R_AE" = -33; +"@MMK_R_I" = -9; +"@MMK_R_J" = -17; +"@MMK_R_S" = -21; +"@MMK_R_T" = -66; +"@MMK_R_U" = -8; +"@MMK_R_W" = -21; +"@MMK_R_Y" = -74; +"@MMK_R_Z" = -47; +"@MMK_R_a" = -13; +"@MMK_R_afii10026" = -9; +"@MMK_R_afii10029" = -33; +"@MMK_R_afii10037" = -52; +"@MMK_R_afii10077" = -26; +"@MMK_R_afii10085" = -26; +"@MMK_R_bethebrew" = -10; +"@MMK_R_dalethebrew" = -27; +"@MMK_R_f" = -23; +"@MMK_R_gimelhebrew" = -21; +"@MMK_R_quoteright" = -79; +"@MMK_R_quotesingle" = -73; +"@MMK_R_t" = -19; +"@MMK_R_tsadihebrew" = -10; +"@MMK_R_w" = -16; +"@MMK_R_y" = -25; +"@MMK_R_z" = -33; +"@MMK_R_zayinhebrew" = -26; +Tbar = -52; +V = -44; +X = -52; +five = -11; +j = -12; +nine = -16; +one = -41; +seven = -62; +three = -26; +two = -45; +v = -23; +x = -33; +}; +"@MMK_L_hyphen.cap" = { +"@MMK_R_A" = -31; +"@MMK_R_AE" = -41; +"@MMK_R_I" = -8; +"@MMK_R_J" = -28; +"@MMK_R_S" = -23; +"@MMK_R_T" = -65; +"@MMK_R_W" = -17; +"@MMK_R_Y" = -64; +"@MMK_R_Z" = -56; +"@MMK_R_afii10026" = -8; +"@MMK_R_afii10029" = -32; +"@MMK_R_afii10037" = -43; +"@MMK_R_quoteright" = -56; +"@MMK_R_quotesingle" = -18; +Tbar = -47; +V = -36; +X = -56; +eight = -13; +four = -15; +one = -26; +seven = -62; +three = -37; +two = -33; +}; +"@MMK_L_i" = { +asterisk = 19; +backslash = 24; +braceright = 32; +bracketright = 32; +parenright = 33; +question = 24; +trademark = 28; +}; +"@MMK_L_k" = { +"@MMK_R_J" = -11; +"@MMK_R_O" = -9; +"@MMK_R_T" = -86; +"@MMK_R_Y" = -49; +"@MMK_R_a" = -10; +"@MMK_R_d" = -25; +"@MMK_R_g" = -25; +"@MMK_R_guilsinglleft" = -26; +"@MMK_R_hyphen" = -48; +"@MMK_R_o" = -25; +"@MMK_R_quoteleft" = -9; +"@MMK_R_quoteright" = -10; +"@MMK_R_s" = -9; +V = -16; +asterisk = -8; +backslash = -27; +braceright = -24; +bracketright = -26; +eth = -29; +parenright = -31; +space = -12; +trademark = -17; +}; +"@MMK_L_kafhebrew" = { +"@MMK_R_guilsinglright" = -30; +"@MMK_R_hyphen" = -48; +"@MMK_R_kafhebrew" = -15; +"@MMK_R_slash" = -10; +"@MMK_R_tethebrew" = -12; +slashlongcomb = -10; +}; +"@MMK_L_l" = { +"@MMK_R_T" = -22; +"@MMK_R_Y" = -5; +periodcentered = -41; +}; +"@MMK_L_lamedhebrew" = { +"@MMK_R_bethebrew" = -29; +"@MMK_R_colon" = -32; +"@MMK_R_gimelhebrew" = -43; +"@MMK_R_guilsinglright" = -38; +"@MMK_R_hethebrew" = -21; +"@MMK_R_hyphen" = -71; +"@MMK_R_kafhebrew" = -15; +"@MMK_R_period" = -56; +"@MMK_R_tethebrew" = -11; +backslash = -47; +space = -23; +}; +"@MMK_L_memhebrew" = { +"@MMK_R_guilsinglright" = -21; +"@MMK_R_hyphen" = -27; +"@MMK_R_kafhebrew" = -5; +"@MMK_R_slash" = -13; +"@MMK_R_tethebrew" = -4; +slashlongcomb = -13; +}; +"@MMK_L_n" = { +"@MMK_R_T" = -104; +"@MMK_R_U" = -8; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -83; +"@MMK_R_Z" = -6; +"@MMK_R_f" = -9; +"@MMK_R_quoteleft" = -36; +"@MMK_R_quoteright" = -37; +"@MMK_R_quotesingle" = -32; +"@MMK_R_t" = -8; +"@MMK_R_w" = -6; +"@MMK_R_y" = -15; +V = -49; +asterisk = -23; +backslash = -47; +braceright = -34; +bracketright = -32; +longs = -9; +ordfeminine = -15; +ordmasculine = -19; +parenright = -42; +question = -18; +trademark = -30; +v = -14; +}; +"@MMK_L_nunhebrew" = { +"@MMK_R_guilsinglright" = -31; +"@MMK_R_hyphen" = -50; +"@MMK_R_kafhebrew" = -11; +"@MMK_R_slash" = -11; +"@MMK_R_tethebrew" = -8; +slashlongcomb = -11; +}; +"@MMK_L_o" = { +"@MMK_R_A" = -6; +"@MMK_R_T" = -99; +"@MMK_R_W" = -22; +"@MMK_R_Y" = -83; +"@MMK_R_Z" = -16; +"@MMK_R_f" = -7; +"@MMK_R_period" = -12; +"@MMK_R_quoteleft" = -37; +"@MMK_R_quoteright" = -38; +"@MMK_R_quotesingle" = -32; +"@MMK_R_slash" = -14; +"@MMK_R_t" = -6; +"@MMK_R_w" = -13; +"@MMK_R_y" = -19; +"@MMK_R_z" = -6; +V = -51; +X = -23; +asterisk = -22; +backslash = -46; +braceright = -37; +bracketright = -34; +longs = -7; +ordfeminine = -15; +ordmasculine = -18; +parenright = -47; +question = -18; +slashlongcomb = -14; +trademark = -29; +v = -18; +x = -11; +}; +"@MMK_L_pehebrew" = { +"@MMK_R_hyphen" = -12; +"@MMK_R_slash" = -17; +slashlongcomb = -17; +}; +"@MMK_L_period" = { +"@MMK_R_I" = -9; +"@MMK_R_O" = -20; +"@MMK_R_S" = -8; +"@MMK_R_T" = -66; +"@MMK_R_U" = -22; +"@MMK_R_W" = -40; +"@MMK_R_Y" = -84; +"@MMK_R_afii10026" = -9; +"@MMK_R_afii10032" = -20; +"@MMK_R_afii10037" = -9; +"@MMK_R_afii10080" = -12; +"@MMK_R_afii10085" = -62; +"@MMK_R_d" = -12; +"@MMK_R_dalethebrew" = -28; +"@MMK_R_f" = -24; +"@MMK_R_g" = -12; +"@MMK_R_hyphen" = -63; +"@MMK_R_hyphen.cap" = -81; +"@MMK_R_kafhebrew" = -15; +"@MMK_R_lamedhebrew" = -12; +"@MMK_R_o" = -12; +"@MMK_R_quoteleft" = -110; +"@MMK_R_quoteright" = -107; +"@MMK_R_quotesingle" = -104; +"@MMK_R_t" = -27; +"@MMK_R_tethebrew" = -12; +"@MMK_R_u" = -13; +"@MMK_R_w" = -42; +"@MMK_R_y" = -61; +"@MMK_R_yodhebrew" = -75; +"@MMK_R_zayinhebrew" = -28; +V = -73; +"ayin-hb" = -17; +eight = -12; +eth = -8; +"finaltsadi-hb" = -41; +four = -19; +j = -13; +nine = -47; +one = -68; +seven = -30; +six = -14; +v = -57; +"yodyod-hb" = -75; +zero = -19; +}; +"@MMK_L_quoteleft" = { +"@MMK_R_A" = -73; +"@MMK_R_AE" = -92; +"@MMK_R_O" = -12; +"@MMK_R_a" = -39; +"@MMK_R_afii10029" = -32; +"@MMK_R_afii10032" = -12; +"@MMK_R_afii10074" = -13; +"@MMK_R_afii10077" = -36; +"@MMK_R_afii10080" = -43; +"@MMK_R_bethebrew" = -35; +"@MMK_R_d" = -53; +"@MMK_R_g" = -43; +"@MMK_R_gimelhebrew" = -43; +"@MMK_R_hethebrew" = -26; +"@MMK_R_kafhebrew" = -25; +"@MMK_R_n" = -13; +"@MMK_R_o" = -43; +"@MMK_R_period" = -110; +"@MMK_R_s" = -32; +"@MMK_R_tethebrew" = -21; +"@MMK_R_u" = -12; +eth = -50; +}; +"@MMK_L_quoteright" = { +"@MMK_R_A" = -75; +"@MMK_R_AE" = -94; +"@MMK_R_O" = -15; +"@MMK_R_S" = -8; +"@MMK_R_a" = -44; +"@MMK_R_afii10029" = -31; +"@MMK_R_afii10032" = -15; +"@MMK_R_afii10074" = -16; +"@MMK_R_afii10077" = -40; +"@MMK_R_afii10080" = -48; +"@MMK_R_bethebrew" = -36; +"@MMK_R_colon" = -28; +"@MMK_R_d" = -58; +"@MMK_R_g" = -47; +"@MMK_R_gimelhebrew" = -44; +"@MMK_R_guilsinglleft" = -57; +"@MMK_R_guilsinglleft.cap" = -57; +"@MMK_R_hethebrew" = -27; +"@MMK_R_hyphen" = -86; +"@MMK_R_hyphen.cap" = -63; +"@MMK_R_kafhebrew" = -26; +"@MMK_R_n" = -16; +"@MMK_R_o" = -48; +"@MMK_R_period" = -107; +"@MMK_R_s" = -37; +"@MMK_R_slash" = -73; +"@MMK_R_tethebrew" = -22; +"@MMK_R_u" = -15; +"@MMK_R_z" = -11; +ampersand = -17; +at = -29; +at.case = -16; +copyright = -20; +eth = -50; +registered = -20; +slashlongcomb = -73; +x = -9; +}; +"@MMK_L_quotesingle" = { +"@MMK_R_A" = -69; +"@MMK_R_AE" = -87; +"@MMK_R_a" = -30; +"@MMK_R_afii10029" = -31; +"@MMK_R_afii10074" = -9; +"@MMK_R_afii10077" = -31; +"@MMK_R_afii10080" = -32; +"@MMK_R_bethebrew" = -31; +"@MMK_R_colon" = -10; +"@MMK_R_d" = -38; +"@MMK_R_g" = -32; +"@MMK_R_gimelhebrew" = -40; +"@MMK_R_guilsinglleft" = -41; +"@MMK_R_guilsinglleft.cap" = -41; +"@MMK_R_hethebrew" = -23; +"@MMK_R_hyphen" = -73; +"@MMK_R_hyphen.cap" = -18; +"@MMK_R_kafhebrew" = -21; +"@MMK_R_n" = -9; +"@MMK_R_o" = -32; +"@MMK_R_period" = -104; +"@MMK_R_s" = -23; +"@MMK_R_slash" = -68; +"@MMK_R_tethebrew" = -19; +ampersand = -15; +at = -19; +copyright = -11; +eth = -47; +four = -57; +registered = -11; +six = -44; +slashlongcomb = -68; +}; +"@MMK_L_r" = { +"@MMK_R_A" = -48; +"@MMK_R_J" = -49; +"@MMK_R_T" = -91; +"@MMK_R_Y" = -50; +"@MMK_R_Z" = -42; +"@MMK_R_a" = -8; +"@MMK_R_d" = -13; +"@MMK_R_g" = -13; +"@MMK_R_guilsinglleft" = -13; +"@MMK_R_hyphen" = -49; +"@MMK_R_o" = -12; +"@MMK_R_period" = -54; +"@MMK_R_slash" = -45; +V = -18; +X = -29; +braceright = -28; +bracketright = -28; +eth = -37; +parenright = -39; +slashlongcomb = -45; +space = -24; +}; +"@MMK_L_s" = { +"@MMK_R_T" = -93; +"@MMK_R_U" = -5; +"@MMK_R_W" = -18; +"@MMK_R_Y" = -88; +"@MMK_R_hyphen" = -13; +"@MMK_R_quoteleft" = -29; +"@MMK_R_quoteright" = -30; +"@MMK_R_quotesingle" = -25; +"@MMK_R_w" = -13; +"@MMK_R_y" = -17; +V = -51; +X = -6; +asterisk = -19; +backslash = -41; +braceright = -32; +bracketright = -31; +ordfeminine = -9; +ordmasculine = -13; +parenright = -43; +trademark = -26; +v = -17; +}; +"@MMK_L_shinhebrew" = { +"@MMK_R_period" = -11; +"@MMK_R_quoteright" = -10; +"@MMK_R_slash" = -21; +backslash = -13; +slashlongcomb = -21; +}; +"@MMK_L_slash" = { +"@MMK_R_A" = -65; +"@MMK_R_AE" = -71; +"@MMK_R_I" = 29; +"@MMK_R_O" = -18; +"@MMK_R_S" = -11; +"@MMK_R_a" = -46; +"@MMK_R_afii10029" = -28; +"@MMK_R_afii10032" = -18; +"@MMK_R_afii10074" = -32; +"@MMK_R_afii10077" = -56; +"@MMK_R_afii10080" = -46; +"@MMK_R_afii10085" = -26; +"@MMK_R_d" = -47; +"@MMK_R_dalethebrew" = -26; +"@MMK_R_dotlessj" = -13; +"@MMK_R_f" = -10; +"@MMK_R_g" = -46; +"@MMK_R_i" = 24; +"@MMK_R_kafhebrew" = -16; +"@MMK_R_lamedhebrew" = -14; +"@MMK_R_n" = -32; +"@MMK_R_o" = -46; +"@MMK_R_s" = -40; +"@MMK_R_slash" = -194; +"@MMK_R_tethebrew" = -12; +"@MMK_R_u" = -29; +"@MMK_R_w" = -25; +"@MMK_R_y" = -26; +"@MMK_R_yodhebrew" = -32; +"@MMK_R_z" = -25; +"@MMK_R_zayinhebrew" = -26; +Idieresis = 26; +Imacron = 14; +Itilde = 17; +"ayin-hb" = -18; +eight = -17; +eth = -47; +"finaltsadi-hb" = -16; +four = -54; +six = -51; +two = -10; +v = -26; +x = -24; +"yodyod-hb" = -32; +zero = -16; +}; +"@MMK_L_t" = { +"@MMK_R_T" = -72; +"@MMK_R_Y" = -41; +"@MMK_R_guilsinglleft" = -10; +"@MMK_R_hyphen" = -12; +V = -13; +backslash = -16; +braceright = -15; +bracketright = -16; +parenright = -21; +}; +"@MMK_L_tavhebrew" = { +"@MMK_R_guilsinglright" = -17; +"@MMK_R_hyphen" = -22; +"@MMK_R_kafhebrew" = -6; +"@MMK_R_slash" = -11; +"@MMK_R_tethebrew" = -4; +slashlongcomb = -11; +}; +"@MMK_L_tethebrew" = { +"@MMK_R_gimelhebrew" = -5; +"@MMK_R_period" = -15; +"@MMK_R_quoteright" = -9; +"@MMK_R_slash" = -20; +backslash = -16; +slashlongcomb = -20; +}; +"@MMK_L_tsadihebrew" = { +"@MMK_R_guilsinglright" = -23; +"@MMK_R_hyphen" = -38; +"@MMK_R_kafhebrew" = -8; +"@MMK_R_tethebrew" = -6; +}; +"@MMK_L_u" = { +"@MMK_R_T" = -94; +"@MMK_R_U" = -5; +"@MMK_R_W" = -13; +"@MMK_R_Y" = -70; +"@MMK_R_Z" = -7; +"@MMK_R_quoteleft" = -10; +"@MMK_R_quoteright" = -10; +"@MMK_R_quotesingle" = -9; +V = -41; +asterisk = -10; +backslash = -32; +braceright = -30; +bracketright = -29; +parenright = -39; +trademark = -16; +}; +"@MMK_L_vavhebrew" = { +"@MMK_R_quoteright" = -10; +"@MMK_R_slash" = -22; +slashlongcomb = -22; +}; +"@MMK_L_w" = { +"@MMK_R_A" = -18; +"@MMK_R_J" = -20; +"@MMK_R_T" = -87; +"@MMK_R_Y" = -54; +"@MMK_R_Z" = -31; +"@MMK_R_a" = -14; +"@MMK_R_d" = -13; +"@MMK_R_g" = -13; +"@MMK_R_guilsinglleft" = -11; +"@MMK_R_hyphen" = -16; +"@MMK_R_o" = -13; +"@MMK_R_period" = -42; +"@MMK_R_s" = -12; +"@MMK_R_slash" = -34; +V = -17; +X = -29; +backslash = -25; +braceright = -32; +bracketright = -32; +eth = -17; +parenright = -43; +slashlongcomb = -34; +space = -23; +}; +"@MMK_L_y" = { +"@MMK_R_A" = -31; +"@MMK_R_J" = -36; +"@MMK_R_T" = -98; +"@MMK_R_Y" = -53; +"@MMK_R_Z" = -45; +"@MMK_R_a" = -18; +"@MMK_R_d" = -17; +"@MMK_R_g" = -17; +"@MMK_R_guilsinglleft" = -14; +"@MMK_R_hyphen" = -24; +"@MMK_R_o" = -17; +"@MMK_R_period" = -61; +"@MMK_R_s" = -15; +"@MMK_R_slash" = -46; +V = -17; +X = -39; +ampersand = -10; +backslash = -24; +braceright = -35; +bracketright = -34; +eth = -25; +parenright = -45; +slashlongcomb = -46; +space = -27; +}; +"@MMK_L_yodhebrew" = { +"@MMK_R_gimelhebrew" = -14; +"@MMK_R_period" = -75; +"@MMK_R_slash" = -17; +backslash = -32; +slashlongcomb = -17; +}; +"@MMK_L_z" = { +"@MMK_R_J" = -9; +"@MMK_R_T" = -102; +"@MMK_R_U" = -7; +"@MMK_R_W" = -7; +"@MMK_R_Y" = -64; +"@MMK_R_d" = -7; +"@MMK_R_g" = -7; +"@MMK_R_guilsinglleft" = -18; +"@MMK_R_hyphen" = -31; +"@MMK_R_o" = -7; +V = -29; +backslash = -28; +braceright = -25; +bracketright = -27; +eth = -9; +parenright = -33; +trademark = -15; +}; +"@MMK_L_zayinhebrew" = { +"@MMK_R_bethebrew" = -33; +"@MMK_R_colon" = -34; +"@MMK_R_gimelhebrew" = -40; +"@MMK_R_guilsinglright" = -36; +"@MMK_R_hethebrew" = -24; +"@MMK_R_hyphen" = -64; +"@MMK_R_kafhebrew" = -16; +"@MMK_R_period" = -66; +"@MMK_R_tethebrew" = -11; +backslash = -57; +space = -25; +}; +B = { +"@MMK_R_A" = -7; +"@MMK_R_T" = -13; +"@MMK_R_Y" = -20; +"@MMK_R_hyphen.cap" = -10; +"@MMK_R_period" = -12; +"@MMK_R_slash" = -10; +V = -14; +X = -15; +backslash = -13; +braceright = -24; +braceright.case = -29; +bracketright = -24; +bracketright.case = -29; +parenright = -30; +parenright.case = -36; +slashlongcomb = -10; +}; +F = { +"@MMK_R_A" = -45; +"@MMK_R_AE" = -71; +"@MMK_R_J" = -6; +"@MMK_R_O" = -5; +"@MMK_R_S" = -9; +"@MMK_R_a" = -32; +"@MMK_R_colon" = -9; +"@MMK_R_d" = -12; +"@MMK_R_dotlessj" = -22; +"@MMK_R_f" = -20; +"@MMK_R_g" = -12; +"@MMK_R_guilsinglright" = -14; +"@MMK_R_guilsinglright.cap" = -15; +"@MMK_R_h" = -9; +"@MMK_R_hyphen" = -13; +"@MMK_R_hyphen.cap" = -10; +"@MMK_R_i" = -16; +"@MMK_R_n" = -16; +"@MMK_R_o" = -12; +"@MMK_R_period" = -69; +"@MMK_R_s" = -16; +"@MMK_R_slash" = -48; +"@MMK_R_t" = -15; +"@MMK_R_u" = -13; +"@MMK_R_w" = -18; +"@MMK_R_y" = -23; +"@MMK_R_z" = -41; +V = -8; +braceright.case = -15; +bracketright.case = -14; +eth = -19; +four = -10; +igrave = 6; +j = -5; +longs = -20; +parenright.case = -17; +slashlongcomb = -48; +space = -16; +two = -11; +v = -22; +x = -45; +}; +IJ = { +"@MMK_R_A" = -12; +"@MMK_R_a" = -5; +"@MMK_R_hyphen" = -8; +"@MMK_R_period" = -22; +"@MMK_R_s" = -5; +"@MMK_R_slash" = -19; +"@MMK_R_u" = -5; +braceright = -11; +braceright.case = -20; +bracketright = -11; +bracketright.case = -20; +parenright = -12; +parenright.case = -24; +slashlongcomb = -19; +}; +Ibreve = { +parenright.case = -9; +}; +Icircumflex = { +braceright = 31; +braceright.case = 15; +bracketright = 30; +bracketright.case = 15; +parenright = 33; +parenright.case = 16; +}; +Idieresis = { +backslash = 29; +braceright = 26; +braceright.case = 15; +bracketright = 25; +bracketright.case = 15; +parenright = 28; +parenright.case = 17; +}; +Imacron = { +backslash = 18; +braceright = 15; +braceright.case = 4; +bracketright = 14; +bracketright.case = 4; +parenright = 17; +parenright.case = 6; +}; +Itilde = { +braceright = -4; +braceright.case = 4; +bracketright.case = 4; +parenright = -3; +parenright.case = 6; +}; +P = { +"@MMK_R_A" = -37; +"@MMK_R_AE" = -69; +"@MMK_R_J" = -13; +"@MMK_R_W" = -6; +"@MMK_R_Y" = -18; +"@MMK_R_Z" = -6; +"@MMK_R_a" = -9; +"@MMK_R_d" = -7; +"@MMK_R_g" = -7; +"@MMK_R_hyphen" = -19; +"@MMK_R_o" = -7; +"@MMK_R_period" = -78; +"@MMK_R_slash" = -52; +V = -17; +X = -16; +braceright = -22; +braceright.case = -33; +bracketright = -22; +bracketright.case = -31; +eth = -19; +four = -20; +parenright = -26; +parenright.case = -41; +six = -10; +slashlongcomb = -52; +space = -23; +three = -12; +}; +Tbar = { +"@MMK_R_a" = -80; +"@MMK_R_colon" = -39; +"@MMK_R_d" = -51; +"@MMK_R_f" = -48; +"@MMK_R_g" = -74; +"@MMK_R_guilsinglleft" = -48; +"@MMK_R_guilsinglleft.cap" = -49; +"@MMK_R_h" = -14; +"@MMK_R_hyphen" = -52; +"@MMK_R_hyphen.cap" = -47; +"@MMK_R_l" = -14; +"@MMK_R_n" = -71; +"@MMK_R_o" = -74; +"@MMK_R_s" = -71; +"@MMK_R_t" = -35; +"@MMK_R_u" = -70; +"@MMK_R_w" = -67; +"@MMK_R_y" = -77; +copyright = -21; +longs = -48; +registered = -21; +v = -75; +x = -79; +}; +Thorn = { +"@MMK_R_A" = -18; +"@MMK_R_T" = -67; +"@MMK_R_W" = -13; +"@MMK_R_Y" = -52; +"@MMK_R_Z" = -25; +"@MMK_R_period" = -46; +"@MMK_R_quoteleft" = -29; +"@MMK_R_quoteright" = -30; +"@MMK_R_quotesingle" = -23; +"@MMK_R_slash" = -27; +"@MMK_R_z" = -5; +V = -25; +X = -44; +asterisk = -12; +backslash = -27; +braceright = -31; +braceright.case = -37; +bracketright = -28; +bracketright.case = -33; +ordmasculine = -8; +parenright = -39; +parenright.case = -45; +slashlongcomb = -27; +trademark = -21; +v = -5; +x = -7; +}; +V = { +"@MMK_R_A" = -46; +"@MMK_R_AE" = -65; +"@MMK_R_J" = -19; +"@MMK_R_O" = -19; +"@MMK_R_S" = -22; +"@MMK_R_a" = -55; +"@MMK_R_colon" = -26; +"@MMK_R_d" = -51; +"@MMK_R_dotlessj" = -12; +"@MMK_R_f" = -13; +"@MMK_R_g" = -51; +"@MMK_R_guilsinglleft" = -37; +"@MMK_R_guilsinglleft.cap" = -38; +"@MMK_R_guilsinglright" = -12; +"@MMK_R_guilsinglright.cap" = -13; +"@MMK_R_h" = -18; +"@MMK_R_hyphen" = -44; +"@MMK_R_hyphen.cap" = -36; +"@MMK_R_i" = -12; +"@MMK_R_n" = -41; +"@MMK_R_o" = -51; +"@MMK_R_period" = -73; +"@MMK_R_s" = -49; +"@MMK_R_slash" = -70; +"@MMK_R_t" = -10; +"@MMK_R_u" = -37; +"@MMK_R_w" = -17; +"@MMK_R_y" = -18; +"@MMK_R_z" = -26; +ampersand = -23; +at = -28; +at.case = -18; +braceright.case = -26; +bracketright.case = -28; +copyright = -21; +eight = -16; +eth = -59; +five = -14; +four = -43; +idotless = -41; +igrave = 10; +longs = -13; +nine = -12; +one = -11; +parenright.case = -29; +rcaron = -32; +registered = -21; +six = -42; +slashlongcomb = -70; +space = -28; +two = -13; +v = -18; +x = -23; +zero = -15; +}; +X = { +"@MMK_R_J" = -7; +"@MMK_R_O" = -20; +"@MMK_R_S" = -9; +"@MMK_R_d" = -23; +"@MMK_R_dotlessj" = -12; +"@MMK_R_f" = -12; +"@MMK_R_g" = -23; +"@MMK_R_guilsinglleft" = -47; +"@MMK_R_guilsinglleft.cap" = -47; +"@MMK_R_hyphen" = -52; +"@MMK_R_hyphen.cap" = -56; +"@MMK_R_i" = 10; +"@MMK_R_o" = -22; +"@MMK_R_s" = -5; +"@MMK_R_t" = -10; +"@MMK_R_u" = -20; +"@MMK_R_w" = -28; +"@MMK_R_y" = -38; +copyright = -19; +eth = -21; +four = -12; +longs = -12; +one = -11; +registered = -19; +v = -37; +}; +"alef-hb" = { +"@MMK_R_hyphen" = -9; +"@MMK_R_slash" = -18; +slashlongcomb = -18; +}; +ampersand = { +"@MMK_R_T" = -48; +"@MMK_R_W" = -14; +"@MMK_R_Y" = -59; +"@MMK_R_quoteright" = -49; +"@MMK_R_quotesingle" = -43; +"@MMK_R_y" = -14; +Tbar = -35; +V = -37; +v = -13; +}; +asterisk = { +"@MMK_R_A" = -62; +"@MMK_R_AE" = -78; +"@MMK_R_a" = -23; +"@MMK_R_afii10029" = -30; +"@MMK_R_afii10074" = -10; +"@MMK_R_afii10077" = -32; +"@MMK_R_afii10080" = -22; +"@MMK_R_bethebrew" = -25; +"@MMK_R_d" = -25; +"@MMK_R_dotlessj" = 15; +"@MMK_R_g" = -22; +"@MMK_R_gimelhebrew" = -35; +"@MMK_R_hethebrew" = -18; +"@MMK_R_i" = 20; +"@MMK_R_kafhebrew" = -16; +"@MMK_R_n" = -10; +"@MMK_R_o" = -22; +"@MMK_R_s" = -17; +"@MMK_R_tethebrew" = -15; +"@MMK_R_u" = -9; +eth = -35; +}; +at = { +"@MMK_R_T" = -38; +"@MMK_R_Y" = -42; +"@MMK_R_Z" = -10; +"@MMK_R_quoteright" = -12; +"@MMK_R_quotesingle" = -11; +V = -25; +X = -13; +}; +at.case = { +"@MMK_R_T" = -13; +"@MMK_R_Y" = -24; +V = -15; +}; +"ayin-hb" = { +"@MMK_R_guilsinglright" = -17; +"@MMK_R_hyphen" = -25; +"@MMK_R_kafhebrew" = -6; +"@MMK_R_slash" = -18; +"@MMK_R_tethebrew" = -4; +slashlongcomb = -18; +}; +backslash = { +"@MMK_R_O" = -18; +"@MMK_R_T" = -66; +"@MMK_R_U" = -20; +"@MMK_R_W" = -37; +"@MMK_R_Y" = -83; +"@MMK_R_afii10032" = -18; +"@MMK_R_afii10080" = -14; +"@MMK_R_afii10085" = -38; +"@MMK_R_bethebrew" = -49; +"@MMK_R_d" = -15; +"@MMK_R_dotlessj" = -10; +"@MMK_R_f" = -24; +"@MMK_R_gimelhebrew" = -59; +"@MMK_R_hethebrew" = -41; +"@MMK_R_kafhebrew" = -39; +"@MMK_R_lamedhebrew" = -21; +"@MMK_R_o" = -14; +"@MMK_R_quoteright" = -70; +"@MMK_R_quotesingle" = -68; +"@MMK_R_t" = -30; +"@MMK_R_tethebrew" = -36; +"@MMK_R_tsadihebrew" = -19; +"@MMK_R_u" = -16; +"@MMK_R_vavhebrew" = -22; +"@MMK_R_w" = -34; +"@MMK_R_y" = -37; +"@MMK_R_yodhebrew" = -17; +V = -70; +"alef-hb" = -21; +"ayin-hb" = -20; +backslash = -194; +eth = -14; +four = -10; +nine = -35; +one = -57; +seven = -23; +six = -10; +v = -46; +"yodyod-hb" = -17; +zero = -16; +}; +braceleft = { +"@MMK_R_A" = -28; +"@MMK_R_AE" = -23; +"@MMK_R_I" = -10; +"@MMK_R_O" = -26; +"@MMK_R_S" = -20; +"@MMK_R_U" = -11; +"@MMK_R_a" = -32; +"@MMK_R_afii10026" = -10; +"@MMK_R_afii10029" = -16; +"@MMK_R_afii10032" = -26; +"@MMK_R_afii10074" = -31; +"@MMK_R_afii10077" = -26; +"@MMK_R_afii10080" = -37; +"@MMK_R_d" = -38; +"@MMK_R_f" = -22; +"@MMK_R_i" = 32; +"@MMK_R_n" = -31; +"@MMK_R_o" = -37; +"@MMK_R_s" = -33; +"@MMK_R_t" = -19; +"@MMK_R_u" = -33; +"@MMK_R_w" = -32; +"@MMK_R_y" = -25; +"@MMK_R_z" = -26; +Icircumflex = 28; +Idieresis = 23; +Imacron = 11; +Iogonek = -2; +Itilde = 16; +braceleft = -19; +eight = -24; +eth = -36; +five = -12; +four = -33; +j = 27; +nine = -21; +one = -28; +six = -36; +two = -16; +v = -37; +x = -25; +zero = -25; +}; +braceleft.case = { +"@MMK_R_A" = -23; +"@MMK_R_AE" = -13; +"@MMK_R_I" = -14; +"@MMK_R_J" = -15; +"@MMK_R_O" = -32; +"@MMK_R_S" = -25; +"@MMK_R_T" = -12; +"@MMK_R_U" = -20; +"@MMK_R_W" = -11; +"@MMK_R_Y" = -30; +"@MMK_R_afii10026" = -14; +"@MMK_R_afii10032" = -32; +Icircumflex = 12; +Idieresis = 12; +Imacron = 1; +Itilde = 2; +V = -27; +braceleft.case = -21; +eight = -30; +five = -24; +four = -36; +nine = -29; +one = -33; +six = -39; +three = -15; +two = -11; +zero = -31; +}; +braceright = { +braceright = -19; +bracketright = -16; +parenright = -20; +}; +braceright.case = { +braceright.case = -21; +bracketright.case = -20; +parenright.case = -22; +}; +bracketleft = { +"@MMK_R_A" = -29; +"@MMK_R_AE" = -25; +"@MMK_R_I" = -10; +"@MMK_R_O" = -25; +"@MMK_R_S" = -20; +"@MMK_R_U" = -11; +"@MMK_R_a" = -32; +"@MMK_R_afii10026" = -10; +"@MMK_R_afii10029" = -18; +"@MMK_R_afii10032" = -25; +"@MMK_R_afii10074" = -30; +"@MMK_R_afii10077" = -28; +"@MMK_R_afii10080" = -34; +"@MMK_R_d" = -35; +"@MMK_R_f" = -22; +"@MMK_R_i" = 32; +"@MMK_R_n" = -30; +"@MMK_R_o" = -34; +"@MMK_R_s" = -32; +"@MMK_R_t" = -19; +"@MMK_R_u" = -31; +"@MMK_R_w" = -32; +"@MMK_R_y" = -25; +"@MMK_R_z" = -27; +Icircumflex = 27; +Idieresis = 22; +Imacron = 10; +Iogonek = -2; +Itilde = 14; +braceleft = -16; +eight = -23; +eth = -33; +five = -12; +four = -30; +j = 26; +nine = -20; +one = -28; +six = -34; +two = -18; +v = -36; +x = -27; +zero = -24; +}; +bracketleft.case = { +"@MMK_R_A" = -25; +"@MMK_R_AE" = -18; +"@MMK_R_I" = -14; +"@MMK_R_J" = -16; +"@MMK_R_O" = -30; +"@MMK_R_S" = -26; +"@MMK_R_T" = -15; +"@MMK_R_U" = -20; +"@MMK_R_W" = -11; +"@MMK_R_Y" = -33; +"@MMK_R_afii10026" = -14; +"@MMK_R_afii10032" = -30; +Icircumflex = 12; +Idieresis = 12; +Imacron = 1; +Itilde = 2; +V = -29; +braceleft.case = -20; +eight = -29; +five = -23; +four = -35; +nine = -28; +one = -33; +six = -37; +three = -16; +two = -13; +zero = -30; +}; +copyright = { +"@MMK_R_A" = -15; +"@MMK_R_AE" = -17; +"@MMK_R_T" = -33; +"@MMK_R_Y" = -38; +"@MMK_R_Z" = -18; +"@MMK_R_quoteright" = -13; +"@MMK_R_quotesingle" = -11; +Tbar = -22; +V = -22; +X = -20; +}; +degree = { +four = -48; +six = -36; +}; +divide = { +nine = -13; +one = -33; +seven = -51; +three = -22; +two = -33; +}; +divide.case = { +eight = -10; +four = -11; +one = -22; +seven = -47; +three = -30; +two = -26; +}; +eight = { +"@MMK_R_Y" = -24; +"@MMK_R_hyphen.cap" = -13; +"@MMK_R_period" = -12; +V = -16; +backslash = -17; +braceright = -24; +braceright.case = -30; +bracketright = -23; +bracketright.case = -29; +divide.case = -10; +minus.case = -13; +parenright = -29; +parenright.case = -36; +}; +equal = { +seven = -28; +}; +equal.case = { +seven = -23; +}; +eth = { +"@MMK_R_period" = -12; +"@MMK_R_slash" = -15; +"@MMK_R_y" = -6; +"@MMK_R_z" = -4; +braceright = -20; +bracketright = -19; +parenright = -26; +slashlongcomb = -15; +v = -6; +x = -9; +}; +exclamdown = { +"@MMK_R_T" = -61; +"@MMK_R_Y" = -41; +Tbar = -47; +V = -21; +}; +"finalpe-hb" = { +"@MMK_R_bethebrew" = -5; +"@MMK_R_gimelhebrew" = -16; +"@MMK_R_period" = -45; +"@MMK_R_slash" = -14; +backslash = -31; +slashlongcomb = -14; +space = -17; +}; +"finaltsadi-hb" = { +"@MMK_R_bethebrew" = -25; +"@MMK_R_colon" = -14; +"@MMK_R_gimelhebrew" = -35; +"@MMK_R_guilsinglright" = -19; +"@MMK_R_hethebrew" = -17; +"@MMK_R_hyphen" = -30; +"@MMK_R_kafhebrew" = -19; +"@MMK_R_period" = -63; +"@MMK_R_slash" = -15; +"@MMK_R_tethebrew" = -18; +backslash = -52; +slashlongcomb = -15; +space = -27; +}; +five = { +"@MMK_R_Y" = -11; +"@MMK_R_period" = -11; +braceright.case = -20; +bracketright.case = -20; +one = -19; +parenright.case = -23; +}; +four = { +"@MMK_R_T" = -20; +"@MMK_R_W" = -11; +"@MMK_R_Y" = -36; +"@MMK_R_hyphen.cap" = -17; +"@MMK_R_period" = -19; +"@MMK_R_quotesingle" = -22; +V = -28; +backslash = -26; +braceright = -22; +braceright.case = -27; +bracketright = -21; +bracketright.case = -27; +divide.case = -14; +minus.case = -17; +nine = -10; +one = -18; +parenright = -26; +parenright.case = -33; +seven = -15; +}; +germandbls = { +"@MMK_R_period" = -9; +"@MMK_R_quoteright" = -8; +"@MMK_R_quotesingle" = -8; +"@MMK_R_slash" = -12; +"@MMK_R_w" = -13; +"@MMK_R_y" = -17; +"@MMK_R_z" = -4; +backslash = -21; +braceright = -26; +bracketright = -25; +parenright = -32; +slashlongcomb = -12; +trademark = -13; +v = -16; +x = -7; +}; +icircumflex = { +trademark = 8; +}; +idieresis = { +trademark = 14; +}; +imacron = { +trademark = 18; +}; +itilde = { +trademark = 16; +}; +longs = { +"@MMK_R_i" = 37; +"@MMK_R_n" = 6; +iacute = 1; +ibreve = 108; +icircumflex = 57; +idieresis = 114; +idotless = 1; +igrave = 136; +imacron = 90; +iogonek = 16; +itilde = 58; +j = 29; +rcaron = 59; +}; +minus = { +five = -10; +nine = -15; +one = -40; +seven = -61; +three = -24; +two = -43; +}; +minus.case = { +eight = -13; +four = -15; +one = -26; +seven = -62; +three = -37; +two = -33; +}; +multiply = { +seven = -24; +}; +multiply.case = { +seven = -21; +}; +nine = { +"@MMK_R_A" = -38; +"@MMK_R_J" = -16; +"@MMK_R_Y" = -19; +"@MMK_R_Z" = -12; +"@MMK_R_hyphen" = -18; +"@MMK_R_period" = -70; +"@MMK_R_slash" = -52; +V = -13; +X = -11; +backslash = -10; +braceright = -28; +braceright.case = -38; +bracketright = -28; +bracketright.case = -37; +divide = -16; +four = -18; +minus = -17; +parenright = -33; +parenright.case = -47; +periodcentered = -10; +six = -12; +slashlongcomb = -52; +three = -19; +}; +numbersign = { +seven = -19; +}; +numero = { +seven = -22; +}; +one = { +braceright.case = -11; +bracketright.case = -12; +parenright.case = -13; +}; +parenleft = { +"@MMK_R_A" = -33; +"@MMK_R_AE" = -28; +"@MMK_R_I" = -11; +"@MMK_R_O" = -32; +"@MMK_R_S" = -25; +"@MMK_R_U" = -12; +"@MMK_R_a" = -43; +"@MMK_R_afii10026" = -12; +"@MMK_R_afii10029" = -19; +"@MMK_R_afii10032" = -32; +"@MMK_R_afii10074" = -40; +"@MMK_R_afii10077" = -31; +"@MMK_R_afii10080" = -47; +"@MMK_R_d" = -47; +"@MMK_R_f" = -28; +"@MMK_R_i" = 33; +"@MMK_R_n" = -40; +"@MMK_R_o" = -47; +"@MMK_R_s" = -43; +"@MMK_R_t" = -23; +"@MMK_R_u" = -43; +"@MMK_R_w" = -43; +"@MMK_R_y" = -30; +"@MMK_R_z" = -34; +Icircumflex = 30; +Idieresis = 25; +Imacron = 13; +Iogonek = 1; +Itilde = 18; +braceleft = -20; +eight = -29; +eth = -43; +five = -14; +four = -43; +j = 27; +nine = -25; +one = -35; +six = -46; +two = -20; +v = -48; +x = -33; +zero = -30; +}; +parenleft.case = { +"@MMK_R_A" = -24; +"@MMK_R_AE" = -15; +"@MMK_R_I" = -16; +"@MMK_R_J" = -18; +"@MMK_R_O" = -39; +"@MMK_R_S" = -32; +"@MMK_R_T" = -13; +"@MMK_R_U" = -24; +"@MMK_R_W" = -11; +"@MMK_R_Y" = -31; +"@MMK_R_afii10026" = -16; +"@MMK_R_afii10032" = -39; +Icircumflex = 13; +Idieresis = 14; +Imacron = 2; +Iogonek = -10; +Itilde = 4; +V = -29; +braceleft.case = -22; +eight = -36; +five = -27; +four = -48; +nine = -36; +one = -44; +parenleft.case = -10; +six = -48; +three = -18; +two = -13; +zero = -38; +}; +parenright.case = { +parenright.case = -10; +}; +periodcentered = { +"@MMK_R_l" = -41; +one = -27; +seven = -53; +three = -15; +two = -29; +}; +plus = { +one = -26; +seven = -56; +three = -15; +two = -27; +}; +plus.case = { +one = -10; +seven = -48; +three = -23; +two = -20; +}; +questiondown = { +"@MMK_R_O" = -27; +"@MMK_R_T" = -71; +"@MMK_R_U" = -29; +"@MMK_R_W" = -39; +"@MMK_R_Y" = -82; +"@MMK_R_d" = -18; +"@MMK_R_f" = -20; +"@MMK_R_o" = -18; +"@MMK_R_t" = -29; +"@MMK_R_u" = -18; +"@MMK_R_w" = -43; +"@MMK_R_y" = -45; +V = -70; +eth = -17; +v = -55; +}; +racute = { +braceright = -11; +bracketright = -11; +parenright = -10; +}; +rcaron = { +braceright = -18; +bracketright = -18; +parenright = -17; +}; +registered = { +"@MMK_R_A" = -15; +"@MMK_R_AE" = -17; +"@MMK_R_T" = -32; +"@MMK_R_Y" = -38; +"@MMK_R_Z" = -18; +"@MMK_R_quoteright" = -13; +"@MMK_R_quotesingle" = -11; +Tbar = -21; +V = -22; +X = -19; +}; +"resh-hb" = { +"@MMK_R_bethebrew" = -38; +"@MMK_R_colon" = -37; +"@MMK_R_gimelhebrew" = -48; +"@MMK_R_guilsinglright" = -38; +"@MMK_R_hethebrew" = -25; +"@MMK_R_hyphen" = -71; +"@MMK_R_kafhebrew" = -17; +"@MMK_R_period" = -90; +"@MMK_R_tethebrew" = -11; +backslash = -64; +space = -25; +}; +seven = { +"@MMK_R_A" = -50; +"@MMK_R_hyphen" = -38; +"@MMK_R_hyphen.cap" = -29; +"@MMK_R_period" = -69; +"@MMK_R_slash" = -63; +braceright.case = -17; +bracketright.case = -20; +cent = -24; +divide = -32; +divide.case = -24; +equal = -15; +four = -35; +minus = -37; +minus.case = -29; +numbersign = -10; +parenright.case = -20; +periodcentered = -30; +plus = -32; +plus.case = -20; +six = -33; +slashlongcomb = -63; +}; +six = { +"@MMK_R_T" = -42; +"@MMK_R_W" = -12; +"@MMK_R_Y" = -53; +"@MMK_R_quotesingle" = -40; +V = -35; +backslash = -38; +braceright = -28; +braceright.case = -31; +bracketright = -26; +bracketright.case = -29; +one = -25; +parenright = -35; +parenright.case = -38; +seven = -30; +}; +slashlongcomb = { +"@MMK_R_A" = -65; +"@MMK_R_AE" = -71; +"@MMK_R_I" = 29; +"@MMK_R_O" = -18; +"@MMK_R_S" = -11; +"@MMK_R_a" = -46; +"@MMK_R_afii10029" = -28; +"@MMK_R_afii10032" = -18; +"@MMK_R_afii10074" = -32; +"@MMK_R_afii10077" = -56; +"@MMK_R_afii10080" = -46; +"@MMK_R_afii10085" = -26; +"@MMK_R_d" = -47; +"@MMK_R_dalethebrew" = -26; +"@MMK_R_dotlessj" = -13; +"@MMK_R_f" = -10; +"@MMK_R_g" = -46; +"@MMK_R_i" = 24; +"@MMK_R_kafhebrew" = -16; +"@MMK_R_lamedhebrew" = -14; +"@MMK_R_n" = -32; +"@MMK_R_o" = -46; +"@MMK_R_s" = -40; +"@MMK_R_tethebrew" = -12; +"@MMK_R_u" = -29; +"@MMK_R_w" = -25; +"@MMK_R_y" = -26; +"@MMK_R_yodhebrew" = -32; +"@MMK_R_z" = -25; +"@MMK_R_zayinhebrew" = -26; +Idieresis = 26; +Imacron = 14; +Itilde = 17; +"ayin-hb" = -18; +eight = -17; +eth = -47; +"finaltsadi-hb" = -16; +four = -54; +six = -51; +slashlongcomb = -194; +two = -10; +v = -26; +x = -24; +"yodyod-hb" = -32; +zero = -16; +}; +space = { +"@MMK_R_A" = -27; +"@MMK_R_AE" = -31; +"@MMK_R_T" = -26; +"@MMK_R_W" = -20; +"@MMK_R_Y" = -30; +"@MMK_R_bethebrew" = -17; +"@MMK_R_dalethebrew" = -23; +"@MMK_R_dotlessj" = -18; +"@MMK_R_f" = -20; +"@MMK_R_gimelhebrew" = -22; +"@MMK_R_t" = -22; +"@MMK_R_w" = -23; +"@MMK_R_y" = -27; +"@MMK_R_zayinhebrew" = -23; +V = -28; +v = -27; +}; +tcaron = { +"@MMK_R_guilsinglright" = 30; +"@MMK_R_h" = 56; +"@MMK_R_hyphen" = -12; +"@MMK_R_i" = 68; +"@MMK_R_l" = 56; +"@MMK_R_quoteleft" = 34; +"@MMK_R_quoteright" = 54; +"@MMK_R_quotesingle" = 75; +"@MMK_R_s" = 26; +"@MMK_R_t" = 18; +asterisk = 68; +backslash = 87; +bar = 59; +braceright = 89; +bracketright = 88; +exclam = 69; +iacute = 33; +j = 59; +ordfeminine = 48; +ordmasculine = 52; +parenright = 89; +question = 71; +trademark = 102; +}; +three = { +"@MMK_R_hyphen.cap" = -12; +braceright.case = -19; +bracketright.case = -19; +divide.case = -10; +minus.case = -12; +one = -20; +parenright.case = -21; +}; +two = { +"@MMK_R_Y" = -19; +"@MMK_R_hyphen" = -29; +"@MMK_R_hyphen.cap" = -18; +V = -14; +backslash = -10; +braceright = -13; +braceright.case = -11; +bracketright = -15; +bracketright.case = -12; +divide = -23; +divide.case = -16; +four = -12; +minus = -27; +minus.case = -18; +parenright = -18; +parenright.case = -13; +periodcentered = -19; +plus = -19; +}; +v = { +"@MMK_R_A" = -28; +"@MMK_R_J" = -33; +"@MMK_R_T" = -97; +"@MMK_R_Y" = -55; +"@MMK_R_Z" = -43; +"@MMK_R_a" = -19; +"@MMK_R_d" = -18; +"@MMK_R_g" = -18; +"@MMK_R_guilsinglleft" = -15; +"@MMK_R_hyphen" = -23; +"@MMK_R_o" = -18; +"@MMK_R_period" = -57; +"@MMK_R_s" = -16; +"@MMK_R_slash" = -46; +V = -18; +X = -38; +ampersand = -11; +backslash = -26; +braceright = -37; +bracketright = -36; +eth = -24; +parenright = -48; +slashlongcomb = -46; +space = -27; +trademark = -8; +}; +"vavdagesh-hb" = { +"@MMK_R_dalethebrew" = -8; +"@MMK_R_gimelhebrew" = -5; +"@MMK_R_period" = -23; +"@MMK_R_quoteleft" = -25; +"@MMK_R_quoteright" = -28; +"@MMK_R_quotesingle" = -21; +"@MMK_R_slash" = -37; +"@MMK_R_zayinhebrew" = -8; +asterisk = -21; +backslash = -15; +slashlongcomb = -37; +}; +x = { +"@MMK_R_J" = -13; +"@MMK_R_T" = -86; +"@MMK_R_Y" = -55; +"@MMK_R_a" = -4; +"@MMK_R_d" = -12; +"@MMK_R_g" = -12; +"@MMK_R_guilsinglleft" = -19; +"@MMK_R_hyphen" = -32; +"@MMK_R_o" = -12; +V = -22; +backslash = -24; +braceright = -25; +bracketright = -27; +eth = -16; +parenright = -33; +trademark = -10; +}; +"yodyod-hb" = { +"@MMK_R_gimelhebrew" = -14; +"@MMK_R_period" = -75; +"@MMK_R_slash" = -17; +backslash = -32; +slashlongcomb = -17; +}; +zero = { +"@MMK_R_T" = -11; +"@MMK_R_Y" = -24; +"@MMK_R_period" = -19; +"@MMK_R_slash" = -17; +V = -16; +backslash = -16; +braceright = -25; +braceright.case = -31; +bracketright = -24; +bracketright.case = -30; +parenright = -30; +parenright.case = -38; +slashlongcomb = -17; +}; +}; +"EC64484B-0978-4CB1-9EE9-C40A2D8C4059" = { +"@MMK_L_A" = { +"@MMK_R_J" = -10; +"@MMK_R_O" = -17; +"@MMK_R_S" = -11; +"@MMK_R_T" = -69; +"@MMK_R_U" = -19; +"@MMK_R_W" = -30; +"@MMK_R_Y" = -88; +"@MMK_R_d" = -6; +"@MMK_R_f" = -24; +"@MMK_R_g" = -8; +"@MMK_R_guilsinglleft" = -15; +"@MMK_R_guilsinglleft.cap" = -19; +"@MMK_R_hyphen" = -16; +"@MMK_R_hyphen.cap" = -22; +"@MMK_R_o" = -7; +"@MMK_R_quoteleft" = -47; +"@MMK_R_quoteright" = -51; +"@MMK_R_quotesingle" = -60; +"@MMK_R_t" = -39; +"@MMK_R_u" = -5; +"@MMK_R_w" = -30; +"@MMK_R_y" = -46; +V = -61; +asterisk = -57; +backslash = -76; +copyright = -16; +eth = -6; +j = 84; +longs = -24; +nine = -25; +one = -43; +ordfeminine = -58; +ordmasculine = -61; +question = -43; +registered = -16; +seven = -20; +space = -24; +trademark = -71; +v = -44; +zero = -10; +}; +"@MMK_L_C" = { +"@MMK_R_A" = -11; +"@MMK_R_AE" = -14; +"@MMK_R_Y" = -21; +"@MMK_R_slash" = -23; +V = -20; +X = -29; +backslash = -23; +braceright = -16; +braceright.case = -21; +bracketright = -15; +bracketright.case = -19; +parenright = -17; +parenright.case = -22; +slashlongcomb = -23; +trademark = -9; +}; +"@MMK_L_D" = { +"@MMK_R_A" = -18; +"@MMK_R_AE" = -21; +"@MMK_R_T" = -8; +"@MMK_R_W" = -7; +"@MMK_R_Y" = -36; +"@MMK_R_Z" = -6; +"@MMK_R_slash" = -32; +V = -24; +X = -41; +backslash = -33; +braceright = -27; +braceright.case = -32; +bracketright = -26; +bracketright.case = -29; +parenright = -27; +parenright.case = -33; +slashlongcomb = -32; +trademark = -20; +x = -10; +}; +"@MMK_L_E" = { +"@MMK_R_O" = -5; +"@MMK_R_hyphen.cap" = -8; +"@MMK_R_y" = -5; +j = 56; +}; +"@MMK_L_G" = { +"@MMK_R_A" = -17; +"@MMK_R_AE" = -20; +"@MMK_R_Y" = -26; +"@MMK_R_slash" = -28; +V = -24; +X = -37; +backslash = -25; +braceright = -19; +braceright.case = -25; +bracketright = -18; +bracketright.case = -23; +parenright = -20; +parenright.case = -26; +slashlongcomb = -28; +trademark = -11; +x = -8; +}; +"@MMK_L_I" = { +backslash = 55; +bar = 52; +braceright = 51; +braceright.case = 37; +bracketright = 49; +bracketright.case = 36; +j = 40; +parenright = 50; +parenright.case = 38; +}; +"@MMK_L_K" = { +"@MMK_R_J" = -12; +"@MMK_R_O" = -34; +"@MMK_R_S" = -24; +"@MMK_R_U" = -6; +"@MMK_R_a" = -7; +"@MMK_R_d" = -24; +"@MMK_R_f" = -33; +"@MMK_R_g" = -33; +"@MMK_R_guilsinglleft" = -36; +"@MMK_R_guilsinglleft.cap" = -41; +"@MMK_R_hyphen" = -31; +"@MMK_R_hyphen.cap" = -36; +"@MMK_R_o" = -28; +"@MMK_R_quoteleft" = -19; +"@MMK_R_s" = -12; +"@MMK_R_t" = -41; +"@MMK_R_u" = -18; +"@MMK_R_w" = -40; +"@MMK_R_y" = -50; +copyright = -25; +eth = -26; +longs = -33; +nine = -11; +one = -23; +registered = -25; +v = -48; +zero = -11; +}; +"@MMK_L_L" = { +"@MMK_R_O" = -7; +"@MMK_R_T" = -97; +"@MMK_R_U" = -10; +"@MMK_R_W" = -28; +"@MMK_R_Y" = -95; +"@MMK_R_f" = -38; +"@MMK_R_guilsinglleft" = -23; +"@MMK_R_guilsinglleft.cap" = -25; +"@MMK_R_hyphen" = -8; +"@MMK_R_hyphen.cap" = -43; +"@MMK_R_quoteleft" = -106; +"@MMK_R_quoteright" = -109; +"@MMK_R_quotesingle" = -112; +"@MMK_R_t" = -63; +"@MMK_R_w" = -45; +"@MMK_R_y" = -80; +V = -86; +asterisk = -112; +backslash = -80; +longs = -38; +nine = -33; +one = -77; +ordfeminine = -113; +ordmasculine = -114; +periodcentered = -110; +question = -58; +seven = -23; +space = -21; +trademark = -114; +v = -76; +}; +"@MMK_L_O" = { +"@MMK_R_A" = -17; +"@MMK_R_AE" = -20; +"@MMK_R_T" = -7; +"@MMK_R_W" = -7; +"@MMK_R_Y" = -34; +"@MMK_R_Z" = -5; +"@MMK_R_slash" = -30; +V = -23; +X = -37; +asterisk = 14; +backslash = -31; +braceright = -24; +braceright.case = -29; +bracketright = -23; +bracketright.case = -26; +parenright = -25; +parenright.case = -30; +slashlongcomb = -30; +trademark = -18; +x = -10; +}; +"@MMK_L_R" = { +"@MMK_R_J" = -10; +"@MMK_R_O" = -5; +"@MMK_R_T" = -6; +"@MMK_R_W" = -7; +"@MMK_R_Y" = -30; +"@MMK_R_d" = -6; +"@MMK_R_g" = -7; +"@MMK_R_hyphen" = -8; +"@MMK_R_o" = -7; +V = -23; +backslash = -30; +eth = -13; +trademark = -12; +}; +"@MMK_L_S" = { +"@MMK_R_A" = -12; +"@MMK_R_AE" = -15; +"@MMK_R_T" = -7; +"@MMK_R_W" = -6; +"@MMK_R_Y" = -31; +"@MMK_R_slash" = -19; +"@MMK_R_y" = -5; +V = -25; +X = -31; +backslash = -29; +braceright = -19; +braceright.case = -20; +bracketright = -18; +bracketright.case = -16; +parenright = -20; +parenright.case = -21; +slashlongcomb = -19; +trademark = -16; +x = -11; +}; +"@MMK_L_T" = { +"@MMK_R_A" = -69; +"@MMK_R_AE" = -70; +"@MMK_R_J" = -10; +"@MMK_R_O" = -7; +"@MMK_R_a" = -85; +"@MMK_R_d" = -75; +"@MMK_R_f" = -10; +"@MMK_R_g" = -71; +"@MMK_R_guilsinglleft" = -37; +"@MMK_R_guilsinglleft.cap" = -21; +"@MMK_R_h" = -12; +"@MMK_R_hyphen" = -55; +"@MMK_R_hyphen.cap" = -36; +"@MMK_R_i" = -15; +"@MMK_R_l" = -12; +"@MMK_R_n" = -27; +"@MMK_R_o" = -82; +"@MMK_R_period" = -58; +"@MMK_R_s" = -71; +"@MMK_R_slash" = -71; +"@MMK_R_t" = -7; +"@MMK_R_u" = -22; +"@MMK_R_w" = -11; +"@MMK_R_y" = -9; +"@MMK_R_z" = -21; +ampersand = -18; +asterisk = 7; +d = -57; +dcaron = -57; +dcroat = -57; +eth = -85; +four = -49; +germandbls = -22; +hbar = 14; +ibreve = 7; +icircumflex = 59; +idieresis = 49; +idotless = -27; +igrave = 36; +imacron = 31; +itilde = 48; +j = -21; +longs = -11; +six = -33; +slashlongcomb = -71; +space = -21; +v = -9; +x = -14; +}; +"@MMK_L_U" = { +"@MMK_R_A" = -19; +"@MMK_R_AE" = -22; +"@MMK_R_period" = -9; +"@MMK_R_slash" = -32; +X = -7; +slashlongcomb = -32; +x = -5; +}; +"@MMK_L_W" = { +"@MMK_R_A" = -30; +"@MMK_R_AE" = -33; +"@MMK_R_J" = -6; +"@MMK_R_O" = -7; +"@MMK_R_a" = -18; +"@MMK_R_d" = -15; +"@MMK_R_g" = -15; +"@MMK_R_hyphen" = -11; +"@MMK_R_hyphen.cap" = -8; +"@MMK_R_n" = -9; +"@MMK_R_o" = -16; +"@MMK_R_period" = -19; +"@MMK_R_s" = -13; +"@MMK_R_slash" = -35; +"@MMK_R_u" = -8; +"@MMK_R_z" = -10; +ampersand = -10; +eth = -23; +slashlongcomb = -35; +x = -7; +}; +"@MMK_L_Y" = { +"@MMK_R_A" = -88; +"@MMK_R_AE" = -91; +"@MMK_R_J" = -17; +"@MMK_R_O" = -34; +"@MMK_R_S" = -25; +"@MMK_R_a" = -100; +"@MMK_R_colon" = -22; +"@MMK_R_d" = -86; +"@MMK_R_f" = -37; +"@MMK_R_g" = -86; +"@MMK_R_guilsinglleft" = -48; +"@MMK_R_guilsinglleft.cap" = -43; +"@MMK_R_guilsinglright" = -15; +"@MMK_R_hyphen" = -50; +"@MMK_R_hyphen.cap" = -41; +"@MMK_R_n" = -65; +"@MMK_R_o" = -90; +"@MMK_R_period" = -67; +"@MMK_R_quoteleft" = -14; +"@MMK_R_s" = -96; +"@MMK_R_slash" = -85; +"@MMK_R_t" = -32; +"@MMK_R_u" = -61; +"@MMK_R_w" = -46; +"@MMK_R_y" = -50; +"@MMK_R_z" = -63; +adieresis = -85; +agrave = -88; +ampersand = -37; +at = -41; +at.case = -24; +copyright = -33; +eight = -19; +eth = -89; +five = -15; +four = -64; +longs = -37; +nine = -12; +one = -14; +question = -11; +registered = -33; +scircumflex = -85; +six = -57; +slashlongcomb = -85; +space = -27; +trademark = 14; +two = -18; +v = -46; +x = -53; +zero = -21; +}; +"@MMK_L_Z" = { +"@MMK_R_O" = -5; +"@MMK_R_f" = -7; +"@MMK_R_g" = -5; +"@MMK_R_guilsinglleft" = -14; +"@MMK_R_guilsinglleft.cap" = -22; +"@MMK_R_hyphen" = -13; +"@MMK_R_hyphen.cap" = -20; +"@MMK_R_t" = -7; +"@MMK_R_y" = -6; +longs = -7; +v = -5; +}; +"@MMK_L_a" = { +"@MMK_R_T" = -76; +"@MMK_R_W" = -17; +"@MMK_R_Y" = -85; +"@MMK_R_f" = -4; +"@MMK_R_quoteright" = -9; +"@MMK_R_quotesingle" = -19; +"@MMK_R_t" = -4; +"@MMK_R_w" = -12; +"@MMK_R_y" = -22; +V = -56; +asterisk = -20; +backslash = -63; +braceright = -10; +j = 53; +longs = -4; +ordfeminine = -19; +ordmasculine = -25; +parenright = -11; +question = -21; +trademark = -39; +v = -19; +}; +"@MMK_L_afii10020" = { +"@MMK_R_afii10029" = -41; +"@MMK_R_afii10032" = -7; +"@MMK_R_afii10074" = -19; +"@MMK_R_afii10077" = -77; +"@MMK_R_afii10080" = -95; +"@MMK_R_afii10103" = -6; +"@MMK_R_afii10108" = 22; +"@MMK_R_guilsinglleft" = -28; +"@MMK_R_guilsinglleft.cap" = -24; +"@MMK_R_hyphen" = -51; +"@MMK_R_hyphen.cap" = -33; +"@MMK_R_period" = -82; +"@MMK_R_slash" = -79; +asterisk = 11; +slashlongcomb = -79; +}; +"@MMK_L_afii10022" = { +"@MMK_R_afii10032" = -5; +"@MMK_R_afii10085" = -5; +"@MMK_R_hyphen.cap" = -8; +}; +"@MMK_L_afii10028" = { +"@MMK_R_afii10032" = -34; +"@MMK_R_afii10080" = -28; +"@MMK_R_afii10085" = -50; +"@MMK_R_guilsinglleft" = -36; +"@MMK_R_guilsinglleft.cap" = -41; +"@MMK_R_hyphen" = -31; +"@MMK_R_hyphen.cap" = -36; +"@MMK_R_quoteleft" = -19; +}; +"@MMK_L_afii10032" = { +"@MMK_R_afii10029" = -8; +"@MMK_R_afii10037" = -14; +"@MMK_R_afii10077" = -11; +"@MMK_R_slash" = -30; +backslash = -31; +braceright = -24; +braceright.case = -29; +bracketright = -23; +bracketright.case = -26; +parenright = -25; +parenright.case = -30; +slashlongcomb = -30; +}; +"@MMK_L_afii10037" = { +"@MMK_R_afii10029" = -45; +"@MMK_R_afii10032" = -26; +"@MMK_R_afii10074" = -44; +"@MMK_R_afii10077" = -92; +"@MMK_R_afii10080" = -83; +"@MMK_R_afii10085" = -19; +"@MMK_R_afii10108" = 28; +"@MMK_R_colon" = -15; +"@MMK_R_guilsinglleft" = -36; +"@MMK_R_guilsinglleft.cap" = -31; +"@MMK_R_guilsinglright" = -13; +"@MMK_R_hyphen" = -40; +"@MMK_R_hyphen.cap" = -31; +"@MMK_R_period" = -64; +"@MMK_R_slash" = -89; +braceright = 5; +parenright = 5; +slashlongcomb = -89; +}; +"@MMK_L_afii10040" = { +"@MMK_R_afii10032" = -5; +"@MMK_R_afii10085" = -42; +"@MMK_R_afii10108" = -5; +"@MMK_R_guilsinglleft" = -10; +"@MMK_R_guilsinglleft.cap" = -15; +"@MMK_R_hyphen.cap" = -19; +"@MMK_R_quoteleft" = -31; +"@MMK_R_quoteright" = -32; +"@MMK_R_quotesingle" = -32; +asterisk = -31; +backslash = -36; +question = -21; +}; +"@MMK_L_afii10046" = { +"@MMK_R_afii10037" = -12; +"@MMK_R_afii10085" = -20; +"@MMK_R_afii10108" = -11; +"@MMK_R_quoteleft" = -21; +"@MMK_R_quoteright" = -27; +"@MMK_R_quotesingle" = -41; +"@MMK_R_slash" = -18; +asterisk = -36; +backslash = -63; +braceright = -40; +braceright.case = -24; +bracketright = -34; +bracketright.case = -17; +parenright = -40; +parenright.case = -26; +question = -28; +slashlongcomb = -18; +}; +"@MMK_L_afii10068" = { +"@MMK_R_afii10077" = -34; +"@MMK_R_afii10080" = -5; +"@MMK_R_period" = -60; +"@MMK_R_slash" = -61; +backslash = -34; +braceright = -43; +bracketright = -42; +parenright = -44; +slashlongcomb = -61; +}; +"@MMK_L_afii10070" = { +"@MMK_R_afii10077" = -6; +"@MMK_R_afii10085" = -26; +"@MMK_R_afii10108" = -14; +"@MMK_R_quoteright" = -12; +"@MMK_R_quotesingle" = -21; +"@MMK_R_slash" = -25; +asterisk = -22; +backslash = -63; +braceright = -39; +bracketright = -34; +parenright = -40; +question = -25; +slashlongcomb = -25; +}; +"@MMK_L_afii10074" = { +"@MMK_R_afii10108" = -5; +backslash = -48; +braceright = -11; +parenright = -12; +}; +"@MMK_L_afii10076" = { +"@MMK_R_afii10080" = -20; +"@MMK_R_guilsinglleft" = -11; +"@MMK_R_hyphen" = -18; +backslash = -43; +}; +"@MMK_L_afii10080" = { +"@MMK_R_afii10077" = -7; +"@MMK_R_afii10085" = -25; +"@MMK_R_afii10108" = -15; +"@MMK_R_quoteright" = -10; +"@MMK_R_quotesingle" = -19; +"@MMK_R_slash" = -27; +asterisk = -21; +backslash = -62; +braceright = -42; +bracketright = -36; +parenright = -42; +question = -22; +slashlongcomb = -27; +}; +"@MMK_L_afii10082" = { +"@MMK_R_afii10077" = -7; +"@MMK_R_afii10085" = -23; +"@MMK_R_afii10108" = -13; +"@MMK_R_quotesingle" = -17; +"@MMK_R_slash" = -25; +asterisk = -18; +backslash = -61; +braceright = -38; +bracketright = -33; +parenright = -39; +question = -19; +slashlongcomb = -25; +}; +"@MMK_L_afii10085" = { +"@MMK_R_afii10077" = -39; +"@MMK_R_afii10080" = -22; +"@MMK_R_hyphen" = -16; +"@MMK_R_period" = -42; +"@MMK_R_slash" = -63; +backslash = -36; +braceright = -38; +bracketright = -39; +parenright = -39; +question = 8; +slashlongcomb = -63; +}; +"@MMK_L_afii10088" = { +"@MMK_R_afii10080" = -5; +"@MMK_R_afii10085" = -34; +"@MMK_R_afii10108" = -13; +"@MMK_R_guilsinglleft" = -17; +"@MMK_R_hyphen" = -16; +"@MMK_R_quoteleft" = -20; +"@MMK_R_quoteright" = -22; +"@MMK_R_quotesingle" = -28; +asterisk = -28; +backslash = -70; +question = -30; +}; +"@MMK_L_afii10094" = { +"@MMK_R_afii10085" = -36; +"@MMK_R_afii10108" = -16; +"@MMK_R_quoteleft" = -34; +"@MMK_R_quoteright" = -38; +"@MMK_R_quotesingle" = -49; +"@MMK_R_slash" = -21; +asterisk = -46; +backslash = -73; +braceright = -39; +bracketright = -33; +parenright = -39; +question = -48; +slashlongcomb = -21; +}; +"@MMK_L_b" = { +"@MMK_R_A" = -6; +"@MMK_R_T" = -75; +"@MMK_R_W" = -15; +"@MMK_R_Y" = -86; +"@MMK_R_quoteright" = -11; +"@MMK_R_quotesingle" = -20; +"@MMK_R_slash" = -25; +"@MMK_R_w" = -16; +"@MMK_R_y" = -23; +V = -53; +X = -26; +asterisk = -20; +backslash = -61; +braceright = -38; +bracketright = -33; +ordfeminine = -20; +ordmasculine = -25; +parenright = -38; +question = -20; +slashlongcomb = -25; +trademark = -40; +v = -19; +x = -21; +}; +"@MMK_L_bethebrew" = { +"@MMK_R_hyphen" = -8; +"@MMK_R_kafhebrew" = -8; +"@MMK_R_quoteright" = -8; +"@MMK_R_slash" = -33; +"@MMK_R_tethebrew" = -6; +slashlongcomb = -33; +}; +"@MMK_L_c" = { +"@MMK_R_T" = -86; +"@MMK_R_W" = -11; +"@MMK_R_Y" = -99; +"@MMK_R_quoteright" = -8; +"@MMK_R_quotesingle" = -18; +"@MMK_R_slash" = -24; +"@MMK_R_w" = -14; +"@MMK_R_y" = -21; +V = -47; +X = -25; +asterisk = -19; +backslash = -60; +braceright = -40; +bracketright = -34; +ordfeminine = -20; +ordmasculine = -26; +parenright = -40; +question = -20; +slashlongcomb = -24; +trademark = -40; +v = -17; +x = -19; +}; +"@MMK_L_colon" = { +"@MMK_R_Y" = -22; +V = -15; +}; +"@MMK_L_d" = { +"@MMK_R_T" = -12; +asterisk = 25; +braceright = 13; +bracketright = 11; +ordmasculine = 11; +parenright = 13; +question = 6; +trademark = 27; +}; +"@MMK_L_dalethebrew" = { +"@MMK_R_bethebrew" = -36; +"@MMK_R_gimelhebrew" = -60; +"@MMK_R_hethebrew" = -9; +"@MMK_R_hyphen" = -8; +"@MMK_R_kafhebrew" = -8; +"@MMK_R_period" = -57; +"@MMK_R_slash" = -19; +"@MMK_R_tethebrew" = -6; +asterisk = 10; +backslash = -64; +slashlongcomb = -19; +space = -19; +}; +"@MMK_L_dcaron" = { +"@MMK_R_I" = 60; +"@MMK_R_a" = -58; +"@MMK_R_colon" = 20; +"@MMK_R_d" = -50; +"@MMK_R_f" = 25; +"@MMK_R_g" = -46; +"@MMK_R_guilsinglleft" = -23; +"@MMK_R_guilsinglright" = 31; +"@MMK_R_h" = 86; +"@MMK_R_hyphen" = -47; +"@MMK_R_i" = 81; +"@MMK_R_l" = 86; +"@MMK_R_o" = -64; +"@MMK_R_period" = -48; +"@MMK_R_quoteleft" = 9; +"@MMK_R_quoteright" = 50; +"@MMK_R_quotesingle" = 90; +"@MMK_R_s" = -43; +"@MMK_R_slash" = -56; +"@MMK_R_t" = 28; +"@MMK_R_w" = 25; +"@MMK_R_y" = 26; +asterisk = 75; +backslash = 73; +bar = 66; +braceright = 95; +bracketright = 94; +exclam = 79; +j = 68; +longs = 24; +ocircumflex = -1; +ordfeminine = 59; +ordmasculine = 69; +parenright = 96; +question = 45; +semicolon = 6; +slashlongcomb = -56; +trademark = 109; +v = 32; +x = 19; +}; +"@MMK_L_e" = { +"@MMK_R_A" = -6; +"@MMK_R_T" = -89; +"@MMK_R_W" = -16; +"@MMK_R_Y" = -100; +"@MMK_R_f" = -4; +"@MMK_R_quoteright" = -12; +"@MMK_R_quotesingle" = -21; +"@MMK_R_slash" = -25; +"@MMK_R_w" = -18; +"@MMK_R_y" = -26; +"@MMK_R_z" = -4; +V = -56; +X = -27; +asterisk = -22; +backslash = -63; +braceright = -39; +bracketright = -34; +longs = -4; +ordfeminine = -23; +ordmasculine = -29; +parenright = -40; +question = -25; +slashlongcomb = -25; +trademark = -43; +v = -22; +x = -23; +}; +"@MMK_L_f" = { +"@MMK_R_A" = -40; +"@MMK_R_T" = 6; +"@MMK_R_Y" = 20; +"@MMK_R_a" = -8; +"@MMK_R_i" = 80; +"@MMK_R_o" = -4; +"@MMK_R_period" = -37; +"@MMK_R_quotesingle" = 6; +"@MMK_R_slash" = -51; +V = 8; +asterisk = 8; +braceright = 12; +bracketright = 11; +eth = -14; +ordmasculine = 10; +parenright = 13; +slashlongcomb = -51; +space = -18; +trademark = 14; +}; +"@MMK_L_gimelhebrew" = { +"@MMK_R_dalethebrew" = -7; +"@MMK_R_guilsinglright" = -12; +"@MMK_R_hyphen" = -15; +"@MMK_R_kafhebrew" = -10; +"@MMK_R_lamedhebrew" = -6; +"@MMK_R_quoteright" = -13; +"@MMK_R_slash" = -39; +"@MMK_R_tethebrew" = -8; +"@MMK_R_zayinhebrew" = -7; +"ayin-hb" = -5; +"finaltsadi-hb" = -8; +slashlongcomb = -39; +}; +"@MMK_L_guilsinglleft" = { +"@MMK_R_Y" = -15; +"@MMK_R_gimelhebrew" = -22; +V = -12; +}; +"@MMK_L_guilsinglright" = { +"@MMK_R_A" = -16; +"@MMK_R_AE" = -19; +"@MMK_R_T" = -37; +"@MMK_R_Y" = -48; +"@MMK_R_Z" = -16; +"@MMK_R_afii10029" = -17; +"@MMK_R_afii10037" = -26; +"@MMK_R_afii10077" = -14; +"@MMK_R_quotesingle" = -11; +Tbar = -24; +V = -26; +X = -39; +x = -12; +}; +"@MMK_L_guilsinglright.cap" = { +"@MMK_R_A" = -21; +"@MMK_R_AE" = -24; +"@MMK_R_T" = -21; +"@MMK_R_Y" = -43; +"@MMK_R_Z" = -21; +"@MMK_R_afii10029" = -21; +"@MMK_R_afii10037" = -33; +V = -24; +X = -45; +}; +"@MMK_L_hyphen" = { +"@MMK_R_A" = -16; +"@MMK_R_AE" = -18; +"@MMK_R_T" = -55; +"@MMK_R_W" = -11; +"@MMK_R_Y" = -50; +"@MMK_R_Z" = -13; +"@MMK_R_afii10029" = -12; +"@MMK_R_afii10037" = -19; +"@MMK_R_afii10077" = -14; +"@MMK_R_afii10085" = -19; +"@MMK_R_afii10108" = -11; +"@MMK_R_bethebrew" = -11; +"@MMK_R_dalethebrew" = -8; +"@MMK_R_gimelhebrew" = -28; +"@MMK_R_quotesingle" = -15; +"@MMK_R_w" = -12; +"@MMK_R_y" = -19; +"@MMK_R_zayinhebrew" = -8; +Tbar = -40; +V = -31; +X = -33; +j = -9; +one = -18; +seven = -41; +two = -15; +v = -16; +x = -19; +}; +"@MMK_L_hyphen.cap" = { +"@MMK_R_A" = -22; +"@MMK_R_AE" = -23; +"@MMK_R_T" = -36; +"@MMK_R_W" = -8; +"@MMK_R_Y" = -41; +"@MMK_R_Z" = -20; +"@MMK_R_afii10029" = -24; +"@MMK_R_afii10037" = -27; +Tbar = -27; +V = -26; +X = -39; +seven = -26; +three = -15; +two = -13; +}; +"@MMK_L_i" = { +"@MMK_R_T" = -15; +"@MMK_R_i" = 1; +"@MMK_R_n" = 50; +"@MMK_R_o" = 8; +"@MMK_R_s" = 30; +"@MMK_R_z" = 26; +asterisk = 53; +backslash = 102; +bar = 72; +braceright = 100; +bracketright = 99; +exclam = 37; +j = 44; +ordfeminine = 44; +ordmasculine = 60; +parenright = 101; +question = 32; +trademark = 51; +}; +"@MMK_L_k" = { +"@MMK_R_J" = -10; +"@MMK_R_O" = -10; +"@MMK_R_T" = -15; +"@MMK_R_U" = -5; +"@MMK_R_W" = -7; +"@MMK_R_Y" = -55; +"@MMK_R_a" = -11; +"@MMK_R_d" = -19; +"@MMK_R_g" = -23; +"@MMK_R_guilsinglleft" = -17; +"@MMK_R_hyphen" = -20; +"@MMK_R_o" = -22; +"@MMK_R_s" = -12; +"@MMK_R_u" = -4; +V = -29; +backslash = -43; +eth = -25; +trademark = -22; +}; +"@MMK_L_kafhebrew" = { +"@MMK_R_kafhebrew" = -7; +"@MMK_R_slash" = -31; +"@MMK_R_tethebrew" = -6; +slashlongcomb = -31; +}; +"@MMK_L_l" = { +"@MMK_R_T" = -12; +"@MMK_R_i" = 54; +bar = 75; +periodcentered = -41; +}; +"@MMK_L_lamedhebrew" = { +"@MMK_R_bethebrew" = -30; +"@MMK_R_gimelhebrew" = -30; +"@MMK_R_hethebrew" = -7; +"@MMK_R_kafhebrew" = -6; +"@MMK_R_period" = -43; +"@MMK_R_tethebrew" = -5; +asterisk = 5; +backslash = -55; +space = -17; +}; +"@MMK_L_memhebrew" = { +"@MMK_R_hyphen" = -9; +"@MMK_R_kafhebrew" = -9; +"@MMK_R_slash" = -32; +"@MMK_R_tethebrew" = -8; +slashlongcomb = -32; +}; +"@MMK_L_n" = { +"@MMK_R_T" = -75; +"@MMK_R_W" = -17; +"@MMK_R_Y" = -82; +"@MMK_R_f" = -4; +"@MMK_R_quoteright" = -9; +"@MMK_R_quotesingle" = -18; +"@MMK_R_t" = -4; +"@MMK_R_w" = -11; +"@MMK_R_y" = -21; +V = -55; +asterisk = -19; +backslash = -62; +braceright = -10; +longs = -4; +ordfeminine = -18; +ordmasculine = -23; +parenright = -11; +question = -20; +trademark = -38; +v = -18; +}; +"@MMK_L_nunhebrew" = { +"@MMK_R_hyphen" = -8; +"@MMK_R_kafhebrew" = -7; +"@MMK_R_slash" = -31; +"@MMK_R_tethebrew" = -6; +slashlongcomb = -31; +}; +"@MMK_L_o" = { +"@MMK_R_A" = -7; +"@MMK_R_T" = -82; +"@MMK_R_W" = -16; +"@MMK_R_Y" = -90; +"@MMK_R_Z" = -5; +"@MMK_R_f" = -4; +"@MMK_R_quoteright" = -10; +"@MMK_R_quotesingle" = -19; +"@MMK_R_slash" = -27; +"@MMK_R_w" = -17; +"@MMK_R_y" = -25; +"@MMK_R_z" = -4; +V = -56; +X = -30; +asterisk = -21; +backslash = -62; +braceright = -42; +bracketright = -36; +longs = -4; +ordfeminine = -21; +ordmasculine = -26; +parenright = -42; +question = -22; +slashlongcomb = -27; +trademark = -41; +v = -21; +x = -24; +}; +"@MMK_L_pehebrew" = { +"@MMK_R_gimelhebrew" = -4; +"@MMK_R_kafhebrew" = -4; +"@MMK_R_slash" = -33; +slashlongcomb = -33; +}; +"@MMK_L_period" = { +"@MMK_R_T" = -58; +"@MMK_R_U" = -9; +"@MMK_R_W" = -19; +"@MMK_R_Y" = -67; +"@MMK_R_afii10085" = -45; +"@MMK_R_afii10108" = -10; +"@MMK_R_dalethebrew" = -20; +"@MMK_R_f" = -22; +"@MMK_R_hyphen.cap" = -9; +"@MMK_R_quoteleft" = -78; +"@MMK_R_quoteright" = -81; +"@MMK_R_quotesingle" = -90; +"@MMK_R_t" = -30; +"@MMK_R_w" = -30; +"@MMK_R_y" = -44; +"@MMK_R_yodhebrew" = -15; +"@MMK_R_zayinhebrew" = -20; +V = -50; +"finaltsadi-hb" = -28; +nine = -36; +one = -63; +seven = -31; +v = -40; +"yodyod-hb" = -15; +}; +"@MMK_L_quoteleft" = { +"@MMK_R_A" = -61; +"@MMK_R_AE" = -64; +"@MMK_R_a" = -24; +"@MMK_R_afii10029" = -31; +"@MMK_R_afii10077" = -28; +"@MMK_R_afii10080" = -22; +"@MMK_R_afii10108" = 5; +"@MMK_R_bethebrew" = -18; +"@MMK_R_d" = -22; +"@MMK_R_g" = -18; +"@MMK_R_gimelhebrew" = -28; +"@MMK_R_o" = -22; +"@MMK_R_period" = -92; +"@MMK_R_s" = -17; +eth = -29; +}; +"@MMK_L_quoteright" = { +"@MMK_R_A" = -68; +"@MMK_R_AE" = -71; +"@MMK_R_O" = -15; +"@MMK_R_S" = -9; +"@MMK_R_Y" = 17; +"@MMK_R_a" = -37; +"@MMK_R_afii10029" = -31; +"@MMK_R_afii10032" = -15; +"@MMK_R_afii10037" = 12; +"@MMK_R_afii10074" = -16; +"@MMK_R_afii10077" = -38; +"@MMK_R_afii10080" = -35; +"@MMK_R_afii10085" = -8; +"@MMK_R_afii10108" = 17; +"@MMK_R_bethebrew" = -21; +"@MMK_R_d" = -34; +"@MMK_R_g" = -30; +"@MMK_R_gimelhebrew" = -31; +"@MMK_R_guilsinglleft" = -26; +"@MMK_R_guilsinglleft.cap" = -19; +"@MMK_R_hyphen" = -32; +"@MMK_R_hyphen.cap" = -19; +"@MMK_R_n" = -16; +"@MMK_R_o" = -35; +"@MMK_R_period" = -102; +"@MMK_R_s" = -29; +"@MMK_R_slash" = -67; +"@MMK_R_u" = -14; +"@MMK_R_y" = -8; +"@MMK_R_z" = -16; +V = 6; +ampersand = -21; +at = -21; +at.case = -10; +copyright = -15; +eth = -31; +registered = -15; +slashlongcomb = -67; +x = -10; +}; +"@MMK_L_quotesingle" = { +"@MMK_R_A" = -60; +"@MMK_R_AE" = -62; +"@MMK_R_J" = -8; +"@MMK_R_a" = -21; +"@MMK_R_afii10029" = -31; +"@MMK_R_afii10077" = -26; +"@MMK_R_afii10080" = -19; +"@MMK_R_bethebrew" = -30; +"@MMK_R_d" = -20; +"@MMK_R_g" = -16; +"@MMK_R_gimelhebrew" = -40; +"@MMK_R_guilsinglleft" = -11; +"@MMK_R_hethebrew" = -14; +"@MMK_R_hyphen" = -15; +"@MMK_R_kafhebrew" = -14; +"@MMK_R_o" = -19; +"@MMK_R_period" = -90; +"@MMK_R_s" = -15; +"@MMK_R_slash" = -60; +"@MMK_R_tethebrew" = -13; +ampersand = -19; +eth = -28; +four = -30; +six = -19; +slashlongcomb = -60; +}; +"@MMK_L_r" = { +"@MMK_R_A" = -43; +"@MMK_R_J" = -13; +"@MMK_R_T" = -9; +"@MMK_R_Y" = -40; +"@MMK_R_Z" = -10; +"@MMK_R_a" = -9; +"@MMK_R_period" = -53; +"@MMK_R_slash" = -56; +V = -14; +X = -65; +backslash = -34; +braceright = -43; +bracketright = -41; +eth = -8; +parenright = -43; +slashlongcomb = -56; +space = -17; +trademark = -13; +}; +"@MMK_L_s" = { +"@MMK_R_T" = -79; +"@MMK_R_W" = -17; +"@MMK_R_Y" = -97; +"@MMK_R_f" = -4; +"@MMK_R_quoteright" = -8; +"@MMK_R_quotesingle" = -18; +"@MMK_R_slash" = -17; +"@MMK_R_t" = -4; +"@MMK_R_w" = -17; +"@MMK_R_y" = -24; +V = -56; +X = -13; +asterisk = -18; +backslash = -62; +braceright = -29; +bracketright = -24; +longs = -4; +ordfeminine = -18; +ordmasculine = -24; +parenright = -30; +question = -19; +slashlongcomb = -17; +trademark = -38; +v = -21; +x = -15; +}; +"@MMK_L_shinhebrew" = { +"@MMK_R_bethebrew" = -7; +"@MMK_R_gimelhebrew" = -25; +"@MMK_R_slash" = -32; +backslash = -29; +slashlongcomb = -32; +}; +"@MMK_L_slash" = { +"@MMK_R_A" = -76; +"@MMK_R_AE" = -78; +"@MMK_R_I" = 54; +"@MMK_R_J" = -12; +"@MMK_R_O" = -31; +"@MMK_R_S" = -25; +"@MMK_R_a" = -65; +"@MMK_R_afii10029" = -37; +"@MMK_R_afii10032" = -31; +"@MMK_R_afii10074" = -48; +"@MMK_R_afii10077" = -69; +"@MMK_R_afii10080" = -62; +"@MMK_R_afii10085" = -39; +"@MMK_R_d" = -61; +"@MMK_R_dalethebrew" = -36; +"@MMK_R_dotlessj" = -39; +"@MMK_R_f" = -32; +"@MMK_R_g" = -60; +"@MMK_R_i" = 25; +"@MMK_R_kafhebrew" = -30; +"@MMK_R_lamedhebrew" = -32; +"@MMK_R_n" = -48; +"@MMK_R_o" = -62; +"@MMK_R_s" = -59; +"@MMK_R_slash" = -251; +"@MMK_R_t" = -27; +"@MMK_R_tethebrew" = -28; +"@MMK_R_tsadihebrew" = -13; +"@MMK_R_u" = -45; +"@MMK_R_w" = -37; +"@MMK_R_y" = -40; +"@MMK_R_yodhebrew" = -39; +"@MMK_R_z" = -47; +"@MMK_R_zayinhebrew" = -36; +Imacron = 46; +Itilde = 38; +agrave = -48; +"ayin-hb" = -30; +egrave = -54; +eight = -31; +eth = -54; +"finaltsadi-hb" = -30; +five = -25; +four = -65; +icircumflex = 10; +idieresis = 56; +igrave = 101; +imacron = 29; +itilde = 14; +j = -14; +nine = -20; +one = -22; +six = -59; +two = -30; +v = -37; +x = -40; +"yodyod-hb" = -39; +zero = -32; +}; +"@MMK_L_t" = { +"@MMK_R_T" = -16; +"@MMK_R_Y" = -54; +V = -24; +backslash = -42; +trademark = -21; +}; +"@MMK_L_tavhebrew" = { +"@MMK_R_hyphen" = -10; +"@MMK_R_kafhebrew" = -8; +"@MMK_R_slash" = -32; +"@MMK_R_tethebrew" = -6; +"@MMK_R_yodhebrew" = -20; +slashlongcomb = -32; +}; +"@MMK_L_tethebrew" = { +"@MMK_R_bethebrew" = -8; +"@MMK_R_gimelhebrew" = -28; +"@MMK_R_slash" = -32; +backslash = -31; +slashlongcomb = -32; +}; +"@MMK_L_tsadihebrew" = { +"@MMK_R_guilsinglright" = -18; +"@MMK_R_hyphen" = -16; +"@MMK_R_kafhebrew" = -9; +"@MMK_R_slash" = -22; +"@MMK_R_tethebrew" = -8; +slashlongcomb = -22; +}; +"@MMK_L_u" = { +"@MMK_R_T" = -27; +"@MMK_R_W" = -9; +"@MMK_R_Y" = -65; +V = -32; +backslash = -48; +braceright = -10; +j = 21; +parenright = -11; +trademark = -23; +}; +"@MMK_L_vavhebrew" = { +"@MMK_R_quoteright" = -8; +"@MMK_R_slash" = -35; +slashlongcomb = -35; +}; +"@MMK_L_w" = { +"@MMK_R_A" = -30; +"@MMK_R_J" = -6; +"@MMK_R_T" = -11; +"@MMK_R_Y" = -46; +"@MMK_R_a" = -20; +"@MMK_R_d" = -16; +"@MMK_R_g" = -15; +"@MMK_R_hyphen" = -12; +"@MMK_R_o" = -17; +"@MMK_R_period" = -30; +"@MMK_R_s" = -15; +"@MMK_R_slash" = -52; +"@MMK_R_z" = -8; +V = -18; +X = -43; +ampersand = -10; +backslash = -37; +braceright = -35; +bracketright = -34; +eth = -25; +parenright = -36; +slashlongcomb = -52; +space = -21; +trademark = -11; +}; +"@MMK_L_y" = { +"@MMK_R_A" = -46; +"@MMK_R_J" = -13; +"@MMK_R_Y" = -45; +"@MMK_R_Z" = -5; +"@MMK_R_a" = -25; +"@MMK_R_d" = -20; +"@MMK_R_g" = -19; +"@MMK_R_hyphen" = -16; +"@MMK_R_o" = -22; +"@MMK_R_period" = -42; +"@MMK_R_s" = -18; +"@MMK_R_slash" = -62; +"@MMK_R_z" = -10; +V = -19; +X = -51; +ampersand = -17; +backslash = -36; +braceright = -38; +bracketright = -38; +eth = -34; +parenright = -39; +question = 7; +slashlongcomb = -62; +space = -24; +trademark = -12; +}; +"@MMK_L_yodhebrew" = { +"@MMK_R_bethebrew" = -14; +"@MMK_R_gimelhebrew" = -31; +"@MMK_R_period" = -15; +"@MMK_R_slash" = -23; +backslash = -39; +slashlongcomb = -23; +}; +"@MMK_L_z" = { +"@MMK_R_T" = -26; +"@MMK_R_U" = -5; +"@MMK_R_W" = -12; +"@MMK_R_Y" = -71; +"@MMK_R_g" = -4; +"@MMK_R_o" = -4; +"@MMK_R_y" = -9; +V = -38; +backslash = -51; +eth = -5; +trademark = -26; +v = -7; +}; +"@MMK_L_zayinhebrew" = { +"@MMK_R_bethebrew" = -32; +"@MMK_R_gimelhebrew" = -54; +"@MMK_R_hethebrew" = -8; +"@MMK_R_hyphen" = -8; +"@MMK_R_kafhebrew" = -8; +"@MMK_R_period" = -43; +"@MMK_R_slash" = -19; +"@MMK_R_tethebrew" = -6; +asterisk = 8; +backslash = -57; +slashlongcomb = -19; +space = -19; +}; +B = { +"@MMK_R_A" = -12; +"@MMK_R_AE" = -16; +"@MMK_R_T" = -5; +"@MMK_R_W" = -6; +"@MMK_R_Y" = -26; +"@MMK_R_i" = 10; +"@MMK_R_slash" = -20; +V = -21; +X = -30; +backslash = -26; +braceright = -16; +braceright.case = -19; +bracketright = -15; +bracketright.case = -16; +parenright = -17; +parenright.case = -20; +slashlongcomb = -20; +trademark = -8; +x = -7; +}; +F = { +"@MMK_R_A" = -36; +"@MMK_R_AE" = -37; +"@MMK_R_O" = -5; +"@MMK_R_a" = -14; +"@MMK_R_d" = -8; +"@MMK_R_g" = -7; +"@MMK_R_i" = 43; +"@MMK_R_n" = -5; +"@MMK_R_o" = -8; +"@MMK_R_period" = -18; +"@MMK_R_s" = -9; +"@MMK_R_slash" = -48; +"@MMK_R_z" = -8; +X = -5; +eth = -10; +idieresis = 33; +igrave = 24; +imacron = 15; +itilde = 32; +slashlongcomb = -48; +space = -14; +x = -6; +}; +IJ = { +"@MMK_R_A" = -16; +"@MMK_R_slash" = -29; +X = -7; +slashlongcomb = -29; +}; +Icircumflex = { +bar = 22; +}; +Idieresis = { +bar = 23; +}; +Imacron = { +backslash = 48; +bar = 15; +braceright = 42; +braceright.case = 30; +bracketright = 39; +bracketright.case = 29; +parenright = 40; +parenright.case = 31; +}; +Lcaron = { +"@MMK_R_T" = -15; +"@MMK_R_W" = -21; +"@MMK_R_Y" = -1; +"@MMK_R_quoteright" = -65; +"@MMK_R_quotesingle" = -26; +V = -11; +asterisk = -45; +backslash = -45; +ordfeminine = -57; +ordmasculine = -49; +trademark = -5; +}; +P = { +"@MMK_R_A" = -55; +"@MMK_R_AE" = -57; +"@MMK_R_J" = -12; +"@MMK_R_Y" = -22; +"@MMK_R_Z" = -6; +"@MMK_R_a" = -13; +"@MMK_R_d" = -5; +"@MMK_R_i" = 16; +"@MMK_R_o" = -6; +"@MMK_R_period" = -50; +"@MMK_R_slash" = -62; +V = -24; +X = -49; +ampersand = -13; +backslash = -18; +braceright = -15; +braceright.case = -24; +bracketright = -16; +bracketright.case = -25; +eth = -19; +parenright = -16; +parenright.case = -25; +slashlongcomb = -62; +space = -20; +trademark = -8; +}; +Q = { +slashlongcomb = -24; +}; +Tbar = { +"@MMK_R_a" = -72; +"@MMK_R_d" = -37; +"@MMK_R_g" = -54; +"@MMK_R_guilsinglleft" = -23; +"@MMK_R_hyphen" = -40; +"@MMK_R_hyphen.cap" = -27; +"@MMK_R_n" = -19; +"@MMK_R_o" = -62; +"@MMK_R_s" = -56; +"@MMK_R_u" = -15; +j = -13; +}; +Thorn = { +"@MMK_R_A" = -26; +"@MMK_R_T" = -12; +"@MMK_R_W" = -7; +"@MMK_R_Y" = -48; +"@MMK_R_Z" = -12; +"@MMK_R_period" = -15; +"@MMK_R_slash" = -39; +"@MMK_R_y" = -5; +V = -27; +X = -65; +backslash = -37; +braceright = -40; +braceright.case = -49; +bracketright = -37; +bracketright.case = -44; +ordmasculine = -8; +parenright = -40; +parenright.case = -48; +slashlongcomb = -39; +trademark = -26; +x = -14; +}; +V = { +"@MMK_R_A" = -61; +"@MMK_R_AE" = -64; +"@MMK_R_J" = -20; +"@MMK_R_O" = -23; +"@MMK_R_S" = -24; +"@MMK_R_a" = -62; +"@MMK_R_colon" = -15; +"@MMK_R_d" = -53; +"@MMK_R_dotlessj" = -13; +"@MMK_R_f" = -15; +"@MMK_R_g" = -51; +"@MMK_R_guilsinglleft" = -25; +"@MMK_R_guilsinglleft.cap" = -22; +"@MMK_R_guilsinglright" = -11; +"@MMK_R_h" = -24; +"@MMK_R_hyphen" = -31; +"@MMK_R_hyphen.cap" = -26; +"@MMK_R_i" = -17; +"@MMK_R_n" = -32; +"@MMK_R_o" = -56; +"@MMK_R_period" = -50; +"@MMK_R_s" = -49; +"@MMK_R_slash" = -75; +"@MMK_R_t" = -13; +"@MMK_R_u" = -29; +"@MMK_R_w" = -18; +"@MMK_R_y" = -22; +"@MMK_R_z" = -32; +ampersand = -34; +at = -29; +at.case = -18; +copyright = -22; +eight = -17; +eth = -64; +five = -17; +four = -39; +ibreve = 9; +icircumflex = 46; +idieresis = 52; +idotless = -32; +igrave = 41; +imacron = 34; +itilde = 42; +longs = -15; +nine = -12; +one = -13; +question = -11; +registered = -22; +six = -34; +slashlongcomb = -75; +space = -24; +two = -16; +v = -19; +x = -27; +zero = -16; +}; +X = { +"@MMK_R_J" = -13; +"@MMK_R_O" = -38; +"@MMK_R_S" = -28; +"@MMK_R_U" = -7; +"@MMK_R_a" = -9; +"@MMK_R_d" = -26; +"@MMK_R_f" = -35; +"@MMK_R_g" = -37; +"@MMK_R_guilsinglleft" = -39; +"@MMK_R_guilsinglleft.cap" = -45; +"@MMK_R_hyphen" = -34; +"@MMK_R_hyphen.cap" = -40; +"@MMK_R_i" = 28; +"@MMK_R_o" = -31; +"@MMK_R_quoteleft" = -21; +"@MMK_R_s" = -14; +"@MMK_R_t" = -45; +"@MMK_R_u" = -20; +"@MMK_R_w" = -44; +"@MMK_R_y" = -56; +copyright = -27; +eth = -29; +idieresis = 47; +igrave = 42; +itilde = 37; +longs = -35; +nine = -12; +one = -26; +question = -10; +registered = -27; +v = -53; +zero = -12; +}; +aacute = { +backslash = -46; +}; +"alef-hb" = { +"@MMK_R_dalethebrew" = -6; +"@MMK_R_kafhebrew" = -5; +"@MMK_R_slash" = -32; +"@MMK_R_tethebrew" = -4; +"@MMK_R_zayinhebrew" = -6; +"finaltsadi-hb" = -5; +slashlongcomb = -32; +}; +ampersand = { +"@MMK_R_A" = 11; +"@MMK_R_AE" = 8; +"@MMK_R_T" = -47; +"@MMK_R_Y" = -50; +"@MMK_R_quotesingle" = -18; +"@MMK_R_y" = -15; +Tbar = -31; +V = -30; +X = 12; +v = -13; +x = 5; +}; +asterisk = { +"@MMK_R_A" = -57; +"@MMK_R_AE" = -60; +"@MMK_R_T" = 7; +"@MMK_R_a" = -22; +"@MMK_R_afii10029" = -30; +"@MMK_R_afii10077" = -25; +"@MMK_R_afii10080" = -21; +"@MMK_R_afii10108" = 33; +"@MMK_R_bethebrew" = -29; +"@MMK_R_d" = -20; +"@MMK_R_g" = -17; +"@MMK_R_gimelhebrew" = -40; +"@MMK_R_h" = 24; +"@MMK_R_hethebrew" = -14; +"@MMK_R_i" = 54; +"@MMK_R_kafhebrew" = -14; +"@MMK_R_o" = -21; +"@MMK_R_s" = -16; +"@MMK_R_tethebrew" = -12; +eth = -30; +idieresis = 42; +imacron = 28; +itilde = 43; +}; +at = { +"@MMK_R_Y" = -32; +V = -21; +j = 6; +}; +at.case = { +"@MMK_R_Y" = -16; +V = -14; +}; +"ayin-hb" = { +"@MMK_R_dalethebrew" = -7; +"@MMK_R_guilsinglright" = -12; +"@MMK_R_hyphen" = -15; +"@MMK_R_kafhebrew" = -9; +"@MMK_R_lamedhebrew" = -5; +"@MMK_R_quoteright" = -10; +"@MMK_R_slash" = -35; +"@MMK_R_tethebrew" = -8; +"@MMK_R_zayinhebrew" = -7; +"ayin-hb" = -5; +"finaltsadi-hb" = -8; +slashlongcomb = -35; +}; +backslash = { +"@MMK_R_J" = -15; +"@MMK_R_O" = -30; +"@MMK_R_S" = -16; +"@MMK_R_T" = -71; +"@MMK_R_U" = -32; +"@MMK_R_W" = -35; +"@MMK_R_Y" = -85; +"@MMK_R_a" = -11; +"@MMK_R_afii10032" = -30; +"@MMK_R_afii10080" = -27; +"@MMK_R_afii10085" = -14; +"@MMK_R_afii10108" = -25; +"@MMK_R_bethebrew" = -71; +"@MMK_R_d" = -25; +"@MMK_R_dalethebrew" = -25; +"@MMK_R_f" = -40; +"@MMK_R_gimelhebrew" = -86; +"@MMK_R_hethebrew" = -57; +"@MMK_R_kafhebrew" = -56; +"@MMK_R_lamedhebrew" = -32; +"@MMK_R_o" = -27; +"@MMK_R_quoteright" = -54; +"@MMK_R_quotesingle" = -60; +"@MMK_R_s" = -17; +"@MMK_R_t" = -54; +"@MMK_R_tethebrew" = -54; +"@MMK_R_tsadihebrew" = -28; +"@MMK_R_u" = -26; +"@MMK_R_vavhebrew" = -35; +"@MMK_R_w" = -52; +"@MMK_R_y" = -54; +"@MMK_R_yodhebrew" = -23; +"@MMK_R_zayinhebrew" = -25; +V = -75; +"alef-hb" = -33; +"ayin-hb" = -32; +backslash = -250; +eight = -22; +eth = -26; +"finaltsadi-hb" = -24; +five = -15; +four = -11; +j = 73; +nine = -40; +one = -69; +seven = -31; +six = -19; +three = -15; +v = -63; +"yodyod-hb" = -23; +zero = -31; +}; +bar = { +"@MMK_R_I" = 22; +"@MMK_R_i" = 37; +Igrave = 52; +Imacron = 14; +Itilde = 6; +idieresis = 27; +igrave = 71; +imacron = 9; +itilde = 26; +j = 42; +}; +braceleft = { +"@MMK_R_I" = 51; +"@MMK_R_O" = -24; +"@MMK_R_S" = -15; +"@MMK_R_a" = -23; +"@MMK_R_afii10032" = -24; +"@MMK_R_afii10074" = -11; +"@MMK_R_afii10080" = -41; +"@MMK_R_afii10085" = -11; +"@MMK_R_afii10108" = 12; +"@MMK_R_d" = -38; +"@MMK_R_f" = -26; +"@MMK_R_h" = 9; +"@MMK_R_i" = 23; +"@MMK_R_n" = -11; +"@MMK_R_o" = -41; +"@MMK_R_s" = -28; +"@MMK_R_t" = -28; +"@MMK_R_u" = -32; +"@MMK_R_w" = -35; +"@MMK_R_y" = -33; +Idieresis = 48; +Imacron = 40; +Itilde = 34; +braceleft = -29; +eight = -14; +eth = -35; +five = -12; +four = -36; +icircumflex = 65; +idieresis = 55; +igrave = 99; +imacron = 37; +itilde = 54; +j = 71; +one = -30; +parenleft = -15; +six = -40; +v = -39; +zero = -19; +}; +braceleft.case = { +"@MMK_R_I" = 37; +"@MMK_R_O" = -29; +"@MMK_R_S" = -16; +"@MMK_R_afii10032" = -29; +Imacron = 29; +Itilde = 21; +braceleft.case = -36; +eight = -20; +five = -12; +four = -27; +nine = -24; +one = -48; +parenleft.case = -17; +six = -26; +zero = -28; +}; +braceright = { +braceright = -29; +bracketright = -26; +parenright = -29; +}; +braceright.case = { +braceright.case = -37; +bracketright.case = -34; +parenright.case = -37; +}; +bracketleft = { +"@MMK_R_I" = 49; +"@MMK_R_O" = -23; +"@MMK_R_S" = -13; +"@MMK_R_a" = -19; +"@MMK_R_afii10032" = -23; +"@MMK_R_afii10080" = -36; +"@MMK_R_afii10085" = -11; +"@MMK_R_afii10108" = 10; +"@MMK_R_d" = -33; +"@MMK_R_f" = -25; +"@MMK_R_h" = 7; +"@MMK_R_i" = 22; +"@MMK_R_o" = -36; +"@MMK_R_s" = -23; +"@MMK_R_t" = -27; +"@MMK_R_u" = -28; +"@MMK_R_w" = -34; +"@MMK_R_y" = -33; +Idieresis = 45; +Imacron = 37; +Itilde = 32; +braceleft = -26; +eight = -13; +eth = -31; +five = -11; +four = -31; +icircumflex = 64; +idieresis = 54; +igrave = 98; +imacron = 36; +itilde = 53; +j = 70; +one = -31; +parenleft = -13; +six = -32; +v = -39; +zero = -19; +}; +bracketleft.case = { +"@MMK_R_I" = 36; +"@MMK_R_O" = -26; +"@MMK_R_S" = -11; +"@MMK_R_afii10032" = -26; +Imacron = 28; +Itilde = 20; +braceleft.case = -34; +eight = -17; +four = -15; +nine = -24; +one = -48; +parenleft.case = -15; +six = -21; +zero = -26; +}; +cacute = { +backslash = -45; +}; +comma = { +"@MMK_R_T" = -52; +}; +copyright = { +"@MMK_R_A" = -17; +"@MMK_R_AE" = -21; +"@MMK_R_Y" = -33; +V = -23; +X = -26; +}; +degree = { +four = -21; +six = -12; +}; +divide = { +one = -19; +seven = -40; +two = -13; +}; +divide.case = { +seven = -25; +three = -12; +}; +eacute = { +backslash = -46; +}; +eight = { +"@MMK_R_Y" = -22; +"@MMK_R_slash" = -22; +V = -19; +backslash = -33; +braceright = -17; +braceright.case = -21; +bracketright = -15; +bracketright.case = -17; +parenright = -17; +parenright.case = -22; +slashlongcomb = -22; +}; +eth = { +"@MMK_R_slash" = -29; +"@MMK_R_y" = -10; +asterisk = -9; +backslash = -25; +braceright = -17; +bracketright = -16; +ordmasculine = -9; +parenright = -17; +slashlongcomb = -29; +trademark = -13; +v = -8; +x = -20; +}; +exclamdown = { +"@MMK_R_Y" = -41; +V = -27; +j = 46; +}; +"finalpe-hb" = { +"@MMK_R_bethebrew" = -21; +"@MMK_R_gimelhebrew" = -47; +"@MMK_R_period" = -18; +"@MMK_R_slash" = -26; +backslash = -51; +slashlongcomb = -26; +space = -15; +}; +"finaltsadi-hb" = { +"@MMK_R_bethebrew" = -51; +"@MMK_R_gimelhebrew" = -63; +"@MMK_R_hethebrew" = -24; +"@MMK_R_hyphen" = -23; +"@MMK_R_kafhebrew" = -25; +"@MMK_R_period" = -45; +"@MMK_R_slash" = -22; +"@MMK_R_tethebrew" = -23; +asterisk = 11; +backslash = -67; +slashlongcomb = -22; +space = -24; +}; +five = { +"@MMK_R_slash" = -20; +V = -11; +backslash = -13; +slashlongcomb = -20; +}; +four = { +"@MMK_R_T" = -30; +"@MMK_R_Y" = -37; +"@MMK_R_quotesingle" = -26; +"@MMK_R_slash" = -12; +V = -33; +backslash = -45; +braceright = -28; +braceright.case = -23; +bracketright = -24; +bracketright.case = -13; +one = -29; +parenright = -28; +parenright.case = -24; +seven = -30; +slashlongcomb = -12; +}; +germandbls = { +"@MMK_R_f" = -6; +"@MMK_R_slash" = -27; +"@MMK_R_t" = -5; +"@MMK_R_w" = -12; +"@MMK_R_y" = -18; +"@MMK_R_z" = -4; +backslash = -38; +braceright = -22; +bracketright = -21; +longs = -6; +parenright = -22; +slashlongcomb = -27; +trademark = -17; +v = -15; +x = -18; +}; +ibreve = { +backslash = 24; +braceright = 22; +bracketright = 21; +parenright = 23; +trademark = 15; +}; +icircumflex = { +backslash = 9; +bar = 36; +braceright = 64; +bracketright = 63; +exclam = 49; +j = 12; +parenright = 65; +trademark = 66; +}; +idieresis = { +asterisk = 42; +backslash = 56; +bar = 27; +braceright = 55; +bracketright = 54; +exclam = 40; +ordfeminine = 37; +ordmasculine = 50; +parenright = 56; +question = 26; +trademark = 58; +}; +ij = { +j = 18; +}; +imacron = { +asterisk = 28; +backslash = 29; +bar = 9; +braceright = 37; +bracketright = 36; +exclam = 22; +ordfeminine = 19; +ordmasculine = 32; +parenright = 38; +question = 8; +trademark = 40; +}; +iogonek = { +j = 48; +}; +itilde = { +asterisk = 9; +backslash = 56; +bar = 26; +braceright = 54; +bracketright = 53; +exclam = 27; +ordfeminine = 7; +ordmasculine = 14; +parenright = 55; +trademark = 47; +}; +j = { +j = 18; +}; +jcircumflex = { +j = 8; +}; +lcaron = { +"@MMK_R_o" = -9; +"@MMK_R_s" = 12; +}; +longs = { +"@MMK_R_a" = 33; +"@MMK_R_g" = 17; +"@MMK_R_i" = 78; +"@MMK_R_n" = 44; +"@MMK_R_o" = 10; +"@MMK_R_u" = 8; +"@MMK_R_y" = 21; +adieresis = 23; +agrave = 56; +atilde = 22; +ccircumflex = 27; +ecaron = 13; +ecircumflex = 30; +edieresis = 20; +egrave = 51; +iacute = 64; +ibreve = 137; +icircumflex = 181; +idieresis = 171; +idotless = 1; +igrave = 205; +imacron = 153; +itilde = 170; +j = 65; +ocircumflex = 21; +ograve = 44; +ohungarumlaut = 17; +rcaron = 54; +ugrave = 34; +ydieresis = 10; +}; +minus = { +one = -22; +seven = -47; +two = -20; +}; +minus.case = { +seven = -32; +three = -20; +two = -17; +}; +nine = { +"@MMK_R_A" = -33; +"@MMK_R_Y" = -11; +"@MMK_R_period" = -40; +"@MMK_R_slash" = -60; +V = -12; +X = -14; +backslash = -18; +braceright.case = -24; +bracketright.case = -25; +parenright.case = -25; +slashlongcomb = -60; +}; +ohungarumlaut = { +backslash = 2; +braceright = 1; +bracketright = 1; +parenright = 1; +trademark = -31; +}; +parenleft = { +"@MMK_R_I" = 50; +"@MMK_R_O" = -25; +"@MMK_R_S" = -16; +"@MMK_R_a" = -25; +"@MMK_R_afii10032" = -25; +"@MMK_R_afii10074" = -11; +"@MMK_R_afii10080" = -42; +"@MMK_R_afii10085" = -11; +"@MMK_R_afii10108" = 13; +"@MMK_R_d" = -38; +"@MMK_R_f" = -26; +"@MMK_R_h" = 9; +"@MMK_R_i" = 24; +"@MMK_R_n" = -12; +"@MMK_R_o" = -42; +"@MMK_R_s" = -29; +"@MMK_R_t" = -28; +"@MMK_R_u" = -33; +"@MMK_R_w" = -36; +"@MMK_R_y" = -34; +Idieresis = 46; +Imacron = 38; +Itilde = 32; +braceleft = -29; +eight = -15; +eth = -35; +five = -13; +four = -37; +icircumflex = 66; +idieresis = 56; +igrave = 100; +imacron = 38; +itilde = 55; +j = 72; +one = -31; +parenleft = -16; +six = -40; +v = -40; +zero = -20; +}; +parenleft.case = { +"@MMK_R_I" = 38; +"@MMK_R_O" = -30; +"@MMK_R_S" = -17; +"@MMK_R_afii10032" = -30; +Imacron = 30; +Itilde = 22; +braceleft.case = -36; +eight = -22; +five = -14; +four = -28; +nine = -25; +one = -49; +parenleft.case = -18; +six = -28; +zero = -30; +}; +parenright = { +braceright = -15; +bracketright = -13; +parenright = -16; +}; +parenright.case = { +braceright.case = -17; +bracketright.case = -15; +parenright.case = -18; +}; +periodcentered = { +"@MMK_R_l" = -41; +seven = -23; +three = -14; +two = -12; +}; +plus = { +one = -18; +seven = -42; +two = -14; +}; +plus.case = { +seven = -25; +three = -12; +}; +questiondown = { +"@MMK_R_J" = -20; +"@MMK_R_O" = -36; +"@MMK_R_S" = -19; +"@MMK_R_T" = -67; +"@MMK_R_U" = -37; +"@MMK_R_W" = -33; +"@MMK_R_Y" = -83; +"@MMK_R_d" = -10; +"@MMK_R_f" = -25; +"@MMK_R_o" = -15; +"@MMK_R_t" = -49; +"@MMK_R_u" = -12; +"@MMK_R_w" = -49; +"@MMK_R_y" = -61; +V = -72; +eth = -13; +j = 57; +v = -63; +}; +quotedblbase = { +"@MMK_R_T" = -52; +}; +quotesinglbase = { +"@MMK_R_T" = -52; +}; +racute = { +backslash = 18; +braceright = 17; +bracketright = 15; +parenright = 18; +}; +rcaron = { +backslash = -15; +braceright = -16; +bracketright = -18; +parenright = -15; +}; +registered = { +"@MMK_R_A" = -17; +"@MMK_R_AE" = -21; +"@MMK_R_Y" = -33; +V = -23; +X = -26; +}; +"resh-hb" = { +"@MMK_R_bethebrew" = -38; +"@MMK_R_gimelhebrew" = -63; +"@MMK_R_hethebrew" = -9; +"@MMK_R_hyphen" = -8; +"@MMK_R_kafhebrew" = -8; +"@MMK_R_period" = -72; +"@MMK_R_slash" = -19; +"@MMK_R_tethebrew" = -6; +asterisk = 9; +backslash = -68; +slashlongcomb = -19; +space = -19; +}; +sacute = { +backslash = -47; +}; +seven = { +"@MMK_R_A" = -49; +"@MMK_R_hyphen" = -21; +"@MMK_R_hyphen.cap" = -14; +"@MMK_R_period" = -50; +"@MMK_R_slash" = -72; +cent = -18; +divide = -23; +four = -30; +minus = -24; +minus.case = -16; +periodcentered = -11; +plus = -23; +six = -22; +slashlongcomb = -72; +}; +six = { +"@MMK_R_T" = -36; +"@MMK_R_Y" = -40; +"@MMK_R_quotesingle" = -19; +"@MMK_R_slash" = -20; +V = -32; +backslash = -46; +braceright = -36; +braceright.case = -26; +bracketright = -30; +bracketright.case = -21; +one = -19; +parenright = -35; +parenright.case = -27; +seven = -36; +slashlongcomb = -20; +}; +slashlongcomb = { +"@MMK_R_A" = -76; +"@MMK_R_AE" = -78; +"@MMK_R_I" = 54; +"@MMK_R_J" = -12; +"@MMK_R_O" = -31; +"@MMK_R_S" = -25; +"@MMK_R_a" = -65; +"@MMK_R_afii10029" = -37; +"@MMK_R_afii10032" = -31; +"@MMK_R_afii10074" = -48; +"@MMK_R_afii10077" = -69; +"@MMK_R_afii10080" = -62; +"@MMK_R_afii10085" = -39; +"@MMK_R_d" = -61; +"@MMK_R_dalethebrew" = -36; +"@MMK_R_dotlessj" = -39; +"@MMK_R_f" = -32; +"@MMK_R_g" = -60; +"@MMK_R_i" = 25; +"@MMK_R_kafhebrew" = -30; +"@MMK_R_lamedhebrew" = -32; +"@MMK_R_n" = -48; +"@MMK_R_o" = -62; +"@MMK_R_s" = -59; +"@MMK_R_t" = -27; +"@MMK_R_tethebrew" = -28; +"@MMK_R_tsadihebrew" = -13; +"@MMK_R_u" = -45; +"@MMK_R_w" = -37; +"@MMK_R_y" = -40; +"@MMK_R_yodhebrew" = -39; +"@MMK_R_z" = -47; +"@MMK_R_zayinhebrew" = -36; +Imacron = 46; +Itilde = 38; +agrave = -48; +"ayin-hb" = -30; +egrave = -54; +eight = -31; +eth = -54; +"finaltsadi-hb" = -30; +five = -25; +four = -65; +icircumflex = 10; +idieresis = 56; +igrave = 101; +imacron = 29; +itilde = 14; +j = -14; +nine = -20; +one = -22; +six = -59; +slashlongcomb = -251; +two = -30; +v = -37; +x = -40; +"yodyod-hb" = -39; +zero = -32; +}; +space = { +"@MMK_R_A" = -24; +"@MMK_R_AE" = -23; +"@MMK_R_T" = -21; +"@MMK_R_Y" = -27; +"@MMK_R_f" = -15; +"@MMK_R_gimelhebrew" = -21; +"@MMK_R_t" = -18; +"@MMK_R_w" = -21; +"@MMK_R_y" = -25; +V = -24; +v = -24; +}; +tcaron = { +"@MMK_R_a" = -30; +"@MMK_R_colon" = 39; +"@MMK_R_d" = -28; +"@MMK_R_f" = 43; +"@MMK_R_g" = -25; +"@MMK_R_guilsinglleft" = -12; +"@MMK_R_guilsinglright" = 50; +"@MMK_R_h" = 105; +"@MMK_R_hyphen" = -34; +"@MMK_R_i" = 99; +"@MMK_R_l" = 105; +"@MMK_R_n" = 14; +"@MMK_R_o" = -37; +"@MMK_R_period" = -28; +"@MMK_R_quoteleft" = 27; +"@MMK_R_quoteright" = 69; +"@MMK_R_quotesingle" = 108; +"@MMK_R_s" = -21; +"@MMK_R_slash" = -39; +"@MMK_R_t" = 49; +"@MMK_R_u" = 19; +"@MMK_R_w" = 45; +"@MMK_R_y" = 48; +"@MMK_R_z" = 17; +adieresis = 45; +asterisk = 93; +backslash = 90; +bar = 86; +braceright = 114; +bracketright = 113; +ccaron = 10; +ecaron = 13; +exclam = 97; +iacute = 60; +j = 87; +longs = 42; +ordfeminine = 78; +ordmasculine = 85; +parenright = 115; +question = 64; +scaron = 30; +semicolon = 24; +slashlongcomb = -39; +space = 20; +trademark = 128; +v = 53; +x = 40; +}; +three = { +"@MMK_R_slash" = -22; +V = -11; +backslash = -13; +one = -10; +slashlongcomb = -22; +}; +two = { +"@MMK_R_Y" = -17; +"@MMK_R_hyphen.cap" = -10; +V = -16; +backslash = -29; +minus = -13; +minus.case = -14; +}; +uhungarumlaut = { +backslash = -12; +}; +uogonek = { +j = 48; +}; +v = { +"@MMK_R_A" = -44; +"@MMK_R_J" = -13; +"@MMK_R_Y" = -46; +"@MMK_R_Z" = -5; +"@MMK_R_a" = -25; +"@MMK_R_d" = -19; +"@MMK_R_g" = -19; +"@MMK_R_hyphen" = -16; +"@MMK_R_o" = -21; +"@MMK_R_period" = -40; +"@MMK_R_s" = -18; +"@MMK_R_slash" = -63; +"@MMK_R_z" = -10; +V = -19; +X = -51; +ampersand = -16; +backslash = -37; +braceright = -39; +bracketright = -39; +eth = -33; +parenright = -40; +slashlongcomb = -63; +space = -24; +trademark = -13; +}; +"vavdagesh-hb" = { +"@MMK_R_bethebrew" = -11; +"@MMK_R_dalethebrew" = -23; +"@MMK_R_gimelhebrew" = -29; +"@MMK_R_period" = -8; +"@MMK_R_quoteleft" = -29; +"@MMK_R_quoteright" = -36; +"@MMK_R_quotesingle" = -28; +"@MMK_R_slash" = -57; +"@MMK_R_tsadihebrew" = -14; +"@MMK_R_zayinhebrew" = -23; +"alef-hb" = -6; +asterisk = -24; +backslash = -31; +slashlongcomb = -57; +}; +x = { +"@MMK_R_J" = -11; +"@MMK_R_O" = -10; +"@MMK_R_S" = -5; +"@MMK_R_T" = -14; +"@MMK_R_U" = -5; +"@MMK_R_W" = -7; +"@MMK_R_Y" = -52; +"@MMK_R_a" = -14; +"@MMK_R_d" = -22; +"@MMK_R_g" = -25; +"@MMK_R_guilsinglleft" = -13; +"@MMK_R_hyphen" = -20; +"@MMK_R_o" = -25; +"@MMK_R_s" = -14; +"@MMK_R_u" = -4; +V = -27; +backslash = -40; +eth = -29; +trademark = -18; +}; +"yodyod-hb" = { +"@MMK_R_bethebrew" = -14; +"@MMK_R_gimelhebrew" = -31; +"@MMK_R_period" = -15; +"@MMK_R_slash" = -23; +backslash = -39; +slashlongcomb = -23; +}; +zacute = { +backslash = -26; +}; +zero = { +"@MMK_R_A" = -10; +"@MMK_R_Y" = -21; +"@MMK_R_slash" = -31; +V = -17; +X = -13; +backslash = -31; +braceright = -19; +braceright.case = -28; +bracketright = -19; +bracketright.case = -26; +parenright = -20; +parenright.case = -29; +slashlongcomb = -31; +}; +}; +}; +metrics = ( +{ +type = ascender; +}, +{ +type = "cap height"; +}, +{ +type = "x-height"; +}, +{ +type = baseline; +}, +{ +type = descender; +}, +{ +type = "italic angle"; +} +); +properties = ( +{ +key = copyrights; +values = ( +{ +language = dflt; +value = "Copyright 2015 The Rubik Project Authors (https://github.com/googlefonts/rubik)"; +} +); +}, +{ +key = designers; +values = ( +{ +language = dflt; +value = "Hubert and Fischer"; +} +); +}, +{ +key = designerURL; +value = "http://www.hubertfischer.com"; +}, +{ +key = manufacturers; +values = ( +{ +language = dflt; +value = "Hubert & Fischer"; +} +); +}, +{ +key = manufacturerURL; +value = "http://www.google.com/fonts"; +}, +{ +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://scripts.sil.org/OFL"; +} +); +}, +{ +key = licenseURL; +value = "https://scripts.sil.org/OFL"; +} +); +settings = { +disablesNiceNames = 1; +}; +stems = ( +{ +horizontal = 1; +name = hStem0; +}, +{ +horizontal = 1; +name = hStem1; +}, +{ +name = vStem0; +} +); +unitsPerEm = 1000; +userData = { +com.fontlab.v2.tth = { +stems = { +"X: 233" = { +horizontal = 0; +round = { +"0" = 1; +"11" = 3; +"15" = 4; +"19" = 5; +"24" = 6; +"8" = 2; +}; +width = 233; +}; +"X: 250" = { +horizontal = 0; +round = { +"0" = 1; +"11" = 3; +"15" = 4; +"19" = 5; +"22" = 6; +"8" = 2; +}; +width = 250; +}; +"X: 79" = { +horizontal = 0; +round = { +"0" = 1; +"19" = 2; +"32" = 3; +"44" = 4; +"57" = 5; +"70" = 6; +}; +width = 79; +}; +"Y: 160" = { +horizontal = 1; +round = { +"0" = 1; +"10" = 2; +"15" = 3; +"20" = 4; +"29" = 5; +"35" = 6; +}; +width = 160; +}; +"Y: 175" = { +horizontal = 1; +round = { +"0" = 1; +"15" = 3; +"20" = 4; +"25" = 5; +"32" = 6; +"8" = 2; +}; +width = 175; +}; +"Y: 195" = { +horizontal = 1; +round = { +"0" = 1; +"11" = 3; +"20" = 4; +"25" = 5; +"29" = 6; +"8" = 2; +}; +width = 195; +}; +"Y: 80" = { +horizontal = 1; +round = { +"0" = 1; +"19" = 2; +"32" = 3; +"44" = 4; +"57" = 5; +"69" = 6; +}; +width = 80; +}; +}; +zones = { +"b: 0" = { +position = 0; +top = 0; +width = 10; +}; +"b: 1" = { +position = "-190"; +top = 0; +width = 30; +}; +"t: 0" = { +position = 520; +top = 1; +width = 10; +}; +"t: 1" = { +position = 700; +top = 1; +width = 10; +}; +}; +}; +com.schriftgestaltung.Glyphs.groupsNotInFeature = ( +); +com.schriftgestaltung.Glyphs.originalKerningGroups = { +public.kern1.A = ( +A, +Aacute, +Abreve, +Acircumflex, +Adieresis, +Agrave, +Amacron, +Aogonek, +Aring, +Atilde +); +public.kern1.C = ( +C, +Cacute, +Ccaron, +Ccedilla, +Ccircumflex, +Cdotaccent +); +public.kern1.D = ( +D, +Eth, +Dcaron, +Dcroat +); +public.kern1.E = ( +AE, +AEacute, +E, +Eacute, +Ebreve, +Ecaron, +Ecircumflex, +Edieresis, +Edotaccent, +Egrave, +Emacron, +Eogonek, +OE +); +public.kern1.G = ( +G, +Gbreve, +Gcircumflex, +Gcommaaccent, +Gdotaccent +); +public.kern1.I = ( +H, +Hbar, +Hcircumflex, +I, +Iacute, +Ibreve, +Icircumflex, +Idieresis, +Idotaccent, +Igrave, +Imacron, +Iogonek, +Itilde, +M, +N, +Nacute, +Ncaron, +Ncommaaccent, +Eng, +Ntilde +); +public.kern1.K = ( +K, +Kcommaaccent +); +public.kern1.L = ( +L, +Lacute, +Lcaron, +Lcommaaccent, +Ldot, +Lslash +); +public.kern1.O = ( +O, +Oacute, +Obreve, +Ocircumflex, +Odieresis, +Ograve, +Ohungarumlaut, +Omacron, +Oslash, +Oslashacute, +Otilde, +Q +); +public.kern1.R = ( +R, +Racute, +Rcaron, +Rcommaaccent +); +public.kern1.S = ( +S, +Sacute, +Scaron, +Scedilla, +Scircumflex, +Scommaaccent +); +public.kern1.T = ( +T, +Tbar, +Tcaron, +Tcommaaccent +); +public.kern1.U = ( +J, +Jcircumflex, +U, +Uacute, +Ubreve, +Ucircumflex, +Udieresis, +Ugrave, +Uhungarumlaut, +Umacron, +Uogonek, +Uring, +Utilde +); +public.kern1.W = ( +W, +Wacute, +Wcircumflex, +Wdieresis, +Wgrave +); +public.kern1.Y = ( +Y, +Yacute, +Ycircumflex, +Ydieresis, +Ygrave +); +public.kern1.Z = ( +Z, +Zacute, +Zcaron, +Zdotaccent +); +public.kern1.a = ( +a, +aacute, +abreve, +acircumflex, +adieresis, +agrave, +amacron, +aogonek, +aring, +atilde +); +public.kern1.afii10020 = ( +"Ge-cy", +"Gje-cy" +); +public.kern1.afii10022 = ( +"Ie-cy", +"Iegrave-cy", +"Io-cy" +); +public.kern1.afii10026 = ( +"Ii-cy", +"Iishort-cy", +"Iigrave-cy", +"El-cy", +"Em-cy", +"En-cy", +"Pe-cy", +"Che-cy", +"Sha-cy", +"Dzhe-cy", +"Yeru-cy", +"I-cy", +"Yi-cy", +"Ia-cy" +); +public.kern1.afii10028 = ( +"Ka-cy", +"Kje-cy" +); +public.kern1.afii10032 = ( +"O-cy", +"Ereversed-cy", +"Iu-cy" +); +public.kern1.afii10037 = ( +"U-cy", +"Ushort-cy" +); +public.kern1.afii10040 = ( +"Tse-cy", +"Shcha-cy" +); +public.kern1.afii10046 = ( +"Softsign-cy", +"Hardsign-cy", +"Lje-cy", +"Nje-cy" +); +public.kern1.afii10068 = ( +"ge-cy", +"gje-cy" +); +public.kern1.afii10070 = ( +"ie-cy", +"iegrave-cy", +"io-cy" +); +public.kern1.afii10074 = ( +"ii-cy", +"iishort-cy", +"iigrave-cy", +"el-cy", +"em-cy", +"en-cy", +"pe-cy", +"che-cy", +"sha-cy", +"dzhe-cy", +"yeru-cy", +"ia-cy" +); +public.kern1.afii10076 = ( +"ka-cy", +"kje-cy" +); +public.kern1.afii10080 = ( +"o-cy", +"ereversed-cy", +"iu-cy" +); +public.kern1.afii10082 = ( +"er-cy", +"ef-cy" +); +public.kern1.afii10085 = ( +"u-cy", +"ushort-cy" +); +public.kern1.afii10088 = ( +"tse-cy", +"shcha-cy" +); +public.kern1.afii10094 = ( +"softsign-cy", +"hardsign-cy", +"lje-cy", +"nje-cy" +); +public.kern1.afii10103 = ( +"i-cy", +"yi-cy", +"je-cy" +); +public.kern1.b = ( +b, +p, +thorn +); +public.kern1.bethebrew = ( +"bet-hb", +"betdagesh-hb" +); +public.kern1.c = ( +c, +cacute, +ccaron, +ccedilla, +ccircumflex, +cdotaccent +); +public.kern1.colon = ( +colon, +semicolon +); +public.kern1.d = ( +d, +dcroat +); +public.kern1.dalethebrew = ( +"dalet-hb", +"finalkaf-hb", +"daletdagesh-hb", +"finalkafdagesh-hb" +); +public.kern1.dcaron = ( +dcaron, +lcaron +); +public.kern1.e = ( +ae, +aeacute, +e, +eacute, +ebreve, +ecaron, +ecircumflex, +edieresis, +edotaccent, +egrave, +emacron, +eogonek, +oe +); +public.kern1.f = ( +f, +f_f +); +public.kern1.gimelhebrew = ( +"gimel-hb", +"gimeldagesh-hb" +); +public.kern1.guilsinglleft = ( +guillemetleft, +guilsinglleft +); +public.kern1.guilsinglleft.cap = ( +guillemetleft.case, +guilsinglleft.case +); +public.kern1.guilsinglright = ( +guillemetright, +guilsinglright +); +public.kern1.guilsinglright.cap = ( +guillemetright.case, +guilsinglright.case +); +public.kern1.hyphen = ( +emdash, +endash, +hyphen +); +public.kern1.hyphen.cap = ( +emdash.case, +endash.case, +hyphen.case +); +public.kern1.i = ( +i, +idotless, +iacute, +ibreve, +icircumflex, +idieresis, +igrave, +ij, +imacron, +iogonek, +itilde, +j, +jdotless, +jcircumflex, +f_f_i, +fi +); +public.kern1.k = ( +k, +kcommaaccent, +kgreenlandic +); +public.kern1.kafhebrew = ( +"kaf-hb", +"kafdagesh-hb" +); +public.kern1.l = ( +l, +lacute, +lcommaaccent, +lslash, +f_f_l, +fl +); +public.kern1.lamedhebrew = ( +"lamed-hb", +"lameddagesh-hb" +); +public.kern1.memhebrew = ( +"mem-hb", +"memdagesh-hb" +); +public.kern1.n = ( +h, +hbar, +hcircumflex, +m, +n, +nacute, +napostrophe, +ncaron, +ncommaaccent, +eng, +ntilde +); +public.kern1.nunhebrew = ( +"nun-hb", +"nundagesh-hb" +); +public.kern1.o = ( +o, +oacute, +obreve, +ocircumflex, +odieresis, +ograve, +ohungarumlaut, +omacron, +oslash, +oslashacute, +otilde +); +public.kern1.pehebrew = ( +"pe-hb", +"pedagesh-hb", +"pedagesh-hb.black" +); +public.kern1.period = ( +comma, +ellipsis, +period, +quotedblbase, +quotesinglbase +); +public.kern1.quoteleft = ( +quotedblleft, +quoteleft +); +public.kern1.quoteright = ( +quotedblright, +quoteright +); +public.kern1.quotesingle = ( +quotedbl, +quotesingle +); +public.kern1.r = ( +r, +racute, +rcaron, +rcommaaccent +); +public.kern1.s = ( +s, +sacute, +scaron, +scedilla, +scircumflex, +scommaaccent +); +public.kern1.shinhebrew = ( +"shin-hb", +"shinshindot-hb", +"shinsindot-hb", +"shindageshshindot-hb", +"shindageshsindot-hb", +"shindagesh-hb" +); +public.kern1.t = ( +t, +tbar, +tcommaaccent +); +public.kern1.tavhebrew = ( +"tav-hb", +"tavdagesh-hb" +); +public.kern1.tethebrew = ( +"tet-hb", +"samekh-hb", +"tetdagesh-hb", +"samekhdagesh-hb" +); +public.kern1.tsadihebrew = ( +"tsadi-hb", +"tsadidagesh-hb" +); +public.kern1.u = ( +g, +gbreve, +gcircumflex, +gcommaaccent, +gdotaccent, +q, +u, +uacute, +ubreve, +ucircumflex, +udieresis, +ugrave, +uhungarumlaut, +umacron, +uogonek, +uring, +utilde +); +public.kern1.vavhebrew = ( +"he-hb", +"vav-hb", +"het-hb", +"finalmem-hb", +"finalnun-hb", +"qof-hb", +"hedagesh-hb", +"qofdagesh-hb" +); +public.kern1.w = ( +w, +wacute, +wcircumflex, +wdieresis, +wgrave +); +public.kern1.y = ( +y, +yacute, +ycircumflex, +ydieresis, +ygrave +); +public.kern1.yodhebrew = ( +"yod-hb", +"yoddagesh-hb" +); +public.kern1.z = ( +z, +zacute, +zcaron, +zdotaccent +); +public.kern1.zayinhebrew = ( +"zayin-hb", +"zayindagesh-hb" +); +public.kern2.A = ( +A, +Aacute, +Abreve, +Acircumflex, +Adieresis, +Agrave, +Amacron, +Aogonek, +Aring, +Atilde +); +public.kern2.AE = ( +AE, +AEacute +); +public.kern2.I = ( +B, +D, +Eth, +Dcaron, +Dcroat, +E, +Eacute, +Ebreve, +Ecaron, +Ecircumflex, +Edieresis, +Edotaccent, +Egrave, +Emacron, +Eogonek, +F, +H, +Hbar, +Hcircumflex, +I, +IJ, +Iacute, +Ibreve, +Icircumflex, +Idieresis, +Idotaccent, +Igrave, +Imacron, +Iogonek, +Itilde, +K, +Kcommaaccent, +L, +Lacute, +Lcaron, +Lcommaaccent, +Ldot, +Lslash, +M, +N, +Nacute, +Ncaron, +Ncommaaccent, +Eng, +Ntilde, +P, +Thorn, +R, +Racute, +Rcaron, +Rcommaaccent +); +public.kern2.J = ( +J, +Jcircumflex +); +public.kern2.O = ( +C, +Cacute, +Ccaron, +Ccedilla, +Ccircumflex, +Cdotaccent, +G, +Gbreve, +Gcircumflex, +Gcommaaccent, +Gdotaccent, +O, +Oacute, +Obreve, +Ocircumflex, +Odieresis, +Ograve, +Ohungarumlaut, +Omacron, +Oslash, +Oslashacute, +Otilde, +OE, +Q +); +public.kern2.S = ( +S, +Sacute, +Scaron, +Scedilla, +Scircumflex, +Scommaaccent +); +public.kern2.T = ( +T, +Tbar, +Tcaron, +Tcommaaccent +); +public.kern2.U = ( +U, +Uacute, +Ubreve, +Ucircumflex, +Udieresis, +Ugrave, +Uhungarumlaut, +Umacron, +Uogonek, +Uring, +Utilde +); +public.kern2.W = ( +W, +Wacute, +Wcircumflex, +Wdieresis, +Wgrave +); +public.kern2.Y = ( +Y, +Yacute, +Ycircumflex, +Ydieresis, +Ygrave +); +public.kern2.Z = ( +Z, +Zacute, +Zcaron, +Zdotaccent +); +public.kern2.a = ( +a, +aacute, +abreve, +acircumflex, +adieresis, +agrave, +amacron, +aogonek, +aring, +atilde, +ae, +aeacute +); +public.kern2.afii10026 = ( +"Be-cy", +"Ve-cy", +"Ge-cy", +"Gje-cy", +"Ie-cy", +"Iegrave-cy", +"Io-cy", +"Ii-cy", +"Iishort-cy", +"Iigrave-cy", +"Ka-cy", +"Kje-cy", +"Em-cy", +"En-cy", +"Pe-cy", +"Er-cy", +"Tse-cy", +"Sha-cy", +"Shcha-cy", +"Dzhe-cy", +"Softsign-cy", +"Yeru-cy", +"Nje-cy", +"I-cy", +"Yi-cy", +"Iu-cy" +); +public.kern2.afii10029 = ( +"El-cy", +"Lje-cy" +); +public.kern2.afii10032 = ( +"O-cy", +"Es-cy", +"E-cy" +); +public.kern2.afii10037 = ( +"U-cy", +"Ushort-cy" +); +public.kern2.afii10074 = ( +"ve-cy", +"ge-cy", +"gje-cy", +"ii-cy", +"iishort-cy", +"iigrave-cy", +"ka-cy", +"kje-cy", +"em-cy", +"en-cy", +"pe-cy", +"er-cy", +"tse-cy", +"sha-cy", +"shcha-cy", +"dzhe-cy", +"softsign-cy", +"yeru-cy", +"nje-cy", +"iu-cy" +); +public.kern2.afii10077 = ( +"el-cy", +"lje-cy" +); +public.kern2.afii10080 = ( +"ie-cy", +"iegrave-cy", +"io-cy", +"o-cy", +"es-cy", +"e-cy" +); +public.kern2.afii10085 = ( +"u-cy", +"ushort-cy" +); +public.kern2.afii10103 = ( +"i-cy", +"yi-cy" +); +public.kern2.afii10108 = ( +"tshe-cy", +"dje-cy" +); +public.kern2.bethebrew = ( +"bet-hb", +"betdagesh-hb" +); +public.kern2.colon = ( +colon, +semicolon +); +public.kern2.d = ( +d, +dcaron, +dcroat, +q +); +public.kern2.dalethebrew = ( +"dalet-hb", +"finalkaf-hb", +"daletdagesh-hb", +"finalkafdagesh-hb" +); +public.kern2.dotlessj = ( +jdotless, +jcircumflex +); +public.kern2.f = ( +f, +f_f, +f_f_i, +f_f_l, +fi, +fl +); +public.kern2.g = ( +g, +gbreve, +gcircumflex, +gcommaaccent, +gdotaccent +); +public.kern2.gimelhebrew = ( +"gimel-hb", +"gimeldagesh-hb" +); +public.kern2.guilsinglleft = ( +guillemetleft, +guilsinglleft +); +public.kern2.guilsinglleft.cap = ( +guillemetleft.case, +guilsinglleft.case +); +public.kern2.guilsinglright = ( +guillemetright, +guilsinglright +); +public.kern2.guilsinglright.cap = ( +guillemetright.case, +guilsinglright.case +); +public.kern2.h = ( +b, +h, +hbar, +hcircumflex, +k, +kcommaaccent, +thorn, +germandbls +); +public.kern2.hethebrew = ( +"he-hb", +"het-hb", +"finalmem-hb", +"mem-hb", +"nun-hb", +"finalpe-hb", +"resh-hb", +"tav-hb", +"hedagesh-hb", +"memdagesh-hb", +"nundagesh-hb", +"tavdagesh-hb", +"finalpedagesh-hb.black" +); +public.kern2.hyphen = ( +emdash, +endash, +hyphen +); +public.kern2.hyphen.cap = ( +emdash.case, +endash.case, +hyphen.case +); +public.kern2.i = ( +i, +idotless, +iacute, +ibreve, +icircumflex, +idieresis, +igrave, +ij, +imacron, +iogonek, +itilde +); +public.kern2.kafhebrew = ( +"kaf-hb", +"kafdagesh-hb" +); +public.kern2.l = ( +l, +lacute, +lcaron, +lcommaaccent, +ldot, +lslash +); +public.kern2.lamedhebrew = ( +"lamed-hb", +"qof-hb", +"shin-hb", +"shinshindot-hb", +"shinsindot-hb", +"shindageshshindot-hb", +"shindageshsindot-hb", +"lameddagesh-hb", +"qofdagesh-hb", +"shindagesh-hb" +); +public.kern2.n = ( +kgreenlandic, +m, +n, +nacute, +napostrophe, +ncaron, +ncommaaccent, +eng, +ntilde, +p, +r, +racute, +rcaron, +rcommaaccent +); +public.kern2.o = ( +c, +cacute, +ccaron, +ccedilla, +ccircumflex, +cdotaccent, +e, +eacute, +ebreve, +ecaron, +ecircumflex, +edieresis, +edotaccent, +egrave, +emacron, +eogonek, +o, +oacute, +obreve, +ocircumflex, +odieresis, +ograve, +ohungarumlaut, +omacron, +oslash, +oslashacute, +otilde, +oe +); +public.kern2.period = ( +comma, +ellipsis, +period, +quotedblbase, +quotesinglbase +); +public.kern2.quoteleft = ( +quotedblleft, +quoteleft +); +public.kern2.quoteright = ( +quotedblright, +quoteright +); +public.kern2.quotesingle = ( +quotedbl, +quotesingle +); +public.kern2.s = ( +s, +sacute, +scaron, +scedilla, +scircumflex, +scommaaccent +); +public.kern2.t = ( +t, +tbar, +tcaron, +tcommaaccent +); +public.kern2.tethebrew = ( +"tet-hb", +"samekh-hb", +"pe-hb", +"tetdagesh-hb", +"samekhdagesh-hb", +"pedagesh-hb", +"pedagesh-hb.black" +); +public.kern2.tsadihebrew = ( +"tsadi-hb", +"tsadidagesh-hb" +); +public.kern2.u = ( +u, +uacute, +ubreve, +ucircumflex, +udieresis, +ugrave, +uhungarumlaut, +umacron, +uogonek, +uring, +utilde +); +public.kern2.vavhebrew = ( +"vav-hb", +"finalnun-hb", +"vavdagesh-hb" +); +public.kern2.w = ( +w, +wacute, +wcircumflex, +wdieresis, +wgrave +); +public.kern2.y = ( +y, +yacute, +ycircumflex, +ydieresis, +ygrave +); +public.kern2.yodhebrew = ( +"yod-hb", +"yoddagesh-hb" +); +public.kern2.z = ( +z, +zacute, +zcaron, +zdotaccent +); +public.kern2.zayinhebrew = ( +"zayin-hb", +"zayindagesh-hb" +); +}; +}; +versionMajor = 2; +versionMinor = 104; +} diff --git a/sources/config.yaml b/sources/config.yaml new file mode 100644 index 00000000..d9b7d3f6 --- /dev/null +++ b/sources/config.yaml @@ -0,0 +1,7 @@ +sources: + - Rubik.glyphs + - Rubik-Italic.glyphs +axisOrder: + - wght + - ital +familyName: Rubik